diff --git a/.Rbuildignore b/.Rbuildignore index 0b1f898b..561a653e 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -9,3 +9,4 @@ ^pkgdown$ ^\.circleci$ ^\.circleci/config\.yml$ +^\.github$ \ No newline at end of file diff --git a/.circleci/config.yml b/.circleci/config.yml index fb763a2d..a59ed99d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,6 +25,7 @@ jobs: sudo apt-get install -y libxml2-dev - run: command: | + echo "options(Ncpus=4)" >> ~/.Rprofile sudo Rscript -e "install.packages('RANN', dependencies=TRUE)" sudo Rscript -e "install.packages('stringr', dependencies=TRUE)" sudo Rscript -e "install.packages('lme4', dependencies=TRUE)" diff --git a/.github/.gitignore b/.github/.gitignore new file mode 100644 index 00000000..2d19fc76 --- /dev/null +++ b/.github/.gitignore @@ -0,0 +1 @@ +*.html diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml new file mode 100644 index 00000000..c8c5b62f --- /dev/null +++ b/.github/workflows/R-CMD-check.yaml @@ -0,0 +1,51 @@ +# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples +# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help +on: + push: + branches: [main, master] + pull_request: + +name: R-CMD-check.yaml + +permissions: read-all + +jobs: + R-CMD-check: + runs-on: ${{ matrix.config.os }} + + name: ${{ matrix.config.os }} (${{ matrix.config.r }}) + + strategy: + fail-fast: false + matrix: + config: + - {os: macos-latest, r: 'release'} + - {os: windows-latest, r: 'release'} + - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} + - {os: ubuntu-latest, r: 'release'} + - {os: ubuntu-latest, r: 'oldrel-1'} + + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + R_KEEP_PKG_SOURCE: yes + + steps: + - uses: actions/checkout@v4 + + - uses: r-lib/actions/setup-pandoc@v2 + + - uses: r-lib/actions/setup-r@v2 + with: + r-version: ${{ matrix.config.r }} + http-user-agent: ${{ matrix.config.http-user-agent }} + use-public-rspm: true + + - uses: r-lib/actions/setup-r-dependencies@v2 + with: + extra-packages: any::rcmdcheck + needs: check + + - uses: r-lib/actions/check-r-package@v2 + with: + upload-snapshots: true + build_args: 'c("--no-manual", "--compact-vignettes=gs+qpdf")' diff --git a/DESCRIPTION b/DESCRIPTION index 4265275a..16eb7948 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,9 +1,47 @@ Package: dsBase -Title: DataSHIELD Server Site Base Functions -Description: DataSHIELD Server Site Base Functions. -Version: 6.4.0.9000 -Author: DataSHIELD Developers -Maintainer: DataSHIELD Developers +Title: 'DataSHIELD' Server Site Base Functions +Description: Base 'DataSHIELD' functions for the server side. 'DataSHIELD' is a software package which allows + you to do non-disclosive federated analysis on sensitive data. 'DataSHIELD' analytic functions have + been designed to only share non disclosive summary statistics, with built in automated output + checking based on statistical disclosure control. With data sites setting the threshold values for + the automated output checks. +Version: 6.4.0-9000 +Authors@R: c(person(given = "Paul", + family = "Burton", + role = c("aut")), + person(given = "Rebecca", + family = "Wilson", + role = c("aut")), + person(given = "Olly", + family = "Butters", + role = c("aut")), + person(given = "Patricia", + family = "Ryser-Welch", + role = c("aut")), + person(given = "Alex", + family = "Westerberg", + role = c("aut")), + person(given = "Leire", + family = "Abarrategui", + role = c("aut")), + person(given = "Roberto", + family = "Villegas-Diaz", + role = c("aut"), + comment = c(ORCID = "0000-0001-5036-8661")), + person(given = "Demetris", + family = "Avraam", + role = c("aut"), + comment = c(ORCID = "0000-0001-8908-2441")), + person(given = "Yannick", + family = "Marcon", + role = c("aut"), + email = "yannick.marcon@obiba.org", + comment = c(ORCID = "0000-0003-0138-2023")), + person(given = "Stuart", + family = "Wheater", + role = c("aut", "cre"), + email = "stuart.wheater@arjuna.com", + comment = c(ORCID = "0009-0003-2419-1964"))) License: GPL-3 Depends: R (>= 4.0.0) @@ -25,178 +63,5 @@ Imports: tidyverse Suggests: testthat -AggregateMethods: - asFactorDS1, - asListDS, - aucDS, - boxPlotGGDS, - checkNegValueDS, - classDS, - colnamesDS, - corTestDS, - corDS, - covDS, - dataFrameSubsetDS1, - densityGridDS, - extractQuantilesDS1, - extractQuantilesDS2, - dimDS, - gamlssDS, - glmDS1, - glmDS2, - glmerSLMADS2, - glmPredictDS.ag, - glmSLMADS1, - glmSLMADS2, - glmSummaryDS.ag, - heatmapPlotDS, - hetcorDS, - histogramDS1, - histogramDS2, - isNaDS, - isValidDS, - kurtosisDS1, - kurtosisDS2, - lengthDS, - levelsDS, - lexisDS1, - listDisclosureSettingsDS, - lmerSLMADS2, - lsDS, - matrixDetDS1, - meanDS, - meanSdGpDS, - messageDS, - metadataDS, - miceDS, - minMaxRandDS, - namesDS, - numNaDS, - quantileMeanDS, - rangeDS, - ranksSecureDS1, - ranksSecureDS3, - rmDS, - scatterPlotDS, - scoreVectDS, - setSeedDS, - skewnessDS1, - skewnessDS2, - table1DDS, - table2DDS, - tableDS, - tableDS2, - tapplyDS, - testObjExistsDS, - varDS, - exists=base::exists, - is.character=base::is.character, - is.factor=base::is.factor, - is.list=base::is.list, - is.null=base::is.null, - is.numeric=base::is.numeric, - NROW=base::NROW, - t.test=stats::t.test -AssignMethods: - absDS, - asCharacterDS, - asDataMatrixDS, - asFactorDS2, - asFactorSimpleDS, - asIntegerDS, - asListDS, - asLogicalDS, - asMatrixDS, - asNumericDS, - blackBoxDS, - blackBoxRanksDS, - BooleDS, - boxPlotGG_data_TreatmentDS, - boxPlotGG_data_Treatment_numericDS, - bp_standardsDS, - cbindDS, - cDS, - changeRefGroupDS, - completeCasesDS, - dataFrameDS, - dataFrameFillDS, - dataFrameSortDS, - dataFrameSubsetDS2, - dmtC2SDS, - elsplineDS, - glmerSLMADS.assign, - glmPredictDS.as, - glmSLMADS.assign, - glmSummaryDS.as, - getWGSRDS, - igb_standardsDS, - listDS, - lexisDS2, - lexisDS3, - lmerSLMADS.assign, - lsplineDS, - matrixDetDS2, - matrixDiagDS, - matrixDimnamesDS, - matrixDS, - matrixInvertDS, - matrixMultDS, - matrixTransposeDS, - mergeDS, - nsDS, - qlsplineDS, - ranksSecureDS2, - ranksSecureDS4, - ranksSecureDS5, - rbindDS, - rBinomDS, - recodeLevelsDS, - recodeValuesDS, - repDS, - replaceNaDS, - reShapeDS, - rNormDS, - rowColCalcDS, - rPoisDS, - rUnifDS, - sampleDS, - seqDS, - sqrtDS, - tableDS.assign, - tapplyDS.assign, - uniqueDS, - unListDS, - vectorDS, - as.character=base::as.character, - as.null=base::as.null, - as.numeric=base::as.numeric, - attach=base::attach, - c=dsBase::vectorDS, - complete.cases=stats::complete.cases, - list=base::list, - exp=base::exp, - log=base::log, - sqrt=base::sqrt, - abs=base::abs, - sin=base::sin, - cos=base::cos, - tan=base::tan, - asin=base::asin, - acos=base::acos, - atan=base::atan, - sum=base::sum, - unlist=base::unlist -Options: - datashield.privacyLevel=5, - default.datashield.privacyControlLevel="banana", - default.nfilter.glm=0.33, - default.nfilter.kNN=3, - default.nfilter.string=80, - default.nfilter.subset=3, - default.nfilter.stringShort=20, - default.nfilter.tab=3, - default.nfilter.noise=0.25, - default.nfilter.levels.density=0.33, - default.nfilter.levels.max=40 RoxygenNote: 7.3.2 Encoding: UTF-8 diff --git a/NAMESPACE b/NAMESPACE index 1a107e36..655cae99 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -4,6 +4,7 @@ export(BooleDS) export(absDS) export(asCharacterDS) export(asDataFrameDS) +export(asDataMatrixDS) export(asFactorDS1) export(asFactorDS2) export(asFactorSimpleDS) diff --git a/R/BooleDS.R b/R/BooleDS.R index a4c2968c..8d5f5a49 100644 --- a/R/BooleDS.R +++ b/R/BooleDS.R @@ -16,10 +16,13 @@ #' the final output variable #' should be of class numeric (1/0) or class logical (TRUE/FALSE). #' @param na.assign.text A character string taking values 'NA', '1' or '0'. If 'NA' -#' then any NA values in the input vector remain as NAs in the output vector. If '1' -#' or '0' NA values in the input vector are all converted to 1 or 0 respectively. -#' @return the levels of the input variable. +#' then any NA values in the +#' input vector remain as NAs in the output vector. If '1' or '0' NA values in the +#' input vector are all converted to 1 or 0 respectively. +#' #' @author DataSHIELD Development Team +#' +#' @return the levels of the input variable. #' @export #' BooleDS <- function(V1.name=NULL, V2.name=NULL, Boolean.operator.n=NULL, na.assign.text, numeric.output=TRUE){ diff --git a/R/absDS.R b/R/absDS.R index cd27699a..1f7dc518 100644 --- a/R/absDS.R +++ b/R/absDS.R @@ -6,21 +6,19 @@ #' @param x a string character, the name of a numeric or integer vector #' @return the object specified by the \code{newobj} argument #' of \code{ds.abs} (or default name \code{abs.newobj}) -#' which is written to the serverside. The output object is of class numeric +#' which is written to the serverside. The output object is of class numeric #' or integer. #' @author Demetris Avraam for DataSHIELD Development Team #' @export #' -absDS <- function(x){ - - x.var <- eval(parse(text=x), envir = parent.frame()) +absDS <- function(x) { + x.var <- eval(parse(text = x), envir = parent.frame()) # compute the absolute values of x out <- abs(x.var) - + # assign the outcome to the data servers return(out) - } # ASSIGN FUNCTION # absDS diff --git a/R/asCharacterDS.R b/R/asCharacterDS.R index dc6e48a5..f8e0d1ec 100644 --- a/R/asCharacterDS.R +++ b/R/asCharacterDS.R @@ -1,4 +1,4 @@ -#' +#' #' @title Coerces an R object into class character #' @description this function is based on the native R function \code{as.character} #' @details See help for function \code{as.character} in native R @@ -11,14 +11,12 @@ #' details see help on the clientside function \code{ds.asCharacter} #' @author Amadou Gaye, Paul Burton, Demetris Avraam for DataSHIELD Development Team #' @export -#' -asCharacterDS <- function(x.name){ - - x <- eval(parse(text=x.name), envir = parent.frame()) +#' +asCharacterDS <- function(x.name) { + x <- eval(parse(text = x.name), envir = parent.frame()) output <- as.character(x) return(output) - } # ASSIGN FUNCTION # asCharacterDS diff --git a/R/asDataMatrixDS.R b/R/asDataMatrixDS.R index f018563d..b8f53f19 100644 --- a/R/asDataMatrixDS.R +++ b/R/asDataMatrixDS.R @@ -11,14 +11,12 @@ #' details see help on the clientside function \code{ds.asDataMatrix} #' @author Tim Cadman #' @export -asDataFrameDS <- function (x.name){ - -if(is.character(x.name)){ - x <- eval(parse(text=x.name), envir = parent.frame()) - - }else{ - studysideMessage<-"ERROR: x.name must be specified as a character string" - stop(studysideMessage, call. = FALSE) +asDataMatrixDS <- function(x.name) { + if (is.character(x.name)) { + x <- eval(parse(text = x.name), envir = parent.frame()) + } else { + studysideMessage <- "ERROR: x.name must be specified as a character string" + stop(studysideMessage, call. = FALSE) } output <- data.frame(x) diff --git a/R/blackBoxDS.R b/R/blackBoxDS.R index 82096a9d..8e7e33f1 100644 --- a/R/blackBoxDS.R +++ b/R/blackBoxDS.R @@ -65,7 +65,10 @@ blackBoxDS <- function(input.var.name=NULL, #nfilter.noise <- as.numeric(thr$nfilter.noise) #nfilter.levels <- as.numeric(thr$nfilter.levels) ######################################################## - + + # back-up current .Random.seed and revert on.exit + old_seed <- .Random.seed + on.exit(.Random.seed <- old_seed, add = TRUE) input.var <- eval(parse(text=input.var.name), envir = parent.frame()) @@ -311,7 +314,7 @@ utils::head(rank.intermediate.value.matrix) utils::tail(rank.intermediate.value.matrix) -cat("\nRANKS IN ALL COLUMNS ABOVE SHOULD BE THE SAME\n") +message("\nRANKS IN ALL COLUMNS ABOVE SHOULD BE THE SAME\n") control.vector control.value @@ -365,7 +368,7 @@ if(sum(round(rank(blackbox.output.df[,3])-rank(blackbox.output.df[,4]),2)==0)!=n of memory") stop(error.message, call. = FALSE) }else{ - cat("\nPROCESSING SUCCESSFUL, ALL RANKS AGREE FOR ALL TRANSFORMATIONS\n\n") + message("\nPROCESSING SUCCESSFUL, ALL RANKS AGREE FOR ALL TRANSFORMATIONS\n\n") } diff --git a/R/blackBoxRanksDS.R b/R/blackBoxRanksDS.R index ac950401..cb2fc21f 100644 --- a/R/blackBoxRanksDS.R +++ b/R/blackBoxRanksDS.R @@ -61,6 +61,9 @@ blackBoxRanksDS <- function(input.var.name=NULL, shared.seedval){ #START FUNC #nfilter.levels <- as.numeric(thr$nfilter.levels) ######################################################## + # back-up current .Random.seed and revert on.exit + old_seed <- .Random.seed + on.exit(.Random.seed <- old_seed, add = TRUE) input.var <- eval(parse(text=input.var.name), envir = parent.frame()) input.global.ranks<-input.var @@ -189,7 +192,7 @@ colnames(rank.intermediate.value.matrix)<-c("input.global.ranks.orig","input.var 1:6,"ID.seq.real.orig") -cat("\nRANKS IN ALL COLUMNS ABOVE SHOULD BE THE SAME\n") +message("\nRANKS IN ALL COLUMNS ABOVE SHOULD BE THE SAME\n") control.vector control.value @@ -255,7 +258,7 @@ if(sum(round(rank(blackbox.ranks.df[,5])-rank(blackbox.ranks.df[,8]),2)==0)!=num of memory") stop(error.message, call. = FALSE) }else{ - cat("\nPROCESSING SUCCESSFUL, ALL RANKS AGREE FOR ALL TRANSFORMATIONS\n\n") + message("\nPROCESSING SUCCESSFUL, ALL RANKS AGREE FOR ALL TRANSFORMATIONS\n\n") } diff --git a/R/boxPlotGGDS.R b/R/boxPlotGGDS.R index f17ecaeb..11b6fd90 100644 --- a/R/boxPlotGGDS.R +++ b/R/boxPlotGGDS.R @@ -15,9 +15,7 @@ #' @param group \code{character} (default \code{NULL}) Name of the first grouping variable. #' @param group2 \code{character} (default \code{NULL}) Name of the second grouping variable. #' -#' @return \cr -#' -#' \code{list} with: \cr +#' @return \code{list} with: \cr #' -\code{data frame} Geometrical parameters (identity stats of ggplot) \cr #' -\code{character} Type of plot (single_group, double_group or no_group) \cr #' diff --git a/R/checkPermissivePrivacyControlLevel.R b/R/checkPermissivePrivacyControlLevel.R index 7b57f7d3..64fd3ae6 100644 --- a/R/checkPermissivePrivacyControlLevel.R +++ b/R/checkPermissivePrivacyControlLevel.R @@ -1,11 +1,14 @@ #' #' @title checkPermissivePrivacyControlLevel -#' @description This serverside function check that the server is running in "permissive" privacy control level. +#' @description This server-side function check that the server is running in "permissive" privacy control level. #' @details Tests whether the R option "datashield.privacyControlLevel" is set to "permissive", if it isn't #' will cause a call to stop() with the message "BLOCKED: The server is running in 'non-permissive' mode which #' has caused this method to be blocked". #' @param privacyControlLevels is a vector of strings which contains the privacy control level names which are permitted by the calling method. -#' @author Wheater, Dr SM., DataSHIELD Team. +#' +#' @author Wheater, Dr SM., DataSHIELD Development Team. +#' +#' @return No return value, called for side effects #' @export #' checkPermissivePrivacyControlLevel <- function(privacyControlLevels){ diff --git a/R/covDS.R b/R/covDS.R index eeb933ba..9f645b62 100644 --- a/R/covDS.R +++ b/R/covDS.R @@ -16,7 +16,7 @@ #' @return a list that includes a matrix with elements the sum of products between each two variables, a matrix with #' elements the sum of the values of each variable, a matrix with elements the number of complete cases in each #' pair of variables, a list with the number of missing values in each variable separately (columnwise) and the number -#' of missing values casewise or pairwise depending on the arqument \code{use}, and an error message which indicates +#' of missing values casewise or pairwise depending on the argument \code{use}, and an error message which indicates #' whether or not the input variables pass the disclosure controls. The first disclosure control checks that the number #' of variables is not bigger than a percentage of the individual-level records (the allowed percentage is pre-specified #' by the 'nfilter.glm'). The second disclosure control checks that none of them is dichotomous with a level having fewer diff --git a/R/extract.R b/R/extract.R index 455dc744..5c1dc669 100644 --- a/R/extract.R +++ b/R/extract.R @@ -4,6 +4,7 @@ #' @details Not required #' @param input a vector or a list of characters #' @keywords internal +#' @noRd #' @return a vector of characters #' extract <- function(input){ diff --git a/R/glmDS1.R b/R/glmDS1.R index 4c78cee5..a76d615c 100644 --- a/R/glmDS1.R +++ b/R/glmDS1.R @@ -1,6 +1,6 @@ #' #' @title glmDS1 called by ds.glm -#' @description This is the first serverside aggregate function called by ds.glm +#' @description This is the first server-side aggregate function called by ds.glm #' @details It is an #' aggregation function that sets up the model structure #' and creates the starting beta.vector that feeds, via ds.glm, into glmDS2 to enable @@ -14,7 +14,10 @@ #' @param offset the offset #' @param data an #' optional character string specifying a data.frame object holding the data to be -#' analysed under the specified model +#' analysed under the specified model +#' +#' @return List with values from GLM model. +#' #' @author Burton PR for DataSHIELD Development Team #' @export #' diff --git a/R/glmDS2.R b/R/glmDS2.R index b9dd2efb..9287075c 100644 --- a/R/glmDS2.R +++ b/R/glmDS2.R @@ -1,6 +1,6 @@ #' #' @title glmDS2 called by ds.glm -#' @description This is the second serverside aggregate function called by ds.glm. +#' @description This is the second server-side aggregate function called by ds.glm. #' @details It is an aggregate function that uses the model structure and starting #' beta.vector constructed by glmDS1 to iteratively fit the generalized linear model #' that has been specified. The function glmDS2 also carries out a series of disclosure @@ -18,7 +18,10 @@ #' @param weights an optional variable providing regression weights #' @param dataName an optional character string specifying a data.frame object holding #' the data to be analysed under the specified model same +#' #' @author Paul Burton, for DataSHIELD Development Team +#' +#' @return List with values from GLM model #' @export #' glmDS2 <- function (formula, family, beta.vect, offset, weights, dataName) { diff --git a/R/heatmapPlotDS.R b/R/heatmapPlotDS.R index 69ff4346..6dccbd5b 100644 --- a/R/heatmapPlotDS.R +++ b/R/heatmapPlotDS.R @@ -11,7 +11,7 @@ #' plot of non-disclosive graphs (e.g. scatter plots, heatmap plots, contour plots, etc). #' @param x the name of a numeric vector, the x-variable. #' @param y the name of a numeric vector, the y-variable. -#' @param k the number of the nearest neghbours for which their centroid is calculated if the +#' @param k the number of the nearest neighbours for which their centroid is calculated if the #' \code{method.indicator} is equal to 1 (i.e. deterministic method). #' @param noise the percentage of the initial variance that is used as the variance of the embedded #' noise if the \code{method.indicator} is equal to 2 (i.e. probabilistic method). @@ -38,6 +38,10 @@ heatmapPlotDS <- function(x, y, k, noise, method.indicator){ #nfilter.levels.max <- as.numeric(thr$nfilter.levels.max) # ################################################################### + # back-up current .Random.seed and revert on.exit + old_seed <- .Random.seed + on.exit(.Random.seed <- old_seed, add = TRUE) + # Cbind the columns of the two variables and remove any rows that include NAs data.table <- cbind.data.frame(x, y) data.complete <- stats::na.omit(data.table) diff --git a/R/histogramDS1.R b/R/histogramDS1.R index a9ebafda..a79d2f52 100644 --- a/R/histogramDS1.R +++ b/R/histogramDS1.R @@ -3,7 +3,7 @@ #' @description this function returns the minimum and maximum of the input numeric vector which #' depends on the argument \code{method.indicator}. If the method.indicator is set to 1 (i.e. the #' 'smallCellsRule' is used) the computed minimum and maximum values are multiplied by a very small -#' random number. If the method.indicator is set to 2 (i.e. the 'deteministic' method is used) the +#' random number. If the method.indicator is set to 2 (i.e. the 'deterministic' method is used) the #' function returns the minimum and maximum values of the vector with the scaled centroids. If the #' method.indicator is set to 3 (i.e. the 'probabilistic' method is used) the function returns the #' minimum and maximum values of the generated 'noisy' vector. @@ -12,7 +12,7 @@ #' control that is used for the generation of the histogram. If the value is equal to 1 then the #' 'smallCellsRule' is used. If the value is equal to 2 then the 'deterministic' method is used. #' If the value is set to 3 then the 'probabilistic' method is used. -#' @param k the number of the nearest neghbours for which their centroid is calculated if the +#' @param k the number of the nearest neighbours for which their centroid is calculated if the #' \code{method.indicator} is equal to 2 (i.e. deterministic method). #' @param noise the percentage of the initial variance that is used as the variance of the embedded #' noise if the \code{method.indicator} is equal to 3 (i.e. probabilistic method). @@ -36,6 +36,10 @@ histogramDS1 <- function(xvect, method.indicator, k, noise){ nfilter.levels.max <- as.numeric(thr$nfilter.levels.max) # ################################################################## + # back-up current .Random.seed and revert on.exit + old_seed <- .Random.seed + on.exit(.Random.seed <- old_seed, add = TRUE) + # print an error message if the input vector is not a numeric if(!(is.numeric(xvect))){ output <- "The input vector is not a numeric!" diff --git a/R/histogramDS2.R b/R/histogramDS2.R index 34b3e143..1f7a8acc 100644 --- a/R/histogramDS2.R +++ b/R/histogramDS2.R @@ -14,7 +14,7 @@ #' control that is used for the generation of the histogram. If the value is equal to 1 then the #' 'smallCellsRule' is used. If the value is equal to 2 then the 'deterministic' method is used. #' If the value is set to 3 then the 'probabilistic' method is used. -#' @param k the number of the nearest neghbours for which their centroid is calculated if the +#' @param k the number of the nearest neighbours for which their centroid is calculated if the #' \code{method.indicator} is equal to 2 (i.e. deterministic method). #' @param noise the percentage of the initial variance that is used as the variance of the embedded #' noise if the \code{method.indicator} is equal to 3 (i.e. probabilistic method). @@ -38,6 +38,10 @@ histogramDS2 <- function (xvect, num.breaks, min, max, method.indicator, k, nois # nfilter.levels.max <- as.numeric(thr$nfilter.levels.max) # ################################################################## + # back-up current .Random.seed and revert on.exit + old_seed <- .Random.seed + on.exit(.Random.seed <- old_seed, add = TRUE) + if (method.indicator==1){ # Check if the number of breaks meets the DataSHIELD privacy criteria (disclosure control for diff --git a/R/lexisDS1.R b/R/lexisDS1.R index 0c2a7534..6c0f8de7 100644 --- a/R/lexisDS1.R +++ b/R/lexisDS1.R @@ -1,11 +1,14 @@ #' #' @title lexisDS1 #' -#' @description The first serverside function called by ds.lexis. +#' @description The first server-side function called by ds.lexis. #' @details This is an aggregate function. #' For more details see the extensive header for ds.lexis. #' @param exitCol a character string specifying the variable holding the time that each individual is censored or fails +#' #' @author Burton PR +#' +#' @return List with `max.time` #' @export #' lexisDS1 <- function(exitCol=NULL){ diff --git a/R/lexisDS2.R b/R/lexisDS2.R index 14b3cfdb..e4c08117 100644 --- a/R/lexisDS2.R +++ b/R/lexisDS2.R @@ -7,7 +7,7 @@ #' regression. lexisDS2 also #' carries out a series of disclosure checks and if the arguments or data fail any of #' those tests, -#' creation of the exapanded dataframe is blocked and an appropriate serverside error +#' creation of the expanded dataframe is blocked and an appropriate serverside error #' message is stored. #' For more details see the extensive header for ds.lexis. #' @param datatext a clientside provided character string specifying the data.frame @@ -18,7 +18,7 @@ #' @param maxmaxtime a clientside generated object specifying the maximum follow up #' time in any of the sources #' @param idCol a clientside generated character string specifying the variable -#' holding the IDs of indivuals in the data set to be expanded +#' holding the IDs of individuals in the data set to be expanded #' @param entryCol a clientside specified character string identifying the variable #' holding the time that each individual starts follow up #' @param exitCol a clientside specified character string identifying the variable @@ -29,7 +29,10 @@ #' column names of additional variables to include in the #' final expanded table. If the 'variables' argument is not set (is null) but the #' 'data' argument is set the full data.frame will be expanded and carried forward +#' #' @author Burton PR +#' +#' @return List with `expanded.table` #' @export #' lexisDS2 <- function(datatext=NULL, intervalWidth, maxmaxtime, idCol, entryCol, exitCol, statusCol, vartext=NULL){ @@ -192,13 +195,13 @@ lexisDS2 <- function(datatext=NULL, intervalWidth, maxmaxtime, idCol, entryCol, period.surv<-end.breaks-start.breaks - print(start.breaks) - print(end.breaks) + message(paste0(start.breaks, collapse = ", ")) + message(paste0(end.breaks, collapse = ", ")) totints<-length(end.breaks) totsubs<-dim(DF)[1] - print(totints) - print(totsubs) + message(totints) + message(totsubs) survival.matrix<-matrix(data=0,totsubs,totints) diff --git a/R/lexisDS3.R b/R/lexisDS3.R index 71fb3b29..75a31906 100644 --- a/R/lexisDS3.R +++ b/R/lexisDS3.R @@ -8,7 +8,8 @@ #' returned output from ds.lexis. Specifically, without lexisDS3 the output consists of a table within #' a list, but lexisDS3 converts this directly into a dataframe. #' For more details see the extensive header for ds.lexis. -#' +#' +#' @return Data frame with `messageobj` object #' @export #' lexisDS3 <- function(){ diff --git a/R/listDisclosureSettingsDS.R b/R/listDisclosureSettingsDS.R index 67d3d4f8..7d4aedc8 100644 --- a/R/listDisclosureSettingsDS.R +++ b/R/listDisclosureSettingsDS.R @@ -4,6 +4,8 @@ #' ds.listDisclosureSettings #' @details For more details see the extensive header for ds.listDisclosureSettings #' @author Paul Burton, Demetris Avraam for DataSHIELD Development Team +#' +#' @return List with DataSHIELD disclosure settings #' @export #' listDisclosureSettingsDS <- function(){ diff --git a/R/matrixMultDS.R b/R/matrixMultDS.R index 0a3408da..67f4ae64 100644 --- a/R/matrixMultDS.R +++ b/R/matrixMultDS.R @@ -2,7 +2,7 @@ #' @title matrixMultDS serverside assign function called by ds.matrixMult #' @description Calculates the matrix product of two matrices and writes output to serverside #' @details Undertakes standard matrix multiplication where with input matrices A and B with -#' dimensions A: mxn and B: nxp the output C has dimensions mxp and each elemnt C[i,j] has +#' dimensions A: mxn and B: nxp the output C has dimensions mxp and each element C[i,j] has #' value equal to the dot product of row i of A and column j of B where the dot product #' is obtained as sum(A[i,1]*B[1,j] + A[i,2]*B[2,j] + .... + A[i,n]*B[n,j]). This calculation #' is only valid if the number of columns of A is the same as the number of rows of B diff --git a/R/meanSdGpDS.R b/R/meanSdGpDS.R index b8047845..41fdb721 100644 --- a/R/meanSdGpDS.R +++ b/R/meanSdGpDS.R @@ -1,13 +1,15 @@ #' #' @title MeanSdGpDS -#' @description Serverside function called by ds.meanSdGp +#' @description Server-side function called by ds.meanSdGp #' @details Computes the mean and standard deviation across groups defined by one #' factor -#' @param X a clientside supplied character string identifying the variable for which +#' @param X a client-side supplied character string identifying the variable for which #' means/SDs are to be calculated -#' @param INDEX a clientside supplied character string identifying the factor across +#' @param INDEX a client-side supplied character string identifying the factor across #' which means/SDs are to be calculated #' @author Burton PR +#' +#' @return List with results from the group statistics #' @export #' meanSdGpDS <- function (X, INDEX){ diff --git a/R/minMaxRandDS.R b/R/minMaxRandDS.R index 36dc40ca..85e4d3fc 100644 --- a/R/minMaxRandDS.R +++ b/R/minMaxRandDS.R @@ -20,7 +20,11 @@ #' @export #' minMaxRandDS <- function(input.var.name){ #START FUNC - + + # back-up current .Random.seed and revert on.exit + old_seed <- .Random.seed + on.exit(.Random.seed <- old_seed, add = TRUE) + input.var <- eval(parse(text=input.var.name), envir = parent.frame()) #create seed that is unknown and cannot be repeated diff --git a/R/rangeDS.R b/R/rangeDS.R index 2151dd1d..6cf7689c 100644 --- a/R/rangeDS.R +++ b/R/rangeDS.R @@ -1,33 +1,35 @@ -#' +#' #' @title returns the minimum and maximum of a numeric vector -#' @description this function is similar to R function \code{range} but instead to not return -#' the real minimum and maximum, the computed values are multiplied by a very small random number. -#' @param xvect a numerical +#' @description this function is similar to R function \code{range} but instead to not return +#' the real minimum and maximum, the computed values are multiplied by a very small random number. +#' @param xvect a numerical #' @return a numeric vector which contains the minimum and the maximum values of the vector #' @author Amadou Gaye, Demetris Avraam for DataSHIELD Development Team #' @export #' -rangeDS <- function(xvect){ - +rangeDS <- function(xvect) { + # back-up current .Random.seed and revert on.exit + old_seed <- .Random.seed + on.exit(.Random.seed <- old_seed, add = TRUE) + # print an error message if the input vector is not a numeric - if(!(is.numeric(xvect))){ + if (!(is.numeric(xvect))) { output <- "The input vector is not a numeric!" - }else{ - + } else { # the study-specific seed for random number generation seed <- getOption("datashield.seed") - if (is.null(seed)) - stop("rangeDS requires 'datashield.seed' R option to operate", call.=FALSE) + if (is.null(seed)) { + stop("rangeDS requires 'datashield.seed' R option to operate", call. = FALSE) + } set.seed(seed) - - rr <- c(min(xvect, na.rm=TRUE), max(xvect, na.rm=TRUE)) + + rr <- c(min(xvect, na.rm = TRUE), max(xvect, na.rm = TRUE)) random1 <- stats::runif(1, 0.95, 1) random2 <- stats::runif(1, 1, 1.05) - output <- c(rr[1]*random1, rr[2]*random2) + output <- c(rr[1] * random1, rr[2] * random2) } - - return (output) - + + return(output) } # AGGREGATE FUNCTION # rangeDS diff --git a/R/scatterPlotDS.R b/R/scatterPlotDS.R index 7d5514ab..bf229041 100644 --- a/R/scatterPlotDS.R +++ b/R/scatterPlotDS.R @@ -19,7 +19,7 @@ #' @param method.indicator an integer either 1 or 2. If the user selects the deterministic #' method in the client side function the method.indicator is set to 1 while if the user selects #' the probabilistic method this argument is set to 2. -#' @param k the number of the nearest neghbours for which their centroid is calculated if the +#' @param k the number of the nearest neighbours for which their centroid is calculated if the #' deterministic method is selected. #' @param noise the percentage of the initial variance that is used as the variance of the embedded #' noise if the probabilistic method is selected. @@ -43,6 +43,10 @@ scatterPlotDS <- function(x, y, method.indicator, k, noise){ #nfilter.levels.max <- as.numeric(thr$nfilter.levels.max) # ################################################################### + # back-up current .Random.seed and revert on.exit + old_seed <- .Random.seed + on.exit(.Random.seed <- old_seed, add = TRUE) + # Cbind the columns of the two variables and remove any rows that include NAs data.table <- cbind.data.frame(x, y) data.complete <- stats::na.omit(data.table) diff --git a/R/setFilterDS.R b/R/setFilterDS.R index a7814160..8a84f0bb 100644 --- a/R/setFilterDS.R +++ b/R/setFilterDS.R @@ -7,6 +7,7 @@ #' @param x a dummy argument #' @return an integer between 1 and 5 #' @keywords internal +#' @noRd #' @author Gaye, A. #' setFilterDS <- function(x=getOption("datashield.privacyLevel", default=5)){ diff --git a/R/table1DDS.R b/R/table1DDS.R index fb67c544..d73e3867 100644 --- a/R/table1DDS.R +++ b/R/table1DDS.R @@ -3,7 +3,7 @@ #' @description This function generates a 1-dimensional table where potentially disclosive cells. #' (based on the set threshold) are replaced by a missing value ('NA'). #' @details It generates a 1-dimensional tables where valid (non-disclosive) 1-dimensional tables are defined -#' as data from sources where no table cells have counts between 1 and the set threshold. When the ouput table +#' as data from sources where no table cells have counts between 1 and the set threshold. When the output table #' is invalid all cells but the total count are replaced by missing values. Only the total count is visible #' on the table returned to the client site. A message is also returned with the 1-dimensional; the message #' says "invalid table - invalid counts present" if the table is invalid and 'valid table' otherwise. diff --git a/R/table2DDS.R b/R/table2DDS.R index 41de343c..5b4f5dd1 100644 --- a/R/table2DDS.R +++ b/R/table2DDS.R @@ -3,7 +3,7 @@ #' @description This function generates a 2-dimensional contingency table where potentially disclosive cells #' (based on a set threshold) are replaced by a missing value ('NA'). #' @details It generates 2-dimensional contingency tables where valid (non-disclosive) tables are defined -#' as those where none of their cells have counts between 1 and the set threshold "nfilter.tab". When the ouput table +#' as those where none of their cells have counts between 1 and the set threshold "nfilter.tab". When the output table #' is invalid all cells except the total counts are replaced by missing values. Only the total counts are visible #' on the table returned to the client side. A message is also returned with the 2-dimensional table; the message #' says "invalid table - invalid counts present" if the table is invalid and 'valid table' otherwise. diff --git a/R/testObjExistsDS.R b/R/testObjExistsDS.R index 1b860c6c..9c3a26e7 100644 --- a/R/testObjExistsDS.R +++ b/R/testObjExistsDS.R @@ -1,13 +1,16 @@ #' #' @title testObjExistsDS -#' @description The serverside function called by ds.testObjExists +#' @description The server-side function called by ds.testObjExists #' @details Tests whether a given object exists in #' all sources. It is called at the end of all #' recently written assign functions to check the new (assigned) object has been #' created in all sources -#' @param test.obj.name a clientside provided character string specifying the variable +#' @param test.obj.name a client-side provided character string specifying the variable #' whose presence is to be tested in each data source +#' #' @author Burton PR +#' +#' @return List with `test.obj.exists` and `test.obj.class` #' @export #' testObjExistsDS <- function(test.obj.name=NULL){ diff --git a/R/zzz.R b/R/zzz.R new file mode 100644 index 00000000..6586ae7c --- /dev/null +++ b/R/zzz.R @@ -0,0 +1,20 @@ +ENV <- new.env() + +.onLoad = function(libname, pkgname) { + + #### !!! If making changes, update: .onLoad(), set_opts(), show_opts(), .check_options() + + options( + datashield.privacyLevel = 5, + default.datashield.privacyControlLevel = "banana", + default.nfilter.glm = 0.33, + default.nfilter.kNN = 3, + default.nfilter.string = 80, + default.nfilter.subset = 3, + default.nfilter.stringShort = 20, + default.nfilter.tab = 3, + default.nfilter.noise = 0.25, + default.nfilter.levels.density = 0.33, + default.nfilter.levels.max = 40 + ) +} \ No newline at end of file diff --git a/docs/404.html b/docs/404.html index d1b6ca1d..cc165c31 100644 --- a/docs/404.html +++ b/docs/404.html @@ -32,7 +32,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -73,12 +73,12 @@

Page not found (404)

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/LICENSE.html b/docs/LICENSE.html index 9908f3cb..07b43ee3 100644 --- a/docs/LICENSE.html +++ b/docs/LICENSE.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -256,11 +256,11 @@

NA

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/authors.html b/docs/authors.html index 5e0f7ae8..6ce542a0 100644 --- a/docs/authors.html +++ b/docs/authors.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -40,7 +40,43 @@

Authors and Citation

@@ -52,15 +88,15 @@

Citation

-

Developers D (2024). -dsBase: DataSHIELD Server Site Base Functions. -R package version 6.4.0.9000. +

Burton P, Wilson R, Butters O, Ryser-Welch P, Westerberg A, Abarrategui L, Villegas-Diaz R, Avraam D, Marcon Y, Wheater S (2025). +dsBase: 'DataSHIELD' Server Site Base Functions. +R package version 6.4.0-9000.

@Manual{,
-  title = {dsBase: DataSHIELD Server Site Base Functions},
-  author = {DataSHIELD Developers},
-  year = {2024},
-  note = {R package version 6.4.0.9000},
+  title = {dsBase: 'DataSHIELD' Server Site Base Functions},
+  author = {Paul Burton and Rebecca Wilson and Olly Butters and Patricia Ryser-Welch and Alex Westerberg and Leire Abarrategui and Roberto Villegas-Diaz and Demetris Avraam and Yannick Marcon and Stuart Wheater},
+  year = {2025},
+  note = {R package version 6.4.0-9000},
 }
@@ -70,11 +106,11 @@

Citation

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/index.html b/docs/index.html index 8b38d17c..81e9827b 100644 --- a/docs/index.html +++ b/docs/index.html @@ -12,7 +12,7 @@ - + asDataFrameDS a serverside assign function called by ds.asDataFrame — asDataFrameDS • dsBase + + +
+
+ + + +
+
+ + +
+

Coerces an R object into a matrix maintaining original +class for all columns in data.frames.

+
+ +
+
asDataFrameDS(x.name)
+
+ +
+

Arguments

+ + +
x.name
+

the name of the input object to be coerced to class +data.frame. Must be specified in inverted commas. But this argument is +usually specified directly by <x.name> argument of the clientside function +ds.asDataFrame

+ +
+
+

Value

+

the object specified by the <newobj> argument (or its default name +"asdataframe.newobj") which is written to the serverside. For further +details see help on the clientside function ds.asDataMatrix

+
+
+

Details

+

This assign function is based on the native R function data.frame

+
+
+

Author

+

Tim Cadman

+
+ +
+ +
+ + +
+ +
+

Site built with pkgdown 2.1.3.

+
+ +
+ + + + + + + + diff --git a/docs/reference/asDataMatrixDS.html b/docs/reference/asDataMatrixDS.html index 4ae49085..b309960d 100644 --- a/docs/reference/asDataMatrixDS.html +++ b/docs/reference/asDataMatrixDS.html @@ -1,5 +1,5 @@ -asDataMatrixDS a serverside assign function called by ds.asDataMatrix — asDataMatrixDS • dsBaseasDataFrameDS a serverside assign function called by ds.asDataFrame — asDataMatrixDS • dsBasecheckPermissivePrivacyControlLevel — checkPermissivePrivacyControlLevel • dsBasecheckPermissivePrivacyControlLevel — checkPermissivePrivacyControlLevel • dsBase @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -40,7 +40,7 @@

checkPermissivePrivacyControlLevel

-

This serverside function check that the server is running in "permissive" privacy control level.

+

This server-side function check that the server is running in "permissive" privacy control level.

@@ -55,6 +55,10 @@

Arguments

is a vector of strings which contains the privacy control level names which are permitted by the calling method.

+
+

Value

+

No return value, called for side effects

+

Details

Tests whether the R option "datashield.privacyControlLevel" is set to "permissive", if it isn't @@ -63,7 +67,7 @@

Details

Author

-

Wheater, Dr SM., DataSHIELD Team.

+

Wheater, Dr SM., DataSHIELD Development Team.

@@ -74,11 +78,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/classDS.html b/docs/reference/classDS.html index dbdb2184..63af4a5d 100644 --- a/docs/reference/classDS.html +++ b/docs/reference/classDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -76,11 +76,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/colnamesDS.html b/docs/reference/colnamesDS.html index e07ad3b1..96627427 100644 --- a/docs/reference/colnamesDS.html +++ b/docs/reference/colnamesDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -76,11 +76,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/completeCasesDS.html b/docs/reference/completeCasesDS.html index 3eeebc54..11df6e5b 100644 --- a/docs/reference/completeCasesDS.html +++ b/docs/reference/completeCasesDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -104,11 +104,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/corDS.html b/docs/reference/corDS.html index 396b43d4..63a7475e 100644 --- a/docs/reference/corDS.html +++ b/docs/reference/corDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -91,11 +91,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/corTestDS.html b/docs/reference/corTestDS.html index 7bf21e42..d9061592 100644 --- a/docs/reference/corTestDS.html +++ b/docs/reference/corTestDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -96,11 +96,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/covDS.html b/docs/reference/covDS.html index 9a7582ab..3907a133 100644 --- a/docs/reference/covDS.html +++ b/docs/reference/covDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -76,7 +76,7 @@

Value

a list that includes a matrix with elements the sum of products between each two variables, a matrix with elements the sum of the values of each variable, a matrix with elements the number of complete cases in each pair of variables, a list with the number of missing values in each variable separately (columnwise) and the number -of missing values casewise or pairwise depending on the arqument use, and an error message which indicates +of missing values casewise or pairwise depending on the argument use, and an error message which indicates whether or not the input variables pass the disclosure controls. The first disclosure control checks that the number of variables is not bigger than a percentage of the individual-level records (the allowed percentage is pre-specified by the 'nfilter.glm'). The second disclosure control checks that none of them is dichotomous with a level having fewer @@ -101,11 +101,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/dataFrameDS.html b/docs/reference/dataFrameDS.html index 9722e4e7..0858e35f 100644 --- a/docs/reference/dataFrameDS.html +++ b/docs/reference/dataFrameDS.html @@ -19,7 +19,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -135,11 +135,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/dataFrameFillDS.html b/docs/reference/dataFrameFillDS.html index 87647d70..119f13c7 100644 --- a/docs/reference/dataFrameFillDS.html +++ b/docs/reference/dataFrameFillDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -102,11 +102,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/dataFrameSortDS.html b/docs/reference/dataFrameSortDS.html index 65230557..11351b4b 100644 --- a/docs/reference/dataFrameSortDS.html +++ b/docs/reference/dataFrameSortDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -116,11 +116,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/dataFrameSubsetDS1.html b/docs/reference/dataFrameSubsetDS1.html index 7d490cd4..20ced005 100644 --- a/docs/reference/dataFrameSubsetDS1.html +++ b/docs/reference/dataFrameSubsetDS1.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -142,11 +142,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/dataFrameSubsetDS2.html b/docs/reference/dataFrameSubsetDS2.html index 659be2f5..5c3be37b 100644 --- a/docs/reference/dataFrameSubsetDS2.html +++ b/docs/reference/dataFrameSubsetDS2.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -150,11 +150,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/densityGridDS.html b/docs/reference/densityGridDS.html index 95ab15ae..45179c58 100644 --- a/docs/reference/densityGridDS.html +++ b/docs/reference/densityGridDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -116,11 +116,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/dimDS.html b/docs/reference/dimDS.html index 6edfdfa1..3f07834b 100644 --- a/docs/reference/dimDS.html +++ b/docs/reference/dimDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -76,11 +76,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/dmtC2SDS.html b/docs/reference/dmtC2SDS.html index fce27fbb..985f8ac8 100644 --- a/docs/reference/dmtC2SDS.html +++ b/docs/reference/dmtC2SDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -145,11 +145,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/elsplineDS.html b/docs/reference/elsplineDS.html index 84cd828f..b68f6647 100644 --- a/docs/reference/elsplineDS.html +++ b/docs/reference/elsplineDS.html @@ -20,7 +20,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -101,11 +101,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/extract.html b/docs/reference/extract.html index 498ddced..4d91f651 100644 --- a/docs/reference/extract.html +++ b/docs/reference/extract.html @@ -17,7 +17,11 @@ dsBase +<<<<<<< HEAD 6.4.0.9000 +======= + 6.3.3 +>>>>>>> origin/v6.3.3-dev @@ -72,11 +76,11 @@

Details

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/extractQuantilesDS1.html b/docs/reference/extractQuantilesDS1.html index 5050cbbc..0bcb904c 100644 --- a/docs/reference/extractQuantilesDS1.html +++ b/docs/reference/extractQuantilesDS1.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -115,11 +115,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/extractQuantilesDS2.html b/docs/reference/extractQuantilesDS2.html index f3ecb648..fcefae05 100644 --- a/docs/reference/extractQuantilesDS2.html +++ b/docs/reference/extractQuantilesDS2.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -113,11 +113,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/fixClassDS.html b/docs/reference/fixClassDS.html index c032aa15..bf6b7932 100644 --- a/docs/reference/fixClassDS.html +++ b/docs/reference/fixClassDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -77,11 +77,11 @@

Value

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/fixColsDS.html b/docs/reference/fixColsDS.html index 62bcf3dd..ca86c1b7 100644 --- a/docs/reference/fixColsDS.html +++ b/docs/reference/fixColsDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -72,11 +72,11 @@

Value

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/fixLevelsDS.html b/docs/reference/fixLevelsDS.html index aef727e4..10f484c4 100644 --- a/docs/reference/fixLevelsDS.html +++ b/docs/reference/fixLevelsDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -76,11 +76,11 @@

Value

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/gamlssDS.html b/docs/reference/gamlssDS.html index a5e3a89e..8e1b2a32 100644 --- a/docs/reference/gamlssDS.html +++ b/docs/reference/gamlssDS.html @@ -23,7 +23,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -208,11 +208,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/getAllLevelsDS.html b/docs/reference/getAllLevelsDS.html index b7e3dff8..0f126780 100644 --- a/docs/reference/getAllLevelsDS.html +++ b/docs/reference/getAllLevelsDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -72,11 +72,11 @@

Value

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/getClassAllColsDS.html b/docs/reference/getClassAllColsDS.html index 0a494d59..1623a395 100644 --- a/docs/reference/getClassAllColsDS.html +++ b/docs/reference/getClassAllColsDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -68,11 +68,11 @@

Value

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/getWGSRDS.html b/docs/reference/getWGSRDS.html index 7d1b0ef2..c74c7761 100644 --- a/docs/reference/getWGSRDS.html +++ b/docs/reference/getWGSRDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -136,11 +136,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/glmDS1.html b/docs/reference/glmDS1.html index ebef47b6..835c49d3 100644 --- a/docs/reference/glmDS1.html +++ b/docs/reference/glmDS1.html @@ -1,5 +1,5 @@ -glmDS1 called by ds.glm — glmDS1 • dsBaseglmDS1 called by ds.glm — glmDS1 • dsBase @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -40,7 +40,7 @@

glmDS1 called by ds.glm

-

This is the first serverside aggregate function called by ds.glm

+

This is the first server-side aggregate function called by ds.glm

@@ -75,6 +75,10 @@

Arguments

analysed under the specified model

+
+

Value

+

List with values from GLM model.

+

Details

It is an @@ -96,11 +100,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/glmDS2.html b/docs/reference/glmDS2.html index ebc32a69..c3d239e8 100644 --- a/docs/reference/glmDS2.html +++ b/docs/reference/glmDS2.html @@ -1,5 +1,5 @@ -glmDS2 called by ds.glm — glmDS2 • dsBaseglmDS2 called by ds.glm — glmDS2 • dsBase @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -40,7 +40,7 @@

glmDS2 called by ds.glm

-

This is the second serverside aggregate function called by ds.glm.

+

This is the second server-side aggregate function called by ds.glm.

@@ -79,6 +79,10 @@

Arguments

the data to be analysed under the specified model same

+
+

Value

+

List with values from GLM model

+

Details

It is an aggregate function that uses the model structure and starting @@ -102,11 +106,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/glmPredictDS.ag.html b/docs/reference/glmPredictDS.ag.html index 8f276db0..0fd62cae 100644 --- a/docs/reference/glmPredictDS.ag.html +++ b/docs/reference/glmPredictDS.ag.html @@ -19,7 +19,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -133,11 +133,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/glmPredictDS.as.html b/docs/reference/glmPredictDS.as.html index a711a8c4..343cafbb 100644 --- a/docs/reference/glmPredictDS.as.html +++ b/docs/reference/glmPredictDS.as.html @@ -20,7 +20,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -132,11 +132,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/glmSLMADS.assign.html b/docs/reference/glmSLMADS.assign.html index da7bc4fc..865683a7 100644 --- a/docs/reference/glmSLMADS.assign.html +++ b/docs/reference/glmSLMADS.assign.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -100,11 +100,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/glmSLMADS1.html b/docs/reference/glmSLMADS1.html index 5ff8d61b..ad787b51 100644 --- a/docs/reference/glmSLMADS1.html +++ b/docs/reference/glmSLMADS1.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -102,11 +102,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/glmSLMADS2.html b/docs/reference/glmSLMADS2.html index d938dfa1..0b4c5683 100644 --- a/docs/reference/glmSLMADS2.html +++ b/docs/reference/glmSLMADS2.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -110,11 +110,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/glmSummaryDS.ag.html b/docs/reference/glmSummaryDS.ag.html index ba61bcab..2e472da6 100644 --- a/docs/reference/glmSummaryDS.ag.html +++ b/docs/reference/glmSummaryDS.ag.html @@ -19,7 +19,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -90,11 +90,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/glmSummaryDS.as.html b/docs/reference/glmSummaryDS.as.html index 4c3ae805..13be7501 100644 --- a/docs/reference/glmSummaryDS.as.html +++ b/docs/reference/glmSummaryDS.as.html @@ -20,7 +20,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -89,11 +89,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/glmerSLMADS.assign.html b/docs/reference/glmerSLMADS.assign.html index c9990709..d363ec08 100644 --- a/docs/reference/glmerSLMADS.assign.html +++ b/docs/reference/glmerSLMADS.assign.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -144,11 +144,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/glmerSLMADS2.html b/docs/reference/glmerSLMADS2.html index 1f725066..a82fcf0e 100644 --- a/docs/reference/glmerSLMADS2.html +++ b/docs/reference/glmerSLMADS2.html @@ -19,7 +19,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -152,11 +152,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/heatmapPlotDS.html b/docs/reference/heatmapPlotDS.html index e92e94fd..f944c8e2 100644 --- a/docs/reference/heatmapPlotDS.html +++ b/docs/reference/heatmapPlotDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -60,7 +60,7 @@

Arguments

k
-

the number of the nearest neghbours for which their centroid is calculated if the +

the number of the nearest neighbours for which their centroid is calculated if the method.indicator is equal to 1 (i.e. deterministic method).

@@ -103,11 +103,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/hetcorDS.html b/docs/reference/hetcorDS.html index 20133820..72d30d65 100644 --- a/docs/reference/hetcorDS.html +++ b/docs/reference/hetcorDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -110,11 +110,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/histogramDS1.html b/docs/reference/histogramDS1.html index dcc90967..5c97d88c 100644 --- a/docs/reference/histogramDS1.html +++ b/docs/reference/histogramDS1.html @@ -2,7 +2,7 @@ returns the minimum and the maximum of the input numeric vector — histogramDS1 • dsBaselexisDS1 — lexisDS1 • dsBaselexisDS1 — lexisDS1 • dsBase @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -40,7 +40,7 @@

lexisDS1

-

The first serverside function called by ds.lexis.

+

The first server-side function called by ds.lexis.

@@ -55,6 +55,10 @@

Arguments

a character string specifying the variable holding the time that each individual is censored or fails

+
+

Value

+

List with `max.time`

+

Details

This is an aggregate function. @@ -73,11 +77,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/lexisDS2.html b/docs/reference/lexisDS2.html index b22db9dc..c1d0bf4d 100644 --- a/docs/reference/lexisDS2.html +++ b/docs/reference/lexisDS2.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -78,7 +78,7 @@

Arguments

idCol

a clientside generated character string specifying the variable -holding the IDs of indivuals in the data set to be expanded

+holding the IDs of individuals in the data set to be expanded

entryCol
@@ -103,6 +103,10 @@

Arguments

'data' argument is set the full data.frame will be expanded and carried forward

+
+

Value

+

List with `expanded.table`

+

Details

This is the assign @@ -111,7 +115,7 @@

Details

regression. lexisDS2 also carries out a series of disclosure checks and if the arguments or data fail any of those tests, -creation of the exapanded dataframe is blocked and an appropriate serverside error +creation of the expanded dataframe is blocked and an appropriate serverside error message is stored. For more details see the extensive header for ds.lexis.

@@ -128,11 +132,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/lexisDS3.html b/docs/reference/lexisDS3.html index 04bdfa6d..e2f35b56 100644 --- a/docs/reference/lexisDS3.html +++ b/docs/reference/lexisDS3.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -47,6 +47,10 @@

@title lexisDS3

lexisDS3()
+
+

Value

+

Data frame with `messageobj` object

+

Details

This is an assign function that simplifies the @@ -63,11 +67,11 @@

Details

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/listDS.html b/docs/reference/listDS.html index 9cfe3a95..368de3c9 100644 --- a/docs/reference/listDS.html +++ b/docs/reference/listDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -81,11 +81,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/listDisclosureSettingsDS.html b/docs/reference/listDisclosureSettingsDS.html index e49d3ea5..f9aed10f 100644 --- a/docs/reference/listDisclosureSettingsDS.html +++ b/docs/reference/listDisclosureSettingsDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -49,6 +49,10 @@

listDisclosureSettingsDS

listDisclosureSettingsDS()
+
+

Value

+

List with DataSHIELD disclosure settings

+

Details

For more details see the extensive header for ds.listDisclosureSettings

@@ -66,11 +70,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/lmerSLMADS.assign.html b/docs/reference/lmerSLMADS.assign.html index fdcdfd48..54ce677c 100644 --- a/docs/reference/lmerSLMADS.assign.html +++ b/docs/reference/lmerSLMADS.assign.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -125,11 +125,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/lmerSLMADS2.html b/docs/reference/lmerSLMADS2.html index 7e6fe936..87866fa0 100644 --- a/docs/reference/lmerSLMADS2.html +++ b/docs/reference/lmerSLMADS2.html @@ -19,7 +19,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -135,11 +135,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/lsDS.html b/docs/reference/lsDS.html index 7c8b0b22..1799e7eb 100644 --- a/docs/reference/lsDS.html +++ b/docs/reference/lsDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -98,11 +98,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/lsplineDS.html b/docs/reference/lsplineDS.html index bea19730..e0456521 100644 --- a/docs/reference/lsplineDS.html +++ b/docs/reference/lsplineDS.html @@ -20,7 +20,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -98,11 +98,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/matrixDS.html b/docs/reference/matrixDS.html index 31731b45..b9235578 100644 --- a/docs/reference/matrixDS.html +++ b/docs/reference/matrixDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -109,11 +109,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/matrixDetDS1.html b/docs/reference/matrixDetDS1.html index 1272238f..8cd345fd 100644 --- a/docs/reference/matrixDetDS1.html +++ b/docs/reference/matrixDetDS1.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -87,11 +87,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/matrixDetDS2.html b/docs/reference/matrixDetDS2.html index b096abd9..e7dea511 100644 --- a/docs/reference/matrixDetDS2.html +++ b/docs/reference/matrixDetDS2.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -87,11 +87,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/matrixDiagDS.html b/docs/reference/matrixDiagDS.html index f598f523..868962fa 100644 --- a/docs/reference/matrixDiagDS.html +++ b/docs/reference/matrixDiagDS.html @@ -19,7 +19,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -97,11 +97,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/matrixDimnamesDS.html b/docs/reference/matrixDimnamesDS.html index d2f54f1a..054a4ccf 100644 --- a/docs/reference/matrixDimnamesDS.html +++ b/docs/reference/matrixDimnamesDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -94,11 +94,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/matrixInvertDS.html b/docs/reference/matrixInvertDS.html index bf3d7764..c0c367c2 100644 --- a/docs/reference/matrixInvertDS.html +++ b/docs/reference/matrixInvertDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -79,11 +79,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/matrixMultDS.html b/docs/reference/matrixMultDS.html index 6009183d..826a2586 100644 --- a/docs/reference/matrixMultDS.html +++ b/docs/reference/matrixMultDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -69,7 +69,7 @@

Value

Details

Undertakes standard matrix multiplication where with input matrices A and B with -dimensions A: mxn and B: nxp the output C has dimensions mxp and each elemnt C[i,j] has +dimensions A: mxn and B: nxp the output C has dimensions mxp and each element C[i,j] has value equal to the dot product of row i of A and column j of B where the dot product is obtained as sum(A[i,1]*B[1,j] + A[i,2]*B[2,j] + .... + A[i,n]*B[n,j]). This calculation is only valid if the number of columns of A is the same as the number of rows of B

@@ -87,11 +87,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/matrixTransposeDS.html b/docs/reference/matrixTransposeDS.html index 97c9c3ec..c0199b6a 100644 --- a/docs/reference/matrixTransposeDS.html +++ b/docs/reference/matrixTransposeDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -80,11 +80,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/meanDS.html b/docs/reference/meanDS.html index d6b04f61..4bf3c57e 100644 --- a/docs/reference/meanDS.html +++ b/docs/reference/meanDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -77,11 +77,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/meanSdGpDS.html b/docs/reference/meanSdGpDS.html index 2c6b0d93..00ae967d 100644 --- a/docs/reference/meanSdGpDS.html +++ b/docs/reference/meanSdGpDS.html @@ -1,5 +1,5 @@ -MeanSdGpDS — meanSdGpDS • dsBaseMeanSdGpDS — meanSdGpDS • dsBase @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -40,7 +40,7 @@

MeanSdGpDS

-

Serverside function called by ds.meanSdGp

+

Server-side function called by ds.meanSdGp

@@ -52,15 +52,19 @@

Arguments

X
-

a clientside supplied character string identifying the variable for which +

a client-side supplied character string identifying the variable for which means/SDs are to be calculated

INDEX
-

a clientside supplied character string identifying the factor across +

a client-side supplied character string identifying the factor across which means/SDs are to be calculated

+
+

Value

+

List with results from the group statistics

+

Details

Computes the mean and standard deviation across groups defined by one @@ -79,11 +83,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/mergeDS.html b/docs/reference/mergeDS.html index 06acd66b..5e9d9dfb 100644 --- a/docs/reference/mergeDS.html +++ b/docs/reference/mergeDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -162,11 +162,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/messageDS.html b/docs/reference/messageDS.html index 29c711b0..af1b8e1a 100644 --- a/docs/reference/messageDS.html +++ b/docs/reference/messageDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -94,11 +94,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/metadataDS.html b/docs/reference/metadataDS.html index 9213b0d0..a89de535 100644 --- a/docs/reference/metadataDS.html +++ b/docs/reference/metadataDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -77,11 +77,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/miceDS.html b/docs/reference/miceDS.html index 0ebc15a1..26107e4a 100644 --- a/docs/reference/miceDS.html +++ b/docs/reference/miceDS.html @@ -23,7 +23,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -158,11 +158,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/minMaxRandDS.html b/docs/reference/minMaxRandDS.html index aaa6b482..68df025e 100644 --- a/docs/reference/minMaxRandDS.html +++ b/docs/reference/minMaxRandDS.html @@ -19,7 +19,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -90,11 +90,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/namesDS.html b/docs/reference/namesDS.html index 59531cee..6752fba5 100644 --- a/docs/reference/namesDS.html +++ b/docs/reference/namesDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -87,11 +87,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/nsDS.html b/docs/reference/nsDS.html index aadba2f2..75274958 100644 --- a/docs/reference/nsDS.html +++ b/docs/reference/nsDS.html @@ -19,7 +19,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -110,11 +110,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/numNaDS.html b/docs/reference/numNaDS.html index 73dd4497..a47b369e 100644 --- a/docs/reference/numNaDS.html +++ b/docs/reference/numNaDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -74,11 +74,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/qlsplineDS.html b/docs/reference/qlsplineDS.html index f7dcd721..f1d92793 100644 --- a/docs/reference/qlsplineDS.html +++ b/docs/reference/qlsplineDS.html @@ -20,7 +20,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -109,11 +109,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/quantileMeanDS.html b/docs/reference/quantileMeanDS.html index e98a2727..f76eceb9 100644 --- a/docs/reference/quantileMeanDS.html +++ b/docs/reference/quantileMeanDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -74,11 +74,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/rBinomDS.html b/docs/reference/rBinomDS.html index 6c0d9548..1882a6c6 100644 --- a/docs/reference/rBinomDS.html +++ b/docs/reference/rBinomDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -102,11 +102,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/rNormDS.html b/docs/reference/rNormDS.html index c549bbb5..826e3165 100644 --- a/docs/reference/rNormDS.html +++ b/docs/reference/rNormDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -110,11 +110,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/rPoisDS.html b/docs/reference/rPoisDS.html index 34ebcddb..a065dc1d 100644 --- a/docs/reference/rPoisDS.html +++ b/docs/reference/rPoisDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -95,11 +95,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/rUnifDS.html b/docs/reference/rUnifDS.html index fa3fe8e2..aca0a746 100644 --- a/docs/reference/rUnifDS.html +++ b/docs/reference/rUnifDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -110,11 +110,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/rangeDS.html b/docs/reference/rangeDS.html index c4fe2faa..2b52f5af 100644 --- a/docs/reference/rangeDS.html +++ b/docs/reference/rangeDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -74,11 +74,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/ranksSecureDS1.html b/docs/reference/ranksSecureDS1.html index 3e9f862b..ceabf162 100644 --- a/docs/reference/ranksSecureDS1.html +++ b/docs/reference/ranksSecureDS1.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -84,11 +84,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/ranksSecureDS2.html b/docs/reference/ranksSecureDS2.html index 800b4ac5..987e11ad 100644 --- a/docs/reference/ranksSecureDS2.html +++ b/docs/reference/ranksSecureDS2.html @@ -24,7 +24,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -99,11 +99,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/ranksSecureDS3.html b/docs/reference/ranksSecureDS3.html index 79f2def1..9d9af28c 100644 --- a/docs/reference/ranksSecureDS3.html +++ b/docs/reference/ranksSecureDS3.html @@ -19,7 +19,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -96,11 +96,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/ranksSecureDS4.html b/docs/reference/ranksSecureDS4.html index d65ece64..483f0c20 100644 --- a/docs/reference/ranksSecureDS4.html +++ b/docs/reference/ranksSecureDS4.html @@ -20,7 +20,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -111,11 +111,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/ranksSecureDS5.html b/docs/reference/ranksSecureDS5.html index 5b079b0e..15cddf45 100644 --- a/docs/reference/ranksSecureDS5.html +++ b/docs/reference/ranksSecureDS5.html @@ -20,7 +20,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -111,11 +111,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/rbindDS.html b/docs/reference/rbindDS.html index 384296c9..4280f354 100644 --- a/docs/reference/rbindDS.html +++ b/docs/reference/rbindDS.html @@ -19,7 +19,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -109,11 +109,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/reShapeDS.html b/docs/reference/reShapeDS.html index 5d61047a..3d08d195 100644 --- a/docs/reference/reShapeDS.html +++ b/docs/reference/reShapeDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -142,11 +142,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/recodeLevelsDS.html b/docs/reference/recodeLevelsDS.html index 6337ad1f..b11a34e9 100644 --- a/docs/reference/recodeLevelsDS.html +++ b/docs/reference/recodeLevelsDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -78,11 +78,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/recodeValuesDS.html b/docs/reference/recodeValuesDS.html index a6dff52c..e3e01e05 100644 --- a/docs/reference/recodeValuesDS.html +++ b/docs/reference/recodeValuesDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -112,11 +112,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/repDS.html b/docs/reference/repDS.html index 65fcfc2d..7bc3ce53 100644 --- a/docs/reference/repDS.html +++ b/docs/reference/repDS.html @@ -21,7 +21,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -192,11 +192,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/replaceNaDS.html b/docs/reference/replaceNaDS.html index 109762b6..da04a21a 100644 --- a/docs/reference/replaceNaDS.html +++ b/docs/reference/replaceNaDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -88,11 +88,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/rmDS.html b/docs/reference/rmDS.html index c11f63ae..1c9a723e 100644 --- a/docs/reference/rmDS.html +++ b/docs/reference/rmDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -90,11 +90,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/rowColCalcDS.html b/docs/reference/rowColCalcDS.html index 7149a3b6..80d9c543 100644 --- a/docs/reference/rowColCalcDS.html +++ b/docs/reference/rowColCalcDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -84,11 +84,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/sampleDS.html b/docs/reference/sampleDS.html index 5e7bd709..2a1671ba 100644 --- a/docs/reference/sampleDS.html +++ b/docs/reference/sampleDS.html @@ -19,7 +19,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -118,11 +118,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/scatterPlotDS.html b/docs/reference/scatterPlotDS.html index 262bcd8b..0d7d7c60 100644 --- a/docs/reference/scatterPlotDS.html +++ b/docs/reference/scatterPlotDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -68,7 +68,7 @@

Arguments

k
-

the number of the nearest neghbours for which their centroid is calculated if the +

the number of the nearest neighbours for which their centroid is calculated if the deterministic method is selected.

@@ -109,11 +109,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/seqDS.html b/docs/reference/seqDS.html index acc1d467..84a60d58 100644 --- a/docs/reference/seqDS.html +++ b/docs/reference/seqDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -135,11 +135,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/setFilterDS.html b/docs/reference/setFilterDS.html index fa9c1141..252a4d6f 100644 --- a/docs/reference/setFilterDS.html +++ b/docs/reference/setFilterDS.html @@ -19,7 +19,11 @@ dsBase +<<<<<<< HEAD 6.4.0.9000 +======= + 6.3.3 +>>>>>>> origin/v6.3.3-dev @@ -80,11 +84,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/setSeedDS.html b/docs/reference/setSeedDS.html index dff2cb06..f51b967a 100644 --- a/docs/reference/setSeedDS.html +++ b/docs/reference/setSeedDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -110,11 +110,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/skewnessDS1.html b/docs/reference/skewnessDS1.html index 64694ab0..9cf1abcc 100644 --- a/docs/reference/skewnessDS1.html +++ b/docs/reference/skewnessDS1.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -83,11 +83,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/skewnessDS2.html b/docs/reference/skewnessDS2.html index 0ffe07a7..75ca50b3 100644 --- a/docs/reference/skewnessDS2.html +++ b/docs/reference/skewnessDS2.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -88,11 +88,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/sqrtDS.html b/docs/reference/sqrtDS.html index aff46560..52fcc50d 100644 --- a/docs/reference/sqrtDS.html +++ b/docs/reference/sqrtDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -80,11 +80,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/subsetByClassDS.html b/docs/reference/subsetByClassDS.html new file mode 100644 index 00000000..b5bc54ea --- /dev/null +++ b/docs/reference/subsetByClassDS.html @@ -0,0 +1,107 @@ + +Breaks down a dataframe or a factor into its sub-classes — subsetByClassDS • dsBase + + +
+
+ + + +
+
+ + +
+

The function takes a categorical vector or dataframe as input and generates subset(s) +vectors or dataframes for each category. Subsets are considered invalid if they hold between 1 and +4 observations.

+
+ +
+
subsetByClassDS(data = NULL, variables = NULL)
+
+ +
+

Arguments

+ + +
data
+

a string character, the name of the dataframe or the factor vector

+ + +
variables
+

a vector of string characters, the names of the the variables to subset on.

+ +
+
+

Value

+

a list which contains the subsetted datasets

+
+
+

Details

+

If the input data object is a dataframe it is possible to specify the variables +to subset on. If a subset is not 'valid' all its the values are reported as missing (i.e. NA), +the name of the subsets is labelled as '_INVALID'. If no variables are specified to subset on, +the dataframe will be subset on each of its factor variables. +And if none of the columns holds a factor variable a message is issued as output. A message is also +issued as output if the input vector is not of type factor.

+
+
+

Author

+

Gaye, A.

+
+ +
+ +
+ + +
+ +
+

Site built with pkgdown 2.1.3.

+
+ +
+ + + + + + + + diff --git a/docs/reference/subsetByClassHelper1.html b/docs/reference/subsetByClassHelper1.html new file mode 100644 index 00000000..5f03b8e5 --- /dev/null +++ b/docs/reference/subsetByClassHelper1.html @@ -0,0 +1,102 @@ + +generates subsets vectors from a factor vector — subsetByClassHelper1 • dsBase + + +
+
+ + + +
+
+ + +
+

This is an internal function called by the function 'subsetByClassDS'.

+
+ +
+
subsetByClassHelper1(xvect = NULL, xname = NULL, filter = NULL)
+
+ +
+

Arguments

+ + +
xvect
+

a vector of type factor.

+ + +
xname
+

the name of the vector.

+ + +
filter
+

the minimum number observation (i.e. rows) that are allowed.

+ +
+
+

Value

+

a list which contains the subsets.

+
+
+

Details

+

The function generates subsets if the input of 'subsetByClassDS' is a factor vector.

+
+
+

Author

+

Gaye, A.

+
+ +
+ +
+ + +
+ +
+

Site built with pkgdown 2.1.3.

+
+ +
+ + + + + + + + diff --git a/docs/reference/subsetByClassHelper2.html b/docs/reference/subsetByClassHelper2.html new file mode 100644 index 00000000..0363307e --- /dev/null +++ b/docs/reference/subsetByClassHelper2.html @@ -0,0 +1,107 @@ + +generates subset tables from a data frame — subsetByClassHelper2 • dsBase + + +
+
+ + + +
+
+ + +
+

This is an internal function called by the function 'subsetByClassDS'

+
+ +
+
subsetByClassHelper2(df = NULL, iter = NULL, filter = NULL)
+
+ +
+

Arguments

+ + +
df
+

a data frame.

+ + +
iter
+

the indices of columns to loop trough.

+ + +
filter
+

the minimum number of observations (i.e. rows) that are allowed.

+ +
+
+

Value

+

a list which contains the subsets, their names and an integer that indicates how many columns were +not factors.

+
+
+

Details

+

The function generates subsets if the input of 'subsetByClassDS' is a data frame +and if the number variables(columns) to subset by are greater than 1; i.e. this +function is called if the user specified more than one variable or no variable to subset by +(if no variables are specified the function 'subsetByClassDS' produces a subset for each category +in each variable).

+
+
+

Author

+

Gaye, A.

+
+ +
+ +
+ + +
+ +
+

Site built with pkgdown 2.1.3.

+
+ +
+ + + + + + + + diff --git a/docs/reference/subsetDS.html b/docs/reference/subsetDS.html new file mode 100644 index 00000000..8bc2f861 --- /dev/null +++ b/docs/reference/subsetDS.html @@ -0,0 +1,142 @@ + +Generates a valid subset of a table or a vector — subsetDS • dsBase + + +
+
+ + + +
+
+ + +
+

The function uses the R classical subsetting with squared brackets '[]' and allows also to +subset using a logical oprator and a threshold. The object to subset from must be a vector (factor, numeric +or charcater) or a table (data.frame or matrix).

+
+ +
+
subsetDS(
+  dt = NULL,
+  complt = NULL,
+  rs = NULL,
+  cs = NULL,
+  lg = NULL,
+  th = NULL,
+  varname = NULL
+)
+
+ +
+

Arguments

+ + +
dt
+

a string character, the name of the dataframe or the factor vector and the range of the subset.

+ + +
complt
+

a boolean that tells if the subset to subset should include only complete cases

+ + +
rs
+

a vector of two integers that give the range of rows de extract.

+ + +
cs
+

a vector of two integers or one or more characters; the indices of the columns to extract or the names of the columns (i.e. +names of the variables to extract).

+ + +
lg
+

a character, the logical parameter to use if the user wishes to subset a vector using a logical +operator. This parameter is ignored if the input data is not a vector.

+ + +
th
+

a numeric, the threshold to use in conjunction with the logical parameter. This parameter is ignored +if the input data is not a vector.

+ + +
varname
+

a character, if the input data is a table, if this parameter is provided along with the 'logical' and 'threshold' +parameters, a subtable is based the threshold applied to the speicified variable. This parameter is however ignored if the parameter +'rows' and/or 'cols' are provided.

+ +
+
+

Value

+

a subset of the vector, matric or dataframe as specified is stored on the server side

+
+
+

Details

+

If the input data is a table: The user specifies the rows and/or columns to include in the subset if the input +object is a table; the columns can be refered to by their names. The name of a vector (i.e. a variable) can also be provided +with a logical operator and a threshold (see example 3). +If the input data is a vector: when the parameters 'rows', 'logical' and 'threshold' are all provided the last two are ignored ( +'rows' has precedence over the other two parameters then). +If the requested subset is not valid (i.e. contains less than the allowed +number of observations), the subset is not generated, rather a table or a vector of missing values is generated to allow +for any subsequent process using the output of the function to proceed after informing the user via a message.

+
+
+

Author

+

Gaye, A.

+
+ +
+ +
+ + +
+ +
+

Site built with pkgdown 2.1.3.

+
+ +
+ + + + + + + + diff --git a/docs/reference/table1DDS.html b/docs/reference/table1DDS.html index 5a7648bf..f39a4ded 100644 --- a/docs/reference/table1DDS.html +++ b/docs/reference/table1DDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -65,7 +65,7 @@

Value

Details

It generates a 1-dimensional tables where valid (non-disclosive) 1-dimensional tables are defined -as data from sources where no table cells have counts between 1 and the set threshold. When the ouput table +as data from sources where no table cells have counts between 1 and the set threshold. When the output table is invalid all cells but the total count are replaced by missing values. Only the total count is visible on the table returned to the client site. A message is also returned with the 1-dimensional; the message says "invalid table - invalid counts present" if the table is invalid and 'valid table' otherwise.

@@ -83,11 +83,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/table2DDS.html b/docs/reference/table2DDS.html index 38793ea2..25d9bf3d 100644 --- a/docs/reference/table2DDS.html +++ b/docs/reference/table2DDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -69,7 +69,7 @@

Value

Details

It generates 2-dimensional contingency tables where valid (non-disclosive) tables are defined -as those where none of their cells have counts between 1 and the set threshold "nfilter.tab". When the ouput table +as those where none of their cells have counts between 1 and the set threshold "nfilter.tab". When the output table is invalid all cells except the total counts are replaced by missing values. Only the total counts are visible on the table returned to the client side. A message is also returned with the 2-dimensional table; the message says "invalid table - invalid counts present" if the table is invalid and 'valid table' otherwise.

@@ -87,11 +87,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/tableDS.assign.html b/docs/reference/tableDS.assign.html index 3187bdc8..28fc9a8f 100644 --- a/docs/reference/tableDS.assign.html +++ b/docs/reference/tableDS.assign.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -135,11 +135,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/tableDS.html b/docs/reference/tableDS.html index 764d8bf5..42329283 100644 --- a/docs/reference/tableDS.html +++ b/docs/reference/tableDS.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -139,11 +139,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/tableDS2.html b/docs/reference/tableDS2.html index f9dfd6a4..222ccd49 100644 --- a/docs/reference/tableDS2.html +++ b/docs/reference/tableDS2.html @@ -18,7 +18,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -109,11 +109,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/tapplyDS.assign.html b/docs/reference/tapplyDS.assign.html index 2cdeed12..13c60a52 100644 --- a/docs/reference/tapplyDS.assign.html +++ b/docs/reference/tapplyDS.assign.html @@ -19,7 +19,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -93,11 +93,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/tapplyDS.html b/docs/reference/tapplyDS.html index 92ee924d..41ecad0a 100644 --- a/docs/reference/tapplyDS.html +++ b/docs/reference/tapplyDS.html @@ -19,7 +19,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -93,11 +93,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/testObjExistsDS.html b/docs/reference/testObjExistsDS.html index 291de822..6f54fcf3 100644 --- a/docs/reference/testObjExistsDS.html +++ b/docs/reference/testObjExistsDS.html @@ -1,5 +1,5 @@ -testObjExistsDS — testObjExistsDS • dsBasetestObjExistsDS — testObjExistsDS • dsBase @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -40,7 +40,7 @@

testObjExistsDS

-

The serverside function called by ds.testObjExists

+

The server-side function called by ds.testObjExists

@@ -52,10 +52,14 @@

Arguments

test.obj.name
-

a clientside provided character string specifying the variable +

a client-side provided character string specifying the variable whose presence is to be tested in each data source

+
+

Value

+

List with `test.obj.exists` and `test.obj.class`

+

Details

Tests whether a given object exists in @@ -76,11 +80,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/unListDS.html b/docs/reference/unListDS.html index 40d7a6bf..27c8407d 100644 --- a/docs/reference/unListDS.html +++ b/docs/reference/unListDS.html @@ -19,7 +19,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -104,11 +104,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/uniqueDS.html b/docs/reference/uniqueDS.html index 89f5f476..58530d79 100644 --- a/docs/reference/uniqueDS.html +++ b/docs/reference/uniqueDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -77,11 +77,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/varDS.html b/docs/reference/varDS.html index 5f159a02..8c1e08e6 100644 --- a/docs/reference/varDS.html +++ b/docs/reference/varDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -80,11 +80,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/reference/vectorDS.html b/docs/reference/vectorDS.html index 10a9cc40..9297d620 100644 --- a/docs/reference/vectorDS.html +++ b/docs/reference/vectorDS.html @@ -17,7 +17,7 @@ dsBase - 6.4.0.9000 + 6.4.0-9000 @@ -77,11 +77,11 @@

Author

-

Site built with pkgdown 2.1.1.

+

Site built with pkgdown 2.1.3.

diff --git a/docs/sitemap.xml b/docs/sitemap.xml index 71744800..72d2ea88 100644 --- a/docs/sitemap.xml +++ b/docs/sitemap.xml @@ -6,6 +6,7 @@ /reference/BooleDS.html /reference/absDS.html /reference/asCharacterDS.html +/reference/asDataFrameDS.html /reference/asDataMatrixDS.html /reference/asFactorDS1.html /reference/asFactorDS2.html @@ -134,7 +135,6 @@ /reference/subsetByClassDS.html /reference/subsetByClassHelper1.html /reference/subsetByClassHelper2.html -/reference/subsetByClassHelper3.html /reference/subsetDS.html /reference/table1DDS.html /reference/table2DDS.html diff --git a/inst/DATASHIELD b/inst/DATASHIELD new file mode 100644 index 00000000..cacfc42b --- /dev/null +++ b/inst/DATASHIELD @@ -0,0 +1,163 @@ +AggregateMethods: + asFactorDS1, + asListDS, + aucDS, + boxPlotGGDS, + checkNegValueDS, + classDS, + colnamesDS, + corTestDS, + corDS, + covDS, + dataFrameSubsetDS1, + densityGridDS, + extractQuantilesDS1, + extractQuantilesDS2, + dimDS, + gamlssDS, + glmDS1, + glmDS2, + glmerSLMADS2, + glmPredictDS.ag, + glmSLMADS1, + glmSLMADS2, + glmSummaryDS.ag, + heatmapPlotDS, + hetcorDS, + histogramDS1, + histogramDS2, + isNaDS, + isValidDS, + kurtosisDS1, + kurtosisDS2, + lengthDS, + levelsDS, + lexisDS1, + listDisclosureSettingsDS, + lmerSLMADS2, + lsDS, + matrixDetDS1, + meanDS, + meanSdGpDS, + messageDS, + metadataDS, + miceDS, + minMaxRandDS, + namesDS, + numNaDS, + quantileMeanDS, + rangeDS, + ranksSecureDS1, + ranksSecureDS3, + rmDS, + scatterPlotDS, + scoreVectDS, + setSeedDS, + skewnessDS1, + skewnessDS2, + table1DDS, + table2DDS, + tableDS, + tableDS2, + tapplyDS, + testObjExistsDS, + varDS, + exists=base::exists, + is.character=base::is.character, + is.factor=base::is.factor, + is.list=base::is.list, + is.null=base::is.null, + is.numeric=base::is.numeric, + NROW=base::NROW, + t.test=stats::t.test +AssignMethods: + absDS, + asCharacterDS, + asDataMatrixDS, + asFactorDS2, + asFactorSimpleDS, + asIntegerDS, + asListDS, + asLogicalDS, + asMatrixDS, + asNumericDS, + blackBoxDS, + blackBoxRanksDS, + BooleDS, + boxPlotGG_data_TreatmentDS, + boxPlotGG_data_Treatment_numericDS, + bp_standardsDS, + cbindDS, + cDS, + changeRefGroupDS, + completeCasesDS, + dataFrameDS, + dataFrameFillDS, + dataFrameSortDS, + dataFrameSubsetDS2, + dmtC2SDS, + elsplineDS, + glmerSLMADS.assign, + glmPredictDS.as, + glmSLMADS.assign, + glmSummaryDS.as, + getWGSRDS, + igb_standardsDS, + listDS, + lexisDS2, + lexisDS3, + lmerSLMADS.assign, + lsplineDS, + matrixDetDS2, + matrixDiagDS, + matrixDimnamesDS, + matrixDS, + matrixInvertDS, + matrixMultDS, + matrixTransposeDS, + mergeDS, + nsDS, + qlsplineDS, + ranksSecureDS2, + ranksSecureDS4, + ranksSecureDS5, + rbindDS, + rBinomDS, + recodeLevelsDS, + recodeValuesDS, + repDS, + replaceNaDS, + reShapeDS, + rNormDS, + rowColCalcDS, + rPoisDS, + rUnifDS, + sampleDS, + seqDS, + sqrtDS, + subsetByClassDS, + subsetDS, + tableDS.assign, + tapplyDS.assign, + uniqueDS, + unListDS, + vectorDS, + as.character=base::as.character, + as.null=base::as.null, + as.numeric=base::as.numeric, + attach=base::attach, + c=dsBase::vectorDS, + complete.cases=stats::complete.cases, + list=base::list, + exp=base::exp, + log=base::log, + sqrt=base::sqrt, + abs=base::abs, + sin=base::sin, + cos=base::cos, + tan=base::tan, + asin=base::asin, + acos=base::acos, + atan=base::atan, + sum=base::sum, + unlist=base::unlist \ No newline at end of file diff --git a/man/BooleDS.Rd b/man/BooleDS.Rd index 876620c4..162f00e1 100644 --- a/man/BooleDS.Rd +++ b/man/BooleDS.Rd @@ -26,8 +26,9 @@ that could legally be passed from client to server via DataSHIELD parser} \item{na.assign.text}{A character string taking values 'NA', '1' or '0'. If 'NA' -then any NA values in the input vector remain as NAs in the output vector. If '1' -or '0' NA values in the input vector are all converted to 1 or 0 respectively.} +then any NA values in the +input vector remain as NAs in the output vector. If '1' or '0' NA values in the +input vector are all converted to 1 or 0 respectively.} \item{numeric.output}{a TRUE/FALSE indicator defaulting to TRUE determining whether the final output variable diff --git a/man/absDS.Rd b/man/absDS.Rd index 84ea8c0a..633845dc 100644 --- a/man/absDS.Rd +++ b/man/absDS.Rd @@ -12,7 +12,7 @@ absDS(x) \value{ the object specified by the \code{newobj} argument of \code{ds.abs} (or default name \code{abs.newobj}) -which is written to the serverside. The output object is of class numeric +which is written to the serverside. The output object is of class numeric or integer. } \description{ diff --git a/man/asDataFrameDS.Rd b/man/asDataFrameDS.Rd index ceb08741..8e1b1029 100644 --- a/man/asDataFrameDS.Rd +++ b/man/asDataFrameDS.Rd @@ -1,11 +1,9 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/asDataFrameDS.R, R/asDataMatrixDS.R +% Please edit documentation in R/asDataFrameDS.R \name{asDataFrameDS} \alias{asDataFrameDS} \title{asDataFrameDS a serverside assign function called by ds.asDataFrame} \usage{ -asDataFrameDS(x.name) - asDataFrameDS(x.name) } \arguments{ @@ -15,24 +13,15 @@ usually specified directly by argument of the clientside function \code{ds.asDataFrame}} } \value{ -the object specified by the argument (or its default name -"asdataframe.newobj") which is written to the serverside. For further -details see help on the clientside function \code{ds.asDataMatrix} - the object specified by the argument (or its default name "asdataframe.newobj") which is written to the serverside. For further details see help on the clientside function \code{ds.asDataMatrix} } \description{ -Coerces an R object into a matrix maintaining original -class for all columns in data.frames. - Coerces an R object into a matrix maintaining original class for all columns in data.frames. } \details{ -This assign function is based on the native R function \code{data.frame} - This assign function is based on the native R function \code{data.frame} } \author{ diff --git a/man/asDataMatrixDS.Rd b/man/asDataMatrixDS.Rd new file mode 100644 index 00000000..31cf5407 --- /dev/null +++ b/man/asDataMatrixDS.Rd @@ -0,0 +1,29 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/asDataMatrixDS.R +\name{asDataMatrixDS} +\alias{asDataMatrixDS} +\title{asDataFrameDS a serverside assign function called by ds.asDataFrame} +\usage{ +asDataMatrixDS(x.name) +} +\arguments{ +\item{x.name}{the name of the input object to be coerced to class +data.frame. Must be specified in inverted commas. But this argument is +usually specified directly by argument of the clientside function +\code{ds.asDataFrame}} +} +\value{ +the object specified by the argument (or its default name +"asdataframe.newobj") which is written to the serverside. For further +details see help on the clientside function \code{ds.asDataMatrix} +} +\description{ +Coerces an R object into a matrix maintaining original +class for all columns in data.frames. +} +\details{ +This assign function is based on the native R function \code{data.frame} +} +\author{ +Tim Cadman +} diff --git a/man/boxPlotGGDS.Rd b/man/boxPlotGGDS.Rd index a3c17333..3633b943 100644 --- a/man/boxPlotGGDS.Rd +++ b/man/boxPlotGGDS.Rd @@ -19,8 +19,6 @@ boxPlotGGDS(data_table, group = NULL, group2 = NULL) \item{group2}{\code{character} (default \code{NULL}) Name of the second grouping variable.} } \value{ -\cr - \code{list} with: \cr -\code{data frame} Geometrical parameters (identity stats of ggplot) \cr -\code{character} Type of plot (single_group, double_group or no_group) \cr diff --git a/man/checkPermissivePrivacyControlLevel.Rd b/man/checkPermissivePrivacyControlLevel.Rd index 0399948d..55894043 100644 --- a/man/checkPermissivePrivacyControlLevel.Rd +++ b/man/checkPermissivePrivacyControlLevel.Rd @@ -9,8 +9,11 @@ checkPermissivePrivacyControlLevel(privacyControlLevels) \arguments{ \item{privacyControlLevels}{is a vector of strings which contains the privacy control level names which are permitted by the calling method.} } +\value{ +No return value, called for side effects +} \description{ -This serverside function check that the server is running in "permissive" privacy control level. +This server-side function check that the server is running in "permissive" privacy control level. } \details{ Tests whether the R option "datashield.privacyControlLevel" is set to "permissive", if it isn't @@ -18,5 +21,5 @@ will cause a call to stop() with the message "BLOCKED: The server is running in has caused this method to be blocked". } \author{ -Wheater, Dr SM., DataSHIELD Team. +Wheater, Dr SM., DataSHIELD Development Team. } diff --git a/man/covDS.Rd b/man/covDS.Rd index cf8b8158..25b7d527 100644 --- a/man/covDS.Rd +++ b/man/covDS.Rd @@ -23,7 +23,7 @@ two variables.} a list that includes a matrix with elements the sum of products between each two variables, a matrix with elements the sum of the values of each variable, a matrix with elements the number of complete cases in each pair of variables, a list with the number of missing values in each variable separately (columnwise) and the number -of missing values casewise or pairwise depending on the arqument \code{use}, and an error message which indicates +of missing values casewise or pairwise depending on the argument \code{use}, and an error message which indicates whether or not the input variables pass the disclosure controls. The first disclosure control checks that the number of variables is not bigger than a percentage of the individual-level records (the allowed percentage is pre-specified by the 'nfilter.glm'). The second disclosure control checks that none of them is dichotomous with a level having fewer diff --git a/man/extract.Rd b/man/extract.Rd deleted file mode 100644 index 4f2c17b2..00000000 --- a/man/extract.Rd +++ /dev/null @@ -1,21 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/extract.R -\name{extract} -\alias{extract} -\title{Splits character by '$' and returns the single characters} -\usage{ -extract(input) -} -\arguments{ -\item{input}{a vector or a list of characters} -} -\value{ -a vector of characters -} -\description{ -This is an internal function. -} -\details{ -Not required -} -\keyword{internal} diff --git a/man/glmDS1.Rd b/man/glmDS1.Rd index 83f49cc7..e0b0b332 100644 --- a/man/glmDS1.Rd +++ b/man/glmDS1.Rd @@ -21,8 +21,11 @@ variables U on x,y and Z} optional character string specifying a data.frame object holding the data to be analysed under the specified model} } +\value{ +List with values from GLM model. +} \description{ -This is the first serverside aggregate function called by ds.glm +This is the first server-side aggregate function called by ds.glm } \details{ It is an diff --git a/man/glmDS2.Rd b/man/glmDS2.Rd index e957af0c..36731d5f 100644 --- a/man/glmDS2.Rd +++ b/man/glmDS2.Rd @@ -23,8 +23,11 @@ vector of regression coefficients at the current iteration} \item{dataName}{an optional character string specifying a data.frame object holding the data to be analysed under the specified model same} } +\value{ +List with values from GLM model +} \description{ -This is the second serverside aggregate function called by ds.glm. +This is the second server-side aggregate function called by ds.glm. } \details{ It is an aggregate function that uses the model structure and starting diff --git a/man/heatmapPlotDS.Rd b/man/heatmapPlotDS.Rd index 9876a65b..950dbace 100644 --- a/man/heatmapPlotDS.Rd +++ b/man/heatmapPlotDS.Rd @@ -11,7 +11,7 @@ heatmapPlotDS(x, y, k, noise, method.indicator) \item{y}{the name of a numeric vector, the y-variable.} -\item{k}{the number of the nearest neghbours for which their centroid is calculated if the +\item{k}{the number of the nearest neighbours for which their centroid is calculated if the \code{method.indicator} is equal to 1 (i.e. deterministic method).} \item{noise}{the percentage of the initial variance that is used as the variance of the embedded diff --git a/man/histogramDS1.Rd b/man/histogramDS1.Rd index a895e31e..a8e8a551 100644 --- a/man/histogramDS1.Rd +++ b/man/histogramDS1.Rd @@ -14,7 +14,7 @@ control that is used for the generation of the histogram. If the value is equal 'smallCellsRule' is used. If the value is equal to 2 then the 'deterministic' method is used. If the value is set to 3 then the 'probabilistic' method is used.} -\item{k}{the number of the nearest neghbours for which their centroid is calculated if the +\item{k}{the number of the nearest neighbours for which their centroid is calculated if the \code{method.indicator} is equal to 2 (i.e. deterministic method).} \item{noise}{the percentage of the initial variance that is used as the variance of the embedded @@ -27,7 +27,7 @@ a numeric vector which contains the minimum and the maximum values of the vector this function returns the minimum and maximum of the input numeric vector which depends on the argument \code{method.indicator}. If the method.indicator is set to 1 (i.e. the 'smallCellsRule' is used) the computed minimum and maximum values are multiplied by a very small -random number. If the method.indicator is set to 2 (i.e. the 'deteministic' method is used) the +random number. If the method.indicator is set to 2 (i.e. the 'deterministic' method is used) the function returns the minimum and maximum values of the vector with the scaled centroids. If the method.indicator is set to 3 (i.e. the 'probabilistic' method is used) the function returns the minimum and maximum values of the generated 'noisy' vector. diff --git a/man/histogramDS2.Rd b/man/histogramDS2.Rd index 866ec6a5..76bf8ea3 100644 --- a/man/histogramDS2.Rd +++ b/man/histogramDS2.Rd @@ -20,7 +20,7 @@ control that is used for the generation of the histogram. If the value is equal 'smallCellsRule' is used. If the value is equal to 2 then the 'deterministic' method is used. If the value is set to 3 then the 'probabilistic' method is used.} -\item{k}{the number of the nearest neghbours for which their centroid is calculated if the +\item{k}{the number of the nearest neighbours for which their centroid is calculated if the \code{method.indicator} is equal to 2 (i.e. deterministic method).} \item{noise}{the percentage of the initial variance that is used as the variance of the embedded diff --git a/man/lexisDS1.Rd b/man/lexisDS1.Rd index bd252984..da419723 100644 --- a/man/lexisDS1.Rd +++ b/man/lexisDS1.Rd @@ -9,8 +9,11 @@ lexisDS1(exitCol = NULL) \arguments{ \item{exitCol}{a character string specifying the variable holding the time that each individual is censored or fails} } +\value{ +List with `max.time` +} \description{ -The first serverside function called by ds.lexis. +The first server-side function called by ds.lexis. } \details{ This is an aggregate function. diff --git a/man/lexisDS2.Rd b/man/lexisDS2.Rd index 682f3545..9b943bb1 100644 --- a/man/lexisDS2.Rd +++ b/man/lexisDS2.Rd @@ -27,7 +27,7 @@ expanded data} time in any of the sources} \item{idCol}{a clientside generated character string specifying the variable -holding the IDs of indivuals in the data set to be expanded} +holding the IDs of individuals in the data set to be expanded} \item{entryCol}{a clientside specified character string identifying the variable holding the time that each individual starts follow up} @@ -43,6 +43,9 @@ column names of additional variables to include in the final expanded table. If the 'variables' argument is not set (is null) but the 'data' argument is set the full data.frame will be expanded and carried forward} } +\value{ +List with `expanded.table` +} \description{ The second serverside function called by ds.lexis. } @@ -53,7 +56,7 @@ the expanded dataframe containing surival data for a piecewise exponential regression. lexisDS2 also carries out a series of disclosure checks and if the arguments or data fail any of those tests, -creation of the exapanded dataframe is blocked and an appropriate serverside error +creation of the expanded dataframe is blocked and an appropriate serverside error message is stored. For more details see the extensive header for ds.lexis. } diff --git a/man/lexisDS3.Rd b/man/lexisDS3.Rd index ea46ffac..42eb9688 100644 --- a/man/lexisDS3.Rd +++ b/man/lexisDS3.Rd @@ -7,6 +7,9 @@ lexisDS3} \usage{ lexisDS3() } +\value{ +Data frame with `messageobj` object +} \description{ The third serverside function called by ds.lexis. } diff --git a/man/listDisclosureSettingsDS.Rd b/man/listDisclosureSettingsDS.Rd index d1e2ef50..62c5e9e4 100644 --- a/man/listDisclosureSettingsDS.Rd +++ b/man/listDisclosureSettingsDS.Rd @@ -6,6 +6,9 @@ \usage{ listDisclosureSettingsDS() } +\value{ +List with DataSHIELD disclosure settings +} \description{ This serverside function is an aggregate function that is called by the ds.listDisclosureSettings diff --git a/man/matrixMultDS.Rd b/man/matrixMultDS.Rd index 0ec25ce8..cac0958e 100644 --- a/man/matrixMultDS.Rd +++ b/man/matrixMultDS.Rd @@ -22,7 +22,7 @@ Calculates the matrix product of two matrices and writes output to serverside } \details{ Undertakes standard matrix multiplication where with input matrices A and B with -dimensions A: mxn and B: nxp the output C has dimensions mxp and each elemnt C[i,j] has +dimensions A: mxn and B: nxp the output C has dimensions mxp and each element C[i,j] has value equal to the dot product of row i of A and column j of B where the dot product is obtained as sum(A[i,1]*B[1,j] + A[i,2]*B[2,j] + .... + A[i,n]*B[n,j]). This calculation is only valid if the number of columns of A is the same as the number of rows of B diff --git a/man/meanSdGpDS.Rd b/man/meanSdGpDS.Rd index 62adf441..0b7cc1d5 100644 --- a/man/meanSdGpDS.Rd +++ b/man/meanSdGpDS.Rd @@ -7,14 +7,17 @@ meanSdGpDS(X, INDEX) } \arguments{ -\item{X}{a clientside supplied character string identifying the variable for which +\item{X}{a client-side supplied character string identifying the variable for which means/SDs are to be calculated} -\item{INDEX}{a clientside supplied character string identifying the factor across +\item{INDEX}{a client-side supplied character string identifying the factor across which means/SDs are to be calculated} } +\value{ +List with results from the group statistics +} \description{ -Serverside function called by ds.meanSdGp +Server-side function called by ds.meanSdGp } \details{ Computes the mean and standard deviation across groups defined by one diff --git a/man/rangeDS.Rd b/man/rangeDS.Rd index 44716f88..9d0f13fa 100644 --- a/man/rangeDS.Rd +++ b/man/rangeDS.Rd @@ -13,7 +13,7 @@ rangeDS(xvect) a numeric vector which contains the minimum and the maximum values of the vector } \description{ -this function is similar to R function \code{range} but instead to not return +this function is similar to R function \code{range} but instead to not return the real minimum and maximum, the computed values are multiplied by a very small random number. } \author{ diff --git a/man/scatterPlotDS.Rd b/man/scatterPlotDS.Rd index b0beea90..7b2709fd 100644 --- a/man/scatterPlotDS.Rd +++ b/man/scatterPlotDS.Rd @@ -15,7 +15,7 @@ scatterPlotDS(x, y, method.indicator, k, noise) method in the client side function the method.indicator is set to 1 while if the user selects the probabilistic method this argument is set to 2.} -\item{k}{the number of the nearest neghbours for which their centroid is calculated if the +\item{k}{the number of the nearest neighbours for which their centroid is calculated if the deterministic method is selected.} \item{noise}{the percentage of the initial variance that is used as the variance of the embedded diff --git a/man/setFilterDS.Rd b/man/setFilterDS.Rd deleted file mode 100644 index 3d319dd2..00000000 --- a/man/setFilterDS.Rd +++ /dev/null @@ -1,26 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/setFilterDS.R -\name{setFilterDS} -\alias{setFilterDS} -\title{Sets the privacy level} -\usage{ -setFilterDS(x = getOption("datashield.privacyLevel", default = 5)) -} -\arguments{ -\item{x}{a dummy argument} -} -\value{ -an integer between 1 and 5 -} -\description{ -This is an internal function that set the number of observation -that are allowed in any table or vector. The function gets the value from the data repository -and if no value was set it uses the default value 5. -} -\details{ -The function is called by server side functios -} -\author{ -Gaye, A. -} -\keyword{internal} diff --git a/man/table1DDS.Rd b/man/table1DDS.Rd index b44f19c4..950ff239 100644 --- a/man/table1DDS.Rd +++ b/man/table1DDS.Rd @@ -19,7 +19,7 @@ This function generates a 1-dimensional table where potentially disclosive cells } \details{ It generates a 1-dimensional tables where valid (non-disclosive) 1-dimensional tables are defined -as data from sources where no table cells have counts between 1 and the set threshold. When the ouput table +as data from sources where no table cells have counts between 1 and the set threshold. When the output table is invalid all cells but the total count are replaced by missing values. Only the total count is visible on the table returned to the client site. A message is also returned with the 1-dimensional; the message says "invalid table - invalid counts present" if the table is invalid and 'valid table' otherwise. diff --git a/man/table2DDS.Rd b/man/table2DDS.Rd index 962309c5..2e760e28 100644 --- a/man/table2DDS.Rd +++ b/man/table2DDS.Rd @@ -21,7 +21,7 @@ This function generates a 2-dimensional contingency table where potentially disc } \details{ It generates 2-dimensional contingency tables where valid (non-disclosive) tables are defined -as those where none of their cells have counts between 1 and the set threshold "nfilter.tab". When the ouput table +as those where none of their cells have counts between 1 and the set threshold "nfilter.tab". When the output table is invalid all cells except the total counts are replaced by missing values. Only the total counts are visible on the table returned to the client side. A message is also returned with the 2-dimensional table; the message says "invalid table - invalid counts present" if the table is invalid and 'valid table' otherwise. diff --git a/man/testObjExistsDS.Rd b/man/testObjExistsDS.Rd index 5a54f844..3c49f15c 100644 --- a/man/testObjExistsDS.Rd +++ b/man/testObjExistsDS.Rd @@ -7,11 +7,14 @@ testObjExistsDS(test.obj.name = NULL) } \arguments{ -\item{test.obj.name}{a clientside provided character string specifying the variable +\item{test.obj.name}{a client-side provided character string specifying the variable whose presence is to be tested in each data source} } +\value{ +List with `test.obj.exists` and `test.obj.class` +} \description{ -The serverside function called by ds.testObjExists +The server-side function called by ds.testObjExists } \details{ Tests whether a given object exists in diff --git a/tests/testthat/data_files/ANTHRO/anthro1.csv b/tests/testthat/data_files/ANTHRO/anthro1.csv deleted file mode 100644 index 5dcfa720..00000000 --- a/tests/testthat/data_files/ANTHRO/anthro1.csv +++ /dev/null @@ -1,874 +0,0 @@ -,age,sex,weight,height,muac -1,6,1,7.3,65,14.6 -2,42,2,12.5,89.5,15.6 -3,23,1,10.6,78.1,14.9 -4,18,1,12.8,81.5,16 -5,52,1,12.1,87.3,15.2 -6,36,2,16.9,93,19 -7,30,2,12.5,82.2,16.6 -8,48,1,16.3,99,15.4 -9,29,1,11,82,13.5 -10,54,1,14.2,85.9,15.1 -11,11,2,6.2,66.3,11.5 -12,36,2,13.1,87,16.4 -13,42,1,13.5,91,14.4 -14,36,1,11.7,87.5,14.3 -15,16,1,9.1,73.1,13.5 -16,48,2,12,90.7,14.9 -17,11,1,9.4,74.8,13.8 -18,46,2,13.9,93.5,15.2 -19,32,1,12.6,83,15.5 -20,33,2,11.8,85.7,12.7 -21,42,1,11.3,84.5,14.5 -22,40,2,12.9,101.2,16.1 -23,21,2,8.9,75,13.6 -24,25,1,10.7,81.3,14.3 -25,30,1,14.4,82.4,13.5 -26,6,1,8.2,68.8,13.2 -27,34,2,13.9,88.3,14.9 -28,30,1,9.6,79,12.8 -29,33,2,11.5,83.5,14 -30,12,1,8.5,71.4,13.5 -31,10,1,7.9,69.5,14.4 -32,35,1,13.2,85.5,15 -33,10,2,5.1,62.5,11 -34,56,2,16.4,99,15.3 -35,42,1,14,93.2,16.4 -36,48,1,13.2,99,14.2 -37,48,1,14.3,101.5,14.6 -38,47,1,15.8,97.5,16.1 -39,12,2,8.5,75.3,14 -40,36,1,11,79,15 -41,24,2,9.8,75.5,14.6 -42,14,1,6.7,75.4,13.2 -43,20,1,10.6,79,13.8 -44,51,2,15.4,93.2,17.4 -45,12,1,8.1,71.4,12.2 -46,18,2,8.3,74.1,12.9 -47,21,2,10.4,73.6,14.5 -48,13,2,10,76.5,17 -49,13,1,9.1,71,14.1 -50,30,1,13.6,90.3,14.5 -51,36,1,12,87,14.1 -52,18,2,8.1,71.4,13.6 -53,28,1,11.1,78,16 -54,30,2,13.2,89.7,16 -55,50,2,14.8,102.3,15.5 -56,48,1,14,92.5,16.5 -57,55,2,14.5,98.6,14.3 -58,57,1,17.5,104,16.6 -59,46,1,13.6,90,15.3 -60,15,1,8.3,71.2,12 -61,33,1,11,85.6,14.9 -62,47,2,13.8,92.8,15.5 -63,20,1,9.7,77,16 -64,36,1,12,88,14.9 -65,58,1,16.3,94.1,16.8 -66,29,1,11.5,83.6,15 -67,33,2,9.5,77.5,13 -68,49,1,16.1,102.7,15.6 -69,20,1,11.4,74.3,15 -70,18,2,9.6,80,14.3 -71,12,2,7.5,71.3,12.8 -72,46,2,17.7,102.3,16.2 -73,34,2,11,84.4,14.3 -74,36,1,14.9,90.1,16 -75,54,2,15.3,92.6,15.5 -76,36,2,12.2,85.7,14.5 -77,38,1,13.9,89.9,15.7 -78,18,1,9.6,79,14.6 -79,55,2,12.9,96,14.3 -80,35,1,11.4,87.4,12.5 -81,15,1,9.1,72.5,13.4 -82,33,2,9.4,75.8,13.7 -83,51,2,15,94.7,15.8 -84,57,1,13,90.4,14.5 -85,15,1,7.5,71.3,11.5 -86,12,1,8.7,65,15.9 -87,22,2,8,80,12.3 -88,48,2,11.5,101.2,14.1 -89,35,1,11.2,86,14 -90,9,2,5.5,65.7,13.2 -91,58,1,19.9,102.2,15.4 -92,16,2,10.1,85,13.9 -93,48,1,14.1,92,14.2 -94,18,2,8.5,73.6,11.5 -95,48,2,15,96.7,15.4 -96,17,2,7.2,71.5,11.8 -97,53,2,13.1,92.2,14.5 -98,34,2,10.9,81.2,12.8 -99,7,2,6.1,58,12 -100,31,1,11.1,81.3,14.7 -101,45,1,12.9,77.5,16.5 -102,30,1,12.3,86.9,13.9 -103,12,2,7.2,69,12.8 -104,12,1,9.8,70.6,12.5 -105,30,1,9.1,75,14 -106,18,1,8.2,71.2,12.4 -107,43,2,11.4,84,14.8 -108,32,1,13.2,98,15.7 -109,9,1,8.4,67.4,12 -110,7,1,6.9,61.5,11.9 -111,45,1,12.5,78.3,14.9 -112,33,2,9.5,72.1,15.5 -113,20,1,11.5,80.9,13.6 -114,39,2,15.5,84.7,15.6 -115,19,1,10.1,79.4,15.6 -116,28,2,12.5,88.4,13.2 -117,24,2,8.2,74,12.6 -118,22,2,7.7,71.5,12 -119,33,1,9.9,79.4,14.9 -120,47,2,16.6,95.8,17.8 -121,10,2,8.7,73.3,14.5 -122,28,1,9.7,75,13 -123,31,1,10.5,81.1,13.1 -124,48,1,15.7,102.7,14.6 -125,16,1,9.1,74,13.5 -126,22,1,9.7,80,13.7 -127,32,2,11.7,89.4,13.8 -128,50,1,15.9,104,15 -129,27,1,11.2,75.3,15.7 -130,22,1,9.5,75.2,13.4 -131,20,1,8.2,73.5,12.6 -132,57,2,14.3,91.3,16.7 -133,25,1,10.6,82.4,14 -134,36,1,11.9,83,15 -135,28,1,10.2,79.6,15.5 -136,29,1,12.7,86.2,16 -137,43,1,13.8,90.4,15.1 -138,35,2,13.3,81,13.7 -139,54,1,13,95.2,16.5 -140,35,2,8.8,79.2,14.6 -141,56,1,13.6,90.4,14.7 -142,36,2,13.7,91,14.7 -143,37,2,12.2,84.5,11.8 -144,22,2,9.2,76.5,14.3 -145,44,2,16.7,92.2,14.5 -146,36,2,9.9,80,14.3 -147,45,2,9.9,80,13.3 -148,54,2,14.6,99.3,15.6 -149,31,2,10.3,77.9,15.9 -150,12,2,9.2,72,14 -151,49,1,13.6,96.6,14.9 -152,48,2,16.9,103.5,16 -153,29,1,9.3,79.5,11.5 -154,36,2,10.6,85.5,13.9 -155,22,1,10.6,75,14.7 -156,24,2,12.3,82,16 -157,24,1,10.4,78.1,12 -158,36,1,12.9,92,16 -159,20,2,8.2,74.2,12.5 -160,58,1,14.1,96.1,14.2 -161,31,1,12.2,83.8,14.8 -162,18,1,11.1,74,13.3 -163,8,1,7.2,66.3,12 -164,36,1,14.1,88.5,15.8 -165,59,2,13.1,89.6,15.5 -166,29,1,10.7,83.6,14 -167,36,2,10.3,86.1,14 -168,28,1,12,73.4,12.9 -169,36,1,9,77.5,14.5 -170,12,2,6.9,69.1,13 -171,41,1,10.3,80.3,14.7 -172,18,2,5.5,68,11.4 -173,32,1,15.5,85.3,15.7 -174,36,1,12.1,89,15.1 -175,47,2,15.7,98.7,15.3 -176,18,2,9,70.2,15.5 -177,11,1,7.9,71.5,12.9 -178,46,1,13.6,89.2,16.9 -179,25,2,14.5,86.2,16.2 -180,52,2,17.5,103.4,17 -181,48,1,12,90.1,14.2 -182,12,2,5.6,61.1,12 -183,29,2,8,78,11 -184,48,2,7.9,82,12.8 -185,48,2,13.5,90.9,16 -186,32,2,10.1,78.2,14 -187,39,2,14.6,91,16 -188,37,2,6.9,75.3,13.5 -189,34,1,11,74,15.5 -190,45,2,14.1,86.9,14.9 -191,48,2,15.2,100,15 -192,51,2,13.4,98.3,14 -193,40,2,11.4,87.7,16.2 -194,54,2,11.4,88.6,14.8 -195,20,1,9.6,77.1,13.5 -196,26,2,11.4,80,14.1 -197,34,2,15,93.2,14.7 -198,48,1,13.7,92.2,16.5 -199,45,2,12.5,98.4,13.2 -200,22,1,7,71.5,11.9 -201,29,2,8.3,76.5,12.9 -202,49,1,15.3,85.6,16.4 -203,36,1,10.5,88.1,16.1 -204,33,2,12.9,80.3,13.4 -205,18,2,8.1,70.2,13.2 -206,11,2,5.6,64,12 -207,45,1,14.8,85.7,15.5 -208,34,2,9.3,79.9,15 -209,42,2,13.6,92.5,15.5 -210,14,1,8.9,72.5,14.5 -211,33,2,10.4,86,13 -212,58,2,16,98,16.2 -213,36,1,12.6,86.5,14.3 -214,42,2,12.9,83,16.6 -215,28,2,9.4,80.8,12.2 -216,32,1,11.1,83.5,14.4 -217,36,1,13.3,80.5,14.4 -218,12,2,9.5,75.6,14.7 -219,7,2,7.5,64.6,14.7 -220,21,1,8.8,76,12.8 -221,16,1,11.1,82,14.8 -222,7,1,8.4,68,14.5 -223,56,2,13.6,93,16 -224,44,2,14.3,90.2,15.6 -225,36,2,10.5,80,13.4 -226,48,2,16.6,108,15.1 -227,55,1,16.2,94.8,15.7 -228,24,2,6.7,74.9,10.5 -229,33,1,12.4,86.7,14.6 -230,14,1,9.8,79.2,14.5 -231,10,1,6.3,60.9,13.2 -232,21,2,13.4,80.2,14.2 -233,17,2,7.6,67,13.2 -234,9,2,8.2,63.8,12.1 -235,48,1,12.3,91,14 -236,32,1,10.9,85,14.3 -237,56,1,17.3,105.1,16.8 -238,48,2,14.2,89,17 -239,11,2,6.1,69.5,12 -240,34,2,11.2,83.2,13.7 -241,24,2,8.4,73,12 -242,35,2,13.1,90,14.7 -243,23,2,10,76.4,14.5 -244,58,1,18.9,110.5,16.1 -245,42,2,11.1,82,13.2 -246,45,1,14.2,92.1,15.6 -247,48,2,11.1,93.6,15 -248,48,1,12.4,79.1,14.3 -249,37,2,12.9,92.5,13.8 -250,43,1,13.1,93.5,15 -251,30,1,11.2,83.4,14.5 -252,39,1,11.4,85,14.6 -253,36,2,11.1,83.4,14.6 -254,20,2,7.5,81.2,12.3 -255,34,2,10.9,85.3,14.1 -256,15,2,12.1,71.3,13.4 -257,58,1,16.5,103.7,16.8 -258,34,1,10.9,81.9,16 -259,19,2,7.8,65.5,13.5 -260,58,2,13.7,91.9,13.3 -261,24,1,11.6,75.6,12.7 -262,17,1,7.8,68.9,12.9 -263,13,1,9.4,82.9,14.5 -264,17,2,8.3,71.1,12.9 -265,44,2,10.9,77,14.4 -266,59,2,15.1,102.6,15.1 -267,20,2,9.6,76.1,12.2 -268,16,2,11.4,81.5,13.6 -269,28,1,12.4,85,15.8 -270,25,1,8.3,71.9,15 -271,29,2,9.8,77.8,13.1 -272,45,1,11.9,86,15.6 -273,29,2,13.7,86.6,17.1 -274,54,2,15.1,95,14.8 -275,22,1,12.5,90,15.5 -276,7,1,6.7,66,13.7 -277,55,2,15.7,103.1,15.1 -278,42,2,12.9,92.6,15.4 -279,29,1,12.3,90.3,14.3 -280,21,2,8.4,71,13.5 -281,11,1,7,67.4,12.5 -282,30,1,10.7,80.9,15 -283,48,1,11.1,80.3,15.3 -284,28,2,11.8,83.6,14.2 -285,21,1,11.1,79.4,12 -286,36,2,9.4,79.6,14.4 -287,18,2,7.5,71,13.6 -288,52,1,14.8,93.5,15.8 -289,8,2,6.3,64,13.2 -290,37,2,13.6,85.6,12.8 -291,36,2,11.3,88.7,14.4 -292,8,2,8.3,63.6,14.4 -293,42,1,10.9,81,13 -294,10,1,8.5,71.3,14.5 -295,55,2,17.8,107.5,16.9 -296,11,2,8.6,81.3,15.3 -297,17,1,12.8,85.5,16 -298,33,1,14.7,96,15.5 -299,15,1,7.3,69.9,12.1 -300,45,2,14.2,96.5,16.8 -301,35,1,13.8,89.1,16.9 -302,32,1,13.6,88.3,16 -303,52,2,11,80.3,14.2 -304,19,1,13.7,87.1,18 -305,8,1,7.9,65.7,13.3 -306,34,1,11.6,81.9,15.2 -307,8,1,8.5,70.4,13.6 -308,53,2,11.6,90,14.3 -309,22,1,9.8,77,13 -310,13,1,10.1,77.5,15.2 -311,51,2,12.6,89.9,14.3 -312,12,2,6.8,65.1,12.3 -313,43,2,14.4,92.5,15.9 -314,54,2,16.6,102.3,15.5 -315,41,1,10.5,76.1,14.6 -316,57,2,15.7,93.7,17.5 -317,56,2,12.5,81.7,14 -318,24,1,12,81.9,15 -319,26,2,9.4,81.2,12.3 -320,36,1,12.9,90.3,16.4 -321,55,1,14.6,98.4,14.8 -322,58,2,12.9,87,16 -323,18,2,8.5,72.3,14.8 -324,15,2,8.8,71.4,13.1 -325,38,2,9.9,80,15.1 -326,54,1,16,99.5,15.3 -327,6,1,7.7,62.4,14.4 -328,58,2,17,101.1,15.5 -329,24,2,8.2,73.9,12.5 -330,9,2,5.7,63.5,11.7 -331,43,2,13,93.5,15.7 -332,44,1,15.5,96.1,16.4 -333,49,2,14.6,91.2,16.6 -334,28,1,12.2,80,15.5 -335,33,1,9.5,80,13.9 -336,26,2,7.7,77.4,14 -337,56,1,15.4,102.1,14.8 -338,18,1,13.1,84.7,14.8 -339,22,2,8,72.5,12.5 -340,8,1,6.2,60.8,13.2 -341,36,2,13.1,95.2,16.5 -342,41,1,15.3,94.2,16.2 -343,38,2,10.7,82.1,13.3 -344,18,2,7.4,72.1,13 -345,53,1,13.9,102.8,16.2 -346,13,1,9.3,73.2,14.2 -347,10,2,7.3,64,11.8 -348,30,2,9.2,77,12.1 -349,37,2,16.3,83.7,15.5 -350,48,1,12,90.5,15.4 -351,28,1,10.1,81.7,14.9 -352,9,1,8.1,66.6,14.8 -353,36,1,11.9,91.3,14.3 -354,30,2,11.9,87,15.5 -355,43,1,12.7,86.1,15.5 -356,30,2,10.6,86,13.7 -357,36,2,15.1,91,16.9 -358,30,2,9.8,75,15.1 -359,38,1,13.6,86.8,15.2 -360,8,2,6.9,65.2,13.8 -361,34,2,11.9,88.7,14.5 -362,24,2,8.2,71.8,12.3 -363,11,1,8.4,73.1,15 -364,36,2,11,80.5,12.7 -365,55,2,11.6,80.5,16.1 -366,19,2,8.4,73.8,13 -367,33,2,12.9,76.2,15.5 -368,32,1,10.9,82,14 -369,10,2,8.6,73.5,14.2 -370,56,1,15.5,98.4,16.1 -371,37,2,15.1,97.5,14.8 -372,44,1,15.6,101,15 -373,30,2,8.6,79.4,13.2 -374,10,1,7.8,69.8,11.2 -375,22,2,8,74.9,11.3 -376,58,2,13.9,90.1,15.4 -377,12,2,6.1,63,12.3 -378,36,2,12.6,82.4,11.9 -379,24,2,10.7,74.2,14.3 -380,35,2,11.1,83.6,14.8 -381,24,1,8.2,72,12.2 -382,24,1,11.2,83.4,14.5 -383,23,2,10.2,78.4,13.5 -384,6,2,5.9,62.5,13.9 -385,41,2,14.4,96.2,15 -386,43,2,8.4,77,13.5 -387,53,2,15.5,98.1,14.7 -388,34,1,12.7,84.2,15.8 -389,12,2,6.2,63,13.4 -390,17,2,11.4,80.5,15.1 -391,24,1,8.7,75.5,12.5 -392,28,1,11,83.8,12.7 -393,46,2,11.2,83,14.5 -394,18,1,9.3,78,13.6 -395,33,1,12.4,90,15.4 -396,17,1,8.1,72.3,13.7 -397,36,1,13.1,90.3,14.8 -398,32,1,9.2,79.5,13.5 -399,8,1,10.3,68.9,15 -400,44,2,12.3,84.2,13.9 -401,59,2,15.4,97.7,16.4 -402,40,2,12.9,88.3,14.9 -403,48,2,13,91.4,13.9 -404,28,2,10.7,72.4,12.4 -405,33,1,12.9,89.8,14.5 -406,32,1,9.1,75.5,12.3 -407,30,1,12.4,79.7,13.4 -408,8,2,7.2,61.5,11.5 -409,53,1,16.1,101.6,12.1 -410,35,2,7.1,73.3,12 -411,22,2,7.7,74,12 -412,54,1,12.6,99.5,12.9 -413,30,1,10.1,81.4,14.1 -414,38,2,10.2,75.3,14.5 -415,18,1,12,84.2,16.4 -416,36,2,15.3,92.3,16 -417,12,2,8.4,65.9,12.7 -418,22,1,9.5,78,12.6 -419,34,1,13.8,89.6,16.7 -420,34,1,11.7,84,14.8 -421,7,1,8.3,65.6,14.1 -422,12,1,10.3,76.4,13.2 -423,35,2,9.1,77.8,13.5 -424,11,1,12.1,71.4,13.5 -425,42,1,10.8,85.6,14.5 -426,34,1,12.2,89.3,14 -427,24,2,9.5,73.2,12.5 -428,27,2,10.4,79.8,14.7 -429,41,1,13.4,87.3,16.5 -430,11,1,11.2,78.2,15.8 -431,20,1,11.1,71,15.6 -432,12,2,7.1,67.5,13.5 -433,9,2,8.5,68.4,12.2 -434,38,1,14.3,92.2,15.7 -435,59,2,14.9,95.7,15.8 -436,44,2,14.9,83.4,14.2 -437,19,1,9.4,81.4,14.6 -438,7,1,6,56.2,12.2 -439,47,2,17.2,89.2,15.8 -440,10,1,5.3,60.7,10.6 -441,48,2,13.4,82.4,15.5 -442,23,1,9.4,80.6,13.2 -443,30,1,11.9,82,14.5 -444,30,2,11.7,85,15 -445,48,1,15.8,99.9,15.5 -446,30,1,13.1,87.5,16.2 -447,38,1,11.6,87.7,14.7 -448,8,2,6.6,64,13 -449,38,2,14.2,94.5,15.1 -450,49,1,13.4,92.2,14.9 -451,42,1,12.9,92,15.6 -452,12,1,6.5,66,13 -453,48,1,14,101,15.8 -454,8,1,8.2,65.3,14 -455,8,1,8.7,75,14.3 -456,30,2,10.6,79.4,13.6 -457,12,1,8.4,70.2,14.4 -458,40,1,13.4,92.5,16 -459,38,2,15.2,101.5,14.8 -460,44,1,15.2,95.4,15.5 -461,24,2,6.6,68.3,11.3 -462,7,2,8,66.3,13.8 -463,26,1,9.3,76.2,14.2 -464,48,1,12.1,83.7,15.2 -465,46,1,11.5,85.8,13.5 -466,10,1,7.2,69.4,12.7 -467,48,2,13.1,102.8,14.2 -468,21,1,7.9,72.5,14.2 -469,8,2,7.1,62,14.6 -470,14,1,9.2,73.4,13.5 -471,36,1,11.1,86.8,15.6 -472,36,2,12.4,86.4,14.5 -473,57,1,15.2,100,15.8 -474,29,2,12.6,87,14.3 -475,18,1,9.4,70,12.5 -476,38,2,14.2,92.9,15.1 -477,16,1,7.7,72.4,12.3 -478,15,2,7.8,69.6,13 -479,36,1,13.2,92.3,15.3 -480,11,2,8.4,70,13.2 -481,20,1,7.1,71.5,13 -482,23,1,13.4,77.3,14.4 -483,6,2,6.2,61,12.8 -484,9,1,9,70.8,14.6 -485,40,1,11.2,81.3,14.2 -486,20,1,12.8,82.5,14.3 -487,13,1,9.4,76.1,14 -488,14,1,8.6,73.8,14.3 -489,30,1,10.1,79.8,14.5 -490,38,1,13.9,90.6,15.2 -491,15,1,10.8,78.6,15.6 -492,45,1,13.9,102.1,12.8 -493,26,2,9.3,76.8,14.3 -494,14,1,9.4,78.6,12.7 -495,12,2,7,69.1,13.1 -496,18,1,8.8,70.1,12.4 -497,47,2,9,81,11.9 -498,59,2,12.7,87.4,13.7 -499,36,1,15.3,85.7,15.5 -500,39,1,12.4,79.4,14.5 -501,48,2,11.5,90.5,15.1 -502,7,2,9.5,71,15 -503,41,2,17,99.5,17.8 -504,25,1,11.9,87,15.5 -505,30,2,8.8,76,12.5 -506,31,1,10.7,75.1,14.6 -507,21,2,9.5,77.2,13.6 -508,55,1,16.5,99.6,16 -509,24,1,8.6,75.3,12.3 -510,50,2,9.5,88.3,12.2 -511,27,1,13.5,90,14.3 -512,22,2,8.4,70.9,13.5 -513,10,2,7.1,67.5,12.7 -514,10,1,10,75,15.2 -515,30,2,11.5,82.3,13.5 -516,14,1,7.6,67.4,13.3 -517,42,1,14.1,105.6,15.1 -518,39,1,17,101.1,16.5 -519,29,1,13,79.5,13.4 -520,24,1,9.8,77.5,13.9 -521,30,2,11.3,84,13.1 -522,47,2,12.3,88.2,15.5 -523,36,2,11.2,84.6,13.2 -524,27,2,12.3,79.4,13.2 -525,26,2,7.5,76.6,12.1 -526,9,2,7.9,65.2,12.5 -527,42,1,16.8,101.5,15.1 -528,24,2,11.1,87.4,14.8 -529,48,2,17.6,91.4,18 -530,27,1,11.6,81.2,15.2 -531,7,1,7.4,69.5,14 -532,27,2,11.1,87.4,13.8 -533,26,1,11.7,83,14.3 -534,10,2,7.3,65,12.2 -535,36,2,8.4,75.9,13.1 -536,33,2,12.1,85.4,16.4 -537,50,2,14.6,98.8,14.9 -538,36,2,9.1,80,13 -539,25,2,11.2,80.3,14.7 -540,24,1,10.3,82,14.6 -541,44,1,13.7,101.8,16.2 -542,59,1,14.8,96.9,14.6 -543,48,2,13.7,96.5,14.5 -544,19,2,10.8,76.5,13.5 -545,9,2,7.5,66.5,13.2 -546,23,1,9.9,78.7,15 -547,16,2,10,74.5,15.4 -548,51,2,15.2,94.3,14.1 -549,31,1,11,79.3,14.7 -550,51,2,11.3,83.2,14.3 -551,47,2,12,90.5,14.5 -552,34,2,9.5,74.8,13.9 -553,11,2,9.2,74.1,12.5 -554,11,1,9,70.4,14.8 -555,28,1,11.7,98.3,13.6 -556,35,1,10.1,87.9,13.9 -557,30,2,12.5,79,16.6 -558,30,1,11.3,82.3,14 -559,48,2,13.2,96.3,16.1 -560,48,2,15.4,100.5,15.2 -561,6,1,6.8,67.2,12.5 -562,48,2,15.2,92.7,16.2 -563,24,1,6.9,75.1,13.5 -564,22,2,7.9,71.5,12.1 -565,32,1,19.5,102.2,16.7 -566,59,2,12.8,87.2,14.4 -567,18,1,8.8,72,14.1 -568,32,2,11,80.2,14.2 -569,7,1,8,68.1,13 -570,24,1,9.5,80.3,12.8 -571,28,1,8,72,12.5 -572,8,1,8.5,74.2,14 -573,30,1,10.5,74.3,13.3 -574,9,1,6.9,67.2,12.6 -575,47,2,12.7,93,14.4 -576,29,1,11.5,83,14.8 -577,36,2,13.4,82.1,14 -578,24,1,8.6,72.7,14 -579,35,1,11.1,82.3,14.5 -580,23,1,8.9,78.2,11.8 -581,12,2,7.6,67.2,12.4 -582,16,2,13.1,71.4,12.7 -583,55,1,12.6,87.2,15.6 -584,23,2,12.4,88.2,12.9 -585,39,1,15.9,95.1,15.6 -586,46,1,13.5,88,15.5 -587,36,1,12.6,83.4,14.4 -588,40,1,14.1,97.5,15.1 -589,7,2,6.7,61.5,13.4 -590,55,2,13.8,91.8,14.8 -591,56,1,16,93.6,16.1 -592,30,1,10.8,80.1,12.5 -593,44,1,13.2,91.7,17.2 -594,15,2,9.4,72,12.2 -595,13,2,6.8,69.6,11.6 -596,46,1,14,94.2,15.2 -597,12,1,9,70,12.9 -598,30,1,10.1,84.5,14.7 -599,30,1,8.4,72.3,15 -600,46,1,13,92.5,15.3 -601,32,1,11.4,85.8,14 -602,30,2,10.1,79.1,14.4 -603,17,2,7.5,74,11.7 -604,47,1,12.5,90.7,14.5 -605,30,2,11.5,87,14.4 -606,12,2,7.6,65.3,12.7 -607,6,2,4.9,58.3,11.5 -608,42,2,13.9,105.4,15 -609,55,2,12.2,93.2,13.5 -610,42,2,14.7,92,14.8 -611,16,1,7.5,70.5,11.7 -612,40,1,11.2,82.3,15 -613,11,2,9.6,71,12.2 -614,28,1,11,83.2,13.8 -615,30,1,10.9,79.6,14.4 -616,54,2,13.3,87.4,14.5 -617,36,1,12.1,88.7,14.9 -618,50,1,15.6,96,15.5 -619,13,2,10.1,72.2,14.2 -620,49,2,12.5,96,13.9 -621,14,2,7.4,74.5,12 -622,48,2,12.7,90.5,14.3 -623,21,1,10.5,77.5,15.2 -624,42,1,12.8,96.7,13.1 -625,47,2,14.9,97.1,15.5 -626,54,1,16.7,99.1,17.3 -627,24,1,7.5,68.7,12.5 -628,14,1,9.8,75.7,13.8 -629,32,2,9.9,83,13.3 -630,33,2,12.5,80.2,15.5 -631,11,1,9.9,73,15.6 -632,26,2,8.9,73.6,13.5 -633,39,2,10.4,81.5,13.5 -634,28,1,10.1,83.2,13 -635,35,2,13.3,79.9,13.5 -636,8,1,7.3,64.6,14.3 -637,38,1,17.2,91.2,14.1 -638,56,2,15.7,97.4,16.4 -639,33,1,11.3,81.8,14 -640,27,1,9.8,75.8,11.7 -641,36,2,12.2,85.1,14.6 -642,6,1,6.2,61.2,12.2 -643,31,2,10.7,83.8,15 -644,10,2,7.1,65,13.5 -645,36,2,11.3,79.6,13.6 -646,34,1,10.5,84.7,14 -647,21,1,11.3,83,14.5 -648,20,2,9.4,75.7,12.2 -649,21,2,10.8,80,13.6 -650,36,2,13.9,91.1,12.5 -651,12,1,11,74.7,15.6 -652,17,2,9.3,72.8,13.6 -653,28,2,13.1,87.8,16.1 -654,46,1,11.8,87.5,14 -655,11,2,9.2,70.2,13.1 -656,58,2,14.7,101.2,14.5 -657,50,2,10.3,83.1,12.5 -658,22,2,9.1,81,13.1 -659,57,1,12.3,84.2,13.5 -660,15,1,8.9,75.4,13.8 -661,53,2,16.9,97.2,16.1 -662,39,1,11.6,83.1,14.8 -663,26,2,11.7,82,15.2 -664,13,1,8.1,67.4,12.3 -665,26,1,9.3,74.8,13.5 -666,21,2,10.1,78.5,14.2 -667,31,1,12.8,87.2,14.8 -668,33,1,10.7,80.5,13.6 -669,12,1,9.4,75.4,12.5 -670,28,2,10.9,80.3,14.4 -671,10,1,11.5,74,13.2 -672,11,1,8.3,71.8,13.4 -673,33,1,9.9,78.7,12.8 -674,46,2,11.8,86.7,13.1 -675,8,1,7.3,63.5,11.8 -676,12,1,9.3,73,14.5 -677,11,2,7.9,70.5,12.5 -678,6,2,10,64.1,13.5 -679,13,2,9,71,13.1 -680,8,1,7.1,65.6,11.5 -681,40,2,15.3,94.6,16 -682,19,2,8.2,67,12.8 -683,36,1,11.7,89.7,14 -684,31,1,11.1,81.2,14 -685,7,2,8.3,60.5,12.5 -686,10,2,10.4,64.4,11.6 -687,22,2,9.8,78.5,13.9 -688,40,2,12.7,88.3,14.4 -689,22,1,10.7,81.1,15 -690,22,2,10.4,80.1,14.6 -691,45,1,12.1,87.1,14.6 -692,23,1,11.6,80.5,15.4 -693,23,1,9.9,77.8,13.3 -694,18,1,9.6,73.5,11.7 -695,24,1,10,76.4,13.5 -696,12,2,6.7,67,12.4 -697,31,2,9.8,80,14 -698,43,2,14.6,102,15 -699,48,1,14.7,93.3,15.4 -700,17,2,6.9,71.4,14.1 -701,34,2,13.2,82.1,13.4 -702,41,1,14.6,83.8,15.6 -703,33,1,9.3,78.2,12 -704,36,2,13.3,80.3,14.5 -705,33,2,13.4,88.8,15.8 -706,11,2,9.2,65,14.5 -707,45,1,13.5,94.2,15 -708,17,1,8.1,73.8,13.1 -709,12,2,8.6,70,13.2 -710,11,2,8.8,71.5,15.5 -711,50,1,13.3,94.1,13.6 -712,30,2,9,77.1,12.1 -713,36,1,12.9,87.3,15 -714,13,2,7.3,69.3,13 -715,39,2,12.9,82.3,16.3 -716,8,2,7.3,67.4,12.5 -717,33,1,11.2,82.8,14.8 -718,21,2,8.7,81.2,11.7 -719,18,1,10.2,77.2,13.4 -720,15,2,7.4,74.5,13.5 -721,20,1,8.1,76.2,13.5 -722,26,2,12.3,80.5,16 -723,45,2,13.4,82.5,14.1 -724,24,2,7.8,75.3,13.4 -725,42,2,20.2,109.5,15.8 -726,35,2,10.8,87.5,15.1 -727,27,2,9.3,76.7,13.7 -728,38,1,12.4,90,11.7 -729,19,1,9.6,71.4,13.6 -730,10,2,8.1,66.2,12.8 -731,31,1,11,83.5,11.5 -732,59,1,14.5,92.7,15 -733,36,2,11.6,85.3,13.2 -734,19,1,7.9,71.3,12.5 -735,10,1,7.8,69,14 -736,23,1,13.9,84,12.8 -737,34,1,11.6,84,15 -738,48,2,14.7,99.8,16.4 -739,26,1,11.5,83.5,14 -740,55,1,12.3,89.1,13.8 -741,18,2,9,83.2,12.8 -742,12,2,10.4,67.2,15 -743,15,1,8.2,71.3,13.3 -744,43,1,15.5,93.6,16.1 -745,50,1,15.8,97.2,17.4 -746,30,2,10.2,82.3,13.1 -747,11,2,8.8,74.5,12.3 -748,22,2,11.1,78.6,14.3 -749,11,2,7.7,72.2,13.5 -750,22,1,10.2,78.5,14.5 -751,12,1,10,67,14.6 -752,12,1,8.3,69.8,12.2 -753,48,2,12.9,89.8,15.1 -754,29,1,9.3,69.4,12.5 -755,41,2,11.3,88.9,15.4 -756,36,1,11.7,85.9,14.8 -757,48,1,14.5,100.2,15.2 -758,12,2,8.1,70.6,12.6 -759,17,1,8.2,67.3,13.3 -760,44,1,13,89.4,15.3 -761,12,2,7.6,68.7,14.5 -762,54,2,14.6,101.2,15.6 -763,8,1,10.3,70.8,16 -764,25,1,10.8,81.5,13.5 -765,15,2,8.4,72.5,13 -766,12,2,9.8,77.5,13.8 -767,14,1,9.1,70.5,15 -768,40,2,14.2,94.8,16 -769,25,2,8.3,81.1,11.7 -770,31,2,9.7,81.1,13.8 -771,15,2,10.2,75.6,15.2 -772,41,2,11.2,88.3,13 -773,12,2,6.4,65.1,12.2 -774,8,1,9.5,72,14.8 -775,57,1,14.8,97,15.2 -776,34,1,14.2,81.1,14.2 -777,9,2,8.2,70.6,13 -778,35,1,10.3,79.7,13.4 -779,27,1,12.7,85.5,15 -780,7,1,8.3,67.7,14 -781,18,2,7.4,71.2,12.4 -782,30,1,10,81.4,14.6 -783,9,2,6.9,65.2,12.3 -784,34,1,10,75.8,13.3 -785,24,2,9.4,70.5,12.4 -786,15,2,8,69.5,13.3 -787,11,2,8,69.2,13.5 -788,24,2,10.5,78.7,14.5 -789,53,1,16.2,93,16.6 -790,45,1,15.5,95.9,15.5 -791,12,1,7.6,69.8,12.8 -792,50,1,12.8,91.5,14 -793,58,2,20.7,104.2,19.1 -794,20,1,10.1,76,16.3 -795,15,2,8,71.3,12.8 -796,28,2,9.9,79,14 -797,36,1,11,80.4,14.5 -798,48,2,11.3,85.5,13.7 -799,44,2,14.9,99,17 -800,32,1,10.9,79.7,14.7 -801,48,1,12.8,97.9,14.8 -802,35,1,10.4,86.2,13.9 -803,55,2,16.3,103.5,15.4 -804,24,2,10.1,76.9,13.2 -805,10,2,6.8,65.4,13.6 -806,8,1,5.9,61.9,12.5 -807,37,2,12.4,88,15.4 -808,17,1,9.1,75,14 -809,52,1,13.9,92.2,14.2 -810,20,1,9.3,79.8,13.3 -811,44,1,13.3,109.8,14.7 -812,31,2,9.7,85.2,12.5 -813,36,2,14.4,81.3,15.3 -814,48,2,10.4,90.5,15.3 -815,22,2,12.5,78.2,13.6 -816,30,1,10.4,92.3,13.6 -817,21,1,10.4,77,13.6 -818,23,2,9.3,75.5,14 -819,57,1,18.1,107.8,16.2 -820,56,1,13.1,93,15 -821,17,2,9.8,74.7,14 -822,47,1,15.1,93.1,16 -823,42,2,11.6,88.7,14.3 -824,47,1,15.8,101.3,16.1 -825,36,2,11.4,83,15.6 -826,36,1,11,81,14 -827,36,1,14.1,89.3,14.5 -828,48,2,14.5,95.6,15.9 -829,53,1,15.8,93.7,15.8 -830,8,2,7.8,68.5,15 -831,56,1,16.2,99.1,15.8 -832,28,2,9.1,75.9,13.4 -833,35,2,10.5,85.5,13.2 -834,24,2,9.4,80.3,13 -835,8,2,6.9,67,12.5 -836,35,2,12.6,86,16.3 -837,58,1,14.7,102.5,14.5 -838,36,1,10.8,80.1,14.3 -839,46,2,10.7,84.8,13.4 -840,12,2,8.8,73.5,13.8 -841,18,2,9.6,75.1,13.8 -842,26,2,10,73.2,11.7 -843,42,1,12.6,95.5,14.8 -844,59,2,15,99.5,14.6 -845,15,2,7.2,65.9,12 -846,56,2,15.3,99.5,16.5 -847,47,1,11.7,92.1,14.8 -848,6,1,5.9,61,13.8 -849,28,2,11.9,85.5,14.6 -850,20,2,6.4,69.1,11.2 -851,22,2,10.2,78.8,14.6 -852,7,2,7,62.2,14.2 -853,7,1,7.3,67.3,14.3 -854,24,1,11.8,87.3,13.6 -855,31,2,10,81.3,13.5 -856,18,2,10.6,75,15.3 -857,12,2,10.1,74.1,15.3 -858,22,2,8,78,13.3 -859,37,1,14,94.5,15.2 -860,34,2,13.9,79.9,14.5 -861,43,1,12.1,88.7,14.2 -862,41,1,11.6,86.6,15.1 -863,41,1,11.2,86,15 -864,8,1,8,67.3,13.1 -865,30,1,13.3,91.1,14 -866,8,1,7.3,63.7,13.3 -867,7,1,8.3,69.1,14 -868,40,1,12,89.2,14.4 -869,41,1,11.8,87.4,16 -870,9,2,8.2,64.8,12.3 -871,36,2,9.1,79.5,13.7 -872,48,1,14.9,95.3,16 -873,14,2,8.3,73.5,12.3 \ No newline at end of file diff --git a/tests/testthat/data_files/ANTHRO/anthro1.rda b/tests/testthat/data_files/ANTHRO/anthro1.rda deleted file mode 100644 index d8b7a086..00000000 Binary files a/tests/testthat/data_files/ANTHRO/anthro1.rda and /dev/null differ diff --git a/tests/testthat/data_files/ANTHRO/anthro2.csv b/tests/testthat/data_files/ANTHRO/anthro2.csv deleted file mode 100644 index bcc5c9d5..00000000 --- a/tests/testthat/data_files/ANTHRO/anthro2.csv +++ /dev/null @@ -1,797 +0,0 @@ -,age,sex,weight,height,muac -1,14,1,5,65.6,15 -2,54,2,12.1,99,17.7 -3,25,1,8.9,59.5,17.2 -4,52,1,14.6,98,14.2 -5,43,1,10.1,99.1,13.1 -6,7,1,4,58.1,12.6 -7,43,1,9.2,99,17.4 -8,44,1,10.1,89.4,13.6 -9,48,2,11.5,101.5,15.1 -10,44,1,9.3,80.1,17.6 -11,49,1,13.8,102,16.2 -12,31,1,6.8,84,14.8 -13,33,1,6.2,70,13.5 -14,8,2,4.3,59.1,16 -15,37,1,8.6,89.1,11.2 -16,4,1,5.4,70,12.9 -17,37,2,8.8,88,17.4 -18,39,2,8.7,75,13.7 -19,2,1,4.5,70,18.3 -20,39,1,10.6,99,13.1 -21,54,2,14.2,89.8,18.1 -22,39,1,9.3,81.2,16.1 -23,43,2,14.2,81.4,12.1 -24,55,1,17.3,103.1,14.4 -25,27,1,9.7,83.3,12.7 -26,52,2,11.8,88.4,15.8 -27,14,1,5.8,68.4,17.7 -28,19,1,9,78.9,16 -29,33,1,9.1,101.6,13.8 -30,3,1,4,54.1,11 -31,28,2,9.2,87.5,14.2 -32,48,1,8.9,84.6,15 -33,15,1,8.2,76.3,10.7 -34,20,1,9.2,63.2,15.4 -35,46,1,17.9,77.1,13.8 -36,50,1,10.2,96.1,11.4 -37,16,2,7.1,84.2,11.2 -38,30,2,9.2,84.3,17.7 -39,29,2,7.2,81.3,19 -40,48,2,11.9,92.1,11.9 -41,22,1,8.1,80.6,14.6 -42,37,1,9.8,90.5,11.1 -43,6,1,4.9,59.9,13.3 -44,57,2,10.6,99.8,11.7 -45,21,1,5.9,60.7,14.8 -46,23,1,5.7,79,15.9 -47,8,1,6.8,68,15.1 -48,41,2,11.8,99,17.6 -49,26,1,7.4,81.9,12.8 -50,37,1,9,98,18 -51,33,2,11,98,14.6 -52,51,2,12,102.6,15.6 -53,40,2,10.8,81.4,17.1 -54,38,2,9.7,72.3,15.8 -55,46,1,12.9,86.5,13 -56,4,2,3.2,53.1,12.1 -57,49,2,12.4,71.8,13.2 -58,15,1,8.1,67.1,18.9 -59,49,1,14.2,86.3,13.9 -60,33,2,16.9,99.7,12.7 -61,55,2,10.3,67.3,15.9 -62,34,1,8.2,79.7,14.3 -63,13,1,7,71.2,10.6 -64,43,2,9.9,86.3,11.8 -65,15,2,7.2,69.8,17 -66,50,1,13.9,90.3,16.3 -67,27,2,5.7,73,13.1 -68,53,2,12.6,102.5,17.6 -69,14,2,5.8,78,11.8 -70,13,2,5.2,79,17.3 -71,52,2,12.3,103,16.5 -72,10,1,5.3,78,15 -73,42,1,7.6,90,10.9 -74,15,2,5.1,60,18.7 -75,23,1,6.8,75.6,11.9 -76,43,1,9.2,90.6,17.1 -77,16,2,5.3,59.8,18.6 -78,38,1,7.2,78.2,11.7 -79,29,1,12.1,86.1,17.5 -80,33,1,11.9,77.2,17.9 -81,43,2,10.3,69.3,16.5 -82,12,1,5.9,59.6,15.3 -83,41,2,8.3,77.6,15.9 -84,35,2,9.2,82.1,17.5 -85,8,2,7,71.2,12.5 -86,27,1,5.9,71.2,17.7 -87,54,1,10.1,103.6,11.6 -88,3,2,5.3,58.1,13.3 -89,31,2,8.6,80.3,16.5 -90,37,2,10.1,89.1,12.7 -91,23,2,6.8,79,10.6 -92,57,1,12.8,102.5,18.3 -93,53,2,13.8,101,18.5 -94,9,2,5,78,13 -95,14,1,12.7,101,17.5 -96,15,1,5.9,71,18 -97,55,2,12.2,101.1,16.2 -98,34,2,7.1,69.8,12.8 -99,56,2,12.3,101.2,17.2 -100,4,2,5,68.5,14.3 -101,52,2,14.5,98.5,16.4 -102,31,1,8.7,67.8,16.7 -103,38,1,8.8,68.1,17.5 -104,31,2,9.3,71.6,13 -105,55,2,14.3,102.7,16.3 -106,26,2,10.2,71.1,13.2 -107,49,1,13.8,78.9,15.5 -108,24,1,9.9,82.1,17.5 -109,35,1,13.1,74.8,15.7 -110,30,1,7.5,98,15.6 -111,15,1,7.8,75,13 -112,11,1,10.8,85,13.4 -113,59,2,13.7,102,14.1 -114,8,2,5.1,67.1,12.7 -115,41,1,17,89.6,13.3 -116,0,2,4,56.8,14.6 -117,25,1,10.1,87,13.5 -118,51,2,10,78.2,16 -119,59,2,14.3,97.6,15.1 -120,52,2,8.2,71.2,12.1 -121,51,2,10.3,78.1,12.4 -122,7,2,6.8,65.1,16.5 -123,44,1,9.9,78.2,17.9 -124,35,2,10.6,91.2,14.7 -125,32,1,10.2,77.5,18.2 -126,13,2,6.3,61.2,14.2 -127,14,2,7,60.2,16.4 -128,56,1,11.3,68.5,14.1 -129,14,2,6.3,67.2,14.9 -130,55,1,15.8,101.2,13 -131,25,2,7,68.7,12.3 -132,51,1,10.2,76.3,11.7 -133,14,2,7.9,60.1,12.4 -134,32,1,9,75.1,13.8 -135,9,2,4,61.3,15.3 -136,10,2,6.8,60.9,12.4 -137,50,2,11.2,102.8,14.7 -138,46,2,11.7,99.1,16.7 -139,33,1,7.7,84.5,13.1 -140,57,1,13.9,102,11.5 -141,39,1,10.8,81.4,14.7 -142,15,2,6.2,62.1,14.7 -143,13,2,6.3,61.2,15 -144,40,2,12.9,101.2,14.3 -145,39,2,6.2,78.7,11.2 -146,13,1,4.2,58.9,13.6 -147,17,2,5.9,61,14.7 -148,52,2,8.1,67.8,17.8 -149,30,2,6.1,76.2,17.8 -150,28,2,7.1,72.8,16.7 -151,58,1,14.3,102.1,18.1 -152,7,2,4.7,70,12.4 -153,40,1,8.5,89.5,10.8 -154,31,2,8,79,12 -155,32,2,7.2,71.8,15.4 -156,54,2,13.9,110.6,18 -157,58,1,11.1,103.8,14.1 -158,43,2,10.5,99.5,11.5 -159,31,1,7.1,83.5,14.2 -160,10,1,5.1,60.6,12.8 -161,37,1,10,91.4,19 -162,27,1,7,72.8,13.2 -163,57,2,11.6,92.1,10.9 -164,34,1,6.1,70,14.2 -165,8,1,7.2,66.7,12.7 -166,32,2,9.1,76.3,16.5 -167,54,2,16.3,100.1,13.3 -168,51,1,8,81.2,11.6 -169,6,2,7.2,71.2,18.1 -170,7,1,6.8,66.3,10.9 -171,53,2,12.9,93.2,19 -172,13,2,6.3,62.1,18.2 -173,36,2,9.2,68.9,13.6 -174,13,2,8.9,77.6,18 -175,29,2,10.8,77.4,13.2 -176,31,2,12.3,86.2,18 -177,37,2,9.1,77.3,16.1 -178,13,1,6.9,69.7,11.4 -179,38,1,9.2,86.3,16.3 -180,10,2,6.3,60,13 -181,36,1,9.9,69.2,17.8 -182,50,2,9.9,91.1,12.2 -183,33,2,8,81.2,17.8 -184,43,2,8.2,91.1,17.5 -185,34,2,8.8,69.7,19 -186,52,2,11.6,98.5,17.7 -187,28,1,8.9,59.5,19.1 -188,49,1,10.6,98.5,15.7 -189,16,1,7.6,75,15.3 -190,36,1,9,100,12 -191,7,2,2.4,62,15 -192,29,2,9.9,99,15.5 -193,9,2,3.8,80.3,12.8 -194,33,1,6.9,95.5,13.8 -195,30,2,7.6,90,14.6 -196,10,2,6.9,74.5,10.8 -197,50,2,11.8,101.5,12.7 -198,13,2,5.8,78,16.9 -199,11,1,5.7,79,13.4 -200,35,2,7.5,89,11.3 -201,25,2,8,98,11 -202,15,2,5.1,60,10.8 -203,4,2,3.4,53.1,13.9 -204,13,1,5.1,61.8,14.1 -205,29,2,7,80.6,12.3 -206,31,1,7.2,81.1,17.6 -207,46,2,10,91.8,14.3 -208,35,1,6.2,68.8,15.5 -209,6,1,7,68.5,13 -210,15,2,7.2,77.5,15.6 -211,47,2,16.3,101.7,10.7 -212,16,1,8.8,59.2,19 -213,39,1,10.6,98.5,17.6 -214,30,1,7.8,84.2,12.1 -215,49,1,12.2,81.2,12.5 -216,4,1,5,71,14.5 -217,37,2,14.8,99.8,14.4 -218,31,2,8.5,86.1,16.3 -219,30,1,9.9,94.2,15.1 -220,2,1,3.3,52.6,18.6 -221,43,1,12.9,81.8,12.4 -222,49,1,9.8,77.8,13.4 -223,38,1,7.8,65.8,15.3 -224,38,2,8.3,71.2,13.1 -225,27,2,7.3,71.8,16.8 -226,40,1,7.8,68.5,19.1 -227,38,1,8.3,68.3,18.8 -228,47,2,9.4,69,10.6 -229,51,1,13.1,110.9,11.1 -230,58,2,12.4,109.3,11.9 -231,9,1,8.7,75,13.9 -232,47,2,14.9,92.5,12.9 -233,41,1,10.4,85.5,12 -234,41,1,10.4,94.5,13.6 -235,50,1,13.5,91.5,11.8 -236,24,1,9.9,60.5,15.1 -237,12,1,7.6,60.1,11.4 -238,36,1,9.2,88.4,11.4 -239,41,2,12.6,83,18.1 -240,2,1,4.1,52.5,11.5 -241,39,1,10.8,81.4,14.9 -242,36,1,12.3,89,15.2 -243,53,1,14.1,107,13.8 -244,2,2,15.2,101.1,17.3 -245,36,2,12.1,73.1,15 -246,11,2,10.1,73.1,18.7 -247,14,1,8.4,73.1,15.5 -248,17,2,9.1,70.5,18.5 -249,21,1,9.2,77.5,19 -250,13,2,8.5,69,17.1 -251,49,1,16.5,94.8,12.8 -252,27,1,12.5,84.1,14.7 -253,10,1,8.8,73.8,15.3 -254,34,2,11.3,84.8,17.5 -255,3,1,5.3,56.5,12 -256,6,2,7,60.2,13.8 -257,31,2,14.1,89,19.1 -258,2,2,9.5,78.1,13.7 -259,29,1,12,81.1,12.5 -260,15,2,10.2,79.1,17.7 -261,43,1,12.6,92,15 -262,17,1,8.6,74.1,14.2 -263,43,2,12.4,99.1,17.3 -264,27,2,9.2,80.4,10.8 -265,40,2,13.9,99.8,18 -266,11,2,8,78.5,17.3 -267,44,2,14,92.3,10.9 -268,59,1,18.5,111.5,15 -269,46,2,15.1,97.4,11.3 -270,8,2,9.1,70.5,11.1 -271,42,2,12.4,99.1,14.4 -272,26,1,13.6,84.6,14.6 -273,39,1,14.1,98.5,14.8 -274,1,2,3.6,52.5,17.6 -275,18,1,8.4,73.5,14.1 -276,39,2,12.2,89.1,17.6 -277,58,1,13,91,11.3 -278,7,2,7.5,73.1,18.9 -279,36,2,13.1,99.5,18.3 -280,11,1,12.1,91.5,16.8 -281,26,1,10.4,74.5,16.6 -282,50,2,17.1,114.1,18.7 -283,31,1,11.8,85.5,15.3 -284,56,2,15.2,99.4,16.2 -285,11,1,9.1,78.5,15.8 -286,33,1,12.3,87.5,18.5 -287,36,1,18.5,111.5,11 -288,9,2,6.2,65.7,13.4 -289,49,2,18,97,13.4 -290,5,1,5.5,62.3,18.6 -291,49,1,16,100.4,15.2 -292,43,2,11.7,64.5,12.4 -293,27,1,10.6,85.5,16.3 -294,26,2,10,72.5,13.1 -295,8,2,8.1,72.1,15.7 -296,14,1,9.1,75.8,14.9 -297,16,1,10,70.1,11.7 -298,11,2,7.1,59.6,17.5 -299,45,2,12.9,67,17.5 -300,8,1,7.1,56.5,17.7 -301,28,2,11.5,75.5,13.1 -302,20,1,12.1,79.5,17.2 -303,38,1,14.4,88.5,15.9 -304,59,2,13,108.6,12.8 -305,31,2,10.8,81.4,14.8 -306,6,2,7,68.6,16.3 -307,45,2,14.6,98.5,17.5 -308,36,2,9.5,89.4,12.5 -309,17,2,7,60.4,13.7 -310,40,2,10.6,91.4,12.3 -311,8,2,7.1,69,17.7 -312,51,1,14,99.1,17.3 -313,7,2,7,68.1,11.2 -314,48,2,14.5,97.1,11.5 -315,36,1,12,89.9,17.8 -316,57,1,14.6,99.6,12.4 -317,41,1,13.2,79.9,16.2 -318,16,2,9,70.1,17.6 -319,58,1,14.1,106.1,13.2 -320,17,1,7.8,69,10.7 -321,24,2,8.3,76.1,13.8 -322,7,2,7.4,70.1,15.4 -323,38,2,9.6,80.5,18.9 -324,8,2,6.1,65.1,15 -325,17,2,6.8,71,13.3 -326,46,2,9.8,91,18.8 -327,54,1,12.3,83.4,10.6 -328,10,1,6.7,66.3,13.6 -329,43,1,13.7,93.4,11.3 -330,12,1,4.9,59.1,10.6 -331,1,2,3.5,53,15.7 -332,50,1,14.3,90.4,16.8 -333,13,1,9.9,64.3,12.2 -334,49,1,13.9,92.5,11.2 -335,18,2,12.7,79.4,13.8 -336,6,1,9.7,65.8,16.5 -337,14,2,8,65.4,12.7 -338,9,2,4,59.1,12.6 -339,56,2,13,108.9,15.7 -340,22,2,9.2,78.5,12.9 -341,33,1,8.2,78,15 -342,51,2,15.5,101,18.5 -343,3,2,7.9,65.5,13.5 -344,44,1,12.7,68.5,16.1 -345,24,1,9.2,79,11 -346,47,2,12.4,94.5,15.7 -347,33,2,6.8,80,17.8 -348,35,2,7.7,82.5,13.6 -349,42,2,9.2,77.5,18.4 -350,13,1,6.3,71.9,15.2 -351,41,2,10.7,90.8,18.6 -352,14,2,6.5,79.6,11.6 -353,43,2,9.9,91.5,18.6 -354,35,1,9.5,80.1,10.6 -355,46,2,10.3,84,12.4 -356,45,2,11.5,90.5,10.6 -357,6,2,6.1,61.3,11.8 -358,40,1,8.6,88.9,16.1 -359,9,2,5.1,59.1,10.8 -360,54,2,13.1,99.1,11.1 -361,32,1,9.7,85.1,16.8 -362,52,2,14.2,110.1,17.8 -363,55,1,14,115.1,14.4 -364,53,2,13.3,95.5,15.5 -365,36,1,8.3,63.9,14.4 -366,57,2,12.4,89,10.9 -367,6,1,12.1,91.4,18 -368,51,2,12.4,80.5,18.7 -369,31,1,9,75.5,18.4 -370,3,1,4,55.1,13.2 -371,33,1,10.1,77,16.8 -372,12,1,5.7,66.7,18.4 -373,37,2,9.8,89.1,14 -374,6,1,7,59.4,14.5 -375,39,1,12.1,86.5,17.8 -376,21,1,9.9,69.6,14.3 -377,35,1,9.2,82.3,10.7 -378,49,1,15,89.4,14.6 -379,2,2,4.6,52.3,15.1 -380,14,1,6,59.8,12.9 -381,5,1,4.1,62.1,18.8 -382,48,1,12.5,88.3,16.4 -383,24,2,6.4,85,17.2 -384,39,1,10,71.8,17.7 -385,7,2,7,59.8,11.1 -386,38,2,8.8,67.6,13.1 -387,14,2,6.1,64,15 -388,13,2,8.2,60.1,17.8 -389,59,1,10.6,102.5,11.5 -390,33,1,8.6,83.5,16.9 -391,30,1,9.2,76.4,14.5 -392,55,1,11.1,80.4,18.4 -393,35,1,9.3,67.1,15.2 -394,13,2,7,61.8,17.3 -395,13,2,6.1,64.1,10.7 -396,39,1,9.1,67.4,18.6 -397,31,1,9.2,64.3,16.6 -398,49,1,7.9,67.8,14.6 -399,45,2,9.9,92.3,17.4 -400,45,2,10.2,90.1,14 -401,28,2,7.2,72.1,17.9 -402,28,1,6.5,69.3,17.6 -403,47,1,11,100,13.3 -404,15,1,4.2,53.3,16.5 -405,28,2,9.8,79.9,17.2 -406,35,2,6.2,70,17.4 -407,34,1,7.4,80,16.3 -408,43,1,8.6,89.7,18.4 -409,46,2,8.8,88.1,17.3 -410,21,2,5.8,68,16 -411,5,2,4,59.2,11.7 -412,52,1,11.8,99.1,17.4 -413,28,1,7,75.6,17.5 -414,52,1,9.7,89.7,12.8 -415,37,1,8.6,89.5,17.4 -416,9,2,4.4,64,17 -417,55,2,11.6,100,14.3 -418,34,1,6.4,78,18.6 -419,55,2,7.8,95.5,15.9 -420,37,1,8.2,89.1,17.4 -421,31,2,8,69,11.7 -422,29,2,6.6,65.5,16.3 -423,28,1,8.2,75.2,16.6 -424,2,2,5,69.3,15.2 -425,41,2,8.5,75,18.1 -426,38,1,13.7,84.5,15.3 -427,20,2,5.1,81,14.3 -428,52,2,13.6,85.5,11 -429,20,1,7.6,73,16 -430,31,1,8.8,75,16.5 -431,8,1,4.2,66.3,13.9 -432,45,1,10,79.1,18.2 -433,31,1,6,71.1,12 -434,4,2,4.2,59.1,15.9 -435,46,1,8,79.1,10.8 -436,29,2,5.6,60.1,12 -437,27,1,7,69.8,12.9 -438,9,1,4.2,57.7,11.7 -439,6,2,6.6,65,10.8 -440,28,2,8.8,75,16 -441,5,1,6.5,68.4,11.6 -442,41,2,12.8,85.5,16.5 -443,30,2,8.1,81,16.3 -444,31,1,8.5,75.5,17.9 -445,16,1,9.5,75.5,13.1 -446,42,1,16.1,93.5,16.5 -447,27,1,7.5,76.7,16.6 -448,27,1,8.6,75.5,13.5 -449,48,2,12.6,85,17.1 -450,3,2,7.2,60.5,18.8 -451,38,1,9.6,75,11.7 -452,3,2,5,69.3,18.6 -453,36,2,10.6,83.5,13 -454,7,1,5.6,60.5,14.9 -455,49,2,11.7,101,17.1 -456,8,1,4.7,70,15.4 -457,53,2,11.7,100,12.4 -458,50,1,9.7,95.5,14 -459,31,1,10.6,80,10.7 -460,39,2,9.6,95,12.9 -461,8,2,4.1,61.5,11 -462,33,1,8.2,85,10.6 -463,6,2,4.9,60.5,12.9 -464,40,1,9.6,89.2,15 -465,10,2,5.1,65.1,14.5 -466,39,1,10.4,95.5,12.1 -467,8,1,4,60.1,13.5 -468,55,2,12.1,98.9,14.3 -469,29,2,8.7,95.5,18.3 -470,47,1,11.8,100,13.9 -471,10,1,4,56.1,17.9 -472,10,2,5,60.8,14.5 -473,8,1,4.4,57.1,10.6 -474,30,1,7.4,69,15 -475,31,1,8.5,79.1,13.3 -476,56,2,11.8,99.5,15.6 -477,7,2,4,61,16.4 -478,33,2,6.8,79.9,16.6 -479,6,1,4.6,60.1,17.6 -480,15,2,5,62.1,17 -481,10,1,5.8,75,15.3 -482,41,2,9.6,95.5,16.5 -483,39,1,11.1,85,11.6 -484,13,1,6.7,66,12 -485,7,1,8.1,67.5,18.7 -486,58,2,11.4,90.5,18.2 -487,43,2,10,80.5,14.4 -488,46,2,10,63.8,13.8 -489,31,2,10.9,74.6,16.5 -490,3,2,4,54.6,14.5 -491,5,1,5.9,54.4,14.5 -492,39,2,12.3,78.8,15.8 -493,4,2,4.2,61.5,16.9 -494,34,1,15,86.7,14 -495,12,1,9.8,65,16.7 -496,5,1,3.9,59.5,11.3 -497,37,1,15,91.5,16.1 -498,32,1,15.9,78.8,16.9 -499,15,2,5.6,60.1,15.6 -500,4,1,3.8,50.1,16.8 -501,28,2,8.7,71.5,18.7 -502,53,1,13.7,110.8,16.2 -503,33,2,8,82.2,11.2 -504,14,1,5.2,69.1,17 -505,35,2,10.4,75.5,10.8 -506,15,2,3.5,56.1,17.9 -507,35,1,7.2,63.5,12.2 -508,27,1,8.5,68,18.9 -509,56,1,12.6,103,17.8 -510,12,1,8.1,75.5,15.1 -511,15,1,6.9,70.5,15.1 -512,7,2,14.3,95.5,16.2 -513,56,2,5.9,66.5,15.5 -514,25,1,9.3,72.5,17.1 -515,45,2,11.6,85.5,14.2 -516,28,2,10,81.4,16.1 -517,54,2,10.6,99.5,18.3 -518,13,2,8.3,69.5,17 -519,31,2,12.4,95.5,14.1 -520,53,2,11.6,100.5,17.4 -521,20,2,8.6,67.3,14 -522,15,1,7.9,59.5,10.7 -523,11,1,9.9,65.8,11.7 -524,13,2,8,60,18.6 -525,45,1,10.2,90.5,13.5 -526,21,1,8.8,65.1,15.6 -527,17,1,6.2,56.5,12.7 -528,45,1,9.5,90,11.4 -529,46,2,8.3,86.8,18.4 -530,9,2,7.9,68.5,11.5 -531,6,2,5.5,50,18.5 -532,21,2,8,70,11.6 -533,57,2,10,83.1,16.7 -534,39,1,10,84,15.3 -535,21,1,8,69.1,14.5 -536,7,1,7.1,59.1,18 -537,45,1,10.6,99.6,16.1 -538,11,1,9,69.8,18.3 -539,37,2,14.3,98,13.7 -540,37,1,9.1,77,14.9 -541,2,2,4.2,53.1,10.5 -542,20,1,12.1,63.5,17.3 -543,20,1,14.1,91,18.5 -544,47,2,14.4,90,15.6 -545,18,1,9,81,12.1 -546,36,2,5.6,59.5,13.8 -547,19,2,8.9,61,18.3 -548,54,1,7.6,53.8,18.5 -549,2,2,6.1,67.1,18.9 -550,22,1,10,98.1,15.7 -551,14,1,9.1,72.4,17.6 -552,44,2,11.1,90.1,11.1 -553,6,1,6.6,60.1,14.1 -554,8,2,5.6,50.5,18.4 -555,1,1,6.5,70.5,11.2 -556,27,1,13.9,86.5,10.6 -557,7,2,6.2,53.5,15.2 -558,13,1,8.2,82.5,11.5 -559,57,1,11.2,65.5,12.7 -560,0,2,3.9,51,16.6 -561,38,2,18,78,17.3 -562,34,1,12.1,80.4,13.3 -563,35,2,9.2,78.6,10.7 -564,56,2,12.9,110.9,17.9 -565,19,1,8.1,60.4,18 -566,28,1,9.6,81.3,11.4 -567,34,2,10.8,81.4,18 -568,26,2,9.9,69.8,13 -569,21,2,7.9,58.1,10.9 -570,50,1,11.5,100,14 -571,1,1,4.2,60,18.6 -572,15,1,10.3,81,14.7 -573,42,1,12.2,89.5,13 -574,19,2,7.3,80.5,11.5 -575,49,1,15.1,103,12.8 -576,10,2,6.8,78.5,10.7 -577,38,1,10.1,89.6,15.9 -578,8,2,4.8,73,18.3 -579,1,1,4,56.1,17 -580,5,1,5,60.1,17.8 -581,29,2,7,80.1,15.9 -582,48,1,11.1,102.8,11.7 -583,30,1,6.9,80.1,15.8 -584,9,2,5,59.8,18 -585,47,2,9.6,90,14.9 -586,3,1,5,57.1,18.7 -587,11,2,7.8,89.8,17.2 -588,39,1,11,99.7,18.6 -589,31,1,12.2,89.3,15.8 -590,5,2,6.5,91.3,19 -591,36,2,9.1,77,18.4 -592,47,2,11,63.1,17.6 -593,14,1,7.9,73.3,17.6 -594,36,2,11.9,101,15.2 -595,43,1,8.3,61.9,12 -596,25,2,7.9,68.5,12.7 -597,30,1,14.9,90.1,13.8 -598,38,2,18,101,14.8 -599,15,1,9.1,65.8,15.2 -600,49,1,13.9,91,18.4 -601,14,2,7.9,70.8,12.9 -602,14,2,8,69.8,17 -603,26,1,8,84.2,15.7 -604,4,2,4.5,58.1,12.8 -605,57,2,10.2,90.1,18.9 -606,44,1,9.1,89.1,11.1 -607,58,1,10.1,96.8,15.1 -608,30,2,9.8,81.6,12.7 -609,9,2,5.6,60.1,14.3 -610,50,2,10.1,101,12.6 -611,13,2,4.7,73,12.6 -612,31,2,6.4,80.5,18.9 -613,44,1,9.8,61.8,18 -614,26,1,7.9,79.5,16.4 -615,58,1,11.6,99.5,17.2 -616,29,2,8.8,84,14.6 -617,48,2,10.7,101,13 -618,39,1,8.8,98.4,13.3 -619,19,2,6.6,75,11 -620,53,1,10.5,98.5,16 -621,51,1,13,102,11.3 -622,59,2,14.3,95.6,14.4 -623,25,2,7.9,68.5,15.2 -624,57,2,15,96.2,13 -625,39,1,9.1,77,13.9 -626,23,1,7.9,68.5,12.1 -627,57,2,11.2,63,18.6 -628,40,1,9.2,68.9,12.4 -629,9,2,8.8,65.1,10.5 -630,13,2,11.2,68.5,13.2 -631,38,1,8.3,60.1,17.9 -632,16,2,10.2,67.8,17.3 -633,37,2,13.3,75.8,12.3 -634,13,1,9.3,68.2,12 -635,50,1,14.2,89.7,15.6 -636,35,2,14.3,90.2,12.8 -637,3,1,3.4,56.1,16.8 -638,56,1,14.8,91.2,13.3 -639,7,2,3.5,60,16 -640,40,1,9.5,71.2,11.9 -641,15,2,8.3,67.4,11 -642,7,1,6.2,63.4,15.6 -643,10,2,8.4,67.2,18.2 -644,51,2,14.2,108.1,18.6 -645,51,1,11.8,99,11.7 -646,28,2,6.5,83,15.2 -647,16,1,5.8,80,12.1 -648,22,2,5.5,75.1,15 -649,27,2,7.6,70.9,16.2 -650,56,1,11.7,100,11.6 -651,39,1,9.5,89.1,14.2 -652,47,1,10.1,91.5,18 -653,51,1,12.9,78.3,17.5 -654,31,1,12,82.7,13.3 -655,50,2,9.8,86.1,14.8 -656,14,2,6.2,61.3,12.9 -657,46,2,10,89.7,15.2 -658,14,2,8.2,69.8,12.4 -659,52,2,13.9,91.2,15.4 -660,15,2,8.1,69.2,14.8 -661,48,1,13.9,90.3,16 -662,51,2,14.9,92.6,14.6 -663,24,2,10.5,82.3,16.8 -664,43,1,17.8,102.5,11.9 -665,38,1,15.5,107.8,18.3 -666,0,1,3.6,52,18.7 -667,28,1,17,99.3,11 -668,42,1,14.2,89.5,13.8 -669,22,2,10.3,79.5,14.3 -670,58,2,13.2,99.5,16.3 -671,37,2,11.6,99.1,13.6 -672,3,1,3.1,65,15.5 -673,45,2,15.4,97.3,10.9 -674,44,2,14.9,92.5,16.6 -675,7,1,7,80,10.6 -676,20,2,8.1,75.5,16.2 -677,59,2,13.5,99.5,14.6 -678,4,2,5.5,60,13.6 -679,6,2,8.1,60.4,17.4 -680,48,1,12.5,99.5,12.9 -681,25,1,9.9,100.5,15.7 -682,21,1,9.3,41.2,15.8 -683,59,2,10.3,62.4,10.6 -684,15,2,7.1,67.5,16.5 -685,10,2,8.8,79.5,15.8 -686,40,1,13.7,91.5,17.9 -687,45,1,8.1,89.1,15.6 -688,6,1,4,58.9,18.2 -689,53,2,10,99.6,15.3 -690,40,2,9.2,80,18.1 -691,10,1,5,69.5,12.5 -692,5,1,4,59,17.4 -693,51,2,11,102.1,15.4 -694,7,1,4.8,59,13.2 -695,51,1,9.7,91,13.6 -696,25,1,6.4,70.1,13.7 -697,53,2,8.8,90.5,13.7 -698,52,2,13.1,109,17.4 -699,37,1,8.2,95.1,13.1 -700,14,1,5,65.5,12.7 -701,39,1,10.9,99.5,17.7 -702,15,1,6.5,75.5,15.7 -703,4,2,6.6,75,10.7 -704,9,1,5.7,70,14.6 -705,46,2,16.3,96.2,15.5 -706,31,2,9.1,76.8,18.4 -707,53,2,16,92.1,17.2 -708,25,2,7,62.3,17.3 -709,44,2,18,94.1,16.9 -710,14,2,4.9,59,16.7 -711,51,2,10.1,91.3,18.5 -712,42,1,14.9,90.2,15.5 -713,16,1,7.8,63.1,11 -714,38,2,13.2,96.8,12.6 -715,33,1,7.1,80.6,16.7 -716,4,2,3.3,57.2,10.7 -717,39,1,7.2,63.4,17.4 -718,7,1,6,57.8,12.8 -719,38,2,7.9,61.7,18.4 -720,39,1,8.2,65.6,18.9 -721,38,2,16,91.3,16.2 -722,34,1,8.2,78.8,10.7 -723,36,2,9.9,78.7,15.2 -724,13,1,8.2,65.7,18.2 -725,8,2,5.7,70,14.7 -726,43,1,8.7,89,13.8 -727,29,2,8.6,90.5,16.6 -728,50,2,10.7,100.5,10.9 -729,51,2,10.7,100,14.2 -730,3,1,3.6,57.1,15.2 -731,7,1,4,60.1,12 -732,38,2,10.7,90.5,12.7 -733,2,1,3.9,57.1,16.1 -734,2,2,3.1,56.9,11 -735,37,2,9.1,89,19.1 -736,14,1,5.1,65.9,16.7 -737,43,1,8.2,85,16.2 -738,7,1,4,59.9,11.4 -739,4,1,4.1,56.7,17.1 -740,42,1,8.8,83.1,15.8 -741,14,2,7.3,61.1,18.9 -742,39,1,9.8,72.3,16 -743,4,1,3.1,60.1,12.3 -744,32,2,16,86.2,14.7 -745,26,1,9,77.3,14.1 -746,8,2,2.9,51.2,17.3 -747,39,1,8.2,77.4,13.3 -748,3,1,3,53.8,15.4 -749,7,2,5.9,56.4,18.6 -750,7,2,5.1,53.9,11.2 -751,39,2,8.3,68.1,13.4 -752,0,2,2.9,58.1,14.5 -753,37,2,7.9,82.1,18.1 -754,13,1,9,77.8,16.3 -755,54,2,12.9,89.6,15.1 -756,14,2,8.9,79.8,14.1 -757,41,1,13.1,89.1,18 -758,30,2,8.1,61.8,17.7 -759,23,2,13.9,90,18.8 -760,37,1,9,81.2,15.6 -761,37,2,8.6,77.6,15.7 -762,13,1,8.2,75.8,19 -763,8,2,6,65.1,16.8 -764,43,1,12.7,88.3,13.1 -765,36,2,11.2,93.9,15.7 -766,24,1,8.6,73.1,16.4 -767,49,2,10.1,89.1,16.3 -768,13,1,6,60.9,18.4 -769,39,2,10,79.1,18.9 -770,27,2,8.1,69.1,16.4 -771,51,1,15.1,116.1,11.8 -772,38,2,11.4,96.1,15.9 -773,14,2,9,68.1,13.6 -774,5,2,6.5,60,18.6 -775,26,1,10.5,79.1,17 -776,48,1,12,90.1,15.3 -777,10,2,7,66.1,14.6 -778,14,1,8.9,59.5,15.2 -779,53,2,11.7,88.5,14.7 -780,59,1,14,94.5,12.2 -781,33,1,10.8,81.4,16.8 -782,1,1,7,49.3,11.8 -783,38,2,13.6,96.3,10.8 -784,59,2,12.6,87.3,17.1 -785,3,1,4,58.5,18.7 -786,32,1,10.4,73.4,17.4 -787,12,1,8.6,68.5,16.7 -788,7,1,7.6,68.5,18.1 -789,51,1,11.7,82.1,16.9 -790,8,1,8,59.6,13.4 -791,34,2,14,81.5,12.4 -792,49,1,13.9,95.5,16.8 -793,17,2,10.2,79.5,13.7 -794,8,2,6.9,59.5,17.4 -795,33,1,11.8,81,18.5 -796,56,2,17.4,95,14.8 \ No newline at end of file diff --git a/tests/testthat/data_files/ANTHRO/anthro2.rda b/tests/testthat/data_files/ANTHRO/anthro2.rda deleted file mode 100644 index 68681c75..00000000 Binary files a/tests/testthat/data_files/ANTHRO/anthro2.rda and /dev/null differ diff --git a/tests/testthat/data_files/ANTHRO/anthro3.csv b/tests/testthat/data_files/ANTHRO/anthro3.csv deleted file mode 100644 index e5ce5bb9..00000000 --- a/tests/testthat/data_files/ANTHRO/anthro3.csv +++ /dev/null @@ -1,222 +0,0 @@ -,age,sex,weight,height,muac -1,10,1,5.7,64.2,12.5 -2,10,2,5.8,64.4,12.1 -3,9,2,6.5,62.2,13.9 -4,11,9,6.5,64.9,12.9 -5,24,2,6.5,72.9,12 -6,12,2,6.6,69.4,12.6 -7,9,2,7,66.7,13.6 -8,7,1,7.1,63.5,13.9 -9,9,2,7.1,66.2,14.4 -10,16,2,7.2,69,13.1 -11,13,2,7.4,68.2,13.7 -12,11,2,7.4,70,13.2 -13,14,2,7.5,64.8,12.5 -14,8,2,7.5,65.7,15.1 -15,8,1,7.5,69.1,14 -16,13,1,7.6,69.2,13.1 -17,13,2,7.6,70,12.5 -18,22,2,7.6,76.2,12.1 -19,16,1,7.7,69.6,13.6 -20,8,2,7.8,63.3,14.4 -21,11,2,7.8,71.5,13.4 -22,14,2,7.8,76.6,12.4 -23,7,1,8,66.8,13.9 -24,8,1,8,69.3,14.7 -25,24,2,8.2,70.7,12.5 -26,10,1,8.2,71.1,14.5 -27,15,1,8.3,70.4,13.3 -28,14,2,8.3,71.5,13.7 -29,14,2,8.3,72.9,14.1 -30,17,2,8.3,73.5,13.6 -31,15,1,8.3,76.1,13.3 -32,13,2,8.4,71.8,14.3 -33,20,1,8.4,77.8,13.2 -34,29,2,8.5,75.6,12.7 -35,21,2,8.5,75.6,13.3 -36,21,1,8.5,76.7,12.3 -37,17,1,8.5,77.6,13.7 -38,15,2,8.6,74.9,13.4 -39,24,1,8.6,77.8,13.7 -40,12,1,8.7,72.1,15.6 -41,27,2,8.7,75.8,12.7 -42,25,2,8.7,80.8,12.9 -43,25,1,8.8,81.4,12.5 -44,24,2,8.9,74.3,14.2 -45,30,1,9,77.6,13.2 -46,22,1,9,82.2,13.5 -47,16,1,9.1,76.4,14.5 -48,24,1,9.1,80,12.6 -49,17,2,9.2,74.8,14.4 -50,15,2,9.2,75.3,14.5 -51,33,1,9.2,80.1,13.6 -52,25,2,9.2,80.9,14.2 -53,16,1,9.4,75,14.8 -54,29,2,9.4,81.9,13.8 -55,16,1,9.5,73.2,15.1 -56,17,1,9.6,73.5,14.6 -57,29,2,9.6,84.6,13.4 -58,16,1,9.7,74.2,14.8 -59,20,1,9.7,80.4,14.2 -60,34,1,9.8,80.2,13.8 -61,21,2,9.8,80.9,14.5 -62,20,1,9.8,82.2,13.9 -63,29,1,9.9,78.6,14.2 -64,25,2,9.9,82.9,13.8 -65,15,1,10,75.3,15.7 -66,39,1,10,81.4,13.3 -67,9,1,10.1,72.6,15.5 -68,21,1,10.1,76.7,15.3 -69,17,2,10.1,79.1,14.3 -70,25,1,10.1,79.5,14 -71,13,2,10.2,74.6,15.7 -72,25,2,10.3,81.3,14.1 -73,31,2,10.3,85.1,13 -74,25,2,10.4,81.3,13.8 -75,37,1,10.6,76.2,15.3 -76,25,2,10.6,80.7,13.8 -77,26,1,10.6,83.1,14.2 -78,36,2,10.6,84.2,13.5 -79,37,2,10.7,84.2,15 -80,34,2,10.7,85.7,14.6 -81,47,1,10.7,89.8,13.1 -82,12,1,10.8,82,14.7 -83,25,2,10.8,83.6,14.1 -84,31,1,10.8,83.8,15.8 -85,34,1,10.8,84.4,14.4 -86,27,2,10.9,79,15.3 -87,23,2,10.9,85.9,14.5 -88,19,1,11,75.4,16.8 -89,26,2,11,83.2,14.5 -90,54,1,11,85.9,13.9 -91,20,1,11.1,79.9,15.6 -92,23,1,11.1,84.7,14.6 -93,43,2,11.1,86,14.2 -94,31,1,11.1,87.1,14.3 -95,40,2,11.2,95.2,13.7 -96,18,2,11.3,75.5,16.1 -97,41,1,11.3,89.4,14.2 -98,40,1,11.3,90.7,14.8 -99,33,2,11.3,91.2,13.9 -100,11,1,11.4,78.4,17.1 -101,25,1,11.4,82.2,16.3 -102,27,2,11.4,86.8,15.5 -103,38,1,11.4,89.4,14.1 -104,17,2,11.5,80.6,15.8 -105,31,2,11.5,85.4,15.3 -106,45,1,11.5,86.2,14.3 -107,53,1,11.6,81.4,15.3 -108,23,2,11.6,86.3,14.3 -109,37,1,11.6,86.3,14.9 -110,38,1,11.6,89.9,14.6 -111,40,1,11.7,93,14 -112,36,1,11.8,87.1,14.6 -113,29,1,11.9,84.3,16.6 -114,26,2,12,81.2,16.4 -115,33,1,12,86,15.4 -116,36,1,12,87.5,15 -117,55,2,12,96.2,14.4 -118,16,1,12.1,82.3,15.7 -119,35,2,12.1,86.6,14.7 -120,43,1,12.1,91.7,15.1 -121,38,2,12.2,80.9,17.5 -122,37,1,12.2,85.5,16.2 -123,41,2,12.2,87.6,15.5 -124,45,2,12.2,90.1,14.9 -125,46,2,12.2,99.6,14.6 -126,31,1,12.3,88,16.7 -127,44,1,12.3,88.1,15.1 -128,47,2,12.3,94.9,13.3 -129,29,1,12.4,91.8,14.1 -130,46,2,12.4,99.6,14 -131,34,1,12.6,87,15.6 -132,38,2,12.7,85.7,15.2 -133,32,1,12.8,87.6,16.1 -134,36,1,12.8,90.4,15 -135,39,1,12.8,92.7,15.2 -136,42,1,12.8,94,14.6 -137,38,2,12.9,83.4,17.4 -138,26,2,12.9,86.2,15.9 -139,35,1,12.9,90.9,15.4 -140,41,1,12.9,91.2,16 -141,32,1,12.9,91.4,14.8 -142,49,1,13,93.1,15.2 -143,30,1,13.1,84.3,16.1 -144,32,1,13.1,85.1,13.6 -145,35,1,13.1,87.5,15.8 -146,34,1,13.1,88.6,16.2 -147,45,2,13.1,91.6,15 -148,29,1,13.2,90.8,15.8 -149,47,2,13.2,91.4,14.6 -150,37,2,13.2,93.8,15.5 -151,35,1,13.3,96.5,14.2 -152,15,2,13.4,82.4,15.7 -153,38,2,13.4,93,15.2 -154,37,2,13.4,94.1,14.9 -155,53,2,13.4,100.3,14.5 -156,37,2,13.5,84.4,16.8 -157,43,1,13.5,96.1,15.1 -158,52,1,13.5,97,14.4 -159,45,2,13.5,98,14.8 -160,39,2,13.5,99.1,14.5 -161,47,2,13.6,97,14.6 -162,26,2,13.7,85.7,17.1 -163,24,1,13.8,80.9,17.2 -164,38,2,13.8,93.3,15.3 -165,57,1,13.8,94,14.9 -166,42,2,13.8,103.4,14.4 -167,42,2,13.9,92.3,17.5 -168,52,1,13.9,95.5,15.1 -169,52,1,13.9,95.7,15.6 -170,57,2,13.9,97.2,15.3 -171,52,2,13.9,97.8,14.1 -172,52,2,13.9,97.9,15.5 -173,49,2,13.9,98.2,15 -174,58,2,14,96.6,15.4 -175,50,1,14,97.9,15.8 -176,39,2,14.1,93.7,15.5 -177,49,2,14.1,96.4,14 -178,50,2,14.1,97.1,14.8 -179,59,2,14.1,97.3,15.2 -180,52,2,14.1,102.4,15.6 -181,41,1,14.2,96.7,14.6 -182,53,1,14.2,97.7,15.1 -183,49,2,14.2,98.1,15.6 -184,35,2,14.3,89.8,16.5 -185,50,1,14.3,93.7,15.2 -186,41,1,14.4,94.8,15.8 -187,42,1,14.5,95.1,16.1 -188,58,1,14.5,104.9,13 -189,49,1,14.7,96.6,15.2 -190,52,2,14.7,96.7,15.4 -191,51,2,14.7,99.2,15.5 -192,49,1,14.7,99.6,16.4 -193,42,2,15,93.5,17.2 -194,28,2,15.1,91.5,16.4 -195,41,2,15.2,95.9,16.5 -196,53,1,15.3,95,16.6 -197,58,1,15.3,100.7,15.5 -198,48,1,15.3,103.5,14.3 -199,54,1,15.5,97.9,15.9 -200,58,1,15.5,101.3,16.6 -201,52,2,15.6,100,16.4 -202,50,1,15.7,99.6,15.3 -203,53,2,15.7,103.1,15.8 -204,43,1,15.8,91.1,17.9 -205,57,1,15.9,103.8,16.1 -206,55,2,16.3,95.4,16.9 -207,54,2,15.3,102,15.6 -208,44,1,16.3,96.2,17.3 -209,47,1,16.3,102,16.6 -210,57,1,16.3,108.4,13.8 -211,52,1,16.4,103.9,15.2 -212,52,2,16.6,97.8,14.4 -213,56,1,16.6,103.9,14.8 -214,55,1,16.7,106.3,15.4 -215,52,1,17,101.3,16.3 -216,50,1,17.3,101.8,16.8 -217,53,1,17.5,102.2,16.8 -218,42,1,17.7,100.9,14.5 -219,48,2,17.8,111.3,17.6 -220,53,1,17.9,98.7,17.1 -221,50,1,18.1,106.4,16.6 \ No newline at end of file diff --git a/tests/testthat/data_files/ANTHRO/anthro3.rda b/tests/testthat/data_files/ANTHRO/anthro3.rda deleted file mode 100644 index 1bba9553..00000000 Binary files a/tests/testthat/data_files/ANTHRO/anthro3.rda and /dev/null differ diff --git a/tests/testthat/data_files/CLUSTER/CLUSTER_INT1.csv b/tests/testthat/data_files/CLUSTER/CLUSTER_INT1.csv deleted file mode 100644 index ad14e4ba..00000000 --- a/tests/testthat/data_files/CLUSTER/CLUSTER_INT1.csv +++ /dev/null @@ -1,1057 +0,0 @@ -"idPatient","idSurgery","trtGrp","intSurgery","nDoctors","idDoctor","intDoctor","nPatients","Male","age","BMI","diabetes","incid_rate","private" -1,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,9.52751852804795,34.2481348267455,1,21,0 -2,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.4492542303633,25.7558210702231,1,12,1 -4,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.3900225714315,32.9886411263104,1,24,1 -7,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.1536247143522,28.2841571826166,1,12,1 -10,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.4550951372366,30.6034079824873,1,30,1 -12,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.4385660330299,33.4111406800899,1,25,1 -13,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.68239895929582,23.9702410609981,1,15,1 -16,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.4554992318153,24.5329838070369,1,8,1 -17,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,9.6535150129348,31.4724480439826,1,27,1 -21,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.90560142812319,26.7354868019884,1,12,1 -23,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.95015560300089,27.0081608682348,1,9,1 -24,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.0318499899004,29.1978531237056,1,18,1 -28,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.93191611859947,27.9004692193111,1,15,1 -30,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.83775165118277,25.0486658975925,1,12,1 -31,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.93083197344095,25.8416416507142,1,11,1 -32,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.1883882004768,28.0585588516914,1,18,1 -34,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.79763024812564,24.4960073741762,1,16,1 -36,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.1851752083749,26.8762060454112,1,15,1 -39,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.1428793997038,26.8350354275292,1,19,1 -44,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.4913792144507,32.668322009947,1,20,1 -46,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.439192594029,29.2562022597089,1,25,1 -47,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.0401780225802,26.2438704190582,0,18,1 -49,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.415597705869,30.8727202912588,1,18,1 -54,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.2160420184955,26.900897387345,1,16,1 -56,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.0263301094528,27.8316858981201,1,29,1 -57,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.80780303454958,29.1813361993566,1,17,1 -61,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,9.54603264620528,33.1380008940548,1,30,1 -62,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.91963297408074,27.6723391062947,1,9,1 -63,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.0826401598752,33.4867789686635,1,19,1 -65,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,9.94909599539824,31.4551310092288,1,26,1 -68,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.89756739721633,26.9848978292587,1,18,1 -69,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.2043647342362,26.1406549811261,1,15,1 -76,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,9.95135438768193,30.3331997115643,1,32,1 -85,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.67356079886667,24.8687928981817,1,16,1 -94,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.3822299353778,26.5606245888287,1,21,1 -95,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.9047492351383,28.1717196632828,1,11,1 -96,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.98502348666079,27.4550109144883,1,19,1 -99,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,9.78872931562364,31.5433125135621,1,25,1 -105,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.4314941025805,24.8693119566478,1,17,1 -106,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.1269995870534,31.037430894447,1,28,1 -107,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.66667583538219,24.1908607735329,1,19,1 -108,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.1483799796551,26.5851441133481,1,13,1 -112,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.3648138826247,26.5044565420241,0,8,1 -113,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.1233510854654,28.8497007152098,1,16,1 -120,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.4294040503446,29.9269579274548,1,15,1 -125,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.4774258821271,32.7216762593756,1,29,1 -127,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.80605356930755,24.3267026431697,1,12,1 -128,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,9.55777033930644,32.2685037032092,1,31,1 -130,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.4019038509578,30.1060718232841,1,20,1 -131,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.328102979809,30.5896123461376,1,23,1 -134,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.3332394799218,32.8010498360892,1,22,1 -135,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.3671486016829,25.7880092087726,1,16,1 -137,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.57964322855696,27.7831654093395,1,16,1 -139,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,9.68102505616844,31.036408881372,1,24,1 -144,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.66178886522539,26.5339143422799,1,17,1 -145,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.68826393829659,26.9936097277445,1,22,1 -146,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.70562151679769,26.4838353201854,1,20,1 -148,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.1877670686226,35.099845784366,1,17,1 -151,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.4744983310811,30.6259686199787,1,14,1 -153,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.4081578701735,26.7284078619533,1,24,1 -155,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,9.71432487177663,33.6286417560539,1,18,1 -156,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.1418705771212,31.4587311192082,1,24,1 -160,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.5670757193584,26.0145604078801,1,18,1 -161,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.3124238722958,35.5654692690957,1,21,1 -171,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.62978113396093,30.6488136741999,1,20,1 -177,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.2865160414949,29.9858191955164,1,25,1 -179,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.3091793656349,33.8116867124581,1,28,1 -180,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.4907760447823,39.731239741971,1,51,1 -181,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.78153871162795,34.0184508655423,1,22,1 -182,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.67861168901436,37.1261855385526,1,43,1 -185,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.474935577251,31.7647023621185,1,24,1 -186,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.95208312966861,32.9382097829144,1,31,1 -187,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.54851136705838,33.4151007573745,1,30,1 -188,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.7006661107298,33.5816169740932,1,38,1 -192,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.69097527163103,37.0912703636308,1,41,1 -199,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.1403927602805,35.4768831626294,1,38,1 -200,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.3179658523295,33.0918231622397,1,20,1 -201,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.0024142474867,35.9563221740388,1,44,1 -203,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.3907310755458,35.8925138511412,1,49,1 -207,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.453450051602,38.7473247884095,1,39,1 -216,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.88411748874933,35.9310854714974,1,38,1 -220,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.1525756993797,32.1318132522263,1,31,1 -224,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.69940178282559,32.0646056683231,1,25,1 -226,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.66805281629786,36.0387947406071,1,33,1 -235,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.4699714190792,34.4488524517643,1,27,1 -236,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.75587441818789,30.3268784412172,1,35,1 -238,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.6381837206427,31.5650577924242,1,30,1 -250,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.3666495736688,39.7620667956773,1,46,1 -256,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.0304518991616,36.6334191110126,1,34,1 -261,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.4032040762249,35.1123669539103,1,41,1 -264,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.8333610096015,33.2219349080264,1,24,1 -267,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.52781824371777,38.1822493697856,1,47,1 -269,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.72095964499749,37.6530343520631,1,55,1 -270,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.1965975498315,34.6237685480634,1,25,1 -272,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.86621040082537,32.5666162343488,1,37,1 -275,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.60429133288562,31.4495104198827,1,25,1 -284,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.1872462944593,30.6893190143661,1,23,1 -291,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.3842307373416,29.0415788324986,1,15,1 -292,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.70098855113611,30.3516520069629,1,20,1 -297,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.76846454222687,28.6917271544422,1,21,1 -305,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.60974381747656,35.2884083537259,1,35,1 -306,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.82877487177029,35.1408747873508,1,36,1 -312,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,10.2793950205669,34.8413177280447,1,34,1 -316,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.52839947724715,27.3502915078944,1,25,1 -319,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.58727534837089,30.9124906655653,1,28,1 -320,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.0001310026273,28.8820083513322,1,16,1 -326,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.82527940766886,29.6128027707252,1,16,1 -328,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.7412398327142,31.6628209286765,1,14,1 -329,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.8001358055044,28.283793252811,1,15,1 -330,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.75003475206904,34.564063502834,1,25,1 -331,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.2136198668741,29.2978947477183,1,26,1 -335,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.1491514397785,31.5771340845299,1,16,1 -339,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.78407671255991,28.9305762089827,1,22,1 -343,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.3117537423968,31.7749163206458,1,20,1 -347,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.80908040283248,32.6024083763992,1,29,1 -349,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,10.1811306797899,33.6573457607963,1,30,1 -350,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.4703865237534,28.0097526522636,1,19,1 -355,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.7831443566829,37.8551696035394,1,26,1 -357,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.68948494992219,37.0619637832153,1,33,1 -358,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.60071260575205,29.7992234822467,1,23,1 -364,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.2593107982539,29.6250312086258,1,24,1 -368,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.74018290406093,35.2227019940759,1,35,1 -373,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,10.2291008387692,34.9048940709834,1,20,1 -375,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.72642494412139,29.0350776407433,1,23,1 -376,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.67315546772443,35.9555907881268,1,30,1 -380,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.0074065083172,32.1373320953849,1,19,1 -386,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.0694400304928,34.5068302945964,1,27,1 -388,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.3493204698898,25.5741100095113,1,15,1 -391,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.68246348015964,26.9681896945663,1,23,1 -395,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.0047140931711,31.9005032544312,1,29,1 -397,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.213669124525,34.2261353699484,1,32,1 -398,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,9.92394635127857,35.4904753729006,1,27,1 -405,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,9.64350192598067,32.5864805951401,1,27,1 -407,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.4430086798966,33.1178794963572,1,19,1 -414,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.0552157999482,26.0794760497096,1,12,1 -418,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.86970752337947,30.0520795484318,1,17,1 -423,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.4957727924921,33.4816128513756,1,26,1 -424,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,9.64667609496973,32.6897912289823,1,27,1 -429,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.95413499861024,27.0937864680255,1,16,1 -435,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.0412643924356,33.363917744756,1,23,1 -442,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.84950059419498,26.8759817168209,1,17,1 -444,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.4682472455315,33.761876560246,1,23,1 -448,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.4582553985529,32.5282490277395,1,26,1 -453,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.2424600545783,29.8921633761722,1,16,1 -458,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,9.68724768050015,32.4932879478627,1,24,1 -459,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,9.65599551587366,33.8822685630982,1,31,1 -460,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.3082209825516,27.5711876377352,1,22,1 -463,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.79358394746669,25.8894106914334,1,20,1 -470,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.82220791582949,28.4898033663591,1,17,1 -473,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.63962335628457,27.0853152149887,1,16,1 -474,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.3555081624072,31.7188397201215,1,29,1 -478,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.9303393503651,28.007008287368,1,17,1 -480,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.287078270223,38.5115112958332,1,29,1 -483,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.0059318686835,30.5751784636964,1,22,1 -485,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.51551681151614,28.6905072651163,1,25,1 -487,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.3111072599422,30.5206100258321,1,24,1 -491,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.80705534596927,32.2277325902087,1,28,1 -493,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.1430304590613,33.8798603469137,1,40,1 -497,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.62623363849707,26.5973641458956,1,17,1 -504,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.77046740311198,37.5416202707023,1,31,1 -506,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.89722873829305,30.202864118187,1,25,1 -509,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.3405743830372,35.0907269473775,1,33,1 -512,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.85030887578614,29.3573848966989,1,19,1 -521,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.67732647899538,31.5785169434937,1,22,1 -522,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.373417965835,31.7923813816275,1,20,1 -523,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.91496366169304,29.7856613002985,1,20,1 -526,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.4285424086265,33.962596754922,1,28,1 -528,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.3390194352251,35.6877253659852,1,33,1 -531,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.4792807912454,36.8041273688315,1,31,1 -533,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.55960222054273,37.9084038525795,1,33,1 -541,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.4318444621749,30.107301351534,1,27,1 -542,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.0851570789237,31.2070368754499,1,24,1 -546,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.51701001054607,36.1062198072388,1,40,1 -551,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.63363071717322,32.3211434001355,1,25,1 -553,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.3132268167101,34.946414845126,1,34,1 -557,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.57555640675128,35.7847795575107,1,39,1 -559,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.3453091357369,30.6306727970039,1,18,1 -560,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.05478735012,34.5673086385621,1,25,1 -561,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.89973542513326,36.5789736969682,1,38,1 -567,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.0908759501763,27.6956742930549,1,23,1 -570,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.56187765183859,33.3042385801675,1,28,1 -573,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.3654973604716,29.508922574143,1,24,1 -582,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.1493712323718,32.8705876588821,1,28,1 -583,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.0973224646877,30.9495808612846,1,27,1 -587,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.1293426183984,29.9968091133794,1,23,1 -588,1,1,2.37456968552376,7,7,1.71780943344135,91,0,9.95852081361227,30.7274839689285,1,22,1 -590,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.91733688791282,38.7573662138984,1,54,1 -592,1,1,2.37456968552376,7,7,1.71780943344135,91,0,9.53682914329693,32.0821415014266,1,27,1 -594,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.2043953535613,36.0679404416384,1,33,1 -595,1,1,2.37456968552376,7,7,1.71780943344135,91,0,9.89515068684705,31.1886727242902,1,17,1 -603,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.5919408488553,37.0300260589262,1,40,1 -607,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.3137986524962,35.6610790840914,1,43,1 -613,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.270235001808,38.005899711172,1,38,1 -615,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.2476147725247,32.3650499500415,1,28,1 -616,1,1,2.37456968552376,7,7,1.71780943344135,91,0,9.79858041135594,30.6085068256695,1,29,1 -624,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.1484536339995,36.9560757317863,1,33,1 -626,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.83816784387454,38.2962757774727,1,61,1 -629,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.0632444056682,37.7302218798271,1,38,1 -636,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.0611584999133,30.2124423326737,1,15,1 -639,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.2355061313137,37.7544141816001,1,47,1 -640,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.3544846829027,30.7809480624933,1,25,1 -644,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.1902631497942,37.7681964701039,1,44,1 -646,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.1552869300358,37.5241408684944,1,42,1 -649,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.80609465832822,36.9229287570426,1,51,1 -650,1,1,2.37456968552376,7,7,1.71780943344135,91,0,9.96662252792157,30.7127750113917,1,22,1 -652,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.94685105327517,37.0993759893567,1,38,1 -653,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.4833018688951,32.5933000625488,1,27,1 -654,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.3685586950742,32.3415720396545,1,18,1 -661,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.2267748301383,31.8356022438544,1,20,1 -662,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.1614040592685,29.4888979414604,1,28,1 -664,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.1415037179831,28.9055596278531,1,21,1 -666,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,10.2025270843878,32.5963404460856,1,36,1 -669,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,9.77982831350528,35.4457664705925,1,29,1 -672,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,10.1324827373028,29.4014651015375,1,21,1 -682,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,9.56165461312048,27.569795358339,1,26,1 -683,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,9.85266147577204,30.4355783864695,1,20,1 -684,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,9.53637604042888,35.2220496005497,1,45,1 -686,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,10.4213946145028,34.4567481460314,1,28,1 -689,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,9.85062730521895,27.5589387667352,1,20,1 -693,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,9.83528157090768,27.7544280901257,1,21,1 -694,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,10.0254479781725,31.1850547123541,1,17,1 -696,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,9.89887486468069,28.4028156186454,1,31,1 -698,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,9.72828035568818,27.9664217571517,1,25,1 -699,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,10.3350308421068,35.199259888364,1,37,1 -701,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,10.0778785645962,29.0601162544636,1,22,1 -704,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,9.78199178748764,30.0671811125457,1,20,1 -705,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,10.3737311374862,36.2808998584792,1,41,1 -706,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,9.94738641544245,33.6101963435703,1,37,1 -711,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,9.68200035719201,30.266798485565,1,17,1 -712,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,9.84700836497359,31.3786047466154,1,19,1 -714,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,9.79438840947114,29.1438337068581,1,23,1 -715,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,10.4125089864247,35.5637191288587,1,28,1 -716,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,10.1023563237395,36.8980485953765,1,44,1 -720,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,10.1202503924724,28.4335289378365,1,22,1 -726,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,9.89053532946855,33.3558734167718,1,37,1 -732,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.59821175853722,18.8476851932018,0,7,1 -733,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.4427975525614,21.5427976912548,0,6,1 -734,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.1427571068052,18.142254730649,0,4,1 -738,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.73144569294527,23.1804435180338,1,13,1 -740,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.71711549209431,23.6479416199315,1,9,1 -741,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.331039786106,18.7651909800421,0,5,1 -744,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.55360719258897,27.3654105723234,0,15,1 -745,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.1245558657683,25.8886948881019,1,10,1 -748,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.1733909363393,26.5060612361135,0,6,1 -749,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.5288776345551,23.5827081143069,0,16,1 -759,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.0395486557391,20.9053471721092,0,5,1 -760,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.1447062678635,26.1768566969201,0,6,1 -761,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.56069786264561,21.2172258520962,0,8,1 -762,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.91508901608177,21.9034859893933,0,6,1 -765,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.86242381925695,19.5384377217432,0,9,1 -766,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.89816058240831,19.8561624110902,0,3,1 -767,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.74492583423853,20.777988588727,0,8,1 -775,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.88303669542074,20.4717980692239,0,9,1 -777,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.2106642080471,23.9740676476093,1,8,1 -778,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.4294703821652,23.4338141645551,0,10,1 -779,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.87472748011351,24.9557435029771,1,10,1 -780,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.2850362469908,26.8778403825592,1,11,1 -785,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.4391432541888,25.1811512579813,1,9,1 -791,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.59795363107696,19.4431314277958,0,11,1 -793,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.235802043695,18.8691558795521,0,9,1 -799,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.471510529751,23.4628581171524,1,13,1 -801,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.1962336667348,18.5824561376299,0,7,1 -802,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.4309723046608,18.7984318777467,0,10,1 -812,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.7861392784398,22.3516988395171,0,10,1 -815,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.76535232109018,20.456779086535,0,4,1 -817,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.66436004266143,22.1046867180226,0,7,1 -826,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.3309367496986,24.3981187363729,1,19,1 -838,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,9.74248083890416,23.4643427339952,0,10,1 -839,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.63080511288717,20.7974866102108,0,2,1 -841,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.60012468812056,20.5770200245804,0,7,1 -842,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.2073009451851,17.9798573124987,0,4,1 -849,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.1257941816002,18.5931400012532,0,7,1 -852,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.50281939585693,19.7298372398326,0,6,1 -858,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,9.93198761972599,25.7196179048333,1,9,1 -860,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.75522248260677,20.933628249676,0,5,1 -861,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.088921502931,26.95569811658,0,12,1 -862,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.93868872872554,19.6348669317961,0,9,1 -866,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.62749821785837,18.0627002137213,0,5,1 -871,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.1703617346939,24.3585387221209,0,9,1 -872,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.0839897252154,25.896515407603,1,16,1 -874,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.2393511456903,26.0968089308073,1,11,1 -876,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,9.65101240808144,25.0062548291861,1,11,1 -879,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.8812192461919,16.9743875306113,0,9,1 -881,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.2000185570214,19.3001502579619,0,5,1 -882,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.2314574085176,20.3197320487011,0,6,1 -884,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.93134994828142,22.6571094211297,0,10,1 -885,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.2261604252271,22.4688703394545,1,16,1 -889,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.2836829640437,19.5918471093977,0,13,1 -890,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.68991406052373,22.0037589554657,0,7,1 -896,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.51037075696513,21.3316787492754,0,10,1 -899,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.0982683266047,21.2437906689836,0,7,1 -900,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.1705167768523,27.2138895333938,1,13,1 -906,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.2308088636491,17.9953738609611,0,3,1 -913,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.4255642853677,27.845816489516,1,17,1 -914,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.53111445903778,18.0243839508013,0,7,1 -915,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.2232830699068,24.0293407456902,0,13,1 -916,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.95496102795005,19.9882469373681,0,12,1 -917,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.2567327334546,19.265765200354,0,8,1 -921,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.74839074513875,22.9066718233699,0,8,1 -922,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.76784136844799,24.521470365693,0,12,1 -923,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.087103778962,18.6473313617616,0,7,1 -926,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.3230304289609,23.8982777805682,0,12,1 -932,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.76308627519757,16.1665660140664,0,3,1 -933,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.383931189077,18.888544488952,0,3,1 -934,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.78256980841979,21.2121175793178,1,6,1 -935,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.394249079749,23.7266082568599,0,7,1 -940,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.83691987022758,23.6942507899862,0,10,1 -945,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.61153987422585,16.851155757438,0,7,1 -948,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.93617629655637,21.5995153002368,0,13,1 -954,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.75469090999104,17.6964079458328,0,7,1 -958,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.68890801887028,24.7300800642857,0,7,1 -960,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.96202033665031,22.8421195093623,0,11,1 -964,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.1463872755412,22.9351981261302,1,16,1 -966,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.81945248809643,18.8913777746391,0,8,1 -969,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.6389424870722,16.4008449521222,0,3,1 -979,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.0102272024378,20.2044279236783,0,10,1 -984,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.53743437677622,21.1816549159241,0,8,1 -987,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.93675610749051,23.8458926670847,0,8,1 -990,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.030304124346,25.2941557186129,1,9,1 -991,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.4449210339226,24.9938386342733,0,9,1 -993,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.2595186571125,18.1129762487584,0,8,1 -994,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.95798713574186,18.8976308400741,0,7,1 -1001,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.76762515748851,16.8302101498256,0,3,1 -1003,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.1770136298146,15.5653846149586,0,6,1 -1008,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.57767941476777,24.5116374236684,0,5,1 -1010,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.60092535475269,17.6264535692822,0,4,1 -1016,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.95635822182521,14.2909458791143,0,3,1 -1019,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.96979641774669,25.5104937896067,0,23,1 -1021,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.0462202222552,22.5629052670616,0,6,1 -1029,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.0154626544099,22.1157140366251,0,11,1 -1030,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.3572284325492,19.5431469488091,0,8,1 -1031,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.4052002166864,21.7367279778863,0,12,1 -1037,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.4931217026897,27.5815577794831,1,23,1 -1041,4,0,1.09615018600291,3,12,0.65067591921437,89,0,9.72339161275886,22.7551414034253,0,13,1 -1045,4,0,1.09615018600291,3,12,0.65067591921437,89,0,9.59927861625329,22.1394206050046,0,7,1 -1048,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.1824913502205,20.3955894526854,0,3,1 -1049,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.78059603692964,24.3608557054818,1,11,1 -1051,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.0051810152363,23.887875966127,0,7,1 -1054,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.92764689750038,25.6825260423429,1,13,1 -1056,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.60281557729468,25.8631857535163,1,24,1 -1062,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.4491393810604,22.6800609694762,0,8,1 -1066,4,0,1.09615018600291,3,12,0.65067591921437,89,0,9.73076923377812,23.2111965208496,0,9,1 -1067,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.59596966998652,27.966440499535,1,23,1 -1074,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.90680815605447,25.8515019067484,0,12,1 -1076,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.4981591303367,27.3629903852087,0,16,1 -1077,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.1444248394109,22.1248405008339,1,6,1 -1082,4,0,1.09615018600291,3,12,0.65067591921437,89,0,9.91808498976752,24.9199478778995,0,6,1 -1084,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.76025477144867,27.7932984205319,0,15,1 -1085,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.4514104309492,20.5328343507904,0,8,1 -1087,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.118353146594,25.3876322077836,1,15,1 -1089,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.0121609275229,23.4843741973125,1,11,1 -1091,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.87029194575734,26.8544665237962,1,13,1 -1093,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.75900566554628,23.8332183640186,0,12,1 -1099,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.62343514338136,26.7063427732709,1,15,1 -1102,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.4135745149106,21.9672796030546,0,14,1 -1107,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.73763494798914,24.9830635774254,1,13,1 -1109,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.6669470705092,19.9279893640148,0,12,1 -1110,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.61814013263211,24.0095680042032,1,11,1 -1113,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.0813458925113,22.6217024706054,0,9,1 -1114,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.0342523916624,28.7221261328475,0,15,1 -1117,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.0470409386326,18.8027059436619,0,3,1 -1118,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.0037246171851,20.6255559404312,0,8,1 -1120,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.67078706459142,21.2951528844955,0,12,1 -1121,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.0598870522808,25.180232872667,1,10,1 -1122,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.0720978658646,21.9709439750452,0,10,1 -1125,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.4705401933752,25.794893032809,1,13,1 -1126,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.9714049003087,26.8238766988006,1,15,1 -1128,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.99886233964935,20.3788242214825,0,5,1 -1132,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.3251552653965,24.2151835560863,1,21,1 -1133,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.71343677956611,24.4445585805581,1,5,1 -1142,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.58818307705224,26.1478978771807,1,13,1 -1144,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.1649911908899,18.5937301350014,0,16,1 -1151,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.58656897977926,29.0219466058028,1,12,1 -1153,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.57553526479751,21.2666686666168,0,8,1 -1154,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.013150540879,25.3513409130082,1,11,1 -1156,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.90587704232894,19.175682617096,0,13,1 -1159,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.371316405246,25.8585816033521,0,17,1 -1172,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.85925749596208,25.7629125314978,0,12,1 -1173,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.1098214986268,27.2986856571054,0,11,1 -1174,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.4873769748956,19.2283839628917,0,9,1 -1178,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.4708958168048,18.5284885899747,0,4,1 -1180,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.0098946080543,16.7327819632357,0,5,1 -1185,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.0093942000531,20.5817923750521,0,6,1 -1186,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.67661639186554,19.4889515060391,0,8,1 -1190,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.76694834372029,25.2880252461379,0,12,1 -1192,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.2664316024166,26.5360916217635,1,15,1 -1195,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.64863164094277,27.5403026215677,1,13,1 -1196,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.62313380581327,20.3842091703275,0,5,1 -1199,4,0,1.09615018600291,3,14,0.64410374127223,91,1,10.1750273464713,26.1239222612163,1,19,1 -1205,4,0,1.09615018600291,3,14,0.64410374127223,91,1,10.2010506633669,26.4728420514433,1,9,1 -1206,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.11509843776,22.6697469804682,1,11,1 -1207,4,0,1.09615018600291,3,14,0.64410374127223,91,1,10.2172802672721,26.5038997831578,1,9,1 -1211,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.156161025865,18.5700083190097,0,14,1 -1212,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.67472920822911,20.8312072257441,0,12,1 -1215,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.040846164804,20.3533518441806,0,9,1 -1220,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.55116160144098,21.635432402518,0,5,1 -1225,4,0,1.09615018600291,3,14,0.64410374127223,91,1,9.57423251820728,25.8926999936881,1,17,1 -1226,4,0,1.09615018600291,3,14,0.64410374127223,91,1,10.4283170646522,26.768060465101,0,11,1 -1229,4,0,1.09615018600291,3,14,0.64410374127223,91,1,9.52496749768034,27.2897579173482,0,8,1 -1231,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.6480239010416,21.62812394542,0,5,1 -1234,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.0907994315494,23.1324681890779,0,12,1 -1235,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.64987673098221,21.6168429860354,0,12,1 -1241,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.66665808367543,23.2710168729304,0,9,1 -1243,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.3136947555467,21.1657788556702,0,8,1 -1244,4,0,1.09615018600291,3,14,0.64410374127223,91,1,9.64122436894104,27.6800021438206,1,20,1 -1246,4,0,1.09615018600291,3,14,0.64410374127223,91,1,10.4997406480834,30.9672004311903,1,13,1 -1248,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.1156519521028,21.841435464745,0,5,1 -1250,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.79585010162555,21.7592038167838,0,3,1 -1251,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.95310646574944,22.7387082391057,0,13,1 -1252,4,0,1.09615018600291,3,14,0.64410374127223,91,1,9.94244485790841,27.6816878578915,1,20,1 -1255,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.5041521594394,20.2087518379036,0,7,1 -1260,4,0,1.09615018600291,3,14,0.64410374127223,91,1,9.51940782624297,28.1639735945464,1,17,1 -1261,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.72604944952764,22.5752183240237,0,8,1 -1262,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.96418059407733,20.5394523629986,0,9,1 -1263,4,0,1.09615018600291,3,14,0.64410374127223,91,1,10.3717164357658,24.6312332871735,1,17,1 -1267,4,0,1.09615018600291,3,14,0.64410374127223,91,1,9.52936795470305,27.4805151697449,1,10,1 -1269,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.67403020150959,23.5640371983779,0,9,1 -1272,4,0,1.09615018600291,3,14,0.64410374127223,91,1,10.159680795623,28.567201423229,0,13,1 -1275,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.6726911352016,23.3767920762902,0,9,1 -1276,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.6440934271086,19.4784552825783,0,12,1 -1278,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.71440324885771,21.4020475383619,0,11,1 -1281,4,0,1.09615018600291,3,14,0.64410374127223,91,1,9.78508112416603,27.2915788323335,1,15,1 -1287,4,0,1.09615018600291,3,14,0.64410374127223,91,1,10.1212472745683,29.2709084510282,0,13,1 -1294,5,1,0.700213275570883,5,15,0.996790521575935,63,1,10.3770484225824,34.6693893736915,1,28,1 -1295,5,1,0.700213275570883,5,15,0.996790521575935,63,0,9.82480994518846,28.6306393432831,1,20,1 -1299,5,1,0.700213275570883,5,15,0.996790521575935,63,0,9.54411597852595,27.8671128839164,1,29,1 -1301,5,1,0.700213275570883,5,15,0.996790521575935,63,0,9.63902424788103,29.6125822206682,1,21,1 -1302,5,1,0.700213275570883,5,15,0.996790521575935,63,1,10.3481775280088,34.8781358608694,1,26,1 -1306,5,1,0.700213275570883,5,15,0.996790521575935,63,0,10.4084059814923,28.7934883065752,1,12,1 -1307,5,1,0.700213275570883,5,15,0.996790521575935,63,1,10.4021285518538,33.8452447644938,1,36,1 -1308,5,1,0.700213275570883,5,15,0.996790521575935,63,1,10.3951981537975,35.4735578542018,1,31,1 -1309,5,1,0.700213275570883,5,15,0.996790521575935,63,0,10.419831527397,29.8725004026989,1,10,1 -1312,5,1,0.700213275570883,5,15,0.996790521575935,63,1,9.79228022065945,34.819668656102,1,32,1 -1319,5,1,0.700213275570883,5,15,0.996790521575935,63,0,9.83486826578155,30.8501653491962,1,17,1 -1323,5,1,0.700213275570883,5,15,0.996790521575935,63,0,10.0286710506771,31.2534254368913,1,28,1 -1324,5,1,0.700213275570883,5,15,0.996790521575935,63,0,10.2757927121129,31.0196433305519,1,19,1 -1326,5,1,0.700213275570883,5,15,0.996790521575935,63,1,10.4305119027849,31.3101602698146,1,34,1 -1327,5,1,0.700213275570883,5,15,0.996790521575935,63,0,9.68921391339973,29.5608432339586,1,19,1 -1328,5,1,0.700213275570883,5,15,0.996790521575935,63,0,9.76777295954525,30.85531029349,1,15,1 -1329,5,1,0.700213275570883,5,15,0.996790521575935,63,1,10.052168802591,34.0018963242386,1,45,1 -1333,5,1,0.700213275570883,5,15,0.996790521575935,63,0,10.3105258110445,27.8139891869036,1,25,1 -1334,5,1,0.700213275570883,5,15,0.996790521575935,63,0,10.0343556480948,28.9166653365873,1,20,1 -1341,5,1,0.700213275570883,5,15,0.996790521575935,63,1,9.64939356758259,35.6601676260091,1,45,1 -1343,5,1,0.700213275570883,5,15,0.996790521575935,63,1,9.58901793160476,34.1576129732724,1,35,1 -1346,5,1,0.700213275570883,5,15,0.996790521575935,63,1,9.8431135318242,33.5308855749958,1,25,1 -1349,5,1,0.700213275570883,5,15,0.996790521575935,63,0,10.1284105586819,25.9945276029582,1,20,1 -1352,5,1,0.700213275570883,5,16,1.46385743923002,86,1,9.77890835609287,34.587344512868,1,31,1 -1355,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.3900277160574,34.452775351337,1,39,1 -1362,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.0533571243286,33.6092630839986,1,29,1 -1365,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.4659286388196,31.9452537628349,1,21,1 -1369,5,1,0.700213275570883,5,16,1.46385743923002,86,0,9.63354930700734,31.3494851224841,1,25,1 -1372,5,1,0.700213275570883,5,16,1.46385743923002,86,0,9.62090890319087,29.0270590288526,1,18,1 -1380,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.34157335083,29.7973968976155,1,20,1 -1382,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.1893974984996,30.929249373233,1,18,1 -1385,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.468766321661,36.2783227365408,1,21,1 -1392,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.0041520148516,35.9735621649191,1,33,1 -1408,5,1,0.700213275570883,5,16,1.46385743923002,86,0,9.85119133582339,29.7347339335564,1,24,1 -1417,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.2644040791783,37.4908536744035,1,34,1 -1420,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.137070836965,38.6507279261358,1,38,1 -1423,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.1001713746227,30.7008510513826,1,14,1 -1424,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.0857094232924,34.4641771586399,1,33,1 -1426,5,1,0.700213275570883,5,16,1.46385743923002,86,1,9.95432170387357,36.1043410598425,1,32,1 -1429,5,1,0.700213275570883,5,16,1.46385743923002,86,0,9.80926258955151,28.9426816791716,1,18,1 -1430,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.3140152469277,36.8216631849111,1,34,1 -1432,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.4262032394763,32.5790523962366,1,37,1 -1433,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.1434247482102,34.5203123681639,1,29,1 -1434,5,1,0.700213275570883,5,16,1.46385743923002,86,0,9.90050860261545,30.5492166707612,1,23,1 -1436,5,1,0.700213275570883,5,16,1.46385743923002,86,1,9.77509639202617,33.529565666917,1,26,1 -1438,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.90216746344231,27.6963468229878,1,21,1 -1443,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.92174985003658,31.2711326872799,1,28,1 -1448,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.4121238684747,29.2913013527801,1,17,1 -1450,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.67861622269265,27.9491427792249,0,15,1 -1451,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.94560749083757,26.9884499377108,1,17,1 -1453,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.91820805473253,31.6154769186662,1,25,1 -1456,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.4874137218576,33.4324212659935,1,23,1 -1471,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.3135894571897,28.5233054930272,1,11,1 -1474,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.0124173520599,33.2797317979333,1,25,1 -1477,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.95071463705972,28.7456782958308,1,14,1 -1480,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.3297286962625,31.2033498737294,1,23,1 -1482,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.65998650970869,32.2496859038426,1,21,1 -1483,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.72718653385527,32.0240856135528,1,27,1 -1488,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.1485343172681,28.2010141155332,1,18,1 -1491,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.0969180006068,31.9817531047757,1,25,1 -1498,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.2922270148993,27.8815148918618,1,16,1 -1502,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.125578410225,26.6980835075515,1,10,1 -1504,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.288441442186,33.2369347562195,1,32,1 -1506,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.71427345252596,32.3752327391064,1,19,1 -1515,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.64836910064332,32.0312737625919,1,33,1 -1520,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.71933817421086,31.81107925054,1,27,1 -1521,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.3059308440425,31.2771379053219,1,26,1 -1524,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.4078290904872,34.275935131975,1,44,1 -1528,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.022530982038,31.9538613330866,1,28,1 -1529,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.97118948586285,29.7212905446015,1,15,1 -1530,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.79768295632675,30.4822854061217,1,24,1 -1532,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.96776122134179,30.6045751959847,1,28,1 -1534,5,1,0.700213275570883,5,18,0.714114383757768,99,1,10.0638570412993,34.1136091876406,1,33,1 -1536,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.95932255219668,30.5442622474146,1,21,1 -1540,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.81873919116333,31.9733739959369,1,17,1 -1541,5,1,0.700213275570883,5,18,0.714114383757768,99,1,10.1930464110337,34.0709757487197,1,36,1 -1542,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.0135790356435,28.9025797355985,1,20,1 -1546,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.79306638985872,35.2533550696408,1,40,1 -1549,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.97527327155694,30.1394786322508,1,13,1 -1550,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.1567936893553,28.5594004276834,1,20,1 -1552,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.0675880920608,28.471696855837,1,23,1 -1556,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.1563308027107,30.8176338850071,1,24,1 -1562,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.2100846639369,29.1823914690608,1,19,1 -1563,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.7885638717562,33.8395139283949,1,32,1 -1566,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.128469485091,26.6940614065387,1,20,1 -1568,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.2778958957642,32.3345429219517,1,22,1 -1569,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.4788764303084,29.6777402790129,1,26,1 -1572,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.4514307102654,29.3175738072802,1,27,1 -1576,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.84169758786447,36.6392801267522,1,27,1 -1579,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.91949955606833,29.1245497708844,1,15,1 -1585,5,1,0.700213275570883,5,18,0.714114383757768,99,1,10.2490904941224,35.7237208617592,1,33,1 -1592,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.54412972088903,36.2151558405683,1,35,1 -1601,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.98510238761082,31.7931746099585,1,21,1 -1603,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.97425350686535,34.1939998862089,1,20,1 -1606,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.0105190265458,28.0651093853388,1,21,1 -1608,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.2712214756757,30.5610433238856,1,23,1 -1614,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.3310926184058,30.318044513411,1,14,1 -1615,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.66327363112941,31.2292907819507,1,13,1 -1616,5,1,0.700213275570883,5,18,0.714114383757768,99,1,10.0653081457131,32.902270169924,1,31,1 -1617,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.0803476390429,28.8963525540615,1,18,1 -1619,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.63597154966556,36.1327581225992,1,23,1 -1620,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.67859209422022,31.0220964596377,1,20,1 -1622,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.3745271016378,29.9294832998403,1,29,1 -1623,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.0925202073995,29.6896935391734,1,17,1 -1625,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.4589569496457,29.1468226652121,1,23,1 -1626,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.96046462096274,26.7873899703005,1,14,1 -1635,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.92134846793488,31.0879787170147,1,27,1 -1636,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.2042360056657,27.9096813378424,1,28,1 -1639,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.1234576774295,32.1381958104249,1,16,1 -1640,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,9.50799027713947,26.6146653545911,1,14,1 -1642,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,9.85754922009073,26.6140413033036,1,13,1 -1648,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,9.58185304212384,24.0302247489497,1,12,1 -1651,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.0049104231875,29.0419319682314,1,28,1 -1654,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,10.4958422286436,27.1691286163762,1,11,1 -1656,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.2076760563068,30.2305055106246,1,13,1 -1660,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,9.52936965809204,25.1218419936109,1,19,1 -1662,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,9.89481798396446,27.9789015492786,1,14,1 -1663,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.63225486734882,32.0384617574443,1,27,1 -1664,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,10.294014781015,27.4818889619992,1,11,1 -1667,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,10.3256165438797,26.2611780094616,1,13,1 -1677,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.2503878516145,30.6886180870271,1,24,1 -1680,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.79721345799044,29.7560090185622,1,24,1 -1681,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.61328849662095,33.072326188366,1,24,1 -1682,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,10.3845115373842,27.3197747847337,1,9,1 -1690,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,10.3138973305468,28.0775932540003,1,15,1 -1694,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.2948961767834,30.4995599970771,1,21,1 -1696,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.14265412651,33.2381166676902,1,18,1 -1697,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,10.0648053898476,24.2569648896081,1,8,1 -1699,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.69941768306307,30.9591654176068,1,18,1 -1703,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,10.3644388404209,26.591342046716,1,14,1 -1710,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.2018493439537,31.8789710555474,1,16,1 -1712,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.6627934561111,29.0415565254683,1,17,1 -1713,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.85280525078997,33.1733134890185,1,23,1 -1714,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.85355305764824,28.4101156593589,1,21,1 -1717,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,9.67194796586409,28.3713039552959,1,8,1 -1720,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.94257303676568,31.7052514569724,1,20,1 -1728,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,9.96364445076324,26.8877965647418,1,16,1 -1733,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.52453274186701,32.0150352835126,1,33,1 -1735,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,9.65213431115262,26.9994456362504,1,14,1 -1738,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.2883554261643,31.021228408521,1,37,1 -1739,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.52368932054378,33.9407296315277,1,31,1 -1752,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,9.72575048706494,27.4958353078539,1,21,1 -1755,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.85122555796988,31.0941105734328,1,19,1 -1757,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,9.77563070459291,29.5670828143249,1,20,1 -1763,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.2205841029063,24.0421861248445,1,15,1 -1765,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.2806220734492,30.3723535144264,1,25,1 -1766,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.2793104059529,34.3989684520067,1,28,1 -1770,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.3982460738625,31.8250227115704,1,26,1 -1771,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.2643928257748,27.1766857176841,1,20,1 -1774,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.1002802923322,31.3852177524239,1,23,1 -1779,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.68658500653692,31.5000450920636,1,24,1 -1783,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.85345755354501,32.993365038495,1,21,1 -1787,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.2286008866504,32.5011746677155,1,26,1 -1792,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.1435159249231,31.807518113157,1,30,1 -1793,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.57877340074629,33.0789916916059,1,19,1 -1794,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,9.88763665617444,27.1452504351008,1,13,1 -1797,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.80682036676444,31.5387723615057,1,21,1 -1799,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.2636146913283,27.005355381614,0,19,1 -1801,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,9.95560391573235,26.395141412175,1,16,1 -1804,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.0166427588556,27.7918520089238,1,16,1 -1809,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.1378094751853,26.5388921492935,1,19,1 -1820,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.1083501754329,21.8038640583748,0,12,1 -1822,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.63374460465275,27.1242922090655,1,19,1 -1825,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.7689417921938,26.0081514433494,1,12,1 -1827,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.1038990502711,19.0518729710396,0,11,1 -1829,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.2358678968158,28.6599019838526,1,9,1 -1830,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.61141234496608,20.7737035692322,0,10,1 -1832,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.0200509196147,25.735035036915,1,13,1 -1836,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.4914618346374,22.9265585199645,0,8,1 -1838,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.99824939249083,20.8132657741572,0,10,1 -1840,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.4085190205369,28.1312267431176,1,20,1 -1841,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.2234804204199,26.0975712237049,1,10,1 -1842,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.2941223739181,26.6205299528701,1,12,1 -1844,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.2535422358196,23.0445890158635,0,15,1 -1848,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.1078815471847,20.9590113760198,0,5,1 -1849,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.76595854037441,21.3064739698331,0,8,1 -1850,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.73781895963475,22.717983758863,0,10,1 -1851,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.1177454588469,26.8700492691064,1,18,1 -1854,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.1804578637239,27.6836453024517,1,10,1 -1856,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.50664629694074,24.3535187933481,1,15,1 -1858,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.53176662209444,26.9509490063331,1,13,1 -1859,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.79210712504573,25.8988313561135,1,24,1 -1862,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.53101804992184,20.7546805170465,1,10,1 -1863,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.3504049680196,21.9423193972444,0,11,1 -1865,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.2455388265662,27.7780977452874,0,7,1 -1866,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.1808291645721,21.5561030029582,0,8,1 -1868,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.311812215019,26.1336614115878,1,10,1 -1870,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.3672767346725,26.609155230681,1,9,1 -1872,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.2145920917392,29.4058003722089,1,12,1 -1873,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.2600858814549,18.7588393824565,0,8,1 -1875,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.81536439806223,24.2772876859073,0,11,1 -1882,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.4870474722702,26.9467370023748,1,11,1 -1885,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.89619820495136,19.8196897137874,0,11,1 -1886,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.455178180011,28.068195820954,0,21,1 -1890,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.4790894011967,29.3186499082283,1,13,1 -1891,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.0640140024479,22.0763077770606,0,6,1 -1892,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.2678016868886,20.241395261126,0,10,1 -1897,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.99306572694331,15.9316204760474,0,11,1 -1901,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.88346113427542,26.384554040581,1,9,1 -1902,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.0184316786472,18.565916746546,0,4,1 -1903,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.1463574548252,17.2419333210228,0,8,1 -1906,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.0305844391696,15.8580531213309,0,12,1 -1910,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.8359968077857,25.0416653914848,0,16,1 -1911,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.2604244467802,26.3777030176675,0,7,1 -1913,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.51156091457233,21.2121330310426,0,9,1 -1915,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.3291055031586,26.1638436854644,0,8,1 -1917,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.7254290021956,19.3329456649672,0,9,1 -1918,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.0969260015991,26.8950623437741,1,8,1 -1919,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.94705695798621,23.9087307490576,0,11,1 -1921,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.74866209318861,19.276925221724,0,7,1 -1922,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.0748657716904,21.4603618573655,0,6,1 -1926,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.216385186417,18.1829065239991,0,9,1 -1928,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.2598411855288,26.3065829721866,0,9,1 -1931,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.67926298477687,23.9533436635007,0,10,1 -1933,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.59090786916204,17.9448679458301,0,8,1 -1939,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.98188171070069,19.4999788370426,0,6,1 -1945,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.4032462323084,17.4412755016993,0,6,1 -1947,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.75603480590507,18.1528522864987,0,3,1 -1949,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.60551526676863,19.835587579086,0,6,1 -1951,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.71614422928542,19.3901959005468,0,8,1 -1952,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.94650557101704,19.9397873312935,0,7,1 -1953,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.3578489054926,22.6320973775379,0,7,1 -1954,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.0444194336887,17.3923960196938,0,7,1 -1955,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.52435818593949,23.0872298408667,1,17,1 -1958,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.3126972932369,18.9729778655668,0,5,1 -1961,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.53343039192259,19.9446035763775,0,8,1 -1965,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.94112119846977,25.7244353915834,1,14,1 -1968,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.90227976511233,24.431476001896,0,12,1 -1971,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.66330218617804,25.2300858845192,0,5,1 -1975,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.2895737441722,22.2849773053651,0,14,1 -1977,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.56316992850043,21.9214875191091,0,16,1 -1979,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.71231242618524,24.1223363257206,0,10,1 -1980,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.2842466903385,27.619243029372,0,10,1 -1981,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.0190479019657,19.684999881383,0,7,1 -1987,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.4385554185137,24.6293034244093,0,10,1 -1988,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.6185181918554,29.0205606766173,1,20,1 -1989,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.95488399267197,27.1071496118768,1,16,1 -1990,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.61886524222791,28.0047494503035,1,13,1 -1991,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.57867618603632,24.9901903141329,0,6,1 -1992,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.1469061803073,22.9450975708681,0,11,1 -1994,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.58742380654439,24.2340830837062,0,8,1 -1995,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.3198337149806,23.0095389985126,0,9,1 -2000,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.4738652985543,28.0277590725672,1,20,1 -2001,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.0425876458175,29.4409715632246,0,18,1 -2003,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.3760885228403,19.3061285895857,0,8,1 -2004,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.99163456400856,21.3928058253539,0,9,1 -2005,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.86816519196145,27.332872175741,1,22,1 -2006,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.0931467220653,25.9465973968265,1,18,1 -2008,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.77580650546588,22.6572767342327,0,8,1 -2014,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.86557844560593,22.8901981808141,0,11,1 -2016,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.73670892347582,28.0443881337327,0,21,1 -2019,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.2328470700886,22.9015322195273,1,14,1 -2020,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.7684614690952,27.1971259965222,1,18,1 -2025,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.66959771118127,25.6995218088511,1,13,1 -2026,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.3039350935724,26.4273425300086,1,20,1 -2029,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.59730110876262,26.1300645929688,0,11,1 -2030,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.66394531400874,23.6110674437703,0,7,1 -2041,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.0954372005071,25.3463931452465,0,7,1 -2044,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.0506385182962,24.2329343802198,0,9,1 -2045,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.88680639956146,22.4386381447001,0,10,1 -2046,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.50998000754043,25.9989750163084,1,13,1 -2047,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.4361071577296,28.5895370231909,1,14,1 -2052,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.117591840215,21.5742069224132,0,14,1 -2054,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.52329950453714,27.3290702088166,1,8,1 -2055,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.2167777288705,27.4259085207111,1,12,1 -2066,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.83516892162152,29.2133175948931,1,19,1 -2070,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.1737706896383,24.2538075483656,1,23,1 -2072,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.3815572771709,22.2711311779998,0,5,1 -2073,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.75661052134819,29.6291839925634,1,22,1 -2078,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.35344503331,26.9488043783821,1,20,1 -2089,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.30113019282,30.5941516920383,0,13,1 -2091,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.54221438453533,26.5828478750174,1,16,1 -2096,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.1318082427606,28.9715651049142,1,9,1 -2107,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.4000353754964,27.6735554971314,0,15,1 -2108,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.2200951452833,24.7566790730192,0,9,1 -2111,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.2450290687848,21.5835493742515,0,6,1 -2112,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.1148049545009,22.0579611972723,0,11,1 -2113,7,0,2.61803289632224,8,24,0.291326014233072,87,0,9.75496182334609,20.0840702710856,0,10,1 -2114,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.4727646270767,28.3652263688656,1,16,1 -2115,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.2826635406818,22.1636101114315,0,7,1 -2116,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.4894483070821,20.8985380703238,0,10,1 -2119,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.58854963700287,29.5299090898902,1,11,1 -2124,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.79298359551467,28.831372225029,1,19,1 -2126,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.83195073576644,29.9175956868385,1,17,1 -2134,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.1965235234238,27.2157285577079,1,17,1 -2136,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.2843974283896,24.9724707074866,0,10,1 -2137,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.4651555949822,27.8018680676689,1,16,1 -2138,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.0956159255002,19.6561673962173,0,14,1 -2141,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.96305320551619,23.9538550386315,1,16,1 -2146,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.7480982884299,27.6162769443666,1,12,1 -2148,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.51417397125624,27.2330858762118,1,13,1 -2151,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.3070445801131,28.6805548891905,1,19,1 -2156,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.2470576292835,21.4448310605996,0,16,1 -2160,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.95562964631245,27.700964185396,1,19,1 -2162,7,0,2.61803289632224,8,24,0.291326014233072,87,0,9.79835022613406,22.7016834933235,0,6,1 -2164,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.4469379549846,23.8343356967095,0,10,1 -2168,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.047593532363,22.1228925233839,0,6,1 -2179,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.71853909571655,24.6348980223003,1,13,1 -2182,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.93369188741781,22.6068850484633,0,10,1 -2184,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.2237266295124,27.0081511936167,1,16,1 -2186,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.80217361776158,27.2522564165378,1,11,1 -2190,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.2750557295512,28.6028667686031,1,23,1 -2193,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.67941757012159,26.9370537624288,1,17,1 -2194,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.81752700381912,24.8888260349967,0,18,1 -2199,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.54615224874578,21.1402095106735,0,13,1 -2202,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,10.0362908940297,19.3542838402989,0,8,1 -2206,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.82619705307297,25.6108571510428,1,12,1 -2209,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.345826389268,27.257770014253,1,16,1 -2217,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.3444763442967,28.9259902212264,1,18,1 -2219,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.0605027298443,27.4891213697751,1,19,1 -2223,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.3956332844682,26.8200629372451,1,18,1 -2225,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.2690579092596,25.4229246769159,1,22,1 -2227,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.85572490748018,24.2500647571514,0,5,1 -2232,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.80665561044589,20.0243931525055,0,6,1 -2233,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,10.3031345822383,22.6081651005472,0,7,1 -2236,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,10.1184203743469,23.4746181543232,0,9,1 -2237,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,10.2727408537176,24.0411615271402,0,9,1 -2239,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.95383699471131,24.4442236198691,0,4,1 -2240,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,10.4222539379261,21.9012485210029,0,11,1 -2243,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.70546614029445,20.6340983424453,0,5,1 -2245,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.1613565720618,27.4177912804474,1,17,1 -2254,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.5546119203791,26.9484992913123,0,20,1 -2255,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.75725751835853,27.1951173014894,1,18,1 -2258,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.1921699440572,31.7727541846946,1,20,1 -2262,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.017290806165,28.686847865883,1,10,1 -2266,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,10.1480290885083,23.8670387213553,0,8,1 -2267,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.75071713095531,26.5522022229421,1,12,1 -2270,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.1954600287136,28.7877811329781,1,22,1 -2273,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.62305147806183,30.8518947780008,1,16,1 -2279,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.3029151398223,28.8828992335202,1,23,1 -2280,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.75613425322808,30.4832857854856,1,14,1 -2282,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.3947666285094,31.3076738036815,1,13,1 -2283,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.4066315400414,23.2284296414841,1,11,1 -2284,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.57210554275662,23.4846600446391,0,8,1 -2285,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.2372740346473,24.0584713129923,1,9,1 -2286,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.87042237259448,27.7652350894936,1,25,1 -2287,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.4482302770484,28.9596207971348,1,23,1 -2288,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.0834852701519,27.7830171804253,1,17,1 -2296,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.2083236477338,30.0416736722765,1,15,1 -2297,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.56441141897812,28.3124236850474,1,23,1 -2302,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.0820603601169,29.0231320456225,1,21,1 -2303,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.51319165714085,30.4792956758473,1,24,1 -2305,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.1656860942021,30.0754549454141,1,23,1 -2306,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.2724951982964,28.1605311164222,1,17,1 -2307,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.1146362565923,28.0996398265525,1,18,1 -2308,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.56432675919496,24.2854994562467,0,17,1 -2309,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.2482451181859,24.3809737524041,1,12,1 -2310,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.73574071913026,25.4666674401362,0,17,1 -2312,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.53301558177918,22.6449770717365,0,10,1 -2313,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.1162938049529,23.2677350987735,0,9,1 -2314,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.2835960632656,23.4046448026365,0,11,1 -2320,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.2287846938707,24.7530702317196,0,7,1 -2321,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.2323676485103,28.6014078582648,1,19,1 -2322,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.94707626337186,27.6965671184372,1,11,1 -2324,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.69779292866588,27.9084779352478,1,13,1 -2326,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.0458324113861,26.6781978986835,1,13,1 -2327,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.3953880278859,26.9035932550081,1,20,1 -2328,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.59153905068524,24.9317545024823,0,11,1 -2330,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.4912126429845,23.0821008188859,0,9,1 -2339,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.83662730338983,25.4451799802604,0,10,1 -2341,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.7392750128638,28.2872885121266,1,19,1 -2342,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.98074287944473,20.7580214828571,0,4,1 -2346,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.4863772427198,27.1953970093889,1,15,1 -2348,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.2784131616354,25.885092056254,1,6,1 -2352,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.0602666453924,28.2482703487377,1,20,1 -2353,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.78635863540694,22.588717105946,1,15,1 -2355,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.90368654299527,27.7910218117107,1,26,1 -2356,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.66918310988694,28.5739385434042,1,21,1 -2358,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.88043400715105,28.5929527666126,1,16,1 -2359,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.130711886799,27.3347929444793,1,12,1 -2361,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.62118544266559,24.1333731789053,0,17,1 -2370,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.2011688577477,26.3433836390549,1,18,1 -2381,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,10.370397673687,20.6797613090975,0,11,1 -2382,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.82895464450121,28.4614736683562,1,10,1 -2383,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.3176607396454,27.3917457836352,1,10,1 -2384,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,10.1311677657068,21.2564304972367,0,6,1 -2385,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.53779233340174,27.5619347056049,1,11,1 -2386,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.95991075597703,22.2293820427758,0,9,1 -2387,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.5882880135905,21.096633869301,0,9,1 -2390,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.66522282501683,27.7422433277031,1,22,1 -2391,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.65166095341556,22.4537073764765,0,6,1 -2394,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,10.1606004445348,20.1011630093644,0,11,1 -2398,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.57868638797663,25.3048537369029,1,16,1 -2399,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,10.0582981230691,21.6740268194323,0,5,1 -2400,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.54629115271382,26.269632511784,1,14,1 -2404,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.82264721067622,24.061271718602,0,12,1 -2406,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.61368802119978,20.6529210142172,0,8,1 -2409,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.98934531747364,24.120559022756,0,10,1 -2410,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.97360730706714,22.2898659690781,0,10,1 -2411,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.69867873098701,22.3943535869555,0,10,1 -2415,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.0277241391595,24.6522522349757,1,18,1 -2416,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.1628971432801,26.5830036304719,0,11,1 -2417,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.4029621130321,28.4692819539531,1,21,1 -2418,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.87147289328277,19.0476770073977,0,12,1 -2423,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.67324386001565,26.2304130696664,1,13,1 -2424,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.54356033052318,27.6295215073964,0,5,1 -2427,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.64638755214401,20.9006418328523,0,5,1 -2428,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.79425195115618,22.1215158351898,1,7,1 -2432,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.91887962119654,26.353599935322,1,10,1 -2433,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.88230704842135,22.7378448492855,0,7,1 -2438,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.4060886693187,26.7424807073197,0,24,1 -2442,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.87904543243349,23.0504677132874,0,8,1 -2443,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.84165682457387,21.4210796478942,0,8,1 -2447,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,10.4979867492802,23.8742375270894,0,10,1 -2452,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.6270667721983,28.9421020528737,0,20,1 -2458,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,10.3373793025967,22.4078783088153,0,16,1 -2459,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.2996216102038,27.1966326401701,1,11,1 -2465,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.0527302068658,22.4696827451096,0,6,1 -2467,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.4877180343028,24.0100843515688,0,6,1 -2470,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.55074782855809,20.7863943665362,0,6,1 -2471,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.73448851518333,24.9105251823398,1,13,1 -2472,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.75511624710634,18.6110894754105,0,7,1 -2474,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.72653453657404,25.661417539733,1,16,1 -2480,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.4933946912643,27.2486675408642,1,14,1 -2481,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.94734980771318,27.2869750384843,0,10,1 -2482,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.57306796777993,21.2144955369272,1,9,1 -2491,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.85482686874457,19.7162357203098,0,3,1 -2492,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.88849659170955,25.0374849850974,1,12,1 -2493,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.2477890315931,23.3222832820302,0,11,1 -2494,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.2611636689398,18.5621982411845,0,9,1 -2495,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.68873348226771,19.30669110976,0,11,1 -2500,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.92207103478722,26.782037258857,0,13,1 -2502,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.2749908680562,27.2124102094421,1,14,1 -2505,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.1549934227951,20.307947861383,0,7,1 -2510,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.1769042878877,23.4404652747804,0,8,1 -2512,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.77543551940471,25.1279168182926,1,15,1 -2513,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.4640487181023,22.5424023124653,0,13,1 -2519,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.51455507357605,24.5048259098807,1,10,1 -2521,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.4422691061627,17.6881342694491,0,10,1 -2525,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.65223301830702,26.3445575413187,0,11,1 -2538,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.4689804755617,17.796918669878,0,3,1 -2539,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.90617328416556,19.6971806356113,0,8,1 -2548,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.57471282430924,23.1066643402573,1,9,1 -2550,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.54439973621629,24.2704139466229,1,17,1 -2555,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.4757767845877,22.1543168340239,0,6,1 -2559,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.99368036375381,17.8549519893946,0,6,1 -2560,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.3589318974409,21.3428713293968,0,7,1 -2568,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.0787160543259,20.0913470228676,0,5,1 -2573,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.59961318364367,23.6048212702783,1,15,1 -2574,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.58163292519748,24.7544866459318,1,6,1 -2577,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.6652717422694,18.9088662514722,0,7,1 -2581,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.79214112670161,19.2515655295437,0,2,1 -2582,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.4888628146145,20.5050166704519,0,8,1 -2588,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.90821890439838,25.1580890150395,1,10,1 -2590,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.7954801148735,20.6013464438989,0,4,1 -2591,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.0352183927316,19.0140623879026,0,14,1 -2592,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,10.2840961059555,25.8864762588784,1,19,1 -2595,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.0368529318366,19.1874787209312,0,7,1 -2599,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.97182492911816,20.4658330188668,0,3,1 -2600,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.51301653310657,23.4751357963029,1,15,1 -2605,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.71490354579873,25.2872233725733,0,9,1 -2607,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.75160041241907,28.3848086643772,1,5,1 -2610,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.62424099445343,25.6621162613789,0,14,1 -2613,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.74967088829726,24.4304679010462,1,14,1 -2614,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,10.3157807837706,22.5647897241694,1,11,1 -2616,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.1240139242727,19.3274207317451,0,9,1 -2621,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.85961572895758,28.484055580472,1,10,1 -2623,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.70240350463428,19.5647724020574,0,7,1 -2625,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.94817914208397,23.7879546015337,0,8,1 -2634,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,10.0807861604262,27.3060864303972,0,10,1 -2635,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.7805962045677,20.9450652482475,0,7,1 -2636,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.91449449304491,27.4424579837806,0,8,1 -2637,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.56604853994213,18.2759653942728,0,5,1 -2638,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.81277267728001,23.5220794898787,0,5,1 -2640,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,10.2264303474221,27.1872486017743,1,13,1 -2643,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.71031505009159,19.7670925958726,0,8,1 -2647,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.4318339962047,19.9875786715421,0,7,1 -2648,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.70799270854332,21.2462131961089,0,10,1 -2654,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.1160633685067,20.3407055547335,0,10,1 -2655,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.4923488779459,21.751157795937,0,3,1 -2656,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,10.4560459796339,26.2410278126764,0,15,1 -2659,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,10.0821658445057,24.0222575158336,1,10,1 -2660,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.7992309005931,16.7672522249916,0,12,1 -2661,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,10.0211164795328,24.766060519136,0,11,1 -2664,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.89438745146617,19.6622873866519,0,8,1 -2667,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.81558751966804,16.3142937270559,0,4,1 -2677,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.87204932700843,16.791134446331,0,10,1 -2680,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.2703180848621,17.6154196460044,0,2,1 -2682,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,10.3991565424949,23.4464326395039,0,12,1 -2683,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.0828288421035,16.2972585141083,0,7,1 -2684,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,10.2470172226895,23.8238448660578,0,13,1 -2686,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.56391809345223,25.2686453013228,0,9,1 -2689,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,10.0576596325263,22.8725036133969,0,14,1 -2690,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.62894715135917,24.5448337187089,0,11,1 -2697,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.0704702204093,18.7246721713301,0,12,1 -2700,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,10.468657998601,24.0226642254035,0,14,1 -2702,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.54075010167435,25.8602198628333,0,9,1 -2705,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,10.3528473977931,22.6423061552605,0,13,1 -2706,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.2867719237693,15.7225641609794,0,7,1 -2709,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.4037194852717,18.6130660098344,0,5,1 -2710,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,10.476472472772,23.7963415143319,0,9,1 -2711,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.3220825078897,19.014644595581,0,10,1 -2716,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.96333809616044,25.2800836612899,0,8,1 -2723,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.69107157434337,20.8735897394517,0,5,1 -2724,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.74646324058995,21.258524966651,0,11,1 -2725,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.0303051888477,17.5025033155219,0,7,1 -2730,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.6253459090367,23.0143890336297,1,12,1 -2732,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.367737659486,20.0073608528595,0,6,1 -2734,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.68957682861947,21.1766100254306,1,16,1 -2736,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,10.3996083175298,27.0833627879737,0,18,1 -2746,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.2776988153346,19.0275200803579,0,7,1 -2750,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.0938246266451,18.8049552189053,0,4,1 -2761,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.83542745234445,19.8578633458897,0,5,1 -2767,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.99282937683165,22.807659467337,0,12,1 -2768,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,10.1356850489974,28.4587091544532,1,13,1 -2769,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.55400606268086,27.0368151816196,1,11,1 -2770,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.81370414118282,29.3475571113178,0,14,1 -2772,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.92257667146623,22.1741093591373,0,9,1 -2785,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.2877753113862,23.7282410521409,0,9,1 -2786,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.78568987548351,26.359272288072,1,16,1 -2795,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.028849657625,22.7640651269584,0,8,1 -2797,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,10.239815416513,26.5158200790431,1,11,1 -2801,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.244745912496,18.4955255422817,0,14,1 -2802,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.2906761949416,23.3810083592462,0,12,1 -2804,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,10.2835211416241,27.0165558247266,1,14,1 -2811,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.80703005217947,23.0221845585501,0,12,1 -2814,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.2824676951859,22.571379208495,0,9,1 -2817,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.270698157372,22.6685337768116,0,3,1 -2818,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.3982275009621,22.4123768733109,0,9,1 -2820,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.57032265374437,19.4580734074424,0,12,1 -2826,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,10.0820209053345,28.8126583808923,1,15,1 -2831,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.85101878456771,21.4192045724589,0,10,1 -2838,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.6453135877382,27.1211499445388,1,13,1 -2841,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.55931738391519,26.4229322927738,1,12,1 -2844,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,10.0359820933081,25.9998489994335,1,17,1 -2846,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.1362820174545,20.0804158856147,0,6,1 -2850,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.1130591919646,25.379992921856,0,8,1 -2852,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.4523495752364,21.2382687441286,0,9,1 -2854,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.63986262911931,23.4986024579248,0,11,1 -2858,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.1168464559596,21.5945879171894,0,6,1 -2860,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.145585432183,24.9568562887215,0,7,1 -2864,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.135566865094,23.4188886259815,0,14,1 -2865,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,9.67136565293185,21.5633523481209,0,3,1 -2866,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.93464068137109,24.0266092509239,1,10,1 -2869,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.4084426707122,21.0035122497051,0,5,1 -2870,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.97261475259438,24.7726995044461,0,16,1 -2871,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.77569395420142,23.7080518488837,0,4,1 -2872,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.3202845929191,21.114847021816,0,7,1 -2875,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.67048921179958,24.5776942719303,0,15,1 -2877,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.92047208570875,23.9110154418158,0,8,1 -2878,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.405429904582,24.8619818018533,0,14,1 -2881,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.3420152384788,26.747335277242,1,7,1 -2883,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.3246346751694,19.9287506273382,0,5,1 -2885,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.56662316457368,23.2813951829998,0,14,1 -2889,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.0449149755295,25.2502898187256,0,16,1 -2896,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.3925636350177,27.0904804509471,0,9,1 -2899,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,9.65870040422305,18.5532338864274,0,12,1 -2900,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.3815155273769,24.6355577770233,0,10,1 -2905,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,9.85678044147789,20.4591378852047,0,3,1 -2906,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.59184282948263,26.9145926275794,0,12,1 -2909,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.0936217440758,24.689726178656,1,8,1 -2912,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.1598582963925,22.2615566106493,0,11,1 -2916,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.99215983273461,24.9625850740942,0,14,1 -2918,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.1190613235813,18.579706479295,0,9,1 -2919,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.4293245424051,18.3329957065142,0,5,1 -2922,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.74160312511958,24.4773108197867,1,10,1 -2928,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.3304225888569,17.1643845766863,0,4,1 -2933,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.99339777114801,24.0357085289772,0,9,1 -2934,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,9.84400550718419,20.8189822677393,0,8,1 -2940,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.76174425403588,24.0363166480619,0,14,1 -2941,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.4423648416996,23.8944929334651,0,3,1 -2949,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.3803685430903,19.072859024854,0,9,1 -2951,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.1671012274455,21.1683046470282,0,7,1 -2959,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.1711752426345,26.2148802195648,1,11,1 -2961,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.1447115272749,20.0776953386046,0,6,1 -2962,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.2766162855551,20.0307129518931,0,6,1 -2971,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.69266547588632,20.2773635207479,0,12,1 -2972,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.250553302234,27.3208394079923,1,16,1 -2974,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.53078282368369,21.1676690897397,0,6,1 -2977,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.93959793332033,23.172749608691,1,11,1 -2978,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.94986381568015,26.6132471526234,1,12,1 -2980,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.73077881312929,27.0651753435596,1,9,1 -2981,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.4979647381697,22.9462663162183,0,8,1 -2984,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.61540007474832,22.1194670936635,0,6,1 -2985,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.98207551636733,25.0252346584643,1,13,1 -2986,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.70489744958468,21.8955087353003,0,12,1 -2987,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.61454249871895,22.7986622561239,0,7,1 -2989,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.56537706358358,21.9468818248866,0,9,1 -2990,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.5405910294503,19.4325227189436,0,11,1 -2991,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.63633758574724,25.7774301927407,0,15,1 -2996,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.78912555566058,25.086635685226,1,8,1 -2998,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.3662759603467,19.6625169823285,0,6,1 -3000,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.2478513603564,20.399207597061,0,6,1 -3002,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.74394175899215,27.5542590841435,1,11,1 -3006,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.85235382476822,19.7032508426739,0,5,1 -3007,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.2506908155046,20.384789099807,0,9,1 -3008,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.8331437963061,21.4152978040333,0,7,1 -3012,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.0558752701618,25.8791372646907,0,15,1 -3013,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.0302483821288,20.1018582263585,0,8,1 -3014,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.95717780897394,22.6378291031498,0,16,1 -3017,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.0357675729319,21.9556510525,0,10,1 -3023,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.4359374365304,21.6052873053578,1,18,1 -3025,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.53283919813111,19.7937250945802,0,11,1 -3027,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.74541763914749,20.1676040008787,0,7,1 -3028,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.4773284250405,23.3123006533104,0,10,1 -3033,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.3080369655509,22.485399455385,0,7,1 -3036,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.8452968725469,21.99189474338,0,6,1 -3037,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.70321465819143,18.3536369040537,0,9,1 -3042,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.1466292983387,20.2434270509362,0,8,1 -3043,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.0605773958378,23.9558765560794,1,11,1 -3045,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.2863585944287,24.0129469875942,1,11,1 -3046,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.1074531916529,24.99833481512,1,18,1 -3048,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.67288962192833,23.9260641229603,1,10,1 -3049,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.48707055673,22.8134759385661,0,9,1 -3053,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.86938150506467,26.5462015321746,1,14,1 -3058,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.4247079894412,23.660981198708,1,11,1 -3059,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.3837706514169,21.0494139223506,1,10,1 -3062,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.54595722001977,19.5184819555897,0,8,1 -3067,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.1260427734815,25.1829210813376,1,13,1 -3071,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.3146589815151,19.4781996649636,0,6,1 -3073,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.3735650754534,25.7218008803568,1,17,1 -3077,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.5863797608763,25.938671071006,1,17,1 -3080,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.2654922704678,20.1843253902051,0,10,1 -3082,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.50519789289683,26.4790019929989,1,15,1 -3090,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.54616976785474,18.2137252237341,0,8,1 -3092,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.98029277753085,21.4253456000731,0,5,1 -3095,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.78904749033973,21.3355812428796,0,8,1 -3096,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.71891279099509,27.8618117192487,1,17,1 -3100,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.98443529033102,25.4605039479931,0,16,1 -3101,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.0733877050225,21.279593496092,0,8,1 -3108,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.53091829945333,20.3725677544235,0,6,1 -3113,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.4480158039369,22.9944072899418,1,12,1 -3114,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.76677432772703,24.8190490248149,0,17,1 -3116,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.9587455606088,26.7338489491233,1,15,1 -3119,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.52082346170209,28.3813463163907,0,9,1 -3121,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.68103614333086,20.4855651376605,0,7,1 -3124,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.51948393532075,19.4405290844335,0,9,1 -3127,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.83135297801346,18.8078660253723,0,8,1 -3130,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.0486470558681,24.8650635289906,1,15,1 -3131,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.4618146596476,23.7963324063735,1,15,1 -3132,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.71527534909546,20.9063331844492,0,3,1 -3135,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.99541221535765,25.6674685052788,0,16,1 -3139,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.3515977535862,19.7140887823591,0,8,1 diff --git a/tests/testthat/data_files/CLUSTER/CLUSTER_INT1.rda b/tests/testthat/data_files/CLUSTER/CLUSTER_INT1.rda deleted file mode 100644 index 0a8e5b99..00000000 Binary files a/tests/testthat/data_files/CLUSTER/CLUSTER_INT1.rda and /dev/null differ diff --git a/tests/testthat/data_files/CLUSTER/CLUSTER_INT2.csv b/tests/testthat/data_files/CLUSTER/CLUSTER_INT2.csv deleted file mode 100644 index ea3aac03..00000000 --- a/tests/testthat/data_files/CLUSTER/CLUSTER_INT2.csv +++ /dev/null @@ -1,992 +0,0 @@ -"idPatient","idSurgery","trtGrp","intSurgery","nDoctors","idDoctor","intDoctor","nPatients","Male","age","BMI","diabetes","incid_rate","private" -5,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.1003947055433,27.5190571695183,1,9,0 -6,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.81999756325968,29.1239979869857,1,13,1 -9,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.3424182056915,33.565073044998,1,25,1 -11,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.95456171385013,27.5914784527901,1,22,1 -15,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,9.89949767687358,30.0942415516542,1,18,1 -19,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.2429514974356,30.5226051033695,1,29,1 -20,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,9.70670703984797,32.8163967176734,1,25,1 -26,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,9.55943063343875,31.8437463817589,1,25,1 -27,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.3655311574694,31.0136044255873,1,19,1 -29,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,9.6064810892567,31.8311777612241,1,29,1 -33,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.56330096232705,25.2807598154092,0,13,1 -40,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.88999801361933,25.5336037573946,1,15,1 -41,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.0072427017149,32.1336135109549,1,19,1 -42,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,9.98264858801849,30.6369904687869,1,18,1 -45,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,9.99531236477196,31.2139631022731,1,19,1 -48,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.4399986132048,24.213675838811,0,15,1 -50,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.0231699838769,30.7168980220974,1,27,1 -52,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,9.70051617338322,32.3124440085532,1,15,1 -53,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.4295487680938,27.2428796479072,1,16,1 -60,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.52668620483018,25.7268637400594,1,12,1 -64,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.4310577574652,32.0130034513423,1,16,1 -74,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.67572724027559,27.2752809465966,0,13,1 -78,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.4096378812101,29.0510663626899,1,15,1 -79,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.97697244747542,26.2836641511268,1,21,1 -81,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,9.77999488729984,31.3027487144125,1,21,1 -83,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.459793191636,35.1263256554618,1,23,1 -84,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.3196544386446,31.9616451451333,1,34,1 -86,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.60810148622841,25.9705534621651,1,13,1 -91,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.0698454522062,29.2196586629885,1,18,1 -98,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.1628929942381,29.1460176139848,1,16,1 -100,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.4013437961694,34.537432978251,1,26,1 -101,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.81264293729328,24.7869222410915,0,13,1 -104,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.2956245148089,28.5335330336576,1,17,1 -109,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,9.97125444258563,31.2157375158275,1,15,1 -111,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.2641464474145,27.5107225902732,1,18,1 -114,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,9.97547455341555,31.7191622434442,1,18,1 -115,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.4338970144745,28.7839484625966,1,14,1 -116,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.1422912282869,27.8659582433399,0,9,1 -118,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.4547296452802,33.2055245047932,1,32,1 -119,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.83160473243333,26.0455680844737,1,11,1 -121,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.1904619855341,28.0690867159672,1,11,1 -122,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,9.66422327957116,30.0833392358022,1,28,1 -123,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,9.85634997603483,30.6453281913994,1,22,1 -124,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.4262196661439,31.6138782822224,1,20,1 -126,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.96579058398493,27.7848469088151,1,12,1 -132,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.0336577342823,29.3088502037861,1,12,1 -133,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,9.64914007205516,31.4440758351534,1,23,1 -136,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.4737562134396,32.0881169075047,1,22,1 -140,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.86182175925933,24.7110210092765,1,15,1 -143,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.3577421666123,27.2899774209002,1,12,1 -154,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.2974110979121,26.919453742524,1,19,1 -162,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.0456300759688,30.3100482637542,1,36,1 -163,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.74539843667299,26.4851796743484,1,13,1 -165,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.93851192714646,27.5335046422725,1,20,1 -167,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.4387731354218,26.7108524240357,0,19,1 -172,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.64960876177065,32.2332398918304,1,33,1 -173,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.1211043151561,30.4650515842291,1,37,1 -174,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.72508330596611,32.5424244714492,1,19,1 -175,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.3509519507643,31.4557270674084,1,27,1 -178,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.0585230777506,28.7392620070258,1,21,1 -197,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.3541964427568,33.9729408543278,1,27,1 -202,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.87266428000294,33.5147718339906,1,25,1 -204,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.56922525702976,30.486605990966,1,32,1 -206,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.2238011707086,31.0916274875004,1,31,1 -208,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.69631026638672,30.7579546769381,1,29,1 -211,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.4256625270937,36.7441738153598,1,40,1 -212,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.0592653271742,32.8803617686214,1,22,1 -215,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.4703849530779,28.9393431220921,1,27,1 -217,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.98560349526815,32.8003489212211,1,23,1 -218,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.72036089887843,32.3463860835223,1,27,1 -219,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.83481920533814,35.7473846819869,1,40,1 -221,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.2530619720928,33.8247091474062,1,39,1 -223,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.78575701382942,31.0114798445244,1,31,1 -231,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.69677759683691,38.5442271071277,1,48,1 -239,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.74492625938728,35.9712872884728,1,36,1 -240,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.3623923573177,37.394615182866,1,42,1 -242,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.7846009361092,31.0811672833431,1,18,1 -245,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.95905656064861,37.3798244820007,1,45,1 -246,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.74604500783607,31.1084469493076,1,25,1 -249,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.65399575419724,37.9760601077927,1,36,1 -254,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.70299477130175,31.4333404707299,1,17,1 -258,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.3253182044718,33.4222489671183,1,34,1 -259,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.3447869499214,38.7216795783095,1,38,1 -260,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.80795099004172,33.319824120777,1,18,1 -265,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.4962514010258,30.027013353466,1,30,1 -273,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.0134102466982,32.145262316267,1,28,1 -278,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.81260507926345,35.2978060193299,1,46,1 -279,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.98920343909413,30.8635701021704,1,18,1 -280,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.2902624704875,28.6272646505399,1,23,1 -281,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.51531309029087,29.3120250105535,1,20,1 -287,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.76456436095759,35.3147264210802,1,32,1 -294,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.63904609763995,34.7795546119869,1,36,1 -298,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.8348682441283,30.7896850303806,1,26,1 -301,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.3671310669743,30.5460486279322,1,25,1 -302,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.2250109633896,28.7570716515556,1,20,1 -307,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.2334728781134,31.8367798624101,1,24,1 -313,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,10.078797780443,34.4089939026414,1,29,1 -318,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.95075456611812,31.9245157567082,1,38,1 -321,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.4991102451459,31.452870990975,1,27,1 -322,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.6993966398295,35.5021186473014,1,29,1 -325,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.1059970182832,26.5045470250174,1,24,1 -327,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,10.3612534992862,35.090734998185,1,29,1 -334,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.94064547331072,36.4386471403249,1,30,1 -336,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.3286107457243,29.7797550630816,1,24,1 -337,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,10.0822110127192,36.1503398953752,1,34,1 -341,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,10.292086424306,32.0806423350216,1,28,1 -344,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.64639889867976,36.7374698428058,1,40,1 -348,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.3643001762684,29.1285805510067,1,10,1 -351,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.62397242500447,35.376919164832,1,40,1 -352,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.291389946593,29.2725210031546,1,13,1 -356,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.1697307873983,33.5972198425763,1,12,1 -359,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.717057737289,30.8561761835036,1,15,1 -360,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.69451626506634,27.9545273320575,1,24,1 -361,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.56061337306164,33.0541899557553,1,35,1 -362,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.47041888698,29.3091465285474,1,24,1 -365,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.89436784107238,31.2468564930275,1,19,1 -366,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.75215599918738,29.8708773191116,1,17,1 -367,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,10.2966179067735,34.4503394338127,1,36,1 -369,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.64970052102581,29.7537774787318,1,14,1 -381,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.3906887199264,30.9337828276083,1,23,1 -382,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.2757241325453,30.0137829015035,1,22,1 -383,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.59792348719202,24.4217457897106,1,9,1 -385,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.2387596259359,31.8112240257482,1,26,1 -392,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.3267196221277,32.5947097454249,1,28,1 -393,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.0994895261247,27.4834178124402,1,13,1 -396,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.070326073328,27.6336865682759,1,11,1 -399,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.2209855078254,29.2963012182608,1,11,1 -402,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,9.78750227717683,34.1414401187476,1,18,1 -403,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.438778957352,34.9229402824738,1,26,1 -404,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.4531079612207,27.5943174800042,0,16,1 -410,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.3261412282009,30.5706880744949,1,20,1 -412,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.79270595451817,28.3672156117639,1,17,1 -419,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.84599243104458,26.3509690271531,1,17,1 -422,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.79174544871785,28.5842887919691,0,20,1 -425,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.3514593532309,30.7371514143831,1,34,1 -427,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.3363136826083,29.9488198916024,1,9,1 -430,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.3039104945492,28.5664667580103,1,20,1 -431,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,9.62145506776869,31.3092413858712,1,22,1 -432,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.4642085926607,26.4043990986979,1,19,1 -433,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.0367740765214,31.4241838994355,1,33,1 -437,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.0583671252243,33.6388012468516,1,26,1 -440,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.0553849532735,31.32014390282,1,28,1 -441,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.4196321428753,26.8374766775337,1,17,1 -443,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.4442769656889,34.8544166630712,1,26,1 -446,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.1659857647028,34.0238262552671,1,25,1 -449,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.0512770172209,29.7770913922111,1,10,1 -451,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.429919228889,33.7636782571819,1,33,1 -452,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,9.73236336908303,32.401158585839,1,23,1 -454,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,9.52465138211846,32.9314106623873,1,30,1 -455,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.74472771608271,27.4739865605574,1,19,1 -461,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.3109918383416,32.2576707194395,1,34,1 -466,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.3973579588346,27.317496834876,1,10,1 -469,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.3272886788473,30.0036706319463,1,18,1 -471,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,9.8438044290524,33.5956017725347,1,37,1 -475,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.71655583404936,30.6194586062653,1,10,1 -476,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,9.81746985972859,32.4355568911788,1,29,1 -477,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.0413980418816,32.8053493505957,1,26,1 -482,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.281935124658,28.5912792462746,1,21,1 -486,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.0195609028451,37.4944161148893,1,38,1 -492,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.76342721283436,29.2945158029398,1,22,1 -494,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.4644144715276,29.3855338948535,1,17,1 -495,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.90072924899869,30.1753353488893,1,26,1 -503,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.84878387278877,33.766150677474,1,30,1 -507,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.58482709084637,37.7029554396619,1,37,1 -515,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.1793447618838,29.3350545419047,1,8,1 -519,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.56147007388063,35.2917466048996,1,31,1 -520,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.58727594651282,32.2459930483479,1,19,1 -525,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.59343477943912,35.0124845426318,1,25,1 -529,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.90861582057551,29.8757751493993,1,17,1 -534,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.2189022826497,29.5064861159458,1,18,1 -535,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.89633322670124,31.2359538647026,0,20,1 -538,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.98131541814655,29.0513976568528,1,17,1 -539,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.69251771597192,29.0883066147289,1,14,1 -543,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.57470407127403,29.8884432896958,1,19,1 -545,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.4032824791502,29.5318209402312,1,23,1 -547,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.85087148938328,36.6170030727787,1,42,1 -549,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.2463229524437,29.4201411083791,1,28,1 -566,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.2009569318034,36.0231724177117,1,36,1 -569,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.75264227599837,33.8133556823943,1,34,1 -571,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.1712264677044,29.6659881271376,1,17,1 -576,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.68821265711449,38.1270740930444,1,35,1 -579,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.3891843594611,37.6294517420947,1,29,1 -580,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.9134272672236,37.0289995627516,1,35,1 -584,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.64937443961389,35.668271672521,1,53,1 -586,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.67131227976643,37.2117618576189,1,34,1 -589,1,1,2.37456968552376,7,7,1.71780943344135,91,0,9.8305907601025,32.2388918496833,1,26,1 -593,1,1,2.37456968552376,7,7,1.71780943344135,91,0,9.83392797200941,31.4385733210862,1,28,1 -596,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.52560617425479,37.7204914999169,1,46,1 -597,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.4672500842717,36.2664016941719,1,39,1 -598,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.83898513484746,37.3557980999611,1,40,1 -600,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.0219824172091,32.3182296100129,1,32,1 -601,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.0779234964866,33.5348700023762,1,21,1 -605,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.4599493783899,37.9067575665916,1,35,1 -606,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.84501146618277,37.2844027869784,1,44,1 -609,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.59255225304514,38.3313658042977,1,35,1 -610,1,1,2.37456968552376,7,7,1.71780943344135,91,0,9.67772273137234,31.1123742113639,1,27,1 -611,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.3203451526351,35.8850304620715,1,21,1 -612,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.58735200250521,32.653172463782,1,41,1 -614,1,1,2.37456968552376,7,7,1.71780943344135,91,0,9.61612079967745,31.4126937494516,1,21,1 -619,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.2244245782495,32.796221950258,1,25,1 -621,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.1892391967122,38.125283991719,1,42,1 -622,1,1,2.37456968552376,7,7,1.71780943344135,91,0,9.59927717712708,32.6573840429946,1,22,1 -628,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.0369931727182,34.2146463211715,1,21,1 -630,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.75347812962718,36.9515757280869,1,32,1 -635,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.1046941932291,30.6807058928902,1,20,1 -638,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.0104014351964,33.6070681351157,1,19,1 -643,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.73529913555831,35.7678334545829,1,42,1 -645,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.2276630457491,35.4019817485465,1,42,1 -647,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.1866414360702,34.5427326969217,1,26,1 -648,1,1,2.37456968552376,7,7,1.71780943344135,91,0,9.75884420541115,29.0332045698735,1,22,1 -655,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.0508231632411,37.4186128034283,1,42,1 -656,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.0945328827947,32.5582172564779,1,21,1 -659,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.78088355250657,39.2549140098967,1,34,1 -667,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,9.87503066589125,28.5623749495133,1,25,1 -668,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,10.439193935832,34.4712660629535,1,28,1 -671,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,9.55774488043971,34.0993204840236,1,27,1 -674,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,9.77061534044333,34.0061112164843,1,37,1 -680,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,9.53315729089081,35.5303031533303,1,31,1 -681,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,9.58422462642193,33.8764044541253,1,37,1 -690,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,9.50937522738241,33.1221227814715,1,31,1 -691,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,10.2510946763214,29.0484215940631,1,16,1 -697,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,10.3366728979163,28.5067971266087,1,18,1 -700,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,9.60221602674574,35.9477992712439,1,38,1 -702,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,10.3058289824985,36.1418571283362,1,23,1 -710,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,10.2036751699634,29.9123084376339,1,21,1 -713,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,9.94855186808854,36.0019194559041,1,43,1 -717,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,9.91917848493904,28.812589306236,1,16,1 -722,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,10.0688634121325,32.2917710568745,1,35,1 -724,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,10.0989298259374,31.6883715857204,1,36,1 -727,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,10.352814509999,31.0229807556096,1,14,1 -728,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,9.54228755133227,28.1472187687883,1,18,1 -729,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,9.92472235113382,31.5365130694846,1,29,1 -730,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.52239054651,23.8720254071303,1,5,1 -731,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.5320713527035,19.5419055586366,0,7,1 -736,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.93951331311837,26.4014059896241,1,10,1 -739,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.1874414761551,21.0457753940923,0,11,1 -742,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.2093774869572,19.0497245009478,0,10,1 -743,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.0232021913398,23.6990842500789,1,15,1 -746,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.2728231258225,25.4990926755335,1,12,1 -750,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.69213311956264,19.7229560224965,0,8,1 -753,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.94852537615225,25.0729878301131,0,11,1 -757,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.4163148726802,24.7535422473982,1,9,1 -768,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.65794882480986,19.5426203744624,0,6,1 -769,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.0307416396681,24.4906734549149,0,10,1 -770,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.3007053879555,25.4059557773422,0,15,1 -771,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.94275443721563,22.1922973598345,0,7,1 -773,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.1381001193076,24.3531889484582,1,10,1 -781,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.71910936688073,25.0179442283237,1,10,1 -782,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.98546007205732,24.7202392746847,1,11,1 -783,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.1812282954343,23.2070764945661,0,9,1 -788,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.7173832540866,20.8769937762709,0,9,1 -789,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.53606595122255,24.2808083165638,0,6,1 -792,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.2303386784624,19.8196338486236,0,8,1 -795,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.3856619114522,20.5549768937907,0,7,1 -797,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.76994357560761,23.6068777847752,1,10,1 -804,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.61055247555487,24.6349666860975,1,11,1 -805,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.0383709704038,19.6612676942434,0,11,1 -807,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.2251092405058,20.8297366297013,0,10,1 -810,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.82593542314135,21.9212351467897,0,7,1 -813,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.70547708356753,22.7020592766071,0,10,1 -814,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.78773619630374,17.3150457383809,0,7,1 -816,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.66588420048356,20.9170158413609,0,6,1 -820,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.86993086454459,24.2326308756652,0,5,1 -822,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.0767750677187,25.6432309377504,0,10,1 -823,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.0371307940222,25.7419999796038,1,15,1 -832,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.4902465792838,20.6739583323874,0,4,1 -834,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.82208818313666,19.9960756335909,0,7,1 -835,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.1291031742003,20.2925644515531,0,6,1 -836,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.270480415551,24.0860891366707,0,13,1 -844,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.67925464734435,21.0545876027787,0,8,1 -845,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.6940552953165,19.7328259789212,0,5,1 -848,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.3698618661147,23.2896119500562,0,18,1 -851,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.4342003746424,26.3041756231376,1,9,1 -854,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.0571812980343,21.9365814570069,0,12,1 -855,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,9.71784308948554,23.2849630842012,0,11,1 -857,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.4777923719957,23.8881407718463,0,11,1 -859,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.3079350274056,19.106867429764,0,3,1 -869,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.73336522770114,21.6201612283524,0,7,1 -875,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.1711336874869,19.9991854380045,0,9,1 -878,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.4313301057555,20.960660135092,0,13,1 -880,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.3830703655258,26.2794451334978,1,9,1 -883,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,9.78158568777144,27.179180839508,0,13,1 -892,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.5129204292316,18.6145512039957,0,6,1 -893,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,9.8739720992744,24.8403605116165,0,11,1 -894,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.0766235818155,26.3540306563508,1,10,1 -895,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.303273049416,25.6049059170865,1,13,1 -897,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.3801663073245,17.7632638666634,0,8,1 -903,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.2363300269935,21.4078688582075,0,7,1 -905,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.161492891144,25.7687495941247,0,13,1 -907,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.3965104818344,19.808781662756,0,9,1 -909,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.4821593589149,25.2921298231774,1,13,1 -911,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.0812198221684,23.2289872390123,1,14,1 -918,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,9.53726171306334,23.789130791147,1,16,1 -925,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.74537888169289,19.9895814585959,0,6,1 -928,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.97392543964088,17.9516667672489,0,7,1 -930,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.67435053503141,21.9678389944927,0,15,1 -931,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.4158203152474,21.7861112899623,0,2,1 -941,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.86051536048763,23.5262886573808,0,14,1 -942,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.86712914216332,16.1457991002284,0,8,1 -944,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.1977989107836,19.2315596040051,0,4,1 -946,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.69231757568195,21.7268825539955,0,8,1 -949,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.4199209942017,23.3833257899367,0,14,1 -951,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.77017286513001,22.7560271703116,0,9,1 -952,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.72207296313718,22.9326431862195,0,7,1 -955,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.55805918620899,22.3291262007397,0,10,1 -956,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.87926738895476,21.7195745210914,0,1,1 -957,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.4065299551003,23.9861680347404,0,10,1 -959,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.85181320435368,17.4704315688617,0,8,1 -961,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.4564290572889,27.0184362177281,0,7,1 -962,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.60098317544907,16.9612593206606,0,3,1 -971,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.4075774229132,24.066773413699,1,10,1 -972,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.8042793078348,16.9313424984105,0,4,1 -973,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.2235114641953,20.4824270666408,0,11,1 -974,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.86410202179104,22.4427058043947,0,15,1 -978,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.2689716203604,22.5217622916326,0,9,1 -981,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.94463958241977,22.4816956468573,0,10,1 -983,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.1601014970802,19.629679479742,0,1,1 -985,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.2820345682558,25.2884970855942,0,10,1 -997,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.2487479138654,23.8121639138615,0,16,1 -999,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.3311046336312,15.2444099059679,0,8,1 -1004,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.50641164067201,23.8426320205039,0,12,1 -1005,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.2039022070821,19.6395493877938,0,6,1 -1007,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.57403373508714,19.4706168335909,0,1,1 -1011,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.91299403295852,17.8665065144067,0,4,1 -1012,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.4811959636863,15.4802066603587,0,4,1 -1026,4,0,1.09615018600291,3,12,0.65067591921437,89,0,9.6255871958565,20.2674806237606,0,13,1 -1027,4,0,1.09615018600291,3,12,0.65067591921437,89,0,9.74297700938769,23.6696586261749,0,7,1 -1035,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.2196459311526,20.6927622648569,0,8,1 -1036,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.1864322014153,28.0135163602902,1,13,1 -1038,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.81878691492602,26.3388788373055,1,7,1 -1039,4,0,1.09615018600291,3,12,0.65067591921437,89,0,9.87711304239929,21.8149395326208,0,7,1 -1042,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.4676791194361,27.2398084435986,1,12,1 -1043,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.3916848273948,21.6145102291376,0,11,1 -1044,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.3925876361318,25.5512712020692,1,10,1 -1047,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.4468815778382,24.1286547103394,1,10,1 -1057,4,0,1.09615018600291,3,12,0.65067591921437,89,0,9.91500013926998,23.5457969296436,0,13,1 -1058,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.1297849800903,20.341357507148,0,9,1 -1065,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.2196427579038,19.2654893528475,0,9,1 -1069,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.033490601927,26.419680356628,0,11,1 -1070,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.77045681793243,28.1954867536222,0,15,1 -1071,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.0790963941254,27.6199191924282,0,12,1 -1073,4,0,1.09615018600291,3,12,0.65067591921437,89,0,9.90406029182486,25.3094981573521,0,6,1 -1081,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.0586763331667,22.2946215203554,0,7,1 -1083,4,0,1.09615018600291,3,12,0.65067591921437,89,0,9.60503446008079,20.641665993193,0,15,1 -1088,4,0,1.09615018600291,3,12,0.65067591921437,89,0,9.79889817396179,18.9217803141297,0,6,1 -1094,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.5023385186214,26.5412639243467,1,13,1 -1096,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.2424542666413,24.0819371695837,0,12,1 -1097,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.0629288819619,20.7603674764015,0,6,1 -1100,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.69670849619433,28.0619543648143,1,14,1 -1103,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.2821403783746,26.5133589324975,1,17,1 -1105,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.9278414293658,26.8682394511641,1,23,1 -1106,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.5377063176129,19.9484323807111,0,7,1 -1108,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.7460666873958,26.3932529827181,1,15,1 -1111,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.1812974163331,25.0573825472008,0,10,1 -1112,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.2851418762002,23.3976424555599,1,14,1 -1123,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.4220873261802,22.6897423642272,0,10,1 -1124,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.0754785807803,24.7504665811904,1,15,1 -1127,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.2879146120977,24.7849521952326,1,13,1 -1130,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.63388362922706,23.9462037051659,1,12,1 -1135,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.55036072153598,18.6431273377535,0,5,1 -1136,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.4870777949691,25.0707678191664,0,9,1 -1139,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.0810977069195,25.3868988256545,0,14,1 -1140,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.1983861788176,27.3159300789518,1,13,1 -1143,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.77846233802848,19.2100517172939,0,4,1 -1149,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.65049281786196,20.0397517628736,0,3,1 -1155,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.96871377294883,19.3950397825864,0,10,1 -1157,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.2304522804916,21.7132434212475,0,10,1 -1158,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.1039375329856,26.2222893043702,0,7,1 -1161,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.3704530687537,23.5879579402511,1,12,1 -1162,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.85337107256055,18.6388152332056,0,7,1 -1164,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.4650476109236,20.9557373038971,0,10,1 -1168,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.4483552551828,18.6338951494808,0,3,1 -1169,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.0893388944678,18.4904303877465,0,9,1 -1170,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.2012869243044,23.8239282314066,1,16,1 -1177,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.4990013972856,20.6957698970959,0,9,1 -1179,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.50436104182154,18.0894646950246,0,7,1 -1181,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.4335934354458,21.1105814446891,0,8,1 -1183,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.4942009651568,25.1826949232184,1,14,1 -1187,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.3370403433219,26.845996402397,1,8,1 -1188,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.52272717142478,26.611144007844,1,14,1 -1189,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.85370529140346,24.1917213125969,1,11,1 -1191,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.3742389003746,26.4460709910016,1,5,1 -1200,4,0,1.09615018600291,3,14,0.64410374127223,91,1,10.0632184327114,24.3250277624785,0,13,1 -1201,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.64299312629737,21.4980143881679,0,7,1 -1202,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.81044100783765,23.1386505741373,0,16,1 -1203,4,0,1.09615018600291,3,14,0.64410374127223,91,1,10.4192340811715,29.972639917691,1,11,1 -1208,4,0,1.09615018600291,3,14,0.64410374127223,91,1,9.98562425025739,25.9811507559339,0,25,1 -1210,4,0,1.09615018600291,3,14,0.64410374127223,91,1,9.63509695604444,27.0554879968577,1,16,1 -1214,4,0,1.09615018600291,3,14,0.64410374127223,91,1,10.1775423411746,27.4483279350637,1,10,1 -1216,4,0,1.09615018600291,3,14,0.64410374127223,91,1,9.86980741447769,25.893959120719,0,17,1 -1218,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.3656720700674,22.3950143045909,0,11,1 -1222,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.1312601747923,18.187608759499,0,9,1 -1223,4,0,1.09615018600291,3,14,0.64410374127223,91,1,9.79647773853503,28.7392221996893,1,12,1 -1227,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.90114897955209,22.5925047057278,0,13,1 -1230,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.65265097445808,20.1494103716875,0,8,1 -1236,4,0,1.09615018600291,3,14,0.64410374127223,91,1,9.8794135870412,25.634643044443,1,15,1 -1237,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.2886823934969,23.709705358669,0,20,1 -1238,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.96659456496127,25.6226555910488,0,17,1 -1239,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.97932471032254,21.3154734578843,0,8,1 -1242,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.2437701621093,23.041466300061,0,13,1 -1247,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.2272963239811,22.3054713405424,0,8,1 -1257,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.52366975741461,21.8687027294388,0,11,1 -1259,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.56201497791335,21.9532895190279,0,4,1 -1265,4,0,1.09615018600291,3,14,0.64410374127223,91,1,9.77087842812762,29.8448979376159,1,16,1 -1266,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.0660162908025,22.8196357298862,0,9,1 -1268,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.3474423687439,22.6450008692339,0,11,1 -1270,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.1565952003002,24.1278882093428,0,11,1 -1274,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.4535395153798,23.7259556505112,0,14,1 -1280,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.1511815115809,24.5168830741209,0,10,1 -1282,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.1002516411245,23.248629720822,0,12,1 -1286,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.2046425843146,21.518807209473,0,5,1 -1288,5,1,0.700213275570883,5,15,0.996790521575935,63,1,9.59854504675604,35.1332943058823,1,42,1 -1290,5,1,0.700213275570883,5,15,0.996790521575935,63,1,9.61018516169861,34.6377177400858,1,28,1 -1297,5,1,0.700213275570883,5,15,0.996790521575935,63,1,10.1214640939143,36.83270208448,1,32,1 -1298,5,1,0.700213275570883,5,15,0.996790521575935,63,1,10.4522102104966,33.0418186744979,1,34,1 -1300,5,1,0.700213275570883,5,15,0.996790521575935,63,1,9.79816086613573,34.0111008114191,1,38,1 -1303,5,1,0.700213275570883,5,15,0.996790521575935,63,0,9.93459614505991,30.8254504080211,1,15,1 -1310,5,1,0.700213275570883,5,15,0.996790521575935,63,1,9.88692808756605,35.7004707042313,1,31,1 -1315,5,1,0.700213275570883,5,15,0.996790521575935,63,1,9.66916132578626,34.6575164276418,1,29,1 -1318,5,1,0.700213275570883,5,15,0.996790521575935,63,0,9.74748145230114,30.4399099908819,1,15,1 -1320,5,1,0.700213275570883,5,15,0.996790521575935,63,1,9.65268242917955,34.9381929198625,1,29,1 -1322,5,1,0.700213275570883,5,15,0.996790521575935,63,0,10.4034696286544,27.5963363740097,1,19,1 -1325,5,1,0.700213275570883,5,15,0.996790521575935,63,1,10.0882829898037,34.751710911294,1,34,1 -1330,5,1,0.700213275570883,5,15,0.996790521575935,63,1,10.1024474794976,35.1377523313815,1,40,1 -1331,5,1,0.700213275570883,5,15,0.996790521575935,63,0,10.1093943938613,28.2297337040853,1,16,1 -1335,5,1,0.700213275570883,5,15,0.996790521575935,63,1,9.80450383084826,36.4445120978398,1,32,1 -1336,5,1,0.700213275570883,5,15,0.996790521575935,63,0,9.69871990941465,29.3828077519276,1,16,1 -1339,5,1,0.700213275570883,5,15,0.996790521575935,63,0,10.1289516226389,31.4390961126312,1,24,1 -1340,5,1,0.700213275570883,5,15,0.996790521575935,63,0,9.98498903121799,29.6028967047248,1,25,1 -1344,5,1,0.700213275570883,5,15,0.996790521575935,63,1,10.1244633591268,36.9541246088901,1,43,1 -1345,5,1,0.700213275570883,5,15,0.996790521575935,63,0,10.2675124576781,30.9563720130722,1,13,1 -1350,5,1,0.700213275570883,5,15,0.996790521575935,63,1,9.82533871824853,34.3832646564124,1,33,1 -1358,5,1,0.700213275570883,5,16,1.46385743923002,86,0,9.77833113516681,32.2155413055511,1,27,1 -1359,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.2880692952313,32.3271342462217,1,22,1 -1361,5,1,0.700213275570883,5,16,1.46385743923002,86,1,9.71805125917308,38.4092075449931,1,37,1 -1364,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.1290460175369,29.6062591384828,1,25,1 -1366,5,1,0.700213275570883,5,16,1.46385743923002,86,1,9.88303773943335,33.3913616529859,1,36,1 -1374,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.3404038040899,30.2937076511713,1,21,1 -1375,5,1,0.700213275570883,5,16,1.46385743923002,86,1,9.52957504731603,33.1862148017161,1,29,1 -1377,5,1,0.700213275570883,5,16,1.46385743923002,86,1,9.9659914218355,33.6056268269969,1,40,1 -1379,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.2452853342984,34.3156405747436,1,36,1 -1388,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.4877978940494,35.7926099031566,1,28,1 -1390,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.424589086324,30.2732362669914,1,18,1 -1394,5,1,0.700213275570883,5,16,1.46385743923002,86,1,9.87418405432254,35.5858954972832,1,37,1 -1396,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.4672386387829,34.9681109690068,1,26,1 -1397,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.0200395074207,30.9858087136072,1,26,1 -1399,5,1,0.700213275570883,5,16,1.46385743923002,86,0,9.72704178420827,32.1539637142709,1,8,1 -1400,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.1564496788196,37.1843244209618,1,33,1 -1401,5,1,0.700213275570883,5,16,1.46385743923002,86,0,9.76291493955068,31.2564683605087,1,19,1 -1403,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.1528728494886,35.5835127517875,1,20,1 -1407,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.051345575368,29.3843667523734,1,11,1 -1410,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.0680171332788,34.6188495650561,1,32,1 -1412,5,1,0.700213275570883,5,16,1.46385743923002,86,1,9.50783391855657,36.2096603828337,1,39,1 -1416,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.2602775231935,35.736533880217,1,30,1 -1419,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.4451008986216,34.3066236975971,1,35,1 -1421,5,1,0.700213275570883,5,16,1.46385743923002,86,0,9.80430287728086,31.9984095903059,1,22,1 -1422,5,1,0.700213275570883,5,16,1.46385743923002,86,0,9.55627156258561,30.8554939388195,1,21,1 -1425,5,1,0.700213275570883,5,16,1.46385743923002,86,0,9.92913626460359,30.9306670774746,1,12,1 -1435,5,1,0.700213275570883,5,16,1.46385743923002,86,0,9.93023830279708,31.0233623107098,1,19,1 -1441,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.1983278722037,25.9167839940885,1,16,1 -1444,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.83812664472498,26.7189132199546,1,25,1 -1445,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.73788497364148,33.9362509009746,1,24,1 -1446,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.97909448691644,27.1107180095458,1,19,1 -1447,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.1849572458304,33.2777460683235,1,21,1 -1449,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.62545332941227,33.1327159137912,1,18,1 -1452,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.87798721343279,26.7578923172765,1,21,1 -1454,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.64552911929786,28.3406633087356,1,17,1 -1461,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.0999469871167,32.4541828680215,1,31,1 -1462,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.0151230441406,28.2842079911864,1,15,1 -1463,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.0191284613684,25.4961561082479,1,25,1 -1465,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.4158012401313,32.459109568466,1,29,1 -1466,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.85882211080752,29.0477074664187,1,23,1 -1469,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.99001474259421,34.3211671868738,1,32,1 -1473,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.87564834626392,27.8773476387312,0,18,1 -1476,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.63677730155177,28.3776632366958,1,13,1 -1479,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.2338138674386,32.3981811210165,1,27,1 -1484,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.78370491787791,33.5560838235447,1,24,1 -1486,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.2832372919656,31.3068876448029,1,33,1 -1490,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.77423373586498,33.0004681065304,1,28,1 -1494,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.61687254416756,26.9778421511053,1,15,1 -1495,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.1322635542601,29.5981838655804,1,17,1 -1496,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.421565014869,27.2489945885643,1,18,1 -1497,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.4855452964548,30.227795681048,1,15,1 -1505,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.3590806433931,25.2396124331981,1,20,1 -1507,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.4935965237673,27.0254198514949,1,15,1 -1510,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.55223936541006,25.6853902028545,1,13,1 -1511,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.4839287949726,27.4633293672983,1,8,1 -1513,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.21957361768,28.3693274378131,1,12,1 -1517,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.71653901762329,24.9110586654702,1,10,1 -1519,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.3681289940141,28.164683497464,1,18,1 -1522,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.2236824522261,26.3312118303386,1,8,1 -1523,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.018756282283,28.8509049654206,0,16,1 -1525,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.52300359285437,26.8505147147998,1,18,1 -1527,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.95296489843167,33.1586697472661,1,21,1 -1539,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.9872715047095,30.0324352120371,1,15,1 -1545,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.64169377880171,32.4962978440823,1,37,1 -1548,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.1470477965195,27.4147260415376,1,19,1 -1551,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.72334884596057,26.9912418245054,1,18,1 -1553,5,1,0.700213275570883,5,18,0.714114383757768,99,1,10.4728642681148,32.902039088445,1,31,1 -1554,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.63543093693443,34.3011207313963,1,25,1 -1555,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.2300041511189,30.4725092025647,1,23,1 -1558,5,1,0.700213275570883,5,18,0.714114383757768,99,1,10.1648791013286,33.3203280712501,1,26,1 -1559,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.82612667838112,30.0992021277625,1,21,1 -1560,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.88853908819146,32.8874699282429,1,29,1 -1561,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.55559909762815,35.4180751445453,1,39,1 -1570,5,1,0.700213275570883,5,18,0.714114383757768,99,1,10.4001792282797,36.3265502851372,1,28,1 -1575,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.0905642497819,26.0077111904358,1,13,1 -1577,5,1,0.700213275570883,5,18,0.714114383757768,99,1,10.1810883220751,34.3103175004569,1,34,1 -1581,5,1,0.700213275570883,5,18,0.714114383757768,99,1,10.4190975744277,34.8361754602289,1,30,1 -1583,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.2937991458457,29.0285428858552,1,17,1 -1587,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.89801185834222,33.2044607427479,1,34,1 -1589,5,1,0.700213275570883,5,18,0.714114383757768,99,1,10.3845443848986,33.8582409123102,1,26,1 -1590,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.57267535594292,27.9926348261944,1,19,1 -1596,5,1,0.700213275570883,5,18,0.714114383757768,99,1,10.0015803368296,35.6393382411319,1,29,1 -1597,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.99246468744241,33.0218567778742,1,25,1 -1600,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.2563136713579,28.5532968395418,1,16,1 -1602,5,1,0.700213275570883,5,18,0.714114383757768,99,1,10.4259564424865,32.1233236390987,1,30,1 -1605,5,1,0.700213275570883,5,18,0.714114383757768,99,1,10.2223410210572,34.6518510542909,1,35,1 -1607,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.8950055881869,28.9626897008545,1,17,1 -1610,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.1358182989061,28.6106674437062,1,21,1 -1611,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.96806479990482,28.7581153434161,1,15,1 -1612,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.76478749583475,37.9445853285398,1,33,1 -1618,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.98615713370964,35.001220194422,1,34,1 -1627,5,1,0.700213275570883,5,18,0.714114383757768,99,1,10.021900259424,34.029013122234,1,30,1 -1633,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,10.2238141212147,23.8256159634601,1,10,1 -1643,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.0772745094728,33.0762367903318,1,21,1 -1645,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,9.56142573989928,25.864323583067,1,12,1 -1649,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,9.78923495067284,26.4994441541568,1,20,1 -1657,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.3943863317836,31.9054491965777,1,33,1 -1658,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.99754494428635,29.4506565349703,1,24,1 -1659,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,10.1415032949299,28.3996292501214,1,14,1 -1661,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.85305383312516,30.6095882933539,1,31,1 -1665,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.0391770678107,29.6459300995296,1,15,1 -1668,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.1751186999027,31.9548966886063,1,31,1 -1670,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.4207378553692,31.0204617593004,1,24,1 -1673,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.4817511921283,33.2931417384426,1,20,1 -1675,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,9.63185629574582,25.2282113470325,1,12,1 -1686,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.65521721611731,31.3807189188311,1,25,1 -1687,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.2042662913445,30.5826254161613,1,22,1 -1689,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.143763398286,31.1025709747305,1,21,1 -1692,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,9.56454432732426,27.206532818868,0,10,1 -1704,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.65984405996278,31.1741524729245,1,21,1 -1705,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.99798626708798,31.525802675608,1,21,1 -1706,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.1983538700733,30.0005181070036,1,27,1 -1709,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,10.0611371251289,24.9590000200752,1,13,1 -1711,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.83607999188825,32.0646198034278,1,25,1 -1715,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.93799453251995,33.1451891550969,1,19,1 -1721,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.4909112062305,27.9158857140494,1,13,1 -1722,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.1909494560678,30.144626741628,1,25,1 -1723,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.55380104063079,31.5537822479895,1,27,1 -1725,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.0609526997432,32.7081450467841,1,22,1 -1726,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.99818835360929,29.5999892179452,1,23,1 -1727,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.3410594675224,30.8574015559608,1,26,1 -1729,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.69891067384742,30.4778770549901,1,26,1 -1731,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.4872989258729,29.1019528874936,1,15,1 -1732,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.2220363814849,30.1882879538182,1,24,1 -1741,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,9.71965678595006,25.0633564338508,1,15,1 -1745,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,9.66015376360156,26.7805923873859,1,13,1 -1747,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.4886441791896,28.0810337368805,1,10,1 -1748,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.0614957876969,26.3867694680424,0,13,1 -1749,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.90235686278902,33.2814090384,1,24,1 -1754,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.1999548564199,33.8515696291005,1,22,1 -1760,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.1939955991693,26.2735742215149,0,11,1 -1768,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.4773575284053,33.4346129516085,1,27,1 -1772,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.1306291946676,32.2437645344168,1,26,1 -1773,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.2995305205695,25.3516840940154,1,10,1 -1775,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.7112512155436,29.9744591893902,1,25,1 -1777,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.0879705476109,31.3864064610975,1,26,1 -1778,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,9.65554683236405,27.7029920010896,1,17,1 -1780,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.0256918275263,27.7947219654757,1,16,1 -1781,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.1998813073151,32.2233159945028,1,28,1 -1785,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.61620812304318,31.1421704787313,1,23,1 -1786,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.86250691465102,31.0773975309157,1,18,1 -1788,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.1355506710242,25.5789483640402,1,9,1 -1790,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.50233511487022,32.5968310330858,1,18,1 -1791,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.3250259873457,27.4053736714906,1,16,1 -1795,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.63089200109243,31.5094429077471,1,25,1 -1802,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.54595656343736,28.4594124526619,1,23,1 -1803,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.1606633679476,26.80628093295,1,20,1 -1805,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.71095514972694,19.8072808177465,0,9,1 -1806,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.76338516781107,21.5505484945207,0,8,1 -1810,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.94862202228978,20.364832145292,0,8,1 -1812,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.61981755588204,23.2860581973722,0,4,1 -1813,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.4689944109414,24.0084373156255,0,21,1 -1814,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.53539522318169,20.4622259386444,0,10,1 -1815,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.9086973615922,25.8069707759918,1,14,1 -1816,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.4830102019478,28.1794208795822,1,14,1 -1817,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.3454619508702,27.6646628232166,1,10,1 -1821,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.90221240976825,21.5592934082351,0,11,1 -1823,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.412983116461,21.4179208487584,0,10,1 -1833,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.58503105398268,21.9953419507948,0,2,1 -1835,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.77188727050088,25.5362628696852,1,5,1 -1837,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.85933079058304,29.6485729982438,1,17,1 -1846,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.1970312211197,20.1850282366598,0,6,1 -1847,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.0976257170551,21.5684258603257,0,3,1 -1852,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.86578262550756,25.6899693410152,1,20,1 -1855,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.413951203227,27.1623086146332,1,15,1 -1860,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.83705721981823,21.9874868097096,0,6,1 -1861,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.2033630309161,21.8583823248034,1,6,1 -1864,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.0451847813092,27.230692069963,1,13,1 -1869,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.3992815022357,24.6652303291444,1,21,1 -1874,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.2074748822488,21.2420523500692,0,7,1 -1887,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.92497081751935,19.3351384893396,0,8,1 -1895,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.4074906362221,19.9761739994972,0,9,1 -1899,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.83058357564732,19.7669014701546,0,9,1 -1904,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.97696457989514,18.8035809620447,0,5,1 -1908,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.7631575143896,25.1068878907518,0,10,1 -1914,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.4050554425921,20.2282732217218,0,8,1 -1920,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.0918570933864,21.381854748355,0,13,1 -1923,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.95770478644408,21.1795101117464,0,4,1 -1924,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.90446141920984,22.1718233461528,0,11,1 -1929,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.4167936830781,24.8791844789711,0,6,1 -1934,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.78472173865885,25.1099375293386,0,10,1 -1936,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.0764099888038,22.6472048652607,0,13,1 -1938,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.2328144067433,27.9884408377227,0,13,1 -1940,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.95730896946043,18.7163128129487,0,16,1 -1942,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.95062758703716,21.8440324552307,0,6,1 -1950,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.4962315864395,19.7283035990186,0,10,1 -1957,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.0186243846547,19.1458518085214,0,8,1 -1963,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.2011338360608,25.590411435756,1,3,1 -1964,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.3277538639959,20.9849644119109,0,5,1 -1973,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.89509756281041,23.0731548071711,1,10,1 -1976,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.0463951909915,26.0262263295856,0,10,1 -1978,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.0761548257433,26.7646344709624,0,14,1 -1985,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.57854279736057,20.2042540606301,0,11,1 -2002,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.9047700597439,27.0727122003983,1,19,1 -2007,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.90644320449792,28.8628915820915,1,14,1 -2010,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.500688187778,29.2009081932114,1,10,1 -2013,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.4571409248747,27.5134745902726,1,14,1 -2018,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.1132918586954,21.2687415386232,0,9,1 -2021,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.4351021072362,23.8400083542621,0,11,1 -2022,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.3212573553901,23.0499163400202,0,11,1 -2023,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.2141987443902,24.7271238394293,0,12,1 -2028,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.90766996052116,28.5206785384229,1,16,1 -2037,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.77148976270109,24.0187131056462,0,12,1 -2039,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.6354165552184,21.8791124829216,0,11,1 -2043,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.4035883056931,27.4820456899952,1,18,1 -2050,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.3261770489626,27.2261960684495,1,13,1 -2051,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.0714289925527,23.601214569886,0,7,1 -2056,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.61426873807795,22.4259891116079,0,6,1 -2058,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.1548123252578,29.2239178803744,1,22,1 -2060,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.0178493394051,22.3693234951977,0,9,1 -2061,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.70842453488149,20.3194062190473,0,7,1 -2063,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.3990479290951,29.2422867152389,1,15,1 -2064,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.2741316503379,21.3975734320572,0,11,1 -2065,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.66623507882468,22.2285467581586,1,14,1 -2067,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.070358562516,20.8242011897401,0,3,1 -2071,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.2970306293573,21.2073987904445,0,8,1 -2074,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.52476631244645,24.1802517503797,0,9,1 -2075,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.0556879029609,28.6782576453087,1,22,1 -2076,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.2723513573874,23.2422491483079,0,13,1 -2080,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.199920227984,24.1010164216806,1,11,1 -2084,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.98095127404667,28.5238081337374,1,11,1 -2092,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.1350200800225,21.4001372660911,0,12,1 -2093,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.0061917535495,29.662494589124,1,21,1 -2094,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.4847659494262,23.7540851075296,0,7,1 -2099,7,0,2.61803289632224,8,24,0.291326014233072,87,0,9.61094021820463,23.0258722007268,0,9,1 -2100,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.3221763940528,26.9439339131282,1,23,1 -2101,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.353298967937,28.0895302311158,1,21,1 -2102,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.2783898441121,27.4792871080408,1,15,1 -2103,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.4973232364282,28.9035092189247,1,16,1 -2104,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.098222196335,26.4039870652767,1,15,1 -2105,7,0,2.61803289632224,8,24,0.291326014233072,87,0,9.85725490935147,21.2987194937021,0,10,1 -2109,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.50280081643723,29.3675723426898,1,17,1 -2110,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.2551175667904,21.7719650074914,0,10,1 -2120,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.1559472626541,29.590178471635,1,17,1 -2121,7,0,2.61803289632224,8,24,0.291326014233072,87,0,9.87101601692848,21.9587419952151,0,14,1 -2123,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.3437317025382,21.6757249074287,0,11,1 -2125,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.3167548715137,22.6586931367194,0,6,1 -2130,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.4606382681523,27.4276272133778,1,16,1 -2131,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.51144989719614,26.9218116698158,1,24,1 -2133,7,0,2.61803289632224,8,24,0.291326014233072,87,0,9.8920666242484,21.19055044938,0,7,1 -2142,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.75771095929667,24.9238755820158,1,18,1 -2143,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.3472683476284,25.4960162477499,1,19,1 -2147,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.2923371053766,25.9012858222036,1,23,1 -2149,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.80407038959675,26.2139414809624,1,18,1 -2152,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.8389019810129,27.6328194953093,1,18,1 -2153,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.2480709301308,23.3409126107362,0,11,1 -2161,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.62248444301076,28.261978328685,1,20,1 -2163,7,0,2.61803289632224,8,24,0.291326014233072,87,0,9.64640464168042,21.9195781930052,0,15,1 -2166,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.0554766575806,27.0376190016782,1,16,1 -2169,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.3257960311603,27.6354885101031,1,11,1 -2173,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.81260131043382,25.5963397161907,1,16,1 -2174,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.6893720657099,26.2445832439187,1,12,1 -2180,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.54613897367381,20.6123591195743,0,10,1 -2183,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,10.042548448313,22.455699599188,0,5,1 -2189,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.91757471673191,25.6590151093845,1,20,1 -2191,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.8467460735701,29.1722174288574,1,17,1 -2192,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.95503079518676,28.2933301648106,0,17,1 -2195,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.51990568940528,23.1961757331361,0,11,1 -2197,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,10.1101546389982,20.4157975516403,0,9,1 -2198,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.88998005236499,20.6254645424056,0,10,1 -2200,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,10.4411158366129,20.8218315250198,0,9,1 -2207,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.97404651739635,29.7399870804307,1,17,1 -2211,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,10.2061647174414,19.516457816739,0,10,1 -2212,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.4107900937088,24.9067972775722,1,21,1 -2213,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.93961563543417,27.2695734543016,1,14,1 -2214,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.83601577184163,22.0715253580073,0,11,1 -2220,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.0869675318245,28.4997109948997,1,16,1 -2222,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.86479442683049,24.8927760733944,1,20,1 -2228,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,10.4376524200197,21.5060353610483,0,7,1 -2229,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,10.0919335389044,24.6833464390186,0,9,1 -2230,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,10.2531791711226,20.6962812630635,0,7,1 -2234,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.95056536048651,26.7279000631005,1,13,1 -2238,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.51842747908086,21.4296479176702,0,5,1 -2249,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.85075411153957,24.3668957666105,1,11,1 -2250,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.1816566914786,26.0986705591797,1,13,1 -2256,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.7143415028695,22.7434793661807,0,4,1 -2259,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,10.4768765324261,21.0430576184916,0,17,1 -2260,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.2633731949609,26.1480307979798,1,14,1 -2261,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.87183384201489,28.0634609939842,1,9,1 -2263,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.60624779574573,27.2508249810436,0,16,1 -2264,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.84673723834567,27.2085532916869,1,11,1 -2265,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.5118977681268,21.9106288838314,0,7,1 -2272,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.63536716671661,23.1852475253925,1,10,1 -2275,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.1798327427823,30.3377834734035,1,22,1 -2276,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.50341533799656,27.6835635671985,1,14,1 -2277,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.50855986238457,21.7624904031825,0,12,1 -2278,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.4218955370598,25.0404464270152,0,10,1 -2290,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.65636762371287,22.4400716883544,0,12,1 -2292,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.79640216077678,29.8286101705894,0,8,1 -2300,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.65706047578715,24.4141851902138,0,20,1 -2301,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.99977078684606,31.6841475678913,1,29,1 -2304,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.4218171664979,28.8367392757085,1,20,1 -2311,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.4889870404731,30.0305454135553,1,23,1 -2315,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.394560959423,24.6061910947505,1,6,1 -2318,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.995665053837,23.7447882039053,0,13,1 -2325,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.71376576437615,24.0899247436616,0,11,1 -2329,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.69417272228748,27.6185506300363,1,24,1 -2331,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.83204140327871,31.8328268205221,1,16,1 -2334,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.4862264350522,29.4407484843291,1,20,1 -2340,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.1082882410847,21.8814230996935,0,7,1 -2343,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.93355033034459,21.7149751157576,1,4,1 -2345,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.86413660272956,29.3477717982633,1,18,1 -2347,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.1093256573658,23.1177576997758,1,5,1 -2349,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.0259592223447,23.718080287984,1,16,1 -2351,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.273326872848,24.3989444700022,0,8,1 -2360,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.437100306619,22.1557525197885,0,11,1 -2362,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.81621623598039,24.5935095104767,0,11,1 -2365,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.026616824558,22.125174516682,0,13,1 -2372,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.75661067501642,29.2029033111818,1,18,1 -2374,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.0484220117796,30.7482731965089,1,17,1 -2377,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.97630406171083,26.4335525191143,1,14,1 -2378,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.72494618943892,21.3458442863934,0,13,1 -2388,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.66464701341465,22.2550407922632,0,11,1 -2389,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.1403944727499,28.4253787368405,0,10,1 -2396,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,10.1080201028381,21.0005689296155,0,11,1 -2397,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.97131153941154,20.4167417536268,0,10,1 -2403,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.70902460208163,29.0363636735517,1,11,1 -2405,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.0419984650798,25.5500718439348,1,12,1 -2407,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,10.007350001717,21.6835881719565,0,9,1 -2412,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.99207841046154,27.396880375493,1,16,1 -2414,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.2309062744025,27.7688078457398,1,10,1 -2422,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.3814503704198,26.5591397228997,1,20,1 -2425,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.1081268296111,24.0225011985264,1,19,1 -2429,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.327708736062,28.0115488894939,1,14,1 -2431,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.1757728753146,29.0145214893533,0,15,1 -2434,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.79067392717116,19.2937698826311,0,8,1 -2437,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.1342295152135,27.9290308173327,1,14,1 -2439,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,10.202883993974,19.5937727008947,0,6,1 -2440,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.53517502499744,22.3901377574565,0,6,1 -2441,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.3924155973364,26.9274133510167,1,22,1 -2445,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.76843136479147,25.0200202328066,1,14,1 -2448,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.0461545276921,25.9422738368041,1,13,1 -2453,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,10.3563192854635,21.2021794316155,0,4,1 -2454,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.4978905920871,25.4532551006842,1,13,1 -2455,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.50451109139249,23.8896652777523,1,14,1 -2457,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,10.3958756343927,19.8340764204439,0,6,1 -2460,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.63396517629735,18.1331893318043,0,13,1 -2462,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.52280998858623,20.7997977763568,0,4,1 -2463,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.82430688105524,26.7817123452464,1,13,1 -2464,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.0599026896525,24.3986635914758,1,19,1 -2466,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.4825263260864,22.1580609440027,0,12,1 -2469,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.3282221537083,24.4961776126134,0,18,1 -2473,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.78728918661363,18.058509174661,0,3,1 -2475,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.7930369945243,19.012850574939,0,7,1 -2477,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.2101987204514,26.8266071352775,0,15,1 -2485,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.1043126855511,23.0462400421104,1,14,1 -2488,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.3630897670519,20.5208091962145,0,7,1 -2497,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.67656797496602,21.0376301329648,0,13,1 -2499,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.4995642553549,25.7477945153327,0,19,1 -2503,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.7012024349533,21.7856268127835,0,14,1 -2504,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.63695537019521,28.1494132107908,1,12,1 -2506,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.1664676519576,19.2076744339917,0,10,1 -2508,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.3316106924322,26.9862523263117,0,11,1 -2511,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.200046072714,22.923614015745,1,15,1 -2514,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.98201929219067,19.3025221617617,0,7,1 -2516,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.78044549608603,18.955797050825,0,10,1 -2517,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.64334035199136,19.5291438705945,0,5,1 -2518,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.1710676772054,24.6656969516441,1,17,1 -2526,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.3570570268203,19.0348515844741,0,8,1 -2528,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.132090769941,25.912946000412,0,10,1 -2530,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.67013151827268,21.0166935123034,0,9,1 -2533,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.1420114433859,18.4147928126025,0,6,1 -2534,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.79179489868693,21.7249192171459,0,13,1 -2535,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.08766662376,19.2980619750865,0,14,1 -2536,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.0411121768411,19.0471313986801,0,7,1 -2537,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.90605363063514,20.8356535124519,0,8,1 -2541,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.0963424155489,24.0931933929458,1,6,1 -2543,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.131998060504,20.8351578453095,0,7,1 -2544,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.5772529290989,26.4379173696794,0,11,1 -2551,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.60197953088209,20.3066554103625,0,9,1 -2552,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.2113090329804,20.5557723323657,0,10,1 -2553,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.57913872925565,28.0018599928717,0,12,1 -2556,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.52436576876789,20.9237087397274,0,11,1 -2557,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.2012801968958,21.9158033875261,0,7,1 -2558,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.59267459041439,22.0474863148666,0,8,1 -2561,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.71530184266157,24.8047696043999,1,13,1 -2564,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,10.0823561602738,24.9452407593139,1,12,1 -2565,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.82717808964662,18.5550766477777,0,14,1 -2566,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,10.3141257010866,24.2809280699814,1,14,1 -2567,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.4494601103943,20.457770192905,0,9,1 -2570,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.5007331292145,22.2585511118417,1,15,1 -2571,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.56454366561957,21.62468613065,0,10,1 -2576,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.67534909583628,20.3897612740356,0,3,1 -2579,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.0721963730175,22.9720354072387,0,9,1 -2584,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.186709552072,19.0853374105501,0,7,1 -2585,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.0596612286754,20.8383100926489,0,2,1 -2586,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.4733296388295,22.1279320334614,0,7,1 -2587,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,10.345134002855,25.6648393062395,0,11,1 -2589,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,10.0243336486164,25.9293641145541,0,16,1 -2593,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.2931613177061,19.2108506899666,0,7,1 -2597,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.0301381528843,21.0601865872918,0,8,1 -2606,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.86317039048299,20.5599002658331,0,11,1 -2609,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.52177904546261,20.3327303674193,0,5,1 -2611,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.58124162303284,25.85298261527,1,12,1 -2615,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.2664302831981,19.70235573713,0,5,1 -2617,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.88879558281042,17.7457598268088,0,8,1 -2622,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.93390844832174,22.5186205267798,0,3,1 -2626,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.75242311321199,25.6557786854528,1,21,1 -2628,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.87905445415527,21.7632008284152,0,9,1 -2629,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.3612272662576,19.8992893310537,0,5,1 -2631,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,10.2232903626282,26.4742367622704,1,16,1 -2641,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.59408900979906,21.1084457011738,0,13,1 -2642,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.58164367475547,24.3046332392822,1,10,1 -2644,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.86160811176524,24.8774311047325,0,8,1 -2649,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,10.4095541236456,23.0453303191047,1,10,1 -2651,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.81249355361797,22.6815633477744,0,4,1 -2658,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.68207227112725,20.491691340839,1,11,1 -2666,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,10.1195260866079,22.0579183511511,0,11,1 -2670,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.4008119946811,19.335889024144,0,8,1 -2672,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.3204227187671,19.4257553320442,0,12,1 -2675,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.67022834578529,24.9232419468953,0,16,1 -2676,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.59867074503563,25.0268835707082,0,11,1 -2678,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.96839804574847,25.680709211103,0,7,1 -2681,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.8058586474508,28.2818945890551,0,13,1 -2691,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.64427126804367,17.7087056576677,0,3,1 -2694,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.63599904021248,15.7241811386304,0,6,1 -2701,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.75712920771912,23.8999962742825,0,21,1 -2703,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.93231798708439,23.2504584581453,0,15,1 -2704,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.71667926898226,22.5545981243306,0,14,1 -2712,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.75726496614516,20.3923818639892,0,10,1 -2715,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.76655071158893,25.0097145757433,0,12,1 -2718,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.8455362142995,22.0499459915166,1,11,1 -2719,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.1676032121759,18.9700961546134,0,7,1 -2720,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.94499087636359,18.0560384033036,0,6,1 -2728,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.84200246888213,24.8919604241152,0,8,1 -2733,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.6839728213381,22.2524331093589,0,11,1 -2737,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,10.4014423850458,22.9937468808176,0,11,1 -2738,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.57293472671881,16.7303532206844,0,3,1 -2740,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.3001700444147,16.8127584875413,0,5,1 -2741,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.73237319360487,23.1984643485678,0,5,1 -2743,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.60911183874123,19.1277156809427,0,6,1 -2744,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.052331867395,20.1384945723026,0,7,1 -2747,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.86256064870395,24.1961397306686,0,13,1 -2749,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,10.1160217411816,24.6295358992817,0,11,1 -2751,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.87261894019321,17.5937384695225,0,6,1 -2753,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,10.0132414379623,27.1730617437894,1,11,1 -2754,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.63166601373814,25.3019240710417,0,9,1 -2755,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.2123555494472,23.6901665509637,0,11,1 -2756,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.2179306331091,20.5826129012043,0,10,1 -2757,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.60208759177476,27.8037533775218,1,15,1 -2758,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.51067486195825,20.6351236580637,0,11,1 -2762,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,10.3842143935617,27.1352312856905,1,8,1 -2763,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.7485085783992,28.1762088815784,1,9,1 -2765,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,10.3669082999695,28.2181392705888,0,8,1 -2776,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.96229492663406,27.814957936068,1,13,1 -2778,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,10.4563855121378,25.7188434740304,1,12,1 -2780,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.86853007483296,25.489146553805,1,19,1 -2781,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.94287710124627,23.8192161495797,0,4,1 -2782,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.69069859758019,26.8139607412635,1,20,1 -2783,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.69760540407151,27.1509515630775,1,16,1 -2787,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.74689580849372,23.0478076573742,0,8,1 -2789,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.61768113449216,27.6444132777714,0,7,1 -2792,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,10.0978326417971,27.1227350770424,1,15,1 -2794,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.95831700111739,20.6509238432379,0,6,1 -2805,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.68178705801256,26.2076516772279,1,12,1 -2807,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.89582704356872,22.5584108862662,0,5,1 -2809,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.0410180103499,21.3251527996554,0,6,1 -2812,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.1679908358492,22.5502908906947,0,5,1 -2815,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,10.257511574775,25.9971152164256,1,12,1 -2822,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,10.4660756574012,26.2101785157291,1,17,1 -2823,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,10.3735021867324,24.0273419010852,0,17,1 -2824,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.96725952019915,22.9999468729978,0,12,1 -2825,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,10.229841101449,26.7761462589147,1,12,1 -2829,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.40175474016,20.2378651232586,0,8,1 -2832,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.82043337100185,23.4458520797119,0,9,1 -2833,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.1120477567893,19.7547048306717,0,10,1 -2834,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.4352970775217,24.3749908256944,0,12,1 -2835,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.94137795409188,27.6853423527373,0,16,1 -2836,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,10.4809585514013,27.6759185647989,1,17,1 -2837,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.58645861712284,20.7244345672559,0,7,1 -2839,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.1220781994052,20.8560387917998,0,6,1 -2840,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.1387983998284,21.6061350450042,1,9,1 -2843,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.3847880593967,21.3206089626101,0,9,1 -2847,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.1150758420117,25.4250167902027,0,13,1 -2851,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.74252041964792,21.8505437474649,0,7,1 -2853,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.3957425311673,25.6158817070286,0,18,1 -2855,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.0079924056772,26.1133841428954,0,6,1 -2859,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.12857088889,25.1405650981216,0,10,1 -2862,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.0269417928066,22.4315961306387,1,13,1 -2863,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.0744957120623,17.9958473903786,0,7,1 -2867,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.4106575427577,18.2690965306153,0,9,1 -2868,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.075338695664,24.0358768375299,0,4,1 -2873,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.0265033934265,20.226066775749,0,10,1 -2874,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.2613183148205,18.7269744875747,0,11,1 -2888,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.2685348142404,20.1628038923134,0,15,1 -2893,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,9.96327200322412,18.8070366025121,0,7,1 -2895,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.96092206076719,24.8315048838574,0,11,1 -2897,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.1026497506537,23.8680098077856,1,14,1 -2898,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.5659177582711,22.4551882410155,0,11,1 -2901,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.85228142351843,25.2817044833992,0,8,1 -2904,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,9.77548063849099,19.6522479765317,0,5,1 -2907,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.73661308991723,25.9244110232214,0,13,1 -2910,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.0195955568925,22.7595363693665,0,5,1 -2914,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,9.83638349059038,22.1457082033861,0,7,1 -2925,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.0806748094037,16.1336460130783,0,4,1 -2930,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.3554354850203,22.1900475510621,0,6,1 -2931,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.09618785372,22.674484455294,1,12,1 -2932,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.4116459663492,18.3474429690914,0,1,1 -2935,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.64337917836383,23.5289232337244,0,12,1 -2942,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.2098162416369,17.5468818116257,0,8,1 -2943,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.2403947319835,21.6739637923559,0,4,1 -2946,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.84862928604707,23.4552380036881,1,13,1 -2947,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.68395607126877,22.7727679590268,0,10,1 -2952,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.1919697313569,21.2958104508218,0,7,1 -2955,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.75914338603616,19.0445444341419,0,8,1 -2956,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.58816025871783,27.1537267218559,1,11,1 -2957,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.53643849794753,20.8378226389536,0,7,1 -2958,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.1211789248046,20.3107290504665,0,9,1 -2966,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.52815965330228,22.2037548489506,0,6,1 -2969,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.9018626648467,21.4121285996617,0,9,1 -2970,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.76204792945646,24.5316855236537,0,15,1 -2982,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.92416807962582,27.3681149253886,1,9,1 -2983,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.75370906759053,25.1667968134013,0,15,1 -2988,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.67890851735137,25.8417768395074,1,13,1 -2993,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.4463229503017,25.9925150348119,1,12,1 -2994,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.79422986740246,24.9117267832315,0,8,1 -2995,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.67120679304935,25.2675953404056,0,7,1 -3003,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.0007281019352,25.7209266410285,0,12,1 -3004,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.3105683994945,26.6488902092407,0,17,1 -3011,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.60825145384297,26.1393823973981,1,17,1 -3020,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.3399300016463,21.9585588673937,0,9,1 -3021,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.86726854741573,22.522213410647,0,4,1 -3022,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.84683718252927,25.8422690430162,1,15,1 -3031,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.6784610003233,27.5267390729021,0,14,1 -3032,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.85885337041691,20.1302760759076,0,11,1 -3034,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.51676612650044,22.5111384944711,0,5,1 -3038,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.86407108022831,22.937982262025,1,18,1 -3044,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.53429464646615,17.9599149602982,0,12,1 -3047,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.51465487806126,25.4531941114524,1,6,1 -3051,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.53691666992381,21.5517578646958,0,8,1 -3052,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.3209618285764,21.2686167287316,0,10,1 -3055,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.61598353390582,20.3061214428149,0,8,1 -3064,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.3188396885525,24.3727363461024,0,15,1 -3065,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.4725898010656,26.3475905305005,0,16,1 -3069,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.74551644735038,24.3722600367458,0,10,1 -3072,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.59603843418881,19.9299691534962,0,10,1 -3075,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.58888871944509,26.2737483429796,1,13,1 -3076,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.6844096975401,19.0111808494071,0,12,1 -3079,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.0639390482102,22.971738316767,0,6,1 -3083,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.86718384618871,24.5845478551128,0,10,1 -3084,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.67432330059819,26.1037862786828,0,7,1 -3089,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.4492153977044,24.8397669084579,0,6,1 -3091,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.93869784777053,25.7264553348069,1,9,1 -3094,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.0181428680662,26.2250016788602,1,11,1 -3103,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.0219492500182,23.7028784320068,0,10,1 -3105,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.61176272388548,25.2370762256028,1,11,1 -3106,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.26307479362,25.8576395098079,1,11,1 -3107,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.0483758405317,21.8283973326758,0,4,1 -3115,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.613503532717,18.5779749454863,0,7,1 -3118,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.60887403204106,20.9958505793953,1,15,1 -3122,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.1169646650087,18.3180748838778,0,7,1 -3123,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.7536455092486,25.4741812458263,1,16,1 -3125,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.3299683509395,21.71411007973,0,5,1 -3129,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.3808565638028,20.1638068158495,0,11,1 -3133,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.87158021563664,24.4922908755115,0,11,1 -3137,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.81070909253322,20.2789945781659,0,11,1 -3138,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.4621149939485,23.7224208059261,0,13,1 -3140,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.1926423460245,18.8519401372754,0,6,1 -3141,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.92706127418205,26.0384435025683,1,12,1 diff --git a/tests/testthat/data_files/CLUSTER/CLUSTER_INT2.rda b/tests/testthat/data_files/CLUSTER/CLUSTER_INT2.rda deleted file mode 100644 index bc2291d2..00000000 Binary files a/tests/testthat/data_files/CLUSTER/CLUSTER_INT2.rda and /dev/null differ diff --git a/tests/testthat/data_files/CLUSTER/CLUSTER_INT3.csv b/tests/testthat/data_files/CLUSTER/CLUSTER_INT3.csv deleted file mode 100644 index 10c0f212..00000000 --- a/tests/testthat/data_files/CLUSTER/CLUSTER_INT3.csv +++ /dev/null @@ -1,1095 +0,0 @@ -"idPatient","idSurgery","trtGrp","intSurgery","nDoctors","idDoctor","intDoctor","nPatients","Male","age","BMI","diabetes","incid_rate","private" -3,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.435782535933,33.2484408766694,1,36,0 -8,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,9.74881260050461,33.1744029976399,1,7,1 -14,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.0849321710411,28.3828302336483,0,19,1 -18,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.99681375129148,24.1925874382692,1,20,1 -22,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.97981808078475,28.4351589928129,1,25,1 -25,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,9.87300366396084,29.9920651703474,1,19,1 -35,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,9.98908946616575,32.4170370843849,1,20,1 -37,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.99607000942342,25.4910307424824,1,7,1 -38,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.2041212862823,26.5524568478853,0,18,1 -43,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.2438856672961,31.1324783171865,1,26,1 -51,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.2999456780963,36.1072233343913,1,17,1 -55,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.2638334478252,25.8693793556031,0,12,1 -58,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.499831243651,25.8876861030197,1,16,1 -59,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.0330372559838,25.3986631771235,1,17,1 -66,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,9.51792977680452,31.2638892539203,1,21,1 -67,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.345471221488,29.4155973877961,1,19,1 -70,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.1308358518872,26.0761798640381,1,15,1 -71,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,10.3684613411315,33.1065060735272,1,18,1 -72,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.91307670483366,28.3306889226483,1,17,1 -73,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.4898432861082,30.0878229676621,0,13,1 -75,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,9.69975039619021,31.4836365162208,1,18,1 -77,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,9.95857380330563,26.5706293249396,0,16,1 -80,1,1,2.37456968552376,7,1,-3.75679528408306,83,1,9.58877594233491,34.0342391940118,1,26,1 -82,1,1,2.37456968552376,7,1,-3.75679528408306,83,0,10.4214416653849,26.9152261989895,1,18,1 -87,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,9.92051696451381,30.4285228417399,1,29,1 -88,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,9.56670877547003,32.0502767470186,1,17,1 -89,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.1351891737431,26.1138886801082,1,25,1 -90,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.0137762010563,32.4578567578694,1,24,1 -92,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.1126756842714,25.5425406603547,1,21,1 -93,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.96217766893096,25.4971713659461,1,18,1 -97,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.0082979465369,27.0709441196623,1,17,1 -102,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.3791381339543,32.3207088580856,1,35,1 -103,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.3160158491228,33.2020923396302,1,24,1 -110,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.3854382117279,28.3197241701573,1,14,1 -117,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.78126375935972,27.8585378782805,0,6,1 -129,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.1392342757899,29.418144327344,1,27,1 -138,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.3599005499855,29.0840643228275,1,14,1 -141,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.484262123704,25.1899935720729,1,21,1 -142,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.94633632688783,27.1013727299273,1,14,1 -147,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.52286617597565,26.3272285305522,1,14,1 -149,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.50474076834507,27.0457802887749,1,19,1 -150,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.88236417411827,28.6535381730584,0,12,1 -152,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.2448128210381,25.0488565032654,1,18,1 -157,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.58715846366249,27.3676951683566,0,19,1 -158,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.8450771542266,27.179858879497,1,15,1 -159,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.4773614828009,27.4532530025294,1,20,1 -164,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,9.64967771642841,27.5118848191924,0,15,1 -166,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.2408534795977,25.2698189878249,1,7,1 -168,1,1,2.37456968552376,7,2,-3.45134142891451,87,0,10.2801930562127,24.9445707818519,1,14,1 -169,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.3367308292072,33.2205418138965,1,26,1 -170,1,1,2.37456968552376,7,2,-3.45134142891451,87,1,10.1240041200072,30.6226813376111,1,27,1 -176,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.81153490021825,36.352927233624,1,42,1 -183,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.2211076559033,37.4497653553085,1,37,1 -184,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.51550875650719,37.7429685608143,1,35,1 -189,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.60516236908734,38.8896571466076,1,47,1 -190,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.51491124462336,36.6458726957018,1,41,1 -191,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.4322551696096,32.7146916390857,1,20,1 -193,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.4704079283401,35.4212767181683,1,39,1 -194,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.85435864794999,35.9573013133959,1,42,1 -195,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.4323307890445,36.8399460963007,1,41,1 -196,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.63518786407076,32.6185105532196,1,25,1 -198,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.262899299385,33.4033044247978,1,25,1 -205,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.57399596855976,32.3568211344207,1,21,1 -209,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.93610008107498,32.9712392688879,1,22,1 -210,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.70329269929789,33.6355486373579,1,17,1 -213,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.87505744211376,36.4020540575165,1,34,1 -214,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.66449604462832,35.6342448609901,1,59,1 -222,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.69869105960242,38.386325874086,1,40,1 -225,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.0664954022504,37.8229480784019,1,53,1 -227,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.4436311458703,34.3155082977408,1,24,1 -228,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.0044080850203,37.6754836807336,1,41,1 -229,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.54706946760416,37.8491523441627,1,54,1 -230,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.3878072244115,38.3875381185278,1,38,1 -232,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.68703418294899,38.0119665802268,1,52,1 -233,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.0661263952497,35.5926053025656,1,21,1 -234,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.0863248887472,31.388587799122,1,28,1 -237,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.299302038271,36.523064886335,1,35,1 -241,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.1178550880868,33.1605603742763,1,31,1 -243,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.1533521728124,32.7502715158313,1,17,1 -244,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.4474708181806,38.1371485861111,1,51,1 -247,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.0317661385052,30.682613955722,1,29,1 -248,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.2444084812887,31.0370669852552,1,18,1 -251,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.1446879091673,31.3929255472872,1,30,1 -252,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.4838517208118,39.3232550025659,1,41,1 -253,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.66031756065786,30.7741786854144,1,15,1 -255,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.3398348847404,37.1328956815055,1,44,1 -257,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.61622450454161,37.4937100150865,1,36,1 -262,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.224029280711,36.4061026216728,1,38,1 -263,1,1,2.37456968552376,7,3,1.86692219740136,105,1,10.3833295234945,36.7417308461339,1,34,1 -266,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.62853595148772,36.2828002893959,1,42,1 -268,1,1,2.37456968552376,7,3,1.86692219740136,105,0,9.51263756980188,33.5924123764382,1,26,1 -271,1,1,2.37456968552376,7,3,1.86692219740136,105,1,9.53234406560659,33.8273471931685,1,39,1 -274,1,1,2.37456968552376,7,3,1.86692219740136,105,0,10.4570905165747,30.8248245836928,1,20,1 -276,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.63213019934483,35.2811317937474,1,26,1 -277,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.1184199349955,31.6576897807913,1,15,1 -282,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.89704288495705,34.8852789748313,1,26,1 -283,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.1738605671562,30.143262984372,1,14,1 -285,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.4041177495383,29.6784978962382,1,23,1 -286,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.411937647732,31.0251594928663,1,20,1 -288,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,10.4852528420743,33.0234949756792,1,34,1 -289,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.56776084471494,35.4487210805298,1,39,1 -290,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.0204914712813,27.5250828935236,1,29,1 -293,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,10.0891634584405,33.097073740589,1,37,1 -295,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,10.4328167082276,34.8094489856039,1,47,1 -296,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.79234988591634,34.7675903268961,1,38,1 -299,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.71604411094449,35.9550983729529,1,28,1 -300,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.61294816853479,29.3881368084661,1,19,1 -303,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.4358610960189,29.9728216976622,1,15,1 -304,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.4227616828866,31.015805585774,1,17,1 -308,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.64909249637276,33.8815218749471,1,34,1 -309,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.2038873671554,31.039173612391,1,19,1 -310,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.60134994913824,30.2636147500936,1,11,1 -311,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.1169018547516,28.8994896676122,1,16,1 -314,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.0125736251939,30.8788562854983,1,11,1 -315,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.78764815046452,30.5217289161098,1,20,1 -317,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.81029452616349,37.272140551741,1,32,1 -323,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,10.4035672389437,36.9001025948877,1,28,1 -324,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.61097991256975,34.6890739083485,1,30,1 -332,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.51063876808621,32.0692127096765,1,17,1 -333,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.92626554192975,27.6463015009516,1,26,1 -338,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,10.3762335390784,35.6637770634647,1,33,1 -340,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.4809767066035,28.9580789721517,1,22,1 -342,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,10.1046069508884,37.1774398623255,1,40,1 -345,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.75844902428798,29.918179688258,1,22,1 -346,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,10.1922865964007,34.118180168249,1,30,1 -353,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.0592445090879,30.5719707645447,1,18,1 -354,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.4219402016606,28.8446785945139,1,20,1 -363,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.75357236829586,32.3318147627338,1,27,1 -370,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.6785986861214,36.997511452105,1,31,1 -371,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,10.4379884097725,33.0732513970778,1,31,1 -372,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.0590153634548,30.0953594787292,1,20,1 -374,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,9.90128696663305,29.7497755288796,1,28,1 -377,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.4907430412713,27.8522513390551,1,20,1 -378,1,1,2.37456968552376,7,4,-0.433652458492797,107,0,10.3876641336828,31.007382460044,1,23,1 -379,1,1,2.37456968552376,7,4,-0.433652458492797,107,1,9.5794125625398,31.8440593929151,1,31,1 -384,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,9.85194943542592,32.7336967422605,1,26,1 -387,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.0442677726969,30.5465039095116,1,26,1 -389,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,9.77733932598494,32.5377028372069,1,22,1 -390,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.2503920549061,32.7773995929894,1,23,1 -394,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.5338777017314,27.1120430960311,1,5,1 -400,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.7577819370199,27.9200371332534,1,17,1 -401,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.4183427861426,26.1558290570546,1,21,1 -406,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.1665965940338,34.6137035113735,1,27,1 -408,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.94251073524356,31.0671296472392,1,18,1 -409,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,9.96006125537679,32.7825094725053,1,30,1 -411,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.1797574092634,34.3515946366649,1,26,1 -413,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.1207327342127,27.4794126962282,1,16,1 -415,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.0400667218491,34.09495493584,1,24,1 -416,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.4260322542395,28.6935311228687,1,17,1 -417,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,9.81573529518209,33.2394144398468,1,21,1 -420,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.71209989534691,28.1479103201713,1,16,1 -421,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.4368017564993,32.5033743531459,1,26,1 -426,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.0997354774736,27.922170876534,1,13,1 -428,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.1284919404425,25.0771188674345,1,26,1 -434,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.4200251605362,31.7486072719893,1,32,1 -436,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.60550522105768,30.6818949590429,1,9,1 -438,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.4772017134819,26.7123055808505,1,15,1 -439,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.99483881867491,27.0676760536036,1,14,1 -445,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.3419202512596,25.4264780628903,1,19,1 -447,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,9.73102579708211,34.6667089510046,1,23,1 -450,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.98264204524457,28.3380040383363,1,15,1 -456,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.3701002865564,33.5155121850475,1,14,1 -457,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.881177614443,27.6988496154452,1,21,1 -462,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.0477162729949,27.0886753178306,0,25,1 -464,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.1816918149125,30.1282518336115,1,17,1 -465,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,10.3436050815508,26.932166515782,1,13,1 -467,1,1,2.37456968552376,7,5,-2.5191505461041,96,1,10.4159771534614,32.9780923181496,1,42,1 -468,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.81372596672736,26.9375125635226,1,19,1 -472,1,1,2.37456968552376,7,5,-2.5191505461041,96,0,9.90836286055855,27.5073497300828,1,17,1 -479,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.86490309657529,34.8052951459285,1,34,1 -481,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.3695862812456,30.1149912111322,1,17,1 -484,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.2872171504423,31.6810258986182,1,18,1 -488,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.2771528647281,34.8742439003667,1,37,1 -489,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.4707187421154,31.3580676429263,1,25,1 -490,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.1125582884997,33.1475874193473,1,34,1 -496,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.53123036352918,28.7928667958606,1,27,1 -498,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.3010920514353,30.3375090527412,1,22,1 -499,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.80894849612378,36.3458318144562,1,37,1 -500,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.1336995051242,34.8345442624868,1,39,1 -501,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.93834683019668,30.6954641687944,1,16,1 -502,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.0090861641802,36.2078389966301,1,39,1 -505,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.117190686753,28.9777096585884,1,20,1 -508,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.4645150736906,35.4619974300009,1,35,1 -510,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.96136348834261,33.5258031555144,1,32,1 -511,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.67855908046477,28.4946624323967,1,28,1 -513,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.92211033427157,34.5182774142683,1,36,1 -514,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.68987360736355,37.4825519842835,1,35,1 -516,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.81009590346366,33.5113863080497,1,44,1 -517,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.2917265165597,36.1345312407331,1,37,1 -518,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.96641196240671,35.3580479052406,1,35,1 -524,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.0389651844744,29.8953641457369,1,19,1 -527,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.0818347064778,28.4492392589992,1,17,1 -530,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.4213758071419,35.1345366961902,1,29,1 -532,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.59079134976491,29.1572961175341,1,21,1 -536,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.85874281916767,33.5272039515024,1,31,1 -537,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.60298108449206,30.5175806654773,1,22,1 -540,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.77442725887522,28.3543748087486,1,24,1 -544,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.037299051648,29.7563027396358,1,16,1 -548,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.3030158916954,32.0286219231178,1,40,1 -550,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.0613428005017,36.3764010646401,1,32,1 -552,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.66555968858302,30.948866013848,1,26,1 -554,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.63535524555482,35.9910814808351,1,31,1 -555,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.3642736151814,35.4390621113444,1,37,1 -556,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.74502010340802,30.8755885936047,1,26,1 -558,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.55663841054775,37.2584065913246,1,24,1 -562,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.4334958440159,33.9988393259538,1,36,1 -563,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.4234428743366,34.710317097147,1,34,1 -564,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,10.0764741492458,26.735781164955,1,18,1 -565,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.78920865594409,35.4057967557889,1,31,1 -568,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,9.56900980998762,38.7221957009368,1,27,1 -572,1,1,2.37456968552376,7,6,-0.243127856122577,96,0,9.68501080083661,30.5547190518915,1,20,1 -574,1,1,2.37456968552376,7,6,-0.243127856122577,96,1,10.2645667667966,35.8342128615519,1,28,1 -575,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.263534612488,35.8329217381333,1,53,1 -577,1,1,2.37456968552376,7,7,1.71780943344135,91,0,9.64468180993572,32.2719792379057,1,29,1 -578,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.2117821238935,39.7638884105286,1,46,1 -581,1,1,2.37456968552376,7,7,1.71780943344135,91,0,9.81689536268823,32.2847743560949,1,28,1 -585,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.4053333927877,33.3060604046071,1,33,1 -591,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.1693868930452,32.3647092111359,1,25,1 -599,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.3768313354813,31.6676303798472,1,27,1 -602,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.74133967398666,38.2214191733794,1,38,1 -604,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.58018339192495,35.6892057114917,1,29,1 -608,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.95603743358515,38.5122822941985,1,36,1 -617,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.2174770731945,31.7446920711136,1,24,1 -618,1,1,2.37456968552376,7,7,1.71780943344135,91,0,9.82540871761739,31.2244348319922,1,30,1 -620,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.4221211923286,32.7384509286489,1,26,1 -623,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.3366017758381,36.9705618921908,1,47,1 -625,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.77494951779954,39.7280967671716,1,33,1 -627,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.0819152574986,32.0085368147842,1,25,1 -631,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.0425372302998,35.6484281602186,1,43,1 -632,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.2889627504628,32.5825554466456,1,26,1 -633,1,1,2.37456968552376,7,7,1.71780943344135,91,0,9.68422363791615,32.8239516903772,1,22,1 -634,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.54427630314603,36.1873094361592,1,37,1 -637,1,1,2.37456968552376,7,7,1.71780943344135,91,0,9.91781779960729,30.8569471915949,1,34,1 -641,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.0498032502364,34.8553539429159,1,50,1 -642,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.9111969252117,33.1552197202275,1,40,1 -651,1,1,2.37456968552376,7,7,1.71780943344135,91,0,9.86294897063635,33.4468908966185,1,28,1 -657,1,1,2.37456968552376,7,7,1.71780943344135,91,1,9.81146233598702,35.7172076290893,1,45,1 -658,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.1143222218379,33.9049676362232,1,32,1 -660,1,1,2.37456968552376,7,7,1.71780943344135,91,0,10.490450717276,31.8790032408662,1,34,1 -663,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.1486216443591,37.3259967553538,1,35,1 -665,1,1,2.37456968552376,7,7,1.71780943344135,91,1,10.2230803840794,36.8047598467284,1,34,1 -670,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,10.3318466492929,31.6854254190559,1,25,1 -673,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,10.2428139015101,29.3756978136061,1,21,1 -675,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,10.4768537390046,29.2673939434769,1,18,1 -676,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,10.1394735837821,35.7110180927087,1,36,1 -677,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,9.53634266695008,32.1863240098534,1,20,1 -678,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,10.0562659464777,36.9206505151925,1,48,1 -679,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,10.2383234389126,34.5403701959418,1,31,1 -685,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,9.94626913010143,31.9612437504707,1,15,1 -687,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,10.102747463854,27.278205630814,1,19,1 -688,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,10.231823686976,30.104970322782,1,23,1 -692,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,10.1797613627277,29.0651623596825,1,23,1 -695,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,10.0782573006582,30.1342441182606,1,21,1 -703,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,10.2850582313258,34.2506886026495,1,37,1 -707,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,9.8419950697571,29.8613547673928,1,13,1 -708,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,10.221340423217,35.4538649006072,1,39,1 -709,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,9.64669796056114,34.1040477083762,1,26,1 -718,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,9.61934274761006,31.7092443184675,1,20,1 -719,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,9.73260169336572,32.7637088547597,1,43,1 -721,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,10.1867593608331,34.8960291865796,1,29,1 -723,2,1,-0.978085923799264,1,8,2.68020829624172,64,0,9.85419246624224,30.1551063733272,1,24,1 -725,2,1,-0.978085923799264,1,8,2.68020829624172,64,1,10.4689476140775,33.6521374859221,1,26,1 -735,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.64689175132662,26.0665687932328,1,11,1 -737,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.90522491093725,19.4872843388608,0,5,1 -747,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.88259712257423,24.2055818900024,0,11,1 -751,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.2332832165994,21.5800387723131,0,8,1 -752,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.96106622833759,18.6996503761556,0,6,1 -754,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.3140982436016,23.9325436581783,0,16,1 -755,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.4096897598356,19.4720801553535,0,7,1 -756,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.4116386778187,19.9440406804884,0,9,1 -758,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.4317524184007,21.3858853671987,0,8,1 -763,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.017125000013,25.3411631584607,1,11,1 -764,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.1756232723128,25.9443840243025,1,14,1 -772,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.2563654168043,18.051752302166,0,13,1 -774,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.3963462554384,20.5598242817816,0,11,1 -776,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.4521989645436,18.0194000512007,0,13,1 -784,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.9636337463744,19.1628186576289,0,6,1 -786,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.83985352260061,24.5467870837912,0,9,1 -787,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.50038257427514,23.7370914926819,1,12,1 -790,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.84823397337459,26.2228844971541,1,12,1 -794,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.1497616372071,19.5597976574987,0,9,1 -796,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.61397495330311,22.1995533250447,1,8,1 -798,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.3845125224907,25.4215670941094,0,7,1 -800,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.4016726526897,21.4108442129791,0,7,1 -803,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.2481359939557,19.6991739477768,0,8,1 -806,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.83973933360539,25.608178160245,0,13,1 -808,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.84105671592988,17.4488072221191,0,5,1 -809,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.2507013950963,26.3684034756017,1,8,1 -811,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,9.78799239755608,18.953199563178,0,5,1 -818,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,9.78677751915529,25.4777816199508,0,16,1 -819,3,0,0.628956858108042,3,9,-0.608775284100456,92,0,10.0117788463831,21.3262221178993,0,5,1 -821,3,0,0.628956858108042,3,9,-0.608775284100456,92,1,10.4415446601342,23.6159652943073,0,14,1 -824,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.2276240361389,22.333023285227,0,15,1 -825,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.81689658924006,21.5915661381689,0,4,1 -827,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.1611714975443,20.1065997024771,0,15,1 -828,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,9.7116183845792,23.8312159224893,1,6,1 -829,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.84807020635344,21.1651182612896,0,10,1 -830,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.0169693378266,24.7408417842715,1,10,1 -831,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.4060843505431,18.2550545841055,0,6,1 -833,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,9.79221858107485,22.9346819491925,0,11,1 -837,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,9.7292283361312,25.9877459118748,0,9,1 -840,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.3566454909742,20.1254468051853,0,6,1 -843,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.044423436746,27.642278852183,0,18,1 -846,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.347363544628,17.3977115519466,0,8,1 -847,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.173550365027,20.8278460936234,0,10,1 -850,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.3113279268146,21.032086284322,0,10,1 -853,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.9743071871344,17.9418450878934,0,7,1 -856,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.4357298230752,19.2797086501315,0,5,1 -863,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.68773386068642,18.3515082288355,0,8,1 -864,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.50858518085442,18.5892365560746,0,5,1 -865,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,9.88142345868982,26.3407836924277,0,11,1 -867,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.4609223939478,27.530985932151,0,15,1 -868,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,9.96523420209996,25.6599940977198,1,13,1 -870,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.2982331137173,19.2215819416646,0,11,1 -873,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.1671491642483,19.9975364762227,0,6,1 -877,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.1063271341845,22.7546636726344,0,10,1 -886,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.3055407800712,18.1078851881416,0,8,1 -887,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.93504869122989,20.8841906119278,0,7,1 -888,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.76760061015375,19.3556064588767,0,8,1 -891,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.66510056657717,19.612381517735,0,5,1 -898,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,9.99029317591339,20.4296417530362,0,9,1 -901,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,9.91736417124048,21.3958768295994,0,15,1 -902,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.285112503916,24.1584087020434,0,9,1 -904,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.3465668587014,21.0062679097192,0,6,1 -908,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,9.69501089211553,22.2083578218045,0,18,1 -910,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.3134680753574,18.86122700937,0,6,1 -912,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,10.0252261341084,25.5045374178682,0,17,1 -919,3,0,0.628956858108042,3,10,-0.363833850295175,99,0,10.1934054852463,21.1277957348171,0,3,1 -920,3,0,0.628956858108042,3,10,-0.363833850295175,99,1,9.64605813543312,23.8407386871371,1,13,1 -924,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.77862248453312,15.8647245046719,0,4,1 -927,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.2566330553964,18.4448894694465,0,5,1 -929,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.63659219653346,16.9120981789563,0,5,1 -936,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.0746483071707,16.9330210942012,0,4,1 -937,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.1790783246979,19.3651636810684,0,7,1 -938,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.2052828480955,24.5984439733248,0,11,1 -939,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.76386439264752,18.1647939563872,0,2,1 -943,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.84367081196979,19.2734646405528,0,12,1 -947,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.58140686107799,18.6481860929114,0,0,1 -950,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.94329641922377,19.0328193380025,0,4,1 -953,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.2915751819964,22.166270080859,0,12,1 -963,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.53575524943881,22.2265524719371,1,15,1 -965,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.56530245835893,19.6972772988191,0,5,1 -967,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.76216451800428,26.0396879521946,0,7,1 -968,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.2878354310524,16.5886064987294,0,7,1 -970,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.1650510719046,22.6514146136339,0,9,1 -975,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.93261604500003,23.5996739822211,0,10,1 -976,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.2288679308258,19.3589916176647,0,5,1 -977,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.76279787346721,24.7472705485812,0,7,1 -980,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.1832151704002,19.8294236203126,0,3,1 -982,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.1286521938164,24.4264293883163,0,17,1 -986,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.047519355081,23.0251317807105,0,14,1 -988,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.57805227464996,18.0121297205652,0,7,1 -989,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.3344774916768,22.1583120610499,0,12,1 -992,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.75435962947085,21.6226069345225,0,10,1 -995,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.3945879016537,15.611497252348,0,11,1 -996,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.61898302985355,22.4989226229693,0,12,1 -998,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.93472419469617,17.6455437243767,0,10,1 -1000,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.435674207285,21.0373037083053,0,12,1 -1002,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.4660119342152,18.381886688789,0,7,1 -1006,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,9.54903102945536,22.3361504422813,0,7,1 -1009,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.4726774333976,18.1111912211869,0,7,1 -1013,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,9.52746888971888,18.9279216190048,0,6,1 -1014,3,0,0.628956858108042,3,11,-2.49348914775805,96,0,10.3450748065952,18.6097733687822,0,5,1 -1015,3,0,0.628956858108042,3,11,-2.49348914775805,96,1,10.1436605874915,22.9190608229661,0,10,1 -1017,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.34993527201,27.1600844621806,1,15,1 -1018,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.3368315363768,27.5463124387239,1,11,1 -1020,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.4881311154459,28.1738154862469,1,24,1 -1022,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.2379668620415,25.0667440530542,1,14,1 -1023,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.3579388211947,25.3911692757426,1,7,1 -1024,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.4620953330304,21.4346447646494,0,15,1 -1025,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.99490262707695,25.3460414567573,1,18,1 -1028,4,0,1.09615018600291,3,12,0.65067591921437,89,0,9.64022197248414,20.1121027126027,0,6,1 -1032,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.3137373833451,22.5497065790603,0,7,1 -1033,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.0946922067087,28.3180798627637,1,18,1 -1034,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.3078761675861,20.1638336068212,0,6,1 -1040,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.3288498546463,21.0553802461202,0,11,1 -1046,4,0,1.09615018600291,3,12,0.65067591921437,89,0,9.5836680426728,21.3382579687443,0,10,1 -1050,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.0049253567122,28.0666447502627,1,13,1 -1052,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.0347039559856,25.0762882519318,0,9,1 -1053,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.4834797668736,24.7684586708028,0,11,1 -1055,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.79222923913039,24.9749074041303,1,13,1 -1059,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.54225987289101,25.7449427866634,0,12,1 -1060,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.4117689318955,25.6907190888937,1,16,1 -1061,4,0,1.09615018600291,3,12,0.65067591921437,89,0,9.58058895915747,21.3546502451915,0,5,1 -1063,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.65104905399494,24.6083387923997,1,13,1 -1064,4,0,1.09615018600291,3,12,0.65067591921437,89,0,10.1843622047454,21.7162625607387,0,7,1 -1068,4,0,1.09615018600291,3,12,0.65067591921437,89,0,9.77994105475955,22.1223631161519,0,8,1 -1072,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.2268620794639,25.0907384422126,1,8,1 -1075,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.2818221787456,25.2993358330399,1,14,1 -1078,4,0,1.09615018600291,3,12,0.65067591921437,89,0,9.8942375627812,21.9611286428611,0,10,1 -1079,4,0,1.09615018600291,3,12,0.65067591921437,89,1,9.98420828045346,24.725762048888,1,10,1 -1080,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.0588652535807,26.8772788749062,1,14,1 -1086,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.3016617596149,27.1739449002856,1,13,1 -1090,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.0009457943961,27.9732767375517,0,15,1 -1092,4,0,1.09615018600291,3,12,0.65067591921437,89,0,9.88901767577045,22.2916162427185,0,3,1 -1095,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.3728189030662,26.8853899256912,1,11,1 -1098,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.0626767175272,27.8786964883438,1,11,1 -1101,4,0,1.09615018600291,3,12,0.65067591921437,89,1,10.3049607332796,26.9808778935925,1,19,1 -1104,4,0,1.09615018600291,3,12,0.65067591921437,89,0,9.60331324534491,21.8712417393669,0,10,1 -1115,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.65412923786789,25.1554136596919,0,13,1 -1116,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.8556683564093,25.2010063225901,1,10,1 -1119,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.1914946881589,26.5764113117944,1,11,1 -1129,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.53161953086965,18.6266082125883,0,7,1 -1131,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.3764601473231,21.813022970625,0,12,1 -1134,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.56866080011241,21.699051985646,0,5,1 -1137,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.1346026116516,19.6027730122357,0,9,1 -1138,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.4478265214711,19.6487248142695,0,3,1 -1141,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.99341975571588,18.5563368008933,0,6,1 -1145,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.2649843276013,26.389363951652,0,8,1 -1146,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.54813744663261,18.3747575155003,0,8,1 -1147,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.1306812746916,18.8458561687869,0,3,1 -1148,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.89360181847587,21.6215596822923,0,9,1 -1150,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.2854670092929,27.4264754474882,1,12,1 -1152,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.2997163946275,25.4722070864589,0,13,1 -1160,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.55571648641489,21.4482464813513,0,9,1 -1163,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.0778298545629,25.4102867468847,0,14,1 -1165,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.94030002015643,26.8185479496026,1,11,1 -1166,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.54109662096016,27.2799247383673,0,13,1 -1167,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,10.1916312435642,20.4487133665599,0,7,1 -1171,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.96278441138566,27.1631692056859,0,16,1 -1175,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.82244705595076,20.1171251300303,0,7,1 -1176,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.9839669840876,26.0916653709617,1,15,1 -1182,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.2100139246322,26.0359951549723,1,16,1 -1184,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,9.78286516736262,28.0688162934462,1,15,1 -1193,4,0,1.09615018600291,3,13,-0.905089433432087,91,1,10.3533115326427,25.0030042681951,1,11,1 -1194,4,0,1.09615018600291,3,13,-0.905089433432087,91,0,9.63519099797122,18.372970057826,0,8,1 -1197,4,0,1.09615018600291,3,14,0.64410374127223,91,1,9.59257606300525,26.0835443038058,1,16,1 -1198,4,0,1.09615018600291,3,14,0.64410374127223,91,1,9.8303649534937,26.3069052253941,1,11,1 -1204,4,0,1.09615018600291,3,14,0.64410374127223,91,1,10.38731419947,25.9823103847286,1,16,1 -1209,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.1259364141151,21.2686999158571,0,4,1 -1213,4,0,1.09615018600291,3,14,0.64410374127223,91,1,10.391797779128,26.9234041709941,0,11,1 -1217,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.1682419679128,19.3544972541384,0,4,1 -1219,4,0,1.09615018600291,3,14,0.64410374127223,91,1,10.0594671245199,27.6354292984446,1,14,1 -1221,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.3376764324494,21.7797975535166,0,10,1 -1224,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.79991067689843,21.3114367455697,0,10,1 -1228,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.16537517705,23.9657806208243,0,15,1 -1232,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.59542676177807,21.892341997339,0,5,1 -1233,4,0,1.09615018600291,3,14,0.64410374127223,91,1,9.99436517432332,26.9725311333345,1,15,1 -1240,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.93418399291113,23.0697146656682,0,7,1 -1245,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.85316037246957,23.4755661570587,0,9,1 -1249,4,0,1.09615018600291,3,14,0.64410374127223,91,1,10.0505976127461,25.3986204747918,1,12,1 -1253,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.65623399685137,20.4587174618934,0,5,1 -1254,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.2061357055791,21.7469993229846,0,13,1 -1256,4,0,1.09615018600291,3,14,0.64410374127223,91,1,10.237016756786,27.3150167866126,1,12,1 -1258,4,0,1.09615018600291,3,14,0.64410374127223,91,1,9.53796083317138,28.4587693720615,1,15,1 -1264,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.2986481150147,21.6827148826933,0,7,1 -1271,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.1413271508645,23.1039575032072,0,7,1 -1273,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.1171021687333,23.2039575301353,0,11,1 -1277,4,0,1.09615018600291,3,14,0.64410374127223,91,0,9.78656568401493,20.6772925954279,0,4,1 -1279,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.0443846213166,21.7112970276491,0,11,1 -1283,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.0262428019196,21.3567006341048,0,13,1 -1284,4,0,1.09615018600291,3,14,0.64410374127223,91,1,9.51436511822976,27.0052162162421,1,9,1 -1285,4,0,1.09615018600291,3,14,0.64410374127223,91,0,10.3126305285841,21.4870749843076,0,7,1 -1289,5,1,0.700213275570883,5,15,0.996790521575935,63,0,10.1733504175209,30.2134703606347,1,21,1 -1291,5,1,0.700213275570883,5,15,0.996790521575935,63,0,10.2585053611547,28.8499145793992,1,16,1 -1292,5,1,0.700213275570883,5,15,0.996790521575935,63,0,10.4579263657797,29.4106038535274,1,18,1 -1293,5,1,0.700213275570883,5,15,0.996790521575935,63,1,9.66282901447266,32.9796076845141,1,33,1 -1296,5,1,0.700213275570883,5,15,0.996790521575935,63,1,9.7271813491825,36.3786275914487,1,30,1 -1304,5,1,0.700213275570883,5,15,0.996790521575935,63,0,10.4157002731226,28.2600560442461,1,20,1 -1305,5,1,0.700213275570883,5,15,0.996790521575935,63,1,9.65883107460104,35.0455413895795,1,30,1 -1311,5,1,0.700213275570883,5,15,0.996790521575935,63,1,9.80086213699542,33.5321297152834,1,29,1 -1313,5,1,0.700213275570883,5,15,0.996790521575935,63,1,10.1620848213788,34.4446823658483,1,36,1 -1314,5,1,0.700213275570883,5,15,0.996790521575935,63,1,10.3950658205431,36.1446467773133,1,31,1 -1316,5,1,0.700213275570883,5,15,0.996790521575935,63,1,9.97141121304594,33.5699679611375,1,24,1 -1317,5,1,0.700213275570883,5,15,0.996790521575935,63,1,9.82103820424527,35.7135343416379,1,31,1 -1321,5,1,0.700213275570883,5,15,0.996790521575935,63,0,10.2803219347261,28.5123757318975,1,16,1 -1332,5,1,0.700213275570883,5,15,0.996790521575935,63,0,9.63862429256551,30.4233377782334,1,19,1 -1337,5,1,0.700213275570883,5,15,0.996790521575935,63,0,10.0569846145809,31.7065459141199,1,17,1 -1338,5,1,0.700213275570883,5,15,0.996790521575935,63,1,10.1513271057047,35.2137152892714,1,31,1 -1342,5,1,0.700213275570883,5,15,0.996790521575935,63,0,10.4258555183187,30.4511515658677,1,20,1 -1347,5,1,0.700213275570883,5,15,0.996790521575935,63,1,10.3079427664634,36.378854421352,1,23,1 -1348,5,1,0.700213275570883,5,15,0.996790521575935,63,1,9.54090867843479,34.0188390843474,1,42,1 -1351,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.3175590522587,28.8536072881158,1,18,1 -1353,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.3287131371908,29.3122951763193,1,20,1 -1354,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.3744990075938,31.7079339537084,1,31,1 -1356,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.1762950124685,31.5257750403296,1,18,1 -1357,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.0344169759192,27.7812337542361,1,21,1 -1360,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.0901438149158,33.8247813572005,1,39,1 -1363,5,1,0.700213275570883,5,16,1.46385743923002,86,0,9.70740300253965,30.3672521585734,1,22,1 -1367,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.0218359283172,29.5107682855106,1,22,1 -1368,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.3819889025763,33.0590931772511,1,37,1 -1370,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.4048234687652,35.9735313891614,1,35,1 -1371,5,1,0.700213275570883,5,16,1.46385743923002,86,1,9.94344302336685,34.9814851257726,1,37,1 -1373,5,1,0.700213275570883,5,16,1.46385743923002,86,0,9.79729268234223,28.7876745578668,1,15,1 -1376,5,1,0.700213275570883,5,16,1.46385743923002,86,0,9.72753268294036,33.07350922478,1,20,1 -1378,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.0877915464807,30.0592481689256,1,23,1 -1381,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.3207806022838,35.0508696949336,1,36,1 -1383,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.0301262629218,33.9942322648715,1,46,1 -1384,5,1,0.700213275570883,5,16,1.46385743923002,86,1,9.99663119879551,33.790314327042,1,28,1 -1386,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.0382941132411,33.0088826204406,1,20,1 -1387,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.132774350699,31.1810574185807,1,18,1 -1389,5,1,0.700213275570883,5,16,1.46385743923002,86,0,9.50744684180245,30.4311719703364,1,20,1 -1391,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.4347270231228,32.4363509796103,1,39,1 -1393,5,1,0.700213275570883,5,16,1.46385743923002,86,1,9.70460481056944,34.4511767310224,1,26,1 -1395,5,1,0.700213275570883,5,16,1.46385743923002,86,0,9.85031699691899,32.2892073732257,1,24,1 -1398,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.0358264828101,34.1598269524399,1,32,1 -1402,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.4047994872089,31.2922242607568,1,17,1 -1404,5,1,0.700213275570883,5,16,1.46385743923002,86,1,9.76985412929207,35.6976457295465,1,28,1 -1405,5,1,0.700213275570883,5,16,1.46385743923002,86,1,9.5105221059639,35.8720062768855,1,28,1 -1406,5,1,0.700213275570883,5,16,1.46385743923002,86,1,9.83160699857399,34.9234501112774,1,42,1 -1409,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.1832559786271,30.9129381465659,1,15,1 -1411,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.0483981710859,27.43975320243,1,25,1 -1413,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.2925311478321,35.4973365623512,1,36,1 -1414,5,1,0.700213275570883,5,16,1.46385743923002,86,1,9.83791088312864,34.2078685660252,1,39,1 -1415,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.284795914311,29.8325835852133,1,19,1 -1418,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.1224065998103,31.6787979061332,1,21,1 -1427,5,1,0.700213275570883,5,16,1.46385743923002,86,1,10.2524446730968,34.9916883934124,1,30,1 -1428,5,1,0.700213275570883,5,16,1.46385743923002,86,0,10.0081131772604,30.8172915818857,1,20,1 -1431,5,1,0.700213275570883,5,16,1.46385743923002,86,0,9.76167617412284,30.0370061019586,1,33,1 -1437,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.73258650372736,27.9196059835074,1,5,1 -1439,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.0009128481615,32.1653438482877,1,24,1 -1440,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.2806427867617,31.4954855155015,1,23,1 -1442,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.95280119776726,28.1607018080388,0,10,1 -1455,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.4709187874105,25.2055861011112,1,16,1 -1457,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.51415633969009,26.1746257964747,1,19,1 -1458,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.81808442575857,28.0811371498771,1,17,1 -1459,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.1072924232576,29.6295535385773,1,19,1 -1460,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.3175463869702,33.5677036758604,1,27,1 -1464,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.93039748701267,32.0574793048347,1,34,1 -1467,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.81192818656564,35.3352452215315,1,25,1 -1468,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.71080778841861,28.3037077774054,1,16,1 -1470,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.4101333019789,32.8096958261585,1,30,1 -1472,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.2343197846785,35.5373227107122,1,24,1 -1475,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.99846335151233,28.609614166903,1,20,1 -1478,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.81333680776879,32.5053826975739,1,26,1 -1481,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.0446032411419,32.3663230819958,1,32,1 -1485,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.68752377922647,28.2551198017023,1,9,1 -1487,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.96556070726365,32.2389206229208,1,26,1 -1489,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.53570630704053,33.3317864627557,1,31,1 -1492,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.4507953964639,30.2091043416601,1,16,1 -1493,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.61470118560828,28.4872678131281,1,14,1 -1499,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,10.4906693315133,31.346511261152,1,26,1 -1500,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.51797152706422,33.4644183494053,1,24,1 -1501,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.078786480939,29.584881338277,1,12,1 -1503,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.62074467143975,31.3716565537942,1,27,1 -1508,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.99574485770427,28.7719326222223,1,23,1 -1509,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,9.91532792826183,25.2320365730001,1,12,1 -1512,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.6820535028819,31.5788034986589,1,26,1 -1514,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.0543924048543,27.4568742429607,1,16,1 -1516,5,1,0.700213275570883,5,17,-0.861151938587569,93,0,10.1068767642137,29.8909077889947,1,18,1 -1518,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.97063997830264,36.2263392214287,1,21,1 -1526,5,1,0.700213275570883,5,17,-0.861151938587569,93,1,9.77397466893308,34.4205413767559,1,42,1 -1531,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.65398987289518,32.6600701164685,1,39,1 -1533,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.1462210526224,31.305197747977,1,17,1 -1535,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.2059410249349,28.5777554050084,1,25,1 -1537,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.80983553524129,36.6050975938543,1,25,1 -1538,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.86138845561072,28.7780928231681,1,26,1 -1543,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.2185955934692,28.4633618040919,1,17,1 -1544,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.92045828769915,32.8832004077828,1,32,1 -1547,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.1905992778484,29.0013269588978,1,10,1 -1557,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.3785533520859,30.1030572071613,1,10,1 -1564,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.3969489026349,30.2808705703702,1,22,1 -1565,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.3472279082052,29.9162829265357,1,23,1 -1567,5,1,0.700213275570883,5,18,0.714114383757768,99,1,10.2441100445576,31.6052763567254,1,31,1 -1571,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.62407822394744,31.4279865199441,1,26,1 -1573,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.87659007217735,32.5728299272602,1,29,1 -1574,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.8153542696964,32.3975784771196,1,35,1 -1578,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.87110853753984,35.648463503117,1,35,1 -1580,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.3645683354698,31.1979224117916,1,22,1 -1582,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.219621658558,29.8516414777121,1,19,1 -1584,5,1,0.700213275570883,5,18,0.714114383757768,99,1,10.3309129471891,34.2898992338671,1,28,1 -1586,5,1,0.700213275570883,5,18,0.714114383757768,99,1,10.1184535680804,30.5952824111396,1,20,1 -1588,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.88649691571482,27.8529852675172,1,24,1 -1591,5,1,0.700213275570883,5,18,0.714114383757768,99,1,10.1462811443489,35.3790164351474,1,31,1 -1593,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.76635382184759,30.7253733045103,1,20,1 -1594,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.4778489524033,30.9494794228181,1,13,1 -1595,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.0043886478525,30.6175538640464,1,19,1 -1598,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.2116535725072,26.8866796660514,1,27,1 -1599,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.54453083244152,37.4506717894439,1,38,1 -1604,5,1,0.700213275570883,5,18,0.714114383757768,99,0,10.23678620602,29.2302169638925,1,26,1 -1609,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.64541599829681,34.3329349224735,1,35,1 -1613,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.69137492845766,33.4504848901537,1,36,1 -1621,5,1,0.700213275570883,5,18,0.714114383757768,99,1,10.0446067245211,34.319874322536,1,25,1 -1624,5,1,0.700213275570883,5,18,0.714114383757768,99,1,9.84831259935163,34.7890044317473,1,33,1 -1628,5,1,0.700213275570883,5,18,0.714114383757768,99,0,9.98884460353293,29.8217170281684,1,15,1 -1629,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.3228337413166,31.8114552954228,1,20,1 -1630,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.97727702511474,31.2299099767383,1,23,1 -1631,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,10.3778320520651,26.8501443550004,1,14,1 -1632,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,10.2107780086808,25.9245416458337,1,13,1 -1634,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.3164513381198,31.0070660940629,1,22,1 -1637,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.89373755664565,32.5621751577363,1,22,1 -1638,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.57062038872391,29.7091263610573,1,19,1 -1641,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.1810475236271,29.8982586551415,1,24,1 -1644,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,9.92807842581533,26.5319001369849,1,16,1 -1646,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,9.94075197959319,26.3283945475105,1,16,1 -1647,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.3110646728892,30.8246242539521,1,20,1 -1650,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,9.74845513142645,24.964930043465,1,9,1 -1652,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.53444672329351,28.522552550178,1,23,1 -1653,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,9.61021355655976,25.7364283729027,1,16,1 -1655,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.4435690378305,29.1212382550668,1,23,1 -1666,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,10.2817725373898,27.7758096802993,1,11,1 -1669,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.93922344851308,31.3082651644456,1,18,1 -1671,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,10.2889581259806,29.2634553096518,1,14,1 -1672,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,9.53506545978598,24.3737276273813,1,13,1 -1674,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.63513266853988,30.7955407886303,1,17,1 -1676,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,9.99235359253362,27.2510988938607,0,15,1 -1678,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.0593430064619,32.5626361571055,1,34,1 -1679,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.4552510459907,29.9169354285473,1,25,1 -1683,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,10.3675828261767,26.0348168517434,1,9,1 -1684,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.5205462356098,31.9844331185234,1,17,1 -1685,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.50125644798391,31.3490962862637,1,26,1 -1688,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,10.4456339573953,26.6537107709931,0,7,1 -1691,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.70307057118043,28.8908294670425,1,23,1 -1693,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.57903907680884,30.4820402710697,1,27,1 -1695,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,10.4936627978459,26.2010660177436,1,22,1 -1698,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,9.59160739509389,24.9883286845766,1,11,1 -1700,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.1404179369565,31.5162312032018,1,20,1 -1701,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.4835060928017,31.5455575631027,1,25,1 -1702,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,10.314069964923,34.0561634664613,1,24,1 -1707,5,1,0.700213275570883,5,19,-2.42821696065783,86,0,10.2954986772966,27.3141914888012,1,10,1 -1708,5,1,0.700213275570883,5,19,-2.42821696065783,86,1,9.60827883263119,30.2180535666459,1,24,1 -1716,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,9.64876719517633,26.8010883434118,1,19,1 -1718,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.2573073790409,32.5160184555772,1,21,1 -1719,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,9.98917959001847,28.7985489806316,1,14,1 -1724,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.2314936732873,33.699376822975,1,22,1 -1730,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.1554067768157,30.6170973456256,1,24,1 -1734,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.99326695525087,32.8993277974808,1,24,1 -1736,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.1622838375624,31.4553265833777,1,24,1 -1737,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.52733549568802,32.6491605279527,1,23,1 -1740,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.2517139250413,25.8810627861835,1,15,1 -1742,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.4048452272546,21.9964232901879,1,14,1 -1743,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,9.55982493190095,27.0974856858042,1,14,1 -1744,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,9.5292978619691,25.2776929082422,1,12,1 -1746,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.1349179809913,29.4991093340308,1,17,1 -1750,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.72170675499365,32.4345034927984,1,19,1 -1751,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.419266436249,33.0328990070655,1,16,1 -1753,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,9.53714340063743,27.0052115180562,1,25,1 -1756,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.86113550444134,29.871369330476,1,23,1 -1758,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,9.89732910040766,26.3097236720447,1,15,1 -1759,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.490041423589,28.0548771982007,1,10,1 -1761,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.82628523884341,32.0720320030488,1,26,1 -1762,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.3735232967883,27.4514236533658,1,19,1 -1764,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.4806243195198,27.1748241117775,1,13,1 -1767,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.0936848784331,32.6702096546066,1,37,1 -1769,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,9.78218284691684,26.3142602157515,1,16,1 -1776,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.4732531709597,28.7831033754343,1,13,1 -1782,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.076275329804,33.1865365887662,1,16,1 -1784,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,9.50964124244638,32.3924295818089,1,35,1 -1789,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,9.83714680373669,28.3464385491064,1,13,1 -1796,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.1710206631105,26.2453207458489,1,10,1 -1798,6,1,-0.183813053799111,1,20,-1.10939256877603,88,1,10.2635199506767,32.9704774830318,1,24,1 -1800,6,1,-0.183813053799111,1,20,-1.10939256877603,88,0,10.4227615748532,26.0155553639689,1,12,1 -1807,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.53054011287168,20.7282796569553,0,5,1 -1808,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.0120060499758,20.2997032400322,0,12,1 -1811,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.88762405188754,26.3052689327848,1,15,1 -1818,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.59268417651765,26.3327962536339,0,11,1 -1819,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.76178629999049,24.6789690902396,1,13,1 -1824,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.4341895245016,19.4308055285978,0,8,1 -1826,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.53858910338022,23.5384097399258,0,10,1 -1828,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.68711111764424,26.6285411330241,1,13,1 -1831,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.2742990853731,22.1287920468203,0,8,1 -1834,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.81177937774919,19.5293733859743,0,11,1 -1839,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.4404036656488,26.9442675898316,0,10,1 -1843,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.76688325987197,27.4849498498519,1,17,1 -1845,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.0419329295401,27.3017032310563,1,18,1 -1853,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.3636069949716,26.5762374202124,0,10,1 -1857,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.2356219626963,17.2355565352075,0,11,1 -1867,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.93140806793235,25.178002705417,1,15,1 -1871,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.91296541201882,24.3875266426324,1,19,1 -1876,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.0947738629766,19.8763621823469,0,8,1 -1877,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.89349903725088,25.2141707746822,1,15,1 -1878,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.0136153867934,23.5058079175379,1,20,1 -1879,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,9.90269217500463,19.2658103969302,0,10,1 -1880,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.70951903238893,24.9370308085973,1,14,1 -1881,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.4848162762355,19.1714204927847,0,6,1 -1883,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.4673878601752,28.4971531003692,1,18,1 -1884,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.71402756148018,25.2060659521446,1,7,1 -1888,7,0,2.61803289632224,8,21,-1.20336506001069,92,0,10.3261153243948,21.9079230842835,0,8,1 -1889,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,10.386937872041,27.5065032428833,0,19,1 -1893,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.65478699537925,28.3189436643272,1,13,1 -1894,7,0,2.61803289632224,8,21,-1.20336506001069,92,1,9.83729848498479,24.1238126362384,1,16,1 -1896,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.87837800523266,19.3326481514768,0,4,1 -1898,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.58680797531269,19.1076700378988,0,9,1 -1900,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.350298459176,19.2267207256185,0,6,1 -1905,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.90686796489172,24.4489738774538,0,12,1 -1907,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.3984595544171,18.6632698025654,0,7,1 -1909,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.27596551436,24.0713466850842,0,11,1 -1912,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.2813294588123,16.6231951598023,0,5,1 -1916,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.0232456871308,25.15519786394,0,11,1 -1925,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.50910828611813,25.9002369686894,0,8,1 -1927,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.61314907134511,23.7006355004425,0,9,1 -1930,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.0811747219414,22.2660379893087,1,13,1 -1932,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.2095612378325,18.7335180929398,0,5,1 -1935,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.3158361846581,22.9336059305005,0,15,1 -1937,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.94460456003435,23.9095718763906,0,14,1 -1941,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.81176828569733,19.1974156012776,0,8,1 -1943,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.7448425644543,18.9993209725558,0,7,1 -1944,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.82095790142193,22.6696984279991,0,11,1 -1946,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.2168156867847,19.5165020593936,0,10,1 -1948,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.100613770308,24.9201500382162,0,13,1 -1956,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.65624700114131,25.8101570109829,1,13,1 -1959,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.9276398292277,18.8892084065361,0,10,1 -1960,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.87933889240958,24.3494466481994,0,5,1 -1962,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.0529685507063,19.2494204861783,0,4,1 -1966,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.4364560495596,19.4533317661803,0,6,1 -1967,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,9.8417443188373,26.2034372359002,0,12,1 -1969,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.4456363408826,24.511514715087,0,9,1 -1970,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.86069425614551,19.3809980048325,0,3,1 -1972,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.0823731867131,23.3118972763255,0,8,1 -1974,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.3867172307801,26.5132765260773,0,11,1 -1982,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.2703016623855,18.3435379512506,0,9,1 -1983,7,0,2.61803289632224,8,22,-3.4142052009394,92,1,10.112884741975,25.4428699490265,0,8,1 -1984,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,10.3614135344978,19.5774426601963,0,11,1 -1986,7,0,2.61803289632224,8,22,-3.4142052009394,92,0,9.52542121405713,19.5600483510008,0,6,1 -1993,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.5963573823683,24.4297083204303,0,5,1 -1996,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.90958669385873,23.8399442600271,0,8,1 -1997,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.4537416188978,26.8951439146515,1,16,1 -1998,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.1639459619764,27.6004116595858,1,14,1 -1999,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.70532606262714,25.4064249598345,0,11,1 -2009,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.63181906170212,21.3028767164287,0,7,1 -2011,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.98813257017173,27.2088093616429,1,18,1 -2012,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.4346412364393,26.0294866069394,0,11,1 -2015,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.4674061790574,31.0393833432064,1,20,1 -2017,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.66032115835696,22.1513778507405,0,9,1 -2024,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.8248781869188,27.9837373198794,1,18,1 -2027,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.2837333092466,22.6382115658256,0,13,1 -2031,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.1308347529266,23.4983588036925,0,16,1 -2032,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.2695044816937,25.8758123728667,1,17,1 -2033,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.3551934226416,28.1761872760422,1,19,1 -2034,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.4926889042836,20.8113498596742,0,5,1 -2035,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.85793975391425,21.8480056593197,0,6,1 -2036,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.66047863382846,23.8920811023808,1,9,1 -2038,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.82970201619901,27.0825001462647,1,15,1 -2040,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.62112376559526,22.2868897812523,0,7,1 -2042,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.4443062930368,18.8550031228571,1,9,1 -2048,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.51401826692745,28.9098535650793,1,11,1 -2049,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.86271668993868,20.9348976411705,0,16,1 -2053,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.88246000884101,27.6103382579718,1,17,1 -2057,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.2422390505672,29.4879215009055,1,12,1 -2059,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,10.0259176015388,28.3396859569809,1,14,1 -2062,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.53100942936726,21.3478325747737,0,6,1 -2068,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.3932815622538,25.134596234994,0,9,1 -2069,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,9.53975047450513,22.5116187098779,0,7,1 -2077,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.3763921977952,22.52903703252,0,10,1 -2079,7,0,2.61803289632224,8,23,0.0510850805752998,95,0,10.4689687956125,21.1101282381185,0,15,1 -2081,7,0,2.61803289632224,8,23,0.0510850805752998,95,1,9.86792106274515,27.8235964171263,1,23,1 -2082,7,0,2.61803289632224,8,24,0.291326014233072,87,0,9.63230006094091,24.2953776106648,0,3,1 -2083,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.2509012946393,31.1703643505797,1,11,1 -2085,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.3809138338547,22.6933635354885,0,8,1 -2086,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.52761713392101,29.3375453608765,1,23,1 -2087,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.59924204694107,27.2816911880194,1,14,1 -2088,7,0,2.61803289632224,8,24,0.291326014233072,87,0,9.7837523703929,23.5303449707531,0,10,1 -2090,7,0,2.61803289632224,8,24,0.291326014233072,87,0,9.72717078216374,22.0451025806764,1,15,1 -2095,7,0,2.61803289632224,8,24,0.291326014233072,87,0,9.7733960330952,24.7082513661609,0,11,1 -2097,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.193282552762,28.2248710560233,1,10,1 -2098,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.83802328910679,28.2492276963897,1,23,1 -2106,7,0,2.61803289632224,8,24,0.291326014233072,87,0,9.75552036007866,25.1227945540782,0,6,1 -2117,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.4058565511368,21.7021038189013,0,15,1 -2118,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.6612838122528,29.6261819234351,1,22,1 -2122,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.60890205879696,30.0971728971702,1,17,1 -2127,7,0,2.61803289632224,8,24,0.291326014233072,87,0,9.71035253931768,23.8926566005528,0,6,1 -2128,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.94399612210691,25.7229344102318,1,23,1 -2129,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.0250631314702,29.9744589000596,1,15,1 -2132,7,0,2.61803289632224,8,24,0.291326014233072,87,0,9.70322941918857,22.4320406094258,0,6,1 -2135,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.0090537124779,21.1392509086113,0,10,1 -2139,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.2309699479956,26.1634715215168,1,10,1 -2140,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.2122319091577,27.4586087156818,1,16,1 -2144,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.82333519565873,29.3039969116348,1,27,1 -2145,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.1163874978665,23.288278910619,1,5,1 -2150,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.2343382916879,28.0670135246831,1,10,1 -2154,7,0,2.61803289632224,8,24,0.291326014233072,87,1,9.93002762529068,29.4181930405272,1,16,1 -2155,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.3248089035042,22.9562957389389,0,11,1 -2157,7,0,2.61803289632224,8,24,0.291326014233072,87,0,9.95161224645562,25.5809729780239,0,7,1 -2158,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.0198923917487,23.2528027120268,0,14,1 -2159,7,0,2.61803289632224,8,24,0.291326014233072,87,0,10.3508128582034,22.22533774468,0,7,1 -2165,7,0,2.61803289632224,8,24,0.291326014233072,87,0,9.82699004164897,22.7785513869224,1,15,1 -2167,7,0,2.61803289632224,8,24,0.291326014233072,87,1,10.3910208593588,25.2718028021948,1,13,1 -2170,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.3364237998612,28.023305251205,1,22,1 -2171,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.3376262011006,25.305231411424,1,7,1 -2172,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.1477987635881,29.2447483662308,0,13,1 -2175,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.3776495633647,27.3579477828194,1,9,1 -2176,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.8422049023211,27.6986003009091,1,22,1 -2177,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.99832035461441,27.07802185053,1,10,1 -2178,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.71854246989824,26.2694067601146,1,17,1 -2181,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.70630168286152,22.4816083531813,0,9,1 -2185,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.4729484680574,27.0892511031073,1,7,1 -2187,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,10.2376037680078,26.3864850067283,0,13,1 -2188,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.1704653038178,27.1152927313203,1,18,1 -2196,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.74130156077445,23.7206020495159,0,9,1 -2201,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,10.4353317050263,22.0673059447816,0,8,1 -2203,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.94996068649925,27.3115714279932,1,20,1 -2204,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.82197326328605,21.5981971931921,0,14,1 -2205,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.0360299125314,28.9776242977164,1,17,1 -2208,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,10.0291353822686,21.8627762087738,0,7,1 -2210,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.0522519710939,25.9586197315208,1,15,1 -2215,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.4204160245135,28.9246043034642,1,11,1 -2216,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.3357011321932,26.9416305655088,1,18,1 -2218,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.76402667094953,24.5107720179133,0,6,1 -2221,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.64460732624866,21.5463126097396,0,10,1 -2224,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.3427693701815,26.8531599592152,1,17,1 -2226,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,10.418840687722,21.9460462644557,0,3,1 -2231,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.58008622215129,20.2233401955975,0,9,1 -2235,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.53261615918018,22.2891945591322,0,13,1 -2241,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,10.1358176192734,21.636182394122,0,7,1 -2242,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.64253948745318,20.1893841695707,0,8,1 -2244,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.82299074018374,21.9763977448627,0,6,1 -2246,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.4085150288884,25.7219437632019,1,19,1 -2247,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.3183760042302,28.6703794756244,1,17,1 -2248,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.1590149649419,28.9101203723994,1,16,1 -2251,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.81699610734358,28.125489903461,1,16,1 -2252,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.72671811818145,23.4745222102016,0,10,1 -2253,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,10.0096230811905,27.3860477543905,1,7,1 -2257,7,0,2.61803289632224,8,25,-0.510612128401316,103,0,9.81939905299805,22.3774981305233,0,5,1 -2268,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.766830251785,26.673927687035,1,17,1 -2269,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.74819716159254,28.7525715739531,1,10,1 -2271,7,0,2.61803289632224,8,25,-0.510612128401316,103,1,9.84884902462363,26.6567673439965,1,13,1 -2274,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.4686572456267,30.5808731332923,1,25,1 -2281,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.0514462010469,26.8608260628412,1,17,1 -2289,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.0501827294938,29.0050140360922,1,21,1 -2291,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.1500305687077,27.567289170961,1,20,1 -2293,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.57834348524921,26.7975487315564,0,9,1 -2294,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.1897205049172,23.2918178454966,0,15,1 -2295,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.9198627746664,22.7022575558845,0,5,1 -2298,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.60977180046029,29.659558539075,1,18,1 -2299,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.3574427107815,21.3872220241824,1,11,1 -2316,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.69186284090392,26.6859491610001,1,17,1 -2317,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.93210108135827,25.093892756706,1,14,1 -2319,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.84523031977005,28.8703394641253,1,22,1 -2323,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.3208747678436,27.6726245987091,1,22,1 -2332,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.50628302572295,23.1162381691176,0,11,1 -2333,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.0805339987855,23.1493332498286,0,12,1 -2335,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.078240550356,29.8750987588318,1,14,1 -2336,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.2161346932407,29.8155723372518,1,15,1 -2337,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.0946155637503,27.5000514224299,1,5,1 -2338,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.77969586127438,31.6040115432381,1,22,1 -2344,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.4878536665346,29.0317511018775,1,20,1 -2350,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.8881317153573,25.3932573561308,0,8,1 -2354,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.71737005352043,24.3725387997159,0,11,1 -2357,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.4271737029776,29.1348202779689,1,18,1 -2363,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.2258656129707,29.1290679987646,1,17,1 -2364,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.1087122557219,29.4129869216847,1,17,1 -2366,7,0,2.61803289632224,8,26,1.07220473041893,107,1,10.4019563964102,28.3002781718837,1,18,1 -2367,7,0,2.61803289632224,8,26,1.07220473041893,107,0,9.63419089652598,24.7530143829416,0,6,1 -2368,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.1642210029531,25.6849544452311,0,7,1 -2369,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.66966726561077,27.3840847770122,1,28,1 -2371,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.0878072651103,23.8518880613776,0,8,1 -2373,7,0,2.61803289632224,8,26,1.07220473041893,107,0,10.1312344376929,24.962599640285,1,11,1 -2375,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.96983875916339,28.6114795012722,1,21,1 -2376,7,0,2.61803289632224,8,26,1.07220473041893,107,1,9.66185488575138,26.791227054791,1,21,1 -2379,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.85332581051625,21.5437067898736,0,14,1 -2380,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.62282299017534,22.1583364844221,0,5,1 -2392,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.58999488665722,25.8735952046058,0,14,1 -2393,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.62737342342734,21.8316169321949,0,12,1 -2395,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,10.093739150092,22.0874265802724,0,7,1 -2401,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.70486219855957,20.3632337527388,1,5,1 -2402,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.97206256398931,26.694763416376,0,10,1 -2408,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.3509325215127,26.1115170038537,1,11,1 -2413,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,10.1137822489254,21.1774314912153,0,9,1 -2419,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.80903733265586,25.1224015417205,0,13,1 -2420,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.62830159277655,25.0098171735141,1,15,1 -2421,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.3245403489564,27.6251009948632,0,10,1 -2426,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,10.4161218265072,22.9007568469392,0,14,1 -2430,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.4810283551924,25.667219156495,1,13,1 -2435,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.94445269741118,20.3572590430499,0,4,1 -2436,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,10.0164305213839,21.4638331195535,0,5,1 -2444,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,10.1158354450017,24.7006943546541,0,8,1 -2446,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.0587381729856,27.452414938962,1,20,1 -2449,7,0,2.61803289632224,8,27,-1.02771582229369,83,0,9.68165753711946,22.5026796731256,0,11,1 -2450,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.87322197086178,27.0919015912278,1,12,1 -2451,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,10.1235805398319,26.0375996260988,1,15,1 -2456,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.57333607110195,27.8843651800836,1,16,1 -2461,7,0,2.61803289632224,8,27,-1.02771582229369,83,1,9.81869248789735,26.7721975031003,0,12,1 -2468,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.2353878836147,22.7530179731277,1,7,1 -2476,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.62607726152055,21.1532339691119,0,5,1 -2478,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.3479341084603,27.4318700002305,1,17,1 -2479,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.4862026162446,20.3216344884103,0,13,1 -2483,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.1414839578792,19.9146136764561,1,9,1 -2484,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.2945367957,22.0305265016025,0,10,1 -2486,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.64311058237217,22.5763206608678,0,4,1 -2487,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.4823793878313,27.4447265206488,1,10,1 -2489,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.58086270536296,26.041587475035,0,14,1 -2490,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.0872965620365,18.2111771949654,0,8,1 -2496,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.48646396189,21.056993074041,0,6,1 -2498,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.4210348180495,25.3768040978629,1,7,1 -2501,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.0809205486439,25.2351524265241,0,15,1 -2507,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.81883154483512,26.007712166849,1,13,1 -2509,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.60258094384335,22.6438004506038,0,4,1 -2515,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.4808756408747,20.1748883397547,0,10,1 -2520,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.87819276377559,26.4733545147509,0,7,1 -2522,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.91183399432339,25.6700397528618,1,12,1 -2523,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.2156968133058,27.7384750542214,1,15,1 -2524,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.76350175752304,23.7591675295349,0,17,1 -2527,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.66750234854408,20.2705625657492,0,5,1 -2529,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.61980977188796,22.0603400086661,0,5,1 -2531,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.1128090247512,24.677496314882,1,13,1 -2532,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,10.0991600432899,21.7486021380269,0,3,1 -2540,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.64893921045586,24.5216389080387,0,12,1 -2542,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.0870581099298,25.9481213755751,1,9,1 -2545,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.61539472988807,28.1188344049418,0,18,1 -2546,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.2310584820807,25.4594143241603,0,11,1 -2547,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,10.4400713762734,28.4950315970857,1,14,1 -2549,7,0,2.61803289632224,8,28,-1.93504161015579,96,0,9.57875032536685,18.2641380920479,0,8,1 -2554,7,0,2.61803289632224,8,28,-1.93504161015579,96,1,9.72647346486337,25.0402662693346,0,16,1 -2562,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.0697882487439,19.7910663196027,0,7,1 -2563,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.99140063207597,18.9314553676256,0,12,1 -2569,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,10.1713307602331,26.5029131634027,1,11,1 -2572,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.0078519526869,21.0987697214843,0,4,1 -2575,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,10.2774797917809,24.9763125473973,0,16,1 -2578,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.55165217909962,18.7373092823758,0,9,1 -2580,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,10.1439725279342,24.1223278424311,1,8,1 -2583,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.91893387725577,26.8764782791493,1,10,1 -2594,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.60521700675599,28.1795534640761,1,9,1 -2596,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.59272413654253,27.7271634630611,1,21,1 -2598,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.50149758672342,26.2840000230372,1,15,1 -2601,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.88077277643606,25.3962065798674,0,15,1 -2602,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.8293697333429,25.1287865430706,0,8,1 -2603,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.4522029804066,23.8037963722598,0,10,1 -2604,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.0495973548386,20.9972051896322,0,8,1 -2608,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.5284877193626,23.1707242505278,0,12,1 -2612,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.71500238846056,22.4004575500636,0,5,1 -2618,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.70412213401869,25.7242700041466,0,12,1 -2619,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.95630742539652,25.6365406688003,0,13,1 -2620,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.55320186330937,24.1093111891963,1,12,1 -2624,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.53783416887745,22.3383063108381,0,7,1 -2627,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.95523461117409,23.6685343619335,0,8,1 -2630,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.3892455010209,17.3856905582768,0,9,1 -2632,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,10.31483683642,24.2739108988018,1,12,1 -2633,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,10.0974355030339,27.8250106960071,1,12,1 -2639,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.2010043968912,22.7359743332617,0,11,1 -2645,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.96101570059545,27.3704983730474,1,13,1 -2646,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.3908478333615,17.7276087318118,0,4,1 -2650,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,9.56342127523385,24.6944321347848,1,10,1 -2652,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,10.0003642912488,20.6884373698548,0,6,1 -2653,8,0,-0.163954263927099,6,29,0.612097122251373,102,1,10.4406496791635,27.0326966494312,0,10,1 -2657,8,0,-0.163954263927099,6,29,0.612097122251373,102,0,9.91572105069645,21.9646849014862,0,7,1 -2662,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.3925138833001,18.09027361675,0,8,1 -2663,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.373065095162,17.5327064275402,0,4,1 -2665,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.5450801497791,24.2425329271765,0,6,1 -2668,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,10.1809308899101,21.5985012728462,0,10,1 -2669,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.88222100632265,20.8027267965686,0,4,1 -2671,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.3930725464597,18.3044507867,0,9,1 -2673,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.2248574618716,18.5549124250576,0,6,1 -2674,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.98365884833038,16.5621706977316,0,3,1 -2679,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.4494969258085,18.4865578356348,0,5,1 -2685,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.4654479743913,19.5514457705984,0,6,1 -2687,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.1390496043023,19.227595512908,0,4,1 -2688,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,10.050222342601,23.5289533308358,0,7,1 -2692,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.81652967166156,19.9648013213475,0,7,1 -2693,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.1852311587427,18.152872872238,0,11,1 -2695,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,10.394886738155,24.8628304944921,0,8,1 -2696,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.4561300678179,18.298498377187,0,7,1 -2698,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.9269663465675,20.973522138451,0,4,1 -2699,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.9054439929314,23.4422384841684,1,10,1 -2707,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,10.0529554861132,21.0454937218185,0,10,1 -2708,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.79726949729957,25.5298827454031,0,7,1 -2713,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.83656693366356,18.2970652429682,0,5,1 -2714,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.51550431433134,23.4490698683461,0,4,1 -2717,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,10.1013673921116,20.0724161532716,0,13,1 -2721,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.628706949763,18.0494497148789,0,4,1 -2722,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.70446870499291,24.0924293771919,0,6,1 -2726,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.71397210261784,23.652072053574,0,5,1 -2727,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.52584903943352,18.1472324151769,0,8,1 -2729,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.89413527376018,23.4069612890035,0,10,1 -2731,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,10.3244159505703,25.6874412502543,0,7,1 -2735,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.79215601505712,24.0199558493861,0,13,1 -2739,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.8390356884338,22.1705344323669,0,16,1 -2742,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,9.7731828331016,25.0583231741788,1,13,1 -2745,8,0,-0.163954263927099,6,30,-1.14748323418017,92,1,10.2443398137111,25.3467846163566,0,12,1 -2748,8,0,-0.163954263927099,6,30,-1.14748323418017,92,0,9.67953590862453,17.3147070929374,0,4,1 -2752,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.98217757651582,21.3953432593094,1,9,1 -2759,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.57246383232996,27.697022439023,1,19,1 -2760,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,10.438707215013,25.1110643227759,0,17,1 -2764,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.92008466576226,25.5673527219243,1,14,1 -2766,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.83277201838791,23.6392945046773,0,12,1 -2771,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.57776010059752,23.2152121987769,0,11,1 -2773,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.8781355926767,26.0480231578215,1,18,1 -2774,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.0908754018601,22.1331337580608,0,12,1 -2775,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.4834034030791,23.6180861003669,0,10,1 -2777,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.91461703530513,20.9139265004566,0,8,1 -2779,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.69988860050216,22.6367286301221,0,5,1 -2784,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.62870069476776,18.7921777060835,0,7,1 -2788,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.6649328591302,18.9783440776847,0,7,1 -2790,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.3276915813331,22.3916573175495,0,11,1 -2791,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.8453566711396,19.6274795525254,0,8,1 -2793,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.78830195730552,20.0780708610794,0,11,1 -2796,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,10.0110738866497,26.7289290405648,1,9,1 -2798,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.68213030672632,25.8618721945775,1,13,1 -2799,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.0652931758668,19.0214080214251,0,9,1 -2800,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.4906368120573,22.4293093308169,0,8,1 -2803,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.71934130275622,22.1168568169849,0,7,1 -2806,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.0675879244227,18.8609107526611,0,18,1 -2808,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.0632434228901,22.3114652808465,0,4,1 -2810,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.2511198944412,22.2706793938792,0,7,1 -2813,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.86998047237284,27.8036267361131,1,17,1 -2816,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.82831607642584,29.6161673997442,1,15,1 -2819,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,10.2730984941591,26.4095480830201,1,11,1 -2821,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,10.1366569427773,21.5393665436684,0,9,1 -2827,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.88687597680837,21.6726635548724,0,4,1 -2828,8,0,-0.163954263927099,6,31,2.04226758976629,93,0,9.97681099036708,24.0138066866992,0,9,1 -2830,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.69959967769682,25.3290671327237,1,10,1 -2842,8,0,-0.163954263927099,6,31,2.04226758976629,93,1,9.79541740100831,28.0835270102377,1,16,1 -2845,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.1888377501164,24.2055034363154,0,12,1 -2848,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.80239695729688,25.1433244950043,0,9,1 -2849,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.92310863081366,26.0701338022032,0,10,1 -2856,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,9.84536996623501,16.9585090320862,0,7,1 -2857,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.4607127229683,24.2702138563737,1,6,1 -2861,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.4799864420202,16.5359032604288,0,10,1 -2876,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.9923847776372,24.0343884977385,0,11,1 -2879,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,9.5458288572263,19.5709851026448,0,8,1 -2880,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.0676467691083,19.2480172650632,0,4,1 -2882,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.2186435323674,17.8424749276138,0,6,1 -2884,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.0901399091817,19.7431260107098,0,6,1 -2886,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.770116772037,21.9014242976106,0,8,1 -2887,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.92846855008975,24.8285129394493,1,12,1 -2890,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,9.53212062991224,19.5622218006967,0,7,1 -2891,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.79884810955264,24.7474910392074,0,16,1 -2892,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.66638616635464,24.175971175132,1,10,1 -2894,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.2348756710999,20.2702954616446,0,5,1 -2902,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,9.5910710352473,19.3736717670189,0,4,1 -2903,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,9.77011441159993,19.8016244791332,0,7,1 -2908,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,9.92774685658514,19.9311029047562,0,6,1 -2911,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,9.61823028605431,20.1141141179948,0,10,1 -2913,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.1432555257343,23.5232472541238,0,15,1 -2915,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.2299246736802,18.5172345979874,0,5,1 -2917,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.54821786284447,24.9950699639647,0,14,1 -2920,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,9.6654202376958,20.4824674511374,0,9,1 -2921,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.3305369776208,21.8492273740033,0,6,1 -2923,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.4227567089256,23.0136143252074,1,9,1 -2924,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.4159650090151,19.2223950426163,0,8,1 -2926,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.50157280662097,23.1875243357739,0,17,1 -2927,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.4884899482131,20.8563000476827,0,6,1 -2929,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.2974988401402,24.3377996518685,0,13,1 -2936,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.29954215209,22.8618791381707,0,12,1 -2937,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.2119154836982,23.845137248556,1,13,1 -2938,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,10.0852875707205,18.4251931905531,0,6,1 -2939,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.0172096220776,24.7023505044921,0,11,1 -2944,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,10.1444394502323,22.907022828806,0,8,1 -2945,8,0,-0.163954263927099,6,32,-0.610157071170163,105,0,9.71881691599265,16.6495818414545,0,4,1 -2948,8,0,-0.163954263927099,6,32,-0.610157071170163,105,1,9.82272478635423,26.088291107129,1,12,1 -2950,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.89516342617571,19.6249976191009,0,7,1 -2953,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.81873154803179,22.2027909743358,0,5,1 -2954,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.97912377864122,24.9310161409142,1,13,1 -2960,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.85681085078977,25.6975799543364,1,16,1 -2963,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.4375524057541,20.476543815355,0,7,1 -2964,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.61337401205674,25.2631114159786,1,14,1 -2965,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.4636168666184,25.9536561253076,1,11,1 -2967,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.6143702713307,24.4480039371735,1,19,1 -2968,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.80933034559712,22.3057553451808,0,7,1 -2973,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.0537783384789,22.7144460937611,0,10,1 -2975,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.4100704854354,20.4979211377873,0,8,1 -2976,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,9.64263568120077,18.1445354529792,0,9,1 -2979,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.1588841974735,26.1465642344619,1,15,1 -2992,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.1491539904382,19.5390614608339,0,7,1 -2997,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.3958894414827,20.3212638620203,0,4,1 -2999,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.2237001580652,24.8305556898101,1,16,1 -3001,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.1190600777045,22.414190843567,0,10,1 -3005,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.0363424646202,22.3806772122274,0,9,1 -3009,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.1580897422973,26.66775216456,0,18,1 -3010,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.0660964995623,25.4255340185131,1,18,1 -3015,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.308764354093,26.6626595545749,1,14,1 -3016,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.90052532055415,26.7381603005409,0,13,1 -3018,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.155429250095,20.4508315261563,0,8,1 -3019,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.1068741641939,28.2128615939125,0,8,1 -3024,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.4267161483876,22.1810639241775,0,9,1 -3026,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,9.7018596646376,24.3608663965721,0,13,1 -3029,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.4299766449258,22.6172088462099,0,14,1 -3030,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.2939754608087,24.8929846997888,1,17,1 -3035,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.4708545440808,23.5372127531238,0,5,1 -3039,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.1035989567172,17.5908505707217,0,5,1 -3040,8,0,-0.163954263927099,6,33,0.927226128848615,100,0,10.425764353713,19.0758553469095,0,3,1 -3041,8,0,-0.163954263927099,6,33,0.927226128848615,100,1,10.4341313252226,22.7131152502199,1,13,1 -3050,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.54448153241538,25.013065432832,1,8,1 -3054,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.2263149798382,20.1393556883613,0,9,1 -3056,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.84456988796592,18.5986570543715,0,5,1 -3057,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.2428324837238,21.3267364123254,0,7,1 -3060,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.87744222069159,19.8608141846547,0,9,1 -3061,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.4627047481481,22.9012680837422,1,9,1 -3063,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.64782141963951,20.9344512767326,0,7,1 -3066,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.7498376192525,18.8910618288458,0,9,1 -3068,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.0546077371109,17.9408002065233,0,5,1 -3070,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.67794060125016,19.0719804867174,0,7,1 -3074,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.1705500921234,24.4193909623522,1,13,1 -3078,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.79405665397644,19.5554386500223,0,4,1 -3081,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.1790909306146,26.3039234725191,0,12,1 -3085,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.76325117936358,19.0488413190881,0,3,1 -3086,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.4369372413494,21.8967598885173,0,7,1 -3087,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.3807720979676,26.5160834852745,0,12,1 -3088,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.99785125162452,25.2230318225054,1,7,1 -3093,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.3507499417756,23.8107154917838,1,8,1 -3097,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.84076704853214,24.1206417195056,1,9,1 -3098,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.74656529631466,20.8368530370008,0,7,1 -3099,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.2604204642121,17.2399897568633,0,6,1 -3102,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.2994737161789,22.0990191169424,0,10,1 -3104,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.7000597009901,21.0597946656588,0,8,1 -3109,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.73931030463427,22.675419522322,0,4,1 -3110,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.4767516788561,19.1509478812428,0,9,1 -3111,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.70562480040826,22.1781951086649,1,5,1 -3112,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,10.2796721614432,21.8872831400577,0,12,1 -3117,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.79522063815966,27.7744045590257,1,11,1 -3120,8,0,-0.163954263927099,6,34,0.455271076121977,92,0,9.67543377215043,20.4918054568572,0,10,1 -3126,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.2508760807104,23.3677609253256,1,17,1 -3128,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.2985302777961,25.9962963372895,1,13,1 -3134,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,10.2368411326315,24.9652767531821,1,17,1 -3136,8,0,-0.163954263927099,6,34,0.455271076121977,92,1,9.9194528197404,27.6940620589994,1,11,1 diff --git a/tests/testthat/data_files/CLUSTER/CLUSTER_INT3.rda b/tests/testthat/data_files/CLUSTER/CLUSTER_INT3.rda deleted file mode 100644 index 36e59fc7..00000000 Binary files a/tests/testthat/data_files/CLUSTER/CLUSTER_INT3.rda and /dev/null differ diff --git a/tests/testthat/data_files/CLUSTER/CLUSTER_SLO1.csv b/tests/testthat/data_files/CLUSTER/CLUSTER_SLO1.csv deleted file mode 100644 index 938b6cd7..00000000 --- a/tests/testthat/data_files/CLUSTER/CLUSTER_SLO1.csv +++ /dev/null @@ -1,5638 +0,0 @@ -"idPatient","idSurgery","trtGrp","intSurgery","nDoctors","idDoctor","intDoctor","sloDoctor","nPatients","Male","age","BMI","diabetes","incid_rate","private" -1,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3049524140079,27.1011842525805,1,14,0 -2,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.1795612797141,24.3940377654012,0,12,1 -4,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0292895401362,23.2742593068671,1,13,1 -7,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.92325027659535,29.4076327678334,1,16,1 -10,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.1121108476073,26.4289109972882,0,13,1 -12,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.94505161955021,28.6401529584611,1,21,1 -13,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.94177332823165,30.3055105193595,1,18,1 -16,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3243773092981,31.7130994541228,1,27,1 -17,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0420881032478,26.6800896890692,1,11,1 -21,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.71783290593885,25.416080304406,1,8,1 -23,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.73411721689627,25.8636116372454,1,14,1 -24,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2631755804177,25.5162080699303,1,12,1 -28,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2037609696854,27.0705029242602,1,17,1 -30,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4751301284414,26.9099919892854,1,8,1 -31,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.7909255749546,30.7520361333446,1,21,1 -32,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.57616401719861,31.0391602195072,1,19,1 -34,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.58770943107083,28.1438571579134,1,21,1 -36,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.65032420610078,23.1912883035576,1,9,1 -39,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.98874524165876,23.3885665636115,1,13,1 -44,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.67049130378291,24.0670110320785,0,12,1 -46,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.63395929033868,29.0519120259372,1,24,1 -47,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.92206119466573,25.6394736414047,1,16,1 -49,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.8152562584728,25.9715382108794,0,10,1 -54,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.51476300181821,27.7352788406162,1,19,1 -56,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.51794011355378,33.9328096630147,1,21,1 -57,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.1860265315045,30.2116554150664,1,19,1 -61,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2355720109772,29.3578902674401,1,23,1 -62,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.98644753126428,27.8634448062983,1,6,1 -63,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2895171607379,31.7936433269756,1,22,1 -65,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.6325138004031,33.2472765451762,1,21,1 -68,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.57062489632517,31.936837567461,1,13,1 -69,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.50699527258985,28.1176607100304,1,9,1 -76,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.57813284825534,25.3497283763055,1,8,1 -85,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3911834452301,24.7009645857592,1,10,1 -94,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2986681491602,30.9121277853164,1,22,1 -95,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2277928611729,25.2085662648588,1,11,1 -96,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.57322034984827,27.5100323388635,0,14,1 -99,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.76988140912727,24.9502076186614,1,18,1 -105,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.1837010660674,26.0098429481466,0,8,1 -106,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.98756417655386,26.9951910739334,0,13,1 -107,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.74228234076872,24.8432074133493,1,13,1 -108,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2727346322499,31.0348709382443,1,27,1 -112,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.84281040797941,31.7481240684841,1,19,1 -113,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.85872260131873,24.2428714318475,1,8,1 -120,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.314185889205,24.0951908321628,1,10,1 -125,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.80608689319342,30.1587244946674,1,24,1 -127,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.6784424984362,30.192816277629,1,14,1 -128,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.14248584304,25.9214649376186,0,10,1 -130,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0993258005474,27.1949329609681,1,15,1 -131,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2871742704883,29.0647452574785,1,20,1 -134,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2418672759086,25.0396606747566,1,14,1 -135,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3446152459364,29.8463363412928,1,19,1 -137,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.62194155296311,25.485103616121,1,21,1 -139,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.56949991895817,29.4399638210894,1,29,1 -144,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.128725058632,25.0984364283069,1,16,1 -145,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0891300861258,30.3702893011805,1,21,1 -146,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.57773741520941,29.9970964594272,1,19,1 -148,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.97042371379212,32.3289898025903,1,17,1 -151,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.81051541259512,30.7216701143093,1,24,1 -153,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.6078218924813,30.7044627830599,1,27,1 -155,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0289148681331,26.4368650299531,0,15,1 -156,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.1814621947706,26.9347774743583,0,18,1 -160,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.85161261376925,30.4931829674212,1,25,1 -161,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.7268971609883,29.9607884803096,1,22,1 -171,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.82520109927282,31.5142951661192,1,23,1 -177,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.62466819165275,30.6218901860245,1,24,1 -179,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2281150140334,25.9799510476678,1,10,1 -180,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3617136403918,25.3438655987157,1,9,1 -181,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0249475671444,33.0568035563365,1,29,1 -182,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0802534788381,31.2631298545185,1,21,1 -185,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.67064540181309,25.5771313598431,1,13,1 -186,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.96918367012404,24.0034668934291,0,11,1 -187,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0538289409596,31.9553943994204,1,27,1 -188,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.1181577220559,29.3101956929438,1,22,1 -192,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0952230766416,26.3529961962062,1,17,1 -199,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.72128618252464,29.6173124552525,1,19,1 -200,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.89032771252096,25.9407105457702,0,17,1 -201,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4598575870041,29.7491618163097,1,23,1 -203,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.81870510801673,30.6510810097468,1,26,1 -207,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2209386967588,21.4865769987553,0,10,1 -216,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.113505810732,23.1564955186214,0,19,1 -220,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3192546737846,29.8049194168322,1,24,1 -224,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2377341296524,23.1613288756389,1,14,1 -226,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4393804287538,28.7790100865958,1,19,1 -235,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.69628769694827,23.1530478694422,1,15,1 -236,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.76765747345053,23.5284644019918,0,15,1 -238,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.75207359832712,28.8289338556592,1,21,1 -250,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0127070217859,30.7100255343539,1,26,1 -256,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.68426378350705,31.884389669057,1,27,1 -261,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.160086331889,24.9702911661281,1,22,1 -264,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4318627312314,26.7258449833797,0,13,1 -267,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2847599363886,25.5780020919701,0,10,1 -269,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0604908708483,30.1536277464727,1,23,1 -270,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4064361199271,32.5258589683813,1,23,1 -272,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.87470257957466,25.608753168012,0,23,1 -275,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.96153910364956,26.9990413070909,1,13,1 -284,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.97145129228011,22.4908218633168,1,14,1 -291,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.95810812525451,25.5470150259496,0,13,1 -292,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.1426051049493,23.9820428096099,1,16,1 -297,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.96131548820995,24.6554634791061,1,12,1 -305,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.53242859058082,32.0444857778538,1,15,1 -306,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.7966931425035,25.909404879746,1,12,1 -312,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.80813060491346,27.8297075655662,0,17,1 -316,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.64954387885518,30.900964902181,1,16,1 -319,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3665846507065,30.0921210756283,1,26,1 -320,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.70131100248545,25.9286936778191,1,15,1 -326,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3363363000099,24.1765318671559,1,15,1 -328,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.1268690358847,27.0350734886496,1,19,1 -329,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.99312492390163,29.4663402538873,1,23,1 -330,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.50345711479895,33.2415360429022,1,25,1 -331,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.54966762475669,25.6930209702688,1,8,1 -335,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.332960183965,31.3958963215732,1,24,1 -339,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.76489633671008,29.8497828800311,1,17,1 -343,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.72311655757949,30.4333561764824,1,17,1 -347,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.81681807292625,32.7338527924425,1,26,1 -349,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.9885982228443,28.5669565523037,1,26,1 -350,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.99723637290299,25.4863360470217,1,15,1 -355,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.414714186918,30.4713732949569,1,25,1 -357,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2620554496534,26.287261911578,1,18,1 -358,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2974899597466,25.6837246065737,1,12,1 -364,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.99871755042113,25.7805139610371,0,17,1 -368,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.74438235466368,25.2918078639836,1,12,1 -373,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4864159640856,23.8073929348841,1,12,1 -375,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.75380588741973,30.8640633233594,1,29,1 -376,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2499732929282,29.5072652917944,1,24,1 -380,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4744025692344,29.721689888354,1,22,1 -386,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.91673775226809,30.2637105926637,1,20,1 -388,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3258081714157,31.6831344783676,1,23,1 -391,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2621890245937,29.0823397697919,1,11,1 -395,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.90621915366501,24.0407645014651,0,9,1 -397,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.92716835136525,23.5724458837828,0,13,1 -398,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.65232133050449,23.0280217822167,0,17,1 -405,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.5336804476101,25.9394880319488,0,16,1 -407,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.330531458836,25.7541655015108,1,14,1 -414,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.62181030004285,25.1114265017876,0,6,1 -418,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0086386071052,29.1898457704249,1,16,1 -423,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4028540325817,24.5872550121057,1,11,1 -424,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.72434532665648,23.2791843579356,1,8,1 -429,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3030105051585,25.0408937439221,1,13,1 -435,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.115222503664,32.9591369472341,1,20,1 -442,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2670113411732,31.1471154916843,1,18,1 -444,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.1723288611975,23.2919870667353,1,21,1 -448,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.88106403220445,29.2898826640823,1,25,1 -453,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2490741689689,26.2695041765003,1,16,1 -458,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.75032730028033,30.6370161895125,1,25,1 -459,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.55070616584271,27.6760950301953,1,14,1 -460,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.50420951051638,31.2968055301888,1,15,1 -463,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.85516208293848,31.6765928658263,1,23,1 -470,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0970383521635,26.120417838094,1,10,1 -473,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.67638753261417,24.7491519579165,0,15,1 -474,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.72085747914389,24.1682860389791,1,12,1 -478,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4630996861961,28.6618627310629,1,20,1 -480,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.68671306665055,30.9922685938985,1,20,1 -483,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2410419571679,26.9426459707333,1,19,1 -485,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.62977994885296,31.6496700495547,1,20,1 -487,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4252532857936,29.6623871520479,1,20,1 -491,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.79443337046541,25.5094911833356,1,12,1 -493,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3138241316192,30.8897776596618,1,25,1 -497,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.67780981585383,29.5811354375537,1,23,1 -504,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0355647404213,26.8648545347816,1,12,1 -506,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.68766504176892,32.9389909186346,1,13,1 -509,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0532139777206,25.653630863748,0,11,1 -512,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.54286122787744,31.343224070835,1,15,1 -521,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.99432021332905,29.0458361314658,1,18,1 -522,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.65817964775488,34.2011575316935,1,39,1 -523,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4591075782664,30.2415766261526,1,16,1 -526,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.2951913068537,36.2770539044231,1,32,1 -528,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.61142079206184,34.320882314026,1,25,1 -531,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1013615084812,29.8771646122416,1,21,1 -533,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.90529810707085,30.2584083115259,1,20,1 -541,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.84764018491842,34.9624061977253,1,22,1 -542,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.3478098884225,29.2842360375386,1,18,1 -546,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.93032684084028,27.9156086627647,1,15,1 -551,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.62481626612134,28.7700738826159,1,13,1 -553,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0212232761551,37.7902492718168,1,36,1 -557,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.75523330527358,32.4901586929848,1,28,1 -559,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4082596336957,24.3751609929965,1,22,1 -560,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0163759738207,30.1062060135958,1,17,1 -561,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.74219233472832,33.2265499329186,1,35,1 -567,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.82236717664637,31.1271989400366,0,15,1 -570,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2617974479217,29.523185066209,1,20,1 -573,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.64387532323599,32.2949235609818,1,32,1 -582,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.78844718751498,31.881248068114,1,17,1 -583,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.59969580546021,28.7730090386916,1,12,1 -587,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.88204481452703,34.2440370118944,1,34,1 -588,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.3995280102827,26.7103417020389,1,15,1 -590,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.77115828311071,27.9828941805324,1,12,1 -592,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.71174493129365,29.7019850178679,1,22,1 -594,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.82802197174169,28.022437990693,1,16,1 -595,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.75103585026227,35.051345034401,1,30,1 -603,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.91807647328824,33.3361500674099,1,31,1 -607,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2991276322864,29.9812849190677,1,16,1 -613,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0856912010349,32.8414344962214,1,30,1 -615,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.84430745337158,27.914616526098,1,20,1 -616,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.97798664332367,32.1479780590467,1,32,1 -624,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.71606677421369,30.6851982541672,1,27,1 -626,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.5435067366343,29.738549065099,1,26,1 -629,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0534149894956,29.7959416425294,1,16,1 -636,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.72603494976647,28.3581850249253,1,10,1 -639,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1111554091331,30.468611129331,1,14,1 -640,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.014387114672,32.7859735370603,1,31,1 -644,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.71946740616113,27.7301960752143,1,16,1 -646,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.3819674097467,31.0201368139821,1,24,1 -649,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.92072277795523,29.506557330623,1,15,1 -650,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4939612841699,27.9143595684846,1,22,1 -652,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.84241582336836,29.6590338488278,1,23,1 -653,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0497735731769,36.3025313568477,1,30,1 -654,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.3310372512788,35.0695585126518,1,28,1 -661,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.82180631323718,29.6826688909082,1,18,1 -662,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1060227374546,34.9394738332278,1,20,1 -664,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.3458310971037,30.1372785572955,1,16,1 -666,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.9498561960645,27.4548880866354,1,22,1 -669,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1189417096321,28.9806158734912,1,14,1 -672,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.70593409007415,36.1558758585939,1,31,1 -682,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1356599365827,30.7600508579235,1,22,1 -683,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2150699987542,30.4562446075315,1,22,1 -684,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.8675501649268,28.2489297246166,1,19,1 -686,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.3871667252388,32.948010272916,1,27,1 -689,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.67951237224042,35.165887555781,1,26,1 -693,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.83670152467676,27.2899206434383,0,21,1 -694,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0880330640357,29.1248110709542,1,17,1 -696,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.53666522074491,32.9697101477796,1,27,1 -698,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.50540096918121,27.4430627591668,1,16,1 -699,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4851666020695,29.686269238189,1,25,1 -701,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.55258267186582,34.7494383456028,1,30,1 -704,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.76917707500979,28.953520289525,1,17,1 -705,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0744859981351,36.3633217697825,1,36,1 -706,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4380219911691,27.9931417053168,1,19,1 -711,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.32865903317,35.9291757600738,1,22,1 -712,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4248738905881,33.530424625493,1,33,1 -714,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.88583694119006,36.4271346488371,1,40,1 -715,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1110454560257,28.6214670240423,1,22,1 -716,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1992011633702,31.2547765312201,1,22,1 -720,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.68962429533713,27.6893926333585,1,27,1 -726,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.3100394746289,29.8371773342004,1,20,1 -732,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4187040359247,29.9568920104425,1,13,1 -733,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.86922397254966,28.9192840845107,1,15,1 -734,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1880392786115,28.2390532901459,1,26,1 -738,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.51005250192247,32.1251715168676,1,38,1 -740,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2795644670259,30.6313112349672,1,14,1 -741,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.56768323038705,32.8927171366219,1,51,1 -744,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.2017362962943,33.2531758207598,1,29,1 -745,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4185990896076,32.5640878879884,1,28,1 -748,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.95638827164657,29.6259806817951,1,16,1 -749,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.74999944353476,30.3426220274963,1,21,1 -759,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4772872934118,30.2803393717826,1,22,1 -760,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.67822907818481,34.8025418564098,1,30,1 -761,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0898728391621,27.1891644110459,1,21,1 -762,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.8100116646383,35.0578894685015,1,38,1 -765,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.3450782229193,32.6439737712384,1,23,1 -766,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.74422990088351,26.9169766361454,1,19,1 -767,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4109817261342,26.2670550064815,1,14,1 -775,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.2754658535123,34.3982847027773,1,40,1 -777,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1433271747082,30.6036999855815,1,18,1 -778,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.028902324615,26.8652837749256,1,19,1 -779,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.80916958092712,29.903930643554,1,19,1 -780,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.51396150910296,34.2831902687864,1,25,1 -785,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1336226279382,31.9811735305552,1,25,1 -791,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.98127658222802,29.5190148065017,1,15,1 -793,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4674732224084,32.7432076562522,1,20,1 -799,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.54494994995184,36.2811206319413,1,45,1 -801,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0901505912188,29.8066266591678,1,18,1 -802,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.56010586069897,31.479698204929,1,18,1 -812,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4610352390446,35.7473828411244,1,36,1 -815,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.94654897670262,32.6883451725627,1,28,1 -817,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.68143987981603,33.3102450053983,1,42,1 -826,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4907248290256,34.1459179307228,1,28,1 -838,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.51711883139797,29.3897494424989,1,20,1 -839,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.8661291457247,28.360406655585,1,26,1 -841,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.71144640888087,31.7020096529027,1,28,1 -842,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.3552900664508,30.2621007459163,1,24,1 -849,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.98216389119625,31.8395259251775,1,16,1 -852,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.95755639555864,33.8944039841082,1,43,1 -858,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4772978755645,36.2347359662771,1,34,1 -860,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4213716648519,26.8938978193044,1,17,1 -861,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2283479236066,29.5541092728401,1,15,1 -862,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.3024102814961,35.6013895692833,1,24,1 -866,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0174680599011,34.2723216069991,1,21,1 -871,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.84538008994423,27.3167071525969,1,24,1 -872,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.65370896877721,35.7293555416991,1,34,1 -874,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.56133693666197,27.6997330974049,1,17,1 -876,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.9907858602237,25.8608689595947,1,23,1 -879,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.70464403997175,29.5109140624137,1,14,1 -881,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0796182029881,33.4067834987955,1,32,1 -882,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.80360670690425,28.6344332947268,1,19,1 -884,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.98260354949161,34.5184375273109,1,36,1 -885,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.58981216838583,36.7347790317741,1,26,1 -889,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1167047349736,34.8649995528453,1,35,1 -890,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.93167914776132,31.6365727271475,1,31,1 -896,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4942943640053,32.8913132985189,1,27,1 -899,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0505056006368,36.3621411841275,1,20,1 -900,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0425154492259,25.9676165335266,1,18,1 -906,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.79676887602545,34.4212779290567,1,28,1 -913,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.83779655536637,34.9476115497221,1,29,1 -914,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.3343909720425,36.8315788833665,1,25,1 -915,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4919602626469,28.3997208649018,1,15,1 -916,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.66610778798349,34.2990528876879,1,29,1 -917,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.89736623363569,32.6215967497752,1,38,1 -921,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0616525369696,33.8241227179373,1,26,1 -922,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.53130653849803,31.4829743365917,1,37,1 -923,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.7982246640604,35.0219438435541,1,29,1 -926,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2919902235735,30.3676525311454,1,19,1 -932,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.66021223901771,35.7212208642556,1,26,1 -933,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.87241846974939,29.2721617881335,1,17,1 -934,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.85662417206913,30.2333329326623,1,25,1 -935,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.7274899664335,29.1492624002225,1,21,1 -940,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.52430047118105,32.7448697835037,1,36,1 -945,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2123304400593,27.9130138139916,1,25,1 -948,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2907937751152,29.0776302791708,1,18,1 -954,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.68628438748419,33.2008028842345,1,28,1 -958,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2164010577835,30.7669521273937,1,18,1 -960,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1618706206791,28.4297566310752,1,11,1 -964,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.89199382578954,29.256598126801,1,26,1 -966,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.74119913135655,27.8467972941994,1,12,1 -969,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4901304151863,32.1569371215293,1,34,1 -979,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4414310879074,31.4979226142998,1,30,1 -984,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.8244242197834,29.5341190174464,1,15,1 -987,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0399817333091,33.0559556021876,1,30,1 -990,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.88049975433387,26.8041725794592,1,24,1 -991,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.69564873841591,34.3456269308536,1,32,1 -993,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.65822954499163,27.2456305731024,1,15,1 -994,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.51916647003964,29.517487730228,1,27,1 -1001,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1206787750125,35.4828706599969,1,34,1 -1003,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.926241008332,33.364212032433,1,28,1 -1008,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.66701825661585,33.0308097328318,1,33,1 -1010,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1516889501363,34.6921471478858,1,27,1 -1016,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.89201795170084,39.628451041632,1,48,1 -1019,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.69816086511128,38.0844653785498,1,46,1 -1021,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.51114887092263,40.094187126619,1,47,1 -1029,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3282512165606,31.2637788116268,1,22,1 -1030,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.3705773279071,37.0138777556328,1,43,1 -1031,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.66162905888632,35.1879755864134,1,47,1 -1037,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.98554821661673,39.7785778957921,1,45,1 -1041,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4492635393981,33.7994958380371,1,31,1 -1045,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.517387697706,31.7591292617979,1,35,1 -1048,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.3074546060525,39.1522382543277,1,55,1 -1049,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3896568187047,32.4590970266659,1,30,1 -1051,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1311129033566,38.0659427919317,1,40,1 -1054,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2172751135658,31.9161821203866,1,36,1 -1056,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.88916756468825,39.7845699571234,1,44,1 -1062,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0110912730452,36.632984677582,1,39,1 -1066,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1473257604521,33.8067853913929,1,24,1 -1067,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.93620970938355,32.6753194778449,1,20,1 -1074,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.96275526820682,35.1023729286183,1,29,1 -1076,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.79674174031243,33.1753413709827,1,27,1 -1077,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.68588255997747,36.781512554882,1,46,1 -1082,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.69266929733567,37.3788723090021,1,43,1 -1084,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.83430747804232,39.2931894652139,1,51,1 -1085,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3338562487625,35.3451511103769,1,25,1 -1087,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1071413811296,34.3758468772743,1,20,1 -1089,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.63879950297996,32.4982572264598,1,32,1 -1091,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.53709325031377,35.8270693110726,1,48,1 -1093,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.75440471549518,39.6352559839638,1,58,1 -1099,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.0500769226346,34.5521505641923,1,22,1 -1102,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.52217968693003,39.5991568694503,1,44,1 -1107,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.68017976055853,36.1416286333138,1,23,1 -1109,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.77546371519566,32.9937874071176,1,26,1 -1110,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2651552057359,32.4850948505595,1,26,1 -1113,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1038181716576,33.0450933728932,1,28,1 -1114,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1109579645563,40.5724831480512,1,47,1 -1117,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.157953009475,34.2064081290921,1,18,1 -1118,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.76524347532541,33.7982721852354,1,35,1 -1120,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4973522212822,38.3721512691658,1,59,1 -1121,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.61123612476513,35.6724864669551,1,39,1 -1122,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.50131405633874,39.0503486820952,1,51,1 -1125,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.53512588259764,36.9592247545699,1,58,1 -1126,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1629860519897,35.2449550875485,1,30,1 -1128,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.97210761066526,34.8774950140744,1,22,1 -1132,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1556998174638,39.8930677537324,1,44,1 -1133,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.83194479346275,32.1187629385607,1,36,1 -1142,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.96571102063172,36.6055776410313,1,53,1 -1144,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.87055445369333,34.2644822650293,1,32,1 -1151,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.3003699360415,38.0375252535969,1,48,1 -1153,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.99846816621721,33.7285376062252,1,28,1 -1154,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1004653908312,32.8360575194439,1,21,1 -1156,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.97258804924786,34.1493478063853,1,31,1 -1159,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3559464919381,31.3148000168698,1,29,1 -1172,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.58002040535212,34.3559120779247,1,26,1 -1173,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.95100191840902,32.4376940643921,1,30,1 -1174,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.63208562834188,32.1096875203109,1,34,1 -1178,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2492933317553,37.4628617739746,1,42,1 -1180,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3168988730758,32.7207973990756,1,23,1 -1185,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3688133268151,33.0859002035084,1,29,1 -1186,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.0753533691168,34.9126749339353,1,25,1 -1190,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.90473623550497,36.8090914699652,1,44,1 -1192,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1334068253636,38.1113426915222,1,43,1 -1195,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4784450985026,40.0220300304776,1,32,1 -1196,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3109630502295,33.8718923346774,1,31,1 -1199,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.69992491253652,41.0247457589686,1,32,1 -1205,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.94790435791947,32.2793176948742,1,34,1 -1206,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.72652393230237,34.5493905615207,1,26,1 -1207,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3664901105221,34.2684996331404,1,20,1 -1211,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.84953589527868,31.2078525829101,1,17,1 -1212,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.94724190724082,33.1433633336024,1,20,1 -1215,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.75217321584933,32.5927280122594,1,19,1 -1220,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.59771123412065,37.3774375887399,1,43,1 -1225,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.63284151046537,37.5878448823439,1,47,1 -1226,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.72662620083429,39.3868847279499,1,57,1 -1229,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.61509082582779,37.437398529793,1,45,1 -1231,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.70088776992634,34.0183001472376,1,29,1 -1234,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.53309348947369,38.8414459386769,1,43,1 -1235,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2341943737119,34.9512206333799,1,34,1 -1241,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.80369459465146,34.0461869915165,1,26,1 -1243,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2715374177787,37.5488064551072,1,44,1 -1244,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.66515607829206,40.7689500506622,1,41,1 -1246,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2752425072249,37.9228457247515,1,49,1 -1248,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.52789377514273,40.2353246363883,1,43,1 -1250,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.97277949354611,34.4927987444833,1,25,1 -1251,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.59989848127589,35.9692280242248,1,21,1 -1252,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.56383508234285,37.7183804048005,1,44,1 -1255,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.81013576616533,33.3100032934299,1,22,1 -1260,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.63139015878551,32.7712367388496,1,21,1 -1261,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.70797646092251,38.0115289577487,1,57,1 -1262,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1572497189045,38.3471818242497,1,36,1 -1263,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.55183996539563,34.1559995132016,1,31,1 -1267,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.9572837036103,36.9310596477854,1,43,1 -1269,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.88986624404788,33.6102652991132,1,32,1 -1272,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.0712646662723,33.7685761108182,1,29,1 -1275,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.3493239302188,41.1263191169127,1,44,1 -1276,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0636841575615,37.6030757795681,1,48,1 -1278,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4995160051621,36.9864864777463,1,57,1 -1281,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.82678208244033,31.5333910301018,1,29,1 -1287,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0729644121602,36.6761386686834,1,41,1 -1294,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.71651996253058,34.1453231835211,1,38,1 -1295,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.5182096902281,32.0838582840445,1,29,1 -1299,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.56691153510474,35.0513692132783,1,26,1 -1301,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.76567401294596,31.9831302977074,1,28,1 -1302,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.80751719302498,39.2915255331898,1,36,1 -1306,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1458319528028,33.3075697781147,1,21,1 -1307,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4220692433883,38.0723900752583,1,41,1 -1308,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.5508865872398,31.2940841161606,1,29,1 -1309,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2492077527568,38.5885476492728,1,51,1 -1312,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.0217094593681,33.4986174527643,1,35,1 -1319,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.66182354651392,31.3192791313023,1,31,1 -1323,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.99719328805804,39.9792697458127,1,41,1 -1324,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2562036879826,39.1989569792817,1,47,1 -1326,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.92613118095323,39.3115254898719,1,43,1 -1327,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2410463802516,33.3348013728481,1,26,1 -1328,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2735984455794,38.4085900741409,1,42,1 -1329,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4638708808925,33.2540376857258,1,28,1 -1333,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2791869877838,34.3685920368012,1,26,1 -1334,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2362339242827,32.9870757738231,1,21,1 -1341,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2767684811261,32.0456735419774,1,32,1 -1343,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.79814775567502,32.5285566776573,1,24,1 -1346,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.73061066912487,38.0348484053003,1,41,1 -1349,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1804720817599,37.5263790377397,1,36,1 -1352,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.88657738408074,38.9450195763409,1,53,1 -1355,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.91775225056335,31.5482181013134,1,29,1 -1362,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.63450923538767,38.1801793723017,1,45,1 -1365,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1454035155475,37.9839961303133,1,47,1 -1369,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.6423915985506,31.9923741766212,1,27,1 -1372,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4856286505237,39.2478046312301,1,48,1 -1380,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4427415241953,32.5823989016385,1,27,1 -1382,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2364976278041,35.2642103217974,1,19,1 -1385,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.97216897876933,38.1038838039135,1,46,1 -1392,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.94201276195236,38.9279466961016,1,43,1 -1408,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4029569546692,34.5484307913659,1,25,1 -1417,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.69260925124399,33.2399272635807,1,26,1 -1420,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.80116493580863,33.0622881245181,1,26,1 -1423,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.81663144961931,37.2011812320369,1,47,1 -1424,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.97264637309127,36.5318467883909,1,38,1 -1426,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.76022069086321,33.0658535183933,1,25,1 -1429,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.99802197236568,34.0391592869552,1,32,1 -1430,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4582625478506,34.6440282852039,1,21,1 -1432,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.61338347522542,38.8480497670157,1,42,1 -1433,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.96350476634689,33.5079657122211,1,24,1 -1434,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.0212561276276,33.863335149871,1,27,1 -1436,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0363888118882,38.171014073403,1,48,1 -1438,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2110397338402,37.9190347735745,1,35,1 -1443,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.53144358634017,34.300736432384,1,28,1 -1448,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.73461374198087,31.3268080516326,1,27,1 -1450,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.88866259297356,39.5313197635879,1,50,1 -1451,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.95639725518413,33.4913168274763,1,21,1 -1453,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4035357269458,36.9958563480657,1,51,1 -1456,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.160066555487,35.4081669169453,1,44,1 -1471,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4911792059429,33.1552156735399,1,29,1 -1474,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.77199119818397,30.8302995060504,1,29,1 -1477,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4738709060475,38.7361729716906,1,38,1 -1480,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.230146617163,33.8853903918533,1,22,1 -1482,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.60883352439851,32.8276250979584,0,24,1 -1483,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3356512100436,31.9238819784599,1,17,1 -1488,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4696150855161,33.0072680106068,1,22,1 -1491,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.6245999103412,31.3800072377048,1,25,1 -1498,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.53661773959175,32.4990700495599,1,22,1 -1502,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.86182585870847,38.7509286450053,1,49,1 -1504,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1672233527061,31.7607684324432,1,32,1 -1506,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.78064387431368,32.1033975010291,1,29,1 -1515,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.89702061377466,31.6251224020879,1,18,1 -1520,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.73346813279204,26.2596413241482,1,19,1 -1521,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.60584185388871,36.5802646848344,1,27,1 -1524,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.92379455640912,36.5473939489615,1,32,1 -1528,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.34614339564,33.5454734251959,1,31,1 -1529,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1582860876806,33.1606645151374,1,43,1 -1530,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.97336341254413,30.4085364551583,1,14,1 -1532,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.024397525005,32.682839227909,1,22,1 -1534,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0976454939228,36.8589243793001,1,34,1 -1536,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3879872593097,30.8434939240308,1,23,1 -1540,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.65761383995414,32.4837551471445,1,23,1 -1541,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.83885891572572,37.5271182288694,1,34,1 -1542,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2234236344229,31.3239369563319,1,11,1 -1546,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.93322284263559,30.3204097913565,1,15,1 -1549,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.7128591213841,28.9391517241656,1,19,1 -1550,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.54876873991452,34.8001883615082,1,29,1 -1552,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.98166368715465,30.177226659659,1,26,1 -1556,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.2320027917158,34.6479362677103,1,24,1 -1562,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1703046150506,34.1352557741506,1,33,1 -1563,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1368406815454,30.9177094753414,1,17,1 -1566,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4258701873478,33.6760045944104,1,29,1 -1568,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.92475967667997,35.4916255919342,1,38,1 -1569,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.68546192557551,35.8404555503833,1,32,1 -1572,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.52199468389153,29.7124689585889,1,16,1 -1576,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1045808871277,29.5249125901859,1,28,1 -1579,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.2982223064173,37.8120767685312,1,31,1 -1585,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.79886145680211,30.4998240723804,1,21,1 -1592,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.62494929181412,29.4070608488132,1,18,1 -1601,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.68823135830462,33.6976969811612,1,34,1 -1603,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1636437254492,29.5014597756702,1,20,1 -1606,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.50395715236664,36.2681024615141,1,37,1 -1608,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.295024139341,28.6548301825516,1,16,1 -1614,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2172624017112,31.0307891211368,1,24,1 -1615,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1465743354056,28.5448766117637,1,30,1 -1616,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.51036579301581,35.6031600766985,1,37,1 -1617,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.136746465927,38.6855512768402,1,27,1 -1619,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.66860582004301,35.5465886054926,1,28,1 -1620,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4740318106487,30.2372723091869,1,25,1 -1622,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.69691437925212,32.434453000983,1,18,1 -1623,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.58930761669762,36.2756046010237,1,44,1 -1625,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4299026699737,36.4421054811472,1,46,1 -1626,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4969411017373,35.3374058528111,1,28,1 -1635,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.91289232042618,30.5231399388517,1,17,1 -1636,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.85676823696122,34.6962489921753,1,31,1 -1639,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.72064696368761,30.0458455640237,1,15,1 -1640,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4380381130613,34.1008926100665,1,40,1 -1642,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3761015434284,34.6605803544619,1,27,1 -1648,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.324231759645,29.5986294284861,1,17,1 -1651,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.92522080149502,30.6756983421138,1,19,1 -1654,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.6752526613418,34.7117034898572,1,30,1 -1656,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.67861877428368,34.9027713339301,1,31,1 -1660,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.81142204976641,30.5662960867174,1,18,1 -1662,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.61640424653888,33.8304947610364,1,41,1 -1663,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1475085692946,30.7266294008152,1,13,1 -1664,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4472152281087,32.8113947640782,1,34,1 -1667,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.60036017140374,30.2107625804998,1,21,1 -1677,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.81537019019015,31.8511732829958,1,17,1 -1680,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0267538488843,28.2626813281978,1,19,1 -1681,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.88028839230537,37.3593826549966,1,26,1 -1682,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.85580297186971,35.0938399931121,1,38,1 -1690,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.85956620820798,30.1192642848534,1,24,1 -1694,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.72781264339574,28.8737233333828,1,21,1 -1696,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2446211804636,31.2946824092038,1,16,1 -1697,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.264717603568,34.3391521056459,1,38,1 -1699,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.9494132574182,34.4721045867462,1,42,1 -1703,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3494785036892,28.7145413411867,1,19,1 -1710,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.60976803442463,32.0017776078214,1,20,1 -1712,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.79023973084986,31.2188267838559,1,28,1 -1713,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.70108204800636,33.7023796102993,1,35,1 -1714,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1030795823317,36.5949047206709,1,39,1 -1717,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.56727433041669,36.7011950071615,1,31,1 -1720,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1585218380205,32.0731305932297,1,18,1 -1728,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.91167340823449,29.2867606033548,1,16,1 -1733,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0881834526081,32.4356234079288,1,20,1 -1735,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.88297606771812,37.684535696948,1,37,1 -1738,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0322428166401,30.8442652659327,1,16,1 -1739,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1655639170203,28.3152294576218,1,24,1 -1752,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2967557213269,30.9234709083859,1,21,1 -1755,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3796050786041,29.4229304253211,1,16,1 -1757,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.6930170066189,34.072157022697,1,23,1 -1763,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.58944712090306,30.1836950194678,1,19,1 -1765,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4977961508557,31.9408602356126,1,21,1 -1766,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.51981758070178,29.0162418967266,1,21,1 -1770,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4004562026821,32.7525634460695,1,16,1 -1771,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.5291968032252,35.7619605770791,1,29,1 -1774,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3621969409287,33.273843876495,1,35,1 -1779,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3143769071903,29.0204684516995,1,19,1 -1783,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.94520832109265,33.6125101705503,1,34,1 -1787,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3757926840335,35.5119471455001,1,34,1 -1792,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0647326796316,30.5529397116039,1,20,1 -1793,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.86237580748275,28.5241178452017,1,18,1 -1794,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.80346428393386,32.07613704703,1,17,1 -1797,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1959937205538,37.3139050960168,1,47,1 -1799,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.89979274896905,36.3500591400494,1,29,1 -1801,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3778068150859,34.7043072801032,1,42,1 -1804,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.8214761975687,37.340930504791,1,29,1 -1809,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.99434077949263,36.5581565053566,1,31,1 -1820,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.73360054800287,28.2518683079384,1,21,1 -1822,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.2640740871429,35.3067784466137,1,32,1 -1825,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0252856698353,33.9205919668139,1,32,1 -1827,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.59778909827583,32.6189337829752,1,27,1 -1829,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4161353439558,30.6622193760558,1,15,1 -1830,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0703076426871,30.3093497988473,1,17,1 -1832,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0689196961466,30.5367712685444,1,17,1 -1836,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.58095968933776,30.3777515198737,1,24,1 -1838,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.84603912127204,27.0320881291423,1,18,1 -1840,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.58196677127853,34.5720817961495,1,31,1 -1841,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0311711330432,35.1695464518773,1,33,1 -1842,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.91873754118569,34.1512907039451,1,27,1 -1844,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.62027040100656,28.9304504554655,1,21,1 -1848,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1094599873759,34.424313384738,1,38,1 -1849,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3882876811549,29.6165071433297,1,23,1 -1850,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.2334193761926,37.7630038701068,1,32,1 -1851,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.52922144858167,35.8121308434724,1,47,1 -1854,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0065010129474,36.0285463786103,1,38,1 -1856,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.97893598675728,35.9616566359723,1,32,1 -1858,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.8433623269666,29.8459240255145,1,27,1 -1859,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.2459301771596,34.1489799484158,1,31,1 -1862,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.56061357213184,37.599999927401,1,45,1 -1863,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.2324243662879,34.6967793612395,1,40,1 -1865,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.97631250461563,30.9423908381702,1,8,1 -1866,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.8772005259525,34.6551599202686,1,31,1 -1868,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.54004728375003,34.0362551182822,1,35,1 -1870,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.2177033005282,33.3294650530912,1,40,1 -1872,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.58377000782639,28.2315441172755,0,27,1 -1873,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.58954891492613,28.4724629555188,1,19,1 -1875,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4584734092932,28.8063448367119,1,27,1 -1882,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.60281608183868,30.0421975071428,1,17,1 -1885,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4590635518543,35.1420869355807,1,40,1 -1886,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.5368624413386,30.6714165197044,1,20,1 -1890,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3454326586798,29.92640787543,1,15,1 -1891,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.67177839903161,30.2557044244521,1,23,1 -1892,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.99772571749054,36.9682836615245,1,37,1 -1897,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.2769477139227,35.365265240685,1,41,1 -1901,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.63182034669444,33.6014309451112,1,34,1 -1902,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0695719325449,30.4577601309434,1,28,1 -1903,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.68169857491739,33.2883218951112,1,30,1 -1906,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.2560197524726,34.3816187570875,1,37,1 -1910,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0007184203714,34.5689100174993,1,31,1 -1911,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.2241229212377,35.1117627837811,1,28,1 -1913,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.9410097678192,31.6703521455071,1,18,1 -1915,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0286869271658,34.4957058164682,1,36,1 -1917,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.50074690883048,29.1440824436379,1,19,1 -1918,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.56240863422863,30.4697290284876,1,33,1 -1919,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.57521062437445,29.3837347466224,1,15,1 -1921,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.75889003276825,34.6391181978778,1,39,1 -1922,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.78827876131982,34.847385193415,1,46,1 -1926,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.558377541136,31.9605678839439,1,19,1 -1928,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.60065223579295,30.8165674713175,1,26,1 -1931,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.89276167866774,29.5716475253429,1,26,1 -1933,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.64700209908187,35.7644968278686,1,38,1 -1939,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3760111485608,36.4774562354298,1,38,1 -1945,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1858219946735,34.4535088881924,1,33,1 -1947,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1340995195787,33.2028556655649,1,30,1 -1949,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1509631283116,27.8570524471954,1,17,1 -1951,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3102962668054,31.5017680212055,1,24,1 -1952,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.57066038344055,35.015841874128,1,26,1 -1953,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4247919383924,30.5527451271123,1,19,1 -1954,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3531272704713,30.4516897681519,1,18,1 -1955,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4850105126388,31.2226920977296,1,21,1 -1958,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.099958416773,36.7509929616406,1,22,1 -1961,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.445038707694,30.7761716685945,1,20,1 -1965,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.65401449217461,34.9470150824959,1,35,1 -1968,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4595372236799,28.5999165088488,1,20,1 -1971,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.93999988515861,29.240724085809,1,21,1 -1975,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3230585395359,34.2592798584664,1,23,1 -1977,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1575095190201,29.8907699739596,1,15,1 -1979,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.86493967287242,31.5891953138861,1,25,1 -1980,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0365651829634,37.163892040534,1,33,1 -1981,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0969129921868,29.6406479161677,1,14,1 -1987,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.52686413587071,33.6898645690751,1,35,1 -1988,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3867623663973,32.7170543372569,1,22,1 -1989,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.88660266855732,33.1252355959418,1,44,1 -1990,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0506020882167,34.6289860999649,1,26,1 -1991,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.52530235773884,33.7626467335192,1,41,1 -1992,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.61140534025617,27.7689733181655,1,16,1 -1994,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4742575359996,29.9393277292082,1,28,1 -1995,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1548299749848,35.001406080073,1,24,1 -2000,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4680861523375,30.344627795121,1,19,1 -2001,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0068217297085,28.7737172107455,1,30,1 -2003,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.63963702647015,28.4173038169854,1,16,1 -2004,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.88549437187612,28.1169553423608,1,13,1 -2005,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.4967151156161,34.7351010817426,1,30,1 -2006,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3360739613418,27.6483926665565,1,15,1 -2008,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3981145222206,28.0018397373557,1,14,1 -2014,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3581793280318,31.3323751439724,1,17,1 -2016,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.2063468878623,31.7860737690262,1,37,1 -2019,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.2295772323851,35.8580995491143,1,33,1 -2020,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.78974026651122,26.5733603379315,1,22,1 -2025,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0594585137442,33.1238588565618,1,19,1 -2026,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.87512359721586,29.4834409231965,1,14,1 -2029,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3660562541336,33.0865500755208,1,19,1 -2030,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.2240101846401,35.0829849750051,1,23,1 -2041,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.010855733417,34.9804566488937,1,27,1 -2044,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.52863502618857,27.0068704514273,1,13,1 -2045,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4993596444838,28.6663588066915,1,17,1 -2046,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.88664568495005,31.6822030961315,1,34,1 -2047,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.96362733608112,26.2357165622259,1,21,1 -2052,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.74868179415353,32.4126300625957,1,19,1 -2054,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.51570689049549,31.4800014052652,1,30,1 -2055,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4914323983248,27.570773829437,1,9,1 -2066,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.83974826987833,32.1835824294777,1,21,1 -2070,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0400153577793,26.906114160559,1,18,1 -2072,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0615066848695,34.260961788873,1,26,1 -2073,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3012791373767,31.8315518710786,1,31,1 -2078,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3130207445938,33.108258900156,1,22,1 -2089,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.1262779764365,29.376173901822,1,11,1 -2091,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.52292002364993,26.2477653898521,1,20,1 -2096,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3776059413794,29.6939889429614,1,16,1 -2107,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1284108506516,33.485773740071,1,29,1 -2108,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.97788481926546,32.2351598593799,1,26,1 -2111,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.2255762747955,33.294935798387,1,28,1 -2112,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0816061093938,28.5083795157,1,15,1 -2113,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4965010385495,28.2872333303466,1,15,1 -2114,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.91048818291165,29.963912589678,1,15,1 -2115,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.61247072322294,28.3853176086779,1,20,1 -2116,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.80501164938323,33.4409556591773,1,30,1 -2119,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.76357292360626,28.3166776753471,1,15,1 -2124,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.78530551679432,33.8597866220101,1,31,1 -2126,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0999692426994,35.0815724486593,1,27,1 -2134,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4542101558764,28.1252744489516,1,14,1 -2136,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2602301836014,28.3026140476165,1,21,1 -2137,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.52828856860287,33.4837840786649,1,34,1 -2138,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.2346189641394,33.4175017677199,1,31,1 -2141,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.80792416888289,32.8699136233134,1,28,1 -2146,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2352783605456,27.3091024748731,1,14,1 -2148,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.73006529919803,34.8061343197345,1,37,1 -2151,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1416023960337,35.4173066115701,1,29,1 -2156,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0423190218862,33.7458134198246,1,32,1 -2160,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.106023526052,28.1144358391188,1,15,1 -2162,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.59271268104203,28.0648697675086,1,15,1 -2164,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0859808230307,27.357596598301,1,12,1 -2168,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3783587382641,27.4009291520198,0,17,1 -2179,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1849887992721,33.1621326429586,1,28,1 -2182,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.66629836289212,33.8222311387532,1,37,1 -2184,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2013929502573,27.604192163088,1,12,1 -2186,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.9519022514578,32.4027284756806,1,19,1 -2190,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.73086120467633,32.4319524184222,1,30,1 -2193,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.84573407657444,30.9691751830256,1,34,1 -2194,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0849171418231,35.2783547724389,1,35,1 -2199,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3415680520702,32.8206244925985,1,24,1 -2202,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3918221809436,31.8096876344079,1,23,1 -2206,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.81570981093682,33.5425481533591,1,29,1 -2209,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.94077725103125,28.4409362874501,1,9,1 -2217,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0652995784767,29.4531543686715,1,14,1 -2219,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1213284435216,33.4936916626271,1,33,1 -2223,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.91670260811225,32.4926881072961,1,32,1 -2225,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2376889919396,27.8100295438523,0,14,1 -2227,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.86614084616303,29.5930415832599,1,18,1 -2232,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.60394398495555,29.4467043098716,1,12,1 -2233,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.65019122604281,32.4393699246625,1,27,1 -2236,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.58579981490038,31.3176612590812,1,26,1 -2237,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.86112842243165,33.6682490045608,1,30,1 -2239,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0233373017982,32.1921919136317,1,26,1 -2240,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.70258521288633,28.923814619037,1,19,1 -2243,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.81927512330003,31.3130227932145,1,29,1 -2245,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4880213534925,29.6144268845414,1,21,1 -2254,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.60588002461009,34.5625687958457,1,16,1 -2255,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.52462459099479,33.5434398017992,1,29,1 -2258,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.4871309127193,33.4306098881869,1,28,1 -2262,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0525176271331,28.2169773534444,1,22,1 -2266,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.4659560010768,34.2966898250072,1,28,1 -2267,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.67199089424685,33.7756641428396,1,30,1 -2270,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3216262534261,36.8009045054801,1,26,1 -2273,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3250974363182,34.010668811977,1,24,1 -2279,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.90427185920998,27.5594018254046,1,13,1 -2280,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3599629350938,29.9136853895941,1,19,1 -2282,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3344318405725,27.5766038018204,1,14,1 -2283,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4639276717789,26.940870143787,1,14,1 -2284,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1931994422339,32.2783650736952,1,31,1 -2285,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.70099462033249,26.8269203603591,1,10,1 -2286,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2029829034582,27.9184869935831,1,14,1 -2287,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.83549308381043,32.0410924854814,1,33,1 -2288,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1649119246285,33.2722529643446,1,20,1 -2296,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.9267762741074,34.3378761208035,1,28,1 -2297,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.64734059013426,28.6607151186352,1,18,1 -2302,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1343432671856,32.7103842149961,1,29,1 -2303,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3387278637383,26.7552378868812,1,10,1 -2305,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3308961414732,28.3812958443892,1,23,1 -2306,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.4928294061683,36.4908826189093,1,32,1 -2307,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1276332954876,31.2354418927036,1,39,1 -2308,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1938626950141,33.1745509081578,1,31,1 -2309,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.6781166261062,33.9408477682448,1,31,1 -2310,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.1480720208492,24.9788541298015,1,18,1 -2312,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.152204832295,30.1565933229948,1,19,1 -2313,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3550001846161,27.0190021614158,1,22,1 -2314,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.60249989829026,34.6731553665686,1,23,1 -2320,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.64281691494398,31.761569835818,1,15,1 -2321,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.2848192001693,34.0903311901432,1,33,1 -2322,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.56326808431186,33.4107476017454,1,29,1 -2324,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.2892485149205,33.6747198883425,1,32,1 -2326,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2050774148665,28.8587829855203,1,13,1 -2327,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.96902015688829,29.9906067611704,1,18,1 -2328,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.98907618876547,29.0627844190304,1,14,1 -2330,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.53967785090208,33.653739814093,1,24,1 -2339,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2400982386898,27.8254880348362,1,17,1 -2341,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3473686866928,26.1351617911652,1,19,1 -2342,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.54552301997319,28.4451309918731,1,14,1 -2346,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.85535849630833,34.1873523455009,1,25,1 -2348,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.70676682866178,35.0553076733176,1,21,1 -2352,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.252839312423,31.6536227071666,1,30,1 -2353,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.72867410141043,33.5679025150494,1,28,1 -2355,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.71622888045385,33.2479987588275,1,30,1 -2356,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.71061367867514,35.1684087699687,1,24,1 -2358,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.57657771208324,26.9331806260489,1,22,1 -2359,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.82936780364253,27.5319807502316,1,18,1 -2361,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.51013782853261,33.7392112566814,1,19,1 -2370,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.89680328010581,31.7128657414587,1,25,1 -2381,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.58398592984304,27.6784534563135,1,17,1 -2382,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.78365100012161,30.7335055898979,1,21,1 -2383,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0570342475548,33.7231466237312,1,31,1 -2384,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.195774713764,33.2430121015379,1,30,1 -2385,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.66453291638754,27.6965655498551,1,15,1 -2386,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.65380952344276,34.6139450742851,1,36,1 -2387,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.01060199528,31.8849959059447,1,29,1 -2390,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.62828512536362,26.4693792209991,1,16,1 -2391,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.90529983327724,32.8364389513477,1,29,1 -2394,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2272889548913,27.1242106976197,1,19,1 -2398,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.54902078351006,28.0098194702552,1,17,1 -2399,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0804007754195,26.615268425573,1,15,1 -2400,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2984839566052,28.0818964475502,0,13,1 -2404,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0401528459042,28.1844505417274,1,21,1 -2406,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.75663732620887,33.019739696838,1,26,1 -2409,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.87110743066296,34.8900386750231,1,28,1 -2410,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3343359217979,33.9873368000891,1,24,1 -2411,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.1221724124625,27.6271947560631,1,20,1 -2415,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.91204814380035,28.3876527057832,1,13,1 -2416,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.82072339463048,29.669964396348,1,11,1 -2417,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.89789896691218,32.6156501069735,1,33,1 -2418,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4819505966734,30.5871217230154,1,12,1 -2423,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2317841397598,28.8621843989655,1,20,1 -2424,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.8430600783322,31.9288251060492,1,20,1 -2427,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.021448694868,30.295301758155,1,15,1 -2428,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.123903663829,29.3061963972732,1,9,1 -2432,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1287990959827,30.9025025270513,1,29,1 -2433,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.53454623324797,34.6821428315272,1,28,1 -2438,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.73368201381527,25.1148327293055,1,18,1 -2442,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.1054206464905,29.0035744655823,1,13,1 -2443,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1690019958187,33.038195100668,1,36,1 -2447,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.77566113998182,26.850833973263,1,16,1 -2452,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.59039291157387,34.5693674637036,1,29,1 -2458,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.73845803528093,28.8355966042583,1,25,1 -2459,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.1326537663117,28.7867330054509,1,19,1 -2465,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0157400153112,28.6011521490083,1,12,1 -2467,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.82059956830926,29.9067224502654,1,16,1 -2470,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.87017654348165,27.8583841243197,1,18,1 -2471,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.52003032783978,27.9983059196939,1,16,1 -2472,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.59281524457037,32.5700721270264,1,25,1 -2474,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3013266141061,34.6165716060724,1,19,1 -2480,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0698821246624,33.2942429531396,1,25,1 -2481,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.60088193276897,27.3915243037413,1,20,1 -2482,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.68228954845108,33.2817394925396,1,27,1 -2491,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0755333218258,27.3486301741164,1,16,1 -2492,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.86154676321894,27.8723111452358,1,20,1 -2493,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1777266948484,33.2096472203908,1,22,1 -2494,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.71203770278953,30.1752111674996,1,21,1 -2495,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.61547877523117,26.8513668955235,1,18,1 -2500,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1115577246528,29.2316116721934,1,27,1 -2502,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2107993657701,32.9842976350149,1,42,1 -2505,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.97414492769167,33.0792324167652,1,41,1 -2510,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.0501954655629,28.8500057660832,1,23,1 -2512,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2823756961152,36.8034565185473,1,30,1 -2513,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1054794709198,31.3867904985678,1,23,1 -2519,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.3350323927589,35.8893991994728,1,40,1 -2521,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4968663004693,34.7172333872656,1,29,1 -2525,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2476986253168,31.3601831140978,1,19,1 -2538,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1212352896109,30.4493600255529,1,23,1 -2539,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.89074147911742,35.6908459210449,1,39,1 -2548,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2430818038993,30.8881358254692,1,24,1 -2550,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.69014172558673,37.2447834832845,1,43,1 -2555,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.81761396303773,29.4057933645567,1,22,1 -2559,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.97131493454799,32.3584904563289,1,21,1 -2560,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4762069969438,31.8238912825783,1,25,1 -2568,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4511410288978,35.6864169026946,1,40,1 -2573,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.62481795507483,32.4457117295541,1,21,1 -2574,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.64072949346155,37.0810949229352,1,37,1 -2577,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.1493979946245,36.7758528363906,1,37,1 -2581,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.91210387204774,33.3140895165102,1,41,1 -2582,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.61175271472894,35.0693138286041,1,47,1 -2588,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4258352336474,35.0515621582137,1,30,1 -2590,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.67188761406578,32.3891853584817,1,16,1 -2591,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.88448772183619,36.7186970562851,1,29,1 -2592,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2939211619087,32.176168984858,1,24,1 -2595,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.165622078348,32.355590359255,1,15,1 -2599,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4479936512653,30.6572109074615,1,19,1 -2600,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.82476896420121,32.5562127014588,1,49,1 -2605,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4245867338032,31.6721259403011,1,17,1 -2607,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.82488132244907,36.9644581789261,1,43,1 -2610,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2478379604872,35.7151814931823,1,27,1 -2613,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.3061428435612,34.9052252595802,1,35,1 -2614,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4675920601003,36.2065424227058,1,36,1 -2616,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2633593501523,36.8300532791349,1,41,1 -2621,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4063312869985,34.4091869225851,1,26,1 -2623,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1056058129761,30.0924523550934,1,21,1 -2625,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1137124781962,30.2135719744927,1,20,1 -2634,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.64859637245536,37.0534067812247,1,44,1 -2635,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.65385179058649,36.4444476812398,1,37,1 -2636,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.94584148447029,36.6447215230966,1,38,1 -2637,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.3492968252394,35.2291194044788,1,37,1 -2638,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.76452160486951,30.8427537363096,1,19,1 -2640,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.75984115619212,39.1600829044505,1,40,1 -2643,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.3726588909049,30.5955351435102,1,20,1 -2647,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2139783117454,35.417364696515,1,34,1 -2648,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0049900654703,34.3993542942545,1,44,1 -2654,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.70613724272698,33.6305161818136,1,31,1 -2655,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.59983116621152,30.2023502541393,1,30,1 -2656,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.54801250202581,36.6615898964169,1,43,1 -2659,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.96293492615223,32.9180625762827,1,34,1 -2660,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.96149408491328,36.3724803950713,1,34,1 -2661,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.1189837087877,36.2701580821708,1,29,1 -2664,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.51338265719824,32.0476955618394,1,26,1 -2667,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.94015274359845,38.5427812294705,1,39,1 -2677,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.9611325841397,34.5024510178679,1,36,1 -2680,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.7186929974705,33.3498958963226,1,20,1 -2682,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1712983457837,30.2783979697962,1,25,1 -2683,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1111537052784,30.7068299528177,1,19,1 -2684,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.54346294235438,33.051267671124,1,23,1 -2686,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.55176049517468,32.9300986356957,1,27,1 -2689,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.59643458761275,36.289101494692,1,44,1 -2690,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.96353551233187,29.8764634766028,1,23,1 -2697,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0734696949366,37.8866238192447,1,35,1 -2700,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.66491113603115,36.2767703907478,1,34,1 -2702,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.1235974256415,37.9309806037254,1,34,1 -2705,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.77615445596166,35.0255964678017,1,44,1 -2706,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2766371406615,31.660825224062,1,19,1 -2709,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.58179306075908,31.0190635618204,1,19,1 -2710,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.57322026207112,36.2320405013212,1,40,1 -2711,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.58192185265943,33.0363768672976,1,15,1 -2716,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1963766268454,29.7040394705549,1,24,1 -2723,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.89327715546824,27.9563229033445,1,21,1 -2724,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.1666878750548,36.4661581001417,1,34,1 -2725,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1216500967275,29.4197032658248,1,17,1 -2730,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.80906476220116,34.842375134079,1,32,1 -2732,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.63731653778814,29.9301190324405,1,19,1 -2734,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.427080771653,31.788923032725,1,24,1 -2736,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.87631805427372,37.475705622462,1,41,1 -2746,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1896113737021,32.6406087983688,1,31,1 -2750,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.78592605562881,32.9735413398458,1,18,1 -2761,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.95543546508998,32.1844459263171,1,21,1 -2767,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.69334619981237,36.8250525159731,1,34,1 -2768,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2609130151104,34.7884196353661,1,40,1 -2769,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.95751796360128,32.6779724855786,1,23,1 -2770,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.55233241361566,35.0558784127834,1,25,1 -2772,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2798789450899,32.1128196516098,1,16,1 -2785,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.1672683092766,39.5457057540745,1,43,1 -2786,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0852237071376,36.1419205084639,1,34,1 -2795,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.65547377220355,31.8174119168424,1,26,1 -2797,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.71026737149805,28.8012584173274,1,25,1 -2801,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.73040635767393,33.3010756863668,1,20,1 -2802,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.3663439045195,37.0004091953997,1,45,1 -2804,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0708887155633,37.9415262598763,1,35,1 -2811,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.87890325719491,32.9108030842555,1,19,1 -2814,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.012522313511,30.5221787674727,1,16,1 -2817,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.67119249678217,36.4024359692823,1,48,1 -2818,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.65550366975367,36.2607711270063,1,41,1 -2820,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.3413850639481,29.3818611619555,1,19,1 -2826,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.3514324491844,31.7022988295904,1,16,1 -2831,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.58362634875812,33.5397568739266,1,21,1 -2838,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.71187986014411,38.8776811629608,1,51,1 -2841,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4665121664293,37.6665777158969,1,30,1 -2844,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.8642284090165,36.3964465775829,1,46,1 -2846,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.338076504413,30.2283534267922,1,24,1 -2850,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4985021264292,30.638479052649,1,24,1 -2852,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.57125706668012,30.6549893091534,1,18,1 -2854,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0558715928346,35.7843595413709,1,41,1 -2858,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.92840802157298,36.3849658255567,1,52,1 -2860,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.55016040639021,33.1246306290052,1,22,1 -2864,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.3664576516021,31.2106419778186,1,22,1 -2865,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.1964840649161,36.8543173132024,1,34,1 -2866,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.0632543882821,32.1738441632063,1,26,1 -2869,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.79179927846417,38.7554406777222,1,39,1 -2870,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1246466930024,31.8074754146404,1,20,1 -2871,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.50054791686125,35.5615383929018,1,45,1 -2872,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0698926721234,36.050512270744,1,45,1 -2875,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1254291669466,33.0360475936863,1,19,1 -2877,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.0857136428822,32.8185822093492,1,24,1 -2878,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2313259749208,35.4727495894204,1,32,1 -2881,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.54421305353753,32.4318738129932,1,15,1 -2883,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4002168704756,33.6978409288812,1,21,1 -2885,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.66418562293984,33.1082599711585,1,19,1 -2889,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.70763695356436,31.255259053367,1,19,1 -2896,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.90470774238929,34.9061290314315,1,34,1 -2899,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.55052317050286,34.8236167606961,1,44,1 -2900,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.57006516889669,32.9644661053742,1,27,1 -2905,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1097000106238,31.3336679758807,1,28,1 -2906,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.76468993606977,30.7227228979127,1,13,1 -2909,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.99083441356197,37.808768361729,1,42,1 -2912,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.74497657618485,35.0023414486233,1,31,1 -2916,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.3451650477946,31.4758810724268,1,27,1 -2918,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2253514777403,28.6443021748654,1,23,1 -2919,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.89948526071385,29.1635335890051,1,25,1 -2922,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1066715132911,32.0322677414911,1,27,1 -2928,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4403388840146,34.9765050054372,1,36,1 -2933,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1688359798864,29.8547427112131,1,23,1 -2934,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.1061243820004,35.0061936475493,1,45,1 -2940,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2071059474256,31.2703804374826,1,21,1 -2941,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.57042867783457,36.2435610690012,1,33,1 -2949,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1407150316518,32.308999083198,1,27,1 -2951,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.88712284551002,32.8089345689551,1,35,1 -2959,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.369594204938,30.3441846406155,1,21,1 -2961,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2227282994427,35.0957842309743,1,31,1 -2962,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.89665444847196,35.8969015204618,1,25,1 -2971,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.64301300095394,26.8239904849995,1,27,1 -2972,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4150842078961,32.5735513464511,1,23,1 -2974,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.89111490338109,32.3945752383638,1,28,1 -2977,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.61945244995877,37.7892121625895,1,44,1 -2978,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.67186365136877,32.2602475120723,1,36,1 -2980,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.297066349769,35.9927831798797,1,38,1 -2981,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.91351100197062,28.398204955806,1,32,1 -2984,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.90826631220989,31.6447733944866,1,22,1 -2985,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.92828232329339,35.6300516145388,1,38,1 -2986,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4163355631754,30.2715233435875,1,22,1 -2987,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2471787286922,33.1370977203677,1,25,1 -2989,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2271610728931,32.0399490753826,1,27,1 -2990,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1841184066143,37.4993912939684,1,42,1 -2991,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.3174245727714,30.7922735596498,1,25,1 -2996,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.8574683428742,38.7352209894847,1,42,1 -2998,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.57014533877373,29.6105819104828,1,18,1 -3000,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.55931362579577,32.7571173543439,1,24,1 -3002,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.073750403244,31.6930409672334,1,24,1 -3006,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.93680601543747,37.2623829510114,1,34,1 -3007,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4429376306944,35.6656340892342,1,39,1 -3008,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.54871683940291,33.9168630073074,1,33,1 -3012,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1889455635101,32.1864078486394,1,23,1 -3013,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1737047790084,38.6240420239295,1,45,1 -3014,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.68865783326328,40.1456723374149,1,30,1 -3017,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.0887534171343,30.9940338221241,1,23,1 -3023,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3028496741317,39.2052344556728,1,40,1 -3025,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3756368623581,38.6695263052081,1,47,1 -3027,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.66325822775252,32.9139567884098,1,28,1 -3028,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.73345437296666,39.0898146296107,1,42,1 -3033,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.0304824470077,32.0617543987173,1,31,1 -3036,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.58664497709833,32.7768758137006,1,22,1 -3037,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.90736850374378,38.4636068056631,1,42,1 -3042,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4628693284467,31.9017172066051,1,23,1 -3043,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.76380774518475,33.9215061479997,1,17,1 -3045,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1994859750848,35.5524995571676,1,45,1 -3046,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.69664338626899,35.6220865552395,1,38,1 -3048,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1086385354865,35.519104825179,1,44,1 -3049,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.91340880491771,37.2638342327695,1,50,1 -3053,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.69961150619201,31.5206214323305,1,24,1 -3058,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.58180748810992,35.0829016745486,1,33,1 -3059,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4107053554617,32.1507035814283,1,31,1 -3062,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.85612294077873,34.4113869241878,1,45,1 -3067,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.95768903754652,38.0217241072556,1,33,1 -3071,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.3335635815747,30.8578758832733,1,29,1 -3073,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.50783250574023,38.2691508525756,1,44,1 -3077,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1809318703599,36.0918650755615,1,42,1 -3080,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4413182570133,36.3490315998255,1,41,1 -3082,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.90780160482973,36.955109758675,1,42,1 -3090,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1920905380975,33.2128912679557,1,21,1 -3092,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0074656147044,37.6951932457026,1,47,1 -3095,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2609968120232,32.022668565959,1,21,1 -3096,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.68255513068289,29.4413064491152,1,28,1 -3100,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.75060266139917,37.2241071818102,1,44,1 -3101,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4545577534009,33.6098658804712,1,29,1 -3108,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.96387755358592,31.1730090674325,1,24,1 -3113,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2313674748875,29.9099517917125,1,33,1 -3114,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3896966048051,35.770039665663,1,32,1 -3116,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.66827606898732,37.2940479825723,1,43,1 -3119,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0652248533443,37.2795082676674,1,38,1 -3121,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.58766058809124,38.7927368759119,1,40,1 -3124,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4589941152371,36.3071623660139,1,41,1 -3127,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4568563255016,39.9022212732027,1,32,1 -3130,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.55545558826998,32.702294395391,1,24,1 -3131,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.93214885797352,36.4854737708803,1,38,1 -3132,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4515602581669,37.999938267734,1,45,1 -3135,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.92745333258063,33.3982442329175,1,20,1 -3139,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.88354263780639,30.2046582198693,1,23,1 -3145,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.61381247919053,30.1472729675173,1,30,1 -3146,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1860678554513,38.2393144569544,1,37,1 -3147,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.048336526379,32.1099357411371,1,19,1 -3148,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.0158470435999,30.616070910145,1,26,1 -3151,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0415902331006,35.3782060518309,1,36,1 -3155,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.61352909472771,35.9796012594412,1,39,1 -3158,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1566736716777,30.5124996153,1,15,1 -3165,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.98693605512381,36.9757453670107,1,49,1 -3166,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.80904871388339,32.417719614816,1,21,1 -3167,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.82735629985109,36.1160480628185,1,37,1 -3174,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1780580340419,33.241706147506,1,20,1 -3177,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.022940649651,36.4540392885337,1,35,1 -3179,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4789055204019,39.2094986853842,1,43,1 -3181,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.62148442352191,40.5625028173686,1,47,1 -3182,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.70998628460802,31.744122130667,1,26,1 -3183,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1254228155594,37.7042410696798,1,41,1 -3184,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4575021683704,38.2545421266068,1,54,1 -3189,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4005967595149,35.1004638929972,1,46,1 -3197,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.2166712500621,37.671941777735,1,30,1 -3200,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2991596567445,32.3060909468505,1,25,1 -3203,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.55049893213436,37.7427126218476,1,44,1 -3205,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.2755960177165,39.1579349955317,1,33,1 -3209,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.7513819814194,37.9933112777649,1,37,1 -3210,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.63491622172296,31.9994435957673,1,22,1 -3211,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.71212787018158,37.2633543290696,1,42,1 -3217,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2808192125522,33.581592446915,1,22,1 -3218,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.93603134644218,29.8576405066943,1,21,1 -3219,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2359703178518,31.7515780143151,1,25,1 -3220,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.68931429297663,30.8226805354376,1,27,1 -3223,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.70948201208375,34.1170531600595,1,21,1 -3224,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1326861381531,36.664887142174,1,37,1 -3227,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4042883459479,38.5462877124379,1,33,1 -3229,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.2925911913626,36.8193238153289,1,42,1 -3230,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.16017991025,32.0498528124209,1,22,1 -3236,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4360500159673,34.7426124613382,1,25,1 -3239,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.73677881201729,36.6025790898846,1,36,1 -3242,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.57312075630762,38.0125354852823,1,41,1 -3252,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1462271562777,37.2303923893583,1,33,1 -3254,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.70494451210834,30.7523958415097,1,21,1 -3262,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2962229687255,32.8722076766143,1,29,1 -3264,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.9308363373857,38.3836066078859,1,45,1 -3266,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.2745791650377,34.6050058962221,1,38,1 -3267,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.98830818105489,31.1497808890795,1,23,1 -3269,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2221006045584,31.9642461406088,1,20,1 -3270,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1642317518126,38.7042788002719,1,44,1 -3271,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0143289284315,37.0906929642129,1,50,1 -3272,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1557225694414,37.065859875364,1,40,1 -3277,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.58425451116636,31.4281843659389,1,26,1 -3279,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.70161035074852,34.9140803971364,1,51,1 -3280,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0382850195747,37.8045138381804,1,38,1 -3281,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.95309170638211,32.7125447785215,1,21,1 -3286,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.3856921610422,32.7551075289656,1,20,1 -3287,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.53146516648121,33.6847256773707,1,23,1 -3289,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.70170854846947,32.3284555094695,1,25,1 -3293,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1732985344715,37.6452813709334,1,43,1 -3296,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2389623052441,31.7921197412175,1,31,1 -3304,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.3798965350725,32.489524317748,1,34,1 -3309,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4904104056768,35.4658650859645,1,22,1 -3313,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.7451573018916,39.2863966414888,1,44,1 -3315,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.3669573769439,31.4979258556702,1,30,1 -3320,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0112793983426,38.0126983289223,1,40,1 -3321,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0707662620116,38.9203882244867,1,37,1 -3323,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.185648038052,35.6737489386801,1,40,1 -3325,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.54084299062379,39.0717957085536,1,40,1 -3326,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.59324581804685,29.7926720754956,1,21,1 -3328,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.73282894492149,36.5832542562077,1,51,1 -3330,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4364468674175,34.0954485320965,1,31,1 -3331,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.2039306361694,37.6055523290021,1,42,1 -3332,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.65195310697891,38.9762079082631,1,42,1 -3335,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3144000258762,38.3940852100799,1,45,1 -3341,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2066934874747,34.8343983162443,1,25,1 -3344,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1689642213751,32.7807849292177,1,20,1 -3346,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0750058395788,40.1250678098776,1,39,1 -3348,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.0458821321372,30.5011431773864,1,22,1 -3350,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.260177819524,35.9490228527415,1,36,1 -3355,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.80074361548759,32.230475858131,1,26,1 -3359,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.61198166524991,37.2805602166956,1,47,1 -3360,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.77928630984388,33.2819428209536,1,20,1 -3361,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.88924781046808,38.3358681752092,1,53,1 -3371,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.60308598703705,31.4205460909805,1,21,1 -3377,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1960259205662,36.5492684970631,1,43,1 -3379,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1331038430799,32.7048717334216,1,27,1 -3380,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.97125912620686,36.8876638797766,1,40,1 -3381,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.65270901005715,31.3459838971634,1,24,1 -3382,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.018018028466,38.1042583140113,1,38,1 -3387,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.2658272783738,36.5592505703478,1,36,1 -3388,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1748255696148,33.9312907693631,1,29,1 -3389,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.52170852804556,33.2822031688543,1,30,1 -3392,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.51036129007116,33.2130833982485,1,20,1 -3395,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4792572706938,30.0389481813465,1,23,1 -3397,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.8923313121777,32.7884190369887,1,28,1 -3398,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4917332369369,34.2592323019896,1,45,1 -3401,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4693833976053,31.7945920117724,1,26,1 -3402,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.52476520137861,32.8005401848721,1,31,1 -3407,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.94663988542743,33.8482044088182,1,23,1 -3408,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4341339282691,35.7481793725453,1,47,1 -3411,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.74182212119922,36.2492635266003,1,33,1 -3412,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.64209894742817,33.6380529316469,1,23,1 -3413,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4921623289119,38.4062514659829,1,43,1 -3415,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1438769516535,40.1107471091858,1,30,1 -3418,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.3292382855434,32.2485028748998,1,24,1 -3420,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.72456995979883,31.8329378925932,1,27,1 -3425,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.2013812651858,37.9848304931241,1,41,1 -3428,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.63706821878441,29.9983456107859,1,25,1 -3429,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3863668378908,37.6789246577414,1,33,1 -3430,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4741550283507,30.842645594769,1,28,1 -3431,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.437103920849,33.3617298920408,1,18,1 -3436,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.88761655148119,32.877485318513,1,25,1 -3438,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4608693926129,31.9551492193743,1,21,1 -3443,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.97683462523855,31.0691798832214,1,24,1 -3444,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4638847266324,37.5399208078054,1,34,1 -3445,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.2500782569405,36.2316768819098,1,40,1 -3446,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.87582186679356,36.2030432854304,1,35,1 -3452,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.76556472550146,30.6414925720646,1,30,1 -3454,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0201241937466,35.8326524728153,1,40,1 -3456,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.69268370047212,34.3302261156342,1,27,1 -3457,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1895816980395,31.2192657192278,1,27,1 -3460,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.91059156041592,35.5101232300776,1,31,1 -3462,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.95693796453997,34.3676037832078,1,22,1 -3468,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4072616167832,37.1313045371415,1,43,1 -3470,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0250628290232,36.3505308188182,1,44,1 -3472,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3411157161463,38.4897769789342,1,49,1 -3474,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.2434684238397,37.6240891217104,1,49,1 -3475,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.0850373357534,30.543435853857,1,31,1 -3477,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3308848352171,35.7189780617962,1,37,1 -3480,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.428539731307,36.5511889618961,1,47,1 -3483,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4218626799993,37.6859250334045,1,48,1 -3484,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3244762006216,36.2171066005248,1,38,1 -3488,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.79012423683889,37.3414460188633,1,45,1 -3492,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4605776970275,31.071275919311,1,27,1 -3498,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.81533921440132,29.9870609827195,1,22,1 -3504,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.3510436515789,26.2685801372702,1,19,1 -3507,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.80383254145272,30.0956091011773,1,32,1 -3512,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.67372073465958,24.567264995068,0,8,1 -3514,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.98302058922127,30.9813282109278,1,24,1 -3517,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.95031588664278,29.9692510562401,1,22,1 -3521,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.50000821915455,30.6422741103715,1,32,1 -3525,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.2271498558111,25.6851242555353,0,9,1 -3527,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.57503371220082,23.368051626718,0,19,1 -3529,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.57407594798133,30.1284746166119,1,31,1 -3532,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1152284424752,24.457636978244,1,11,1 -3535,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.83839195035398,31.9738935313523,1,16,1 -3536,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.91954938974231,25.6423097811699,0,9,1 -3538,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.81229240167886,30.2880246131695,1,23,1 -3539,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.62152245640755,30.3331090286006,1,16,1 -3540,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0550298574381,31.2712927346847,1,15,1 -3542,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.59251242573373,29.2202274151585,1,18,1 -3547,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.394985395018,31.1932743570296,1,18,1 -3551,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.3595340610482,25.043534821667,1,12,1 -3557,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.59605354978703,30.2222184919917,1,13,1 -3560,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0552753319498,30.3746931917811,1,22,1 -3561,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3768965597264,31.6410959903656,1,19,1 -3562,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.77926754648797,29.2405651049946,1,27,1 -3563,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.64439221890643,31.0275492528837,1,28,1 -3565,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.76050713122822,22.9771877264726,0,12,1 -3568,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.64711885619909,26.6239341808907,1,13,1 -3572,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.2176889027469,24.277877268486,0,13,1 -3578,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3907695019152,30.9627202234037,1,14,1 -3579,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.87556951632723,23.7740164334974,0,15,1 -3580,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1313765312079,26.7146783095915,1,16,1 -3581,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0977447028272,31.5852278764315,1,23,1 -3584,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4787023379467,23.8231124632298,1,7,1 -3586,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.89006768539548,24.1702407384436,1,13,1 -3589,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0517104086466,24.5993603401628,1,16,1 -3598,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.033867550781,24.8221238203885,0,12,1 -3600,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.66770101408474,29.8580321168062,1,16,1 -3604,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3471781173721,31.4461593651789,1,24,1 -3608,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.52147058490664,25.6024799543677,0,10,1 -3613,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0923591144383,24.7627566759245,0,13,1 -3615,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.84786404669285,28.9976495612956,1,27,1 -3617,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.9055862352252,29.5699621436892,1,18,1 -3618,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.55395322805271,30.515572508057,1,18,1 -3620,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.96190101560205,24.8218160777745,1,13,1 -3623,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0114080565982,31.21682543709,1,21,1 -3625,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.368765053805,25.7570177360895,1,12,1 -3626,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.73676704615355,28.9885011626761,1,23,1 -3627,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4407278620638,25.4925664773187,0,11,1 -3629,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.73382558603771,24.2305143417258,1,15,1 -3631,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0453539688606,28.0003806128052,0,17,1 -3639,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.2718128543347,33.5848080722303,1,22,1 -3641,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.53718270175159,24.0528044585481,1,16,1 -3644,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1353751691058,32.0544987783692,1,14,1 -3648,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.50085085001774,30.7699738312808,1,27,1 -3650,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0520569379441,23.8527245209251,1,13,1 -3654,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.82445395062678,25.805497838275,1,15,1 -3655,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1123711324763,33.2238253683684,1,23,1 -3658,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.73300839914009,29.6577283088733,1,17,1 -3659,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.3932544824202,26.5922275984766,1,15,1 -3662,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.299373476766,25.3622713852055,1,19,1 -3665,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.69623589445837,26.4409944925112,1,11,1 -3667,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.74555879691616,30.4945246596912,1,18,1 -3669,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.2688859479968,23.2327095683494,0,17,1 -3674,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3358478515875,33.019914062507,1,17,1 -3676,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.2732658055611,25.768033781212,0,16,1 -3678,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.2580275090877,29.2822807781453,1,26,1 -3680,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.89845876279287,31.8173909490625,1,16,1 -3681,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.3210803777911,25.2855535094061,1,7,1 -3684,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.238082205411,33.4521525809559,1,29,1 -3687,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0668633349705,26.449274790383,0,13,1 -3688,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.64752670540474,28.663511164433,1,16,1 -3693,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.55413648020476,32.4019345701213,1,22,1 -3698,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1172319285106,29.7100747456117,1,15,1 -3700,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.79893082659692,27.6888813623402,1,18,1 -3702,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0558415728156,31.0904918575089,1,26,1 -3704,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3259701838251,30.1891478026296,1,28,1 -3707,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.9533662663307,26.4209588022408,0,18,1 -3709,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3205986437388,30.5091766312199,1,20,1 -3711,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3205942169297,30.0192641962849,1,28,1 -3715,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.2840761025436,24.2532415065218,1,16,1 -3718,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.4573906713631,31.387599206013,1,24,1 -3720,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3010545582511,31.0426802807883,1,31,1 -3721,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.68200251273811,27.6388365540277,0,10,1 -3722,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.53061982989311,27.8676304400032,0,14,1 -3725,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.68149950867519,23.1562752329978,1,9,1 -3728,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.76559379976243,29.7174239400874,1,26,1 -3730,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.81569576729089,24.7517653996032,1,13,1 -3733,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3023468097672,31.2354273656058,1,21,1 -3737,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.51201715436764,31.6907364903998,1,20,1 -3738,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.2392913403455,29.8277374913948,1,21,1 -3741,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.2186275927816,30.2802468614434,1,23,1 -3742,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0539747017901,23.6237660686963,0,9,1 -3743,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.61982872174121,28.383263960828,1,15,1 -3744,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.68558030552231,26.5205990383698,0,11,1 -3746,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1271086120978,31.2659859994911,1,22,1 -3751,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3963929198217,29.1438557952632,1,26,1 -3757,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.2115029564593,26.2000966859858,0,10,1 -3758,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.56944535323419,26.351480477848,1,14,1 -3759,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0095767949242,27.0095861262787,1,23,1 -3761,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.59394557331689,28.3147431418997,1,15,1 -3764,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.4957042597234,29.4909785790713,1,15,1 -3765,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.75286649726331,33.0744041655625,1,15,1 -3766,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.3708027226385,25.7099156092772,1,16,1 -3771,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4154685791582,23.8656649703829,1,15,1 -3775,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.89669658686034,30.0267263590623,1,24,1 -3785,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4079966340214,24.9035251860994,0,15,1 -3786,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.3553296572063,27.6830206257007,0,13,1 -3792,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.52903671003878,25.6574669269028,1,22,1 -3794,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1160020870157,32.6769255314808,1,13,1 -3799,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1285148574971,26.0159733185636,0,11,1 -3803,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4900830823462,24.7128867713864,0,11,1 -3805,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.90181963006034,24.0544134792095,1,20,1 -3807,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.75860620453022,29.9440539072168,1,28,1 -3808,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.50892552197911,23.3446870241297,1,12,1 -3811,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.50876083085313,26.661844412454,0,9,1 -3818,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.77466752193868,30.4369821389308,1,18,1 -3822,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4546293399762,24.8347081776257,0,9,1 -3825,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.63852424174547,24.4399733672178,0,13,1 -3826,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.73297269549221,23.3570603091159,0,10,1 -3830,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.54228159063496,29.6821209273975,1,25,1 -3832,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.98027164139785,30.6144567148495,1,20,1 -3836,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.53505795612,29.2516236546336,1,21,1 -3839,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.71814318350516,26.8981269885016,0,14,1 -3840,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.66875466960482,25.8232352710995,1,15,1 -3843,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.95240782224573,30.6655184184205,1,24,1 -3848,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4580259858631,24.076474307047,1,18,1 -3850,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1759751152713,32.5593474860674,1,16,1 -3851,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.90372069692239,32.0773777061097,1,13,1 -3852,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.83931830781512,26.2153051588228,0,10,1 -3855,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.64937710063532,24.1678304288339,0,14,1 -3856,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0370854011271,33.7863271486317,1,19,1 -3862,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.90124429250136,23.8709951396394,0,6,1 -3871,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.061767949257,29.8586092514347,1,19,1 -3874,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.8274708695244,31.6371822772341,1,11,1 -3876,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.87839216203429,29.9760812474168,1,19,1 -3882,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.80744231748395,30.9102082539557,1,18,1 -3884,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.71943606878631,25.0804499095788,1,18,1 -3888,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.8005346741993,26.9406449950094,1,8,1 -3890,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.56781998299994,28.0828655829826,0,14,1 -3892,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.53750664903782,32.355116179592,1,15,1 -3894,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.62344493647106,30.246912836418,1,22,1 -3896,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.61575356102549,30.6295720198541,1,16,1 -3897,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.2660746676847,28.5447951347761,1,12,1 -3898,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.94988044118509,26.0875994324685,0,7,1 -3900,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.56593863503076,29.445372651714,1,14,1 -3909,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.301376379095,28.6541565609215,1,20,1 -3916,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.95654585002922,31.4958854003321,1,22,1 -3917,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1709969006479,23.4594510344347,1,10,1 -3921,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.99091819976456,28.1751974635467,1,23,1 -3922,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.59607017110102,30.8372083674801,1,21,1 -3924,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1854142947122,31.4559493830699,1,28,1 -3930,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.84423049050383,30.6714717015972,1,22,1 -3931,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4720616743434,23.4801862678212,0,12,1 -3937,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1089611158241,25.9115951044503,1,12,1 -3938,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0443715522997,26.3162585411476,0,15,1 -3942,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.92623065016232,24.1245154197901,0,11,1 -3943,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.2852532931138,30.1433046161298,1,19,1 -3945,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3796962941997,30.1816658484196,1,21,1 -3947,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3902663521003,30.1574860333621,1,18,1 -3950,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.23291594279,29.7728463543656,1,24,1 -3952,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.51362078008242,26.640310562196,1,17,1 -3956,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.8872898388654,26.8418031714185,0,12,1 -3963,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.2149759598542,24.6233023897522,0,8,1 -3965,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.3408298594877,26.1707760261303,1,14,1 -3968,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3761849952862,32.3618303132897,1,13,1 -3969,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.55577256693505,22.5727162106861,1,9,1 -3974,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.93651982140727,24.8036012531407,0,16,1 -3976,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.2229511972982,29.612687943169,1,20,1 -3979,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0264993940946,30.8407390242801,1,22,1 -3980,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.81760207354091,28.2363660613828,1,20,1 -3982,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.9667961099185,31.2350693189523,1,18,1 -3985,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.50370365241542,31.601266809403,1,27,1 -3987,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.66729898448102,24.2337999036227,1,13,1 -3992,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.75229525985196,30.5379476195852,1,24,1 -3998,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0726154129952,24.2778449638768,1,18,1 -4002,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3284628244583,19.020551996134,0,5,1 -4004,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.63601082214154,23.807073649299,1,11,1 -4010,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4451793956105,27.6462495790639,0,14,1 -4016,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.65975784091279,19.1976893996332,0,11,1 -4018,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.1668245883193,21.7462798422221,0,7,1 -4019,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0736946801189,21.3754628035055,0,4,1 -4023,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3191962442361,20.0330781916512,0,3,1 -4025,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2379229345825,20.2317233090034,0,8,1 -4028,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.82409197581001,21.0200830130562,0,8,1 -4031,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0216481471434,19.4676569785734,0,5,1 -4032,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.71948422840796,20.7435597342341,0,5,1 -4033,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.85449253325351,17.7482788149784,0,14,1 -4034,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1247722543776,24.5738397162094,1,14,1 -4035,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.4547413110267,21.9954110327875,0,8,1 -4041,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1540663237683,24.3814331032755,0,7,1 -4047,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3010317068547,20.4245294614808,0,7,1 -4049,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2502395445481,23.7529451041673,0,9,1 -4051,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2942220249679,24.6053679211181,1,10,1 -4053,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.53130353102461,27.2994929783845,0,9,1 -4054,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3025432841387,19.0793467285586,0,11,1 -4055,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1443007795606,27.2146935818015,0,12,1 -4057,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.133989873575,18.6407962826835,0,8,1 -4060,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2450284007937,20.8330607890512,0,6,1 -4062,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.62731291633099,26.018777914475,0,8,1 -4069,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.67158058751374,20.5165319575188,0,7,1 -4070,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.89832909917459,25.1522444264547,0,15,1 -4072,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.86965040676296,24.3242761526921,1,6,1 -4075,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.75671570142731,24.1709886181602,1,5,1 -4076,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.89948262390681,26.3977532024945,1,13,1 -4077,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3704536349978,16.7752794710866,0,9,1 -4078,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.50395030668005,23.3901292641365,0,10,1 -4079,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.64945332868956,19.8292577859896,0,9,1 -4080,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.62123829172924,18.9243237842389,0,8,1 -4084,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.4839230945799,18.5435439188372,0,3,1 -4086,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.68794146715663,19.4229113744255,0,10,1 -4098,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.4630329154897,20.1201924890797,0,8,1 -4101,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.61088653188199,20.1344911253172,0,8,1 -4103,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.81749037094414,26.091175507981,0,13,1 -4108,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3071813727729,26.7456327431491,1,10,1 -4109,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1724077812396,25.5718863363482,0,19,1 -4113,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.58926244033501,26.2260762786103,1,13,1 -4117,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2856321011204,25.8634843878891,1,12,1 -4119,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.54076505056582,19.3453274093018,0,9,1 -4123,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.8073087525554,26.3234367887721,1,7,1 -4124,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.59791031479836,26.1200787444024,0,12,1 -4125,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.87804045598023,26.6519758662127,0,14,1 -4127,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3328987585846,19.1454468220954,0,5,1 -4128,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0476749001537,20.4247544607845,0,4,1 -4133,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.52244266262278,23.4286234086815,0,13,1 -4134,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.64832101995125,18.6866491470311,0,8,1 -4136,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0173719367012,18.653754499562,0,6,1 -4144,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1653248923831,25.9686878311751,0,11,1 -4147,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2483453699388,19.5186591554111,0,8,1 -4148,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.63384841638617,26.9930038745375,0,12,1 -4151,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0244304067455,21.3964006109546,0,5,1 -4152,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.68033495428972,20.4401343011064,0,5,1 -4155,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.009175288491,15.5140544356065,0,11,1 -4157,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.76273428299464,19.1771081900896,0,8,1 -4158,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.5786264766939,26.6228018321631,1,10,1 -4159,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2541178988758,25.7364428523495,1,9,1 -4162,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.86061005620286,21.8673737405096,1,8,1 -4163,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.62871196842752,23.9335911338907,0,9,1 -4166,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.4943906739354,19.3410153267624,0,8,1 -4172,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3769247576129,19.6460227457618,0,9,1 -4174,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.91899234172888,24.0884811231112,1,15,1 -4177,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.9588194382377,20.8992797415616,0,9,1 -4179,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.97025910019875,21.0611602922647,0,9,1 -4180,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.81225336552598,21.235084546318,0,9,1 -4181,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.96478341845796,22.4266305083456,0,4,1 -4183,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.1306259499397,19.7987591514589,0,5,1 -4184,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.91791583201848,24.3882262471713,0,13,1 -4186,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.63172638672404,26.2667513842536,0,13,1 -4187,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3910092893057,25.2761494336511,0,6,1 -4190,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4486634598579,23.1706469382193,1,12,1 -4192,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1664868374355,26.0069702975452,1,14,1 -4194,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0668395801913,25.8362325781017,1,8,1 -4196,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.367601320846,25.2585621586346,0,18,1 -4203,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.7339738951996,18.3738805261564,0,9,1 -4204,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.71423646691255,26.4983260711187,1,14,1 -4208,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.78028594539501,21.3054465217498,0,10,1 -4210,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.81388639169745,24.175560433865,0,12,1 -4212,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.65810468187556,25.9188486117936,1,8,1 -4214,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2730723256245,19.3407553191606,0,6,1 -4215,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.52864305814728,17.5496960043926,0,4,1 -4221,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3144653604832,20.0740708745278,1,4,1 -4226,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.185482313158,18.6507788628541,0,8,1 -4230,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.92921246751212,25.2234468753506,1,14,1 -4234,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.66939548775554,24.4650140188397,1,12,1 -4238,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2723760572262,20.9838591108326,0,6,1 -4245,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0744521522429,20.2084443772003,0,7,1 -4248,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.69845866085961,20.1596754792107,0,8,1 -4250,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.89846821967512,25.2803360715819,1,13,1 -4253,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2945296787657,23.6684136953125,0,8,1 -4255,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2141395402141,25.5346897152576,0,14,1 -4257,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0373636514414,19.4429343809544,0,8,1 -4262,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.4323495058343,19.9690555041858,0,10,1 -4266,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3323866971768,22.9182102858949,0,10,1 -4268,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.4806476356462,19.9416739713468,0,8,1 -4270,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2352622437757,17.5097694144602,0,4,1 -4272,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0806941734627,23.0291764983894,1,13,1 -4274,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.98454676545225,20.8084770277479,0,7,1 -4276,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.82378742727451,23.536084612863,1,11,1 -4277,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4052389219869,26.942023095158,0,17,1 -4279,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4839455026668,24.3656526918291,1,15,1 -4280,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.62836470222101,25.722137925292,1,12,1 -4282,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4975892498624,23.2767108028894,1,10,1 -4286,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.73966447170824,25.5867685708792,0,4,1 -4289,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.78489022632129,21.5014610476387,0,13,1 -4291,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0946863319259,26.6271087728951,0,16,1 -4294,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4280900622252,25.6607237005166,1,8,1 -4295,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1795124362689,25.7248879911295,1,10,1 -4297,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.75645400746725,17.2497678316604,0,8,1 -4299,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0771470332984,24.1893867454406,0,9,1 -4300,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0860634455457,19.1189102825821,0,8,1 -4301,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.93106098286808,24.7373958933889,0,20,1 -4307,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.80929166614078,25.0753523167639,0,16,1 -4308,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.61692715249956,21.0942157480202,0,12,1 -4309,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3968760210555,21.502547838468,0,8,1 -4311,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.83109630714171,18.6597747962582,0,7,1 -4312,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.52576410537586,21.1253505652734,0,7,1 -4313,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.88037249725312,20.7447849958786,0,7,1 -4314,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.497180234408,19.3302368068938,0,8,1 -4317,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.71498126909137,20.321378380746,0,7,1 -4319,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.82744102971628,28.8429453928541,0,17,1 -4320,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4922839647625,24.9691040709962,0,12,1 -4321,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0718579262029,25.5924862211412,1,13,1 -4324,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.93421018193476,19.926317532783,0,11,1 -4325,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.66405091807246,20.4935986142709,0,8,1 -4330,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.095187419327,21.4340111792054,0,9,1 -4337,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.72665211907588,25.4929316258537,0,12,1 -4339,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2706630127504,26.6114511031683,1,12,1 -4341,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.98145271418616,26.9234580586939,0,12,1 -4342,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.1875164066441,18.5310256951779,0,8,1 -4349,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0109294136055,18.9780854211525,0,8,1 -4352,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3242245109286,26.4053480116872,1,14,1 -4353,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0797241767868,25.0309607823301,0,21,1 -4362,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4651807933114,25.3312538221394,0,12,1 -4363,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.1149353708606,21.8835368812499,0,11,1 -4372,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.1798766811844,19.3431477904262,0,7,1 -4373,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.79926815349609,21.9926650267719,0,9,1 -4378,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.80671229935251,20.8402792751963,0,10,1 -4379,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.66191172390245,25.5710984020481,1,13,1 -4380,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.69492994202301,25.2515238363053,1,12,1 -4388,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.936165247811,18.7710240307344,0,10,1 -4389,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0926858817693,18.3968667771878,0,5,1 -4396,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0110352132469,25.059038341768,0,14,1 -4400,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.55450835544616,20.2478529072902,0,8,1 -4402,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.83942263713107,24.6449115943827,0,14,1 -4404,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.90188158350065,27.0849288381229,0,18,1 -4408,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.55465004523285,20.5373040613188,0,10,1 -4409,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.92330445209518,17.6506943212518,0,6,1 -4413,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.83712249132805,18.4509865446666,0,7,1 -4415,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.69360285345465,25.0247531077826,0,9,1 -4417,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.54638312594034,24.1325538672179,1,14,1 -4422,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.306776905898,25.6956310431421,1,14,1 -4427,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3726867346559,27.2189775525612,0,12,1 -4429,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.79879531520419,24.5648016881498,1,14,1 -4434,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2625199090689,19.2726709199991,0,12,1 -4436,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.305887659546,21.8699095015796,0,9,1 -4438,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.53282432071865,26.5664757819624,1,15,1 -4441,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2042989511974,25.9481523305232,1,10,1 -4444,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0399070093408,19.5652004483196,0,9,1 -4445,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.1977249032352,18.8240247615424,0,5,1 -4447,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.85607864148915,24.4113849148823,0,16,1 -4451,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2487075997051,23.6671338558692,0,7,1 -4454,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1114732129499,27.6493190783766,1,15,1 -4455,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.89393874583766,25.0234518609677,1,14,1 -4458,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.86131205805577,24.9343365306543,1,14,1 -4459,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.57775663561188,24.7545397661463,1,10,1 -4460,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.82427722774446,24.6742825918442,1,12,1 -4464,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1713286559097,24.6711495064501,0,16,1 -4468,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.91832650569268,22.0038745495284,0,7,1 -4469,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4477170249447,24.4650391168911,1,15,1 -4470,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3346585580148,24.6727009772395,1,15,1 -4476,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2325010609347,26.2734590034008,1,10,1 -4480,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.71185567346402,25.9497177754906,0,10,1 -4481,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.79979927884415,21.2829437136287,0,6,1 -4482,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.37766598491,24.4378059660175,0,14,1 -4484,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2302557751536,25.2305878271942,1,7,1 -4490,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0924546583556,24.852278697604,1,9,1 -4491,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3007083439734,24.4175696315883,1,11,1 -4495,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0534904662054,22.4705165589611,0,6,1 -4498,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0173961382825,19.7837856449689,0,10,1 -4503,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3741397275589,26.6041641547706,0,9,1 -4514,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.60495308320969,25.267904881555,1,20,1 -4519,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2186625730246,17.8138425414766,0,8,1 -4520,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.76913342438638,26.4323905741349,0,18,1 -4523,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.73733693687245,20.1196124685911,0,7,1 -4524,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.90774120064452,17.5732639617965,0,5,1 -4531,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2158073612954,21.4118094364558,0,12,1 -4533,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.97058890387416,26.5331360645265,0,7,1 -4540,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.408549098298,21.6858823806063,0,6,1 -4541,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.81742638698779,20.5004546891395,0,12,1 -4545,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.78836700785905,23.5787431752789,1,9,1 -4551,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.1112151588313,18.3283987053282,0,3,1 -4562,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.67128152144141,19.6340520692669,0,10,1 -4563,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4485221882351,22.6483348462731,0,9,1 -4566,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0343294038903,20.8490075016154,0,11,1 -4568,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.79723656224087,26.3670668086275,0,19,1 -4569,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.4088641542476,22.4071513649872,0,11,1 -4571,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2681125006638,24.0569004132235,1,18,1 -4575,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.50061540678144,26.1837621871605,0,19,1 -4579,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.3032625650521,17.6634377613075,0,11,1 -4581,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.71088425512426,17.264973302155,0,8,1 -4583,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.7498120078817,21.7186217270764,0,10,1 -4584,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.439596447628,27.2868441221356,0,7,1 -4585,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0176775392611,19.7788406628735,0,7,1 -4586,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.51930252159946,27.5219569779085,1,16,1 -4591,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.79909199476242,18.0930416779498,0,8,1 -4598,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.68080352875404,20.7100254643556,0,4,1 -4599,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.68383508897386,21.5516464160265,0,7,1 -4601,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3558184369467,23.710295494895,1,11,1 -4603,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2120818668045,20.4449657240402,0,7,1 -4610,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.83067594980821,21.9988744162467,0,6,1 -4619,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4555211423431,19.6108977487158,0,6,1 -4622,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4277527660597,19.6279845151039,0,9,1 -4624,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.93354645487852,20.6413747816,0,4,1 -4628,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.9747915212065,25.3395581318672,1,11,1 -4630,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.7780556534417,24.092897541677,1,10,1 -4631,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.53442849242128,24.4797420833182,0,15,1 -4632,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4936654728372,20.3312603889806,0,8,1 -4633,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.61976514500566,17.0421464426255,0,5,1 -4636,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.66324953385629,16.5809741802756,0,7,1 -4642,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.4653258384205,24.8157832657783,1,17,1 -4645,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.69894642778672,25.2195905614003,1,13,1 -4647,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.88105647522025,19.9656012596564,0,7,1 -4651,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.56859276606701,19.3743499368045,0,4,1 -4656,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.86731969751418,23.7504326285075,1,12,1 -4657,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.72988713928498,25.5056796052953,0,12,1 -4658,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.50444124010392,24.8538389268154,0,13,1 -4659,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0955618724693,25.3802154346252,1,17,1 -4662,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.85226833983324,27.0749031995463,0,16,1 -4665,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.70976040069945,21.4344375576996,0,2,1 -4667,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0616489488166,24.2285342144573,1,17,1 -4668,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0413868662436,23.951768227389,0,7,1 -4673,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.92653045989573,27.5950481355569,0,10,1 -4679,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.98628526832908,25.4793317536742,1,12,1 -4686,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.3835764795076,21.5555291197203,0,7,1 -4690,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0878856612835,26.064872163699,0,20,1 -4692,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.86024034488946,16.6279444351972,0,4,1 -4693,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.63484649290331,20.481677210791,0,12,1 -4694,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2835314364638,26.8930085563361,1,18,1 -4696,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.872190997703,25.3060015018971,1,14,1 -4704,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1652720139828,26.0588105361348,0,12,1 -4707,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3612549854442,24.4329343148345,0,12,1 -4709,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.5437477324158,24.7563085405065,0,20,1 -4717,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.3866810114123,18.3612404266158,0,12,1 -4718,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2027245843783,20.6616865997848,0,5,1 -4724,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2880360637791,27.0690023782417,0,13,1 -4725,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.78098271833733,17.9656067427716,0,5,1 -4732,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.84197134990245,23.6510501232958,0,11,1 -4733,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.85292860795744,18.9315681770151,0,8,1 -4737,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0388986237813,24.1356563164071,1,15,1 -4742,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.1227395248134,22.3757716763863,0,5,1 -4747,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.88640309497714,18.6795250845051,0,9,1 -4748,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.71700768754818,19.1736615161559,0,12,1 -4749,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.78689108369872,19.2297880750641,0,6,1 -4756,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.5817226790823,26.965347220859,1,11,1 -4757,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.99866881710477,20.1631509902595,0,13,1 -4763,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2559245799202,25.4865444917555,1,2,1 -4769,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.77305660862476,22.267750836757,1,9,1 -4773,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2078141258098,24.8508526612163,0,8,1 -4774,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.7633058486972,23.6939116217639,1,17,1 -4775,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.9335726192221,24.3150625805285,1,17,1 -4776,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.97292745416053,26.4537756892972,0,16,1 -4781,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.90710064978339,18.9676299244733,0,9,1 -4782,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0859267245978,28.271160494855,0,12,1 -4784,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.51513844565488,21.7828562646383,0,2,1 -4788,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.77910386072472,23.3507369482349,0,7,1 -4790,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.98913807352073,21.8340912965532,0,7,1 -4796,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.366774315713,19.0238886350212,0,6,1 -4798,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3826137853321,26.217351933836,0,9,1 -4799,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.86770280590281,18.2377419271032,0,6,1 -4801,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2032575288322,18.6274899475493,0,11,1 -4812,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.73901925305836,18.2591863484455,0,2,1 -4818,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.1706949190702,21.1890050426722,0,6,1 -4820,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.97321330476552,22.4123651591963,0,14,1 -4824,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1299887767527,25.8878534258203,0,18,1 -4830,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4345840902533,22.6910815608412,0,13,1 -4832,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.51185554079711,25.486249809957,1,13,1 -4834,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.69842223962769,20.4744211773797,0,7,1 -4839,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.281821758952,27.4941639259151,1,11,1 -4841,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.205836195033,27.9694361354776,0,15,1 -4842,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4646858011838,24.0653538728293,0,8,1 -4844,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.303979604505,25.3579497527923,1,13,1 -4845,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.8571529854089,24.9944398884597,1,10,1 -4846,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1200251048431,25.8119469390746,0,5,1 -4847,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2850246971939,24.8441811577815,1,13,1 -4849,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1806854272727,24.7465641549794,1,12,1 -4854,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.87300989218056,24.3034884244267,0,10,1 -4857,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2047835979611,19.587168114474,0,11,1 -4858,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.71631391881965,21.5179958179367,0,8,1 -4859,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4147967877798,20.5484245147391,0,8,1 -4860,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.019371883478,25.3634837677495,1,14,1 -4861,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.216078862315,26.369338985096,0,8,1 -4862,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.3858407256193,18.8424701249017,0,7,1 -4866,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2207986994181,17.6284695671315,0,4,1 -4871,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1436765203252,24.9393553718012,1,12,1 -4875,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.6773991077207,21.931994967779,1,8,1 -4877,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.80385005427524,24.8462476398177,1,13,1 -4879,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4283263897523,19.6731824753435,0,10,1 -4881,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.68991047190502,22.5728068839472,1,15,1 -4882,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.51765525434166,23.7051011039873,1,15,1 -4885,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0316289777402,20.1213376676915,0,6,1 -4891,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.67652543401346,19.0509110959757,0,2,1 -4899,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4033927144483,21.8717238904694,0,4,1 -4902,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.63436036580242,26.7570526534436,0,15,1 -4906,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.3496784258168,21.3714813339579,0,7,1 -4908,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.1696389103308,19.6565374042962,0,6,1 -4909,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2012524872553,26.782755964301,1,10,1 -4910,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0178170464933,20.7054373144133,0,10,1 -4911,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.62610714090988,18.4383987956776,0,9,1 -4913,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.90371530666016,26.4701902102105,0,16,1 -4918,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.77423677104525,24.7987674171253,1,8,1 -4924,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3834174473304,25.3181803612086,0,10,1 -4931,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.028691080166,19.5525936775921,0,10,1 -4932,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.94823861517943,19.7767409769426,0,12,1 -4933,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.91417286009528,20.4642606411035,0,6,1 -4934,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.74005047185346,27.2513217513257,1,9,1 -4941,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0851216453593,24.1552436374001,0,14,1 -4943,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.4252794720232,25.9571183452992,0,14,1 -4944,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4649772557896,20.4007865827124,0,10,1 -4945,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.60960866953246,27.3096357079326,0,10,1 -4947,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3127229411621,25.5569562135091,0,7,1 -4948,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.97814724454656,20.5891034647618,0,5,1 -4950,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2655757430475,20.7339661665142,0,8,1 -4954,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2532318504527,26.4306138043502,1,11,1 -4956,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2511030023452,24.1519188189073,1,13,1 -4959,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.88725768635049,28.0515170196429,1,14,1 -4960,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.94192723277956,19.846296840712,0,5,1 -4964,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3797657678369,26.3859286782374,1,11,1 -4965,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.53650913294405,25.0972833569462,1,8,1 -4967,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4367154482752,21.7481761962981,0,3,1 -4971,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.87219397723675,20.025593064739,0,7,1 -4972,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.65853883326054,21.9950467646795,0,6,1 -4978,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0775003524031,19.7567381330882,0,12,1 -4979,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3961236353498,26.253357408163,0,11,1 -4980,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.9004136538133,24.2880593545799,0,9,1 -4983,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.85471604275517,21.0747585616783,0,6,1 -4984,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.88812680682167,25.1249315472979,1,16,1 -4987,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.90463171200827,24.9705525326191,1,5,1 -4995,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3000875024591,24.879211668887,0,12,1 -4998,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.61877337936312,21.1497763962741,0,9,1 -4999,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.83753750030883,23.6777819276986,1,13,1 -5001,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1754270119127,24.4200675669755,0,11,1 -5004,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.96775718848221,20.0531836855913,0,11,1 -5008,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.92921349848621,26.1817689546894,1,19,1 -5009,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2760906366166,26.9868866299169,1,12,1 -5015,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.67801182856783,20.7962077623598,0,9,1 -5017,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4320617138874,22.8877775203613,0,11,1 -5019,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.96220773924142,23.438265091409,1,13,1 -5024,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.71257956093177,23.3708977737865,0,6,1 -5028,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0824217600748,19.2665977436585,0,6,1 -5031,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2842879346572,24.2474661526094,1,11,1 -5036,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.87980836699717,19.9964201341919,0,8,1 -5037,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.50251287012361,23.8069340201326,1,10,1 -5039,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.35546672903,23.0028534988042,0,5,1 -5040,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3541564091574,18.6832938538622,0,10,1 -5041,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.271795472363,17.8713120937036,0,4,1 -5042,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.86213703732938,22.6830374545333,0,13,1 -5043,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1753446408547,18.3945844872589,0,1,1 -5045,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1288560442626,22.9272295551424,0,9,1 -5047,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0144246034324,24.0412154052478,0,10,1 -5048,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.82818387169391,20.443083718021,0,8,1 -5050,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.67275655223057,17.3865334607926,0,8,1 -5053,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1913515210617,22.9672252316786,0,9,1 -5058,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4418754943181,17.4488091255812,0,3,1 -5064,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1334901384544,17.5165790754039,0,6,1 -5068,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.90466527128592,22.5374592423539,0,11,1 -5073,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.80661171185784,23.137980846422,0,11,1 -5075,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1530374302529,18.0464200087406,0,7,1 -5076,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3668649881147,23.1600818820812,0,3,1 -5077,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1507510785013,17.8258224842012,0,4,1 -5090,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.98174032149836,18.9298530339453,0,5,1 -5093,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.84737990284339,17.5754930932977,0,6,1 -5094,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.5081082158722,22.0679990309876,0,6,1 -5100,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3145007514395,24.7516688217537,0,17,1 -5101,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.60502741741948,18.6694972160772,0,3,1 -5106,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.5143335100729,21.4584277533096,0,12,1 -5108,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.88338984828442,19.2834789194342,0,6,1 -5113,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4352748147212,20.2870871357559,0,6,1 -5116,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4759636770468,23.8442555120239,0,8,1 -5117,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.64161217072979,22.0641914730913,0,9,1 -5118,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.91649235924706,17.6887263730398,0,9,1 -5119,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3060750607401,19.4435194766357,0,6,1 -5121,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.60398566443473,16.6659175731787,0,9,1 -5123,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3544591215905,22.8973995736184,0,9,1 -5130,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.72801417275332,25.1859791883932,0,9,1 -5131,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2170296164695,23.2588340431053,0,6,1 -5132,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.57190733682364,23.0863631962019,0,6,1 -5134,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.93999583390541,20.4581380779167,0,6,1 -5138,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4793255503755,17.0893268275242,0,13,1 -5140,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2059377930127,23.3719679707146,0,9,1 -5142,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1371886557899,18.274494464282,0,5,1 -5143,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.73347515519708,24.5121699587954,0,7,1 -5145,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0993133771699,24.3518865341369,0,7,1 -5146,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2820361009799,17.9235802492513,0,8,1 -5147,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.96469096164219,16.9474422863335,0,9,1 -5149,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.88087128312327,24.1647079085778,0,8,1 -5150,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0815868324134,23.7384422315726,0,8,1 -5151,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4693652915303,22.6800056687793,0,11,1 -5158,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.72573345224373,26.3060138051762,0,8,1 -5159,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0030908908229,19.6030968620995,0,9,1 -5160,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.84653096739203,19.5109362889592,0,6,1 -5163,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4230075147934,15.874805445516,0,5,1 -5165,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1587095332798,20.8198930767869,0,12,1 -5166,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4699317167979,21.5921632615023,0,11,1 -5167,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0404351393227,24.315114782772,0,5,1 -5169,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0181697935332,20.8685234440556,0,6,1 -5172,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.84593966021203,18.1036857730032,0,7,1 -5177,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.62716997833923,21.9628428293663,0,13,1 -5184,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.91196668380871,24.8687473178768,0,12,1 -5186,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0391965997405,18.5133480944893,0,5,1 -5188,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.51622768584639,22.4554710591913,0,8,1 -5189,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1385485092178,24.7364436924689,0,9,1 -5191,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.56391978310421,20.9280972608493,0,8,1 -5192,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1426250119694,19.0982891547178,0,7,1 -5203,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0701907840557,21.6709575046102,1,9,1 -5205,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.98396302154288,17.1069636157308,0,7,1 -5206,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3713069963269,19.4230487669806,0,5,1 -5209,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2752071321011,21.1638404056262,0,13,1 -5212,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.67477814038284,22.3146180202918,0,7,1 -5215,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.53298059129156,20.4742302773716,0,9,1 -5222,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0642992348876,17.5620582903185,0,11,1 -5223,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3585117131006,25.3907331055158,1,10,1 -5227,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.6392640597187,19.7577963758493,0,8,1 -5230,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.78827408747748,19.7836218634956,0,8,1 -5235,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.348429156933,16.378565413997,0,4,1 -5240,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.71732098073699,21.2230124695493,0,20,1 -5241,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3491544895805,20.1056064226038,0,14,1 -5243,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4762956399936,21.8168981047024,0,6,1 -5246,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4424824852031,16.7820062965356,0,9,1 -5251,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.86697070952505,17.3229483937265,0,6,1 -5252,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.88939211680554,19.9007804676166,0,6,1 -5257,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.51653191726655,24.2402726647567,0,13,1 -5259,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.6647034061607,19.8289355708762,0,1,1 -5261,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4580892596859,21.6141986274968,1,4,1 -5264,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0659496947192,19.0740752651479,0,8,1 -5272,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.89764332957566,18.0540077383385,0,7,1 -5274,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.89791463525034,25.4208563809607,0,9,1 -5277,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4380956143141,17.9400868282496,0,11,1 -5280,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.69829933368601,18.5761664503371,0,3,1 -5289,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0385967101902,23.7541365232437,0,4,1 -5290,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.50752294738777,22.5081952806693,0,6,1 -5292,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.85087250964716,21.7428625772273,0,11,1 -5296,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.65120377461426,22.8881193081828,0,7,1 -5298,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.77670924947597,23.7969916951454,0,11,1 -5299,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.83633934566751,23.210763785895,0,11,1 -5300,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2864301346708,16.6128093914259,0,9,1 -5303,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.83987207850441,22.1776431842762,0,11,1 -5304,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.310661238851,19.0789820345216,0,7,1 -5309,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2419733924326,22.9251543371885,1,12,1 -5310,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1231028372422,21.7216626991147,0,9,1 -5311,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.95813520508818,17.6585716808123,0,2,1 -5319,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2990433583036,23.4024854730406,0,9,1 -5320,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.90833339514211,22.3636364383312,0,10,1 -5324,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0380989867263,18.0877816690254,0,11,1 -5327,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.67035620985553,18.1555197777395,0,7,1 -5332,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3389823769685,22.4551093596137,0,9,1 -5334,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.98648651805706,17.4341741645458,0,8,1 -5340,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1980600270908,19.9245706611504,0,6,1 -5341,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0587753353175,19.120610410963,0,2,1 -5345,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.8376237929333,21.0513454837669,0,11,1 -5347,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.87452988838777,22.5519631845347,0,11,1 -5348,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0329612107016,24.2812967332089,0,10,1 -5349,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.77956245257519,20.6262444294012,0,8,1 -5353,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.88552357675508,21.2108876744683,0,3,1 -5354,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.52664621546865,23.5015045611235,0,6,1 -5355,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3789890748449,22.436673504353,0,10,1 -5356,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.8093767890241,19.9806194731513,1,6,1 -5357,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3518249881454,17.6322859349018,0,5,1 -5360,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.76136153005064,22.6885333507205,0,8,1 -5362,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.68626706604846,22.7607629523827,0,9,1 -5366,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0327397561632,19.2519833990817,0,12,1 -5371,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2612652352545,19.1940182013253,0,6,1 -5374,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.69805784872733,17.5347339417649,0,8,1 -5377,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.82818547007628,23.039291441953,1,15,1 -5378,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1796170584857,24.3873879359665,0,6,1 -5379,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.72056255512871,24.1450426447098,0,5,1 -5380,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.65648352610879,22.090440217559,0,9,1 -5384,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.8930037159007,24.4514222795865,1,9,1 -5385,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1029378755484,18.7849199619686,0,8,1 -5387,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.71605013683438,21.9125493497869,0,13,1 -5388,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1988066416234,23.5883470971613,0,10,1 -5391,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.95782947470434,20.8414251948966,0,7,1 -5392,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0233406086918,19.8566632889858,0,4,1 -5393,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.92717660521157,21.4106204685276,0,13,1 -5394,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.80085658188909,22.8953058207076,0,11,1 -5400,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4637029732112,25.3406726632285,0,12,1 -5402,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.52319824090227,19.1520405908701,0,6,1 -5407,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.69228617544286,23.455293520375,0,11,1 -5411,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2971219336614,15.5872886887023,0,7,1 -5413,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2021932175849,25.1578937971531,0,11,1 -5414,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.62106320424937,17.2156949761085,0,1,1 -5416,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0189394839108,19.3596895201883,0,7,1 -5417,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.488915206166,23.6902460661726,0,9,1 -5420,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.7915661057923,24.2237310501499,0,15,1 -5424,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4922720191535,22.6566706660099,0,13,1 -5427,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.85561121953651,18.1123283814266,0,4,1 -5428,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.88928512088023,16.6038103740539,0,5,1 -5430,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4892341203522,22.4974573267697,0,10,1 -5432,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2632355676033,21.4610203478983,1,11,1 -5433,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.62638445850462,24.8190773266561,1,7,1 -5436,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.62739013507962,23.4598181731068,0,9,1 -5441,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1832179783378,24.4941787042182,0,8,1 -5444,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.67055254033767,23.8331071286903,1,8,1 -5446,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.88590779108927,24.8581181518729,1,10,1 -5447,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4888064083643,23.7890386807251,0,9,1 -5448,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.50579485320486,18.9762980366008,0,6,1 -5452,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4017918854952,19.6773529888459,0,6,1 -5461,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.51544407196343,17.6426429595465,0,6,1 -5462,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2608156225178,23.8348620735685,0,5,1 -5464,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4832264275756,20.6617568572575,0,5,1 -5465,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.404190831352,18.9602327158482,0,6,1 -5467,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.80237697041593,21.8977267814486,0,9,1 -5477,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0390308925416,18.0773560915295,0,9,1 -5478,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4489663059358,21.966580716968,0,11,1 -5486,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.82816616934724,24.2534312579912,1,14,1 -5488,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2383557914291,24.3679367546028,0,11,1 -5489,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0846916919108,23.3996458295147,0,8,1 -5492,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4317553143483,18.3972093172035,0,3,1 -5493,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1221429521684,20.0531333301593,0,3,1 -5494,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1284788660705,23.0544895655494,0,8,1 -5500,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.72936154739,17.5422018030008,0,7,1 -5501,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.90804788284004,17.4701728645773,0,6,1 -5502,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3521670908667,21.0407008785125,1,4,1 -5503,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0299076093361,23.311212057805,0,6,1 -5505,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.82179881981574,18.4954446699462,0,6,1 -5507,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.81336745293811,16.9723198675985,0,7,1 -5510,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1357701709494,23.151584302848,0,6,1 -5514,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.008727136068,25.9750840813036,0,11,1 -5517,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.63635732303374,20.3170818740814,0,13,1 -5523,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.77324745059013,17.7204784470196,0,11,1 -5524,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.65584464976564,24.7332337975607,0,10,1 -5527,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.83091593976133,22.7843711596571,0,15,1 -5535,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.90464152302593,14.871371279525,0,6,1 -5536,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1012684276793,18.0912224658561,0,8,1 -5537,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.62619133270346,23.3477289294154,0,10,1 -5547,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.89068897790276,16.572830684219,0,3,1 -5551,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.56010492122732,24.2437219210902,0,8,1 -5552,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.64701776322909,23.4789646781988,0,6,1 -5555,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1514138125349,19.83377551895,0,5,1 -5556,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.77011887263507,24.239997626831,0,11,1 -5559,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.62563066720031,16.8863141169027,0,7,1 -5560,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0312751280144,23.6630384333333,0,11,1 -5562,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0801895738114,20.435276522877,0,2,1 -5564,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1134985741228,18.8207671316499,0,8,1 -5571,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.82746406667866,26.3035714426717,0,9,1 -5573,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3090003400575,23.5265255193079,0,4,1 -5576,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2872056935448,18.1790845482228,0,11,1 -5581,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.52969767060131,26.7255784229437,1,16,1 -5583,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.63710685330443,28.7960734073333,1,14,1 -5586,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.84319905401208,26.7963243952506,1,12,1 -5588,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.53624119795859,25.3839285320082,1,14,1 -5591,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.8871480631642,26.6497193259649,1,14,1 -5592,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.82402820163406,21.0677722260263,0,10,1 -5597,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.1275516401511,21.3840187217181,0,5,1 -5598,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4048837760929,23.4314311550054,0,9,1 -5600,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.70560968085192,22.869325894956,0,12,1 -5604,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.99115302739665,25.9361694295264,1,21,1 -5607,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.93602320714854,22.8790577223954,0,8,1 -5611,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.99753322382458,26.8828711261468,0,12,1 -5613,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3259500551503,25.1073680264207,0,11,1 -5621,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.56664587766863,19.8517237309484,0,12,1 -5623,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.90641242545098,22.1930910464631,0,7,1 -5625,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2451007170603,29.0817376586392,1,17,1 -5628,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2254316795152,24.9404637473665,1,9,1 -5634,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.71485068136826,21.9762762368974,0,8,1 -5637,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0592643222772,26.4828359423003,0,16,1 -5640,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3228391751181,28.068361182801,1,13,1 -5643,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.73324420000426,23.8972208209516,0,8,1 -5647,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0704463096336,22.5175019807321,0,13,1 -5658,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0959417754784,27.8758796398989,0,14,1 -5660,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.96630552085117,25.651124147888,1,21,1 -5685,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3565608211793,21.1619048547925,1,11,1 -5691,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0894200569019,18.240119691878,0,9,1 -5694,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.85859947861172,21.1218509256927,0,9,1 -5698,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0886707021855,20.2751559661572,1,12,1 -5699,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.71703634550795,20.7850789641249,0,5,1 -5703,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.8248895551078,26.8379232538249,0,18,1 -5706,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.99754888028838,28.739544725939,1,15,1 -5707,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.98850712459534,27.1962870238671,1,13,1 -5708,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.78755295765586,21.0247912740628,0,13,1 -5715,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2170976032503,23.6721646024674,0,6,1 -5716,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4856440688018,19.9519888087546,0,7,1 -5718,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2505085037556,20.8451708371725,0,6,1 -5724,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.74734529480338,18.7292719032482,0,10,1 -5730,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.79112068959512,19.6668901727913,0,12,1 -5731,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.68068472505547,21.6291162621826,0,8,1 -5734,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3325026577804,25.7606968482314,1,15,1 -5735,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.60531189851463,30.213136842157,1,16,1 -5736,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.99218732165173,26.1329932688172,1,13,1 -5743,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.98016379633918,27.3155574556238,1,14,1 -5744,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.59084011614323,27.5847511765999,1,12,1 -5745,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.66675992822275,26.7350450368466,0,19,1 -5746,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.93900333554484,27.4422238193759,1,14,1 -5754,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.80170852155425,22.4699000378087,0,5,1 -5755,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4136976853479,26.5877562338515,1,15,1 -5756,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4301625019871,25.571968920648,1,15,1 -5757,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.89283907669596,26.5633269314835,1,15,1 -5761,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.66977626387961,26.2954957383793,1,15,1 -5764,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3837555702776,23.066902247319,0,5,1 -5765,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.71043949993327,19.8203738568686,0,10,1 -5770,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0717871782836,27.5695285855504,0,19,1 -5771,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.6828485543374,20.4715190851206,0,8,1 -5773,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.60946266399696,28.0673269076832,1,5,1 -5775,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3179427697323,21.2211209646395,1,8,1 -5776,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.340782238869,22.8871123949503,0,9,1 -5779,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.88287129299715,27.9180528663488,1,12,1 -5785,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0780071865302,23.4082868666727,0,12,1 -5787,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0122433549259,21.907092085314,0,8,1 -5788,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.54063696274534,22.1394155785251,0,9,1 -5790,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.92545853136107,26.4075680859478,1,10,1 -5792,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.56931463209912,28.0365848462726,0,13,1 -5795,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.87303113378584,22.954907566115,0,5,1 -5798,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0823545667809,26.8775517384497,1,11,1 -5800,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0695119833108,20.3432876572783,0,4,1 -5803,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.63130111992359,20.6113910198518,0,11,1 -5815,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3788584040012,22.1256660869184,0,9,1 -5823,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.97221374814399,26.387185963136,1,7,1 -5824,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.8007302749902,21.8792133678248,0,9,1 -5829,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.68794744089246,25.3103259957356,1,16,1 -5832,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.70863023074344,21.8899674011437,0,11,1 -5834,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.51001778827049,20.2009442133326,0,8,1 -5837,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.96144834184088,23.4282873954179,0,11,1 -5843,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0776666149031,22.4035606529502,1,9,1 -5844,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3711278676055,21.5389283082313,0,11,1 -5846,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.80026197992265,21.2792964380973,0,13,1 -5852,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2909337289166,21.5766044117027,0,9,1 -5859,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.1056654392742,19.3014008283189,0,6,1 -5861,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4079589429311,22.5215803119314,0,14,1 -5863,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0615241907071,25.2251540746629,1,13,1 -5864,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.81166176078841,21.6416064825126,0,11,1 -5869,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.1483577955514,26.5588177967689,1,14,1 -5870,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.9934673581738,27.0706670751695,1,22,1 -5880,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.98083928832784,20.3828164925907,0,4,1 -5891,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.69715593196452,26.3820774900871,1,18,1 -5892,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.98272466822527,26.3799897375386,1,15,1 -5906,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.1828063784633,26.8654935415392,1,12,1 -5907,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.7903046796564,27.3576932588029,1,11,1 -5908,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.81785492855124,21.5639693743705,0,11,1 -5909,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.056156182196,25.9401448433806,1,17,1 -5916,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.56997364899144,28.9519773617866,1,17,1 -5917,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.153082013363,26.9657474281798,1,12,1 -5923,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.1786679578945,25.583612057244,1,19,1 -5924,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0253086418379,23.2811672090499,0,10,1 -5926,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0986993813422,26.6960314394673,1,10,1 -5930,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4402185927611,24.7538219775537,1,13,1 -5932,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.57892791833729,25.3037807622297,1,8,1 -5933,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.1861913201865,25.5233810487155,1,9,1 -5939,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.1313865606207,23.7582821237321,0,12,1 -5940,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2444220092148,29.0872928378998,1,7,1 -5945,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0772822599392,24.9073986817465,1,12,1 -5947,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.269199834438,24.5800400345697,1,10,1 -5948,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.98862031870522,23.7153377939205,0,8,1 -5949,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.83122666715644,24.5150815928966,0,3,1 -5950,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4920079552103,21.295524279906,0,5,1 -5956,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.73719851835631,24.089527418822,1,13,1 -5957,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3789180933964,27.3657365836521,1,15,1 -5959,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0114501887001,21.3026819632653,0,10,1 -5961,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3038909812458,26.7426815874285,1,23,1 -5962,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4456509400625,26.1669560725541,1,21,1 -5970,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.83108564815484,27.6197998391851,1,24,1 -5972,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3970896143001,22.4201768941359,0,7,1 -5973,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0186602557078,27.1995878370568,1,14,1 -5977,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.53934440645389,21.9927966851984,0,11,1 -5982,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.93438378022984,29.2854766695441,0,18,1 -5983,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.66242397855967,25.1836379129682,1,17,1 -5986,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.1723231936339,26.8191762045715,1,9,1 -5987,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.77016620431095,20.5633196495133,0,9,1 -5988,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.63015228067525,28.4605891821333,1,11,1 -6008,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4199219823349,19.9195297643545,0,7,1 -6009,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.86806425498798,23.911939496469,1,10,1 -6013,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.1609233014751,19.7193611620353,0,9,1 -6014,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.75017557712272,25.0389549292163,1,14,1 -6017,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4762012159918,24.6431424614548,1,14,1 -6022,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.67531700944528,26.2582625937017,1,10,1 -6023,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3851726134308,21.7104213525015,0,10,1 -6032,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2880694470368,25.7251925364187,1,16,1 -6033,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3919907668605,20.9806079918819,0,12,1 -6037,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.59456562343985,24.448629734283,0,7,1 -6039,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2972348697949,20.3531645585334,0,6,1 -6042,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.99524928885512,18.287917405289,0,6,1 -6052,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3978850685526,27.0477626020551,1,20,1 -6055,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.96008256357163,20.0006802204834,0,8,1 -6062,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0725463361014,20.868606051756,0,8,1 -6067,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.54199345316738,22.445839024746,0,7,1 -6074,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.78221907094121,26.5021698806061,1,15,1 -6077,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0118413004093,25.9235583265813,1,20,1 -6078,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.1650328033138,26.991350803058,1,11,1 -6079,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.82029888825491,20.2632506598336,0,9,1 -6081,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3089776944835,22.3806894251585,0,6,1 -6087,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.90967157972045,22.859979215389,0,13,1 -6091,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.8308731962461,24.7742939928042,0,13,1 -6092,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.68503621360287,24.4069461946826,0,16,1 -6094,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.55942496773787,22.9559254722759,0,9,1 -6095,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.84264697646722,16.3146425778494,0,3,1 -6096,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.4289599452168,23.3459851256455,0,5,1 -6099,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.53440209105611,20.5114005399101,0,10,1 -6100,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.74782295525074,19.7325010274112,0,9,1 -6102,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.96900649531744,25.9277884450276,0,7,1 -6106,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2619724876713,25.1216999023301,1,15,1 -6111,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4211996658705,20.7223123056751,0,8,1 -6113,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2301776427776,21.0686418765203,0,9,1 -6120,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.1360918937717,20.8726231982437,0,11,1 -6122,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.63766271434724,26.6378749624618,0,9,1 -6129,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.3509817619342,20.3825742528915,0,8,1 -6130,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.55993414320983,24.8097919594937,1,12,1 -6134,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2994368809741,25.6295537210459,1,8,1 -6138,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3850466792937,26.2382080984013,1,14,1 -6144,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.93498358735815,25.7967460608044,0,12,1 -6146,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3802100426983,26.3938078513277,1,8,1 -6149,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.88533895439468,20.2351322658148,0,6,1 -6151,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.70264472649433,20.3342263924481,0,12,1 -6155,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.0611861918587,23.533197032181,0,8,1 -6158,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.72875215299428,20.3784803080716,0,7,1 -6159,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2838885195088,25.5036973090906,0,14,1 -6160,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0469736759551,25.8452667171588,1,9,1 -6165,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.3551234393381,19.2288287112436,0,8,1 -6171,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.1544464321341,19.6407832790079,0,10,1 -6173,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.75917597743683,21.6557187514487,0,6,1 -6177,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.90072395838797,18.8795256562352,0,10,1 -6192,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2123218271881,20.5510355979757,0,4,1 -6196,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.3245506668463,18.6429383612095,0,10,1 -6198,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.90301174204797,23.4846798117156,0,16,1 -6200,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.64274185383692,20.4170276546483,0,7,1 -6201,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0427146346774,26.0879814706142,1,12,1 -6204,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.6040801149793,25.466217681688,1,13,1 -6205,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.1197610620875,21.6188776318562,0,12,1 -6206,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.77026477013715,21.2043256265071,0,13,1 -6207,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2336254178081,25.3923457081893,1,12,1 -6209,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.3876252730843,19.6598015496005,0,7,1 -6213,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0566273850854,26.8646328852439,0,5,1 -6214,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4521114875097,21.2748687313705,0,7,1 -6218,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.3520471251104,18.99051951101,0,5,1 -6219,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.54715715511702,22.7638688631321,0,9,1 -6220,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.322494315682,24.3351515719369,1,14,1 -6226,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3341079831589,23.3048056297921,0,13,1 -6229,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.50263976934366,25.2489388753379,0,16,1 -6236,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3571649224032,26.3229521404982,1,11,1 -6239,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.3758162392769,19.3356598864094,0,10,1 -6240,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.036420987919,17.8169739034904,0,5,1 -6242,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.93098190519959,20.2000589667923,0,7,1 -6249,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2901771524921,18.9124846433977,0,5,1 -6252,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.69932219223119,21.2264859008041,1,10,1 -6258,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.99065514164977,20.6329953379397,0,4,1 -6270,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.6774889761582,20.8878989411056,0,6,1 -6274,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.4961127731949,26.2275364282445,1,10,1 -6275,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.91818868555129,20.9901574250845,0,10,1 -6276,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2348770468961,26.4253176496326,0,11,1 -6277,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3246914593037,26.2078692124168,1,13,1 -6281,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.0626022242941,21.736445148529,0,8,1 -6284,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.71632340154611,19.0103452574191,0,3,1 -6292,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.92307029501535,26.8970131889823,1,9,1 -6297,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.9647841558326,19.8962979301006,0,9,1 -6300,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2214878660161,22.4364182225788,0,11,1 -6301,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2662034751847,24.6756829695254,1,18,1 -6305,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.74756117793731,20.6902450674415,0,10,1 -6306,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.91526186000556,21.0626506646819,0,7,1 -6307,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2999634263106,20.5992007936963,0,3,1 -6310,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.89259048434906,25.2543276014086,1,14,1 -6312,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.321850792272,26.0421781522947,0,14,1 -6317,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.66116624814458,22.5089254813366,0,5,1 -6318,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.72626149142161,20.5791116026933,0,7,1 -6322,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.54997729766183,24.162177447065,1,16,1 -6326,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.61440366553143,23.7605036008053,0,13,1 -6329,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.3724738643505,21.3857138565639,0,6,1 -6331,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.80334950122051,18.4085154042866,0,3,1 -6334,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.0508535655681,18.8316694840204,0,5,1 -6335,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0481448175851,24.4439838282315,1,18,1 -6336,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.87714083306491,28.8606601028473,0,8,1 -6338,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.88979256222956,23.5536975765873,0,17,1 -6341,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.482774074655,25.6197675600645,0,9,1 -6342,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.54682563827373,27.7482081980011,1,14,1 -6348,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.52730190940201,23.7560690790051,0,9,1 -6350,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.87281439476646,19.5361735906426,0,9,1 -6351,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.95974788116291,20.0390373638037,0,7,1 -6357,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.4904509021435,27.0722401220523,0,14,1 -6358,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.54577713552862,27.7795322535115,1,6,1 -6363,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.5861179609783,20.289844600931,0,14,1 -6364,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.7102017858997,25.9939120722173,0,11,1 -6366,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.3560161935166,16.893075214426,0,8,1 -6370,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.67325379676186,26.5364090741633,0,15,1 -6376,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.3520594774745,21.2933644736663,0,5,1 -6379,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.51151398010552,25.7727408358738,1,12,1 -6383,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.230042293435,21.2359341758773,0,9,1 -6387,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.96200129971839,19.2568402783073,0,4,1 -6389,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.78582768002525,23.4604958220243,1,12,1 -6390,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.71455009141937,25.2334394533733,1,15,1 -6402,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2367843771353,24.9876722490804,1,15,1 -6403,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.59407954895869,24.185360473452,1,15,1 -6405,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0473355448339,22.985168881726,1,16,1 -6406,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2044704703148,21.1314567014652,0,7,1 -6408,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.61623385292478,17.3492753616596,0,8,1 -6411,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.3682716970798,21.6428808032172,0,10,1 -6415,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.06719163456,19.1985592821451,0,6,1 -6416,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.83103666338138,20.1552712160242,0,8,1 -6417,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3110921022017,25.2003866965717,1,19,1 -6419,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.466729416512,25.9069774981972,1,16,1 -6423,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.99022486805916,20.4602294486719,0,9,1 -6425,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.95299827889539,20.1951155718486,0,7,1 -6427,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2770184201654,21.4110929665888,0,5,1 -6428,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.80622224975377,25.1582438332044,0,8,1 -6429,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4589970509987,20.4888797430425,0,8,1 -6430,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.82197726378217,19.3210022381557,0,5,1 -6431,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.73231485486031,22.8459105023274,0,6,1 -6433,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.73285336536355,27.2320779707173,0,21,1 -6435,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0303287154529,25.6080937788236,0,10,1 -6439,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1947065521963,26.7130241450835,1,15,1 -6440,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.81614172551781,20.2354530129941,0,5,1 -6441,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.64842467289418,20.1913426516325,0,6,1 -6445,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3196680077817,23.9610589120462,1,9,1 -6448,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.80881595308892,19.7451221708956,0,9,1 -6457,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.88374725915492,19.2193179551297,0,10,1 -6461,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.9437827388756,20.5060872322639,0,6,1 -6468,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1083760152105,22.9162355983325,0,9,1 -6472,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.1995572121814,19.6692091760847,0,5,1 -6473,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.55434001097456,26.2111556932453,1,12,1 -6478,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.87638014997356,22.9991859264402,1,20,1 -6480,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0133246916812,25.0047660638253,0,14,1 -6481,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0607052182313,27.1696387611505,0,11,1 -6487,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.85401863465086,25.8970893401312,0,17,1 -6494,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4487602091394,21.9502723285919,0,3,1 -6502,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.84336899966002,23.3655491947747,0,12,1 -6505,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.092570531182,22.9455681988027,0,7,1 -6514,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3910055996384,25.1869305751308,0,4,1 -6516,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.089409598615,19.525002185784,0,4,1 -6519,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4913263749331,20.7511685416982,0,5,1 -6520,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0219400324859,21.4979797924732,1,12,1 -6521,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.57570055429824,19.7749920860115,0,9,1 -6523,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3259086199105,26.2897966961677,1,9,1 -6531,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0183908613399,26.6689481943901,0,7,1 -6539,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4401761477347,21.2466186370732,0,6,1 -6540,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0208878645208,25.4161433569636,0,16,1 -6541,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0292890472338,24.2044250825157,0,14,1 -6542,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3548389747739,27.3940385438431,1,15,1 -6543,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1021115113981,27.0087759036339,0,12,1 -6546,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2111152738798,25.5112878029165,1,12,1 -6548,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.3226610312704,18.4939153597129,0,4,1 -6552,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.72000851668417,21.3384257424093,0,4,1 -6559,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.301959562581,18.6721913338052,0,8,1 -6561,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.63972070906311,25.1472737984955,1,11,1 -6562,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.55882835201919,22.9878218311912,0,11,1 -6563,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2491129108239,20.9439615192299,0,4,1 -6565,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.96252475865185,19.5890380743076,0,8,1 -6568,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.4763320428319,27.7878874828144,1,9,1 -6572,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.1409718981013,21.0600510603147,0,8,1 -6573,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2803192781284,26.9078897341778,1,17,1 -6574,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1045801893342,27.0558152942248,0,16,1 -6577,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.0184905645438,21.7650415219811,0,5,1 -6583,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.8743049534969,20.6434864482261,0,8,1 -6594,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.80240039806813,24.6337357687729,1,9,1 -6599,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.0604933241848,20.9743966310833,1,9,1 -6604,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4505150995683,20.4333614297205,0,10,1 -6606,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.90074364747852,27.6113348657427,1,15,1 -6607,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.0395850739442,27.6519260165643,1,12,1 -6613,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.89417590503581,25.6031066639906,1,14,1 -6617,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4617937074509,24.3480991253408,1,23,1 -6623,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.98514855955727,26.2753943297839,1,13,1 -6624,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.6958614885807,21.2030348042076,0,5,1 -6625,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.53957871394232,23.5597687389681,0,7,1 -6632,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4846727056429,27.1523766715064,1,15,1 -6637,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4730883343145,26.8186274093617,1,13,1 -6638,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.66361652384512,21.6469100606661,0,14,1 -6642,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.93515145662241,26.9544946659796,1,22,1 -6643,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.55887693795376,23.1711350548467,0,4,1 -6647,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1628164576832,26.2509422907482,0,20,1 -6649,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.68769418704323,24.7644713183304,1,5,1 -6651,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.3580626782496,22.8524954903386,0,6,1 -6653,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.50366160017438,20.9375926457319,0,10,1 -6659,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.50895542814396,20.8324201714969,0,8,1 -6660,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3426302995067,26.4128863903328,1,11,1 -6664,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.68513691122644,25.5107808252635,1,17,1 -6666,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.57397385779768,20.757899357827,0,9,1 -6667,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.0312218251638,28.4418550220133,1,16,1 -6669,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4599208866712,29.0004356004081,1,11,1 -6672,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4936271484476,26.9082523278991,1,12,1 -6677,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.2232202575542,23.8735781889502,1,20,1 -6680,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.92341278051026,27.5785632785624,0,16,1 -6681,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4576898373198,22.5679248676173,0,6,1 -6684,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.2181320674717,25.4550842660312,0,10,1 -6685,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.3899927570019,22.6694705493485,0,5,1 -6688,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.75426281196997,28.660217756605,1,19,1 -6691,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.2737970021553,22.1955410941107,0,8,1 -6693,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.2265425678343,28.3175041925783,1,18,1 -6700,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.86850044573657,21.7765337988886,0,10,1 -6704,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.358605358284,26.6063608555771,1,13,1 -6713,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.68114269571379,27.2760402453396,1,14,1 -6717,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.77657995023765,27.1393324638353,1,21,1 -6719,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.8117772876285,19.9298565988691,0,7,1 -6722,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4868381358683,28.0196711453774,1,20,1 -6724,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.0516368120443,27.5277446547713,1,19,1 -6727,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.73589139454998,28.5995181945579,1,11,1 -6728,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4506035500672,25.7222976394905,1,8,1 -6730,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.7706368973013,24.2331637196935,1,12,1 -6736,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.173389153555,21.2645296309422,0,12,1 -6738,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.7036031675525,27.0604908408225,1,15,1 -6739,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.52444135886617,24.9321746718079,0,10,1 -6744,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.2192920334637,20.3052470585016,0,7,1 -6746,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.86654689768329,25.1009507066737,1,17,1 -6750,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.2488559368066,26.7177136875996,1,20,1 -6755,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.82970758876763,21.7538171354832,0,4,1 -6758,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.92092775111087,19.9412838963165,0,10,1 -6760,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.0214507961646,20.5877297276345,0,9,1 -6762,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.2744044470601,29.4584022012988,1,17,1 -6764,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.0986485169269,27.6607938106498,1,20,1 -6774,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.0972275231034,24.9746544333356,0,14,1 -6775,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4543872515205,23.4234728932694,0,6,1 -6777,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.0480075131636,19.9284220392959,0,5,1 -6778,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.52366327308118,19.7524232058468,0,12,1 -6779,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.50286103296094,25.2740250052443,1,10,1 -6784,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.83633058238775,29.0121808309787,1,14,1 -6788,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.52610807493329,26.9992736368918,1,10,1 -6789,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4107223423198,22.3720510697095,0,11,1 -6791,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.86781295179389,28.4236429036803,0,18,1 -6793,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.84241720079444,24.6124488268177,0,8,1 -6795,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.6453472324647,23.1875143677781,0,6,1 -6796,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.2491612914018,25.1292083473627,1,10,1 -6798,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.79724941775203,26.4370683260782,1,15,1 -6804,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.88517010584474,25.899170169127,1,16,1 -6806,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.278571452247,23.170129138235,0,9,1 -6811,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4026257777587,25.2496494227398,1,13,1 -6813,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1574820845854,22.9845800724471,0,4,1 -6814,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.53041946073063,27.6263965319284,1,15,1 -6817,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4389779700432,22.3911990928946,0,12,1 -6821,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.96577147999778,28.3440165712367,1,11,1 -6824,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.73714080755599,24.7497288410361,1,13,1 -6826,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.94905506493524,25.0811258103664,1,19,1 -6830,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.85091530764475,28.3675032817194,1,13,1 -6831,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1135737523437,25.2791542553435,1,12,1 -6832,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1666751797311,21.5879677344429,0,8,1 -6834,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.52013893029653,20.733786864087,0,11,1 -6835,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.84542282717302,21.9106527667969,0,6,1 -6836,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.87982519739307,27.9622333432204,1,8,1 -6837,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.75261664902791,21.2875927659532,0,7,1 -6838,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1570110078901,25.7257848762417,1,18,1 -6841,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4189894336741,25.5010946335756,1,14,1 -6846,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.2982477413025,27.4745287757613,0,11,1 -6848,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.51291573955677,27.7309889275815,1,14,1 -6856,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1534899903927,26.2932563031583,1,23,1 -6860,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.74528282647952,26.7292587064922,1,11,1 -6861,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.0456118297298,21.6831519142308,0,5,1 -6862,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4121904161293,22.7841822294648,1,16,1 -6871,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.97339488845319,20.7108307733866,0,5,1 -6877,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4406695123762,24.6874174586731,1,23,1 -6878,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4546491503716,22.7183912168837,0,12,1 -6879,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.63297499599867,22.2790306130872,0,11,1 -6881,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1993259775918,26.2416333085999,1,8,1 -6883,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3776803710498,25.8422175656302,1,17,1 -6887,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.87530091567896,26.1916892130911,1,17,1 -6892,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4494924612809,21.1558928186583,1,8,1 -6899,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.94750350969844,26.4912082951969,0,15,1 -6900,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.85322284465656,21.6915194611355,0,12,1 -6905,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.7203773399815,20.1956598313352,0,6,1 -6906,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.3562889492605,24.6385566766197,0,9,1 -6915,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1104385755025,28.0829156665556,1,21,1 -6917,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4858696579468,21.6277317177217,0,5,1 -6918,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.54240223905072,25.2813822273941,1,13,1 -6921,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1841185144149,21.2744334883127,0,14,1 -6930,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4292557551526,22.2028116238101,0,6,1 -6932,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.2340338735376,20.0790740736183,0,10,1 -6933,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.2673351664562,22.3053811687002,0,9,1 -6934,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.72731978981756,20.1058100266501,0,9,1 -6935,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.60547860176302,20.6907495797326,0,9,1 -6936,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.55406842473894,29.2847416542679,1,19,1 -6937,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.69065073155798,23.4021739071889,0,8,1 -6938,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.2720719065983,27.2404186805082,1,24,1 -6942,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.81050047720782,21.5337138590701,0,16,1 -6945,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.56658331328072,20.1482712964569,0,7,1 -6946,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.93209090246819,21.3772420932717,0,6,1 -6950,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.67215781635605,19.5374315233961,0,11,1 -6951,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.64049031422473,17.7609652253545,0,8,1 -6952,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1018712543882,23.0903868995083,0,11,1 -6953,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.243423643522,27.6777410498739,1,16,1 -6957,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.7322988754604,25.3166156665156,1,19,1 -6958,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.88885679491796,19.9988859952295,0,12,1 -6971,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.94823540118523,19.417339923772,0,14,1 -6972,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.0487711820751,22.7489598402541,0,7,1 -6975,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1105739038903,26.3929334403156,1,11,1 -6976,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1458029414061,22.2712997960748,0,4,1 -6980,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4930170748848,26.7906417860697,0,16,1 -6984,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3470037267543,28.9899602764772,1,18,1 -6985,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.9473424598109,27.2021052938224,1,17,1 -6988,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4506679957267,27.827756119239,0,14,1 -6989,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1957357844803,22.1173445606516,0,12,1 -6992,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4525850219652,22.5815125637179,0,10,1 -6996,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.67636787542142,25.5548128377391,1,17,1 -6998,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3478028008249,25.356617703247,1,14,1 -7000,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3399359805044,28.8205690506758,1,11,1 -7002,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.84791565360501,26.0263102952648,1,11,1 -7006,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.95582469785586,23.2112024518089,0,9,1 -7013,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.56946548516862,28.2045885646206,1,17,1 -7014,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.91871902439743,22.1351417659676,0,9,1 -7015,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1282998444512,20.4023270928026,0,5,1 -7016,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4524155235849,21.3789405038205,0,12,1 -7025,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3069434375502,27.457544525628,1,13,1 -7028,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.75778597244062,25.2964665281993,1,16,1 -7031,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.61052318802103,21.9808613019915,0,7,1 -7032,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.9778193377424,25.4401849068248,0,14,1 -7034,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.83003916661255,23.1960478903366,0,8,1 -7035,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.99039345816709,27.6639988311632,1,12,1 -7040,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1469372396823,23.8433613925577,0,7,1 -7042,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.87306166999042,27.3483470688917,0,17,1 -7045,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1131399830338,23.1395584318745,1,12,1 -7046,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4896136743482,26.390290047282,1,15,1 -7048,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.71258994471282,22.7647473731006,0,8,1 -7051,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4052471315954,20.7843927549334,0,13,1 -7054,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3746419555973,25.2893856206991,0,17,1 -7055,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.6569338333793,22.7457982049255,0,7,1 -7056,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.3024928099476,22.3838456033571,0,12,1 -7059,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.88914938247763,28.6053800432909,1,17,1 -7060,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.94183073029853,25.1007290718872,1,4,1 -7062,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.72138873301446,20.8220556821887,0,8,1 -7063,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.91460586711764,19.7142529506522,0,10,1 -7064,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.51244197203778,21.2919151683727,0,9,1 -7066,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.51072852080688,29.9192901848881,1,25,1 -7073,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.6045610725414,37.9456932390654,1,43,1 -7076,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4178958402481,38.1463320945698,1,46,1 -7078,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.65885563311167,35.4319484089331,1,48,1 -7081,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.8619265712332,31.6381034866092,1,16,1 -7085,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.97361841611564,38.5515860976777,1,36,1 -7087,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.85619434621185,34.2820800771911,1,32,1 -7091,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.65329774073325,31.7104222386447,1,22,1 -7092,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2477924912237,30.7209463450395,1,16,1 -7093,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4348259833641,32.936889952884,1,18,1 -7094,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.6835990131367,36.280095465535,1,42,1 -7101,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.70820642914623,35.1111059679664,1,30,1 -7102,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.51617857790552,35.1711949104186,1,44,1 -7103,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.82759833103046,31.4170708250289,1,16,1 -7105,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.7752136788331,37.5917219401379,1,47,1 -7118,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.96916395472363,30.8347934261318,1,30,1 -7120,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2679350702092,31.7324680172232,1,21,1 -7122,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.74324608547613,31.6946596112017,1,16,1 -7123,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2346670979168,33.664173203742,1,23,1 -7127,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.96236402844079,33.0786367247174,1,17,1 -7129,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0729941690806,32.7592364879433,1,26,1 -7131,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.483934815973,37.5995379689954,1,41,1 -7135,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.50394805148244,28.4263297466755,1,14,1 -7143,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.1217824199703,32.2366624466808,1,19,1 -7147,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.7682046443224,35.6687415244608,1,37,1 -7157,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.57344279997051,33.7916611160982,1,31,1 -7158,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.1338246571831,29.1011602040118,1,26,1 -7168,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4519446985796,37.8346173110688,1,39,1 -7169,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4630508220289,38.7430958368821,1,36,1 -7172,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.96342280018143,34.9531533226837,1,36,1 -7173,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.92435101862065,39.4020698744184,1,43,1 -7174,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4318461257499,32.8954057604164,1,22,1 -7177,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4793669264764,32.3126705756201,1,28,1 -7178,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.88631940912455,34.0323063812242,1,38,1 -7179,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.88101581926458,37.2272773096334,1,32,1 -7182,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.94547472381964,31.5450749360523,1,31,1 -7186,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.76502468623221,34.9449088613453,1,43,1 -7189,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.74147337814793,30.2413722215188,1,22,1 -7192,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.53382351435721,32.9660534253696,1,17,1 -7194,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2270202632062,28.7757688890067,1,20,1 -7200,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.2391060579102,35.5594896404087,1,43,1 -7202,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.52027932461351,36.3346394632334,1,45,1 -7204,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.97174558509141,30.3416770696981,1,26,1 -7208,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.96703757951036,38.7923695414075,1,35,1 -7211,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.1871319785714,36.1805177225785,1,36,1 -7212,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.56123429047875,30.275869233215,1,15,1 -7213,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4801672627218,30.2625990427508,1,26,1 -7215,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.67154702078551,34.9414941256847,1,33,1 -7221,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.67667044466361,35.4040840222908,1,33,1 -7223,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4358644161839,29.8103449274443,1,25,1 -7229,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.53047075332142,37.2042196799247,1,44,1 -7232,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.94117141957395,31.6499541515501,1,22,1 -7233,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4731614696793,33.916874081259,1,17,1 -7236,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.90730203362182,35.1500960215237,1,40,1 -7239,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.099812312983,28.5412747419872,1,32,1 -7246,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.66099312785082,36.4463348226375,1,33,1 -7247,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.52657129871659,36.2734782158487,1,38,1 -7249,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0597482654266,34.4424009306093,1,37,1 -7250,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.90792545955628,32.8498487937627,1,17,1 -7253,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.96565083134919,36.8986889600644,1,47,1 -7254,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.7601336275693,35.6211174498124,1,39,1 -7258,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.56563020683825,39.3717165725633,1,50,1 -7261,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.70450219302438,30.4663275597846,1,23,1 -7262,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2541783240158,31.716134639652,1,23,1 -7263,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.80300186737441,34.4166272625951,1,20,1 -7264,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.68783614900894,31.2535502196935,1,27,1 -7271,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.84234608337283,32.5967419269777,1,27,1 -7277,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.59659562958404,29.9419983109834,1,20,1 -7278,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4891476333141,29.2224219907637,1,26,1 -7280,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4236754123122,30.5094837776507,1,27,1 -7282,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4259497094899,36.9580995391758,1,31,1 -7289,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2405045444611,34.2327299119529,1,27,1 -7291,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4080784406979,29.9268731753343,1,34,1 -7298,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.69288144004531,33.3955771597242,1,28,1 -7303,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.68874505115673,31.5702900659045,1,23,1 -7304,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3051663986407,37.1097828298573,1,32,1 -7305,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4902351836208,36.8295845927093,1,39,1 -7308,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2224009314086,31.6744589196036,1,29,1 -7309,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.92633606959134,31.4648873251703,1,26,1 -7310,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4512637972366,35.6267978765865,1,41,1 -7311,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.79989498318173,33.0283904327976,1,14,1 -7315,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4744429222774,37.9208037149238,1,40,1 -7319,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.90838108607568,32.6151206194064,1,25,1 -7320,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.75659322249703,37.2005010976433,1,29,1 -7323,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0093690939248,37.2837878310232,1,37,1 -7329,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4939053403214,38.4839093554803,1,35,1 -7330,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.76333584543318,31.9821763008077,1,29,1 -7335,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.2036187320482,36.0124542109471,1,31,1 -7345,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.1248784323689,37.9238218422136,1,34,1 -7350,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3225834690966,37.0311082524165,1,55,1 -7352,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.99915608135052,32.9747283483023,1,32,1 -7356,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4746538302861,36.8809633088954,1,33,1 -7357,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.7263624665793,37.7003138914229,1,38,1 -7358,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.76774028362706,31.4948909593409,1,29,1 -7359,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.96146188816056,31.9535601950749,1,23,1 -7364,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.1884922962636,30.525843853473,1,34,1 -7367,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.86656469060108,37.5786701139287,1,47,1 -7374,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3552427357063,39.0034451927564,1,38,1 -7377,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.1180187352002,38.6932575751025,1,42,1 -7380,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.64920569560491,31.4467296440791,1,20,1 -7385,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.99157316121273,36.1997165309008,1,24,1 -7389,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.55857864837162,33.959679368927,1,23,1 -7395,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4981095769908,36.0328883656083,1,36,1 -7399,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.69728964404203,30.4992829359546,1,16,1 -7400,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.67405605618842,33.3813812672034,1,14,1 -7402,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.78072844957933,30.7098932250619,1,31,1 -7404,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4361648743507,31.4470653948599,1,20,1 -7412,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0931019887794,37.5400466940307,1,42,1 -7415,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.97142568323761,36.935754605875,1,35,1 -7421,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.80198114761151,32.6937279034023,1,25,1 -7424,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.94751685764641,38.4157877051857,1,44,1 -7425,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.62579633318819,36.732399557041,1,42,1 -7428,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.73385745286942,34.8365442280072,1,24,1 -7431,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.83802180481143,35.8494038360931,1,46,1 -7442,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.66705314745195,39.8084296409366,1,49,1 -7445,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.7365275346674,32.4906179559228,1,14,1 -7450,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.67989039910026,35.6883773054701,1,47,1 -7451,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0674495028798,37.6098897180473,1,37,1 -7452,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.1293265796266,34.9659320656062,1,32,1 -7457,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0255528341513,36.8530997735466,1,36,1 -7458,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.78016393538564,31.3054195113156,1,27,1 -7459,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4224835673813,32.5977360403725,1,14,1 -7461,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4164236465003,30.9476110522714,1,21,1 -7462,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.1478199125268,29.8998316255322,1,16,1 -7472,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.65016419184394,36.9617527967667,1,39,1 -7479,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.89214635407552,36.8020723951921,1,32,1 -7480,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4964634641074,33.2413045378418,1,27,1 -7483,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0415909010917,30.1758139750013,1,21,1 -7486,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2952423940878,30.9794904875585,1,20,1 -7487,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.54559658956714,31.0842068538745,1,25,1 -7490,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0368405028712,37.0986603282874,1,36,1 -7494,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.71414130274206,31.0714639893462,1,21,1 -7501,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.63559953565709,36.6209696319402,1,43,1 -7508,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.55530016729608,36.6426303724964,1,31,1 -7509,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2937175077386,30.9836316005852,1,23,1 -7510,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.82077056681737,32.7348857710135,1,22,1 -7511,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0937233774457,31.514642797506,1,15,1 -7517,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.92418209090829,35.1427975196045,1,48,1 -7518,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4093840974383,31.3114772105721,1,23,1 -7519,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0210145374294,34.0977536614077,1,36,1 -7521,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.92411071364768,33.6729776404651,1,31,1 -7525,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3893032954074,34.7833666417332,1,37,1 -7526,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.50063104601577,36.9200271740147,1,37,1 -7529,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.87398404115811,35.1882285024208,1,40,1 -7531,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.61367102409713,34.8914056920973,1,35,1 -7533,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.1825518498663,33.0985719463727,1,18,1 -7539,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.62166426191106,38.7375811078749,1,43,1 -7548,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.87829182995483,35.2098522136944,1,38,1 -7549,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0279611512087,34.3278559733752,1,19,1 -7550,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.60497154039331,35.5134883407021,1,24,1 -7553,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.64979564445093,36.4811814372121,1,34,1 -7554,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.89308720617555,31.1309878159805,1,23,1 -7560,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3206525899004,35.3231330415904,1,38,1 -7565,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.2466324081179,39.5336349983728,1,36,1 -7569,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3270654832013,35.8626312738892,1,28,1 -7573,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.71526878722943,39.1239707779622,1,40,1 -7574,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.77119325054809,32.3484926514959,1,21,1 -7576,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0640583168715,29.210828551907,1,24,1 -7581,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.58283130801283,35.8171350092997,1,44,1 -7587,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.59896562201902,29.3641709860083,1,18,1 -7596,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3093847371638,34.9536634476241,1,40,1 -7597,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0298488296103,30.518726604462,1,23,1 -7600,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0184953026474,30.3990992603473,1,16,1 -7609,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.97773469705135,31.3733979181976,1,22,1 -7618,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.71157806157134,36.6322085393878,1,30,1 -7619,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.69230130361393,30.5628904603499,1,26,1 -7621,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.78776716114953,34.2398633177935,1,36,1 -7622,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.73155084135942,32.1304132497011,1,23,1 -7627,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.69241185230203,40.6887419335179,1,38,1 -7628,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.334821671946,33.7940836992861,1,22,1 -7630,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1396925635636,37.2178258399843,1,40,1 -7633,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.0183612403926,36.8478732764632,1,35,1 -7634,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.89242660789751,32.1526747878629,1,24,1 -7635,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3002299075015,38.2969206821182,1,36,1 -7639,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4428605469875,35.8163817801178,1,40,1 -7643,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.9950386818964,35.0952341722572,1,35,1 -7646,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.64985333941877,35.1534097527747,1,36,1 -7648,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3077398797031,35.0933465885781,1,30,1 -7652,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.79617090546526,29.4186652443348,1,21,1 -7654,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.75791667914018,33.0044023494926,1,42,1 -7655,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1867798189633,37.3878358686333,1,34,1 -7657,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1622328476515,29.5310111137699,1,35,1 -7658,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.0144319883548,35.5758374362161,1,44,1 -7659,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.63422846631147,36.1690396532775,1,32,1 -7667,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3697909526527,35.3976735272783,1,46,1 -7669,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.72549512377009,29.1141824062291,1,25,1 -7673,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.71469860104844,31.987971427951,1,16,1 -7675,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4259924620856,29.0183530586159,1,22,1 -7683,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.52914634044282,36.2858212002855,1,38,1 -7686,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4618815486319,35.6713356472107,1,30,1 -7688,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.61125891539268,36.5043949418193,1,26,1 -7693,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0422015395015,31.3913449215652,1,18,1 -7694,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2916729839053,32.2446773552494,1,23,1 -7695,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0483820557129,30.3580692793779,1,27,1 -7696,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.62640950968489,37.4609701752454,1,35,1 -7700,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1288000247441,29.0587756196142,1,21,1 -7705,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3196149021387,36.3129513676489,1,39,1 -7708,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.69881169986911,35.9005512774432,1,42,1 -7710,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4272918205243,30.9367943676968,1,20,1 -7711,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.63637697719969,29.4544985768675,1,19,1 -7712,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2449105777778,30.2043521542302,1,17,1 -7719,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.842307576444,33.7936337616769,1,43,1 -7720,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.89278023480438,31.33539198389,1,17,1 -7733,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.79947643820196,36.9755244534117,1,46,1 -7735,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4223889452405,35.6681713377544,1,37,1 -7736,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4484446735587,31.4880618487804,1,22,1 -7740,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.99117597704753,32.0027192722715,1,25,1 -7752,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.87327972589992,38.3875138110007,1,27,1 -7754,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.81522197555751,31.8187327992771,1,23,1 -7755,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.0207785337698,35.9292703393341,1,32,1 -7757,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.52603167458437,30.1424936726123,1,24,1 -7764,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4375751374755,36.8616778466097,1,38,1 -7769,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.78648141981103,31.465078739092,1,20,1 -7770,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3474708199501,30.6427344826203,1,18,1 -7771,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1502878973261,27.9127917351479,1,19,1 -7773,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.87484392011538,33.8010725250072,1,33,1 -7774,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2873368926812,32.6368727344067,1,17,1 -7777,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0664600643795,31.5740315968269,1,25,1 -7783,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.287808062043,34.9575897894531,1,31,1 -7787,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3220486533828,29.7785186951496,1,15,1 -7790,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.0601449364331,36.4455058418428,1,25,1 -7798,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.94018592173234,31.293313145876,1,22,1 -7805,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1741408300586,30.242690102854,1,25,1 -7812,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.87351425271481,35.6392695714445,1,38,1 -7817,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4683292636182,27.820819947693,1,24,1 -7821,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.81952281808481,31.0379894480844,1,19,1 -7822,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.68598156771623,31.1404518086114,1,18,1 -7827,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2925628842786,31.3504215919297,1,33,1 -7830,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2881436317693,39.1929105021497,1,40,1 -7833,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4267656730954,33.3147472371196,1,33,1 -7834,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3100285527762,31.9019027925049,1,13,1 -7836,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2310576145537,31.852592072344,1,32,1 -7841,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2153812416364,32.4869705124511,1,30,1 -7842,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.63077579042874,32.5857541193969,1,26,1 -7843,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1941462222021,35.777028964818,1,29,1 -7847,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.55956887081265,34.5789902462385,1,32,1 -7849,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4373974436894,33.8997012815084,1,33,1 -7853,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3405491514131,31.2624099055172,1,12,1 -7858,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.56076588411815,32.5334646009695,1,15,1 -7862,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2498430719133,35.1652365535858,1,23,1 -7870,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.0389425663743,38.7958326551396,1,37,1 -7871,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.99518952681683,34.7886020333872,1,37,1 -7875,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1914223656058,27.8290804457706,1,22,1 -7880,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.54753211094067,29.5387728671691,1,23,1 -7883,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.87213736190461,34.1553169651993,1,35,1 -7886,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0814841259271,33.0500101177525,1,11,1 -7887,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2581002663355,38.1000693328291,1,26,1 -7889,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1341303123627,30.0696281234191,1,22,1 -7895,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3397961212322,33.8509324324765,1,34,1 -7896,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4657879192382,33.20926533962,1,29,1 -7900,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.0664833174087,35.1767192946973,1,35,1 -7902,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.84530659602024,28.8935132176614,1,21,1 -7905,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1702597264666,33.0457335922851,1,17,1 -7906,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.97524790046737,31.2612346438008,1,19,1 -7907,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.91132066235878,35.2849359718663,1,30,1 -7912,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.55436618300155,34.0350547114553,1,36,1 -7913,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.398199812742,35.3583785137087,1,29,1 -7918,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.81951365922578,31.9279179471777,1,18,1 -7919,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.82359049119987,29.7267656620514,1,20,1 -7932,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.92118771537207,31.1785801952385,1,23,1 -7933,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2337128140498,34.410594363285,1,44,1 -7935,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.50117211299948,37.0251696328897,1,36,1 -7937,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.77320046070963,30.1745067876471,1,21,1 -7939,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.98212927463464,30.3154532956067,1,21,1 -7941,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4611283203121,31.7355081874406,1,16,1 -7945,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2951301462017,30.2728267772589,1,18,1 -7946,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2839018721133,35.6526265404752,1,34,1 -7951,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4851354183629,39.0190257539906,1,41,1 -7959,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.90688977250829,28.8129670788911,1,27,1 -7960,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.50389339774847,34.9306047422244,1,37,1 -7962,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2812380206306,31.8536078735659,1,18,1 -7968,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.353793739574,30.6811484307713,1,20,1 -7970,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1059098429978,34.5284056053613,1,40,1 -7972,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.89998800121248,35.4859931953627,1,49,1 -7976,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.54871039744467,31.4739453667367,1,27,1 -7977,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.56947677442804,36.0177854359015,1,29,1 -7983,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0995216039009,33.6321558466533,1,24,1 -7984,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.63732806709595,31.1502600157701,1,19,1 -7993,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.54610345908441,32.6268292180526,1,44,1 -7994,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3208167040721,33.7598096465671,1,37,1 -7997,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2175813615322,31.5442297791395,1,21,1 -8000,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.78677145461552,36.5934384226641,1,36,1 -8006,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4702536298428,31.1818408537967,1,13,1 -8008,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.63839476834983,31.8018871369947,1,22,1 -8012,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.7325618097093,29.0416606428688,1,24,1 -8016,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.8499348172918,33.2401414637821,1,28,1 -8017,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0931161413901,33.0001566897624,1,28,1 -8024,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.93745633331127,34.9442823485042,1,31,1 -8028,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0205253581516,30.9740563142094,1,13,1 -8031,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.85790848219767,37.6366848908099,1,42,1 -8034,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.93928966857493,30.2869448481192,1,22,1 -8035,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.006909355754,32.1558967149719,1,29,1 -8036,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.85664534918033,34.0125713074972,1,28,1 -8037,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.5015443447046,35.3778106070599,1,35,1 -8042,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4142840588465,35.3758601023932,1,34,1 -8049,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.60554206115194,30.7631727950057,1,24,1 -8051,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.044653584715,35.9051687522806,1,29,1 -8052,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.81810334185138,35.873656592613,1,35,1 -8054,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.79245744668879,34.4353834713025,1,42,1 -8055,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.77496482990682,28.658626980385,1,24,1 -8056,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.477878715843,33.0859243310573,1,32,1 -8066,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.203823102871,31.3520446232742,1,18,1 -8067,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2735677529126,35.1213965199422,1,46,1 -8072,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0067116429564,32.51827974838,1,31,1 -8074,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1528936491814,32.6926817031155,1,20,1 -8075,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4527955537196,31.1110875818015,1,19,1 -8080,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0464399892371,28.9803585036669,1,24,1 -8089,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.57244990440086,34.7276939565629,1,31,1 -8091,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.58254710608162,34.4336325762208,1,31,1 -8098,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.73887457093224,32.9005177680699,1,19,1 -8102,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.73382161953487,29.3361129043137,1,16,1 -8103,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1433586617932,28.3110930877328,1,28,1 -8104,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.1205730705988,34.9167133792733,1,34,1 -8105,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4725024870131,25.7755214049526,1,22,1 -8116,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.373269739328,37.2497634997419,1,34,1 -8117,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.75082640442997,30.6551310219512,1,17,1 -8119,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4452721369453,26.3921566679003,1,24,1 -8120,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2524818859529,29.2625659010032,1,27,1 -8128,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.84508962603286,33.6272350364809,1,29,1 -8134,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.73172383313067,28.1292303904022,1,15,1 -8137,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2292381927837,31.1052902701771,1,17,1 -8139,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1257361639291,28.9948335115372,1,14,1 -8142,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.61867138161324,28.2813758577831,1,19,1 -8144,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.55273941392079,34.3614577720713,1,30,1 -8146,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.1837309682742,35.4367062339548,1,27,1 -8147,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.7688256863039,32.87433607723,1,26,1 -8150,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0772701462265,33.5424006195783,1,34,1 -8151,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4203869721387,31.4950114903122,1,22,1 -8152,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.65602597850375,32.472622230038,1,38,1 -8155,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4894436884206,38.6493204099936,1,41,1 -8161,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.71797144901939,27.9035195563231,1,23,1 -8162,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.1328990443144,34.8383366363165,1,32,1 -8165,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.54343585879542,34.428354463666,1,33,1 -8168,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.2675656259526,33.958559112311,1,32,1 -8170,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3262581124436,31.8282960769426,1,42,1 -8171,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3750946770888,35.5308334543624,1,22,1 -8173,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3818284729496,35.0146168200707,1,24,1 -8174,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.74029995617457,29.8306165820958,1,20,1 -8177,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.55910459370352,36.6382140017186,1,27,1 -8183,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.75940295611508,34.4845150707135,1,30,1 -8185,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.58784031821415,28.859775488802,1,25,1 -8197,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.93630512268282,32.3123267313755,1,29,1 -8198,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3923922784161,35.0931314279385,1,38,1 -8202,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2900913932826,30.3831802762056,1,18,1 -8205,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2935139746405,29.5479909750116,1,21,1 -8206,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.51264830445871,34.4742693193391,1,32,1 -8208,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.83448204025626,30.5944044476516,1,16,1 -8209,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.99234179756604,27.8458857390599,1,16,1 -8215,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4535905790981,28.3786268470572,1,28,1 -8217,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.1374331912957,33.4861200783106,1,42,1 -8218,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.50587188103236,28.930617899073,1,11,1 -8220,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.98201166419312,34.3129539867787,1,30,1 -8222,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4721888294443,34.4016408931429,1,33,1 -8223,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.89044258324429,33.3295012266581,1,37,1 -8225,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.50144589995034,29.1712317250069,1,23,1 -8240,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.377547129523,36.374895584901,1,31,1 -8243,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.89305022661574,27.9082974239351,1,15,1 -8252,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1923999446444,30.8249837353266,0,16,1 -8255,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.7002644285094,35.5210723294982,1,21,1 -8256,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0030663919169,28.684482444497,1,21,1 -8258,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3369976892136,34.4513344755264,1,24,1 -8261,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4994430819061,29.7482060723826,1,13,1 -8267,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.2343249565456,35.0834158689718,1,24,1 -8268,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1497214774136,31.98986137638,1,22,1 -8269,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4659702521749,27.2946530199041,1,19,1 -8272,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.66087911603972,33.3723113508224,1,33,1 -8280,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3624200106133,28.4412597520755,1,18,1 -8282,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2564213774167,29.7028859101989,1,20,1 -8283,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.60850075143389,29.0539343445874,1,15,1 -8288,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3946603303775,35.3050861645453,1,25,1 -8291,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.85408271406777,34.631161260411,1,20,1 -8293,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.52740803989582,29.3280761706008,1,22,1 -8303,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4165095905773,35.9053822891072,1,34,1 -8305,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.331551015377,27.4676292637577,1,14,1 -8308,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2355192666873,28.8274336266037,1,15,1 -8317,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4040665170178,33.8871578934101,1,32,1 -8318,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.98817154811695,28.4866656286343,1,26,1 -8320,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4561318010092,35.9896691633641,1,34,1 -8326,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.65840686578304,33.9409136717958,1,30,1 -8329,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.082259881543,28.5397053577501,1,17,1 -8331,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.80743994540535,27.8890082464587,1,19,1 -8333,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.51561689516529,30.4490725515906,1,16,1 -8339,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.6612427434884,31.8429347507696,1,19,1 -8340,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.51519136223942,28.6339815492116,1,14,1 -8342,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.89097690745257,28.6268408657231,1,11,1 -8347,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3175983740948,34.0502720283879,1,28,1 -8351,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.66096706176177,27.7847102547123,1,20,1 -8354,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.91291978606023,29.4822096501565,1,17,1 -8356,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.62588287214749,36.2238000711744,1,32,1 -8359,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.1023304744158,34.1567128738191,1,38,1 -8366,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.195648820838,36.6571414820886,1,37,1 -8369,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0064001169521,34.3238979747738,1,25,1 -8371,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2835404430516,28.8936097513418,1,15,1 -8372,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.82119315606542,28.5998517450029,1,23,1 -8374,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1625134118367,28.8433603758109,1,20,1 -8375,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.8013591079507,31.458713068568,1,37,1 -8376,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.76708299876191,33.7222665718535,1,29,1 -8377,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.2697539248038,35.3288735478325,1,28,1 -8381,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0652007265016,34.4727361277163,1,32,1 -8383,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.77769345184788,28.0788559360181,1,20,1 -8387,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4890560945496,29.4568314221864,1,18,1 -8390,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0506301990245,35.5500092746305,1,25,1 -8391,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.64021588256583,29.7867179438119,1,15,1 -8397,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.68814821867272,34.1276101640567,1,35,1 -8399,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1431814115494,26.5672270009671,1,20,1 -8402,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4639666993171,29.7611534398018,1,14,1 -8405,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0396099204663,34.295437949252,1,35,1 -8408,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2545232237317,32.1793717054059,1,16,1 -8411,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3382971389219,30.0306687784285,1,29,1 -8414,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0802292595617,33.6469895368842,1,25,1 -8424,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2353747959714,27.3027155042592,1,10,1 -8425,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2423022589646,28.7085177571138,1,17,1 -8426,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0969524595421,34.0515893779492,1,29,1 -8427,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.90693141543306,28.4543945443019,1,13,1 -8428,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3242720945273,33.0944652588594,1,30,1 -8431,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4545538155362,30.2512158915294,1,21,1 -8433,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0981113619637,28.6820485650975,1,12,1 -8436,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.89538098522462,34.6058960827903,1,32,1 -8442,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.2340660262853,35.4405160972894,1,26,1 -8443,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.58329460676759,30.9502584420651,1,21,1 -8444,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3019466598053,29.0677657540572,1,25,1 -8448,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0374835045077,34.232510618005,1,29,1 -8453,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.62272633938119,37.5337836904514,1,34,1 -8457,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0776778862346,34.8463279243273,1,21,1 -8458,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.52146332687698,28.9144870473032,1,18,1 -8459,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.90488112159073,34.9322110725127,1,24,1 -8462,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4895453341305,34.7855676499882,1,30,1 -8464,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3593128628563,34.5480777996369,1,27,1 -8468,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.7581095630303,30.1308319571254,1,18,1 -8471,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.87755218264647,30.2721170209119,1,17,1 -8476,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.437933267327,31.2128029363559,1,19,1 -8480,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.63451608177274,32.6763441603687,1,17,1 -8481,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.62083494057879,34.6752662054928,1,40,1 -8483,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2822458886076,26.1792789906633,1,19,1 -8488,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3669130755588,30.1105104462924,1,18,1 -8489,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.87685982929543,30.2599069592478,1,11,1 -8491,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.5805105320178,35.1203739901168,1,29,1 -8498,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.9113871131558,29.6102444638717,1,19,1 -8499,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.83231752575375,29.0046055578502,1,16,1 -8500,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.59771302482113,26.9991801042637,1,18,1 -8502,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4501551897265,34.0620168369654,1,35,1 -8506,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0277153959032,30.0186217110957,1,21,1 -8517,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.66002762620337,31.6782582795969,1,32,1 -8518,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.86998303234577,35.0485974582102,1,31,1 -8519,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.62822629278526,33.9913929811371,1,38,1 -8521,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3431059091818,32.064518541011,1,42,1 -8523,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0542715645861,30.9942208827257,1,16,1 -8524,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.79924763459712,30.9645017038509,1,19,1 -8528,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.58670410723425,28.5561575474118,1,18,1 -8530,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.88449329324067,35.3214063803816,1,29,1 -8531,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.447505465243,38.1518606192596,1,22,1 -8534,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3353322036564,33.2493096200007,1,41,1 -8538,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.2736188680865,32.2297443515904,1,30,1 -8541,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.9016865498852,34.5841356695853,1,32,1 -8549,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0628715495113,28.7520203044346,1,21,1 -8550,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.6126677794382,35.2553211101038,1,31,1 -8551,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.80431468156166,27.4532633614565,1,20,1 -8554,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4604441863485,34.1964917737528,1,48,1 -8557,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.76541098905727,32.6702529969773,1,31,1 -8559,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0336075187661,33.6251195963367,1,32,1 -8560,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.86152063286863,30.8951445182502,1,21,1 -8563,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.83496821671724,29.1034733879333,1,15,1 -8564,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.50298639014363,28.4868862288232,1,15,1 -8570,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0390587663278,37.2948556481733,1,28,1 -8580,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.59550675284117,36.0108961335318,1,33,1 -8581,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.92882397654466,30.9867784987237,1,38,1 -8585,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.54898490523919,29.6005829463946,1,19,1 -8590,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3601529779844,30.6842747652206,1,17,1 -8592,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0313515015878,35.0824904076241,1,29,1 -8594,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0969804804772,33.8280183490535,1,21,1 -8597,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.70926852547564,36.7239504624363,1,29,1 -8598,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.96542189409956,35.8117624135476,1,32,1 -8609,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2190139542799,29.4791157083141,1,21,1 -8610,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2013649272267,29.2868715728361,1,14,1 -8613,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4729588192422,30.2739856237909,1,26,1 -8614,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.88058654149063,28.5827987067938,1,16,1 -8617,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.85104145598598,33.5852799822119,1,38,1 -8618,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.2578269513324,33.2632756915771,1,21,1 -8632,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.54183500399813,30.6080707772025,1,28,1 -8633,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1986475682352,34.2014648294013,1,35,1 -8643,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.72056337725371,31.4101916346862,1,31,1 -8645,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.54843459813856,32.0753599510593,1,23,1 -8646,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.4565612839069,29.2392985095252,1,18,1 -8652,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.91286585852504,36.0907607441508,1,35,1 -8654,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0306070558727,36.7380173428502,1,24,1 -8655,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.82759340247139,35.0755793283775,1,35,1 -8657,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1229053584393,31.1901941981174,1,16,1 -8658,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.196021825308,34.3840688846778,1,48,1 -8661,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.62815644196235,32.5109313321005,1,23,1 -8663,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.89174759713933,30.68238829962,1,25,1 -8668,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.93604667088948,29.8962904279094,1,16,1 -8669,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2142271990888,35.9040511255316,1,31,1 -8685,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.99099988932721,30.6351247107866,1,12,1 -8694,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.92862140131183,34.1631149867666,1,30,1 -8696,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.9786803741008,33.3323604577335,1,45,1 -8697,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.119642079575,34.3175016548223,1,35,1 -8701,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2277348276693,38.5300935558223,1,41,1 -8706,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.00376276928,37.0563677552824,1,45,1 -8707,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.92624954599887,35.7452925348096,1,33,1 -8713,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.56442217086442,32.742179158256,1,32,1 -8714,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3779088151641,33.7708852530221,1,34,1 -8716,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.80718597420491,30.5908553971833,1,15,1 -8717,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.95183165813796,34.8789488545526,1,34,1 -8719,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1882041799836,28.9937489165156,1,26,1 -8720,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.3750412722584,31.796947000877,1,16,1 -8722,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.60696209431626,32.8826583074602,1,24,1 -8723,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.87505710497499,32.3836667466296,1,27,1 -8724,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.52691293787211,35.0261589577192,1,42,1 -8731,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2157586794347,32.8202124256313,1,45,1 -8733,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.50359729095362,36.4900727744101,1,37,1 -8735,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4696376984939,33.7472321232447,1,30,1 -8736,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4804316288792,36.4238267949794,1,41,1 -8737,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.59942914242856,29.7669535554698,1,19,1 -8738,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.0832051404286,31.3198046881959,1,25,1 -8744,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.68262101267464,33.2005104689176,1,17,1 -8745,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2516583388206,34.831224856948,1,45,1 -8746,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.424543576315,37.3735442438727,1,31,1 -8747,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.9505508330185,35.2675996701109,1,43,1 -8748,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.0563618266024,31.6571414027968,1,29,1 -8749,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2787281912751,36.9772643904918,1,28,1 -8756,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.171207563486,32.762281115099,1,14,1 -8758,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1197614513803,28.3599737940657,1,16,1 -8759,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.75744998385198,34.4244588574964,1,30,1 -8763,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1874700908083,33.7528299139062,1,44,1 -8769,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.71649489435367,29.3492093995565,1,23,1 -8772,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.049125474412,36.646572809247,1,32,1 -8779,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2696841799188,30.1346137663091,1,18,1 -8781,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.52291550557129,35.143083090325,1,31,1 -8782,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.57708080671728,34.4919746241223,1,34,1 -8784,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.419293471612,30.729935822818,1,20,1 -8785,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1785981236026,28.7717306752073,1,24,1 -8788,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.268797590863,32.4836114723185,1,22,1 -8791,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.61014433321543,36.3066815695018,1,32,1 -8793,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1992463860661,31.9462925393675,1,28,1 -8796,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.93618049588986,29.4023622246085,1,15,1 -8799,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.55447836220264,29.5647447049674,1,21,1 -8800,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.0363974489737,29.3554698987052,1,22,1 -8801,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.246429085033,29.8760225774602,1,25,1 -8802,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3054900583811,34.8299107826598,1,39,1 -8804,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0238802579697,35.0530100315909,1,36,1 -8807,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.79842722392641,35.3869422827034,1,40,1 -8820,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.57453324599192,34.767206914876,1,27,1 -8821,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.72892546188086,30.6356431671437,1,23,1 -8822,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4863117425703,36.1297527420001,1,36,1 -8823,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.58658512216061,35.917143487527,1,35,1 -8829,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1868491217028,37.1631480855192,1,30,1 -8845,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.79029944585636,29.5553949936395,1,26,1 -8853,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.84163230704144,33.5407859027768,1,24,1 -8854,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3455306747928,32.760685851261,1,35,1 -8855,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.9527677714359,31.1886301533358,1,21,1 -8862,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.3508288941812,31.1498070259422,1,23,1 -8863,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2110000904649,32.7320902490951,1,32,1 -8864,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0059475679882,35.6565600651867,1,31,1 -8866,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.73156270920299,36.0352733930178,1,33,1 -8870,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.4169242316857,33.5164420260396,1,17,1 -8871,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.72606511926278,30.8353246526545,1,30,1 -8873,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0881509082392,36.4555925440596,1,34,1 -8880,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2202475592494,27.8959751132579,1,24,1 -8884,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.80116383079439,28.3274768757818,1,15,1 -8885,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.4521978863049,29.9782098837089,1,18,1 -8890,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2457701221574,37.4756747933706,1,40,1 -8891,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1527679399587,35.0144054519432,1,33,1 -8893,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.73245837376453,31.8816993568736,1,15,1 -8897,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4860674338415,36.251501470349,1,45,1 -8898,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.3221742277965,30.6596362581684,1,23,1 -8899,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.94724893989041,31.2998219682289,1,24,1 -8901,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.404015940614,37.7795467963573,1,27,1 -8905,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.90513130812906,30.6268898448756,1,15,1 -8907,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.79489569994621,38.1548118280052,1,36,1 -8909,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.51815600250848,31.2296883356356,1,19,1 -8914,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.06226737611,35.5019086937428,1,34,1 -8919,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.81779932347126,30.4756551101264,1,20,1 -8921,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.3026615264826,31.3687518269955,1,24,1 -8922,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.89856269699521,30.43643053944,1,35,1 -8932,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.63936914992519,35.5217155304897,1,29,1 -8933,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1328175223898,30.7797733533424,1,24,1 -8934,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2817351957783,33.1848576572046,1,18,1 -8937,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.87232651212253,30.3645952108375,1,22,1 -8938,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1823018861469,34.3745491386025,1,41,1 -8939,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.84938543685712,37.6637118298115,1,29,1 -8940,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.0012263429817,30.7556699973364,1,19,1 -8944,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.0357749839313,31.6466588355865,1,27,1 -8947,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.0373784538824,31.5721964508402,1,23,1 -8949,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.63655905751511,28.261877838908,1,19,1 -8950,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.89400922204368,34.8664808426372,1,32,1 -8951,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3793166633695,35.4906830630313,1,35,1 -8953,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4264703206718,35.249020022053,1,31,1 -8955,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.51146494457498,30.9354824732429,1,22,1 -8957,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.6612259815447,31.1192460327745,1,23,1 -8959,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.69895555428229,29.6874461820431,1,17,1 -8961,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.7471601634752,35.9954993117087,1,41,1 -8963,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.58677246118896,33.2033921196517,1,19,1 -8965,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4886916726828,33.7789523214121,1,30,1 -8967,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.57588938390836,28.7379786214858,1,19,1 -8968,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.87301813578233,35.2102311963834,1,38,1 -8972,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2173063741066,34.3720513200852,1,39,1 -8976,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.82906061806716,34.1759961990051,1,33,1 -8977,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3702488350682,33.5843978894113,1,33,1 -8981,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2106674427632,31.0158612634644,1,20,1 -8982,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.78996539348736,37.5712600546221,1,25,1 -8986,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2218019485008,37.5812829292704,1,37,1 -8991,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.74423503596336,36.3801467394277,1,35,1 -9002,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.61817976459861,36.9629992737753,1,41,1 -9006,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.62018654635176,31.327411568171,1,17,1 -9008,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.71784154395573,36.4903711204228,1,29,1 -9009,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.87523827003315,33.2893352782907,1,24,1 -9011,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.84132692124695,35.8868949805853,1,36,1 -9016,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.53669719561003,28.0041388262063,1,25,1 -9018,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.89600045094267,34.1347597046172,1,26,1 -9022,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.55803191196173,34.4058930764956,1,36,1 -9023,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.7228382746689,33.9002439820732,1,38,1 -9026,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.74444931442849,35.8395134224006,1,28,1 -9030,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.95267948368564,35.3362044604825,1,38,1 -9033,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2410594725516,30.7709689415198,1,23,1 -9037,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.99473682185635,35.2383125675338,1,29,1 -9038,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3049846000504,35.3633597980132,1,36,1 -9042,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.344790333882,33.2847469048499,1,46,1 -9044,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.176500871079,29.5409353076314,1,23,1 -9045,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1956484117545,33.9604201087085,1,34,1 -9046,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1852940157987,36.0827637773827,1,37,1 -9051,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.3446489390917,31.9681518953471,1,25,1 -9053,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.60794245335273,35.3835566977148,1,36,1 -9054,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.8183564201463,32.0503568208996,1,29,1 -9055,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.6732600806281,36.5025482221081,1,40,1 -9058,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1009210422635,36.1990973305268,1,35,1 -9062,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.63119812868536,35.3053795853562,1,46,1 -9063,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.93604242731817,35.8394080415526,1,31,1 -9065,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.75629881280474,37.0096814167962,1,40,1 -9068,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.83870857208967,34.4692119774807,1,32,1 -9070,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.59086165833287,36.545960233858,1,29,1 -9072,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.5049106113147,34.7220581567939,1,30,1 -9073,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3252230770886,34.6867243295635,1,32,1 -9078,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.491162607912,30.4488464320208,1,25,1 -9081,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.76877494971268,35.7263067570501,1,45,1 -9087,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.99934767070226,34.9821196816841,1,28,1 -9091,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.8207412334159,28.4057504043323,1,29,1 -9095,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.95282222540118,28.4119191495624,1,29,1 -9096,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.61583349644206,34.7910739548695,1,48,1 -9099,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1994903595187,31.9388733210184,1,27,1 -9101,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.5547769642435,29.3028879738478,1,32,1 -9105,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.81674226839095,30.5147666401685,1,26,1 -9107,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0229537878186,36.2580098313517,1,34,1 -9108,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1834436450154,32.8968822739777,1,23,1 -9111,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.58820811030455,36.2097173216779,1,31,1 -9112,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4196647743229,35.6743252032725,1,44,1 -9120,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.5862294100225,29.4125322768166,1,20,1 -9122,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.60788041446358,35.0557693238109,1,40,1 -9124,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0638540622313,37.7607519846836,1,32,1 -9129,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.94886782742105,37.1153384367096,1,33,1 -9130,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.88748341030441,28.8707417446416,1,19,1 -9133,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.97436929051764,35.8796413801997,1,37,1 -9135,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.3395240819082,32.2393007252565,1,23,1 -9139,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.0512749496847,27.9286360604999,1,27,1 -9140,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.0266190727707,28.6265436382959,1,21,1 -9147,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3349187590647,31.4776763610047,1,31,1 -9152,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.68027097964659,26.4482262166921,1,10,1 -9154,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.87372038047761,26.3957093338261,1,13,1 -9155,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.61173592391424,30.7017488464749,1,26,1 -9157,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2895495174453,31.4925665471358,1,22,1 -9168,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1511009715032,26.8816050200469,1,16,1 -9169,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.57212580274791,28.3433660460414,0,13,1 -9172,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.185050775297,34.5425232421629,1,26,1 -9178,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1852125828154,26.5561269188853,0,11,1 -9180,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0586004971992,33.0990716388837,1,27,1 -9181,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.63473169598728,32.4655808590283,1,34,1 -9187,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.64721917593852,26.9157061201297,1,15,1 -9188,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2864921092987,28.9635848334098,1,17,1 -9189,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2173286844045,34.3864467269099,1,22,1 -9190,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.0743498166557,29.0831601184354,1,15,1 -9191,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1520343276206,32.9845511071263,1,25,1 -9193,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.83545386954211,31.181220394378,1,18,1 -9201,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.94744476000778,27.5170779832349,1,24,1 -9204,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2204068477731,26.858443846266,1,11,1 -9206,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.51585164736025,27.9565207996304,1,14,1 -9207,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.60805669450201,30.131616718595,1,26,1 -9211,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.57972222543322,29.5203631699741,1,19,1 -9215,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1629411210306,32.1142012794031,1,27,1 -9216,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0522085423581,33.8462503424436,1,20,1 -9217,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.72051603347063,26.5309888082711,1,14,1 -9219,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.68544701067731,27.3755425954569,1,13,1 -9221,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.492600120604,31.0614706542472,1,25,1 -9227,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.82275075372308,27.509168876377,1,12,1 -9228,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0187541076448,30.463791634893,1,28,1 -9235,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.82546288636513,28.4925063071115,1,14,1 -9236,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0044622737914,33.1976202475098,1,37,1 -9238,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.96829266473651,32.1298112681635,1,24,1 -9241,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.93964518350549,27.4228482814812,1,21,1 -9246,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.4010297509376,31.0444306836841,1,29,1 -9250,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2161604268476,30.2020185743597,1,20,1 -9251,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3591214145999,31.7329584487637,1,20,1 -9253,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.90695262211375,27.7734150160221,1,8,1 -9256,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.91403742553666,32.5640998010743,1,21,1 -9257,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.52157348277979,25.0821040057072,1,13,1 -9259,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.443244692171,30.1291706505944,1,28,1 -9261,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.75149597227573,32.9628382512564,1,16,1 -9262,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.54275976563804,29.4032471916867,1,10,1 -9264,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.98489584540948,31.4407727779464,1,26,1 -9266,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.78751923539676,33.027503232127,1,31,1 -9267,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.78001718851738,34.8428843597378,1,29,1 -9269,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.51947721466422,28.0092332078553,1,21,1 -9272,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.54262820607983,27.2514794238649,1,17,1 -9273,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.82600349350832,31.7399337274796,1,21,1 -9274,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.83576980419457,29.6952855119214,1,17,1 -9276,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.57138784555718,28.1795797181955,1,18,1 -9277,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.4674978055991,33.0183275918401,1,25,1 -9278,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1170984716155,33.5697653952273,1,27,1 -9286,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.52990184607916,32.0600882644323,1,34,1 -9287,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.61215902469121,32.172162044282,1,25,1 -9288,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.923313211184,27.6550211686488,1,21,1 -9294,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.81100771366619,32.3325953454213,1,13,1 -9307,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.5975862313062,27.9153472528621,1,16,1 -9313,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.81697553163394,28.3493862380877,1,18,1 -9316,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.4749459736049,32.2325492834454,1,27,1 -9318,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.95710095646791,32.4962617478105,1,32,1 -9326,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3128312262706,27.2801866078207,1,14,1 -9332,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.0288538909517,28.9919040661994,1,12,1 -9335,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.72998893028125,28.8163529173454,1,20,1 -9337,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.40210864041,27.1454830061918,0,24,1 -9346,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.4729549840558,31.3848509838866,1,25,1 -9348,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.71229681326076,31.6048415566074,1,34,1 -9350,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4124137223698,25.9593646302857,1,15,1 -9351,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2845236666035,31.270266154775,1,30,1 -9352,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0773476492614,32.7877143569048,1,26,1 -9355,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2777818238828,30.1987309729938,1,24,1 -9359,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1287838402204,25.8362349129015,1,11,1 -9360,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3714100369252,25.8979946413368,1,15,1 -9361,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.690779061988,27.3455391067742,1,12,1 -9367,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4045406109653,30.2531549012145,0,15,1 -9371,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.61753774737008,27.8910660961792,1,13,1 -9376,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2832071704324,25.4159011918427,1,11,1 -9380,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.90310054318979,30.5470261395997,1,12,1 -9384,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2055658861063,30.9342535779977,1,30,1 -9385,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.63742921315134,25.3850635247413,1,13,1 -9396,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4934989467729,28.3362727293598,1,19,1 -9401,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.670045214938,33.4759483512753,1,14,1 -9403,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.4637535917573,28.2119357278923,1,20,1 -9407,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2899976829067,27.2970154191085,1,25,1 -9411,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.8846951124724,31.8869794124342,1,25,1 -9416,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.84805728914216,25.4047129111137,1,17,1 -9417,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.443440200761,26.586745640355,1,19,1 -9419,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.94130174047314,26.6976845420471,1,15,1 -9422,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3073207954876,27.660185534192,1,10,1 -9430,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3003132597078,27.6724636156921,1,21,1 -9433,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.54354155715555,24.2508503404889,1,18,1 -9434,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.55648620519787,28.2221873476845,1,18,1 -9438,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.87696949974634,29.9503589345852,1,33,1 -9442,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.61486490140669,29.3064920354074,1,20,1 -9444,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3625296452083,32.3117146327884,1,33,1 -9448,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.51965205464512,34.7384073894154,1,25,1 -9449,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.69221827271394,33.1953142368151,1,25,1 -9453,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.70424727723002,34.1139336498467,1,18,1 -9458,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.67818110459484,30.2850357326135,1,21,1 -9460,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.75827501690947,27.8088933360268,0,19,1 -9462,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.81183546944521,25.7088151311658,1,19,1 -9463,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4404162645806,26.9828903337112,1,8,1 -9465,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.58897209982388,27.6650942480039,1,22,1 -9468,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2244714221451,32.2414640568641,1,23,1 -9469,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.84116250090301,29.6287535669945,1,23,1 -9470,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.4937903813552,31.4300689009856,1,32,1 -9474,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2530561741441,27.8392706455077,1,16,1 -9475,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.77330318186432,31.4645521378642,1,29,1 -9477,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4217509257142,26.7322362766435,1,19,1 -9481,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2423969011288,27.0263183003188,0,11,1 -9482,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1486027566716,27.5725386987915,1,14,1 -9483,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.432832010556,26.3400045380621,1,14,1 -9489,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.64738131361082,28.0817946737324,1,17,1 -9490,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.72943670442328,30.3157484185652,1,20,1 -9491,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2715237711091,30.9897413891227,1,31,1 -9497,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.4017279697582,32.5253896125381,1,28,1 -9498,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.88984077586792,25.5835268180358,1,12,1 -9500,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4512364885304,27.4213775983067,1,9,1 -9504,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.4067537577357,29.2722494785388,1,31,1 -9508,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1044949258212,33.0711711138277,1,24,1 -9509,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3356466174591,24.86550353332,1,9,1 -9512,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.309968453832,27.2176651698052,1,16,1 -9515,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1425359980203,27.1344415512575,1,13,1 -9520,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.7665413885843,31.7854455173366,1,24,1 -9522,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1264550327323,27.2909958750095,1,11,1 -9524,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3627866476309,34.6304268598606,1,24,1 -9526,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2366733411327,31.3749794183115,1,24,1 -9527,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.88530149916187,31.9848125148043,1,19,1 -9529,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.57274699863046,27.2879881751313,1,15,1 -9531,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.4095237210859,32.4343042869833,1,30,1 -9535,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.886723655276,27.8659883801415,0,14,1 -9539,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.99245385825634,32.472523258562,1,26,1 -9544,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4411841046531,27.3089207037387,1,18,1 -9545,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.81237803166732,32.1767136620034,1,16,1 -9546,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1773251837585,31.9711334569942,1,20,1 -9550,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.51562128961086,33.2031956512749,1,28,1 -9552,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.51334507460706,28.6301277837961,1,14,1 -9553,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.98420116165653,26.6781782170118,1,16,1 -9556,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1841566078365,33.1588746285901,1,32,1 -9557,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.71529112919234,25.7278447569993,1,15,1 -9559,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.71393792168237,29.3085369019894,1,25,1 -9560,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4777968144044,26.6921471292676,1,14,1 -9569,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.58281740732491,35.1936971711701,1,27,1 -9570,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.65875284839422,30.4576509460787,1,14,1 -9572,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.92699094861746,33.6220188465236,1,34,1 -9573,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.81427626451477,27.9427620818816,1,20,1 -9577,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.60294088022783,32.535251092433,1,22,1 -9587,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.0488287424669,25.6945029238188,1,18,1 -9588,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.81092396937311,26.3104848813825,1,13,1 -9596,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3255763219204,33.8252655510977,1,20,1 -9598,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.0764049175195,27.4134625704231,1,19,1 -9599,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.0720905279741,26.6849593069435,1,19,1 -9601,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.415900796419,25.0555263877908,1,11,1 -9602,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.61380079574883,26.1493708749251,1,11,1 -9603,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.067991205724,29.0673732939595,1,8,1 -9604,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.276743105147,32.7766643207153,1,24,1 -9605,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.4846773033496,31.6272423997026,1,25,1 -9606,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0793816053774,33.1272752133565,1,22,1 -9607,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2466386181768,28.6488777557824,1,19,1 -9609,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.79254678962752,25.7771297988573,1,15,1 -9615,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2464174507186,30.4331898810902,1,23,1 -9618,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.5434673440177,29.4790977931782,1,24,1 -9619,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3085639302153,30.4360373543933,1,24,1 -9630,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.8407467820216,28.0209078507382,1,16,1 -9632,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.93534607207403,23.7329538948377,1,13,1 -9633,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.97125768754631,31.0128990887469,1,16,1 -9636,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.83754680794664,24.1248696104064,1,12,1 -9641,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2240740873385,27.3097483153398,1,9,1 -9645,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.6690661595203,30.685431524832,1,25,1 -9647,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.75387732614763,30.405088248192,1,25,1 -9648,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0188477297779,32.0687622726755,1,28,1 -9652,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.95997185795568,28.628139793554,1,23,1 -9655,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.92552575771697,29.0003672025156,1,17,1 -9656,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4698690627702,22.2721894498687,0,13,1 -9657,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2587054180913,23.8489805551339,0,4,1 -9672,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.82782607455738,21.338115141922,0,11,1 -9674,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3483901924919,24.4267452026684,1,12,1 -9684,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3247605529614,30.3454974588564,1,14,1 -9691,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.85816331906244,32.2125956392498,1,13,1 -9694,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.66189213981852,32.6114436400802,1,19,1 -9695,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4833088449668,25.8058884003938,1,12,1 -9696,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.1576111880131,25.705798301285,0,13,1 -9698,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3779269510414,29.0373342378662,1,20,1 -9700,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0812376928516,30.0809130439369,1,18,1 -9703,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.398051954573,29.017807047604,1,26,1 -9706,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3427801206708,30.6511981385214,1,16,1 -9710,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.74991539143957,25.2123911021403,1,6,1 -9718,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1915397080593,30.1640408842156,1,24,1 -9725,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.75162198161706,27.093486086283,1,14,1 -9728,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3516042807605,26.0818729857823,1,13,1 -9730,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.71519539086148,29.3229372633609,1,21,1 -9731,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.92503397678956,29.8443157470305,1,31,1 -9735,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.69820554810576,27.7721090021257,1,21,1 -9741,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.97890227357857,31.4141992455384,1,20,1 -9743,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.314175899839,21.5224115796143,1,3,1 -9745,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.51015336555429,30.7161200371404,1,17,1 -9749,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.53038557991385,31.8021201831966,1,23,1 -9752,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.71277339337394,31.8296437066682,1,20,1 -9753,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4425734994002,32.5965252490404,1,24,1 -9754,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.57141036423855,31.6452372655839,1,14,1 -9759,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.72431366238743,26.2980098949518,1,16,1 -9760,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0334404213354,28.7754139578748,1,15,1 -9762,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.54959281906486,25.4146882638846,0,9,1 -9763,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.73380903946236,23.594764150259,1,11,1 -9768,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0204404452816,29.1624125986909,1,24,1 -9769,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.71654818509705,31.475858809338,1,22,1 -9773,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4227790755685,30.9927340854928,1,16,1 -9779,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4983652748633,30.8233159676313,1,20,1 -9781,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3800862084609,28.7619992390792,1,25,1 -9785,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4467447842471,24.9535166333511,1,10,1 -9794,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.80693437275477,31.7811874592577,1,25,1 -9796,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.87697862670757,30.9410565205349,1,20,1 -9797,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4296720009297,28.6287814593478,1,13,1 -9800,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2645779983141,24.3244060944564,0,14,1 -9801,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.97104909084737,27.7790637145401,1,18,1 -9804,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4711520352867,30.1532026453249,1,23,1 -9808,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.67225127387792,30.717212026197,1,15,1 -9809,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.73150369012728,28.6205380125741,1,18,1 -9810,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4711757153273,25.1841774953718,0,19,1 -9814,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3985846347641,26.4361601111249,1,8,1 -9818,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.57577265705913,29.2244243412578,1,22,1 -9821,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.68739890190773,30.0156658541351,1,22,1 -9822,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.55827673128806,29.4487794183695,1,18,1 -9826,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.68005053559318,26.6169922102475,1,11,1 -9828,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.97523560631089,24.3809127328072,1,6,1 -9831,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3476232688408,28.2480123482289,1,21,1 -9832,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1971091665328,31.3010562494287,1,26,1 -9834,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.81293506221846,31.585432417136,1,24,1 -9838,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.66506105172448,27.4386587603686,1,11,1 -9839,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.62610883661546,22.9346740007166,0,11,1 -9842,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0457735238597,32.0905232084652,1,21,1 -9843,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.75027997721918,25.3619461809648,1,10,1 -9847,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.83649523882195,28.5041225880955,1,22,1 -9851,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3880217920523,23.9436415183827,0,17,1 -9853,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.152227869723,28.5787033296877,1,19,1 -9855,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.5941095193848,29.9163392871613,1,14,1 -9856,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.51292031165212,26.5276637857364,1,10,1 -9858,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.70665751327761,32.2761973653604,1,26,1 -9859,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.89381300611421,30.0752066700749,1,22,1 -9865,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3125591063872,30.124353195608,1,15,1 -9867,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.84412710578181,23.3179956272232,1,12,1 -9874,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.97659629280679,26.6127656149125,1,8,1 -9879,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.64744442654774,29.7309431075409,1,20,1 -9882,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3583652393427,28.3344547156671,1,20,1 -9884,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.97872469923459,25.2257977985106,0,13,1 -9885,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.87333410535939,31.0434079541913,1,10,1 -9890,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1520941709168,30.8311690920258,1,16,1 -9891,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3356443108059,30.7087284084442,1,22,1 -9894,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1775322973263,30.1085067177385,1,29,1 -9895,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.61175444861874,23.7509220453233,0,11,1 -9898,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.84955204674043,23.6824108535903,1,19,1 -9910,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0430405056104,29.4298806860427,1,25,1 -9911,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.1176342163235,24.5001026064092,0,6,1 -9912,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.54257138841785,21.9846267924144,1,11,1 -9915,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4064632989466,27.7898552220508,1,13,1 -9916,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1367215446662,28.6078365630815,1,15,1 -9917,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.81142051192001,23.657240460239,0,15,1 -9919,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0068954285234,29.9779081418981,1,16,1 -9920,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1871775973123,29.3167907765234,1,22,1 -9921,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.54934582510032,27.6802368336465,1,20,1 -9924,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2517911968753,21.4461113915167,0,27,1 -9925,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3017670400441,26.6478528054212,1,13,1 -9928,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.309565669857,29.868417712486,1,15,1 -9930,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.7902294578962,28.4100894800462,0,23,1 -9931,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0116129482631,24.4429998007587,0,5,1 -9934,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4216168997809,24.9487074199352,1,5,1 -9935,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.88189902924933,29.1795983778473,1,16,1 -9936,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.53784670541063,28.1527071774862,1,30,1 -9941,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4894723840989,29.3481420012575,1,10,1 -9949,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0733911397401,26.9477972340095,1,9,1 -9950,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.89216800476424,30.7776598752775,1,11,1 -9951,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.5692549017258,24.92230615966,1,13,1 -9952,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1235126487445,31.0207163301521,1,25,1 -9953,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4222211164888,31.5858392502855,1,26,1 -9958,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.2120660005603,29.8450219166402,1,17,1 -9960,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.62735068402253,30.71042749427,1,25,1 -9964,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.66158534493297,26.5850451043242,1,13,1 -9968,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.91952052549459,30.0379569553309,1,14,1 -9969,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4106372534297,25.4411605292963,0,14,1 -9972,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.56644468382001,22.8280403035572,0,14,1 -9973,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3722010154743,24.7431477892913,1,10,1 -9977,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.97531529841945,31.3703849018462,1,25,1 -9981,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2083468460478,27.1676337610169,0,18,1 -9982,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.53602590691298,22.4846633464956,1,10,1 -9983,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2338972231373,26.4143064386368,1,14,1 -9985,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.56599234603345,32.104443837327,1,25,1 -9991,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1576342328917,31.4176200452028,1,15,1 -9992,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4812671986874,24.89091055393,1,18,1 -9995,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.98390920949169,30.9564186716575,1,21,1 -9996,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.81435307837091,27.0008168143698,1,10,1 -9997,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2171302910428,24.5127452295419,1,14,1 -9999,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.51043405407108,29.652519934895,1,19,1 -10003,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0329495053738,28.6175195496428,1,19,1 -10008,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.1394295068458,26.3895595819256,1,9,1 -10012,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.76233430788852,23.2380547170114,0,7,1 -10013,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4604939958081,30.0682792386956,1,19,1 -10016,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0818459459115,24.7330177447262,0,17,1 -10022,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.221630110871,32.3540103213768,1,17,1 -10024,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4406499811448,31.8598496963207,1,22,1 -10025,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.7831874883268,27.518435847503,0,12,1 -10026,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.99194883834571,27.0231346430576,0,12,1 -10034,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.62453811615705,27.9688286311063,1,16,1 -10038,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.011572298361,26.2888962660039,0,10,1 -10040,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4542877778877,29.7172877300675,1,32,1 -10041,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4362985582557,29.5533090457645,1,31,1 -10046,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1726887454279,26.7867813613905,1,19,1 -10048,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.1757248307113,21.9034357036006,1,13,1 -10049,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4870758329052,30.3295435573014,1,22,1 -10051,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3421773014124,23.7247879142159,0,21,1 -10054,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.52680921112187,27.9171337408659,0,13,1 -10056,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.86970649892464,29.4934558262455,1,14,1 -10058,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.62989906035364,25.1784889026741,0,14,1 -10061,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0347576944623,25.5704112043426,1,4,1 -10062,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0756427268498,24.4682752353568,1,12,1 -10064,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3047875484917,24.0628230925627,1,14,1 -10069,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.53895627963357,29.5932721627069,1,13,1 -10070,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.75526688410901,32.4224359147646,1,21,1 -10075,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.51045433082618,27.887096687108,0,12,1 -10079,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2715082631912,26.5573663077465,1,8,1 -10080,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.879780955147,25.6630722129897,0,8,1 -10086,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.70276669599116,27.9542526231104,1,12,1 -10089,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4911536581349,31.1182129615197,1,20,1 -10091,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4451835837681,30.0978698236866,1,17,1 -10092,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4090014151298,24.8887137306154,1,9,1 -10097,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.98889452684671,24.8418079411665,0,17,1 -10103,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.98888171161525,24.1028519736463,0,11,1 -10104,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.83713157521561,22.2304480382921,1,14,1 -10106,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.4783867904916,22.0057762011435,0,9,1 -10107,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.58006891817786,23.2618503737764,0,8,1 -10114,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.420422823634,24.4979348124352,1,13,1 -10117,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.93522695987485,27.2870419691338,1,9,1 -10118,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.95336602325551,27.9382179777946,0,12,1 -10125,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4059287377167,23.6144981829057,0,17,1 -10127,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.91986110294238,21.6148870827179,0,16,1 -10134,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.2845845052507,21.7035585616075,0,7,1 -10140,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.77819933416322,21.8019374354008,0,9,1 -10145,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3294574171305,26.8080172925931,1,12,1 -10147,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0082429582253,29.7842931127114,1,21,1 -10154,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.78670390462503,22.9430692487347,0,9,1 -10156,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.56378406565636,21.7058370759567,0,7,1 -10158,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.450592569774,24.9021765517154,1,12,1 -10161,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.75857559544966,26.8909593485675,1,10,1 -10162,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3331335952971,21.1014841786192,0,15,1 -10164,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.86562294093892,24.3508409628062,1,15,1 -10167,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.93548001605086,22.02890561963,0,5,1 -10170,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.92732770554721,19.0385539939915,0,12,1 -10183,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.6575365497265,24.9418748232219,1,12,1 -10189,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.82804710138589,26.2773271305712,1,17,1 -10192,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.97355506732129,26.3493457660671,0,16,1 -10195,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3890957734548,26.5845890631003,0,10,1 -10197,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.1134704670403,25.4270002193312,1,12,1 -10199,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.8917460066732,25.8865444369817,1,18,1 -10203,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.68619938590564,29.3943011868565,1,10,1 -10207,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.69461796060205,19.7721122591121,0,6,1 -10208,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3622256626841,23.195533892122,0,10,1 -10218,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.51079906360246,28.0927295285985,1,15,1 -10219,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0293912056368,21.9433176373275,0,11,1 -10224,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.25021987129,23.2084938782443,0,7,1 -10226,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.66283250553533,23.0105855415338,1,10,1 -10228,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.5934853234794,25.6141903188992,1,12,1 -10232,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.90390963456593,26.2398723026799,1,20,1 -10233,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.5635201386176,26.727624426323,0,8,1 -10237,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.61358737596311,21.6659333731193,0,7,1 -10238,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.60506772994995,26.9101693963688,1,14,1 -10239,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.6490178052336,21.3645672985253,0,8,1 -10240,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.1155757869128,26.9177336836345,1,14,1 -10243,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.98662258358672,25.5071589182208,1,10,1 -10244,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.091146414401,24.8011866023149,1,19,1 -10245,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0582164418884,27.7139551989728,1,16,1 -10247,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.7227302188985,21.0683761121873,0,17,1 -10249,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.62374229938723,18.7556698949926,0,7,1 -10253,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3245313216466,18.1857914611437,0,6,1 -10263,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.2486602198333,21.5795023878545,0,9,1 -10264,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0731922362465,28.0776041764639,1,16,1 -10267,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.72198316222057,20.1989379930385,0,12,1 -10272,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1237217399757,23.1713007482761,0,10,1 -10273,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2812326585408,27.5177833954671,1,9,1 -10274,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.86453986191191,24.5430009674546,1,13,1 -10275,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2263332363218,28.1525649068586,0,14,1 -10282,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.4494371789042,20.3928036729713,0,7,1 -10285,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3652267686557,26.3843295671101,1,13,1 -10287,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4485357701778,26.5779094137538,0,13,1 -10288,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0358299000654,27.6157351070653,1,17,1 -10290,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3416006346233,24.5456433188682,0,13,1 -10293,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.72146566258743,19.1338764442791,0,5,1 -10294,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.89704480394721,27.068795812513,1,15,1 -10302,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0935204501729,18.5676520739849,0,9,1 -10306,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3589889465366,21.6361331520685,0,5,1 -10313,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1295377693605,21.2739074141683,0,6,1 -10314,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0541777529288,18.1658402790577,1,7,1 -10315,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.1345040858723,28.7005191971613,1,17,1 -10316,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.86626708018593,21.1674547830582,0,6,1 -10318,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.2839611289091,20.517576722717,0,10,1 -10320,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.93197589740157,26.7723935791058,1,15,1 -10321,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.71480540698394,23.6778480009831,0,12,1 -10322,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3342971617822,26.4964859998808,1,11,1 -10324,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.83080107532442,27.7813353633763,1,13,1 -10328,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0772551859263,26.0777623497142,0,8,1 -10329,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0967631179374,24.9248341356428,1,11,1 -10330,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.66713924752548,27.9063328577924,1,13,1 -10339,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.96986464550719,28.8963471545378,1,13,1 -10342,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.279235461494,25.4431618224899,0,10,1 -10343,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0284638274461,20.9779303141434,0,8,1 -10345,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0794176594354,24.0848006138596,1,10,1 -10346,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.006126687862,27.9853780729659,1,15,1 -10347,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.75780682358891,22.4412629953861,0,8,1 -10348,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.373175824061,27.7200290221884,1,16,1 -10350,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.75663975509815,19.1827527869389,0,5,1 -10351,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1911071068607,20.7951041858336,0,6,1 -10354,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.2175429414492,21.6728423743596,0,11,1 -10356,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4784025067929,26.1217355594126,1,18,1 -10359,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3214059709571,26.6055139558112,1,10,1 -10365,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.50107033969834,25.3692122636528,1,15,1 -10369,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.4491594876163,21.5620865884802,0,7,1 -10373,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.98891857010312,26.3507881485145,0,18,1 -10377,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.1518834203016,25.4344680165482,1,12,1 -10383,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.4838969497941,20.5978238982162,0,9,1 -10384,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4300682747271,29.0916629274323,0,17,1 -10387,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.6455304119736,22.1257117595197,0,16,1 -10390,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1149953454733,22.4096081053333,0,15,1 -10391,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2354031177238,26.6959453206763,1,11,1 -10392,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0618730532005,22.5503085222414,0,11,1 -10393,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.69250061921775,19.7412786561489,0,7,1 -10394,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3214688175358,25.2213878116428,1,18,1 -10398,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.77914172690362,25.5947188229149,1,14,1 -10399,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0967200701125,26.4943686447864,1,16,1 -10403,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0884431097656,27.3948986417652,0,18,1 -10405,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.86998759256676,27.7815400870589,1,14,1 -10409,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.87973911734298,24.5008043869564,0,14,1 -10410,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.90943854651414,26.6581512432535,1,10,1 -10414,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0757348746993,26.3350834834938,1,14,1 -10415,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3201961144805,28.0757507606281,1,21,1 -10419,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.74399493820965,29.0205386590169,1,14,1 -10422,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.53588945791125,29.2525259803783,1,11,1 -10424,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.86483619455248,24.2355623859107,0,11,1 -10426,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.77061570156366,21.4904343241258,0,11,1 -10431,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.268912995467,27.5598191308123,1,13,1 -10432,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.69618545123376,28.8320932026884,1,16,1 -10436,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.63389722746797,18.3466211766201,0,11,1 -10437,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.4415064272471,23.3325034347022,0,11,1 -10438,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0444119567983,20.0559936324377,0,10,1 -10440,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.76838480727747,25.9982095930295,1,12,1 -10442,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.70442148833536,26.7650478968218,1,24,1 -10444,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.79612301546149,26.1054960889436,0,13,1 -10447,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.83648772072047,21.3985879133908,0,11,1 -10448,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1520080510527,21.6138469475391,0,10,1 -10450,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0909908057656,20.8067518463869,0,11,1 -10456,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.59997230395675,27.0428153425347,1,12,1 -10459,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.4633260890841,21.1381455539443,0,8,1 -10463,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.2346683866344,22.2538885994892,0,14,1 -10464,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1617760751396,21.5457739683201,0,7,1 -10468,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.53218955476768,26.5968848367136,1,11,1 -10470,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.2162774901371,24.9137924462092,0,9,1 -10472,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.73946098145097,20.5688928995196,0,7,1 -10473,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.2828336786479,24.299145673515,0,10,1 -10475,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.68140403903089,23.3506279892585,0,8,1 -10477,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.54192148987204,23.4508800312552,0,4,1 -10478,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3285621039104,23.010518505518,0,8,1 -10479,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.7290985735599,22.2499858783008,1,7,1 -10488,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2856404227205,25.2093247625233,1,21,1 -10489,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.75515002431348,20.3687373672182,0,8,1 -10490,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.75362088112161,22.0614565031797,0,9,1 -10491,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.59614836121909,21.1391519167342,0,10,1 -10492,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4581848194357,27.4144067165471,1,18,1 -10496,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.57246191799641,23.2642046517559,0,7,1 -10498,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.4110529616009,23.5376715097032,0,4,1 -10499,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.76532935653813,23.1582005031524,0,6,1 -10505,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.2377776207868,20.9228973700653,0,12,1 -10508,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.69419332616962,27.0139932476496,1,9,1 -10511,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.84772121720016,21.2957638117008,0,12,1 -10513,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.53664129390381,24.775531400976,1,18,1 -10514,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3928324675653,27.1793412542371,1,21,1 -10519,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.56407011137344,26.8493396178647,1,11,1 -10524,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.83837463473901,25.2972706590887,1,14,1 -10526,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3822488237638,22.9373855375904,0,6,1 -10528,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.81762745697051,19.8242151531516,0,4,1 -10531,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.4006103731226,19.0554422358779,0,12,1 -10533,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.5187757210806,23.4497706477755,0,5,1 -10535,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.61049086134881,26.8491690426029,1,20,1 -10543,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1352315535769,21.0984138769757,0,9,1 -10546,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1359080178663,20.1908195404342,0,6,1 -10549,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1723758010194,20.2693133661887,0,9,1 -10552,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.98332735453732,26.7347762274326,1,14,1 -10553,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.83493020618334,24.5317230524354,0,13,1 -10556,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.71136810979806,26.9126062591583,1,16,1 -10560,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2387041803449,28.0664065818564,1,11,1 -10563,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.87743498757482,27.7107950210537,1,10,1 -10565,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.99992522830144,29.4574714681853,1,9,1 -10567,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.50802144268528,22.2806844877995,0,10,1 -10577,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.51703690621071,26.0846610668344,1,14,1 -10581,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.72189591475762,22.0983264903917,0,12,1 -10583,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.33443924319,21.7302876186935,0,4,1 -10584,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.305070315022,24.3784100605477,1,12,1 -10588,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1410901050549,17.5534351673408,0,5,1 -10589,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.66488827834837,21.4961713935549,1,14,1 -10595,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.5123949018307,25.4771591006933,1,16,1 -10598,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2268978278153,17.1402233351033,0,9,1 -10600,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.4588266387582,25.2966019102794,0,9,1 -10602,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1959280208685,22.9199352556441,1,9,1 -10603,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3568328744732,22.5866258971052,0,17,1 -10605,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0224115091842,23.7806665817141,0,9,1 -10607,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.0863981051371,18.3864297772019,0,6,1 -10608,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.66727781086229,21.0108394051136,0,4,1 -10609,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.65603252593428,21.5344155408164,0,7,1 -10616,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.0903754627798,16.6364530889383,0,7,1 -10618,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.0004463335499,18.8145278640928,0,7,1 -10620,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1991640927736,17.7903010355613,0,3,1 -10623,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.90366846136749,25.2701069754642,0,7,1 -10626,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.4828311009333,24.1468962144761,0,14,1 -10629,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.69584109378047,18.7339302052718,0,7,1 -10633,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.3366963956505,17.5593743472459,0,6,1 -10635,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4046112999786,18.2991004401235,0,5,1 -10636,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1715246993117,17.9029446530587,0,10,1 -10646,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.53447109111585,25.0088002283745,0,16,1 -10650,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.3279063319787,18.841890081571,0,8,1 -10653,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.354912891984,23.1491843819249,0,8,1 -10655,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.90104867354967,17.3512893099706,0,12,1 -10657,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2740083129611,17.8144364114894,0,8,1 -10660,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2999376747757,23.3586211837569,0,16,1 -10661,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4281111501623,19.5985749406927,0,4,1 -10664,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.493101749802,21.004301679472,0,7,1 -10665,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.7462071722839,18.2160314364957,0,4,1 -10666,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.9385103113018,24.0653620295588,1,17,1 -10669,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.83992253709584,19.8149039345853,0,5,1 -10671,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1463391508441,22.1264311697353,0,18,1 -10672,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.60290287667885,19.6456744869645,0,5,1 -10675,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.79665713082068,19.897527568721,0,6,1 -10678,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2083658489864,18.028053116412,0,7,1 -10684,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3471061263699,23.5455373849392,0,8,1 -10686,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2325347044971,17.8576880564609,0,6,1 -10689,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.67997479834594,19.7017551020126,0,10,1 -10692,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2010138030164,23.327190530364,1,24,1 -10705,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1403622799553,19.0523279801541,0,3,1 -10710,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.93246380449273,27.0680450269488,1,8,1 -10712,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.91908640298061,23.9106432682842,1,12,1 -10716,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.57348789693788,16.9028465800046,0,4,1 -10718,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0283248857595,28.2631242639494,0,12,1 -10719,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0364787941799,25.6196126911425,0,11,1 -10722,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.206757071428,24.7045241475341,0,13,1 -10725,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.64059721375816,24.9962880743486,0,6,1 -10726,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.51421319390647,18.4439734937081,0,2,1 -10728,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3344380010385,23.6631884923253,0,10,1 -10731,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.327188793337,20.1933450504342,0,11,1 -10736,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.53719988651574,21.4634930815236,0,4,1 -10738,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0402825563215,22.8811670319251,1,13,1 -10740,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.0049667414278,19.7280530535603,0,4,1 -10745,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.4953857271466,25.6290970918287,0,7,1 -10756,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1561297252774,21.0265634539865,0,9,1 -10757,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.0416256615426,20.7072771911991,0,6,1 -10761,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.62578299082816,23.972988425862,0,14,1 -10762,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0018567733932,22.3229562697348,0,14,1 -10764,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.55301031726412,22.8365421167986,0,13,1 -10772,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.70062128291465,22.9100086218019,0,11,1 -10788,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.3596267704852,21.7090920733037,0,8,1 -10790,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.0516508803703,18.6381221625369,0,6,1 -10791,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3419049608056,22.6251944082056,1,14,1 -10794,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.88529405021109,19.0795708946265,0,5,1 -10797,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.87781610595994,24.2989836171092,0,8,1 -10799,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.4890569909476,23.3733476052361,0,8,1 -10801,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.52052491228096,18.499259370686,0,12,1 -10804,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0115542975254,24.3111863489185,0,8,1 -10807,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.56327053555287,21.960026908655,0,7,1 -10808,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.53045555693097,17.514914580778,0,9,1 -10809,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.8010100859683,25.0797113428583,1,8,1 -10810,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.63355941534974,22.0803170732051,0,17,1 -10816,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.3451496376656,18.0014964148639,0,5,1 -10827,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1397272038739,17.7671285226233,0,6,1 -10831,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.433555488009,26.0601202098551,0,7,1 -10832,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3543856311589,24.412180527543,0,7,1 -10834,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.93655405333266,22.2416473108948,0,12,1 -10844,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.72259516571648,18.8427645328873,0,4,1 -10847,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.6508123264648,27.0791073417291,0,10,1 -10851,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.65020298142917,27.097411694674,0,12,1 -10853,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.458062516991,24.9894516260119,0,12,1 -10856,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1170750632882,25.451106574216,0,8,1 -10857,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.89395946008153,17.3644033794029,0,8,1 -10858,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1259687612765,26.6201809522286,0,13,1 -10860,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.53327386802994,20.7229752759846,0,17,1 -10864,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.63677717279643,25.6509514676908,0,15,1 -10871,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2385055902414,19.0476968100369,0,11,1 -10874,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1416207998991,19.758567505638,0,5,1 -10875,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.53679870185442,23.2140320470367,0,13,1 -10878,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4592116642743,20.0824954422828,0,9,1 -10886,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2875954792835,23.8270015026554,1,17,1 -10888,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4030475604814,17.6360077709166,0,4,1 -10889,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.67233780794777,23.5021677941806,1,9,1 -10891,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3706660803873,22.9496771247008,0,8,1 -10892,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.99094721931033,19.9293065984746,0,3,1 -10895,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1874923841096,18.4921426243603,0,7,1 -10896,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.59734565718099,20.9097945020161,0,11,1 -10910,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.64341722545214,19.0485230696502,0,7,1 -10911,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0689445869066,24.624465057699,1,12,1 -10913,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.6930545407813,24.1345899732507,0,7,1 -10914,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2085913873743,24.315548873842,1,14,1 -10918,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.0228421718348,18.6798544763102,0,5,1 -10919,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.99407206801698,21.835353274048,0,8,1 -10921,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.014530265471,26.4286598784227,0,10,1 -10924,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.64822502573952,19.8034506563759,0,7,1 -10926,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.70162355527282,24.9126255391415,0,14,1 -10929,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.68986290087923,19.0093742339368,0,3,1 -10932,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.73938002204522,24.8502320407311,0,9,1 -10933,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.84400804108009,21.2135315203829,0,5,1 -10936,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2245850272011,26.4061322222026,0,14,1 -10939,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0523509450722,24.631464705247,0,16,1 -10941,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.85748503310606,25.5844024678049,0,5,1 -10942,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.74237148510292,22.5260761154155,0,8,1 -10946,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2976093983743,20.0507704613177,0,4,1 -10949,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.4506581549067,21.9217433791371,1,12,1 -10954,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.3481070338748,16.6025119999573,0,7,1 -10955,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.4940451679286,24.8306266190729,1,10,1 -10957,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.53384678438306,24.7236936840572,1,8,1 -10958,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.68890629289672,25.7027436070845,0,12,1 -10963,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.5020146118477,18.8528750874748,0,8,1 -10965,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.60064488276839,18.6200398488953,0,6,1 -10966,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.97120077093132,20.8033598900566,0,4,1 -10967,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.3356199779082,19.5897599480246,0,5,1 -10968,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4838847061619,20.5956168312603,0,2,1 -10970,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.4138557515107,25.5049629973857,1,15,1 -10972,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.0323386148084,19.1857788370665,0,4,1 -10973,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3529320470989,23.6314943118164,0,9,1 -10974,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.75432849465869,22.2936025645735,1,9,1 -10977,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.4548079245724,24.4842649362029,1,12,1 -10981,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.8734663114883,20.2424717403521,0,8,1 -10988,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.81946077733301,22.2419185426243,0,3,1 -10996,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3075822086539,22.1393388879402,0,11,1 -11000,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2347974895965,24.0713758703286,0,11,1 -11001,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.93440954433754,18.0766110449118,0,3,1 -11003,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.92884189938195,25.1053272774406,0,8,1 -11006,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.96691774018109,19.6546919894696,0,7,1 -11009,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.69249956239946,19.921807030173,0,2,1 -11013,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4964074299205,17.7116013380547,0,4,1 -11017,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.98923832876608,23.583447401952,0,14,1 -11018,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.90962293208577,17.1058591080148,0,5,1 -11019,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.68566599511541,24.254032375492,0,11,1 -11022,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.78950015525334,23.0051294064676,0,9,1 -11023,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.78794725402258,18.0446519840133,0,9,1 -11027,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.86749986140057,22.3023616747869,0,11,1 -11028,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.095643882174,17.2113895531741,0,12,1 -11030,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.53179576364346,20.1804035185687,0,4,1 -11035,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.74875812302344,21.6530465636727,0,13,1 -11036,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.55557224946097,26.2556763223703,0,7,1 -11037,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2927933074534,26.9904425759431,0,11,1 -11038,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.88508304744028,23.5690965280427,0,13,1 -11039,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.7380854699295,21.2846719074071,0,7,1 -11047,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1787729978096,24.6402179454197,0,13,1 -11051,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.73898459644988,20.5464013498739,0,9,1 -11057,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.90971606806852,17.653253372954,0,9,1 -11060,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.54699186095968,22.017711625477,0,10,1 -11064,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1938312994316,24.6238851242461,1,7,1 -11070,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.14728693082,17.2549991929447,0,4,1 -11073,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1688246538397,20.2371501143844,0,4,1 -11079,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1764925599564,22.3639533398085,0,7,1 -11080,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.65653766761534,19.0553745111448,0,5,1 -11084,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2652877364308,23.6107506086647,0,14,1 -11085,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1845249668695,21.8480524153277,0,6,1 -11086,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.64856197033077,21.9871480958375,1,10,1 -11087,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.720373515971,24.2684863361087,0,14,1 -11089,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0173961359542,25.1798593295621,1,14,1 -11090,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.98056006804109,18.3145697383637,0,13,1 -11091,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.51747619989328,18.6330388189805,0,10,1 -11093,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.89780250517651,26.2499323664938,1,9,1 -11094,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.88715251395479,26.9108303975192,1,10,1 -11095,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3945071569178,24.7701522891353,0,14,1 -11098,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0253743685316,26.4320900152724,0,9,1 -11107,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.8541942872107,26.3047117559089,1,19,1 -11108,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.6946205899585,24.7283363280788,0,5,1 -11113,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.8573261462152,28.0737580097686,1,19,1 -11117,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.65221547381952,27.2532361488987,1,15,1 -11118,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.99525923631154,22.9592955817428,0,8,1 -11119,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.64131549443118,22.1230540068738,0,10,1 -11125,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.59136472875252,25.4142967926339,1,30,1 -11130,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.64913584757596,30.3898906726633,1,21,1 -11134,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.67558296630159,27.9896310218433,1,18,1 -11141,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.87150249490514,19.8298432850019,0,6,1 -11145,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.80336022237316,25.9950165797578,1,16,1 -11146,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.4608418592252,21.291451975808,0,16,1 -11151,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.1105992342345,22.1091779907328,0,8,1 -11153,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.343836334534,29.1752417627693,1,17,1 -11160,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.66924717533402,28.6070549046325,1,18,1 -11162,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.057371905772,26.3164817406012,1,21,1 -11163,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.4006226996426,23.5254043435732,0,11,1 -11164,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2905462817289,29.6549399498023,1,21,1 -11165,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.74484734237194,25.7824712509158,1,11,1 -11168,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0852745596785,28.1808402468226,1,11,1 -11181,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.012595258886,31.187788573605,1,18,1 -11183,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.88809992698953,21.5696325661664,0,11,1 -11184,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0164884778205,21.8834976791203,0,11,1 -11187,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.5610239377711,29.4758157532223,1,14,1 -11189,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.96701765106991,21.8859087766412,0,9,1 -11193,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.2711374454666,23.7811255791491,0,6,1 -11195,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.93498132633977,25.0662943044454,0,8,1 -11197,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.86207877588458,22.6441405010304,0,9,1 -11198,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0216393882874,27.0675602984081,1,13,1 -11199,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.67112067621201,28.4046199942064,1,13,1 -11200,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0876255247276,28.1592886594648,1,14,1 -11204,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.2811463135295,21.091608295205,0,7,1 -11212,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.60285790544003,20.8811283406287,0,8,1 -11214,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1632079023402,27.6610827157697,1,20,1 -11216,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3683145763353,26.8430710833252,1,12,1 -11220,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1258467242587,26.3686468744315,1,17,1 -11223,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.76790749141946,24.6236754542438,0,10,1 -11225,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.1033359970897,22.4818639356824,0,10,1 -11235,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.61845906078815,21.0463513475546,0,10,1 -11236,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.90829840768129,23.1985159609192,0,7,1 -11237,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0187825891189,21.6806762438705,0,7,1 -11238,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.83838066342287,25.512411706432,1,14,1 -11239,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.4790743503254,26.4133817575849,1,11,1 -11240,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3078989835922,28.0307562776977,1,18,1 -11241,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.98839458916336,23.657308631433,1,10,1 -11242,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.1953241224401,22.1473470271935,0,11,1 -11245,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.1276544081047,22.7938372728025,0,6,1 -11250,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0454150866717,28.7348699174326,1,15,1 -11251,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.53169710608199,23.847568225562,0,9,1 -11254,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.68546256399713,23.5187968257002,0,20,1 -11259,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.67174256173894,26.9885153667504,1,25,1 -11260,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.56289118737914,23.483887983306,0,8,1 -11262,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.78707656729966,28.7651077029885,1,22,1 -11264,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.6317425260786,26.4925957377239,1,17,1 -11265,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.93528019846417,20.5764310878782,0,8,1 -11268,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.92785261920653,22.0896329817897,0,13,1 -11269,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.93127407343127,27.4964245160426,1,14,1 -11272,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.59237357531674,20.1202263899939,0,8,1 -11275,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.2747853349429,23.8237700596857,0,8,1 -11279,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.54730976908468,23.8849236898191,0,6,1 -11283,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.2073536145035,24.9629808514214,0,16,1 -11286,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0188145535067,27.8870313978987,1,15,1 -11288,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3351843890268,26.8258762204733,1,14,1 -11290,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3713906477205,23.1740044790984,0,6,1 -11291,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.4148327524308,22.2459429048005,0,14,1 -11292,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.6912128624972,22.515720596478,0,14,1 -11296,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3976455822121,26.9086878620826,1,23,1 -11297,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.4362747874111,27.8847160289117,1,12,1 -11301,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.7036033407785,27.0368245120745,1,21,1 -11302,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.4433786191512,22.4778618409519,0,9,1 -11304,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.61644306546077,27.2408284394075,1,18,1 -11305,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3688632755075,22.1530365554036,0,9,1 -11306,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.59060268802568,27.090217549008,1,15,1 -11308,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3768426298629,24.0249549831696,0,8,1 -11309,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.81791706965305,22.3049680283315,0,14,1 -11311,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.81403253390454,22.1183897027694,0,9,1 -11314,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.84100250760093,31.4647323817649,0,16,1 -11315,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.265486064367,20.9878748092513,0,8,1 -11316,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.5146983184386,29.1473600889411,1,12,1 -11321,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.86532495287247,21.7172095447631,0,10,1 -11324,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.4449562714435,27.9576656907284,1,16,1 -11329,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.52447866555303,25.8284388380911,1,18,1 -11332,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.81432987051085,21.1932089466551,0,8,1 -11333,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3798892842606,27.7504771933681,1,14,1 -11336,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1180067039095,28.7783353049386,1,16,1 -11338,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.435606964631,22.9505549273662,1,12,1 -11343,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.82607037085108,23.2603071084664,0,1,1 -11347,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1474770572968,29.7151689602813,1,16,1 -11348,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0922696476337,27.6982204284166,1,11,1 -11349,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.75563679984771,27.5362894337829,1,11,1 -11351,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.8714230156038,27.3585423158295,1,18,1 -11353,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.2104025664739,23.4932508942019,0,7,1 -11356,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0198456253856,28.5674899210835,1,18,1 -11360,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.74877852550708,26.9688577627695,1,15,1 -11364,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.4988891491666,28.1870923465321,1,21,1 -11366,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.8262535056565,24.7509028837244,0,11,1 -11368,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.85127015970647,28.4469387582669,1,18,1 -11371,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.4934971278999,31.1292574581052,1,16,1 -11372,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.83909755642526,27.974745806585,1,21,1 -11373,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.89060992794111,21.9705330132792,0,11,1 -11374,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.4896757507231,22.4991370600612,0,7,1 -11376,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.1938596286345,21.6183765277884,0,11,1 -11377,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1591504011303,28.2431199604489,1,13,1 -11379,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3749131113291,30.1412261293837,1,13,1 -11384,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.4585848366842,26.1714674228739,0,7,1 -11385,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1336025686469,26.9171070283607,1,15,1 -11389,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.383014354622,21.1502692488381,0,9,1 -11391,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0861540394835,24.0531903238841,0,17,1 -11400,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.153388974024,26.6055065329116,1,16,1 -11402,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.55527601437643,26.5182708862552,1,17,1 -11403,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0776671967469,21.9054246053482,0,5,1 -11404,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0233240190428,21.7101996280346,0,9,1 -11417,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.407799587585,24.5392918462673,0,7,1 -11420,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.51397501863539,23.3425942611821,0,9,1 -11421,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.96835057390854,28.6219845543028,1,20,1 -11423,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0456821112894,24.0601265971605,0,10,1 -11424,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.4744851433206,28.6714173597655,1,15,1 -11425,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.55348135856912,29.5215664254634,1,19,1 -11428,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.82749003521167,25.7123498089441,1,17,1 -11433,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.9853004803881,27.6566052681999,1,18,1 -11434,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0924517791718,27.1799661293016,1,18,1 -11435,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1525141552556,24.6677224301063,1,23,1 -11436,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.316887243418,29.0041808631259,1,24,1 -11437,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.89560245443135,28.9752582569241,1,15,1 -11443,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.90324488165788,23.3620581706727,1,10,1 -11450,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.4571434247773,28.5250578151493,1,12,1 -11454,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2583824063186,26.2446834003571,1,16,1 -11456,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.56494546728209,24.0532799535014,0,11,1 -11457,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0515685335267,27.5876050023596,1,25,1 -11463,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.87952007260174,22.4637663416315,0,16,1 -11467,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.98553128121421,27.677376465687,1,16,1 -11470,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1390533081722,25.7921283333981,1,13,1 -11474,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.2070746559184,22.0162780882788,0,11,1 -11475,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3725788663141,26.9481938869015,1,12,1 -11480,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.86092762416229,24.1608761716449,0,15,1 -11481,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2128642050084,26.578714560842,1,13,1 -11485,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.62917906488292,32.9287572160323,1,15,1 -11500,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.4562492484692,24.0257702393689,0,6,1 -11505,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3432276376989,22.8583003642874,0,13,1 -11507,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.60899561480619,22.03875698703,0,11,1 -11508,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.041836037999,28.4977054102038,1,15,1 -11510,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0819978797808,26.2348845453899,1,19,1 -11511,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.1650767708197,21.5403978567057,0,10,1 -11523,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3474353968631,27.3008768697337,0,19,1 -11527,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.63236995413899,28.828897541624,1,20,1 -11528,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.89142611878924,27.9293087148681,1,13,1 -11530,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.1197977496777,22.3154284855682,0,9,1 -11531,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.69414317747578,22.7437723756029,0,10,1 -11532,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.57720093405806,29.9950955812938,1,17,1 -11533,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.24787914427,20.3711448866913,0,7,1 -11534,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.58792191348039,25.3504998337524,0,13,1 -11537,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.67041019070894,19.4351199484245,0,16,1 -11540,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0848103091121,26.0584011914,1,20,1 -11544,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.52310982299969,26.2853430626011,1,17,1 -11548,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.76198235084303,28.7556624959055,1,18,1 -11554,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3388546223287,26.1601229760419,1,15,1 -11555,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.1101982137188,20.8840653745759,0,13,1 -11559,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.312260591425,21.930136809876,0,7,1 -11560,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.58234580606222,27.5116883868543,1,22,1 -11561,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.90439335955307,19.7425721461714,0,12,1 -11568,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.97930865455419,22.9152919895051,0,13,1 -11575,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1361873825081,26.3783863539324,1,13,1 -11576,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0006482219324,22.062142232007,0,9,1 -11582,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.77901517180726,25.0325865739287,0,7,1 -11583,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.62556768581271,26.2931996355004,1,18,1 -11586,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.88779010414146,24.1482967729098,0,13,1 -11589,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1968180823606,22.4993925385353,0,15,1 -11596,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2904685151298,27.9021797331921,0,18,1 -11600,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0660937442444,20.2792605051357,0,14,1 -11605,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.92910969280638,22.9970295811945,0,9,1 -11606,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2653545259964,21.4200328037989,0,6,1 -11609,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.85877058352344,27.4086003531623,1,15,1 -11610,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.4634314994328,21.5983458579608,0,7,1 -11613,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.1504870695062,26.6217638565911,1,13,1 -11623,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3550162857864,22.4715944977795,0,12,1 -11628,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.52219268074259,23.7374746370182,0,6,1 -11631,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2250605537556,24.9316383742661,1,12,1 -11632,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.53640183014795,27.9977797639042,1,12,1 -11634,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.83968014828861,23.6898391750089,1,7,1 -11636,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3696463538799,21.4976606892594,0,11,1 -11641,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.82738460274413,23.4154395942672,0,4,1 -11644,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.297264856752,27.8110113454589,1,16,1 -11646,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3783774632029,23.0015186855728,0,10,1 -11654,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.92236646916717,22.5266032396306,0,12,1 -11658,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3856321668718,27.7032356007791,1,17,1 -11659,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.1377053016331,29.0839485848965,1,19,1 -11661,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.70793205406517,23.2398191927136,0,11,1 -11664,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.1971492178272,30.2140536063368,1,17,1 -11665,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.90097719943151,20.4224348176651,0,7,1 -11668,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2778193352278,23.958583373856,0,11,1 -11670,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.63896292075515,27.4395335066484,1,13,1 -11671,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.7391753916163,24.461776325516,0,8,1 -11673,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0308025134727,22.9615953698714,0,9,1 -11674,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3126182162669,21.828876676736,0,9,1 -11676,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3799444378819,28.4983543263384,1,16,1 -11679,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.57730249268934,22.5567046718738,0,8,1 -11680,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.94851493346505,23.7301609857017,0,13,1 -11683,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.59353647800162,27.0624439136139,1,14,1 -11685,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3187668232713,27.0902819905129,1,14,1 -11689,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2175812122878,24.3129078430011,0,5,1 -11690,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.4002560083754,20.0453002491763,0,11,1 -11693,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3594415986445,21.2558488547755,0,11,1 -11695,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.50810782355256,22.7610873717497,0,18,1 -11696,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.65142676304094,27.494925858169,1,23,1 -11697,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.91273993230425,28.8076361953716,1,16,1 -11699,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.54934254544787,28.683419335849,1,13,1 -11702,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.1667618080974,27.4969901167066,1,21,1 -11707,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.1619047268759,29.1849331820756,1,22,1 -11712,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0404469710775,25.5105376280752,1,13,1 -11713,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3535093744285,27.8060703347869,1,16,1 -11714,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.67006104439497,21.4936296648446,1,12,1 -11719,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.78005816764198,28.0346830595976,1,15,1 -11723,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3337868421804,29.0146161441938,1,20,1 -11727,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.76667899824679,28.9739343583781,1,19,1 -11729,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0490329607856,23.0089250402689,0,8,1 -11731,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.1675187370274,28.5296744335442,1,12,1 -11736,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2750075014774,21.6385614809267,0,4,1 -11739,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.79530936805531,28.9290420224179,1,19,1 -11740,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1480195638724,22.646037205174,0,7,1 -11745,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.98921465827152,29.0640037597343,1,15,1 -11748,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.71738522336818,21.9744119661262,0,8,1 -11752,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.77185829123482,24.2025213535032,1,12,1 -11755,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2561975331046,27.2863753452136,1,17,1 -11757,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.340112590231,28.0934103306629,1,18,1 -11760,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.092444834765,23.141567515026,0,10,1 -11761,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3878863076679,27.5924320268022,1,12,1 -11764,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.375207727775,26.726524620387,1,25,1 -11766,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.4515130894724,24.3365355444599,0,4,1 -11767,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.78292857366614,20.9338231444433,0,7,1 -11769,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1997557473369,24.4614200835176,0,7,1 -11773,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.9840132498648,23.5263112239969,0,10,1 -11774,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.78075834107585,30.072890010346,1,19,1 -11779,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.346767866984,26.8414200155942,1,20,1 -11787,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.52890532766469,28.8016233728971,1,23,1 -11788,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0121343685314,26.5486739605817,0,7,1 -11789,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.55397581192665,23.1721488297136,1,10,1 -11794,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.77713502617553,27.6403702064317,1,11,1 -11796,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.84135580342263,28.6919264556526,1,15,1 -11797,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.75468690367416,27.7663364571278,1,18,1 -11801,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.64351792330854,22.9285986425589,0,7,1 -11807,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0786567877512,23.0036083392573,0,7,1 -11808,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.4733029310592,28.6541381312322,1,18,1 -11813,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.64707680838183,28.1373770505209,0,19,1 -11816,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.85386667144485,28.6188651149238,1,23,1 -11821,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0781030424405,26.7816398295401,1,11,1 -11833,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.1053554445971,29.0712089011817,1,20,1 -11836,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.51900419755839,24.7240788177127,1,10,1 -11841,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2699690836016,27.4254551207818,1,19,1 -11847,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.58119730371982,28.36991049366,1,21,1 -11848,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.71127163781784,28.1922233376013,0,17,1 -11849,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.73227219330147,29.0458232801936,1,13,1 -11851,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.83700874331407,23.3801828444416,0,10,1 -11852,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3503915781621,21.1284757184312,0,15,1 -11854,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.92534910305403,20.5903854273588,0,7,1 -11863,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.4424619809724,23.5886478091842,0,5,1 -11866,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.97267241450027,27.9781626499838,1,20,1 -11868,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0951117577497,28.7961793273881,1,15,1 -11873,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.95729548973031,24.0594560524814,0,11,1 -11876,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2240647459403,21.1235169263491,1,1,1 -11879,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.58751397253945,21.3888392683096,0,4,1 -11881,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.87614477658644,26.3025087401188,1,12,1 -11889,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.1247057924047,30.514791473497,1,22,1 -11892,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.63320760824718,22.398990190823,0,10,1 -11900,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3681465431582,27.3189425599422,1,14,1 -11901,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0902185318992,23.2723352163525,1,11,1 -11902,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.667280591093,20.4949148135656,0,5,1 -11904,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0829824234825,28.3385389630423,0,18,1 -11905,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.7522278954275,27.1373670911028,1,23,1 -11906,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0696431850083,22.3407840117702,0,7,1 -11907,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.1169135388918,28.0009775007676,1,17,1 -11910,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0362061765045,27.3670922988694,1,15,1 -11912,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.57988246902823,28.4897178083902,1,22,1 -11915,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.4776673007291,21.2592407536589,0,13,1 -11916,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.55828678957187,22.7914119668319,0,4,1 -11920,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.4044502908364,23.1944569805715,0,11,1 -11925,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.91059673484415,23.4995520735128,0,6,1 -11927,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.9539822160732,26.073442859386,1,20,1 -11931,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.74968313449062,26.4188568703104,1,14,1 -11935,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3035144889727,22.3815297541572,1,11,1 -11943,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3398630646989,28.5842085381593,1,8,1 -11947,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.99169852561317,24.8032968581074,1,10,1 -11949,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.57748471270315,23.1290889864343,0,10,1 -11951,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.55157681903802,29.4548208502419,1,27,1 -11953,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.63732664682902,28.8518203212206,1,15,1 -11957,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2933024461381,23.8610317852081,0,10,1 -11958,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.12166383164,26.3418607462829,0,11,1 -11959,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0517106081825,28.9627191668516,1,18,1 -11966,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3557540490292,28.0054250153856,1,23,1 -11967,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.095475795446,20.8891480613355,0,7,1 -11968,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.89536882052198,22.9223279802104,1,14,1 -11969,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.64019174152054,29.1812098955902,1,23,1 -11972,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.64446672936901,29.5654146937061,1,18,1 -11974,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0647257815581,28.3779562410909,1,11,1 -11975,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.96214712015353,28.9692094913417,1,18,1 -11976,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.355775735341,21.7663264105819,1,8,1 -11978,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.66935589304194,29.2104455122305,1,13,1 -11979,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.1646348477807,28.6900847372258,1,16,1 -11987,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0361973159015,28.098492894865,1,15,1 -11990,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.78435810748488,31.3154603790828,1,14,1 -11991,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.4280332433991,26.9043051601614,1,18,1 -11995,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.862374949269,28.5025497795307,1,23,1 -11998,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.62307171220891,21.6284890510878,1,11,1 -12000,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.80376509367488,21.4320589364181,0,15,1 -12004,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.62558270129375,22.7605827131004,0,9,1 -12006,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1670509269461,22.9794327399381,0,13,1 -12007,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1711259209551,23.1520129389222,0,12,1 -12008,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.97384260990657,28.0474901293886,1,13,1 -12021,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.99214523332193,25.810836616028,1,21,1 -12031,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3075606545899,29.1542474567797,1,16,1 -12034,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.67398866591975,25.2822016348718,0,9,1 -12039,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.89062730735168,23.6999148103669,0,19,1 -12040,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0588170399424,23.4347709325939,1,8,1 -12041,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.054198205471,27.3314623462256,1,9,1 -12043,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0759626112413,26.076906288105,0,6,1 -12045,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.62377199809998,28.0460691205937,1,14,1 -12049,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3654610081576,23.7791552461495,0,10,1 -12051,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0274947246071,23.3872225547995,0,12,1 -12052,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3508405282628,21.9871736031067,0,6,1 -12062,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.89104736340232,21.6423805169627,0,10,1 -12065,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.54338937089778,24.2959301031902,0,11,1 -12069,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.4940875382163,19.8875191406657,0,3,1 -12070,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.1038229865953,26.6734098181253,0,21,1 -12072,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.469830700662,18.5360700263801,0,8,1 -12073,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.82362616644241,27.3664580901925,0,15,1 -12081,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.77510798699223,28.0841037033775,1,17,1 -12082,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.86142061813734,27.7345759367211,1,16,1 -12084,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.89144723815843,26.0285385294242,1,21,1 -12085,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.65607374766842,23.2242162622689,0,9,1 -12086,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.57200170680881,26.1797685197185,1,11,1 -12087,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.88181627402082,22.3242574203056,0,13,1 -12089,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.8740744641982,21.1432353576726,0,10,1 -12090,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0620087687857,20.5538451698745,0,12,1 -12092,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.76346500613727,21.5163259091719,0,10,1 -12094,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.88429103698581,27.881010440435,1,22,1 -12100,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.53969037649222,29.2097505623557,1,20,1 -12101,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.93865979136899,21.4250723461924,0,5,1 -12102,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.3717706010211,26.7706293575583,1,12,1 -12104,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.60080300015397,22.4246843154703,0,6,1 -12108,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.2643537353724,21.9957810272714,0,9,1 -12109,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4824092106428,25.7455517949902,1,13,1 -12111,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.2614448191598,19.6138426577324,0,9,1 -12113,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.78566445666365,22.7074893616888,0,5,1 -12115,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.79175215098076,23.9033751986418,1,15,1 -12116,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.98517216253094,22.8494941950844,0,10,1 -12117,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.8058487304952,25.8704666555676,1,16,1 -12121,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.95570881222375,21.371185575292,0,12,1 -12123,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.54171782825142,22.5180819701015,1,11,1 -12127,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.73936957190745,24.6009177752966,1,15,1 -12133,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.94443539041094,19.7953030289839,0,7,1 -12135,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.4232676231768,22.8664183290625,0,15,1 -12136,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.69503069482744,24.4896843587146,0,11,1 -12137,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.5262486175634,22.7652665924723,0,7,1 -12138,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0477870753966,26.893980981173,1,14,1 -12147,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3041509848554,21.862990535436,0,16,1 -12148,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.82081756507978,28.6781496243024,1,14,1 -12150,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4778964049183,26.2705991561448,0,12,1 -12152,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.84657294396311,23.6029220352881,0,9,1 -12154,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.1921642581001,28.3080910755835,1,13,1 -12155,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3124603754841,21.7007073700157,0,10,1 -12163,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0806910763495,23.9151215930394,1,9,1 -12166,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.61094578355551,26.8076784762625,1,13,1 -12173,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.79571759374812,27.6596535857127,1,17,1 -12174,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.83972945110872,29.6378755000339,1,9,1 -12176,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.84975163522176,26.344171374009,1,24,1 -12179,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.2018964716699,21.8480860243448,0,12,1 -12182,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0777410364244,27.2350657805205,1,12,1 -12183,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.90901444409974,21.325019549048,0,7,1 -12186,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.6383961760439,26.7492611835037,1,16,1 -12188,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3725248202682,20.5022242049181,0,7,1 -12193,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.4969773846678,24.8892187714359,0,8,1 -12194,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0901729871985,21.0396135354065,0,12,1 -12195,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.2212048044894,25.0095130852668,0,13,1 -12196,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3865153705701,23.6041115971718,0,10,1 -12198,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3923370069824,23.830440110754,0,10,1 -12205,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3917984738946,19.4479553071379,0,7,1 -12209,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.83716357848607,21.7264530179514,0,6,1 -12216,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0725585289765,22.2262640315409,0,10,1 -12219,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.77952769980766,22.9832518154755,1,5,1 -12222,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.7003245591186,27.3643210734488,1,16,1 -12224,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.220468750922,19.8858442249411,0,8,1 -12226,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3466018887702,20.6818508018321,0,9,1 -12227,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.4569167776499,20.8361607926998,0,6,1 -12228,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0997404705267,24.0623613898609,0,13,1 -12229,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.46993906633,24.8874791224645,1,19,1 -12230,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.63157071708702,25.9761286497872,1,11,1 -12231,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4661261467263,27.1224661633549,1,15,1 -12233,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.4706587586552,23.1627806554919,0,10,1 -12236,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.82759185135365,22.0021357247971,0,6,1 -12239,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.55853332788683,22.3277540703345,0,13,1 -12245,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.57714613084681,24.6583605055784,0,21,1 -12248,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.19270311133,26.5760662216647,1,14,1 -12249,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.58684675605036,22.340075945822,0,7,1 -12250,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.55644668638706,21.6273437586938,0,11,1 -12251,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.3337598608341,29.7004936198518,1,20,1 -12252,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0748197457287,25.2799500478703,1,19,1 -12257,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.86551776598208,28.1748106433355,1,14,1 -12259,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.2126808119938,23.0005339630884,0,11,1 -12264,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.94944507582113,27.7797898952079,1,15,1 -12271,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.85978944040835,21.4516665231243,0,8,1 -12272,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.50372738484293,26.137168648406,1,21,1 -12277,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.84528751275502,21.953309694135,0,13,1 -12282,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.117502030218,23.2744636340908,0,12,1 -12284,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.59019134310074,27.9736458957804,1,11,1 -12285,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.6015885383822,25.3543403708211,1,21,1 -12288,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.89970628009178,22.7833324541013,0,7,1 -12290,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.3620946365409,26.71291691612,1,15,1 -12292,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.93861283105798,26.6741592098892,1,11,1 -12298,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.1200290229172,20.7574624278544,0,14,1 -12303,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.4579742103815,22.0338301812231,0,7,1 -12313,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.70910751959309,24.5776093880999,0,7,1 -12323,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.3718561935239,25.9973365661489,1,15,1 -12328,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.60921839158982,21.6423581199663,0,11,1 -12329,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.412148515461,19.2677401579679,0,8,1 -12330,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0618054862134,21.7808419363205,0,8,1 -12332,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.77939491532743,23.9763106193934,0,8,1 -12342,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.52815065602772,21.4059085094281,0,10,1 -12349,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.730044714408,24.1527483534534,0,3,1 -12350,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.98670517397113,28.7004219854843,1,12,1 -12353,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0866620952729,22.6335277319911,0,13,1 -12354,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.88159347465262,21.9777541499527,0,13,1 -12355,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.74959837039933,22.7384726650178,0,9,1 -12360,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.2676776393782,27.4846712218765,1,12,1 -12361,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.96958021726459,22.0026129701408,0,12,1 -12363,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.3337342359591,26.392266955936,1,24,1 -12370,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.1640782721806,22.3559854761065,0,9,1 -12373,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3119712732732,21.6971233170055,0,12,1 -12374,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.79975416488014,28.195260285805,1,11,1 -12377,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4045807563234,26.8366026797971,1,18,1 -12379,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3374073130544,21.5676011995168,0,9,1 -12380,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.88222996122204,26.9374004602902,1,12,1 -12381,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.85137015604414,26.9933100376754,1,15,1 -12384,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0711910768878,21.5240754850667,0,8,1 -12385,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.88289355789311,29.456263372854,1,11,1 -12388,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.77389722689986,26.5017273167891,1,19,1 -12389,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.4945062836632,20.3303302279916,0,5,1 -12390,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.60613188659772,27.418507141326,1,24,1 -12391,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.50055402773432,20.1381127864418,0,6,1 -12395,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0526717994362,26.6062657239173,1,27,1 -12404,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4765840973705,28.4203261019681,1,17,1 -12408,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.97557386872359,26.853559632423,1,12,1 -12412,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.97535282792524,22.6321969369535,0,7,1 -12416,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3963370246347,22.1461402557527,0,7,1 -12418,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4183150432073,26.862113545459,1,11,1 -12419,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.1872594086453,21.6071435924645,0,7,1 -12421,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.2483640182763,30.9010665912369,1,16,1 -12422,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.84513179515488,26.5200804299129,1,13,1 -12425,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.5455526006408,26.9049712648095,1,19,1 -12427,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.58299453579821,28.0710048533432,1,11,1 -12433,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.132786084665,23.1269846607975,0,12,1 -12434,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.57278063194826,22.3335802246518,0,4,1 -12435,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.69730589631945,27.3591279819954,0,13,1 -12436,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0913262157701,30.817550193556,1,14,1 -12438,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4412236360367,27.2065786984348,1,12,1 -12444,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.2548452413175,28.08113894768,1,17,1 -12447,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.3106269203126,25.829806126637,1,13,1 -12448,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.2383251448628,25.5281164308243,1,5,1 -12449,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3616546127014,23.0081038240195,0,9,1 -12450,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.9985290595796,26.0664021969441,1,15,1 -12451,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.73272432619706,29.5916209500657,1,13,1 -12452,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.75500839552842,26.5625019591577,1,17,1 -12455,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.89266859018244,26.369768517883,1,11,1 -12457,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3841968304478,21.7590890130435,0,10,1 -12459,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.89749764464796,27.5806227472876,1,18,1 -12460,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3036297755316,21.7122628788392,0,7,1 -12465,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.4145906318445,24.8969512260855,0,9,1 -12466,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.80560943507589,29.2744550308673,1,14,1 -12473,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.63252725894563,20.3239429251953,0,9,1 -12474,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3521007010713,23.2945117605187,0,14,1 -12476,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.2408327062149,21.4948318424603,0,7,1 -12479,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3130298305769,20.5146844689062,0,8,1 -12483,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.98905335669406,28.7100414341297,1,13,1 -12485,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.1298405353446,27.4861958127093,0,14,1 -12487,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.2953580906615,22.0203920201913,0,11,1 -12488,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.91696761944331,28.6660768409819,1,15,1 -12489,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.74373983824626,22.9962727165634,0,15,1 -12490,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.450208455557,28.1612273358904,0,14,1 -12496,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.3376185935922,28.1172673485181,0,13,1 -12500,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.76111779012717,19.5762934644872,0,7,1 -12508,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.5230698636733,26.1201598561292,1,16,1 -12510,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.69436007924378,26.0089092308017,1,15,1 -12515,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.1491826423444,27.050993775345,0,9,1 -12519,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.50363965588622,25.0267055806385,0,11,1 -12521,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.9566595966462,21.0504069898635,0,13,1 -12522,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.81937605375424,29.558717669084,1,18,1 -12523,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.89888418070041,29.1139196505961,1,22,1 -12531,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.92229098989628,23.5205825269326,0,10,1 -12535,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.0228239204735,26.8482460841679,1,15,1 -12542,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.63326128968038,27.7865411831383,1,19,1 -12543,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.6330209383741,28.6405493570899,1,13,1 -12547,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4728448505048,28.5264011196424,1,22,1 -12548,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.64882962615229,22.4254398661198,0,11,1 -12550,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.98450913978741,26.1178413203548,0,8,1 -12560,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3872032321524,30.5260330445019,1,20,1 -12564,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.82956760679372,30.8954738390489,1,15,1 -12567,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3368506273255,29.4755475379617,1,14,1 -12571,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.335745516466,27.8308716787894,1,18,1 -12575,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4691984259989,24.3787782460161,0,9,1 -12578,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3140296293423,24.815701278265,0,14,1 -12579,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.86193584161811,28.693593163566,1,22,1 -12580,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.75165408593602,28.8241755598206,1,18,1 -12581,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.72569527640007,23.5408090449084,0,16,1 -12584,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.78671847959049,31.8794934917786,1,14,1 -12585,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.50618666876107,24.7007648929474,0,11,1 -12586,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4333577814978,29.8621881019279,1,26,1 -12589,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4580234319437,28.1597180020544,1,18,1 -12591,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.99241833644919,28.8001263082368,1,21,1 -12601,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.52975462726317,24.5610011989901,0,13,1 -12602,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.93964748689905,28.3867656820065,1,21,1 -12605,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2210161022376,27.2848473936081,1,15,1 -12607,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.80763582978398,23.1199866141831,0,10,1 -12609,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.92731602187268,22.0540000739763,1,11,1 -12610,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3388721097726,28.6814791095622,1,13,1 -12612,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.78813288244419,26.8830122457851,1,11,1 -12614,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.54432531259954,24.4501274453269,0,12,1 -12619,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3043626802973,23.1348020680615,0,10,1 -12621,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4559050111566,24.1405765892724,0,7,1 -12625,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.54818231379613,26.1860058003746,1,13,1 -12626,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4049349154811,23.2671156316573,0,10,1 -12628,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.74817759660073,26.9913275040535,1,21,1 -12631,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.1796846329235,22.566954783267,1,15,1 -12632,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0656857942231,21.6334546092926,0,12,1 -12635,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3870504589286,27.5410157998186,1,22,1 -12639,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0321359268855,23.8659227748873,0,4,1 -12641,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.80606361548416,28.5741016330605,1,16,1 -12642,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.66809196723625,29.9032367548061,0,19,1 -12646,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4426845263224,26.6128020405769,1,18,1 -12649,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2866755551659,27.7505924608601,1,17,1 -12651,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.86615048046224,23.6241002834658,1,11,1 -12654,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3229666051921,24.8935020803432,0,12,1 -12655,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2915360436309,28.1867872984241,1,21,1 -12656,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3880910053849,24.1082629879489,0,19,1 -12666,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1885326700285,29.7451751248247,1,23,1 -12667,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.2126294828486,22.2683031589722,0,13,1 -12670,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.2913950325456,24.458100963732,0,9,1 -12673,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.70653951680288,30.6495768953194,1,19,1 -12684,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3307092743926,23.9830108029425,0,11,1 -12689,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3330145471264,25.5426753870363,0,12,1 -12690,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2252429579385,29.0178902817981,1,22,1 -12692,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0823945687152,22.4935281033274,0,7,1 -12699,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.1592475560028,22.1503692681738,0,9,1 -12700,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2646022494882,31.5166517378308,1,14,1 -12702,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.52334222570062,28.899658518981,0,14,1 -12708,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.72665650560521,23.0003466366753,0,16,1 -12710,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0599793896545,21.111727122314,0,12,1 -12712,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.54541177488863,27.9614635403602,1,16,1 -12714,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4583168383688,23.4770776437892,1,11,1 -12715,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.79751293244772,24.8821996038303,1,11,1 -12716,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.1432825273369,24.0480993253019,0,11,1 -12719,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3270110851154,28.195347087738,1,16,1 -12724,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.68993057217449,22.3737880363229,0,8,1 -12726,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4074214948341,23.7554881365921,0,9,1 -12727,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.82951564225368,31.1709311872777,1,22,1 -12733,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.87206454016268,27.6096331223853,1,20,1 -12738,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4702332091983,28.3357609749974,1,14,1 -12740,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.74433529237285,24.3669727509346,0,14,1 -12742,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0167064270936,21.4003960565435,0,13,1 -12743,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.52724537928589,29.9021182670978,1,18,1 -12744,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.53424158599228,21.8351914890575,0,10,1 -12745,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.57105591869913,22.4980122185949,0,8,1 -12747,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.2661672753748,21.5362409609919,0,16,1 -12748,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.83070749929175,26.517210186209,1,17,1 -12755,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.8734257130418,21.0442443982533,0,13,1 -12756,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.317406692775,24.2067891796395,0,15,1 -12764,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.61016184301116,29.5281868908987,0,22,1 -12766,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.65459931991063,22.7394236979619,0,11,1 -12773,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4082626313902,26.9789231835736,1,15,1 -12774,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1806845094543,27.8037368307758,1,16,1 -12775,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4180494870525,29.1876167824663,1,15,1 -12777,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.77222088444978,21.9476399528046,1,8,1 -12781,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.2992345718667,25.8899327283539,1,15,1 -12783,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4133662313689,28.0549942970097,1,22,1 -12784,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.2227325330023,22.8925954202625,1,16,1 -12788,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.81518188607879,21.9343708288779,0,8,1 -12790,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2517092225607,28.8192952433073,1,13,1 -12791,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1317202693317,27.7247656144186,1,19,1 -12792,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4703069580719,22.9405696587238,1,8,1 -12795,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3983937769663,24.0398987853731,1,11,1 -12801,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.86707683326676,26.7177013301938,1,21,1 -12802,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.74743554997258,24.4485726665567,0,10,1 -12806,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4115421317983,23.0238803649414,1,11,1 -12808,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.69517048425041,22.6878350944654,0,14,1 -12809,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.92684363876469,24.1915575548316,0,13,1 -12810,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.1118764558341,23.3563533511177,1,11,1 -12812,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4590371388476,29.7934311168934,1,21,1 -12815,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.04217524454,28.0773423049576,1,18,1 -12816,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.472254213877,26.8987590534871,1,17,1 -12817,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.94331547198817,28.5265333582219,1,12,1 -12820,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.72829562355764,24.6693381992181,1,6,1 -12831,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.57583032804541,22.1171041796972,0,11,1 -12839,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3248092080466,27.0305761880972,1,21,1 -12846,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.223287591245,26.7248970750673,0,6,1 -12847,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.80718903127126,28.1106348171441,1,20,1 -12850,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.63096507359296,29.8508467203062,1,21,1 -12853,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.7180730428081,23.5149097636558,0,10,1 -12857,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4483081016224,21.9946913166894,0,9,1 -12861,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.71716870623641,23.5629921417145,0,26,1 -12862,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.95524912746623,29.6532087176944,1,21,1 -12864,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4568790665362,28.6773608962006,1,15,1 -12866,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3269321287517,26.5992647363308,1,9,1 -12867,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.98631451604888,30.0367058858529,1,13,1 -12869,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1224511968903,30.3015180940979,1,17,1 -12870,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.80401455215178,25.0750177448288,1,9,1 -12872,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0112308245152,22.8940581131544,0,8,1 -12873,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4622001973912,24.3611384083116,1,11,1 -12875,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2464428115636,30.7235768747428,1,16,1 -12879,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1223854564596,29.8325506640114,1,16,1 -12883,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1402074827347,24.8530258171564,1,13,1 -12887,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.62474283901975,29.5613309968127,1,16,1 -12895,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.0776086372789,28.8849457234855,1,13,1 -12897,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.71762342145666,26.4696466436561,0,15,1 -12906,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.58999807899818,26.9380517879918,1,14,1 -12907,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3758602414746,24.9499861842065,0,15,1 -12908,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.0165170382243,30.3183801455495,1,16,1 -12909,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.85326446639374,29.9815215349237,1,21,1 -12910,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4062191208359,25.7058992293564,0,19,1 -12915,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.94516259501688,28.1601110928435,1,15,1 -12916,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.89607280283235,23.8759434536265,0,9,1 -12923,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3373813279904,24.8673210816223,1,9,1 -12926,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0806304037105,26.771327810741,1,14,1 -12929,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0881787131075,24.3022022747212,0,13,1 -12931,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4160653513391,23.5223244669114,0,8,1 -12932,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2784443295095,27.9368386996765,1,21,1 -12939,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.69769455026835,26.8892026382829,1,17,1 -12940,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.55446248152293,23.2672328701725,1,14,1 -12941,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1581894252449,30.102484162943,1,23,1 -12942,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3107362885494,23.1631052272707,0,11,1 -12945,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.2419256670401,22.7560860411357,1,10,1 -12947,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.014428218361,23.2733553536337,0,12,1 -12950,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.98346552718431,28.9371306749654,1,17,1 -12952,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.273774700705,25.7248641360168,1,15,1 -12955,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4950209353119,28.1938256345141,1,16,1 -12966,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.67544609704055,28.1603342883197,1,23,1 -12968,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.91679621487856,22.5871733757572,0,7,1 -12969,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.79417732148431,27.6542672945337,1,18,1 -12972,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.73159733857028,24.7196647243237,0,9,1 -12974,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4704137609806,30.4488948732655,1,15,1 -12975,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.266758695012,23.6381092532248,1,8,1 -12980,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.88776421640068,25.8249896405228,0,19,1 -12982,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.62909883796237,25.6006003829409,0,12,1 -12984,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4784031903837,30.9525855654064,1,25,1 -12987,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.88888184796087,27.3375920273982,1,11,1 -12989,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.8996818845626,25.8618942226557,1,19,1 -12993,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2619863767177,21.0658919851758,0,9,1 -12994,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0462545147166,21.0797037973257,0,11,1 -12998,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.5408574976027,21.536833121508,0,8,1 -13001,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.81379546248354,22.7060569038027,0,8,1 -13004,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.80768601386808,21.7181916254203,0,6,1 -13005,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.60170419234782,20.3037838301616,0,6,1 -13019,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.3167712395079,31.1664629711118,0,9,1 -13021,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0763300310355,20.319318310896,0,11,1 -13022,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.78707162872888,27.7033756043886,1,16,1 -13025,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.3939941807184,21.2032316055437,0,7,1 -13026,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2465726453811,21.4668021273757,0,4,1 -13030,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1078807478771,21.5145768976984,0,7,1 -13033,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.3817053823732,22.5290501561757,0,10,1 -13036,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.55004522181116,23.7050027864214,0,8,1 -13037,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.72599748591892,28.8336384757369,1,16,1 -13040,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.90384577703662,24.4013402589821,0,10,1 -13043,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.53887151624076,22.0710344994679,0,9,1 -13044,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.91409052489325,26.4484823778318,1,17,1 -13051,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.68725651293062,20.2970701342597,0,8,1 -13066,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.97197619336657,26.0828505716695,0,16,1 -13067,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4473957321607,22.0950480643342,0,14,1 -13068,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.50248410459608,21.1427587534214,0,8,1 -13070,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.65889029600658,25.0065864858804,1,12,1 -13079,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.59457574179396,22.0823434437213,0,11,1 -13083,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.73905772273429,22.9925723608955,0,8,1 -13091,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1748582264408,22.3499678397089,0,12,1 -13098,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.50485124252737,23.0683001563782,1,12,1 -13099,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.50456535001285,27.9892212372121,0,18,1 -13104,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0389912512619,27.3734600042135,1,16,1 -13105,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0528354095295,21.3309485537057,0,4,1 -13107,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.77310476149432,24.5128994434016,1,8,1 -13112,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1029232565779,25.5623391211943,0,12,1 -13116,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.74480578117073,26.4077393105824,1,20,1 -13119,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1382883861661,20.1316048834254,0,6,1 -13122,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4046501927078,24.8682457753038,1,17,1 -13136,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.64293356705457,26.9360424778214,1,16,1 -13147,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.66931865806691,23.4008264248625,0,7,1 -13150,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.88780545792542,26.6909528392965,1,8,1 -13153,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.75756977195852,23.444719895991,0,9,1 -13154,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1032126576174,24.0389728510524,0,10,1 -13159,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0170644349419,23.3886175337407,0,10,1 -13162,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.80199553724378,20.984784552072,0,7,1 -13165,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.72073720535263,27.0408172667284,1,16,1 -13167,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4317886903882,23.4941810646658,0,8,1 -13169,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4066446500365,21.5377175534672,0,8,1 -13170,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.96590512851253,25.7392472875966,1,11,1 -13171,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.63819073350169,21.4749641689882,0,9,1 -13175,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1233084087726,27.3205549843951,1,11,1 -13177,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1430010960903,27.3141475159767,0,14,1 -13180,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0281873941422,19.8981806544471,0,12,1 -13188,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.88889999175444,21.6488918245007,0,13,1 -13190,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.88024226436391,19.9780626950431,0,5,1 -13193,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.6984498067759,26.3814972722915,1,11,1 -13196,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.072473046137,26.0244539642979,1,10,1 -13207,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.98582237958908,21.6739822935007,0,9,1 -13212,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.99701172811911,22.4622034046404,0,9,1 -13214,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.51403428055346,24.7272758803811,0,7,1 -13216,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1166833781172,20.3486658012991,0,7,1 -13221,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.51129710394889,26.9991473068788,1,11,1 -13223,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.58352268836461,20.8483667868721,0,7,1 -13224,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.86216015135869,23.6012812909457,0,10,1 -13226,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2503283554688,21.4759808705016,0,9,1 -13228,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.59493372682482,27.7148206008086,1,15,1 -13233,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.78459432860836,20.845462903547,0,7,1 -13235,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.9378578600008,21.3920055484035,0,6,1 -13241,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.3206881682854,17.2888886692253,0,5,1 -13246,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.3812368817162,25.8352746297912,1,16,1 -13249,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0450932355598,25.9190322515831,1,11,1 -13250,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1837410370354,28.2625402259171,1,11,1 -13254,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1512013056781,24.5932080972023,1,15,1 -13256,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.81212294357829,26.0954308119039,0,15,1 -13258,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.94917773106135,25.1211378983785,0,20,1 -13259,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2516800423618,24.0784874707306,0,7,1 -13260,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.79473281302489,21.276862753107,0,4,1 -13261,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.75111597613432,27.3544980656621,1,17,1 -13268,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.88748731208034,26.221605209628,1,14,1 -13269,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2494889560621,29.3786659672446,1,15,1 -13270,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.3555025593378,22.121174998795,0,12,1 -13277,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.98528736806475,22.3856025564709,0,7,1 -13278,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.55318466736935,22.178024545799,0,12,1 -13280,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4276751575526,23.6184390705111,0,13,1 -13281,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2621877396014,21.4367516458355,0,6,1 -13285,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4653039711993,26.9110682913327,0,16,1 -13286,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.95231568790041,22.9980551181603,0,5,1 -13297,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.82434148853645,23.0164390790763,0,16,1 -13300,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2453095905948,22.4657185050062,0,7,1 -13302,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.57886744081043,27.4622654724189,1,9,1 -13303,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0337879781146,26.568045428388,1,15,1 -13304,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.84061031416059,23.8877834067765,0,7,1 -13305,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.3275625912938,22.3560796596275,0,8,1 -13311,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.98759998846799,18.7000475743644,0,8,1 -13313,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0529568984639,20.7059403354781,0,10,1 -13316,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1300179222599,25.7292308892991,1,20,1 -13318,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.75845008878969,25.8170721788694,1,15,1 -13319,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4711182722822,20.0663183163137,0,14,1 -13321,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4762889982667,27.3653996225024,1,15,1 -13322,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.432275315281,17.3798634299669,0,7,1 -13326,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.069135190919,19.4596329565681,0,13,1 -13329,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4351724267472,29.0494978712041,1,20,1 -13333,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.89145948551595,27.635335703937,0,9,1 -13338,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.53470030589961,30.0544968581091,0,18,1 -13344,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.78451008186676,24.7360992505659,0,16,1 -13348,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2686029081233,23.1695336292012,0,8,1 -13352,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0896238249261,19.0512456880131,0,16,1 -13353,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4176388063934,26.7063962916751,1,21,1 -13355,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0101668387651,22.2631323316468,0,10,1 -13359,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1961257082876,21.0712255253802,1,7,1 -13365,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0449331370182,28.017405212809,1,19,1 -13369,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.6245454729069,19.5453636134612,0,12,1 -13372,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.144232072169,21.2024191136996,0,7,1 -13377,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.50299336598255,26.7570629018114,1,12,1 -13378,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.53143185097724,24.8835375382448,1,12,1 -13381,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2726806942374,21.2743913569088,0,12,1 -13391,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4662419664674,19.5720935262415,0,13,1 -13396,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.7352571405936,19.6886684146306,0,4,1 -13398,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2527298685163,27.9118174113997,1,16,1 -13400,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.83612932451069,22.0557839978654,0,9,1 -13401,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.74038156284951,26.9914973068941,1,23,1 -13402,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.81209975481033,31.2337672351368,0,12,1 -13406,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.95505994651467,27.435896681361,1,19,1 -13414,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2708270724397,22.6505098845556,0,13,1 -13417,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.55968834646046,20.2762432876242,0,4,1 -13424,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.69296010676771,23.9811429924182,0,13,1 -13429,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.6937050698325,26.5603880935641,1,9,1 -13442,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4796084300615,25.5831182787557,1,16,1 -13444,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4381082351319,23.0343599600969,0,10,1 -13447,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0499065648764,21.696245865144,0,7,1 -13448,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.90483193239197,21.232858468974,0,8,1 -13449,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.87058623926714,25.7198161039532,1,12,1 -13450,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2270899738651,20.9631310140267,0,4,1 -13453,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.69133030320518,26.2647295864898,0,13,1 -13458,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.493334162049,23.5699496660326,0,6,1 -13460,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0381498909555,24.4274629312134,1,19,1 -13461,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1295285704546,27.9514654866038,1,12,1 -13462,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.51661969977431,20.4321095894592,0,5,1 -13467,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0229702785145,25.6937671861771,0,6,1 -13469,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1312242308632,20.7186675933034,0,11,1 -13470,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4510158200283,20.2912571482088,0,10,1 -13472,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4213317988906,21.3529809605134,0,9,1 -13476,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.85172186093405,27.2606223105129,1,9,1 -13478,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.67352666240185,20.6407086937565,0,12,1 -13486,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.67329384223558,27.1496673614975,1,15,1 -13488,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4673529190477,24.7176674521665,1,9,1 -13489,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2681874495465,25.1021636304973,0,8,1 -13492,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.72736428771168,26.5339485243144,1,16,1 -13498,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.57598515739664,21.0982285577064,0,6,1 -13500,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.66560688405298,21.3036568985603,0,5,1 -13502,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.87276247562841,18.0374261870219,0,9,1 -13507,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0505703426898,20.4160021707962,0,6,1 -13512,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.125394830713,26.4297011656573,0,11,1 -13516,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0639055492356,26.1783937627611,0,11,1 -13518,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.3209882227238,23.6788771931707,0,8,1 -13519,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.94651009561494,20.8669030155956,0,8,1 -13520,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.55922712222673,25.6826700091715,1,10,1 -13521,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.91651976434514,25.9909593201187,0,10,1 -13522,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.67057491629384,26.8954837078872,1,15,1 -13524,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.3802406748291,25.7065446177701,1,17,1 -13525,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.51798666501418,18.7879738285678,0,10,1 -13527,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.50655285269022,24.5258770184829,1,8,1 -13531,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.1078832617495,23.3135304374566,1,11,1 -13532,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.94291441771202,20.4271708138612,0,8,1 -13533,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.05927231838,28.4130869378468,1,6,1 -13534,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2266946069431,21.3177447998533,0,7,1 -13535,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.84981800056994,23.7201793160915,0,10,1 -13537,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.50258715241216,19.6033553937227,0,6,1 -13540,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0701999613084,24.2385291525441,1,12,1 -13542,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4554606191814,27.3551867221252,1,13,1 -13544,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.62821274087764,22.6045629007531,1,14,1 -13546,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.82903039874509,20.4061653976163,0,9,1 -13553,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.1296579102054,25.6315893694895,0,21,1 -13555,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.84881840157323,26.5910139893802,1,11,1 -13561,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2511956095695,25.4959212934297,1,8,1 -13565,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2730231331661,24.1683799279426,0,11,1 -13567,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.215991289122,24.4735441045521,1,10,1 -13570,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.1672057507094,26.1694370811274,1,17,1 -13571,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.91015893267468,20.7250921763216,0,5,1 -13578,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.1716408969369,26.4573894160909,1,18,1 -13581,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2272693498526,18.9283905224037,0,7,1 -13582,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2775173941627,20.7078870060723,0,5,1 -13583,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.97138599911705,25.9561136019226,0,15,1 -13593,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.88047711621039,25.9127915218933,1,12,1 -13596,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0211511061061,23.5565507443747,0,8,1 -13599,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.77324140141718,25.7155269833142,1,12,1 -13601,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0930694618728,25.9234171772865,0,7,1 -13602,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0738610941917,21.0905696762998,0,7,1 -13605,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.95179621642455,21.8949565309666,0,15,1 -13606,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.63502768147737,19.127979408999,0,7,1 -13607,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4556868919171,26.6364328953178,1,17,1 -13608,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.94752158527263,17.8401274580511,0,9,1 -13610,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.284573598532,22.4596140739756,0,8,1 -13612,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0825626868755,25.9047981256096,0,15,1 -13615,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.351909826044,20.8506465776804,0,5,1 -13617,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.3939830423333,19.1194156299468,0,10,1 -13626,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.1795008042827,24.5716951183916,1,18,1 -13629,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.74952624365687,19.4744927224127,0,5,1 -13633,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2786172037013,29.747348444484,0,14,1 -13634,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.7456420448143,26.2452320414704,1,8,1 -13639,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.74311782186851,21.378823694015,0,9,1 -13644,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0651732978877,27.2661345466464,0,16,1 -13645,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.67591858631931,21.9961594357678,0,11,1 -13646,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.61429426865652,24.607155374717,0,18,1 -13656,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.58655639342032,20.7795713129322,0,8,1 -13657,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.54564944398589,21.7372868339118,0,10,1 -13660,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.88038723054342,22.5818533473164,1,11,1 -13663,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.84567667660303,26.0330723844939,0,18,1 -13664,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.55974689987488,25.8776660450221,0,11,1 -13671,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.325360942632,22.3086530316282,0,5,1 -13672,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.66733946907334,19.9899998203814,0,12,1 -13680,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.5916222713422,18.5464498974155,0,7,1 -13684,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.84464769507758,20.9109845011502,0,4,1 -13689,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.1144174856599,20.8413309058705,0,5,1 -13690,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.1406391994096,22.3180372514011,0,6,1 -13692,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.80204563820735,21.7554128471055,0,5,1 -13694,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.53089135815389,21.6456315794544,0,6,1 -13696,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.86550592794083,25.9552708502067,1,12,1 -13698,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2202291593421,24.4908477300745,0,8,1 -13699,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.62753180181608,21.2357068737079,0,10,1 -13701,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.86979092867114,25.312931915872,1,6,1 -13703,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.083551236894,21.3830407208591,0,7,1 -13705,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.99421485839412,19.0531956877968,0,10,1 -13712,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4875028699171,26.2171476121426,1,15,1 -13714,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0151757001877,20.3962624872118,0,7,1 -13715,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.96884576696903,20.0418572680738,0,6,1 -13716,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.69598972587846,26.5900166784462,1,11,1 -13719,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.1158636047039,20.1984322595539,0,10,1 -13724,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.83488654159009,21.6393924458078,0,14,1 -13725,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4717063556891,26.1847730174062,0,9,1 -13728,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.3589884159155,24.5590451760038,0,11,1 -13731,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.85223949700594,17.9870065149847,0,4,1 -13734,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0686458942946,23.9425396616411,1,20,1 -13745,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4276273846626,22.2680468562202,0,7,1 -13748,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.1646011974663,25.5188675359537,0,15,1 -13751,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4358624108136,21.038750490054,0,7,1 -13753,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.209525170736,21.9436236204838,0,7,1 -13757,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4740093532018,22.6340600874117,0,12,1 -13758,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.1921178556513,20.8662863004427,0,7,1 -13759,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.76639674557373,26.225320138573,1,8,1 -13761,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2747703585774,24.9708799758572,0,10,1 -13764,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2666030141991,28.580669064596,0,7,1 -13765,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.62651373445988,23.0350316692022,0,16,1 -13767,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.75608562421985,24.9504301313756,1,18,1 -13769,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.90567251318134,19.9304394881415,1,8,1 -13770,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2347705571447,21.3792539359216,0,10,1 -13771,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.56382089899853,24.2632181658426,1,16,1 -13774,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4653986885678,25.0164309095072,1,6,1 -13776,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.98862840677612,21.7729984918304,0,4,1 -13777,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.73175926366821,20.0897375491351,0,7,1 -13778,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.1948754594196,22.5658418243318,0,6,1 -13779,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.21797379083,19.34173542578,0,4,1 -13782,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2277368423529,21.7955896248913,0,4,1 -13783,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.58706164453179,26.331087614789,1,10,1 -13784,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0136531130411,19.1685493543895,0,8,1 -13787,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0792598600965,24.3965052263109,0,18,1 -13790,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0306082381867,20.9792321630044,0,7,1 -13791,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.71236574859358,25.1289585285018,0,14,1 -13792,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.71531174704432,24.6892236789615,1,16,1 -13793,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.5709028611891,26.0064733569266,1,14,1 -13794,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.70865789288655,19.7338436584458,0,9,1 -13795,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2095852978528,21.0709758173536,0,11,1 -13796,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.3887779396027,24.0231679212179,1,13,1 -13798,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.1213292547036,20.816851566438,0,13,1 -13805,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.91472901846282,25.0463116481653,1,11,1 -13814,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.92278921045363,27.7674837414164,1,11,1 -13818,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.90566852525808,23.4327008221253,1,11,1 -13820,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.85095616802573,27.9014609810803,1,13,1 -13822,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0145006054081,27.0408323124036,1,14,1 -13828,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.75814878684469,25.7811059477374,0,8,1 -13829,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.1415332432371,26.6281118654007,1,18,1 -13831,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2219745547045,19.9929400151583,0,6,1 -13836,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4338516723365,25.9412067880784,0,11,1 -13837,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.50590633112006,27.2576460819605,0,14,1 -13838,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.60357329202816,25.9527964755282,0,10,1 -13839,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2876309314743,20.8845148048629,0,7,1 -13844,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4383943704888,25.4611526041229,1,13,1 -13852,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.1601269608364,24.1130411420779,0,13,1 -13856,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4087620042264,19.6739498888752,0,4,1 -13858,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.55043579475023,18.9971416014517,0,11,1 -13859,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2648829123937,17.9070620369419,0,7,1 -13862,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.96512665855698,23.5514144665589,1,17,1 -13863,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.51049817865714,24.9040161656308,1,11,1 -13864,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.9656957401894,26.710198719255,0,11,1 -13867,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0323746236973,22.7817870077079,0,5,1 -13868,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.61958446446806,19.3343479548694,0,11,1 -13871,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.3264805208892,22.0276801264616,0,6,1 -13872,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.56866955617443,26.9717615027293,0,15,1 -13873,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4261374676134,20.6451451580398,0,5,1 -13877,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.52674074843526,23.310122994805,0,7,1 -13878,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.84344000322744,23.3294712803687,0,14,1 -13899,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2414716263302,24.6396655298243,0,19,1 -13900,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.69642040436156,20.2352828159116,0,8,1 -13902,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.63269687653519,22.4328198004158,1,9,1 -13906,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4660174450837,26.5595707600633,1,18,1 -13908,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0259942263365,21.5998915327826,0,5,1 -13910,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0351645154878,25.1128077216888,1,7,1 -13911,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2254826885182,19.4126620928059,0,6,1 -13912,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.87385124107823,20.6389698228827,0,10,1 -13913,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0974413778167,22.3860023891076,0,10,1 -13916,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.092378664529,25.4817869916397,1,16,1 -13917,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0419102150481,20.5636327693097,0,9,1 -13920,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.91138561978005,23.6271043019004,0,13,1 -13922,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.59523295797408,25.4295394257459,1,15,1 -13926,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2360223333817,25.0664509440571,0,12,1 -13927,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.60774128162302,20.1456520974809,0,3,1 -13929,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.67885115626268,26.6388914076368,1,11,1 -13930,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.90426472155377,22.2076547244384,0,11,1 -13931,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2402983214706,20.8351726884503,0,3,1 -13938,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.90879253717139,24.3610992316243,1,17,1 -13939,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.96150985406712,25.1282880057705,0,15,1 -13941,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4953804132529,25.3382504489665,1,9,1 -13942,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.87155670905486,24.3964040867941,1,17,1 -13945,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2263088838663,26.0915956562227,1,15,1 -13946,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.1673288373277,25.0297139435126,1,8,1 -13947,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.58922468149103,27.4942009791431,1,17,1 -13950,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.1348024029285,22.086010878,0,5,1 -13952,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0542755220085,27.2987765174284,1,12,1 -13961,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.84004144533537,22.209927495346,0,12,1 -13964,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1615571193397,19.2168718847325,0,8,1 -13965,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0530457629357,19.3381951380608,0,9,1 -13968,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.57633052370511,18.9548524648145,0,6,1 -13972,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.4535851422697,20.0541332670778,0,15,1 -13976,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.87746889726259,20.2010857457255,0,6,1 -13978,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.79374364251271,25.550660957471,0,5,1 -13984,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.71646425081417,21.0233596551343,0,8,1 -13987,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1950437475462,18.6000029082777,0,11,1 -13990,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.63064236030914,22.7024052591424,0,11,1 -13992,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.74866791837849,19.7669384607121,0,8,1 -13995,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.92421772703528,19.791855206818,0,6,1 -13996,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.069079463603,23.5412398027638,0,17,1 -14001,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1910175289959,25.4874932748586,0,13,1 -14003,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.59049871494062,25.0076859537568,0,15,1 -14005,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1184277005959,27.2527634491451,1,19,1 -14009,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1355234815273,24.1707532029308,1,13,1 -14014,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.4917928625364,21.1631253499471,0,7,1 -14016,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.96256531355903,23.8636687282972,0,11,1 -14022,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.0830733813345,24.3273631037404,1,8,1 -14023,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1982567338273,20.5932746335549,0,12,1 -14024,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4793028309941,23.0192477838413,1,20,1 -14026,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0931894297246,20.6399160377084,0,3,1 -14032,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.50795068009757,24.7746031545056,1,11,1 -14037,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.71597059210762,19.3740340442154,0,10,1 -14040,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2458864110522,21.3464103525306,0,7,1 -14041,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.54718694020994,24.1050160929586,1,14,1 -14042,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.5564041947946,24.6819270422147,1,14,1 -14046,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.56347588729113,22.8859629514211,0,9,1 -14048,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0940522886813,21.3498595165287,0,10,1 -14050,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.0679742773063,28.9872159985953,1,14,1 -14053,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4304457581602,26.8025515950507,0,12,1 -14055,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.64020133670419,25.3991264915151,1,9,1 -14056,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.2046923106536,26.3435340813753,0,14,1 -14059,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1139381877147,26.3255413906818,1,11,1 -14061,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.2234849191736,26.1882610422092,1,11,1 -14066,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4800972295925,25.7957551480532,1,12,1 -14067,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.8077100017108,23.3790179241169,1,10,1 -14068,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.96054915781133,28.8834484329111,0,11,1 -14070,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.77474524197169,19.0823491395659,0,6,1 -14073,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.53399129025638,23.1203449086608,1,16,1 -14076,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1243053229991,25.1780889359368,0,12,1 -14078,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.77529772580601,19.3646857621787,0,11,1 -14082,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.82740785158239,19.6502714388068,0,10,1 -14083,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.0690977571066,23.624270551237,1,12,1 -14085,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.74837854760699,25.0332102466876,1,20,1 -14087,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4867685369682,23.7995066603851,1,11,1 -14092,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0197130737361,20.1725282514975,0,9,1 -14094,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.61477734381333,25.7421815862767,1,7,1 -14095,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1256112153642,25.0920004258142,1,12,1 -14102,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4346362797078,26.6529656104846,0,18,1 -14103,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.56125611183234,21.0881358522469,0,7,1 -14106,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0464395820163,21.2555545637514,0,5,1 -14110,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.57554323971272,26.5618204997782,1,14,1 -14111,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1382817050908,20.5760197680336,0,6,1 -14113,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1334607722238,25.0419126673737,1,16,1 -14120,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.64082352933474,28.7963767799406,1,14,1 -14126,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.85289141279645,25.494044181419,0,7,1 -14127,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.5283206612803,18.8846069851109,0,6,1 -14129,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3135497046169,26.3770379598361,1,11,1 -14132,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3209706777707,23.1356734742722,1,10,1 -14133,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.62295087147504,23.8113573852816,0,11,1 -14138,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.67586128576659,25.50598634767,1,18,1 -14139,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3411743729375,28.1231605279868,1,17,1 -14142,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4883941004518,23.6113378858687,1,9,1 -14143,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.66599389910698,24.6121384022901,0,13,1 -14144,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.58222888689488,19.5860637649228,0,6,1 -14145,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.93330435291864,19.5919920831442,0,15,1 -14147,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.57242700573988,26.2037741104599,1,13,1 -14149,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1144377174787,21.1413675970834,0,10,1 -14150,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.67443662160076,26.0470384259448,1,14,1 -14151,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.31577875535,25.7944516077871,1,7,1 -14157,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.90029525733553,25.5999907240288,0,14,1 -14160,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0893082441762,20.5179329885566,0,6,1 -14161,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1665484874975,23.0122241209943,0,7,1 -14164,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1025520758703,22.2644092256694,1,13,1 -14165,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1453068901319,21.6169496869521,0,10,1 -14166,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.7441952265799,20.6087096872078,0,11,1 -14173,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.66355354245752,24.1427223430838,1,18,1 -14177,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2847534369212,22.3495870511845,0,4,1 -14179,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.2545141216833,25.8949921700649,1,12,1 -14182,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.80164850782603,21.4255356661819,0,5,1 -14187,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.94042216334492,20.2124844335755,0,11,1 -14193,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3673545601778,20.6573581793582,0,10,1 -14197,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.2480446114205,25.5827061275251,1,8,1 -14198,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.378167237388,25.8356666807468,0,15,1 -14204,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1760570777114,24.1400082556912,0,18,1 -14205,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.82338824821636,21.9013415600074,0,13,1 -14207,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.2938893516548,25.7139202102476,1,11,1 -14208,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0469173544552,19.3995404611233,0,5,1 -14209,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.0215660100803,28.0704640682043,1,11,1 -14215,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2897609672509,19.5388089219928,0,5,1 -14221,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.91337760095485,27.8659712875835,1,17,1 -14222,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4755446477793,26.2311393156773,1,14,1 -14223,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.86043174145743,18.973833549874,0,10,1 -14228,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.61730598239228,22.2391795831434,0,5,1 -14233,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.54249015264213,20.0312191330091,0,6,1 -14236,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.86660529975779,26.5619272932848,1,9,1 -14237,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1373196446802,27.7931469199629,1,12,1 -14240,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.4031959993299,21.5970307997927,0,17,1 -14245,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3839049646631,20.5837811878254,0,9,1 -14246,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4137535884511,27.0016918534949,0,15,1 -14251,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.054877931485,21.5680012326069,0,5,1 -14254,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.70491596567445,20.7342062128678,1,10,1 -14255,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.70838155085221,24.8965632691126,0,13,1 -14258,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.8606056808494,20.4463701799586,0,3,1 -14259,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1894978610799,21.2117813416945,0,6,1 -14262,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.178490788443,22.6396809329249,0,11,1 -14263,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.2317664213479,27.0125528879741,1,15,1 -14265,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.55671249632724,23.9492848241102,0,21,1 -14270,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.474984195549,26.0780527449053,0,3,1 -14277,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.443319299724,19.2798693222239,0,6,1 -14280,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.82273105788045,20.5959124542376,0,6,1 -14283,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.4614544783253,19.4873631312932,0,9,1 -14289,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.64198439312167,24.1763748750633,0,12,1 -14290,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1773417922668,21.1772569231834,0,3,1 -14298,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.98104825522751,21.8088813910637,0,6,1 -14299,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1801970552187,19.0664592839808,0,13,1 -14300,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.85550450603478,22.2712646274181,0,4,1 -14304,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.89857240417041,21.047777672844,0,7,1 -14308,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.218456909759,24.5261448761261,1,15,1 -14311,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.4229491362348,21.4999684112238,0,11,1 -14316,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1462273406796,20.4037854653903,0,14,1 -14317,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.84033325617202,19.4002311918271,0,7,1 -14324,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0554319322109,21.2991597074513,0,6,1 -14326,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1107145932037,25.039780434687,1,18,1 -14330,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4640218254644,24.4572450516334,1,15,1 -14347,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.5982611970976,19.5886432324161,0,7,1 -14351,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2150554924738,20.7511983960914,0,7,1 -14352,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.66977131250314,21.4564417819433,0,5,1 -14354,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.81915150443092,25.8762541642463,1,15,1 -14356,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.69414245453663,24.1749417597225,1,15,1 -14357,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.68832956650294,25.2243240568544,1,20,1 -14363,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.67543200682849,22.6619041168094,0,6,1 -14366,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.0074567771517,27.905679198853,0,10,1 -14368,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.59591809683479,25.4534028594341,0,17,1 -14373,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4739936448168,24.6135484546907,0,5,1 -14376,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3930467516184,19.8246134982564,0,10,1 -14377,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0664985042531,21.7402396228741,0,10,1 -14378,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3182292664424,25.3600578216281,1,15,1 -14384,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.69633334269747,23.2482892797178,1,15,1 -14388,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1800137129612,19.6067449516717,0,9,1 -14389,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3949267643038,21.5805155687321,0,7,1 -14392,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1140252123587,24.5591383674716,0,9,1 -14396,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.51899506803602,25.4884550701378,1,15,1 -14400,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0985049048904,21.6785811823652,0,10,1 -14401,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.9264981681481,19.7528660304141,0,7,1 -14402,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2709157839417,20.1668612145726,0,9,1 -14403,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.432716214098,27.466756059864,0,8,1 -14411,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4301644286606,26.3362482150084,1,9,1 -14413,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.80821846914478,26.1134110103861,1,17,1 -14422,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3297601952218,24.7049167582537,1,9,1 -14426,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4322643545456,26.9085120551952,1,8,1 -14438,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3913672890048,21.3666554057149,0,9,1 -14440,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.71099150762893,25.3726276606132,1,10,1 -14441,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.4657549287658,22.7071538538291,0,5,1 -14443,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3289077442605,25.696826512308,0,13,1 -14448,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.2148324951995,24.7706168513972,0,9,1 -14450,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.76987001625821,25.7578970182155,1,10,1 -14451,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.63686553528532,27.8611318614057,0,18,1 -14456,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.9096484973561,22.320079835147,0,2,1 -14460,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2335404844489,20.827352487908,0,7,1 -14465,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.82979452190921,19.4979867881915,0,9,1 -14469,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.2919652943965,24.9257589863597,1,17,1 -14474,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.92147418041714,20.720622492379,0,8,1 -14479,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.72193073271774,24.680411152715,0,14,1 -14482,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0104270682205,21.8550469702176,1,5,1 -14488,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3068249642383,15.4065251441434,0,4,1 -14490,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.83903762325644,18.4991295395488,0,9,1 -14492,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2376161899883,23.947939792379,0,13,1 -14493,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.67442859709263,18.9962497249478,0,5,1 -14495,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1024290376808,18.2449121115837,0,7,1 -14498,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.78460903768428,25.2384284139921,1,10,1 -14499,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.79785711155273,20.4347644416725,0,10,1 -14505,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.61232254095376,21.1799317901849,0,10,1 -14513,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.55425675911829,21.0523872082714,0,4,1 -14514,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2748187582474,16.4352875397881,0,5,1 -14517,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2372845751233,18.716054273138,0,4,1 -14518,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.7553537285421,23.0276961355238,0,9,1 -14519,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.73262847354636,25.1986790582625,0,13,1 -14524,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2513233479112,25.8449213641127,1,6,1 -14525,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.92024193587713,17.9923296674937,0,4,1 -14527,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.52800023416057,18.8350591585449,0,10,1 -14530,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.86355744907632,19.2438189957589,0,10,1 -14534,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.74915173416957,26.5557291692175,0,6,1 -14535,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.80662131728604,17.9807136564756,0,7,1 -14539,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3203802227508,19.628874305353,0,8,1 -14544,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2834090518299,25.0444511134927,0,13,1 -14553,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.96619700058363,18.513343770977,0,5,1 -14560,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.8180206711404,23.0418068761775,0,6,1 -14561,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.76759624271654,22.1490229032182,0,13,1 -14562,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.88719016732648,19.1359774810473,0,4,1 -14563,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3255491245072,18.848314298604,0,4,1 -14565,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2517659461591,23.8018706897011,0,12,1 -14570,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.81123887980357,17.0959597095896,0,11,1 -14572,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3717197023798,17.2563119958314,0,10,1 -14575,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.75141111621633,17.5116887602847,0,3,1 -14577,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3040778611321,26.5842636760377,0,10,1 -14578,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0008322400972,19.0325561237704,0,6,1 -14584,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.62709668185562,19.3574073424625,0,4,1 -14586,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.85525737074204,24.7589848954254,0,17,1 -14588,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2806446072645,18.0851119808326,0,8,1 -14589,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2167889967095,20.7085639108997,0,8,1 -14590,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.92023517773487,17.9229621693114,0,3,1 -14591,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.82210234669037,18.2824728893067,0,6,1 -14597,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3810711833648,24.5143158521115,0,17,1 -14601,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.60985629842617,19.4248040207154,0,6,1 -14602,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.70000410522334,20.3165339229781,0,8,1 -14612,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4897823147476,18.426738045585,0,6,1 -14615,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.8245365913026,22.7347827317356,0,8,1 -14617,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.4334796515759,23.7558111419461,0,8,1 -14618,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.82492652838118,24.7843929766409,0,7,1 -14623,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.4850092798006,23.9745824983705,1,16,1 -14630,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1285000471398,23.4008283186908,0,15,1 -14633,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4447498652153,18.0763480366346,0,8,1 -14635,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.91218612133525,19.9589508528401,0,3,1 -14637,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.64805884053931,18.3700488795003,0,5,1 -14646,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.59333175420761,21.5049755852254,0,8,1 -14655,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.048971059965,18.7528484402562,0,7,1 -14656,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4994402199518,16.5382284958557,0,5,1 -14657,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3608261051122,24.0241346483543,0,9,1 -14659,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4697450983804,20.4648063787896,0,7,1 -14661,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0567426925991,21.8829189618741,0,6,1 -14663,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0294335989747,21.1486678876906,0,7,1 -14665,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.66834873729385,18.4107745928747,0,5,1 -14673,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.53136679553427,18.1530986922075,0,6,1 -14682,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.97898172936402,25.2807680864427,0,10,1 -14684,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0390160463285,18.3842739969167,0,8,1 -14686,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2256263459567,20.0655623583239,0,5,1 -14689,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.52141288272105,24.9763494514747,0,4,1 -14690,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.91999246412888,24.8480229082389,0,13,1 -14696,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.62601578095928,17.4729503601178,0,4,1 -14701,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.61533018900082,25.2009175069545,0,12,1 -14702,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3190162926912,17.6898315800615,0,5,1 -14706,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0877113023307,21.6607613863022,0,4,1 -14708,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.57226257538423,18.7766603957702,0,4,1 -14712,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0437183696777,24.6259560725644,1,12,1 -14716,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.85899068880826,22.4096476835772,0,13,1 -14719,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.64368795091286,19.8030425476674,0,4,1 -14722,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3298252981622,19.0224919821742,0,10,1 -14723,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2531762172002,18.6106541587373,0,2,1 -14726,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0487733411137,24.7819722083025,0,10,1 -14730,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0353804582264,23.7995745268067,0,8,1 -14732,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.99566993140616,18.6921028926974,0,2,1 -14736,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3080178410746,22.8056124833492,0,11,1 -14737,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.75757115823217,19.5070201860293,0,10,1 -14738,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.4279239464086,20.3205347127604,0,15,1 -14742,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.68561845389195,21.5680378923871,0,17,1 -14752,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.92489280737936,16.1433347131872,0,5,1 -14758,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3471724838018,17.4807988659968,0,9,1 -14761,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1588804509956,20.4797739079357,0,6,1 -14762,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1979757747613,23.5020812260637,0,11,1 -14764,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.83643846330233,24.4714060911839,0,8,1 -14765,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3124042949639,23.5212827795561,0,12,1 -14768,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.71830743132159,23.9550049959215,0,7,1 -14769,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1449199696071,21.3790789127589,0,5,1 -14770,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0587943932042,19.8191082965416,0,6,1 -14780,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.82941129524261,17.402005024484,0,5,1 -14789,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.79604047513567,23.3040610928169,0,11,1 -14790,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.74432396679185,24.5909312852371,1,14,1 -14791,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3434553178959,20.3081939477132,0,10,1 -14796,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.56646159524098,18.5074600767899,0,5,1 -14798,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.92058845818974,25.2070991877496,0,13,1 -14801,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.62172620301135,17.3428026114372,0,8,1 -14802,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4784954795614,18.0286177296098,0,7,1 -14803,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.66650075418875,21.9108072969106,1,15,1 -14807,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2072185527068,18.2218960739595,0,8,1 -14814,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4367621918209,18.7832395629508,0,11,1 -14819,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.731271967059,17.7406252664355,0,9,1 -14820,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4746611909941,18.1449716223908,0,7,1 -14821,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0031863686163,26.3048659353744,0,10,1 -14822,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.5212408574298,19.4081052241182,0,1,1 -14827,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.95111851044931,25.5288204575346,0,6,1 -14828,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2438097079284,15.8473416511411,0,10,1 -14829,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2846988183446,24.5439590451242,1,5,1 -14844,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1856304546818,24.9195277765391,0,4,1 -14845,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.91954678343609,26.2992470780612,0,10,1 -14847,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.50480371620506,20.4204815378949,0,8,1 -14849,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.69513995619491,24.8262117619433,1,22,1 -14854,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3081726196688,20.4358490154099,0,8,1 -14861,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.94138566660695,17.6164084878588,0,11,1 -14862,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.73554359260015,19.1273696051372,0,7,1 -14864,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.55250514065847,18.6072099106577,0,0,1 -14865,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.74470681487583,18.035772847442,0,5,1 -14868,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.54217872745357,23.6917420317971,1,8,1 -14872,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3411349554081,23.3703089489275,0,8,1 -14878,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4664470928255,17.226453662113,0,7,1 -14880,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.61507223686203,17.7050659761987,0,5,1 -14886,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4466125194449,18.1366896722088,0,2,1 -14892,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1491726764943,22.0515618715408,1,9,1 -14893,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.9532984753605,21.8882420382163,0,10,1 -14894,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0057421370875,16.1321587854961,0,12,1 -14896,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.51937921927311,23.6242147649008,0,11,1 -14898,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.97695146175101,24.8544562008393,0,10,1 -14901,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.4980168584734,20.5615376312208,0,9,1 -14905,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.488806880312,22.5818863184004,0,7,1 -14908,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4685357341077,18.6018156304879,0,12,1 -14913,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.72471089917235,18.8668330601221,0,4,1 -14916,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2461732011288,17.0479129118809,0,7,1 -14922,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.54129121499136,24.1637949291526,0,10,1 -14928,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.76234772847965,16.7299193495138,0,8,1 -14930,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0109546210151,16.9443623307166,0,6,1 -14932,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0523508607876,24.1857175515386,0,10,1 -14940,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.6674333109986,24.3962693715196,0,14,1 -14945,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.96623343089595,18.569477552967,0,8,1 -14954,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.67978927143849,18.4543125181849,0,6,1 -14963,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2075316163246,18.4493284771629,0,3,1 -14964,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.626009788597,22.383754148622,0,12,1 -14966,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.6259840449784,24.2072455923684,0,16,1 -14968,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.97580332891084,18.1419713400978,0,5,1 -14972,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.65019277646206,21.6353726966798,1,16,1 -14976,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.57780186552554,21.6895302073118,1,10,1 -14981,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.6091928081587,17.9096744284895,0,7,1 -14983,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2817532317713,16.9043432301948,0,10,1 -14985,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.4578329769429,23.6612369699529,0,11,1 -14989,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.9330796462018,22.8032289997518,0,10,1 -14992,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.94699215097353,25.0358127010913,1,12,1 -14999,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.51521805184893,21.6277381128667,0,11,1 -15002,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.86865021055564,22.5615323032658,0,10,1 -15009,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.69227000325918,22.2965186415352,0,7,1 -15015,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.7068774192594,20.9578688939942,0,5,1 -15017,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.77730898489244,20.5697252485951,0,11,1 -15027,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.66585435951129,21.1697754123543,0,8,1 -15028,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.1032375229988,25.615296793018,0,16,1 -15030,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.72547031589784,24.1688033776262,0,3,1 -15031,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.64202113752253,23.9641678414764,0,9,1 -15037,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.78468684456311,20.687477310819,0,5,1 -15039,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2177278192248,22.1857301399849,0,6,1 -15043,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.346545023378,23.5719899804978,0,11,1 -15047,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.73135156114586,22.8372413691011,0,7,1 -15048,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.58527645794675,25.8150507815171,0,14,1 -15049,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3600181224756,26.6549681120518,1,20,1 -15052,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.64011035161093,28.394710162164,1,11,1 -15053,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3749085171148,27.7939173941569,1,11,1 -15061,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1605531019159,21.4262632980677,0,8,1 -15070,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0412359784823,20.3950514037686,0,10,1 -15072,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4498144735117,22.718028554983,0,9,1 -15073,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.38730706973,20.8855774795566,0,8,1 -15079,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3712363524828,22.2270220448531,0,9,1 -15088,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.55845797504298,24.0746417444222,0,7,1 -15089,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3469608474988,26.7676035198493,1,14,1 -15092,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.66381578054279,24.0744705923626,0,10,1 -15094,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4683377309702,20.9754859625675,0,7,1 -15096,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.58352964604273,21.1685423816228,0,7,1 -15099,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.011753610801,24.3334244965471,0,13,1 -15100,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1875201396178,22.6932697563047,0,8,1 -15101,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4844571303111,27.3810584867709,1,15,1 -15102,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0954821193591,25.3930919413277,1,12,1 -15105,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3801306721289,23.3677339792416,0,9,1 -15107,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2787224925123,22.3138983798479,0,16,1 -15108,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2330332431011,23.1481106837067,0,7,1 -15113,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3841140337754,26.3947108274806,1,9,1 -15115,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.78925232496113,29.9099429425962,1,18,1 -15116,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3599341143854,21.1931947564855,0,4,1 -15119,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.77776187029667,27.1308387351677,1,8,1 -15121,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.67098872549832,23.8634850816287,1,12,1 -15123,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3439041913953,23.58876003177,0,6,1 -15124,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.58699186239392,27.5400975114527,1,15,1 -15127,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.84668436064385,22.3188065808156,1,11,1 -15128,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2802644551266,22.7621357911533,0,9,1 -15131,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.58785768388771,27.7165672096641,1,11,1 -15138,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4675756329671,23.1254809141344,0,7,1 -15139,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.72599513200112,21.5416538795525,1,8,1 -15140,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.81782060186379,24.8920916183635,1,12,1 -15144,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2264414657839,20.9105920017669,1,8,1 -15148,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0862017732579,21.2248431416993,0,11,1 -15152,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.9932382076513,24.0273536596991,1,14,1 -15153,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2771942599211,20.3512257562053,0,9,1 -15154,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4961302268784,27.5589352754127,0,11,1 -15155,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2136704290751,20.4728864461697,0,7,1 -15160,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.311668304028,23.3450453585784,0,10,1 -15161,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.72945345169865,23.150828620842,0,9,1 -15165,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.98711288603954,22.7699067746143,0,11,1 -15168,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0328948313836,23.7091087025148,0,6,1 -15169,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.89701831177808,20.4018678435269,0,8,1 -15177,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.61522031505592,22.7260995338404,0,15,1 -15179,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.93388932058588,25.7200410853927,1,16,1 -15181,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.59437571372837,23.6891768387695,0,10,1 -15182,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3876822616439,21.3896522894444,0,8,1 -15183,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.53111614077352,26.9979562758102,1,19,1 -15184,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1214105754625,21.0535859750083,0,11,1 -15186,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3862183040474,22.7782532229091,0,9,1 -15189,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.95401180046611,19.5656458789198,0,7,1 -15193,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3187983478419,20.4560350101262,0,6,1 -15196,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0554897205438,22.5509355485856,0,11,1 -15199,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3245787273627,21.0012426012621,1,7,1 -15200,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4390332368203,22.7102327743713,0,7,1 -15201,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4312528208829,26.7104918334235,1,8,1 -15208,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.96093311882578,22.4554117779024,0,8,1 -15214,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0612209455576,27.8740722849615,1,10,1 -15220,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1922723343596,24.8938202329959,0,3,1 -15224,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.95603000652045,25.4784580708715,1,16,1 -15225,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3765290658921,21.7513902088984,0,9,1 -15226,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.82465994730592,26.0725834381122,1,20,1 -15227,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4967798721045,21.7826014817881,0,8,1 -15228,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3652061433531,28.2929321164231,1,16,1 -15240,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.2676180163398,25.2474768849565,0,21,1 -15244,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4217926920392,25.4422605159658,0,13,1 -15245,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.98387540434487,26.9090352314629,1,9,1 -15246,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0660128863528,28.0115581984622,0,8,1 -15252,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.022811216535,20.2478235800139,0,7,1 -15253,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.76947928080335,21.6692864858548,0,10,1 -15254,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4460782550741,26.2645517755444,1,17,1 -15256,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0826081766281,26.2519181116968,1,14,1 -15257,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2667536744848,23.7854001381631,0,7,1 -15260,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1340504831169,19.8944413996934,0,9,1 -15275,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.7381318048574,23.6638803143659,0,9,1 -15278,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0171216123272,22.4259342638659,0,5,1 -15282,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3041623677127,23.1390887656104,0,10,1 -15286,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.2333532057237,27.2012635551322,1,9,1 -15287,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.98250668053515,27.3962679078249,1,13,1 -15289,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.6558811860159,26.8774918303332,1,16,1 -15293,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4282798992936,26.8455122916473,1,19,1 -15295,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.60662587801926,26.7200675210405,1,20,1 -15297,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.57072789571248,28.7776156375786,0,14,1 -15301,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.73609210993163,24.2299506326142,0,8,1 -15302,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.59331952710636,22.1113096747532,0,1,1 -15303,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.6749304048717,28.6888629813907,0,16,1 -15305,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4315877109766,27.531539354712,1,14,1 -15308,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.81388586177491,24.0786576813683,0,5,1 -15310,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.94842415070161,22.6722215679869,0,5,1 -15316,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0637207331602,24.4871468567172,1,11,1 -15317,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.67021750914864,20.5991759865791,0,6,1 -15322,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.518325493671,22.4889341713844,0,8,1 -15323,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3776167845353,23.1946243729611,0,13,1 -15325,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.1470647691749,26.9519163149378,1,14,1 -15329,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3776623418089,23.0015252721434,0,9,1 -15334,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2702942271717,22.6804404302248,0,10,1 -15335,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2116929464974,19.4977828862758,0,10,1 -15336,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0245012852829,28.0566763813835,1,19,1 -15346,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3006394521799,17.8919549215382,0,5,1 -15353,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.69056218233891,27.0574994753687,1,15,1 -15356,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1762856193818,23.1401710353999,0,6,1 -15358,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.50249068881385,26.1615936391469,1,14,1 -15371,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.61041356669739,20.2660960082014,0,8,1 -15380,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.51810502680019,21.8943984234559,0,15,1 -15383,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.70197095838375,27.792629276616,1,15,1 -15391,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.88170494092628,27.0251191207166,0,14,1 -15392,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.86928002117202,20.1967089180261,0,6,1 -15394,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.59291633893736,22.6048248910997,0,5,1 -15399,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.582200570032,22.8469682923493,0,6,1 -15401,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0358998966403,21.9748953010154,0,9,1 -15411,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.71386525128037,23.1487204411094,0,6,1 -15418,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4587056760211,26.9508688786233,1,12,1 -15421,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1261736876331,23.5721090916054,0,8,1 -15427,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3298691720702,26.322926476969,0,10,1 -15430,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.2016434690449,25.3013874430598,1,14,1 -15434,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2664827411063,20.0335693641379,0,10,1 -15441,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4073316517752,20.4875528185878,0,13,1 -15442,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.2860904620029,28.0794017398298,1,11,1 -15449,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.64272852079011,23.4645126338882,0,7,1 -15450,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3597235884517,23.4586017296704,0,7,1 -15452,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1637776081916,21.2243091752224,0,7,1 -15454,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.66508860723116,22.2534989294276,0,4,1 -15455,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4528826801106,21.6436298658568,1,8,1 -15458,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.84448036644608,28.255712016115,1,12,1 -15460,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.79640815593302,21.7695514935715,0,9,1 -15462,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.83185159880668,22.2242393876968,0,9,1 -15463,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.6121742958203,23.8291805258527,0,5,1 -15465,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1759862552863,25.0053179837628,0,11,1 -15469,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.81489478657022,26.2157700412779,1,14,1 -15470,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.74305777344853,26.069968210543,1,14,1 -15472,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.1827629371546,26.4850089062677,1,12,1 -15475,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1896987797227,20.2906300067665,0,11,1 -15477,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.76972995465621,20.2288016405747,0,10,1 -15484,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.54770511947572,23.0136426376085,0,11,1 -15489,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4484009838197,23.6492920855151,0,6,1 -15490,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0773724131286,29.4788416586056,1,13,1 -15491,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.1615323359147,29.949295835053,1,12,1 -15493,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.71802941826172,20.4003225342667,0,10,1 -15494,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.621660617413,26.4885472398495,0,14,1 -15501,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.6990666994825,25.2554357712356,1,10,1 -15504,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.59378195530735,20.8326851810886,0,10,1 -15507,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.62775802658871,21.6621612907638,0,7,1 -15508,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.63895236607641,25.1541334711748,1,7,1 -15509,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1522979973815,22.5838303522518,1,5,1 -15513,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.50525672361255,22.5228857759467,0,6,1 -15518,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0585880151484,25.5539612314115,0,13,1 -15519,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.87268957635388,21.5430322335437,0,8,1 -15520,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3873564242385,20.4283423027684,0,7,1 -15523,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.64246816560626,18.9581277342128,0,9,1 -15524,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2455836115405,18.9454340526919,0,9,1 -15525,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1328027823474,19.8679654321042,0,12,1 -15530,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.62543606339023,24.6927308218939,0,22,1 -15535,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.4267946837936,18.6405617893595,0,9,1 -15540,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.79567376198247,23.1893998203888,0,9,1 -15541,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.252472542692,19.9992177633298,0,5,1 -15544,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.98287167376839,17.1388166210832,0,13,1 -15557,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.58457228331827,21.6737684765792,0,12,1 -15562,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.53658541454934,24.1186185811392,1,6,1 -15565,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.62241981877014,26.8211324828537,1,11,1 -15566,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3914740008768,17.7699174067032,0,3,1 -15579,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.73720907163806,25.6722958841357,0,12,1 -15581,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.56183387688361,19.4023314004435,0,8,1 -15582,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3619872464333,17.409385930854,0,7,1 -15587,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3273053502198,19.8428180564917,0,5,1 -15588,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.91605544229969,21.9617632240578,0,5,1 -15590,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.9659043927677,18.2856010020885,0,6,1 -15592,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.70288020651788,19.0113943684226,0,13,1 -15594,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.3302673788276,22.2457685023654,0,16,1 -15597,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4989790567197,22.1405256462592,0,15,1 -15599,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.53569798613898,25.389681202314,0,13,1 -15609,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.98770043579862,22.380106281398,0,5,1 -15611,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1507802426349,24.5960701792816,0,9,1 -15620,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4333462321665,24.4907345650825,0,10,1 -15622,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2788693630137,19.7586796006815,0,8,1 -15623,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.51277511753142,18.6400558660872,0,4,1 -15627,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.51998567511328,20.9124946499789,0,10,1 -15631,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.88779519172385,23.5109046932436,0,15,1 -15632,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1211005738005,20.2886243511683,0,2,1 -15634,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2108299857937,23.3399683151617,0,16,1 -15637,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3086189609021,17.7042732228984,0,5,1 -15646,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.97849885816686,25.3135133388442,1,5,1 -15648,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.99544888921082,19.0954067303818,0,5,1 -15649,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.64002713537775,21.3144519567154,0,10,1 -15651,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2491271186154,19.4355910272226,0,8,1 -15652,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.4598353817128,21.6288840554844,0,9,1 -15661,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.61093254061416,24.313146189768,0,9,1 -15670,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1655950678978,23.5412502798054,0,8,1 -15673,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4950760807842,24.5142322174902,1,10,1 -15674,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.6746626147069,22.7123603074354,0,11,1 -15676,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3027466875501,20.8407521120826,0,6,1 -15683,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1537122279406,21.0042390032859,0,5,1 -15687,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.83970976178534,23.8967337661562,1,15,1 -15691,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2857541588601,23.0617165879339,0,13,1 -15692,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.86274990090169,25.5357444791729,1,12,1 -15694,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.77030057483353,20.3159920109408,0,9,1 -15695,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.62294133333489,19.4054777604194,0,5,1 -15698,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1812781072222,23.9479236793432,0,10,1 -15700,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.53373974841088,20.254017948675,0,9,1 -15701,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2911978133488,18.6093339363501,0,9,1 -15703,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2930479079951,19.1531491610581,0,7,1 -15704,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.4408097346313,18.6837603340241,0,9,1 -15709,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0681786185596,25.9414157827084,0,8,1 -15712,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4774414994754,26.6339786664209,0,12,1 -15714,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.59613963612355,23.6745107018599,0,20,1 -15716,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0767411093693,24.9551741215305,0,13,1 -15719,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.72158130956814,19.929832986587,0,6,1 -15725,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1847794817295,22.7697292816069,0,16,1 -15726,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.51709708850831,17.8873992226422,0,9,1 -15729,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.51992741273716,22.6720932148515,0,7,1 -15731,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1989338598214,25.3978508108577,1,11,1 -15732,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.81547810859047,20.3632721092528,0,6,1 -15733,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.50286341179162,24.267464046135,0,10,1 -15734,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.567323616473,22.0952657275321,0,7,1 -15735,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.68892662972212,19.5789038408868,0,10,1 -15744,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3496529578697,18.9910391247664,0,8,1 -15746,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.61073870607652,19.678065691591,0,4,1 -15749,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.62154326052405,25.9249146384876,0,14,1 -15752,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3884073137306,19.6938231777733,0,6,1 -15754,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.89008927578107,19.6603293176766,0,10,1 -15756,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.55796987749636,24.0268395453298,0,17,1 -15757,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3760298443958,18.0910314871017,0,6,1 -15759,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.51863631675951,25.0270024563888,0,10,1 -15764,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.80659272731282,19.914724443555,0,5,1 -15765,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.4353876952082,17.9121846437087,0,8,1 -15783,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.3329909851309,25.356054142207,1,11,1 -15784,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2533895040397,23.9426253920365,0,8,1 -15787,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.3316497821361,24.1134725048252,1,14,1 -15789,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.97126087313518,23.1290257719434,1,9,1 -15790,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0481552439742,19.8423206670643,0,6,1 -15799,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.74636042048223,19.5162914266957,0,7,1 -15800,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.64424764993601,25.5879939562282,0,8,1 -15801,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.78947419254109,17.7996867907514,0,7,1 -15803,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.86615062039346,24.2372423818187,0,9,1 -15811,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.78820782480761,17.8937493746905,0,10,1 -15812,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.89368569804356,25.6640817652415,0,15,1 -15814,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.6444595484063,22.7007474343444,0,16,1 -15815,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1318643672857,16.3193115389726,0,9,1 -15819,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.56338980537839,19.1140775890454,0,8,1 -15820,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4690283080563,26.0539502985192,0,13,1 -15821,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4059962304309,24.4484234136604,1,7,1 -15824,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.175470897695,25.3520437164243,1,11,1 -15825,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.69538365420885,19.447492998978,0,6,1 -15832,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.57826472399756,26.3920665841414,0,11,1 -15833,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.68719836371019,20.5843604721288,0,8,1 -15835,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4740636195056,22.5031442909482,0,16,1 -15838,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1565523415338,27.8745100282314,1,12,1 -15844,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.92823978234082,24.3508301615659,1,12,1 -15848,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.70587609452195,23.1274019308755,1,7,1 -15858,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.82190075539984,21.8202097069375,1,14,1 -15862,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.184379236307,24.4374473700162,1,9,1 -15864,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.54537802818231,23.7014887044078,1,11,1 -15865,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.97981766145676,15.6514840237829,0,6,1 -15871,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.87324530258775,24.4327119689359,1,13,1 -15874,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3512925908435,19.863046338148,0,4,1 -15877,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3255521852989,22.3595514227531,0,4,1 -15878,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.63504685554653,19.61989437027,0,9,1 -15881,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4759381429758,25.5492287779671,1,12,1 -15882,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.4115612253081,21.685614162767,0,2,1 -15884,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.62353474926203,17.6130891712626,0,7,1 -15885,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.50400221324526,27.2002190099681,0,9,1 -15886,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.3006857922301,23.3316715318277,1,10,1 -15888,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.5723063480109,19.8536611905591,0,3,1 -15890,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.82836704305373,20.112533661013,0,11,1 -15891,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.74538329103962,24.312098953018,0,6,1 -15892,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.54846658906899,24.8364576467765,0,7,1 -15901,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.94020375981927,25.8404029972473,0,12,1 -15902,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1024128289428,16.5903738377236,0,1,1 -15903,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.83322262973525,20.7517577994827,0,5,1 -15911,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0473891273141,17.5271603364898,0,6,1 -15917,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2229402612429,20.1074186605913,0,5,1 -15919,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2761691808701,23.8601625944566,0,12,1 -15920,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.4180097531062,19.7672233487116,0,6,1 -15927,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.81775562744588,23.6801831511793,0,11,1 -15928,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.88060015486553,27.6725709287073,0,11,1 -15929,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.75173190096393,19.5002425963356,0,8,1 -15932,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.77753795473836,24.5614443310367,1,19,1 -15941,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0288955112919,16.2150224822361,0,6,1 -15942,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.93263762351125,19.1356442132457,0,10,1 -15944,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.86878420226276,20.327519823886,0,7,1 -15953,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.7705647314433,24.8383234996011,0,7,1 -15954,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2688260870054,18.4195407226348,0,8,1 -15955,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.73316216422245,17.7735278882577,0,8,1 -15964,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2940757528413,23.9875272318582,0,11,1 -15967,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.89367641624995,19.9718329211072,0,8,1 -15971,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.59455039910972,17.0083216285191,0,6,1 -15972,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1248102525715,24.6409622027881,1,7,1 -15979,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.066800796194,17.8724242469612,1,9,1 -15981,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.54670208413154,24.9697401215647,0,11,1 -15986,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1586539763957,19.7205564925133,0,8,1 -15987,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2317710209172,26.0676430719654,0,12,1 -15988,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.53487428626977,19.7805421779672,0,4,1 -15990,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.91368785058148,24.8187344592245,1,12,1 -15991,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.9473961899057,21.1551838715033,0,7,1 -15992,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.72982009057887,27.1194850671044,0,9,1 -15993,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.73053576052189,17.311867818865,0,8,1 -15996,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.63638625666499,24.8749603435431,1,16,1 -15997,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2958001571242,18.2342447909244,0,12,1 -16007,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.59586868947372,19.4756541994807,0,3,1 -16008,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1427401574329,20.4463262122807,0,6,1 -16011,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0669765381608,22.894862418279,0,9,1 -16016,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.91340484167449,21.1401643538544,0,7,1 -16021,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.52349502639845,24.1645124255328,1,7,1 -16024,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.79486521473154,20.5304559454078,0,9,1 -16025,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.139478204539,21.3293669356417,0,8,1 -16028,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.96307006245479,22.3107410135977,0,6,1 -16033,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4436118726153,26.0389679762502,1,13,1 -16034,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.54051039670594,19.8554487970786,0,7,1 -16036,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.0297927283682,26.8994490223505,1,16,1 -16039,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2814115022775,25.3003042391397,1,10,1 -16040,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.81335432874039,18.6119404140273,0,5,1 -16042,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.71821555658244,18.238620038366,0,8,1 -16047,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2874772369396,25.8501956653465,0,16,1 -16048,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2606588604394,24.665180189094,0,10,1 -16051,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.1068368235137,20.0349141757448,0,6,1 -16053,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.0613206066191,23.6211536269541,0,15,1 -16054,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.52638126863167,24.8527119798283,1,17,1 -16057,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3563473096583,20.0897787569944,0,9,1 -16061,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.50827326672152,25.3847684942826,1,9,1 -16062,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.75662146322429,21.2377350404706,0,3,1 -16065,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.9319158217404,24.9072929520037,1,15,1 -16066,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4262555148453,23.9744372223134,0,17,1 -16067,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3849900271744,22.8688756011471,0,3,1 -16068,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.56117364089005,25.5740270926415,1,17,1 -16070,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.50725193973631,20.2252728011592,0,10,1 -16083,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3585971733555,23.9757639523951,0,7,1 -16085,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2390162616502,19.7941721079579,0,5,1 -16087,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1247067244258,27.4287651806845,0,19,1 -16090,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4382076538168,22.0574255603244,0,11,1 -16095,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.7934734262526,22.4708568755559,0,5,1 -16096,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.58610322722234,23.6742901459891,0,5,1 -16099,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.52126151043922,22.9658378109089,0,20,1 -16100,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2657512729056,28.1883528889895,0,15,1 -16101,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1129514125641,25.6979424523144,1,10,1 -16102,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2522952025756,25.2314363615401,1,16,1 -16103,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.9431962701492,28.0349333486526,1,17,1 -16105,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.53866500617005,27.1065821226993,0,14,1 -16110,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.70350971678272,21.6899444339527,0,14,1 -16111,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.75754772964865,25.7357841820189,1,9,1 -16114,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.93136006244458,20.3059275904483,0,6,1 -16117,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.3642553137615,26.3472166990745,1,11,1 -16119,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4624025425874,24.5274914600821,0,13,1 -16122,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3307750897948,20.003383795598,0,11,1 -16128,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.64052236638963,26.1248306082444,0,14,1 -16130,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0721344985068,19.9970188651744,0,8,1 -16131,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.63116840505973,19.5870865004022,0,8,1 -16132,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0205130986869,18.3363892464057,0,8,1 -16136,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.55754972412251,19.3433108194573,0,11,1 -16139,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.0925927171484,25.6397927673859,0,18,1 -16147,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.9596526613459,24.4497932682476,1,5,1 -16156,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2595378777478,27.3216601062682,1,14,1 -16157,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3858885904774,19.6819991868838,0,11,1 -16162,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0326535990462,20.074257968954,0,3,1 -16163,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.60313504189253,27.1713787422593,1,13,1 -16164,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.54774728161283,17.0753800555028,0,3,1 -16165,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1123743325006,25.794576080828,1,19,1 -16166,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4313887101598,25.4900297221491,1,13,1 -16167,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.3025117216166,27.3878543283631,0,9,1 -16168,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4764782518614,20.464759892977,0,10,1 -16176,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.357099941466,19.5927941178127,0,7,1 -16179,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4553941215854,27.5501455979631,1,13,1 -16180,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.53707775124349,20.0561083141667,0,6,1 -16181,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.50892741023563,25.7563057310836,1,13,1 -16186,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3097989875823,21.4048669418574,0,16,1 -16193,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.95993639435619,27.6131904533462,1,7,1 -16194,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.61476993560791,20.9683405048737,0,7,1 -16196,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4506323030218,22.9863303924362,0,4,1 -16198,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.80933679221198,26.2325751931352,1,11,1 -16200,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.93511123373173,20.9586587414784,0,8,1 -16202,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.60592110338621,20.5729120318807,0,7,1 -16203,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.62183020706289,24.837221059947,0,16,1 -16204,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2579546438064,23.4308647278834,1,18,1 -16209,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.439146460034,27.1707399824893,1,18,1 -16210,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4790902910754,24.9689928196931,0,15,1 -16214,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.55715330364183,24.3737324724316,1,16,1 -16215,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1320351427421,26.7107585737623,1,10,1 -16216,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.73475912539288,21.3629506052028,0,6,1 -16219,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.8500205159653,26.5981425063174,1,12,1 -16222,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.8984696669504,20.6700022907182,0,11,1 -16223,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.79993898351677,27.2906096487995,0,16,1 -16224,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.74514941964298,26.2468997953891,0,17,1 -16225,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.94547385605983,21.3694083237548,0,14,1 -16227,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.54454024974257,22.3283444329165,0,4,1 -16230,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.72337590903044,22.4138700063173,0,7,1 -16237,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.89762284769677,20.5386962355049,0,6,1 -16240,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.9013360622339,25.191046878307,0,8,1 -16241,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.65720719890669,25.5619803560681,0,10,1 -16243,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2020227285102,20.2328980324269,0,10,1 -16247,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.81452976982109,19.5931971783368,0,8,1 -16248,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1868328973651,25.9918897979639,1,10,1 -16249,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.57832507556304,26.1039741383313,0,9,1 -16254,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.98853217088617,20.7746925844233,0,10,1 -16257,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.75033279694617,21.6753869845242,0,9,1 -16259,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.67143133189529,19.0875396563025,0,8,1 -16264,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.51777780009434,19.5662017192972,0,7,1 -16265,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.87046091398224,20.938278496515,0,7,1 -16268,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1006516434718,27.1218643513526,1,11,1 -16269,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0208835713565,19.331979050418,0,5,1 -16270,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2104602137115,21.0895838233062,0,5,1 -16272,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.78915502456948,20.677757660955,0,11,1 -16275,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.0279032350518,27.9981977218825,1,11,1 -16286,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4355845570099,27.6647321236258,0,16,1 -16288,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.74699004227296,24.5244170279161,0,12,1 -16292,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.78694444498979,25.9181074220824,0,17,1 -16297,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.9589148813393,25.1690356987134,0,10,1 -16303,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4391979903448,18.9097663583767,0,4,1 -16304,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.76850335299969,24.436839438922,0,14,1 -16305,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.64172975020483,25.8144116294248,0,12,1 -16307,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.54377792356536,27.0901424127455,1,12,1 -16308,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.84326347080059,18.1904899807019,0,6,1 -16309,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1759877004661,25.5356008604909,1,8,1 -16310,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.3852410300169,26.0159266772123,1,20,1 -16312,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.56664480199106,27.0754048285405,1,14,1 -16315,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.58479550923221,20.231080590163,0,8,1 -16332,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.55769987078384,20.2883893745842,0,14,1 -16341,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.7530632566195,26.0595337920389,1,16,1 -16343,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.51742141926661,24.1911090877832,1,24,1 -16346,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.77742458903231,28.802422483895,1,14,1 -16347,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.7490723754745,21.2092403087327,1,9,1 -16348,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.1170527157374,20.5133846902013,0,5,1 -16351,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.062152115861,26.7726896543228,1,12,1 -16353,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.75826366059482,23.2906960905388,1,11,1 -16356,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4716930091381,25.8323445704159,0,17,1 -16359,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.95186119060963,27.5116578295849,0,10,1 -16360,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4930233890191,24.888039585466,0,16,1 -16367,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4802717254497,20.4345453628373,0,10,1 -16369,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.6674301174935,25.6295057843029,1,9,1 -16370,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3041913167108,18.3774685074281,0,14,1 -16371,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.3357615780551,25.8140450308959,0,17,1 -16375,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1870568916202,26.9817394417844,1,8,1 -16377,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.73081910260953,25.5060495105415,1,19,1 -16378,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.5798952516634,24.4420062055787,0,9,1 -16379,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.90889136190526,24.8504187897342,1,17,1 -16381,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1688765317667,25.1157357315785,0,16,1 -16382,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2525955836754,21.9520954067352,0,13,1 -16385,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.94753793440759,23.5843924647619,1,15,1 -16386,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.74439395684749,21.8509130360015,0,11,1 -16389,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4879607942421,19.056925565746,0,10,1 -16393,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.89200084540062,18.997329426077,0,9,1 -16396,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.72570359287784,20.440270755228,0,7,1 -16399,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.89770663203672,21.1741830895114,0,9,1 -16402,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.3589096209034,26.604667903528,1,11,1 -16407,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.040222188225,19.4965185142847,0,8,1 -16408,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.76728085195646,24.0440948487246,0,12,1 -16409,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.62258092802949,27.2245374375653,1,14,1 -16413,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.1901167063043,21.3945414122024,0,11,1 -16414,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.55762973753735,27.091519881626,0,10,1 -16415,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.51015242887661,22.2019046906112,0,10,1 -16416,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1826996307354,25.9867665992829,0,18,1 -16418,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4156443749089,20.5096669237665,0,2,1 -16419,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2744163882453,22.0764564419234,0,19,1 -16423,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.445345121203,16.2181191399476,0,7,1 -16430,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2432628117967,21.4126190498198,0,7,1 -16437,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.58038193383254,20.7433808171899,0,9,1 -16438,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0474498104304,20.965881410311,0,10,1 -16440,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.027828508988,24.3198333554455,1,8,1 -16444,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.87941736355424,26.0392168380883,0,14,1 -16450,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4508781488985,24.7728197212019,0,8,1 -16452,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.93222722806968,21.5380276950197,0,10,1 -16453,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.87854317948222,20.8391077782007,0,8,1 -16454,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3648929574993,18.8073920796962,0,7,1 -16455,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.96452320693061,17.5096214510306,0,9,1 -16459,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.0692906440236,25.5791476149015,1,18,1 -16464,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.58468016097322,26.7485020331977,0,9,1 -16472,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.62511993316002,23.9500758051091,1,9,1 -16479,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.74589833733626,23.675833117742,0,9,1 -16483,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.79546821420081,25.6742356965714,1,17,1 -16489,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.64022786589339,23.0967437812645,1,9,1 -16490,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.96093742107041,23.0057076834217,0,8,1 -16493,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.50327735836618,26.7989743295666,1,10,1 -16494,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.72898234566674,19.6089114686885,0,6,1 -16497,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.83372667199001,21.2379478554981,0,9,1 -16498,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.84529138053767,26.8000046586288,1,21,1 -16501,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.63985716411844,21.5239132439761,1,9,1 -16508,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.73050890676677,26.0825123692291,1,11,1 -16509,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1361525536049,27.5307566600893,1,10,1 -16510,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.79092386551201,26.0111425106751,1,9,1 -16511,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.96114597399719,22.6570849893981,0,2,1 -16513,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1642911857925,26.9624413753699,0,15,1 -16514,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.84228381491266,27.1511610715987,1,9,1 -16523,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.50434640119784,18.6361727758945,0,7,1 -16527,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.73016460170038,26.5105267900706,1,19,1 -16528,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.89570723543875,21.1261580099302,0,9,1 -16532,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.72373299859464,18.1752801521471,0,7,1 -16533,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.97355722356588,22.7527265476223,0,11,1 -16537,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.63697197148576,23.8999793141531,1,9,1 -16538,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.66871822136454,20.8470175975212,0,10,1 -16539,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4062703000382,22.0570498125563,0,4,1 -16540,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2926487720106,25.4604368073879,0,13,1 -16547,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4791746023111,25.443934241028,0,15,1 -16549,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.97648291336372,23.6008359164166,0,5,1 -16550,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.55887022055686,22.4652998860006,0,4,1 -16555,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.66042431956157,24.7123325345484,0,11,1 -16556,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.0698829730973,19.0867551922191,0,8,1 -16558,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.54722638940439,18.3302819231322,0,10,1 -16560,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.51054877671413,24.6438835453168,1,11,1 -16561,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0710281003267,24.2997778329598,1,13,1 -16562,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0989149995148,24.5490676970227,1,17,1 -16563,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1719860362355,20.294882908492,0,9,1 -16566,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.79577168216929,26.2916190837943,0,15,1 -16567,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.0638838070445,21.019584023921,0,6,1 -16569,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.52052988670766,20.9570637209349,0,4,1 -16570,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.84422728884965,24.5010167382169,1,15,1 -16573,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.3862053309567,22.2696471096217,0,6,1 -16576,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.73460046062246,26.3195219029225,0,8,1 -16579,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.2992214637343,19.9484309930808,0,5,1 -16581,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1078343137633,23.2357440536843,0,8,1 -16582,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.69872134248726,26.948996729705,0,12,1 -16583,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.418675043853,26.0643516943741,1,11,1 -16585,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3138582492247,25.9021060126154,1,9,1 -16587,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.577479243977,20.3578654515366,0,4,1 -16588,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.0507288905792,18.8535380505371,0,9,1 -16592,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.82568146567792,24.9007593357299,1,19,1 -16595,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.3187219253741,21.2277451556581,0,8,1 -16606,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.51717125810683,21.2785591159583,0,4,1 -16608,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3335504790302,29.3400058607102,0,14,1 -16609,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.63284382945858,19.6499179267077,0,5,1 -16610,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.455011008773,25.7673191799341,0,10,1 -16612,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.0124757662416,18.5859576450725,0,6,1 -16613,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.75384835270233,18.9244890483427,0,8,1 -16615,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.91360039287247,20.170536337163,0,9,1 -16618,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.1567859218922,24.6892676541766,1,11,1 -16620,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.54422637610696,19.9286896983445,0,6,1 -16631,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.2671206344385,24.4571274989696,1,11,1 -16638,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.9517552528996,20.4501894293876,0,7,1 -16648,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.85349331540056,20.4114478484835,0,4,1 -16653,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1614995375276,21.6861753486467,0,6,1 -16654,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.60956536931917,19.6298144047931,0,8,1 -16660,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4388554727193,22.97113358856,1,13,1 -16661,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.1761421558913,24.6595445897981,1,12,1 -16662,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.85426653316244,19.1818749885459,0,6,1 -16667,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4673355291598,26.7265996229667,0,10,1 -16669,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.63906417484395,25.4769503577071,1,14,1 -16670,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3081174676772,24.097324296341,0,11,1 -16672,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.029918310931,18.4872929170171,0,6,1 -16673,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.1726994062774,27.6575492253058,1,7,1 -16674,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1679713325575,17.4347705457227,0,2,1 -16678,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.2536208708771,27.3920511416719,0,13,1 -16680,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.61551367584616,24.9326225961486,1,13,1 -16683,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.0703926004935,21.2607720385649,0,9,1 -16687,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.2379853576422,22.5932307729369,0,8,1 -16696,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.57766887918115,21.2659876545958,0,5,1 -16697,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4931559504475,24.8010167974457,0,10,1 -16700,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.7292560483329,26.6066921514123,1,13,1 -16702,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.2608864225913,22.7440462355416,0,10,1 -16706,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4136252810713,20.3969630021897,0,12,1 -16710,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.245960429078,18.5414073306859,0,4,1 -16713,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.67662703664973,24.9491057553997,1,18,1 -16717,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.54300370812416,20.6929340988886,0,16,1 -16718,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4152797430288,22.6484937763351,0,7,1 -16721,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3486707110424,24.0297512138718,1,9,1 -16722,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.328571285354,22.3011410160113,0,10,1 -16724,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4905312980991,19.2373212693489,0,8,1 -16726,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.3675885871053,19.4773624844987,0,5,1 -16729,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.75286029838026,25.4716446616666,0,18,1 -16731,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3212005416863,26.3498975695078,1,11,1 -16733,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.52291155885905,19.43564905986,0,8,1 -16745,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.80445674201474,25.7752190589692,1,21,1 -16747,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4696632106788,18.9082452330917,0,6,1 -16748,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.55804410437122,17.3734007710785,0,10,1 -16749,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.3023903912399,20.7518591998228,0,8,1 -16751,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.51203727163374,26.1924220978915,0,10,1 -16758,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3498504562303,26.4529327897887,0,9,1 -16759,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.0609621356707,20.4166935931571,0,10,1 -16761,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.2934200037271,17.5081880626631,0,4,1 -16764,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.80479632364586,27.3848617145547,1,19,1 -16766,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.68078803503886,19.0569390314727,0,8,1 -16770,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3172967899591,26.2750644565541,1,16,1 -16774,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4747940727975,20.797448910472,0,8,1 -16786,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3116882699542,26.2035223965293,0,12,1 -16787,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.90224662143737,24.9600805401852,0,11,1 -16790,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.56803093152121,19.8384896224459,0,12,1 -16795,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.082284640288,26.3901101697306,0,11,1 -16796,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4872651349287,26.7409746964448,1,14,1 -16797,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4457423726562,27.3981437186335,0,7,1 -16798,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.1929947414901,26.5691720609744,0,7,1 -16800,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.81715330341831,20.6935903211134,0,4,1 -16801,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.9130743490532,23.5442233215161,1,17,1 -16802,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.226882687537,24.9192190834028,0,11,1 -16811,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.96003344934434,23.9615895162695,0,16,1 -16821,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.453799830284,22.3213132418775,0,8,1 -16823,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.96732445224188,20.661824811956,0,4,1 -16825,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.56788872135803,23.4348631261678,1,17,1 -16827,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.3029406713322,18.1387771130582,0,4,1 -16829,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.0452008382417,19.210976649441,0,10,1 -16835,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.73133089765906,26.1361710596822,1,9,1 -16839,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.86173342331313,20.0107733624995,0,15,1 -16859,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3307870263234,24.8287091005247,0,18,1 -16865,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.98639609431848,25.0025453945369,1,17,1 -16868,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.72230117605068,16.4317721064272,0,7,1 -16871,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.1443613423035,24.075097114925,0,16,1 -16873,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.889685833361,25.4174296001875,1,14,1 -16877,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.77630487759598,21.5766441136198,0,5,1 -16882,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0404403593857,27.304084736988,1,16,1 -16883,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.5176100267563,18.7775104847974,0,8,1 -16884,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.94065128522925,26.458806553449,0,10,1 -16886,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3499158937484,24.568024239334,0,11,1 -16889,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.69139625458047,19.6811189243635,0,10,1 -16893,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.52075394243002,22.5702352552524,0,9,1 -16895,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.7924506533891,24.2697476893837,0,18,1 -16897,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.79188183508813,19.9824252396715,0,6,1 -16902,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.77327866666019,24.223226017592,1,9,1 -16904,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4454093349632,20.0089070292041,0,8,1 -16906,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.80116853537038,27.4559034045694,0,15,1 -16908,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.95150141022168,21.7424691330189,0,7,1 -16912,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0442208203021,25.6216935323188,0,11,1 -16913,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.97262596734799,22.1710380960553,0,8,1 -16918,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.92348057962954,26.5872130525123,1,11,1 -16920,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.50469644903205,24.3134483788831,1,16,1 -16923,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.661023841938,26.7569192608535,1,10,1 -16926,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4244167553261,25.3806042135278,0,7,1 -16927,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4167434009723,21.2196745014353,0,9,1 -16932,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.2120765012223,20.8296981388365,0,15,1 -16933,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.55463306931779,20.5562289975699,1,15,1 -16935,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4151653021108,24.8309908269575,0,11,1 -16936,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.692859681556,21.0747882594965,0,5,1 -16939,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1872562915087,20.2757503537541,0,5,1 -16940,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.1069839377888,25.9464876174929,1,13,1 -16941,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.83877602219582,22.810243855951,0,8,1 -16944,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.163391266251,24.9378530095073,1,13,1 -16945,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.72863735235296,18.8860691974496,1,9,1 -16947,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.58682465623133,26.2116893915667,0,16,1 -16949,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.65926102199592,19.9371085979493,0,8,1 -16954,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.0112106676679,20.2822601260942,0,9,1 -16956,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.83914144826122,19.1435517853448,0,8,1 -16957,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.66500858939253,18.6099586391411,0,10,1 -16959,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.96373625076376,25.7991067468762,1,16,1 -16961,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4495284007862,17.6076193295091,0,8,1 -16964,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.99351636180654,22.0347114646367,0,7,1 -16966,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4008711338975,26.2305664393187,1,9,1 -16967,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.95023237215355,20.5003008830769,0,8,1 -16968,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.967660254566,22.195581063476,0,6,1 -16971,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.0636799123604,19.8005978744654,0,9,1 -16974,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.004769960884,19.5143165710758,0,8,1 -16975,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1088880370371,19.1819377815756,0,9,1 -16981,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1891245779116,19.9731904660061,0,9,1 -16985,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.1585009249393,24.2685512850638,1,19,1 -16986,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.69968350091949,26.6520485522852,1,13,1 -16987,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.62499149143696,24.6952625299933,1,13,1 -16989,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.55698869354092,24.0062849221521,0,15,1 -16991,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.61092746816576,19.435209759229,0,5,1 -16996,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1838260826189,20.0846304703257,0,3,1 -16999,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.50538975116797,19.5587411705727,0,11,1 -17005,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.65527382097207,25.8853918769411,0,13,1 -17007,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.98058669618331,20.8652605263141,0,6,1 -17009,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.7109931120649,21.8394034829146,0,6,1 -17010,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.62864487757906,21.7822947229173,0,12,1 -17011,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.73981617880054,29.4570555341629,0,15,1 -17013,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1174764309544,20.9590637593881,0,7,1 -17015,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.1448512515053,21.5927166468357,1,12,1 -17019,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.86285388143733,25.0622723831894,1,10,1 -17020,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4485432181973,18.6753033694034,0,7,1 -17023,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.55768273468129,27.424260694223,1,11,1 -17028,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.39202594175,22.4521697310502,0,10,1 -17029,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4039074641187,19.8711224590526,0,3,1 -17030,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.57745856628753,22.5141546016629,0,8,1 -17037,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.394716443494,20.7370508146421,0,14,1 diff --git a/tests/testthat/data_files/CLUSTER/CLUSTER_SLO1.rda b/tests/testthat/data_files/CLUSTER/CLUSTER_SLO1.rda deleted file mode 100644 index b5211b39..00000000 Binary files a/tests/testthat/data_files/CLUSTER/CLUSTER_SLO1.rda and /dev/null differ diff --git a/tests/testthat/data_files/CLUSTER/CLUSTER_SLO2.csv b/tests/testthat/data_files/CLUSTER/CLUSTER_SLO2.csv deleted file mode 100644 index 2a1dc1e1..00000000 --- a/tests/testthat/data_files/CLUSTER/CLUSTER_SLO2.csv +++ /dev/null @@ -1,5564 +0,0 @@ -"idPatient","idSurgery","trtGrp","intSurgery","nDoctors","idDoctor","intDoctor","sloDoctor","nPatients","Male","age","BMI","diabetes","incid_rate","private" -5,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.62957270420156,25.3539954501111,0,10,0 -6,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.5301592759788,27.6076362932981,1,20,1 -9,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0953921033069,24.7623014764379,1,10,1 -11,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.72469524620101,24.6453159766361,1,10,1 -15,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.75391376693733,30.6597183819131,1,16,1 -19,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.1087610379327,29.9913375218143,1,21,1 -20,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.94340713019483,29.7660418559534,1,20,1 -26,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2745322457049,27.1665593782079,1,10,1 -27,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3531535482034,24.8846329871451,1,7,1 -29,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.84706276259385,24.9335998775003,1,14,1 -33,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4067137124948,25.6555620230012,1,9,1 -40,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4680438786745,25.7708633793745,0,7,1 -41,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2303840245586,29.6105930190598,1,26,1 -42,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.010696479585,26.0316938792293,0,13,1 -45,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.87824443401769,24.0373623385142,1,15,1 -48,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3085820348933,24.397270371297,1,13,1 -50,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.1241680046078,31.1766607157437,1,19,1 -52,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.124206726905,30.9241125367025,1,21,1 -53,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.54755994467996,25.4140313878685,1,12,1 -60,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4791649405379,30.7374255034045,1,22,1 -64,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2326177693903,27.6550182286005,0,25,1 -74,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4567512695212,27.320732270778,1,15,1 -78,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.70257296739146,24.9405479542059,1,16,1 -79,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4469974327367,23.0186034317501,0,11,1 -81,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.76671213842928,26.9457572299451,0,19,1 -83,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.78216817555949,23.8649167787303,0,16,1 -84,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.83200633199885,24.8495354397056,0,18,1 -86,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2603703509085,25.289563439353,0,12,1 -91,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3964416903909,24.3238849464011,1,9,1 -98,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.79214704176411,26.1934058416463,0,11,1 -100,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.91120666847564,25.9309368035777,1,13,1 -101,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4382903061341,29.5763329455758,1,20,1 -104,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3115053279325,28.5743914531841,0,17,1 -109,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0275624741334,27.5607623086401,1,14,1 -111,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0584934630897,25.5863087947265,1,13,1 -114,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2885478187818,32.5032312638512,1,14,1 -115,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.75334201194346,30.7782352452061,1,34,1 -116,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4784365417436,30.9058114038017,1,27,1 -118,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2736548683606,24.5524752330069,0,9,1 -119,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2022054188419,25.7134944548524,1,16,1 -121,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.1956611950882,31.3128300863131,1,16,1 -122,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.99043290666305,31.8169672430256,1,21,1 -123,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.72754845488816,23.2903552545146,1,13,1 -124,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3922975216992,30.0572079061144,1,24,1 -126,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0573746315204,31.3475609689157,1,21,1 -132,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.80868269386701,25.5390450376886,0,8,1 -133,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4721168412361,29.7495171729221,1,18,1 -136,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.56769518414512,25.9147618016196,0,18,1 -140,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.61152291134931,25.1013988085873,0,13,1 -143,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.499490625225,29.5721637550256,1,29,1 -154,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.54126674053259,32.0850560905348,1,23,1 -162,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.76213101739995,29.553400839955,1,18,1 -163,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.77971878368407,32.1053328366319,1,22,1 -165,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3482706514187,25.1718099825069,1,11,1 -167,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4584946306422,25.9910050260858,0,15,1 -172,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.52928406675346,28.8043231546781,1,19,1 -173,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.89965410903096,24.9478313416091,1,14,1 -174,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.57028516405262,26.4798421495357,1,13,1 -175,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0956056378782,26.8361403609185,1,14,1 -178,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.54812846379355,27.0381950332663,1,8,1 -197,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.79072331520729,25.124634398474,1,8,1 -202,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4536588382907,25.5468665990459,0,5,1 -204,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.1409731679596,26.4696794014222,0,17,1 -206,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2470994098112,22.8882704069713,1,15,1 -208,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.84867645823397,29.6070938546493,1,18,1 -211,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2420247991104,24.6375168642398,1,11,1 -212,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2507058375049,22.642386287732,0,15,1 -215,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.79796438082121,23.851105822381,0,16,1 -217,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.93504327000119,24.4863279794464,1,10,1 -218,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.7539643899072,27.5845081765591,1,8,1 -219,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0215133356396,30.8571510569216,1,22,1 -221,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2508939236868,28.486013467176,1,18,1 -223,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4346336305607,25.6979824274071,1,12,1 -231,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.72832080884837,30.859677362381,1,29,1 -239,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4519799624104,25.6394714008337,0,14,1 -240,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4779261643998,32.1570294629583,1,21,1 -242,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4743279682007,23.3323701697971,0,7,1 -245,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2747765446547,29.4691034615405,1,18,1 -246,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4171862977091,26.2404208178757,1,13,1 -249,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.76175077306107,31.4982128353351,1,21,1 -254,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3958331218455,30.2365139624345,1,12,1 -258,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.58803216996603,27.9951415298343,1,10,1 -259,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.1955348090269,30.4516285256969,1,19,1 -260,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4927445538342,27.4705013229598,0,13,1 -265,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.91609503957443,26.615385082678,1,20,1 -273,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.98700978746638,30.9581831526365,1,24,1 -278,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3919593147002,30.5222792982135,1,27,1 -279,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.432433137903,32.3394775990075,1,19,1 -280,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0899725866038,25.9490204565997,1,11,1 -281,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.1090860951226,29.5995356235653,1,21,1 -287,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.8204547453206,31.1072574301755,1,20,1 -294,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2593121442478,25.4908879053111,0,15,1 -298,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4744712912943,23.356094443918,1,12,1 -301,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0866293492727,26.2441777409192,1,11,1 -302,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3310159954708,34.6889084214865,1,26,1 -307,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4989223626908,25.4989534649519,0,12,1 -313,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.8875585028436,26.8756896319852,0,14,1 -318,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0410192485433,31.2719157338108,1,23,1 -321,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2177175485995,30.5387245870736,1,17,1 -322,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.63528981572017,31.0856762159019,1,22,1 -325,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4488075803965,25.6917387083971,1,15,1 -327,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.64789160294458,31.098211788745,1,22,1 -334,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.85162012488581,28.8926369873731,1,26,1 -336,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.82789605669677,23.1014992706681,1,17,1 -337,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.59757744288072,28.8782419601297,1,23,1 -341,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.79568574111909,29.4040167915921,1,14,1 -344,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.032906753011,28.0115734767522,1,15,1 -348,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.1830366679933,23.6419405585216,1,7,1 -351,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.58705125190318,27.7790776314555,0,8,1 -352,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.63216843083501,26.0769697554114,1,14,1 -356,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.72817798913456,30.3912965423768,1,12,1 -359,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.50347370537929,28.0303113564979,1,12,1 -360,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.80692916060798,23.7931974767588,1,17,1 -361,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.68016454507597,28.5148732876739,1,15,1 -362,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.91863271570764,27.6699989797494,1,16,1 -365,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4317526549567,30.4103443587991,1,24,1 -366,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3883028563578,28.4324790953731,1,24,1 -367,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.1885396034922,30.5771767323985,1,16,1 -369,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.76218069391325,29.3641340732596,1,15,1 -381,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.92884522606619,25.8727798708104,0,13,1 -382,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2591141790617,25.9160505229967,1,15,1 -383,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4119940567762,32.2020161517659,1,23,1 -385,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0213083010167,25.5045051241342,0,11,1 -392,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.54554177098908,25.4724518901418,0,14,1 -393,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.6681973466184,31.3754837738886,1,25,1 -396,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3315007430501,25.3895783720511,1,10,1 -399,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.1337271067314,29.5009207751171,0,20,1 -402,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.65267415717244,26.6284704102651,1,13,1 -403,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.62005028803833,31.6532886152139,1,14,1 -404,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.1131739907432,25.536495891027,0,14,1 -410,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.93676033965312,25.7282587747494,0,12,1 -412,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.99329614406452,29.5301928087676,1,23,1 -419,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.66018160898238,26.8098505752018,1,15,1 -422,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.1999793874566,28.8879501590436,1,23,1 -425,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.452669800492,31.9144110102936,1,19,1 -427,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.67050720076077,25.7966337725392,1,18,1 -430,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.92523130937479,23.7360545562682,0,9,1 -431,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3144008014351,27.6265672855874,1,14,1 -432,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4270264105871,29.3148472409442,1,26,1 -433,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.79928170260973,23.6058599976878,1,18,1 -437,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.73018727032468,26.0441887670724,0,9,1 -440,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.55316165089607,33.4256706940749,1,23,1 -441,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.315450288821,28.880751590015,1,14,1 -443,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3777628005482,25.959109849366,1,10,1 -446,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.1195299515966,31.5409000275662,1,14,1 -449,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0908165134024,30.0525137391389,1,24,1 -451,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0634233555757,30.3376890292081,1,25,1 -452,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.89181357179768,25.6570545708658,1,5,1 -454,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.71018939535134,24.9600165463409,0,9,1 -455,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2015734100714,26.2427083457046,1,19,1 -461,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2739489856176,23.1419686290206,1,16,1 -466,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2431638671551,23.9271515573062,0,11,1 -469,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.55534069635905,29.0477489681933,0,6,1 -471,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.78941417788155,25.2605247331403,1,12,1 -475,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2893600196112,26.4561683150478,1,9,1 -476,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2484367017169,24.9519878867263,1,12,1 -477,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0225004965905,29.2317340370627,1,16,1 -482,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3913483058568,30.3164687132145,1,16,1 -486,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.441381106386,29.1155237690485,1,29,1 -492,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.55935127218254,28.2789106013003,1,23,1 -494,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.89763745991513,30.8839022462629,1,29,1 -495,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0988660065923,28.98002303883,1,18,1 -503,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.71248727547936,23.9557445850665,1,13,1 -507,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.1774582823273,31.0565414601198,1,26,1 -515,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.97901166672818,28.8267216955797,1,19,1 -519,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.232997083338,28.036489350739,1,17,1 -520,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2196466915775,28.8899696496182,1,18,1 -525,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.86447497433983,28.3598579110811,1,20,1 -529,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.56146458652802,33.5577720338403,1,41,1 -534,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0192432722542,33.6927586393154,1,27,1 -535,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.3070250439923,33.5576204326665,1,37,1 -538,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.60480946185999,31.3522322132795,1,38,1 -539,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.3720281643327,33.3044419281589,1,31,1 -543,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.73859206656925,29.2903999764034,1,17,1 -545,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.3164878136013,30.8126590749172,1,35,1 -547,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.92079209513031,27.7997473007232,1,20,1 -549,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.82755616051145,28.72552379818,1,16,1 -566,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.67876569507644,34.3771932918884,1,26,1 -569,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1163261446636,28.9896758742414,1,16,1 -571,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.2757983759511,33.4635811141082,1,25,1 -576,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.96146508702077,35.8334351237978,1,26,1 -579,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.55405139666982,27.1049561728718,1,24,1 -580,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2995612395462,30.3858638376421,1,18,1 -584,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.3382406115998,33.4209330504884,1,30,1 -586,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.60319841396995,32.8644762791471,1,17,1 -589,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.99980613822117,33.7306791174202,1,25,1 -593,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4172374329064,30.4615923478217,1,20,1 -596,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.63877585041337,27.7607276758914,1,13,1 -597,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.92355511686765,32.2255032584436,1,33,1 -598,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.51406444958411,32.9015587135696,1,22,1 -600,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0048280411866,34.7724297298143,1,27,1 -601,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.59778124443255,35.8825187609307,1,36,1 -605,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.62644712254405,28.1437464210887,1,22,1 -606,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1045934662689,34.823992488415,1,24,1 -609,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.128550269641,28.7222402494128,1,28,1 -610,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.89990677777678,36.563899552989,1,36,1 -611,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.3268908143509,34.4687504394563,1,18,1 -612,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.68924075947143,34.5097529423961,1,23,1 -614,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.132873165654,24.9527160055337,1,19,1 -619,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.88818803685717,27.8183945429686,1,20,1 -621,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.63518210244365,26.9152420840463,1,20,1 -622,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.88692213222384,34.9337931887201,1,45,1 -628,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.66675298288465,30.1084330095807,1,23,1 -630,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.7395874124486,28.2451639924155,1,16,1 -635,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.57713257614523,32.6818699832744,1,26,1 -638,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.59231586917304,35.688042250896,1,30,1 -643,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.67245523235761,31.937374076591,1,22,1 -645,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.71548609784804,33.9672047252557,1,37,1 -647,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.93414908065461,33.5948693107363,1,44,1 -648,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.76014957739972,35.5138416099486,1,32,1 -655,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4726593939122,28.9763578963299,1,12,1 -656,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1825052250642,32.9474134312485,1,32,1 -659,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.3711810896639,27.4805111499959,1,16,1 -667,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0182206348982,33.8734048365378,1,40,1 -668,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.90979207935743,32.3379895423302,1,31,1 -671,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0019550931174,30.752970941012,1,23,1 -674,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.88391891424544,28.2074630423924,1,16,1 -680,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.3376936209388,31.6504757940624,1,29,1 -681,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.3045048085041,34.328636939518,1,29,1 -690,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1494245969225,31.0607968236061,1,20,1 -691,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1985290879384,29.0559134377264,1,24,1 -697,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2398367540445,28.2348420580474,1,15,1 -700,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2293825498782,27.870739298472,1,15,1 -702,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4238952603191,34.4452447648127,1,35,1 -710,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4263362942729,33.8847588422387,1,36,1 -713,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1255828363355,35.1412571545763,1,30,1 -717,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4282189658843,32.595966829293,1,25,1 -722,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1175750324037,34.8033565858854,1,33,1 -724,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.83941128640436,29.9016698746514,1,18,1 -727,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.97218913561665,28.1946518647922,1,24,1 -728,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1680498009082,34.2261679904888,1,40,1 -729,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.73690072703175,33.8256851139743,1,27,1 -730,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0394820068032,34.5236517637621,1,21,1 -731,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.2663538753986,32.7885981006656,1,30,1 -736,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4471280979924,35.0573965141231,1,33,1 -739,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.70935355499387,29.6216828210191,1,17,1 -742,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.56616511219181,28.4576262097557,1,18,1 -743,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.61077435174957,29.8650611644759,1,14,1 -746,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.68059222609736,30.8401071136228,1,16,1 -750,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1007454721257,34.8790766314839,1,30,1 -753,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.52138051064685,33.5711814397888,1,23,1 -757,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.81220870907418,28.0996413514644,1,20,1 -768,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.117492276011,29.5221292005637,1,20,1 -769,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.70494273095392,32.4064435584997,1,32,1 -770,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.97262497199699,34.4937500714858,1,27,1 -771,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.98541985428892,28.4238873471064,1,26,1 -773,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1063893509563,28.6821022512096,1,16,1 -781,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0150972162373,28.2765194318885,1,26,1 -782,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.67855252209119,29.6113999154021,1,18,1 -783,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.67529431194998,37.0153267728682,1,31,1 -788,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.52013947092928,27.1211213849469,1,19,1 -789,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.68283914308995,35.008637793248,1,35,1 -792,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.59764380007982,26.6868711677397,1,21,1 -795,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4820408758242,27.5292875126745,1,19,1 -797,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.81104297796264,35.2709816807543,1,36,1 -804,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.59974169963971,34.4169694923613,1,36,1 -805,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.94488201919012,27.3051224824541,1,18,1 -807,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0183605453931,27.9099672878512,1,15,1 -810,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.138407750288,30.6044234633918,1,24,1 -813,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4207435429562,28.0644994621899,1,20,1 -814,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1048834403045,28.1903814584112,1,16,1 -816,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.81032858951949,29.4128473040032,1,19,1 -820,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.86831428250298,30.3912738466774,1,19,1 -822,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4101570043713,28.9558175199068,1,16,1 -823,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.56339419377036,29.4085003561252,1,29,1 -832,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.2723190623801,29.8664256626233,1,33,1 -834,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.2323499638587,31.4765552277701,1,25,1 -835,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.81155349849723,31.2007611389553,1,23,1 -836,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.9961671854835,27.7992524435599,1,14,1 -844,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.342094451189,33.1774208915447,1,28,1 -845,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.99005365464836,31.7481627475506,1,22,1 -848,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.83712892513722,27.5574139862563,1,20,1 -851,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.99968832358718,29.9906178459809,1,15,1 -854,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1566491986159,35.5778009410659,1,36,1 -855,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.458937946707,31.3333675400799,1,16,1 -857,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.86821082839742,29.5149247197952,1,14,1 -859,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.96847094688565,28.6438629838984,1,14,1 -869,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0221454442944,32.2242056806824,1,15,1 -875,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2609023631085,29.848852380254,1,18,1 -878,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.65797675191425,32.1752408607692,1,31,1 -880,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.68751619406976,34.2727491215149,1,25,1 -883,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0647705462761,32.7118750151019,1,32,1 -892,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.341485083336,36.4047768084122,1,36,1 -893,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.82449238467962,33.0461472284118,1,20,1 -894,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2236591144465,29.8026130692858,1,11,1 -895,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1729603044223,34.4707007169184,1,44,1 -897,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.74718457786366,27.9593210954906,1,22,1 -903,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.91513613075949,34.8467474910373,1,29,1 -905,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.3265101115685,35.8576494471171,1,39,1 -907,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.407876243582,34.2269335099364,1,30,1 -909,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.6523859614972,33.9484681858285,1,23,1 -911,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.93697602371685,28.1039741638984,1,15,1 -918,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.8660826140549,34.8699997042219,1,29,1 -925,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.72872844012454,28.3311958026657,1,32,1 -928,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.76790133770555,34.3946834421537,1,36,1 -930,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.88694216962904,30.1444726676765,1,22,1 -931,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2669759870041,30.5558401818004,1,20,1 -941,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.68695169850253,25.7687150251751,1,24,1 -942,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.86029920424335,30.3633041731819,1,14,1 -944,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.87267681676894,27.969157442556,1,15,1 -946,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.73638106998987,30.7671253474667,1,27,1 -949,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.88798462203704,34.9499551107184,1,42,1 -951,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.86950851674192,31.6780357056483,1,29,1 -952,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.2282000950072,36.0548806267971,1,25,1 -955,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.3914789895061,34.9646208661826,1,31,1 -956,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0231030676514,29.4219764831839,1,23,1 -957,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.77400589222088,32.7120849466695,1,37,1 -959,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.312428309815,27.0684476212872,1,27,1 -961,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0825978494249,28.8297684787095,1,16,1 -962,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.60415750998072,28.9698350513673,1,14,1 -971,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.89174293354154,29.0283345399695,1,15,1 -972,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.68027962883934,30.829096647698,1,11,1 -973,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.86632591905072,28.2897900465342,1,29,1 -974,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4898989703506,35.9908231077246,1,28,1 -978,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.3995952010155,30.5632180316136,1,11,1 -981,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.2896475081798,33.2956349755027,1,21,1 -983,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.71141667314805,28.5890581757378,1,20,1 -985,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4912902733777,30.295780368352,1,15,1 -997,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2539869339671,25.984970907245,1,17,1 -999,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.72337198001333,32.5552469943989,1,27,1 -1004,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.85003417637199,35.0203190176403,1,35,1 -1005,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1848538839258,29.3679511744718,1,16,1 -1007,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.71868652966805,34.4934081707344,1,34,1 -1011,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.59957864694297,37.7440979154696,1,54,1 -1012,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.117395053152,37.1322571159059,1,47,1 -1026,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.77005228120834,35.8599767507764,1,47,1 -1027,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.67976174270734,36.890390291084,1,44,1 -1035,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0940795382485,38.7574860848026,1,47,1 -1036,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.51836578920484,36.3797215390575,1,19,1 -1038,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.122695439728,32.5559983201087,1,24,1 -1039,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4211389196571,40.2810999966383,1,43,1 -1042,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.3084217943251,37.18773259799,1,50,1 -1043,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.66658115084283,37.2183164046017,1,48,1 -1044,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1195586146787,37.0828985173112,1,46,1 -1047,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.81665904750116,37.0677739997611,1,42,1 -1057,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2433032623958,36.426622863195,1,53,1 -1058,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.78876139642671,38.415809392428,1,50,1 -1065,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4270022888668,37.3072422401937,1,45,1 -1069,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1770389925223,32.434382604114,1,31,1 -1070,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.95436236774549,33.9807202149472,1,22,1 -1071,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.52393065928482,36.2990794028009,1,45,1 -1073,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.84723243047483,33.612993141785,1,23,1 -1081,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2950778021477,33.7584164718289,1,23,1 -1083,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1167024790775,38.1443614895914,1,41,1 -1088,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1628812558483,32.2972061523433,1,30,1 -1094,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.72205942939036,32.7421510495694,1,23,1 -1096,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2683949233033,32.8530007808614,1,32,1 -1097,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.88877866300754,37.9536558486451,1,47,1 -1100,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4935557786375,34.1052223490375,1,20,1 -1103,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.70852882089093,38.008102781223,1,42,1 -1105,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.68912263819948,38.0307161299035,1,57,1 -1106,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.7007349433843,33.753880926767,1,29,1 -1108,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.89545508776791,38.6527405934458,1,48,1 -1111,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.52677443809807,32.0261481882731,1,21,1 -1112,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2382144459989,34.4927221587282,1,28,1 -1123,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.64901798777282,40.0438686041863,1,35,1 -1124,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1471934751607,36.639395525514,1,50,1 -1127,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.54731234139763,39.0990933712234,1,57,1 -1130,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0640943089966,39.3078679661864,1,46,1 -1135,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.88214214378968,38.5039867077586,1,46,1 -1136,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1748067506123,38.6317410542646,1,51,1 -1139,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2796077383682,39.9725978827954,1,44,1 -1140,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.60331648867577,37.0346734855632,1,45,1 -1143,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4368097838014,32.9423548471135,1,31,1 -1149,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2670222991146,33.5446679121843,1,23,1 -1155,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.63586757122539,39.7334144048023,1,38,1 -1157,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.52362544951029,36.8500372074558,1,53,1 -1158,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2273103280459,37.8757478838555,1,47,1 -1161,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.3568563105073,39.2152487293752,1,54,1 -1162,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.80950557021424,34.6612219520738,1,32,1 -1164,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.68874378572218,33.4768280839555,1,33,1 -1168,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.90166330919601,37.4254491752372,1,39,1 -1169,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2985724760219,31.0317735616468,1,34,1 -1170,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.59421522822231,32.9786791644148,1,30,1 -1177,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.302617139183,34.5373958751101,1,25,1 -1179,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.88692691549659,30.6252111716715,1,35,1 -1181,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4049401378725,37.9991368368992,1,40,1 -1183,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.0350883179344,31.7971249274042,1,28,1 -1187,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2474168487824,34.257230929141,1,26,1 -1188,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.3867943023797,41.2313880299854,1,39,1 -1189,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.86723983450793,34.392365106731,1,33,1 -1191,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.0161140118726,29.3289086550999,1,24,1 -1200,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1126252138056,30.4593220395,1,23,1 -1201,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.152159150457,30.623387697292,1,27,1 -1202,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.79591035912745,33.7085088696456,1,26,1 -1203,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.65812091482803,33.5211753285621,1,24,1 -1208,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.0443338318728,31.6557663965536,1,27,1 -1210,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3909982554615,35.8068996365056,1,37,1 -1214,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4847885216586,33.3011248226256,1,27,1 -1216,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.87782206223346,39.7991514134681,1,52,1 -1218,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2011266148183,33.0290167633032,1,27,1 -1222,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.95022679679096,40.1774675985135,1,50,1 -1223,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2339406439569,32.498354844161,1,30,1 -1227,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.56733063585125,35.2594373181728,1,17,1 -1230,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.54334001941606,36.1528114103511,1,55,1 -1236,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.88442436722107,34.7912045061414,1,29,1 -1237,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4645127598196,40.3845758721118,1,39,1 -1238,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3475851616822,33.3560051729596,1,24,1 -1239,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.68303936929442,36.2895202910695,1,47,1 -1242,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.66527627944015,39.3141489515637,1,46,1 -1247,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0497819983866,39.4448677752929,1,44,1 -1257,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4821975047234,39.5605059816077,1,67,1 -1259,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2781773572788,31.7668640677111,1,24,1 -1265,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.471698500216,31.6471857746209,1,35,1 -1266,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.5591977215372,32.5204720229935,1,17,1 -1268,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.69765291269869,30.6137081452599,1,26,1 -1270,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.621027095709,36.9822908224608,1,48,1 -1274,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3345422681887,34.1769421271329,1,30,1 -1280,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.95972452266142,37.3145464961886,1,47,1 -1282,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0604724357836,36.2780282659696,1,39,1 -1286,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2312325963285,36.0506857978088,1,43,1 -1288,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.94258417352103,33.0578855190537,1,27,1 -1290,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.90140241896734,31.9514173628088,1,34,1 -1297,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4281852475833,32.6435053100133,1,30,1 -1298,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2315385940019,37.2100430962965,1,30,1 -1300,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4141070935875,37.8955961069947,1,50,1 -1303,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.68579531856813,37.1295073126265,1,48,1 -1310,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3370906803757,34.586518061619,1,20,1 -1315,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.80075782048516,37.45465682847,1,36,1 -1318,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.07206584909,34.2701624368358,1,20,1 -1320,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.57393291615881,36.1385976844584,1,44,1 -1322,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.249638751382,36.3807780742311,1,22,1 -1325,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.75264396285638,37.6962683975814,1,47,1 -1330,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0179536617361,38.1721912419463,1,38,1 -1331,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3809021783527,32.9893407301658,1,22,1 -1335,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2027167412452,41.39623514671,1,42,1 -1336,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1280402061529,38.7810125115924,1,38,1 -1339,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3952294671908,34.4969374678986,1,27,1 -1340,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.61319652339444,33.4633699627814,1,36,1 -1344,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.59254469862208,38.3086757957171,1,43,1 -1345,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.87673472613096,39.3839875110946,1,45,1 -1350,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3027678753715,31.638907146301,1,16,1 -1358,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4666635007598,38.2970721250582,1,40,1 -1359,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1055404297076,37.3499766724535,1,52,1 -1361,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.74904825398698,30.2977204499072,1,26,1 -1364,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0588029816281,39.3452992074016,1,41,1 -1366,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.90831672935747,34.5431774034332,1,28,1 -1374,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3584901753347,34.0444005607447,1,34,1 -1375,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0539498559665,40.2740692144474,1,36,1 -1377,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.86319341952913,36.8134839114638,1,32,1 -1379,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.3316037438344,38.0030224985295,1,46,1 -1388,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.56881898199208,41.1900784688515,1,36,1 -1390,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3182914846111,33.3716967749298,1,21,1 -1394,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3710612903815,33.4429132522645,1,20,1 -1396,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.3605138221756,37.2720334776949,1,33,1 -1397,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1558039430529,37.2357804819696,1,29,1 -1399,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2486779843457,38.8208056246957,1,46,1 -1400,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.82854078221135,33.5808279670352,1,15,1 -1401,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.88758556637913,38.2957323301652,1,44,1 -1403,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.0323268796783,31.1555339608511,1,32,1 -1407,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.97329937340692,31.5641330843729,1,25,1 -1410,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4758961752523,39.5434918292207,1,43,1 -1412,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.57789243757725,36.0711873732482,1,49,1 -1416,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.3573718799744,37.1353068278292,1,52,1 -1419,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.318553306628,38.0653669418529,1,40,1 -1421,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.9418388819322,38.8912191440038,1,41,1 -1422,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.59232950373553,37.5471396703697,1,49,1 -1425,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3254595331382,29.4725778006781,1,32,1 -1435,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1857968906406,38.8694772909665,1,44,1 -1441,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.69558217469603,33.3046833746376,1,22,1 -1444,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.490049873013,35.1791842987455,1,41,1 -1445,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4076371409465,33.0917082662039,1,39,1 -1446,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.431687559234,34.4764296739162,1,30,1 -1447,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.7865933412686,39.9388201514167,1,44,1 -1449,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.8400042608846,34.8347316892305,1,43,1 -1452,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1178901707754,37.6638340777775,1,43,1 -1454,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2643546706531,34.1447629922261,1,31,1 -1461,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.93520043720491,35.060743466536,1,26,1 -1462,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.79150812956505,35.1648191854129,1,22,1 -1463,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.63118946016766,36.8911010360804,1,44,1 -1465,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.9325297921896,33.2825310006728,1,27,1 -1466,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1282908553258,36.2629756542533,1,53,1 -1469,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4020718848333,37.3980018718556,1,52,1 -1473,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0766481601167,36.4270203537068,1,56,1 -1476,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1010657737497,38.0063963323585,1,49,1 -1479,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.60302071040496,32.5029806491605,1,30,1 -1484,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.88038456509821,33.8302843545253,1,23,1 -1486,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.52992520760745,37.8357663362296,1,45,1 -1490,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1129769159015,39.1208808401109,1,35,1 -1494,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.84199260105379,30.8376122649112,1,34,1 -1495,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4989537147339,35.2190443282531,1,38,1 -1496,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.89555211924016,32.0742737970656,1,21,1 -1497,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.84257941553369,32.3774617395829,1,34,1 -1505,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3220057692379,38.1803979830777,1,39,1 -1507,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.79830760555342,30.9516615477764,1,21,1 -1510,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1016485064756,32.6809557537882,1,30,1 -1511,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0147675254848,30.1344537572153,1,25,1 -1513,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1899449015036,34.3414861181496,1,42,1 -1517,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.2053242176771,33.1878390694068,1,30,1 -1519,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4042844916694,36.6810295405561,1,34,1 -1522,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.79255004436709,31.4767587194918,1,21,1 -1523,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1684209632222,34.2471898009412,1,32,1 -1525,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3628746294416,29.8451890317926,1,18,1 -1527,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0986525549088,31.2393286923004,1,19,1 -1539,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2222785407212,28.9185078342604,1,12,1 -1545,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.80361969117075,36.8934158639739,1,29,1 -1548,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0283282389864,35.379170068803,1,40,1 -1551,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3843630971387,35.7528972899367,1,42,1 -1553,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4757273902651,35.0934473817061,1,27,1 -1554,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3665680598933,29.0024926732349,1,15,1 -1555,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.51138097094372,30.2686489127273,1,10,1 -1558,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2169900378212,28.0781043091035,1,23,1 -1559,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0853183497675,36.625561904917,1,33,1 -1560,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.97637476632372,31.7553174855049,1,26,1 -1561,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.54088996164501,37.3042993740454,1,26,1 -1570,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4572001865599,33.7961085323293,1,34,1 -1575,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.96775740897283,35.3457115004686,1,15,1 -1577,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.86500695091672,29.2136856939751,1,22,1 -1581,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4066759708803,31.1981212297972,1,21,1 -1583,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0236157064792,33.4426463588272,1,28,1 -1587,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.73058358067647,35.4333077009204,1,26,1 -1589,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1088782909792,35.0513784525639,1,27,1 -1590,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.95847643073648,34.6792867588219,1,37,1 -1596,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1600002651103,29.5216379384002,1,32,1 -1597,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3022025218233,35.7358261996279,1,39,1 -1600,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.88318069372326,33.2268813608958,1,34,1 -1602,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4144326702226,30.9042889475577,1,36,1 -1605,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.83037595287897,35.3189711536665,1,35,1 -1607,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2497022885364,28.0610087727258,1,14,1 -1610,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.75679778540507,36.1457467840649,1,33,1 -1611,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.94706880953163,36.4900180797361,1,22,1 -1612,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0227643118706,36.0337048924661,1,33,1 -1618,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4564499282278,36.4178785979189,1,36,1 -1627,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.52937667258084,28.5767058324104,1,25,1 -1633,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.648898426909,35.8559057192845,1,31,1 -1643,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.95019688038155,35.7419691357133,1,33,1 -1645,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.74673929158598,34.6253239222641,1,36,1 -1649,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4794733743183,30.4232973768295,1,22,1 -1657,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0976859293878,36.7202123903532,1,40,1 -1658,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3130511769559,34.4131312639555,1,32,1 -1659,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1474637838546,34.391589756075,1,33,1 -1661,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3110407474451,34.6786351767555,1,46,1 -1665,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0878900426906,34.9786330550041,1,39,1 -1668,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3772806895431,31.7024473213934,1,43,1 -1670,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.96556637668982,34.2551652981144,1,40,1 -1673,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0771051479969,27.6916400248255,1,17,1 -1675,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.88851714227349,29.0939190173707,1,17,1 -1686,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.59140199818648,35.1944604026992,1,43,1 -1687,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.52385484729894,34.4365434429339,1,26,1 -1689,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.80522594065405,32.0647668291329,1,23,1 -1692,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2415542462841,28.5301319262908,1,20,1 -1704,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.50478511373512,35.7380976909176,1,25,1 -1705,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4531529084779,32.1580689125867,1,12,1 -1706,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.2552515927237,34.6837411776559,1,34,1 -1709,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.81918270722963,36.7766901215736,1,31,1 -1711,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.2081709499471,36.5437523583462,1,27,1 -1715,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0756442500278,32.6965864544863,1,21,1 -1721,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.68676155153662,30.0550781204895,1,20,1 -1722,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4882000444923,33.8937959037834,1,38,1 -1723,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.72505108104087,29.9322421542603,1,17,1 -1725,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.69201598572545,36.9681102925298,1,24,1 -1726,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2158643614966,28.9958926223512,1,20,1 -1727,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.2650924711488,36.0465064973225,1,31,1 -1729,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.65865131956525,33.3433550687057,1,16,1 -1731,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1218477862421,30.1349268533329,1,23,1 -1732,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1548007619567,28.8600625264226,1,17,1 -1741,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3847899707034,33.3457915713081,1,36,1 -1745,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1737757893279,34.0261684506093,1,29,1 -1747,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0261193944607,36.1510318622102,1,38,1 -1748,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3499059588648,37.4745696299886,1,34,1 -1749,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.76658764877357,34.9134500018937,1,48,1 -1754,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.11535199848,35.8718816776371,1,42,1 -1760,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3003821617458,33.6441081926543,1,32,1 -1768,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4423755183816,31.6798487664999,1,19,1 -1772,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.53910351637751,32.4096698369353,1,40,1 -1773,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.58456363133155,35.8907897813397,1,29,1 -1775,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1145954437088,35.077611373387,1,33,1 -1777,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.94078677752987,35.9550526670845,1,27,1 -1778,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1974664379377,31.494482845399,1,25,1 -1780,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.80166081921197,28.8441081245765,1,19,1 -1781,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1697867135517,28.8572952144088,1,27,1 -1785,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0182083521504,33.6644378104267,1,31,1 -1786,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3722630464472,33.8874753487503,1,38,1 -1788,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.82670184806921,35.3514647749206,1,42,1 -1790,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.86400310276076,36.6544638651218,1,38,1 -1791,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.63095741462894,34.2317263381176,1,25,1 -1795,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.81423582066782,30.732766106741,1,29,1 -1802,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1285668059718,37.238566071244,1,41,1 -1803,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.73235905286856,33.4637426482332,1,37,1 -1805,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1734045848716,29.3644845234938,1,22,1 -1806,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.87320916424505,29.6555756236147,1,21,1 -1810,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4561770504806,35.9320240901626,1,39,1 -1812,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.94883781019598,34.9633085057755,1,34,1 -1813,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.74922892358154,29.6990613498744,1,19,1 -1814,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.88967918395065,33.4554126659629,1,34,1 -1815,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.82449908019044,35.6256809807008,1,34,1 -1816,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.379948845366,35.1687316965123,1,42,1 -1817,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.58205354679376,32.0341171003886,1,20,1 -1821,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0901956681628,36.3061070475033,1,33,1 -1823,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.8141738739796,29.8831159386379,1,13,1 -1833,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.229732968146,35.1686234956073,1,26,1 -1835,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3273386452347,30.7337978211681,1,21,1 -1837,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1038076402619,36.5572208732352,1,32,1 -1846,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.90285024931654,28.263622363415,1,14,1 -1847,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3140589273535,34.5625672072663,1,38,1 -1852,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.93019566009752,35.3745649406444,1,26,1 -1855,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1266866174992,30.2781959382473,1,25,1 -1860,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0044043504167,35.1514316453597,1,37,1 -1861,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.69570991233923,37.633081030594,1,26,1 -1864,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.58102388866246,28.2330345006322,1,21,1 -1869,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3891804884188,32.9005575313099,1,29,1 -1874,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.95929556852207,35.0056999992883,1,33,1 -1887,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.67892507766373,34.9035007286303,1,35,1 -1895,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.99657418648712,33.6977955739574,1,32,1 -1899,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.50644680531695,36.4217500714776,1,39,1 -1904,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.7121503665112,36.3626086906561,1,23,1 -1908,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0541065980215,33.6335630645446,1,36,1 -1914,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2107030597981,29.2234086427719,1,30,1 -1920,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.73042916599661,34.8032744666631,1,40,1 -1923,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1896045194007,30.6032184386696,1,24,1 -1924,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2295475909486,31.6118058475906,1,19,1 -1929,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.51776018715464,34.7674417904069,1,32,1 -1934,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.86574123660102,35.7418566279373,1,29,1 -1936,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1066874356475,31.7157093809336,1,21,1 -1938,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.90064644115046,36.2289055724386,1,37,1 -1940,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.53458016994409,31.4133330484913,1,23,1 -1942,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.6156311025843,34.9367307181487,1,33,1 -1950,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4309309730306,27.7076725528638,1,20,1 -1957,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.83247074135579,33.9769999753239,1,34,1 -1963,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2078277675901,30.2762639815432,1,21,1 -1964,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.84488111035898,33.9857067489136,1,32,1 -1973,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.83155973721296,30.5144173170945,1,23,1 -1976,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1104350991081,29.7334836776685,1,11,1 -1978,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.76496565504931,35.2868990208601,1,25,1 -1985,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4557692289818,33.1654077105757,1,29,1 -2002,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1327178564388,32.9754536590775,1,32,1 -2007,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.8182148761116,33.6577308938398,1,23,1 -2010,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.53375496622175,32.3494870703715,1,19,1 -2013,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.71965484460816,35.1010019415797,1,19,1 -2018,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.88411323959008,33.8284600318171,1,26,1 -2021,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.44042167929,35.524510762073,1,32,1 -2022,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.86759598413482,29.5437543265047,1,21,1 -2023,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0920462792274,34.1022854792693,1,19,1 -2028,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0398841679562,31.6174109158733,1,28,1 -2037,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.449185075704,28.2224422213179,1,17,1 -2039,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.78744393633679,33.8895320277898,1,34,1 -2043,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.51869067875668,27.120017877823,1,19,1 -2050,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.81808264995925,33.5586993538781,1,25,1 -2051,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.85180257749744,32.8956668734629,1,27,1 -2056,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.89088551653549,35.4945641700305,1,36,1 -2058,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.83385896706022,35.0667505897064,1,26,1 -2060,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.86853732028976,34.4855753557839,1,32,1 -2061,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.58802825352177,35.1860169671295,1,29,1 -2063,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.2942833791021,32.5078889462799,1,20,1 -2064,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4182740701362,29.6723412615654,1,19,1 -2065,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.62202830100432,26.2637213314284,1,14,1 -2067,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0841596128885,28.7516575571824,1,21,1 -2071,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.2331730646547,35.3336520685365,1,25,1 -2074,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.158677784726,32.6911003080729,1,29,1 -2075,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.70235981117003,32.4253422004363,1,26,1 -2076,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.54277776507661,32.2109480487226,1,27,1 -2080,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.94378280057572,34.3595119984801,1,31,1 -2084,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.85210344311781,33.2831541268686,1,33,1 -2092,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.95815924461931,35.1026141708247,1,35,1 -2093,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0474217303563,34.5281659258504,1,31,1 -2094,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2192243007012,29.5765872212877,0,11,1 -2099,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.64380700653419,31.2439385142887,1,28,1 -2100,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.8283948386088,29.8151788191908,1,17,1 -2101,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0071608237922,33.1701694255049,1,34,1 -2102,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.93654290493578,34.3496800321153,1,14,1 -2103,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0414900316391,32.447145895164,1,32,1 -2104,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.60210079629906,36.2686065281645,1,20,1 -2105,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.253792284755,34.725707433433,1,19,1 -2109,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.6262586095836,32.9176843165137,1,24,1 -2110,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.6165768019855,32.5677771177962,1,33,1 -2120,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.4705544966273,35.5880775755608,1,24,1 -2121,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0340424086899,32.2025986413895,1,42,1 -2123,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.87746732495725,32.4704140524226,1,26,1 -2125,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.67054505250417,35.3983137848537,1,33,1 -2130,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2714865000453,30.0013657796256,1,14,1 -2131,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.5258363194298,29.7050110675688,1,13,1 -2133,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.007511857897,27.8770928631355,1,13,1 -2142,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3448151166085,31.9227876496814,1,32,1 -2143,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.8563135243021,30.1717242342797,1,18,1 -2147,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0548881120048,32.717580024974,1,24,1 -2149,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.2935478598811,32.8803241434229,1,35,1 -2152,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.9439745254349,34.776533847869,1,24,1 -2153,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3407769419719,28.3607715453447,1,16,1 -2161,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.016399985645,28.9046621079259,1,13,1 -2163,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.93042083340697,29.3665029228683,1,24,1 -2166,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.4435743188951,32.4480067754321,1,18,1 -2169,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.85130023537204,27.3322604391929,1,17,1 -2173,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3904089073185,28.0480668244351,1,14,1 -2174,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.80223995796405,30.8175049887753,1,16,1 -2180,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0240528329741,34.0367855078778,1,32,1 -2183,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.66666078520939,33.844682106537,1,31,1 -2189,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.84602770209312,30.5162436148788,1,22,1 -2191,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.82595754205249,26.5320557911992,1,18,1 -2192,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.84419577941298,32.1261560103798,1,22,1 -2195,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.80785016249865,33.5743829526225,1,23,1 -2197,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.64553984953091,28.8935602453003,1,21,1 -2198,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.94710420747288,28.6517592149541,1,17,1 -2200,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.69867290696129,32.5213146239833,1,20,1 -2207,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.399727425538,34.4339712176818,1,35,1 -2211,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.75975239533,32.7686181040277,1,23,1 -2212,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.53619502671063,34.0336024405364,1,27,1 -2213,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.68185463105328,34.6601732290029,1,23,1 -2214,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.60614101821557,33.8653181644035,1,37,1 -2220,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.92121198028326,31.8290731656611,1,17,1 -2222,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2498979195952,26.1816802112346,1,19,1 -2228,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3690726675559,34.3379229119977,1,28,1 -2229,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.249518424971,32.4872082761156,1,20,1 -2230,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.130393585423,32.6501438167648,1,31,1 -2234,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.90760076139122,34.2263732023183,1,20,1 -2238,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.5575462852139,36.2205539753859,1,28,1 -2249,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0743018242065,27.8257500633866,1,16,1 -2250,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.72376288031228,28.2672446320949,1,13,1 -2256,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.93179692793638,32.4078315352964,1,33,1 -2259,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.68293301272206,31.5134686078984,1,29,1 -2260,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.1148969938513,28.9650988643137,1,15,1 -2261,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.57567499973811,33.2561927607596,1,20,1 -2263,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.96364386589266,32.054521434808,1,33,1 -2264,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4300709792878,28.359464489323,1,12,1 -2265,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0320078395307,27.7785634386128,1,21,1 -2272,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.73645855300128,30.840441910598,1,27,1 -2275,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.56429102364928,28.1118086253423,1,22,1 -2276,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.95976084237918,34.5600562641224,1,28,1 -2277,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1031261929311,33.3863806403162,1,19,1 -2278,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.78846664447337,33.9157622744842,1,22,1 -2290,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0578407724388,34.9610955265764,1,42,1 -2292,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.96231330069713,26.865569510092,1,15,1 -2300,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.8478542752564,29.1730150042642,1,14,1 -2301,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.60113835707307,32.174029307504,1,25,1 -2304,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1704231910408,33.4740436708972,1,26,1 -2311,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.60252220369875,27.5891946830146,1,13,1 -2315,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3389149233699,34.2892652231842,1,23,1 -2318,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.74750422057696,28.5596017905255,1,19,1 -2325,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.199310887605,26.0283764028701,1,20,1 -2329,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.53872625366785,27.7271727103415,1,16,1 -2331,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.80288308649324,29.1401865195426,1,7,1 -2334,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1502454059664,31.7069304217125,1,22,1 -2340,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3665089313872,31.6988419180581,1,30,1 -2343,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.91872020228766,26.8640603694504,1,19,1 -2345,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4871211010031,28.2302328645221,1,17,1 -2347,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.7056857009884,32.6193890684896,1,22,1 -2349,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1409924610052,34.7142119349863,1,19,1 -2351,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1977501101792,30.8739782584668,1,38,1 -2360,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4133702297695,28.9186820538614,1,27,1 -2362,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.2110271784477,30.3374707739795,1,22,1 -2365,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0271214065142,30.0283589195989,1,15,1 -2372,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3377209880855,27.0054769964594,1,15,1 -2374,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.70685895276256,30.1159382818565,1,11,1 -2377,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1634253305383,35.0347035055053,1,35,1 -2378,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.70471476973034,34.4798016517259,1,30,1 -2388,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.81991248135455,33.2768680971102,1,29,1 -2389,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0768013373017,29.1832137895944,1,20,1 -2396,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.4152423788328,30.5778065293617,1,30,1 -2397,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.1886907794978,27.9782197847318,1,16,1 -2403,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0782481553033,34.423578843778,1,28,1 -2405,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0101283635013,27.8029578479775,1,16,1 -2407,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4044386043679,26.2476935795007,1,26,1 -2412,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1256863246672,35.0295961057682,1,33,1 -2414,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2984801605344,28.1206664392336,1,24,1 -2422,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.87296711746603,29.3234735773633,0,16,1 -2425,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2058727703989,28.7310421845404,1,12,1 -2429,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.1079796100967,27.6108108951076,1,19,1 -2431,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0714255373459,33.8489129725246,1,18,1 -2434,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0391488859896,32.352602079031,1,29,1 -2437,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.048945495626,27.7068367853863,1,18,1 -2439,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.4778394401073,34.5434166294027,1,18,1 -2440,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0629237522371,32.3697626471741,1,33,1 -2441,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.58675164333545,27.9355471630672,1,10,1 -2445,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4134831614792,28.7182045623949,1,15,1 -2448,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0567565243691,29.4499812899943,1,16,1 -2453,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3995460357983,27.6173557459896,1,17,1 -2454,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.53377937083133,32.2158927192071,1,22,1 -2455,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.80364711792208,30.6416145364337,1,25,1 -2457,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.4327720582951,31.4911626934838,1,25,1 -2460,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.90272220945917,29.8702587423253,1,26,1 -2462,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.89096980495378,27.2839304262011,1,14,1 -2463,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0143686742522,30.6335074528564,1,31,1 -2464,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4548312346451,26.3949711615949,1,14,1 -2466,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4195355891716,28.858557231993,1,10,1 -2469,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.52109860535711,29.6479272080559,1,14,1 -2473,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.2674742746167,33.0612148974065,1,25,1 -2475,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.6414477659855,30.371773352417,1,14,1 -2477,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.4030536976643,32.6619972809925,1,25,1 -2485,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.55557128204964,32.8270968824283,1,33,1 -2488,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4676827935036,26.6025096410184,1,19,1 -2497,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.99398227967322,29.1985133168098,1,13,1 -2499,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4391012194101,29.2751587289915,1,13,1 -2503,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.67258902313188,29.3094568458229,1,24,1 -2504,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4613144085743,29.5021152699958,1,22,1 -2506,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.7396907962393,37.4665613863531,1,45,1 -2508,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.64187931851484,31.0830939575031,1,19,1 -2511,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4074589139782,31.4840979861691,1,21,1 -2514,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4142196655739,30.7409103022217,1,23,1 -2516,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4417066930328,33.3595797309386,1,27,1 -2517,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1271419222467,31.9044071031183,1,33,1 -2518,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.83791993907653,31.3647686366801,1,18,1 -2526,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.6006149246823,35.5562442461623,1,40,1 -2528,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2846273621544,34.3532148803869,1,44,1 -2530,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2941834044177,36.2053982288087,1,35,1 -2533,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.66977019258775,37.1610418998888,1,41,1 -2534,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.50267661712132,36.4076424356618,1,42,1 -2535,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.99831371731125,29.9169645743146,1,20,1 -2536,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.99468829249963,31.4495847549444,1,20,1 -2537,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.83719107694924,35.5343841527196,1,32,1 -2541,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.66776482644491,28.7059703189104,1,16,1 -2543,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.70266512199305,35.5508838693514,1,39,1 -2544,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2777851505671,33.306374070357,1,19,1 -2551,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2732096428517,37.535766123471,1,32,1 -2552,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.52302017947659,37.8485018567147,1,39,1 -2553,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.91144123976119,35.679636755519,1,48,1 -2556,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.6860807039775,30.3793375621785,1,24,1 -2557,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0315400841646,36.2753456124917,1,21,1 -2558,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.55573091143742,36.9474083832338,1,34,1 -2561,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.70634406106547,29.8154160465265,1,23,1 -2564,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0463207736611,34.2526291552456,1,30,1 -2565,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.92679870245047,34.8534198981793,1,43,1 -2566,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.78164467355236,36.8288669165011,1,36,1 -2567,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.63317691418342,31.986015093727,1,30,1 -2570,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.0579516254365,31.8859913438806,1,26,1 -2571,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.93741329130717,29.8285932654936,1,22,1 -2576,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2023136967327,35.2527492375123,1,33,1 -2579,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.8599155114498,30.7107846385853,1,29,1 -2584,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.91099619981833,30.742309064091,1,20,1 -2585,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.98075611027889,37.5702056650242,1,31,1 -2586,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1888974029571,31.5660441923704,1,22,1 -2587,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2550590625033,30.3610759132342,1,12,1 -2589,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.3526936646085,30.5651499526877,1,19,1 -2593,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.93193008517846,36.5564079901553,1,36,1 -2597,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.64360791235231,35.8272425533292,1,36,1 -2606,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.5019585180562,31.5700148427234,1,25,1 -2609,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.53489072551019,30.4328731829759,1,27,1 -2611,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.7729599098675,31.5437944605408,1,22,1 -2615,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.91881573805586,32.1004358411352,1,20,1 -2617,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2884475386236,31.0044609697544,1,20,1 -2622,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4390628347173,37.1677743965505,1,34,1 -2626,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1007190966047,32.0130033416571,1,22,1 -2628,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4785228301771,32.2149794153464,1,26,1 -2629,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.0023986191954,31.7508244905807,1,32,1 -2631,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0577239557169,36.3518965561626,1,24,1 -2641,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.93406272353604,31.1905149327096,1,26,1 -2642,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.8915287158452,36.6676393571993,1,36,1 -2644,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2733848053031,32.1621250597959,1,20,1 -2649,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.87836423749104,33.3353071023475,1,26,1 -2651,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2062146773096,31.6356861550826,1,24,1 -2658,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2222261847928,34.5499614575186,1,35,1 -2666,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.1119266846217,35.0335422789537,1,38,1 -2670,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2142694888171,30.4991274369109,1,18,1 -2672,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.87097322498448,32.0176051154083,1,27,1 -2675,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1761784991249,35.1643515082383,1,23,1 -2676,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.66611890285276,33.0411561228217,1,22,1 -2678,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.8447446199134,31.9862954384985,1,21,1 -2681,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2955518141389,35.4645704494707,1,32,1 -2691,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2368643307127,35.4500906250503,1,33,1 -2694,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4492423462216,38.4931584304367,1,34,1 -2701,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.68975077825598,33.9797144973337,1,28,1 -2703,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.263915065676,32.5226766011501,1,26,1 -2704,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1333977004979,30.6263940458499,1,21,1 -2712,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.79612848930992,36.5148789711987,1,35,1 -2715,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.72021041088738,35.9560386013749,1,30,1 -2718,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.92889615055174,36.0091814344843,1,40,1 -2719,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.50636069732718,33.6100656382856,1,22,1 -2720,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.54958150302991,32.3853264784068,1,32,1 -2728,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.59890472632833,37.5781643470107,1,31,1 -2733,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.68571843882091,29.9190697473695,1,36,1 -2737,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.72400600393303,35.9201946509365,1,23,1 -2738,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.99870715127327,30.2892267375777,1,30,1 -2740,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2806110146921,32.3287995028408,1,17,1 -2741,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.99926510290243,32.4716751210153,1,26,1 -2743,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.9432568072807,32.3965200960276,1,25,1 -2744,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4587825674098,30.5840503559587,1,24,1 -2747,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0046251132153,36.0052501029133,1,32,1 -2749,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.66818382940255,30.6783127423285,1,23,1 -2751,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.3590892041102,32.9541730742232,1,48,1 -2753,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.396129718516,28.6570831791056,1,25,1 -2754,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.88247267552651,35.3802713449903,1,43,1 -2755,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.545861979248,38.4427414588072,1,41,1 -2756,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.0849798298441,30.0406769613147,1,21,1 -2757,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2063164766878,35.3587532832622,1,40,1 -2758,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2803080573212,31.7667210866414,1,42,1 -2762,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.92456262558699,34.6288826534504,1,36,1 -2763,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4387996417936,28.1973191340579,1,18,1 -2765,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.94418701948598,30.9491614924753,1,18,1 -2776,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.3136898500379,36.6459567634381,1,41,1 -2778,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.92942689545453,30.8097198488761,1,26,1 -2780,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4558472437784,32.9212845064201,1,51,1 -2781,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0701568692457,36.0573419254872,1,48,1 -2782,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.59913324238732,33.2574477512553,1,45,1 -2783,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.1589566504117,35.8360615926294,1,32,1 -2787,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4711214806885,38.1660354662256,1,45,1 -2789,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.9502242829185,35.1227494524986,1,30,1 -2792,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.96549231302924,33.7136240405904,1,46,1 -2794,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.56079226452857,38.3965475147547,1,37,1 -2805,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.59769250219688,31.4584012695477,1,24,1 -2807,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.69563773390837,35.6128605860471,1,32,1 -2809,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.3710528807715,37.6023341278152,1,26,1 -2812,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2124180097599,31.6779322098638,1,22,1 -2815,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.587405849481,31.9763985921284,1,32,1 -2822,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.475812157616,33.4979189695294,1,15,1 -2823,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0875207555946,34.2496920641323,1,38,1 -2824,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.3311503184959,35.7120356963067,1,29,1 -2825,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.75818561809137,31.4386301007659,1,15,1 -2829,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4851929347496,36.7956478743848,1,36,1 -2832,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0416785995476,34.7422017119152,1,27,1 -2833,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.1878682866227,36.5152855437158,1,43,1 -2834,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2252489898819,32.3076801752389,1,23,1 -2835,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.67275396152399,30.4012455197025,1,20,1 -2836,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.87626579147764,32.1033390315691,1,27,1 -2837,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.70700504537672,29.6720984759205,1,13,1 -2839,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.1547016764525,34.9133227566478,1,41,1 -2840,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.94457246316597,32.9956913963144,1,17,1 -2843,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2854479199741,28.5817023927711,1,14,1 -2847,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2837000144646,31.0180208360393,1,33,1 -2851,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2516007386148,31.4941456691312,1,25,1 -2853,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1698073386215,30.0332659305388,1,24,1 -2855,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0547580274288,37.6563004484002,1,38,1 -2859,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.3807767548133,31.8497671380784,1,21,1 -2862,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.66180069535039,30.2514081563464,1,28,1 -2863,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.86208421271294,35.7868574058858,1,36,1 -2867,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.64556049904786,35.9808391768466,1,32,1 -2868,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.98120383010246,36.7262587321,1,49,1 -2873,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.3674074814189,38.5828336391802,1,32,1 -2874,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.0659968636464,30.377025246352,1,24,1 -2888,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4096321312245,37.5974242339616,1,35,1 -2893,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1139432087075,29.0745113658698,1,26,1 -2895,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1491404438857,29.0530772416376,1,18,1 -2897,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.81269525852986,36.5534001877425,1,22,1 -2898,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1375942565501,30.4327586153952,1,32,1 -2901,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.55439827777445,33.1988968580029,1,27,1 -2904,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.71928972983733,37.5118717931932,1,40,1 -2907,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.87500803777948,32.073104092556,1,28,1 -2910,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.3802937550936,35.4080852096761,1,35,1 -2914,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.3307181291748,34.7397594331974,1,32,1 -2925,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.73049458651803,34.2615681553478,1,25,1 -2930,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.95286541851237,32.3378701996271,1,22,1 -2931,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0625115693547,34.0182488312436,1,33,1 -2932,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.3719896771945,28.1962929784298,1,19,1 -2935,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.205735045718,36.2397516750121,1,44,1 -2942,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.78346073185094,36.1287337751638,1,33,1 -2943,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.96575609128922,36.7118526411488,1,38,1 -2946,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.223116409732,33.7160784387968,1,37,1 -2947,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.86896774335764,37.7132015572388,1,41,1 -2952,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.20750812185,32.4130665233458,1,21,1 -2955,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.76795406476595,34.3582594817108,1,36,1 -2956,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.8062653883826,32.4104258666254,1,23,1 -2957,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.87571936030872,29.1706008734378,1,17,1 -2958,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4519525447395,36.6779155359275,1,38,1 -2966,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.58503341698088,29.5078590041917,1,23,1 -2969,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2540863752365,31.6860519628106,1,17,1 -2970,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.55979075003415,36.8707302291196,1,27,1 -2982,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4228452634998,37.2492136202264,1,49,1 -2983,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.71253927005455,31.319456266828,1,20,1 -2988,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2019804350566,32.8236095377974,1,23,1 -2993,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.66579998331144,39.0671850257523,1,28,1 -2994,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.73888394818641,30.6397649718681,1,16,1 -2995,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.62156120175496,30.2399264219082,1,22,1 -3003,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4754164651968,35.677444738543,1,13,1 -3004,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.59294121200219,31.7113408261361,1,21,1 -3011,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.0586080763023,33.1079059035318,1,25,1 -3020,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.55014791572466,37.2257209233509,1,39,1 -3021,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.58766074269079,37.5403183590668,1,39,1 -3022,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.92785189137794,30.0078687239686,1,24,1 -3031,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.58975639450364,32.5830659568969,1,22,1 -3032,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.89445638167672,36.2677586340551,1,33,1 -3034,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.78136329795234,33.5743883884758,1,17,1 -3038,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.50699037010781,36.6582753478157,1,44,1 -3044,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2483672695234,34.55207823837,1,23,1 -3047,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.3987349024974,32.7168026351712,1,27,1 -3051,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4504864648916,39.5696688263604,1,36,1 -3052,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2777485698462,31.1886030101687,1,24,1 -3055,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.099717407953,37.5106286188565,1,29,1 -3064,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.99033866892569,33.2498414110193,1,17,1 -3065,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.72744265431538,37.0555773124875,1,30,1 -3069,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1659546024166,33.3542872615696,1,22,1 -3072,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.62886262242682,33.8334609552819,1,28,1 -3075,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.69554309826344,35.6636349935042,1,24,1 -3076,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4674232248217,37.0589823307982,1,42,1 -3079,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.56438139709644,31.4554124899304,1,25,1 -3083,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4457951965742,38.734828603331,1,41,1 -3084,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.74870648514479,33.3984515819975,1,24,1 -3089,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4376335800625,39.0931598484808,1,36,1 -3091,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4735832354054,32.8139338501614,1,30,1 -3094,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.61030257027596,31.7765751108588,1,19,1 -3103,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.8075570568908,33.9196846701359,1,17,1 -3105,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0008650321979,36.9977064634052,1,46,1 -3106,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.0444531147368,32.6755470444218,1,24,1 -3107,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.72422987408936,32.4612969714407,1,34,1 -3115,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.79608317860402,31.6510895043223,1,23,1 -3118,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.54339422867633,31.1302430179459,1,26,1 -3122,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1285938778892,35.2954701563095,1,42,1 -3123,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.74525378621183,38.7295675773565,1,44,1 -3125,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.89733190718107,32.6440591128262,1,29,1 -3129,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3876930768602,35.8848191064392,1,40,1 -3133,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.0197585856076,33.0873626224769,1,17,1 -3137,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.9962324060034,38.0976660365608,1,46,1 -3138,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.59203055757098,32.4089482075476,1,30,1 -3140,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4136980059557,36.1798964787017,1,49,1 -3141,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.91995383799076,31.8029099848177,1,23,1 -3142,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1330287260935,36.587291370476,1,35,1 -3149,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1164251836017,32.7251529576197,1,27,1 -3150,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.73068187059835,32.4250628107781,1,29,1 -3152,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4418827975169,33.5419147944856,1,22,1 -3153,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4348494422156,31.2083766476703,1,36,1 -3156,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3085988229141,38.6231406754039,1,40,1 -3159,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.76043797656894,31.7721111728357,1,32,1 -3162,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.92331756115891,36.0621767243008,1,37,1 -3176,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1758739422075,38.4356178690598,1,48,1 -3186,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0919083384797,35.9378546536902,1,36,1 -3187,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.0262954265345,33.0697775309047,1,24,1 -3191,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.97678580577485,37.4290839034528,1,48,1 -3194,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.2851052789483,36.5427073816767,1,31,1 -3201,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4971160113346,35.8877406785303,1,25,1 -3207,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4614124263171,37.9029569892601,1,37,1 -3213,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.76210669195279,32.9115112160542,1,29,1 -3214,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.57744270795956,38.9713717492489,1,40,1 -3216,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.84066540538333,37.9866147950422,1,35,1 -3225,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4692428219132,35.7206035754561,1,41,1 -3231,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.3449409762397,32.3331625747277,1,25,1 -3232,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.58185609313659,37.7935527396929,1,46,1 -3233,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.61968617560342,33.2857387518439,1,17,1 -3240,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0079510454088,36.4022108546436,1,49,1 -3241,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.53923275694251,39.5579177076315,1,36,1 -3243,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.64886356913485,35.8716261922493,1,34,1 -3246,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4653129258659,35.6339521743009,1,31,1 -3249,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4893458832521,32.8433596352373,1,30,1 -3250,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.478331167018,37.6185243763919,1,42,1 -3253,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1532905346248,36.561181070237,1,38,1 -3255,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.76850189082325,30.3776467088106,1,28,1 -3256,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0415102965198,35.220351283762,1,27,1 -3257,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.68512935005128,32.8996220248754,1,19,1 -3259,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.65047751553357,35.2543658901513,1,20,1 -3261,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4691398998257,34.2369728015698,1,25,1 -3263,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.61110564367846,31.8491032034476,1,24,1 -3265,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.61322644981556,33.2106562080859,1,27,1 -3274,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1248043850064,38.5533005175962,1,38,1 -3276,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.52502242429182,35.9170885657426,1,39,1 -3282,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.387761100661,31.3580981953215,1,21,1 -3284,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0611984874122,37.3054191577724,1,41,1 -3288,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.2016585727688,37.1531570061499,1,51,1 -3291,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.60732043115422,31.6844358638928,1,24,1 -3292,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2754550001118,34.1492255294655,1,29,1 -3295,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1852322875056,31.2261919913084,1,27,1 -3298,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3068057626951,38.4190260406701,1,45,1 -3299,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.3665569138248,32.2557777706499,1,19,1 -3300,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.2499487360474,37.9910345377954,1,37,1 -3301,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.98177829803899,35.1763109747674,1,48,1 -3302,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.96810875902884,31.2041570123287,1,22,1 -3305,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.99923059809953,32.9341560932634,1,24,1 -3308,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4376793100964,39.1785832176954,1,25,1 -3312,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2088846326806,32.294638502363,1,22,1 -3314,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3886649257038,38.4050809653093,1,47,1 -3316,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.2297092832159,38.1050633592399,1,35,1 -3317,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.60161710553803,36.0365045872869,1,36,1 -3318,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.78301851591095,32.3961357140529,1,23,1 -3319,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1703405522276,31.6292630837219,1,25,1 -3322,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2826543652918,29.6188604659484,1,21,1 -3324,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.513515193481,37.2454420139203,1,34,1 -3327,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1250540602487,32.7601039455201,1,28,1 -3333,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4070110532921,29.5045467591755,1,24,1 -3336,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.61163721047342,37.3542707238382,1,42,1 -3339,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.64093672740273,29.5109734059644,1,27,1 -3340,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.3924696128815,33.9126226121084,1,28,1 -3342,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1908200634643,31.1008150358085,1,28,1 -3345,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.3997964677401,33.6873704596948,1,27,1 -3347,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.319099257933,36.1385681453763,1,37,1 -3349,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2047779660206,32.2001286441301,1,26,1 -3353,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.51283878833055,35.2315641769851,1,47,1 -3354,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.58276599599048,32.6822580504331,1,22,1 -3356,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0355086277705,37.1088526348249,1,38,1 -3364,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0536420277786,36.4541415812963,1,43,1 -3366,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.55492801056243,37.0421894394544,1,33,1 -3367,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.54745415016077,34.5087072243704,1,23,1 -3368,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.2088376421016,35.3191626439442,1,41,1 -3369,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.74119770084508,31.3855006378211,1,20,1 -3370,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.89765810105018,33.0247269019357,1,22,1 -3372,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.64274859265424,32.7428843685028,1,24,1 -3373,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2301986790262,30.785913280726,1,25,1 -3374,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.9268155975733,38.6789018447057,1,42,1 -3375,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3758030966856,39.6753598307774,1,33,1 -3383,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4374101450667,30.0809870662012,1,30,1 -3385,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.92371517186984,36.051336867525,1,49,1 -3386,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1029269623104,39.476154057464,1,51,1 -3390,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.75958536029793,32.5551577822822,1,28,1 -3391,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1188689882401,32.0104580324807,1,20,1 -3393,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.2442074918654,38.8450926050458,1,42,1 -3400,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3261825894006,37.7645973335047,1,42,1 -3403,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.56624133186415,32.096698798625,1,17,1 -3406,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4904022386763,29.7536659126379,1,22,1 -3409,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.58310618228279,38.4188888277808,1,40,1 -3417,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.7023570376914,34.6991736207199,1,18,1 -3419,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.60275219706818,35.2034939499202,1,36,1 -3427,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.60291824978776,37.0892739050741,1,36,1 -3433,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.76617800956592,34.8050328857671,1,27,1 -3435,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3189412169158,37.9989780639197,1,37,1 -3439,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2319694696926,35.2371190540906,1,28,1 -3442,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.72217970504425,32.7071790484436,1,32,1 -3447,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.97889289911836,30.0319154576615,1,19,1 -3450,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.89390644500963,34.6990781480299,1,42,1 -3455,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1551401987672,38.7687709994997,1,49,1 -3463,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.2047694667708,37.7735740101949,1,45,1 -3471,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2081841898616,30.8657769971053,1,16,1 -3476,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.2259189442266,35.4528726180702,1,42,1 -3478,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.51700361492112,31.9462304781147,1,22,1 -3479,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.86395495501347,37.7401288928475,1,42,1 -3486,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4663175288588,36.8110594766036,1,47,1 -3489,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0232694263104,37.9400221396128,1,43,1 -3490,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.56323009217158,31.049719965449,1,26,1 -3493,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.0552067996468,34.3537530150788,1,29,1 -3494,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3089112709276,35.8783794719338,1,45,1 -3497,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4984162419569,23.3433824428542,0,10,1 -3502,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.83644935628399,26.4040370682925,1,9,1 -3505,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.386886472581,34.061237482024,1,23,1 -3510,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.52265618299134,28.906671849077,1,30,1 -3511,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0166252723429,30.3056299462509,1,30,1 -3518,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.61548586399294,29.3322691892366,1,20,1 -3520,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1644342578948,24.6136785808734,1,14,1 -3522,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1299817459658,30.4337729454317,1,22,1 -3524,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1697990673129,27.2209823491963,1,25,1 -3528,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4364437910262,22.9405581949901,0,18,1 -3533,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1409350049216,29.9590740746077,1,24,1 -3549,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.2683876939118,23.1599216501767,0,16,1 -3550,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.89793032850139,30.7881290435404,1,20,1 -3554,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.70116958976723,29.3452627340904,1,27,1 -3556,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1554787990171,28.0122684565855,1,15,1 -3559,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.56296201376244,28.2288813994432,1,29,1 -3567,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.79627952957526,30.3717130553692,1,21,1 -3570,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1152166274842,25.2098977429164,1,12,1 -3588,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.61092989239842,31.9428869996898,1,22,1 -3590,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.778899702942,32.5864201352084,1,22,1 -3591,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1653567040339,28.0055116937933,0,9,1 -3595,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0079136982094,28.5197499019907,1,17,1 -3597,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.67233277694322,30.5969592284724,1,16,1 -3602,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.99561060243286,22.1010049040159,0,8,1 -3610,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.3076918080915,25.413225377516,1,15,1 -3611,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.2847462575883,27.0441302149118,0,18,1 -3612,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.57441524206661,27.1554240002104,0,8,1 -3614,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3923203991726,31.6985078445279,1,25,1 -3619,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.99693402880803,23.9853447875502,1,11,1 -3630,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.3868727735244,26.4773451684689,1,16,1 -3633,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.79769532498904,30.5822005182204,1,22,1 -3642,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.91654145834036,24.3081591580027,1,10,1 -3649,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4537317857612,23.1845889882586,1,9,1 -3651,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.50760707212612,26.1628189112169,1,20,1 -3657,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0997263500467,24.9008658511227,1,12,1 -3661,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0006932946853,25.6340116989495,0,17,1 -3663,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.68303502583876,25.7241660316007,0,12,1 -3664,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0886645310093,28.69248284351,1,15,1 -3670,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3585869965609,32.7684743517288,1,19,1 -3672,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.72593204886653,33.4966679177538,1,23,1 -3673,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.4854875020683,30.4825197418132,1,14,1 -3675,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0986868946347,25.3012810702431,1,12,1 -3683,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0916733262129,25.1737042318618,1,12,1 -3685,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.58841461478733,21.9918051428792,1,8,1 -3686,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.82410696172155,29.7079477390635,1,26,1 -3690,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.62740434287116,28.8544186613096,1,28,1 -3691,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.58435589191504,23.9705570010934,0,10,1 -3692,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.78968196269125,31.4792134638522,1,21,1 -3695,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.63468766445294,26.0286817868667,1,13,1 -3696,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3375304643996,27.2728829084758,1,29,1 -3703,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1009262592997,25.8791299089503,0,11,1 -3705,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.148288723547,31.0051319188052,1,16,1 -3706,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.76254529086873,21.3010856219048,0,12,1 -3710,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.77939435420558,25.0239027784098,0,15,1 -3712,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.9076269865036,29.9716871655706,1,27,1 -3714,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0668624769896,31.4153132149172,1,14,1 -3716,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.3346388845239,28.7108976470427,1,9,1 -3717,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1731558861211,31.6534035015356,1,26,1 -3719,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.57925402070396,29.4979601814084,1,10,1 -3723,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.72811203286983,25.1165413933897,1,7,1 -3726,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.9515757644549,32.8748960339943,1,19,1 -3727,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.6800469851587,32.5586089799678,1,27,1 -3734,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.68554563517682,27.4051436177244,1,33,1 -3739,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.66960873431526,32.0718764427197,1,27,1 -3748,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.7314202489797,33.4481097509614,1,24,1 -3749,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0580381709151,31.8904697021646,1,14,1 -3754,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.3298448675778,26.1049740075911,1,21,1 -3755,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1491712885909,27.4436959077632,1,15,1 -3756,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1827503161039,24.1492454332248,1,11,1 -3760,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3210047041066,28.0925320346469,1,22,1 -3763,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.5845751366578,23.4351245224076,1,10,1 -3767,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.60831970814615,28.3549510087848,1,26,1 -3770,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.4656235701405,29.2857051480061,1,14,1 -3772,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.97159240138717,29.865028163481,1,26,1 -3777,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.157711133128,25.4377723652864,1,14,1 -3778,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.2171641918831,29.3797521018592,1,21,1 -3779,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1957207799423,24.8408480513275,0,17,1 -3780,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.2586517417803,24.9014839903392,1,15,1 -3782,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0126215885393,24.8004931282085,1,15,1 -3783,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.65341510251164,32.158834402659,1,23,1 -3787,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4530755961314,25.4603671121022,0,16,1 -3789,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.81810107035562,29.5930754538135,1,19,1 -3790,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.156529299682,27.6489344862749,1,8,1 -3795,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1993379273918,26.3131733012567,1,27,1 -3800,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.96657725377008,28.9464101221426,1,23,1 -3801,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.66213700571097,22.6371173891777,1,11,1 -3804,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4612198302057,24.2054424226662,1,10,1 -3806,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.96966589963995,30.5128316765745,1,18,1 -3812,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.2771356275771,30.6684225323573,1,21,1 -3813,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.67519655451179,24.3862732496712,1,14,1 -3815,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.67871419317089,32.3899008301817,1,17,1 -3819,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0421363220084,33.7993925197341,1,22,1 -3821,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.9035124136135,29.2605070014363,1,28,1 -3824,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.72398549923673,30.4980685932257,1,22,1 -3827,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.4709930252284,29.5308638983491,1,13,1 -3837,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.77096266974695,29.9106010267349,1,16,1 -3838,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.2743148019072,25.0872514181356,0,13,1 -3841,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4821554825176,24.7015259426799,0,20,1 -3844,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.90796916838735,23.3271002759434,1,11,1 -3857,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1725490374956,25.2469967255308,0,20,1 -3859,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4559809998609,26.5757946137836,0,18,1 -3860,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.88543266081251,24.06985811589,0,17,1 -3864,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0509173695464,27.5318936376877,0,11,1 -3865,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.2358481534757,29.3636735021581,1,17,1 -3867,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1297150684986,31.0082473989281,1,22,1 -3868,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.66396258235909,29.0124268647707,1,19,1 -3872,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.87944280169904,31.3748419065764,1,28,1 -3877,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.60337271448225,23.5363246917319,1,20,1 -3878,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0072556284722,29.3198915085825,1,18,1 -3883,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4291116327513,26.192223805429,0,13,1 -3885,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.88479766831733,23.0800226858619,1,14,1 -3901,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4474895098247,26.5274163564322,1,17,1 -3904,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.70753723010421,28.968366050536,1,26,1 -3905,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.84334470611066,29.4719086651464,1,21,1 -3906,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.89258292666636,26.5287574100523,1,13,1 -3908,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.193576865131,30.0859520696021,1,26,1 -3912,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.59467236604542,25.8131404433753,1,8,1 -3913,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.77506953733973,31.2637298305963,1,22,1 -3914,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.72290907776915,26.3068866551859,1,12,1 -3915,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.209900359856,32.3092604599779,1,16,1 -3918,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.97606982034631,25.2069253037858,0,11,1 -3919,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.99807252176106,29.1282686839409,1,15,1 -3923,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3503439715132,29.3379672129936,1,20,1 -3927,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.4545423125383,31.5780360795678,1,23,1 -3928,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.54898151056841,24.5110439026004,1,16,1 -3929,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3927106992342,30.9573755471449,1,18,1 -3932,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.56473927129991,29.6977379445176,1,17,1 -3933,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0334556156304,24.4632719239302,1,10,1 -3935,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.2326311678626,27.067316774891,1,15,1 -3939,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4708430944011,22.1120609640745,0,6,1 -3940,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.91520724771544,31.5667731571934,1,25,1 -3941,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1284201540984,26.1674899397148,1,12,1 -3944,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0651390214916,30.9797848495268,1,23,1 -3949,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0965708040167,25.5806203921248,1,14,1 -3953,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.4856683476828,31.6019120664197,1,24,1 -3955,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.8309857705608,31.8031345525767,1,17,1 -3960,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.3016775336582,25.3931514671788,0,17,1 -3962,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.55297213816084,30.0791673948496,1,23,1 -3964,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.59770656190813,25.8005090787142,1,10,1 -3966,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.81614287220873,24.492899719595,0,16,1 -3971,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.6703254035674,24.2079890088951,1,12,1 -3972,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.301310882438,31.4829839170925,1,26,1 -3973,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.300492411945,29.5661217779003,1,23,1 -3978,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3741530228872,31.4846029769376,1,14,1 -3983,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.65596654964611,30.1821512701233,1,21,1 -3984,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.72003313247114,30.8814664857357,1,33,1 -3989,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0852913320996,23.4859846961636,0,10,1 -3990,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0132273382042,32.2062704155875,1,22,1 -3993,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.445353936404,25.6927385888038,1,14,1 -3994,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4702524358872,26.0655860056886,1,11,1 -3997,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.51640168623999,24.8015370104913,1,15,1 -3999,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.99510579416528,29.6509517780832,1,15,1 -4000,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.60757308849134,27.7074646291805,1,31,1 -4001,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.53242282196879,25.3078546440089,1,11,1 -4003,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0260165017098,19.1541032030852,0,7,1 -4006,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.68407570128329,21.9136520927244,0,11,1 -4011,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1691675516777,27.2992884233012,0,10,1 -4013,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.77251572860405,18.5439137091818,0,5,1 -4014,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2055095210671,20.3250570843657,0,7,1 -4020,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3891599441413,19.4788809595458,0,9,1 -4022,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1770975869149,27.1115617933506,1,14,1 -4024,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.98491095216013,18.1936916406732,0,5,1 -4029,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3254354756791,19.6326362447357,0,11,1 -4030,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.85722028161399,24.9016472272135,0,14,1 -4036,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.93261253391393,18.2169598838486,0,7,1 -4037,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.439766677795,25.6701811737105,1,11,1 -4039,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2621492396574,18.310276450751,0,5,1 -4040,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.4746216412168,20.3131737618885,0,7,1 -4042,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.76091961259954,23.448085166646,0,4,1 -4043,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2466806122102,23.1307020685671,0,16,1 -4046,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.54166125389747,25.1322327954393,1,9,1 -4048,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.52491308026947,21.6341227691215,0,14,1 -4050,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.55688534816727,21.609445308932,0,5,1 -4052,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4742352839094,23.717201486699,1,6,1 -4056,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3304096674547,26.7775981025376,0,13,1 -4059,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.92211474804208,26.3940115388086,1,9,1 -4061,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2479480716866,21.001002729407,0,8,1 -4067,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.7566337052267,19.0136403897828,0,8,1 -4071,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.50471487664618,18.9651392348473,0,8,1 -4082,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.92988853342831,22.9848680508175,1,13,1 -4085,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4612603259739,26.5718594422883,1,13,1 -4096,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4635873234365,24.7612151774232,0,12,1 -4097,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.66429978562519,24.499756378028,1,9,1 -4099,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.60278654121794,21.8415109555658,0,11,1 -4100,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.71560870320536,18.591955960725,0,9,1 -4104,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.317681153072,25.7129643406647,1,19,1 -4106,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3905876909848,24.4493961812315,0,8,1 -4107,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.71018642908894,26.4549240238338,0,9,1 -4112,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.54411675338633,19.2191714040776,0,8,1 -4120,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3002927734051,23.5939676365226,0,11,1 -4126,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0333198229782,26.5371047985428,0,10,1 -4130,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.8409528916236,19.2153374684179,0,5,1 -4131,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4849249336403,24.8917808509069,1,20,1 -4135,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0020355603192,26.3820349510067,0,13,1 -4138,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.70241127419285,24.5830739184871,0,8,1 -4139,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.234679176705,17.1502289262627,0,8,1 -4142,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2969134782907,25.1324555015712,0,17,1 -4145,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3920009506401,24.9295677079343,0,21,1 -4149,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1887533089612,26.5803080949378,1,19,1 -4150,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0317481961101,23.9577371495529,0,14,1 -4154,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.77561623323709,25.5622083730437,0,9,1 -4156,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.58605038002133,20.1011397709081,0,8,1 -4161,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.89151168148965,22.3603522306017,0,13,1 -4164,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.54558678064495,19.4313594537042,0,6,1 -4170,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.65105793997645,24.0062426402757,0,8,1 -4171,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2059987743851,24.4744765603477,0,9,1 -4175,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.222829548642,23.6981232584145,1,19,1 -4176,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.92760880361311,27.0243831496511,0,14,1 -4178,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.75904803350568,20.736327215634,0,4,1 -4182,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.59625127515756,20.1295213387114,0,3,1 -4188,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0994175772648,18.1654386868714,0,10,1 -4189,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.1499634897336,21.1283675335361,0,12,1 -4193,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.51352479262277,19.4520685407911,0,11,1 -4200,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.56090377247892,24.4092356464596,1,15,1 -4205,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.80876577086747,26.3819183867969,0,13,1 -4213,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.80204525822774,23.4271543912783,0,16,1 -4218,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.89210830884986,24.6245348004843,0,8,1 -4219,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.370941943489,17.7798993855196,0,12,1 -4220,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.72395471925847,25.3210812621651,1,13,1 -4225,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.85877601220272,22.6419648957299,0,9,1 -4227,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.66355462977663,24.8788584117992,0,14,1 -4233,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.4955907971598,19.2536045916736,0,6,1 -4236,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4188717566431,25.6681246669707,0,15,1 -4237,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.72304580290802,26.7490349586881,1,11,1 -4241,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.96663001575507,23.8423055071511,1,13,1 -4247,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4173795415554,24.382900800959,1,11,1 -4251,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.80692469654605,27.7885108753383,0,10,1 -4252,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.51664063357748,19.7592393691026,0,4,1 -4256,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.89762671501376,26.7959595037244,1,16,1 -4258,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3393650131766,25.0655709847997,0,19,1 -4259,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.4581818261649,21.7732079031177,0,5,1 -4260,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.90031711314805,26.4547451562293,1,15,1 -4263,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.71494830190204,21.4477507670938,0,10,1 -4264,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.68531662924215,24.2485344559984,1,16,1 -4267,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3588242665865,18.5068432956952,0,13,1 -4271,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.57472111075185,19.1085227338092,0,12,1 -4275,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.75180169730447,18.6607430362458,0,10,1 -4288,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.71323265507817,25.907254876954,1,10,1 -4292,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.88039783295244,25.3503962890476,0,12,1 -4293,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.84230262693018,18.1502690729256,0,8,1 -4296,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.4043047945015,22.8615442975879,0,8,1 -4298,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3112897083629,16.3446996016013,0,8,1 -4302,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.68436002125964,18.4452341578635,0,10,1 -4306,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.78795842919499,21.672561572885,0,7,1 -4310,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3939104829915,24.9830585421987,0,11,1 -4316,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.85190916527063,24.8346906882398,0,13,1 -4327,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0522068690043,27.5824547047019,0,12,1 -4328,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.69895715289749,22.7526435109165,0,6,1 -4329,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.74495164048858,23.534913154571,0,12,1 -4331,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.63851149822585,20.7200299824591,0,5,1 -4334,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.59179631038569,19.2791900922972,0,5,1 -4335,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.347117864294,19.2071662836807,0,6,1 -4346,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.6910800205078,28.0017101913686,1,11,1 -4348,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.1382750736084,19.9748749991208,0,7,1 -4350,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.4596992461011,22.0780764094495,0,6,1 -4351,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.73258023685776,20.9501974211324,0,10,1 -4354,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.52050651516765,20.0813940243341,0,10,1 -4355,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0311105274595,23.4540733549526,1,18,1 -4356,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.584424699191,24.5783150523142,1,10,1 -4357,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3143058395945,20.6321128989624,0,9,1 -4358,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3032418556977,25.2747866542102,0,11,1 -4359,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1491735009477,27.003778481581,0,14,1 -4364,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.79073013574816,27.2407187975474,0,14,1 -4366,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0438700648956,20.9789823038211,0,5,1 -4367,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4478710864205,25.0700895213284,0,15,1 -4368,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2837947041262,20.4768091810333,0,7,1 -4369,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2880349836778,21.3833998415304,0,10,1 -4374,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.037132460624,21.1915314200912,0,3,1 -4375,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.50208473973908,23.3162038791713,1,8,1 -4382,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0363349737599,26.6606410159486,1,12,1 -4390,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2439221709501,19.6046484624602,0,3,1 -4391,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.17154827388,18.0991523314112,0,5,1 -4393,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.1811836753041,22.1482120640743,0,10,1 -4394,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2315270220861,23.0276260741809,1,13,1 -4395,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4153122610878,24.159779442112,0,14,1 -4398,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2472974981647,26.9158708423475,0,12,1 -4399,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.5951077984646,24.674351591097,1,12,1 -4401,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.1722825872712,19.0409181698421,0,5,1 -4403,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.58124227658845,25.7952326369185,1,11,1 -4405,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.97843975992873,17.8560030203331,0,9,1 -4414,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0638187832665,21.3742954889507,0,11,1 -4416,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3362490253057,22.325950001169,0,11,1 -4418,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.94265343272127,27.4244172848148,1,19,1 -4421,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.9770145630464,21.8291937282015,0,8,1 -4424,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.337596925674,24.6893333643651,1,12,1 -4425,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.1845840350725,19.4038866706281,0,5,1 -4431,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.98522667307407,19.4899037441354,0,4,1 -4432,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.59125596634112,27.0692132156271,0,10,1 -4433,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.57148908334784,26.1346810699813,0,7,1 -4435,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.56650828244165,22.5935000829577,0,18,1 -4439,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.4179859347641,19.6905406803455,0,13,1 -4440,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.9045040612109,26.3997362673843,0,13,1 -4442,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.4368193226401,19.3015594960495,0,11,1 -4446,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.85810643224977,19.717810028159,0,14,1 -4448,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.72858473472297,18.4950748797811,0,9,1 -4449,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.53055281075649,18.8070644571858,0,6,1 -4450,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.85079050040804,19.3501668569442,0,8,1 -4453,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.89099198160693,22.0931733768736,0,18,1 -4457,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.66420692717656,20.7121670917967,0,8,1 -4462,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.6751461639069,17.0842477753546,0,4,1 -4466,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3682101722807,19.5194260926814,0,8,1 -4477,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.4977916444186,18.4432875221908,0,6,1 -4483,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.58890604018234,25.1533092705513,0,15,1 -4485,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.4529996025376,18.7902023486584,0,8,1 -4486,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0699598134961,26.2046509159957,0,16,1 -4488,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.90662666014396,24.9075019319056,0,11,1 -4492,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.51120480149984,26.7861970458964,1,12,1 -4493,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0941485487856,26.5508247944687,0,9,1 -4494,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.73942106799223,21.5221691542979,0,9,1 -4496,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.73011133330874,25.8224532002566,1,13,1 -4499,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2442306450102,21.6218292810886,0,4,1 -4504,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.81808315357193,19.0434887093438,0,11,1 -4505,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3624361683615,26.606109686459,0,10,1 -4510,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.006381506566,20.6781904248425,0,5,1 -4511,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.9020095563028,21.6666220085608,0,4,1 -4513,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1899700781796,24.2030395969661,1,9,1 -4515,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.1162293788511,21.5356855829025,0,12,1 -4516,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.99731915281154,22.338423141645,0,13,1 -4517,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.1746826579329,21.5035794683832,0,6,1 -4522,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4451752714813,18.9560249250586,0,6,1 -4525,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.346583094215,18.8587226341284,0,8,1 -4526,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.64646141626872,20.1199365204618,0,8,1 -4528,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.75796717382036,24.4457279606366,1,5,1 -4529,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.52182799973525,29.1912960820997,1,13,1 -4539,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2036885858979,18.4745938140009,0,11,1 -4543,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.84354466106743,25.9674719445108,1,14,1 -4547,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.90713462932035,23.4418852757724,0,14,1 -4548,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.3569316072389,21.069141457205,0,10,1 -4549,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.6629483604338,19.2664804003727,0,9,1 -4550,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.1598222802859,19.2092375877474,0,9,1 -4556,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4513462788891,21.6237657592174,0,7,1 -4557,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.59065793757327,23.1481016132771,0,7,1 -4559,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.83147074189037,26.2500529779191,0,12,1 -4560,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0946196361911,17.1288951572896,0,8,1 -4564,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.82660212577321,27.2566721690792,1,10,1 -4574,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3285495231394,23.7025922114457,1,17,1 -4580,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.52913803001866,26.7892342920596,0,17,1 -4587,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.52201386471279,25.5451072142508,0,15,1 -4590,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.3578523080796,19.826846471064,0,14,1 -4593,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4310136949643,17.9005831487203,0,4,1 -4600,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2251858541276,18.6949604107833,0,5,1 -4602,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.89812766923569,19.8442300352265,0,7,1 -4606,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.996753255371,24.5272030274603,0,12,1 -4607,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1612156720366,24.5783657665781,0,13,1 -4608,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.91206794488244,25.5093185108538,1,13,1 -4611,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.361211177893,20.3762000813199,0,5,1 -4614,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.52317814156413,25.8536147006211,1,15,1 -4615,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0825908135157,24.2106065630475,0,10,1 -4616,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1216645799577,28.5813490164116,1,14,1 -4617,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.81632574019022,19.0195683767643,0,4,1 -4621,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0275717771146,26.0023340681408,1,18,1 -4623,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3220512738917,24.978617953876,1,14,1 -4626,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0855701181572,24.5993294443826,0,13,1 -4634,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.57475012098439,20.3570543099818,0,8,1 -4637,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2557735522278,25.653964517698,0,11,1 -4639,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.70753923105076,26.8231668345771,1,20,1 -4641,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.345684546046,25.45526217421,0,8,1 -4643,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.86134878546,27.0415478200981,0,14,1 -4644,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2976159921382,21.9346905508429,0,6,1 -4648,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.67500712140463,24.2372745759001,1,9,1 -4654,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2518023841549,25.6901496704278,0,7,1 -4655,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2626408899669,27.3877846094691,0,18,1 -4660,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.54983097082004,19.6586479523658,0,7,1 -4661,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.5296814639587,16.9962266059228,0,7,1 -4663,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.3588649721351,19.2543858382487,0,10,1 -4664,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0662766147871,25.7003456752624,1,9,1 -4669,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.81652935943566,27.1944001289242,1,16,1 -4671,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.84614086034708,26.6099519464499,1,9,1 -4672,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2942027843092,21.7414452508136,0,9,1 -4674,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2694250585046,19.2755562441194,0,4,1 -4675,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.69475197186694,23.1510855316205,0,11,1 -4677,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.91853990429081,24.39788057635,1,7,1 -4680,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.83318936568685,22.1290685410609,0,6,1 -4684,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.60435382905416,21.3469180102769,0,10,1 -4685,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.50596734764986,20.8125149363018,0,6,1 -4687,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.9065127146896,26.0135700926834,1,12,1 -4688,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2683569705114,19.0127236730874,0,8,1 -4695,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0303711779416,25.6641143443592,0,11,1 -4697,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.1774638949428,19.8457842878706,0,3,1 -4700,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.7589912537951,26.063362938028,0,22,1 -4701,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.63177931751125,21.2622998132072,0,6,1 -4702,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.75530271278694,26.4751123473336,0,13,1 -4703,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2076986017637,20.3947839773206,0,7,1 -4705,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.4822766066063,27.0261599401405,1,11,1 -4710,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.9118450996466,15.827048008129,0,7,1 -4711,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0805681850761,21.5327413413291,0,5,1 -4712,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.91023042611778,27.1944724498153,1,15,1 -4715,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.50699814083055,20.5191573585242,0,10,1 -4716,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.9549325290136,25.4254837865281,1,12,1 -4719,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.61280613718554,20.7479683111147,0,9,1 -4720,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.73924427945167,25.9197147355574,1,6,1 -4723,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.67533310013823,21.7240764325178,0,6,1 -4728,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1774216841441,27.3763691842165,0,13,1 -4729,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.90355391707271,26.5775447431425,1,12,1 -4730,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2835068043787,25.5098963900973,0,12,1 -4736,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.1110326137859,17.2415938981703,0,7,1 -4738,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.79891410539858,22.8524867555791,1,13,1 -4739,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.89805998234078,24.4374808550136,1,8,1 -4740,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.79089027177542,27.4787768688364,0,16,1 -4741,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.88871556194499,24.9305444854292,0,20,1 -4743,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.8140119377058,23.2436736105015,0,10,1 -4746,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3442621049471,25.496632556952,0,7,1 -4750,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.93061971059069,27.2321719147098,0,13,1 -4751,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1521491010208,23.3382298696214,1,8,1 -4752,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.4787150891498,26.1126770320766,0,16,1 -4754,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.57966638426296,20.3305109029676,0,7,1 -4758,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.77108679455705,21.3223143654167,0,10,1 -4764,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.56213956675492,21.3279643090103,0,11,1 -4765,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.3970781257376,19.3399271831995,0,7,1 -4768,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.235725373961,25.2530188289554,1,11,1 -4772,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.85137701663189,20.743327578611,0,11,1 -4778,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4726926565636,19.9921410718523,0,8,1 -4779,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.63700460991822,26.4088989452687,1,11,1 -4785,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.1573188991752,21.0687566369461,0,4,1 -4786,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2187385179568,20.099886751859,0,7,1 -4791,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.4119156287052,24.2918048334253,0,11,1 -4793,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0642102025449,19.5212758433312,0,7,1 -4795,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1783984552603,23.6481546670117,1,17,1 -4800,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.92303378111683,23.3805543325668,1,14,1 -4804,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.7224739571102,23.0666534444141,0,17,1 -4805,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.54905927367508,26.710060144087,1,12,1 -4806,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4739471522626,19.8586243817005,0,5,1 -4809,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.9813169920817,24.5051057856871,0,15,1 -4810,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0195176533889,19.7409400426271,0,8,1 -4811,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.5600600107573,22.6539220499937,0,16,1 -4813,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2934664858039,27.7206346294447,1,11,1 -4815,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.69394214660861,27.9805742328722,1,20,1 -4816,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2334920871072,19.3320240112621,0,6,1 -4819,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.56324208830483,25.4819197461749,1,14,1 -4821,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2792694771197,24.9362057993471,1,8,1 -4825,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.62731163529679,20.0047929175441,0,10,1 -4826,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.1146514613647,23.5322793447668,0,6,1 -4827,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.90202321158722,27.9256580967384,0,10,1 -4829,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0771283782087,19.1953842508556,0,4,1 -4833,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.4203061554581,25.1071024916571,0,14,1 -4835,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.59757035947405,27.3443196892673,1,12,1 -4837,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.81851079198532,26.7311645056667,1,17,1 -4843,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.042829481652,25.8747526940436,1,17,1 -4850,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2800610153936,26.4951388233098,0,8,1 -4852,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.5870867902413,19.9809042851777,0,8,1 -4853,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.025190823013,22.4564365205562,0,13,1 -4855,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1701779444702,23.9384251782054,0,15,1 -4856,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.57764906366356,20.2891547642149,0,11,1 -4863,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0642986213788,20.0197513879487,0,6,1 -4864,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.76470322394744,23.8006108807871,1,18,1 -4865,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.94257797137834,25.2739380211069,1,19,1 -4868,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.84353330265731,19.9156028698924,0,8,1 -4872,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1692995121703,24.6855866306952,0,11,1 -4873,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3786415169016,23.189451003008,0,10,1 -4874,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.95593913877383,20.3621379212564,0,8,1 -4878,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.1198527580127,20.634621720847,0,9,1 -4880,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.3342242974322,19.2305150118683,0,8,1 -4883,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.085470932303,20.4993887520847,0,15,1 -4884,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.59421453531832,20.023172203931,0,11,1 -4887,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0437293599825,20.023047576137,0,8,1 -4888,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4784943340346,19.7249099919682,0,7,1 -4893,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.444734293269,23.9698218932965,0,12,1 -4894,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.98658332857303,21.6689781890196,0,5,1 -4895,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.53386522596702,18.2752990128899,0,7,1 -4898,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.72241566237062,20.5896490422833,0,9,1 -4900,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.99047276517376,25.801418581772,1,8,1 -4901,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0967149233911,19.4071165129115,0,8,1 -4903,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.7146634995006,20.0883614719455,0,9,1 -4904,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.4369934224524,25.4288464203733,1,16,1 -4905,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0360806295648,24.2860738472388,1,8,1 -4907,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2253028540872,21.872838582182,0,2,1 -4912,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.90676032775082,26.0532457568708,1,14,1 -4914,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.8848131261766,26.5304197742861,0,10,1 -4916,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2564363228157,19.7317644602184,0,8,1 -4919,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.99610093515366,26.296046868866,1,16,1 -4920,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.13761544507,23.7335143904376,0,6,1 -4921,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0018258688506,25.3873294859064,0,9,1 -4923,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.89338879031129,19.8395703155311,0,5,1 -4928,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.9950410341844,20.7760255229763,0,15,1 -4935,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.3265879708342,23.340832806813,0,6,1 -4936,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.4147273779381,27.7602928807635,0,14,1 -4938,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0971102775075,25.3126287419047,0,11,1 -4939,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.89108809805475,27.0164313583785,1,12,1 -4942,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.4450076110661,26.871243425441,0,10,1 -4946,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.81813327223063,24.5200346837019,1,14,1 -4953,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.7435784440022,17.9959016056476,0,5,1 -4955,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.58696469967254,26.5251230857218,0,14,1 -4966,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.3593236960005,18.8840700054623,0,5,1 -4973,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.63732688128948,24.2992033775748,0,17,1 -4974,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.88136736955494,20.9035161042533,0,12,1 -4977,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.1027319140267,19.5557274965206,0,2,1 -4982,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.351408198243,26.8404643720991,0,15,1 -4986,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.3948233164847,21.9398824699717,0,8,1 -4990,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.83000166062266,20.4022012858428,0,9,1 -4991,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0859749333467,24.8713728652207,0,12,1 -4992,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0890538862441,22.9087787457207,0,7,1 -4996,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.87626290158369,20.1554731411715,0,8,1 -4997,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4111161418259,17.5990132332002,0,9,1 -5002,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.63745995308273,24.039423889253,1,15,1 -5003,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.4323134142905,23.7144583847308,0,15,1 -5005,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3430136621464,24.4472338803776,1,15,1 -5007,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.97337638447061,17.5864964151648,1,9,1 -5011,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.84378391434439,25.0536723427504,0,11,1 -5013,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.3271274105646,20.5175776638829,0,7,1 -5023,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2309371570591,25.7568647869481,0,9,1 -5025,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4172013250645,16.816336855684,0,7,1 -5026,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3246727986261,24.994118758323,0,19,1 -5032,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.76795243355446,20.009161531037,0,8,1 -5033,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2770063604694,19.6334997218079,0,11,1 -5035,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.53716731374152,26.2026184888019,0,14,1 -5044,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3547382291872,18.6848709341384,0,6,1 -5049,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0284751313739,21.4151829119448,0,7,1 -5051,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.73605983145535,24.6398779642376,1,4,1 -5054,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2811379923951,25.6556176357046,0,9,1 -5057,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4916976825334,24.4098267492983,0,12,1 -5059,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.075094021624,17.7987586004568,0,8,1 -5060,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.68759373435751,21.770768089817,0,17,1 -5063,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.89265390718356,17.706129686728,0,10,1 -5065,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1672404848505,23.5792343478757,0,11,1 -5069,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.955126990797,18.9255986896918,0,5,1 -5071,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0820660993923,21.5906731334258,0,9,1 -5078,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1728706751019,16.6538645744234,0,6,1 -5080,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.97010824852623,17.7905226736975,0,2,1 -5081,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.66864686505869,18.5225015942575,0,4,1 -5085,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.82547836261801,23.1848320404958,0,8,1 -5086,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0727790305391,22.7971809341689,0,14,1 -5087,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3616662479471,18.3827939892479,0,4,1 -5088,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.67735494137742,21.5396187978388,0,13,1 -5092,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.54619704792276,23.2159787378349,0,15,1 -5097,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.51177623122931,20.6229449824297,0,5,1 -5098,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2641861750744,20.8386702824462,0,5,1 -5104,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.82702907104976,20.7346743646007,0,7,1 -5109,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3904345403425,18.203056741253,0,5,1 -5114,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.75754117406905,25.5201642648213,0,14,1 -5115,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2439443871845,23.9926684920441,0,5,1 -5122,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4723475468345,18.7431809493863,0,1,1 -5124,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2564427661709,23.685931363525,1,10,1 -5125,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.80620927806012,24.9557102523917,0,6,1 -5128,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.55138960131444,21.784717019925,0,14,1 -5129,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.70227119070478,19.143588594349,0,5,1 -5141,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.65909631806426,24.1868664422988,0,10,1 -5144,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.82331967819482,22.6925547290778,0,9,1 -5148,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.50416888436303,23.2044697625871,0,11,1 -5153,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.55889477813616,25.3313385389899,0,8,1 -5154,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.57226271019317,17.8783254273116,0,5,1 -5155,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1870903559029,16.6485875238964,0,7,1 -5156,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.35144829005,23.3168864080736,0,11,1 -5162,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.82788254390471,24.9060731612721,0,8,1 -5164,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.99005515221506,17.6674718266047,0,8,1 -5168,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2425243530888,17.7475320902081,0,8,1 -5173,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2391328699887,19.9719492228629,0,9,1 -5174,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2957682688721,23.6901850223317,0,7,1 -5178,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1126218640711,18.4832874857436,0,5,1 -5179,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.73573075467721,17.7196298138282,0,5,1 -5180,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3487002637703,23.0591992893938,0,9,1 -5181,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2617375934497,24.0920651460506,0,9,1 -5182,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.63832673686557,17.9642090932748,0,9,1 -5183,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.86894461861812,26.8529555316363,0,20,1 -5193,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2267753097694,23.9651479635834,0,10,1 -5195,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.71297772764228,17.6858809659761,0,8,1 -5196,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.59992885612883,22.0952467257226,0,9,1 -5197,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0651127935853,18.2275539014685,0,2,1 -5199,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0502988400403,17.9214912344939,0,5,1 -5200,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.87319602631032,19.748231078929,0,5,1 -5201,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4672886470798,17.533481175652,0,5,1 -5207,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3472619398963,23.8332300468197,0,7,1 -5213,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4715637837071,25.8464026983942,0,9,1 -5214,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.91542831296101,17.9614369201165,0,11,1 -5216,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1920225846115,22.4459291880381,1,11,1 -5217,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.416595833376,16.5174706234712,0,10,1 -5219,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.875005078502,17.215029347993,0,7,1 -5225,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.62532330816612,19.7015549885232,0,6,1 -5229,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2349471538328,24.4265618735028,0,22,1 -5231,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0865070444997,18.108977648947,0,10,1 -5234,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.52519464306533,18.973503464529,0,4,1 -5236,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.7252087383531,17.2001704041479,0,8,1 -5237,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0449866713025,24.1059659470189,0,11,1 -5239,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.86608604877256,22.4375211585249,1,7,1 -5242,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0673544320744,26.0400500319634,0,5,1 -5244,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4683369605336,24.4717911301681,0,12,1 -5245,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.69468967197463,22.7690674351804,0,9,1 -5247,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.98781666648574,18.2983834661818,0,15,1 -5249,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.51947776554152,18.1860965513885,0,10,1 -5250,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.98141711484641,17.9428557662983,0,7,1 -5253,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2759615664836,18.3262823354371,0,5,1 -5255,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.65483539667912,20.9049163799145,0,3,1 -5258,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.030863071559,23.2609282697113,0,10,1 -5260,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.8178428451065,22.1403771487419,0,7,1 -5266,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.83443039655685,18.3074277204982,0,10,1 -5269,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.97101297276095,18.2577926665613,0,3,1 -5273,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1287711649202,23.3716750177712,1,11,1 -5275,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4289294003975,24.8768496555624,0,14,1 -5278,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.69617644208483,23.2387043841967,0,10,1 -5279,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2335338531993,18.3019208938218,0,9,1 -5281,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2630254046526,19.898928662922,0,9,1 -5282,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.55209668143652,23.8192591206391,0,11,1 -5283,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2273258909117,21.8422273132056,0,4,1 -5284,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2752570381854,24.9385972506432,0,15,1 -5288,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.93010281445459,19.6329177568312,0,6,1 -5291,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3869678408373,19.2923866221163,0,7,1 -5295,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.84583984897472,19.7269357192816,0,7,1 -5305,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3227992241737,18.1586735757124,0,12,1 -5308,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2936328607611,17.1021943708611,0,6,1 -5312,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2792021592613,18.5298849203219,0,3,1 -5318,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1895931269974,23.3862302175162,1,5,1 -5321,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.59005546593107,24.313565689127,0,6,1 -5322,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3965100226924,17.878232132379,0,10,1 -5326,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.227508120006,22.5734832843693,0,11,1 -5328,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.60296444687992,19.3420983924085,0,9,1 -5329,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.86189772374928,19.2249997091936,0,4,1 -5330,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1918442440219,18.4316939602171,0,7,1 -5335,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.96918170689605,24.0520059597163,0,13,1 -5336,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4390977115836,16.5361026164416,0,4,1 -5337,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.60850405856036,17.7061888316261,0,8,1 -5344,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2931982926093,20.3172332353369,0,5,1 -5352,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1157670163084,25.5877767555887,1,10,1 -5358,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.67457111692056,26.2378257356672,0,12,1 -5361,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0827453951351,21.2225092921879,0,7,1 -5369,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4426335971802,20.9449672564254,1,9,1 -5370,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1514502651989,16.8544012575454,0,9,1 -5373,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.446276925737,15.902772962793,0,5,1 -5381,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3859287656378,17.9252249470499,0,5,1 -5382,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.79768392140977,23.1073340322714,0,10,1 -5389,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.53413012437522,15.7482634743426,0,12,1 -5397,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.72308182902634,18.3841254978733,0,7,1 -5398,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.63266093842685,18.9000076567917,0,8,1 -5405,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4316333734896,15.8159381940898,0,8,1 -5406,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.57691755029373,22.640188700791,0,9,1 -5410,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.87446314957924,23.1293370264046,0,10,1 -5412,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.64218129310757,21.2333700453143,0,13,1 -5415,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.75292737153359,16.6525165633536,0,4,1 -5418,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.55155921564437,20.6349508322334,0,1,1 -5422,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1808409006335,25.6073391129178,0,7,1 -5431,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.77693617530167,20.0714412250018,0,6,1 -5434,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4552760904189,17.9992771334794,0,6,1 -5435,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.51775486557744,18.4151684113282,0,4,1 -5437,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.8744586573448,24.9470870268041,1,7,1 -5443,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.50846239319071,25.0961570494986,0,7,1 -5445,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.9002253387589,17.1756010082433,0,7,1 -5449,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.80927455262281,19.8118725161518,0,7,1 -5453,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4931468551513,19.3584756923047,0,9,1 -5454,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.182205316145,23.5994484987451,1,8,1 -5459,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.137280523777,20.5062170335949,0,4,1 -5460,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.62206464097835,18.6706176291184,0,10,1 -5466,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.81874135509133,20.974291384998,0,5,1 -5468,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.74647653778084,24.1606405953502,0,4,1 -5469,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3778256275691,23.1632808396278,0,13,1 -5474,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1937858101446,16.598563856642,0,5,1 -5475,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0288252932951,17.4542205262351,0,8,1 -5479,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.81744406721555,19.0487541329721,0,7,1 -5480,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.73775239475071,25.168887174799,0,9,1 -5482,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3451653835364,20.5157712710328,0,8,1 -5484,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1618466016371,17.0118775287306,0,12,1 -5485,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.52526676980779,18.1311871244163,0,6,1 -5487,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3726150363218,23.0954700607781,0,9,1 -5490,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1146568832919,21.686966102562,1,11,1 -5496,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.30133256712,21.1282878581422,0,7,1 -5497,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2615940757096,17.5907647491178,0,5,1 -5499,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3415597544517,23.6027410813131,0,12,1 -5504,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.91344309761189,23.0901375011026,0,7,1 -5506,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.917632504832,19.6774697682224,0,4,1 -5511,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.68256199778989,22.2625222800592,0,6,1 -5513,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.5938915789593,17.8778306833556,0,4,1 -5516,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0578617921565,15.6092792896961,0,5,1 -5518,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.74549594172277,20.3528904774813,0,9,1 -5522,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3285510574933,19.0406487685392,0,10,1 -5525,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0818327916786,16.6665035422171,0,8,1 -5526,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.122013240587,21.8299510217726,0,13,1 -5530,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4861390565056,24.5201209965512,0,4,1 -5538,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.16167661082,21.9049191223557,0,8,1 -5539,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.74272938398644,25.1785505830207,1,11,1 -5541,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.75585152022541,23.5516548566714,0,3,1 -5543,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.74195762653835,20.1379366687809,0,11,1 -5548,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2927899130154,16.7916768559469,0,13,1 -5558,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.24376330222,21.8419830017574,0,7,1 -5563,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.63685161527246,25.2090793215586,0,11,1 -5565,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.76152430614457,16.6467862930215,0,10,1 -5566,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0826856929343,21.6796533400471,0,8,1 -5568,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2288830697071,21.9810358522989,0,5,1 -5572,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0476712810341,27.3263682734205,1,15,1 -5578,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.82118660933338,26.7847497853364,0,15,1 -5579,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.144874257734,26.6127236668417,1,13,1 -5582,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.61653756489977,24.1059597397326,0,7,1 -5584,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.93099584523588,26.7770462263825,1,16,1 -5590,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4661483864766,22.7527492218096,0,7,1 -5594,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.74598392378539,27.6583318622583,0,14,1 -5595,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.96197188552469,24.9122585644706,0,7,1 -5596,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.53509981138632,25.674151398663,1,14,1 -5599,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.70063823158853,29.0865998521952,1,11,1 -5603,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0753689634148,20.4147310110359,0,4,1 -5610,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.83256121329032,21.2165479584913,0,7,1 -5612,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.66133320750669,21.7798273138225,0,9,1 -5614,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3701074530836,24.7226038580637,1,18,1 -5617,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.1803263910115,20.7136630267667,0,9,1 -5619,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.051934299292,27.4366513178797,1,11,1 -5620,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4598206020892,26.5366341447417,1,20,1 -5622,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2163017464336,21.5522274869552,0,13,1 -5624,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.64796631340869,20.9465770376252,0,8,1 -5626,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.77016292396002,21.2973659555749,0,13,1 -5627,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4979965416715,18.6630528056545,0,11,1 -5629,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.6219203195069,20.8300407584857,0,4,1 -5632,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.56536682811566,18.371798469216,0,10,1 -5635,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.59658547164872,29.8000834447697,1,13,1 -5636,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.59620829182677,21.6731317761516,0,6,1 -5641,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.92262148461305,26.0655358259103,1,12,1 -5642,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.94992664479651,26.4468179010048,0,14,1 -5645,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.53241661330685,25.2905883504511,1,12,1 -5648,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.58600922347978,25.4982522034202,1,13,1 -5650,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4545513058547,19.6598332920852,0,5,1 -5651,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.59885433712043,21.7210895976032,0,7,1 -5652,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0266394093633,24.4137378266762,1,19,1 -5654,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3561725423206,21.0519291049347,0,12,1 -5656,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.80841814959422,20.7140675440737,0,8,1 -5661,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4897082503885,21.1921358965943,0,17,1 -5663,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3591054268181,23.0443297715124,0,6,1 -5666,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.78799520875327,26.8426308629411,0,19,1 -5671,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2663520248607,19.8977880567928,0,13,1 -5672,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.88435391685925,20.7002484687063,0,11,1 -5673,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2336458787322,22.1536176528198,0,16,1 -5674,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.65806463523768,19.2944298440448,0,9,1 -5676,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4228350678459,26.1931961597917,0,18,1 -5679,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.84781138016842,22.0450781934027,0,9,1 -5682,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.56834821333177,21.914526365375,0,10,1 -5684,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.082904658746,21.1064590526761,0,7,1 -5686,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.75019348761998,21.5904316292492,0,15,1 -5687,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3211924834177,28.2168782673923,1,20,1 -5689,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2758414749987,28.0354622305789,1,11,1 -5690,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.63816904718988,23.3299436529812,0,9,1 -5692,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4609427338,20.5857550222677,0,10,1 -5693,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2986298154574,22.5020081831287,0,16,1 -5695,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4399412812199,20.9606012156717,0,4,1 -5702,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.90703376033343,24.7065657177868,1,23,1 -5709,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4616279732436,22.071027294161,0,8,1 -5710,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.56882905703969,21.9906527272578,0,9,1 -5712,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4745891492348,24.9206794599805,1,13,1 -5713,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.1555568177719,27.5603086245425,1,13,1 -5714,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2479106732644,21.8895046569454,0,10,1 -5719,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.1032618680038,28.5338556688429,1,17,1 -5720,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.136151481187,28.3055046478755,1,11,1 -5721,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.54043654561974,21.9271096581356,0,11,1 -5723,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.1921419370919,22.8628430777491,0,9,1 -5725,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4663680703379,26.5059554162382,1,15,1 -5727,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.56474303454161,29.2075888650664,1,10,1 -5728,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.87564107985236,26.6902516401399,1,16,1 -5741,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.8861734282691,26.4677537642801,1,15,1 -5742,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4021987412125,23.6457451826213,0,11,1 -5758,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.99987574201077,25.1143669079,1,16,1 -5760,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.66898033698089,25.4490674133731,1,19,1 -5762,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.55505953752436,28.7005262148688,1,21,1 -5767,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.1804949042853,21.5353708936533,0,6,1 -5768,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.59882406448014,26.8774319656304,1,11,1 -5769,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.63996110344306,25.3198495058983,1,10,1 -5777,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4902443673927,21.2147504317846,0,9,1 -5778,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.85833085258491,25.3631229597083,1,14,1 -5782,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3349239656236,26.924126945451,1,14,1 -5783,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.88985730381683,27.8202637605211,1,13,1 -5791,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.58098209206946,20.5771608020712,0,12,1 -5797,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0913683669642,21.6920551149833,0,8,1 -5799,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.81687398417853,21.4448643458598,0,8,1 -5805,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.85968585056253,27.0299640780236,1,19,1 -5808,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.54638032219373,19.7533897635847,0,15,1 -5809,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.84168253373355,28.7090576550857,1,13,1 -5810,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3691054829396,25.9440446017333,1,11,1 -5812,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0001557117794,21.2852825189398,0,10,1 -5813,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4251711636316,27.1918171747241,1,13,1 -5814,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.78366014570929,19.5876264136425,0,7,1 -5816,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4542995409574,22.9571895990795,0,7,1 -5818,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.91421133652329,27.3447056429171,1,21,1 -5819,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.80872955475934,27.6562811453624,1,21,1 -5820,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.254295822233,23.5411383346539,0,11,1 -5836,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.93637639959343,22.4177655713895,0,9,1 -5839,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.64689910085872,21.3435772277964,0,9,1 -5840,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.047358682612,20.365806637251,0,16,1 -5841,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.88147038291208,26.6194605913384,1,20,1 -5845,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4789201759268,22.0216655183842,0,11,1 -5849,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.64555531111546,23.8981313741799,0,7,1 -5856,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.1957282233052,22.5074711878216,0,10,1 -5857,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.74637334514409,20.3448124744929,0,9,1 -5860,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4685934176669,24.2503264734503,0,13,1 -5862,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3993176720105,23.557015310561,1,9,1 -5865,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.87114134873264,27.0286481478152,1,10,1 -5866,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2890913751908,19.6835448216246,0,12,1 -5868,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.54944820259698,26.7532903870585,1,13,1 -5872,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4376860330813,28.2297110894531,1,12,1 -5874,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.216394317802,29.026180391178,1,13,1 -5876,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4323263552506,23.9098943396626,0,3,1 -5878,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.5058836445678,21.7904096892481,0,7,1 -5881,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.73060619388707,27.313397147218,1,9,1 -5883,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3009873027913,25.5966005574709,1,12,1 -5893,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.93621672526933,22.2670421558737,0,11,1 -5894,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.98040139186196,27.1380844524374,1,13,1 -5896,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.87997976038605,29.1927636949957,1,21,1 -5898,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.93876154976897,31.2001401031098,1,16,1 -5899,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.1883839219809,27.2781869603602,0,16,1 -5902,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.65463592205197,27.184984805948,1,13,1 -5904,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.84595192503184,22.9463429051586,0,10,1 -5905,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.478973754216,21.6739242758852,0,7,1 -5910,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0823084067088,21.2163502750051,0,13,1 -5911,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.59820987144485,21.8511637487419,0,7,1 -5913,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3874021240044,25.4240625158167,1,17,1 -5921,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3484712170903,20.353616674132,0,6,1 -5922,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.52368101035245,23.6328145112316,0,19,1 -5929,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.88082635262981,20.1364359674297,1,12,1 -5931,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.5481764737051,26.4574777692856,1,14,1 -5934,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0261071417481,27.6265600982674,1,13,1 -5936,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.92717125709169,26.2403218227729,1,17,1 -5938,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.72570467204787,20.8716398055769,0,8,1 -5941,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.52661640732549,27.5445695990811,1,11,1 -5943,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.76008536317386,23.9674949958995,0,6,1 -5946,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.51953123998828,26.2901059921181,1,14,1 -5951,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.79718275391497,25.9693774807978,0,17,1 -5954,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2518102745526,28.7569018032517,0,11,1 -5955,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2056679551024,25.6636656926233,1,12,1 -5960,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.9729554427322,22.1633424466028,0,6,1 -5964,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.94271542294882,19.5489487825184,0,10,1 -5965,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.90438145492226,21.1960706104833,0,9,1 -5966,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0506718028337,23.7509615205308,0,5,1 -5974,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.72794027882628,21.3320234924014,0,14,1 -5975,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2868665277492,20.6808138731387,0,7,1 -5976,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.78230655379593,19.7009271016333,0,10,1 -5980,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.5760432346724,20.9842716685078,0,15,1 -5984,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.69777481560595,22.8896800944687,0,6,1 -5993,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.91059935418889,20.6339159846481,0,9,1 -5994,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2632789821364,24.0114252856082,1,9,1 -5995,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.93225911073387,22.5855051806256,0,13,1 -5996,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0124650234357,28.9062370981422,1,19,1 -5997,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.9137144787237,26.9869919644054,1,19,1 -6002,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.72599068074487,26.8876098741716,1,10,1 -6005,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2027014319319,22.3191947302751,1,16,1 -6006,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.245744804386,19.4022796935728,0,7,1 -6021,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.70312787918374,23.1832200524007,0,6,1 -6024,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.71443842258304,27.3983565541056,1,14,1 -6026,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.53602306963876,22.6624852299256,0,5,1 -6027,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4957291209139,22.0018960628537,0,10,1 -6028,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.63819699594751,21.927660767391,0,7,1 -6029,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.77499215956777,20.6547818517423,1,6,1 -6030,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.66414258442819,19.0211318604669,0,5,1 -6041,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2329677147791,21.7751922355828,0,10,1 -6044,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4842628801707,21.8020236684265,0,12,1 -6045,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3028320276644,25.8472473901519,1,10,1 -6049,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.1849605389871,20.4737131052293,0,11,1 -6050,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3783787612338,21.8635009402902,0,5,1 -6051,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.7352844204288,20.866224950523,0,13,1 -6053,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.50653341016732,21.2794077968717,0,9,1 -6054,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.63879470760003,25.0742487612221,1,15,1 -6057,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.63346508587711,22.3699156731258,0,13,1 -6058,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0107161691412,23.9227154025974,0,12,1 -6068,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.8439494126942,20.5285482659288,0,4,1 -6069,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2228963717353,22.4498450082443,0,4,1 -6071,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.1131181113888,29.1371402402131,1,14,1 -6072,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.64839423913509,26.3362679025122,1,9,1 -6073,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.85790318041109,28.1479329212653,1,14,1 -6076,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4033771334216,26.7034677166711,1,20,1 -6083,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3139906066936,25.069530052101,1,13,1 -6084,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4374586094636,21.1015333002617,0,5,1 -6085,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.1941916001961,25.7752602326608,0,16,1 -6086,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.60494159953669,26.284897094616,0,22,1 -6089,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0919495376293,23.0779844573945,1,10,1 -6090,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.1246722233482,28.9828425892237,0,12,1 -6098,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.55451746005565,21.5326378157254,0,8,1 -6101,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2882102187723,23.235944868345,0,9,1 -6103,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0277508790605,23.8977648919254,0,14,1 -6104,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.64896906912327,19.827014565048,0,7,1 -6105,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.90061746444553,17.8712992095723,0,11,1 -6108,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2243843793403,25.0756961459404,0,12,1 -6110,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.8174446655903,18.2486373770996,0,8,1 -6112,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1570506209973,28.6867730021537,0,15,1 -6116,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.80357622378506,27.338924145355,1,12,1 -6117,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2962859980762,19.8597972146253,0,9,1 -6121,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.99509719596244,21.2665373556164,0,10,1 -6123,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.70585380191915,18.9553226819808,0,8,1 -6124,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.80802339687943,21.1970964125581,0,8,1 -6126,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.1993910088204,21.8676340462825,0,5,1 -6127,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1046723057516,23.5956222725185,1,12,1 -6132,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.058643773431,24.5137827678875,0,11,1 -6133,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4499537816737,19.2820106242088,0,10,1 -6135,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.78481033141725,20.9667740467687,0,10,1 -6136,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.0300640007481,20.8720222280206,0,12,1 -6137,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.55591310258023,25.0312445397196,1,9,1 -6139,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.65943001979031,20.1290482039897,0,10,1 -6140,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.9313789869193,25.7962512659659,0,6,1 -6141,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.60600412730128,26.4858080794328,0,8,1 -6143,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.69178552692756,19.5167104059847,0,7,1 -6145,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.77862060256302,19.9054751594825,0,12,1 -6147,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.72195309586823,25.0701012840686,0,13,1 -6150,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2521798550151,18.3931701305983,0,5,1 -6153,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.86868967930786,25.0849825061844,0,8,1 -6154,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.4957385363523,24.4503486357837,1,10,1 -6157,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.83394636423327,20.3808234213222,0,4,1 -6161,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.1551583388355,20.2675377745641,0,6,1 -6164,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.3996757285204,21.5023244147771,0,8,1 -6166,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.4431572447065,25.6298989164216,0,11,1 -6170,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.80197353684343,17.9051735503511,0,4,1 -6172,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3535276728217,24.6940868904772,1,11,1 -6174,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.53394939750433,26.2614984460677,0,19,1 -6178,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.0323961733375,20.5782527525225,0,2,1 -6182,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.56278806901537,19.750198243655,0,5,1 -6185,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.93011551559903,24.5864997026943,0,4,1 -6186,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.6297210350167,25.6491476854372,0,15,1 -6187,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.3448912883177,18.5114260972803,0,9,1 -6189,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4612932309974,19.8046811575032,0,14,1 -6190,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.0420368178748,16.0024717574013,0,4,1 -6193,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.081534354249,19.4102311087747,0,4,1 -6195,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.194225506857,25.122783928612,1,6,1 -6202,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3066494760569,22.4846593735649,1,16,1 -6208,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.69740805192851,22.9563292779752,0,5,1 -6210,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.80859399563633,18.9783872598592,0,5,1 -6211,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.87114242836833,25.5823483918957,1,19,1 -6215,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.090742032975,24.6626940266763,0,12,1 -6216,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.98828445933759,19.9734216324885,0,10,1 -6221,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.4677259682212,27.4737781804017,1,8,1 -6223,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1622757085133,25.2932524905598,1,11,1 -6227,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.79042709409259,26.3782083829311,0,15,1 -6228,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.94511348824017,20.6768869458242,0,8,1 -6231,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.75624001026154,24.3149953997545,1,12,1 -6235,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.82683366117999,26.5599325405037,1,9,1 -6237,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0035406320821,24.3529961347119,1,13,1 -6238,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.3216138691641,17.7143217299347,0,9,1 -6246,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0169251349289,27.1919614842078,1,16,1 -6250,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.73347841692157,19.8621708440654,0,13,1 -6254,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4584180777892,21.040073946671,0,11,1 -6255,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1494535650127,24.030550261398,0,10,1 -6256,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.75811563315801,19.3775024035667,0,8,1 -6259,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.67462375131436,25.6992554609655,1,11,1 -6262,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.55273776501417,22.2736517580293,0,8,1 -6269,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.75895496131852,24.739963066848,1,8,1 -6278,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.54917591903359,25.1132290018485,1,12,1 -6280,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.1378842259292,18.3270912730925,0,7,1 -6282,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.0042291858699,19.8357555614648,0,8,1 -6283,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.60130215319805,22.4319474127616,0,15,1 -6286,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.0093778742012,19.52012039498,0,5,1 -6287,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.6475558434613,17.162020907771,0,7,1 -6289,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2205806307029,21.7424475137421,0,6,1 -6290,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.6771399078425,26.7195450565779,0,14,1 -6291,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.90967723401263,25.067950176367,1,14,1 -6293,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.71329826978035,18.2628388708165,0,5,1 -6294,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.8700734723825,22.266124880622,0,12,1 -6295,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2479350457434,26.5642952427364,0,9,1 -6296,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.99730214476585,24.8332557653603,1,16,1 -6298,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.50353037007153,25.9992170592395,1,13,1 -6299,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.69381156563759,19.418128819766,0,3,1 -6309,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4302767617628,18.4412939816099,0,11,1 -6313,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.75153306662105,19.8257970008634,0,6,1 -6315,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1992635515053,27.0187364251736,0,13,1 -6316,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.91322610597126,23.8846970041874,1,11,1 -6319,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.57698523323052,26.0957461085775,1,11,1 -6320,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.94459082116373,19.9969525991975,0,9,1 -6323,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.1363627684768,18.1211761928918,0,4,1 -6330,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4580809059553,19.8951217214124,0,6,1 -6333,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.0645202337764,18.2501798735115,0,9,1 -6337,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2919777233619,23.7781069036411,1,15,1 -6344,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.90119475056417,27.3982565051808,1,15,1 -6345,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2694427196402,20.363987254341,0,4,1 -6356,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.8461897931993,21.2340686632436,0,7,1 -6360,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.60214388440363,19.6239400688752,0,10,1 -6365,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.97173682413995,21.2367297858053,0,2,1 -6368,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.63374341232702,24.5740807393933,0,15,1 -6369,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1675560630392,26.418383570645,1,15,1 -6371,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.64194737793878,18.5434806913815,0,12,1 -6374,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.0533565366641,22.137460656945,0,9,1 -6377,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2475852216594,26.0030753956069,1,13,1 -6378,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.0033576833084,20.3734437119508,0,4,1 -6380,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.94488934334368,17.9825371629555,0,3,1 -6384,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.80858004279435,27.048840069747,0,11,1 -6393,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3992269602604,26.6348176314986,0,15,1 -6399,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.3538355880883,22.7704478776563,0,13,1 -6407,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2817263798788,23.4785024728931,0,11,1 -6410,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3246179958805,22.5201083378512,1,12,1 -6412,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.57427606242709,26.1235332787824,1,15,1 -6413,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.78035307792015,24.8211940813793,0,11,1 -6418,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2786333761178,18.5967507941453,0,6,1 -6422,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.70544406841509,21.7190317568092,0,4,1 -6424,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.51324059581384,22.4039137368361,0,8,1 -6432,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.82786712516099,21.6385059829391,0,4,1 -6434,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.4485926080961,26.9780091628289,1,15,1 -6442,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.62463090196252,24.105476934966,1,16,1 -6444,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.97316732304171,20.9291634564741,0,9,1 -6450,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.1637110926677,22.1834327985743,0,9,1 -6451,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.97056797635742,19.4249950886628,0,5,1 -6452,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2543549868278,16.7136542218687,0,5,1 -6459,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.55630538612604,20.8624144204152,0,12,1 -6460,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1290944882203,25.6922497608948,0,10,1 -6463,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.84818087331951,23.2475017774345,0,7,1 -6464,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.88176853070036,19.1434746043433,0,5,1 -6466,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.76815458573401,20.0556841521987,0,8,1 -6469,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.87424576189369,26.6030353797973,1,17,1 -6470,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3583854492754,24.3723594754376,0,13,1 -6475,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.60179448174313,19.8573228647934,0,5,1 -6476,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1657635879237,24.215920442446,0,16,1 -6482,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.3924918572884,20.3159180858947,0,6,1 -6486,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.1508436684962,20.8553614681532,0,13,1 -6489,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3450173819438,24.8710824227444,0,10,1 -6492,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.58399017644115,23.5176028842691,0,14,1 -6493,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.58669832232408,21.3482810315566,0,8,1 -6495,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.52817356679589,22.4282243535085,0,4,1 -6496,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.4720126793254,26.0692300733884,0,9,1 -6499,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.59968754136935,24.6965125867719,0,14,1 -6500,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0231982099358,26.00066752072,0,10,1 -6503,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.85439881565981,22.9902513729179,1,13,1 -6506,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.87882481724955,20.1955786954958,0,6,1 -6507,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.1433544086758,19.9841207757839,0,10,1 -6508,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.3568054533098,21.468531174137,0,7,1 -6511,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2443711266387,26.3437791349692,0,12,1 -6512,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.74672668636777,22.8816603593396,0,5,1 -6525,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.91620014654472,20.3015665202645,0,5,1 -6526,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.4948791903444,25.2040195232757,0,8,1 -6528,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1069063323084,24.8669245700022,0,12,1 -6530,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.57534890295938,19.5195060716953,0,13,1 -6532,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.80171940918081,25.683752671201,1,20,1 -6536,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.75943643529899,20.1025311330078,0,5,1 -6538,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.68238923768513,26.4240393017333,0,14,1 -6544,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.50384120945819,17.3765796742925,0,5,1 -6545,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2605808679946,19.9432339001082,0,5,1 -6547,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.52370533440262,20.6105674850854,0,3,1 -6549,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.89290788536891,18.585599263232,0,11,1 -6553,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.58347145770676,20.0939135337221,0,7,1 -6555,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.89266158710234,23.6229570057881,0,6,1 -6556,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.4395371410064,23.9595161643949,0,10,1 -6557,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.96782686887309,19.2866269487374,0,13,1 -6560,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.51475326227956,26.2219004684424,0,10,1 -6564,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.64527568174526,23.7700755413482,1,16,1 -6567,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.78228607727215,19.2114556328859,0,7,1 -6571,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.56666664383374,23.8814898158744,1,13,1 -6575,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.79880083841272,27.5087681620383,0,10,1 -6576,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.90089399064891,21.0599874353209,1,9,1 -6579,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3070958058815,21.3003777434506,1,13,1 -6581,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4305933150463,25.7749504938723,1,22,1 -6585,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.11549099884,27.5689078876643,1,16,1 -6588,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3964963180479,27.2525850186608,1,14,1 -6590,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.94964938960038,21.0323338465492,0,2,1 -6593,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1585655561648,17.9629448966631,0,4,1 -6597,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4622464317363,24.4410296909554,0,12,1 -6605,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.69972670194693,24.7546477027333,1,20,1 -6609,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.0277750790119,26.9044556579188,0,22,1 -6610,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.164606945822,28.2057669658685,1,23,1 -6611,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1631495102774,21.5535552054299,0,15,1 -6614,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.0964972565416,23.4980562807757,0,6,1 -6615,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1285778312013,20.0190407348926,1,7,1 -6616,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.0592858844902,29.1188808097558,1,14,1 -6621,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.67345492355525,20.8591941460487,0,7,1 -6630,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1573851634748,26.0276266109645,1,10,1 -6633,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.59613941772841,26.1949850474695,1,11,1 -6639,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.2946380486246,21.7455889762648,0,9,1 -6641,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.82576595176943,23.4127713396098,0,8,1 -6645,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.786368513247,21.281383167383,0,17,1 -6646,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.67273121490143,21.5720038474586,0,6,1 -6650,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.0257695708424,28.4213333086631,1,18,1 -6652,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.95282322843559,26.9905107113027,0,13,1 -6656,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.74386381730437,28.2132096120754,1,15,1 -6658,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.86901958705857,28.8615893896992,1,14,1 -6665,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.3248478607275,19.5657210014111,0,13,1 -6673,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.83902565622702,28.2787357505082,1,15,1 -6674,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3522217783611,28.4593504185304,1,14,1 -6682,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4916411247104,24.7815495148954,0,11,1 -6683,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.72543417406268,25.8344566045165,0,7,1 -6689,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.2283913209103,20.9770690134496,0,9,1 -6696,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.55542914615944,24.6836122457988,1,14,1 -6701,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.5286287246272,25.1021793338866,1,13,1 -6702,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1068081245758,29.1893031843315,1,14,1 -6703,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.94350319099613,26.9954970879629,0,12,1 -6705,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.2167318125721,23.9946546910537,0,10,1 -6706,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3428281277884,27.4499962266633,1,8,1 -6707,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.0482220675331,23.8103429432952,0,9,1 -6709,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.53945427224971,23.9774450761277,0,12,1 -6712,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4629853183869,22.5114018752552,0,10,1 -6715,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.3024123515934,21.4917157103553,0,12,1 -6718,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.81189341680147,22.2702883536582,0,9,1 -6720,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.90667764307,21.3991261915423,0,11,1 -6723,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.0385370794684,21.5549829438041,0,11,1 -6725,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.0003729683813,21.81992407464,0,10,1 -6729,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.78183133597486,29.4985216750626,1,14,1 -6731,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1665812563151,30.4128172618556,0,11,1 -6732,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.94017027481459,25.9357863856051,1,20,1 -6733,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1248354741838,29.4188308124935,1,12,1 -6735,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.59900752920657,19.9853761331009,0,14,1 -6742,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.73934244411066,26.5209661616684,1,17,1 -6743,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.95705771632493,24.0380733500542,0,12,1 -6745,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4224317176268,22.7243545734776,0,11,1 -6747,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.85040767351165,27.7785949695583,1,7,1 -6748,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3676093381364,26.5831479899218,1,11,1 -6751,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3871097716037,25.1681103889694,1,11,1 -6752,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.65892371954396,22.7778397051978,0,9,1 -6756,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.91154401632957,27.8964847417881,1,13,1 -6761,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.50255196657963,20.9754891028809,0,11,1 -6765,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.52928395196795,28.4653308203864,1,17,1 -6766,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.82848339364864,27.7641946565544,1,18,1 -6768,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.9799535505008,25.7525189248195,1,18,1 -6770,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.81997125013731,25.8193985405976,1,15,1 -6772,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.50426200591028,29.3218232068471,0,7,1 -6780,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4613343025558,28.940811897859,1,18,1 -6781,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.66105489013717,25.5276674332095,1,9,1 -6782,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.2869664956816,18.7594466714762,0,5,1 -6783,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1933400298003,23.7102995695143,0,6,1 -6785,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.51768041588366,26.2343322454008,1,22,1 -6787,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.83398438687436,24.6843646769528,1,13,1 -6790,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4579027260188,26.3254964461205,1,9,1 -6792,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3461402880494,30.8589913728034,1,18,1 -6799,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.67966079176404,21.7284748222322,0,7,1 -6801,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4610901090782,22.696271682497,0,8,1 -6802,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.019952021772,27.759829363982,1,12,1 -6807,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1820338044781,21.7966086605581,0,12,1 -6809,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.0115459584631,23.6245325664691,1,16,1 -6810,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.94018165837042,27.7544987860719,1,16,1 -6816,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.151094103232,21.3192084650166,0,7,1 -6818,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.445001673419,20.646354766847,0,7,1 -6820,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.337701784214,26.4513042987277,1,7,1 -6822,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3906055842526,27.2722997038257,1,21,1 -6827,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.73324644239619,25.3030950574646,1,16,1 -6839,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1344854566269,21.4470964341462,0,8,1 -6844,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1836956427433,25.0313766780837,1,12,1 -6851,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.0884098722599,24.5795488756715,1,10,1 -6852,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4081101333722,26.1568197154256,1,13,1 -6853,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4235296910629,24.6540130165628,0,9,1 -6854,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.74730575480498,23.1582780229267,0,10,1 -6857,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.91513590165414,26.3522956667878,1,12,1 -6858,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1809975598007,26.8477868712659,1,11,1 -6864,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.0158186322078,22.0934885385966,0,7,1 -6865,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.0096622491255,19.1358851297541,0,6,1 -6867,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.71639687172137,28.4362885349549,1,15,1 -6868,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.65203716955148,27.7828660746829,1,22,1 -6872,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.2466548285447,25.9267770509653,1,10,1 -6873,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1963538310956,23.0467777307701,0,11,1 -6875,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.58701799460687,20.2459410184085,0,9,1 -6876,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.97368853562512,22.7118875107375,1,6,1 -6884,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.3675817071926,21.6947847540502,0,6,1 -6894,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.408201915212,27.2053462020159,1,11,1 -6897,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.71805486246012,28.6525799864606,1,11,1 -6902,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.97083020443097,28.1057946592256,1,12,1 -6903,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1376672491897,21.8297389561774,0,11,1 -6907,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.94955647806637,22.0659207187317,0,10,1 -6908,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1183107853867,25.9478508430879,1,11,1 -6910,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.0802203870844,20.05760363379,0,9,1 -6920,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.140454371227,22.2546061956605,0,14,1 -6922,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.80081611149944,23.796450538709,1,14,1 -6924,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4804653935134,19.0972587703394,0,4,1 -6926,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.80816846131347,23.3822527763614,0,15,1 -6927,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.96629594708793,27.0014964752343,1,12,1 -6928,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1801125907805,20.7293754389544,0,9,1 -6931,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.6897654007189,25.7565306255639,1,15,1 -6943,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.79265019553714,26.816028152728,1,13,1 -6944,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.0015254281461,28.1269125158808,1,15,1 -6954,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3521243187133,25.3685792034313,1,17,1 -6955,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1934100254439,20.8355062414055,0,12,1 -6960,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.80988889234141,20.0181024207362,0,3,1 -6961,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.72647165390663,18.3835660755342,0,16,1 -6962,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.93120875139721,21.0050652654104,0,7,1 -6963,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.3025377283338,21.6918720481377,0,10,1 -6966,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.491061036475,22.0076518517143,0,9,1 -6968,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.77384166256525,27.7344549097682,1,14,1 -6969,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.78863357007504,25.568321943621,1,11,1 -6970,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.85454031149857,27.8991176471478,1,14,1 -6973,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.2236849146429,27.197454458022,1,20,1 -6974,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.51568036735989,25.2088438739796,1,16,1 -6978,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3716526038479,24.0266700397108,1,21,1 -6981,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.86218655738048,24.4923817542879,0,11,1 -6983,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4519650125876,21.8423455002261,0,7,1 -6986,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.0602146738674,21.9533959807974,0,16,1 -6987,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.3234960504342,20.7963002518525,0,11,1 -6991,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.152074623853,21.2450534872652,0,11,1 -6994,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.5040862520691,20.6132927835959,0,7,1 -6995,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4568504553754,23.4813756142592,0,7,1 -7001,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.56615994730964,20.2685820595284,0,12,1 -7005,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.72912744036876,23.2469289981569,1,7,1 -7007,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.96684123645537,27.5199053162631,1,18,1 -7008,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.449430140201,25.7953420458167,0,17,1 -7009,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.0775177420583,25.6749944049654,1,16,1 -7017,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.84134102449752,25.168433559797,1,15,1 -7018,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.0552723368164,23.0967754496468,0,5,1 -7019,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.73678420507349,29.4410398227295,1,10,1 -7022,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.78200015099719,21.3204341479335,0,10,1 -7023,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1586503984872,21.1726143551677,0,8,1 -7024,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.55055869510397,19.9863044465066,0,9,1 -7026,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.0240492154844,25.7397776245387,1,7,1 -7027,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4377571714576,24.0356953140627,1,13,1 -7029,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.2896676645614,26.4013161527881,1,12,1 -7030,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.55293318838812,27.491024224962,0,11,1 -7036,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.99119034293108,27.0347455634364,1,14,1 -7037,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.2584543118719,25.3735848817842,1,23,1 -7038,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1002661243547,21.899060873002,0,9,1 -7041,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.2097846292891,22.8499905695561,0,7,1 -7043,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.56569128343835,28.0050686872763,0,11,1 -7047,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.6543966056779,27.4112207590546,0,17,1 -7050,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.0455965707079,28.0182101347035,1,6,1 -7052,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4104148591869,21.8386241160849,0,12,1 -7061,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.53252789005637,21.8742865162822,0,10,1 -7065,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.83972031343728,36.9553723145969,1,44,1 -7068,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3682798785158,37.2234176751126,1,46,1 -7069,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.89872103813104,32.5558879386557,1,19,1 -7071,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4480007453822,32.0914275821523,1,16,1 -7072,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.84836995578371,31.1250673431939,1,16,1 -7074,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.52254328969866,35.3568551647476,1,43,1 -7077,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.56062591006048,32.3090100316962,1,16,1 -7084,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.95117895794101,31.9741838199087,1,19,1 -7088,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.68890560115688,36.4943500384319,1,29,1 -7089,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4311561856885,30.1285298221036,1,20,1 -7098,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.92822196497582,29.3186622770118,1,25,1 -7106,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.68788585066795,37.8277139393689,1,46,1 -7107,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.302324424265,39.1699276124109,1,40,1 -7108,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.59171905461699,31.2698767249878,1,19,1 -7112,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2038196695503,31.741170260553,1,29,1 -7116,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.77578590321355,33.7483317185415,1,33,1 -7119,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.1832714318298,35.5091919931594,1,40,1 -7126,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.225678172661,37.5624585270969,1,47,1 -7130,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.69919440033846,32.2303331501091,1,30,1 -7133,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.58337827003561,32.0878901681145,1,21,1 -7134,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0555336412508,35.7757402182415,1,40,1 -7140,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2005722934846,28.5662285383282,1,26,1 -7142,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0123932156712,32.4784516964391,1,21,1 -7144,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.83730617864057,30.3636105672338,1,17,1 -7145,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2489080296364,31.2279995220369,1,15,1 -7146,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.82005570316687,35.0839922779926,1,46,1 -7148,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.2127397477161,35.1356772829179,1,45,1 -7149,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.95406004437245,31.3166224457567,1,24,1 -7151,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3126534221228,31.3460050265568,1,20,1 -7153,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.66148224147037,34.7570231266269,1,40,1 -7155,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.56119506177492,35.9064609854499,1,39,1 -7156,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.67172094900161,32.1403017396591,1,23,1 -7160,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3595324757043,38.5423123532171,1,38,1 -7161,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.57299599749967,33.2949703346629,1,30,1 -7163,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0967789499555,35.8525038917965,1,41,1 -7164,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.62940214807168,36.2037067636534,1,41,1 -7165,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4307065508328,32.3235185962503,1,29,1 -7170,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.2122528508771,38.6600064739033,1,51,1 -7180,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.87488206475973,31.6691674467961,1,18,1 -7181,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3418368268758,36.9437580226723,1,38,1 -7184,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4751076488756,32.2077759537585,1,17,1 -7185,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.2100473190658,37.5924420874607,1,46,1 -7188,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3652369035408,33.6063164251675,1,19,1 -7195,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3070838237181,37.2206531905819,1,33,1 -7197,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.75642239023,33.1235643520727,1,38,1 -7201,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.51410981221125,31.4120201173378,1,34,1 -7203,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0770466690883,36.2839855646039,1,39,1 -7206,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.2234039090108,36.0479243411944,1,31,1 -7209,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4855989783537,33.9574574211603,1,40,1 -7214,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0779243458528,30.9800868461501,1,28,1 -7217,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.54136673361063,37.5169141045874,1,50,1 -7224,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.96811717515811,34.8466002871241,1,48,1 -7225,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.87753928103484,35.2612807937226,1,38,1 -7226,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.56482552457601,33.4737861871184,1,20,1 -7227,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.92378101940267,35.7646045944781,1,37,1 -7230,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.101201415062,31.4009768578126,1,27,1 -7231,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3583117797971,34.1275245654064,0,24,1 -7235,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.99331319285557,30.1181180894511,1,27,1 -7238,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.82597292703576,34.6447797413989,1,35,1 -7240,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.71624383190647,32.2577426003811,1,21,1 -7241,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.173432771815,35.8220882068937,1,37,1 -7243,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3771823947318,29.8998296892545,1,26,1 -7251,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0194330608938,34.4116316966585,1,52,1 -7256,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.76523489947431,34.6383404888374,1,33,1 -7257,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4797154935077,34.2995335022638,1,40,1 -7259,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.94264633231796,31.7999861879452,1,20,1 -7265,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.97208008915186,31.2174796166716,1,28,1 -7268,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.62538523646072,40.1445666803713,1,33,1 -7269,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4480667563621,38.4283247047294,1,33,1 -7272,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2988184951246,32.061765408655,1,26,1 -7274,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.8445026348345,32.6674947539207,1,26,1 -7286,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.304404016817,37.2565360146819,1,30,1 -7287,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.2418746463954,37.1774151475851,1,40,1 -7290,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.56615214468911,35.1241304949758,1,31,1 -7292,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.67451217654161,32.7703472479407,1,24,1 -7296,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.59564409521408,38.2452404065836,1,38,1 -7300,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.56324397563003,32.8255193055603,1,24,1 -7302,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.1370652955957,32.7023432677637,1,14,1 -7306,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.51085659814999,37.6612502789246,1,40,1 -7312,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.1596816037782,38.0136105840878,1,30,1 -7313,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3479760524351,38.6476022290958,1,45,1 -7314,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0644021243788,32.7350974170784,1,33,1 -7317,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0249420821201,34.2243782772908,1,45,1 -7321,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0625215030741,37.9554396450756,1,47,1 -7322,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.91608955408446,36.147249571402,1,50,1 -7324,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.98399578523822,31.5613546325247,1,24,1 -7325,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.1673143138178,35.724091869471,1,46,1 -7327,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.77998384297825,37.2016034313273,1,43,1 -7331,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.1213054163381,35.4419020259509,1,52,1 -7332,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0275834740605,32.3315455621184,1,20,1 -7333,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.82649978855625,31.2359229027288,1,27,1 -7337,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2402144365478,30.4515579187832,1,15,1 -7338,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.1414182493463,36.5886022080736,1,43,1 -7342,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.59738340764306,36.5604525272745,1,34,1 -7349,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.99974804348312,37.7901029159954,1,34,1 -7351,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.68954931758344,32.4064484505491,1,24,1 -7354,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0589863481,35.1745156663185,1,35,1 -7361,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4326126084197,35.6457247374057,1,39,1 -7368,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.62986087799072,30.7504288307826,1,31,1 -7369,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3559311560821,37.1747980501201,1,39,1 -7370,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.94600829971023,36.916850169018,1,32,1 -7371,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.89691780833527,34.7994244742873,1,36,1 -7372,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.442702738801,35.7779949570149,1,35,1 -7373,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2672073303256,28.2220859294103,1,21,1 -7375,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.85360634769313,34.3101401607321,1,37,1 -7376,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0927166384645,31.5740058645009,1,22,1 -7378,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.81743171042763,30.5334097659605,1,28,1 -7379,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2213145131245,31.1792666923914,1,23,1 -7382,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.99983954173513,32.5426019927375,1,20,1 -7383,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.352011752082,37.0780716833017,1,39,1 -7386,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2424736963585,31.3315541820717,1,24,1 -7390,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.2368929039221,34.3820070428698,1,41,1 -7391,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.1014779559337,35.4751214564954,1,45,1 -7393,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.66704135620967,37.0547676657663,1,40,1 -7398,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.49536275235,32.2474909153584,1,21,1 -7406,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.70818345923908,36.2612322278789,1,60,1 -7407,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.79115289938636,32.947994321411,1,22,1 -7410,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.84783535217866,38.5814116735728,1,34,1 -7413,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.2583211085293,34.5405476093204,1,37,1 -7417,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.69717879849486,37.3572574819112,1,42,1 -7419,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.83921361714602,31.389036494142,1,21,1 -7420,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3465731814504,33.3048878999566,1,40,1 -7422,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.84214891050942,33.0413949058224,1,23,1 -7426,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.8659393787384,39.2157240190239,1,46,1 -7429,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0359324684832,37.3235853274041,1,45,1 -7432,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0341061062645,32.8493916848764,1,19,1 -7433,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.185070397798,32.0138728089095,1,20,1 -7435,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.9839411766734,36.688385403342,1,37,1 -7440,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0506053091958,29.7977354119076,1,24,1 -7453,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.62744489964098,36.9394033146163,1,38,1 -7455,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3327856827527,35.7768899194745,1,46,1 -7456,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.66301439097151,35.6400950486088,1,30,1 -7460,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4900581492111,36.5431246246473,1,48,1 -7463,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.77744670934044,36.3090337673467,1,41,1 -7465,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4194751898758,36.4547845724369,1,44,1 -7466,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.83650642982684,31.9180365421176,1,28,1 -7467,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2035626298748,32.3316077979166,1,23,1 -7470,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.82329256553203,30.3888141351852,1,30,1 -7473,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0728036181536,30.6147777437973,1,23,1 -7474,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2748609092087,33.2166363517849,1,17,1 -7475,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4205836229958,30.8667511772275,1,25,1 -7477,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.76614421559498,34.1416051500702,1,30,1 -7491,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.92738915071823,36.2032443835794,1,32,1 -7492,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.9579412592575,37.6256777020846,1,38,1 -7496,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0088698968757,36.7130139515453,1,38,1 -7499,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.73182223015465,29.3040860671005,1,24,1 -7500,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4953558545094,30.1027249026996,1,24,1 -7503,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4683967058081,30.9334216261678,1,26,1 -7504,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.2125260154717,36.7411933423857,1,37,1 -7505,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.95812078751624,34.3060994060111,1,39,1 -7512,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3585230787285,30.7625774282121,1,22,1 -7514,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0910865548067,31.0663583569379,1,17,1 -7516,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.70137488725595,37.1316826770442,1,37,1 -7523,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.1445130244829,38.7509660071759,1,45,1 -7524,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.95533235464245,32.174357333445,1,28,1 -7527,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.98354947334155,30.1149741219754,1,12,1 -7530,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.84829168464057,32.5215329218491,1,20,1 -7532,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.93477920070291,35.7094220326213,1,41,1 -7535,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.1235148597043,31.1068376135619,1,32,1 -7536,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.2845053272322,38.3372934202393,1,38,1 -7537,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.86510303011164,30.9435172597148,1,34,1 -7540,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.98378788167611,31.8854770349523,1,24,1 -7542,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.51194772659801,38.3407797072964,1,44,1 -7543,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2908115005121,28.8793026735834,1,26,1 -7546,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.75407690834254,33.1468752412632,1,27,1 -7547,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.68645122065209,32.4471717395317,1,41,1 -7552,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3914509254973,38.7390991779496,1,29,1 -7558,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.67001173133031,32.8619649081431,1,30,1 -7559,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3255922705866,33.1741371033834,1,29,1 -7561,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.60545972571708,29.4398411377515,1,15,1 -7562,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0544904149137,29.0702259137534,1,16,1 -7566,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0125462149736,37.6453962402959,1,27,1 -7571,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.334340905305,32.9689059703885,1,22,1 -7575,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.70801804237999,30.3985497849723,1,29,1 -7577,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3115072483197,31.0788236324892,1,27,1 -7578,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2564186311793,30.5417529178782,1,24,1 -7579,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.96191658335738,35.2112433302423,1,33,1 -7588,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.91355836275034,28.3254459675758,1,15,1 -7589,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2237317149993,36.7227867129887,1,25,1 -7594,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3077272600494,36.7199575909793,1,42,1 -7595,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1520096452441,32.0753822012392,1,25,1 -7599,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0816906124819,29.7253621757822,1,19,1 -7601,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.94392328825779,36.3666296794656,1,35,1 -7602,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0859183997381,32.1949254881129,1,23,1 -7604,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.73035826906562,31.7324128070022,1,21,1 -7606,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.86245509050786,33.5222582524445,1,25,1 -7608,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.71867067017592,36.4670698852263,1,40,1 -7610,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.65970774390735,32.7957559806431,1,21,1 -7613,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2394253613893,38.503308879772,1,35,1 -7614,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3779612840153,31.3809714473057,1,21,1 -7615,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.76167217479087,31.555993047441,1,26,1 -7616,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.69784692884423,30.454141416871,1,24,1 -7617,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.89899135101587,34.7618304540529,1,38,1 -7623,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.68125357618555,36.5473346107489,1,38,1 -7624,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1051315374207,32.5653656977147,1,45,1 -7626,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.6252740973141,36.4470657966548,1,38,1 -7629,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4217006859835,34.6897930891014,1,31,1 -7636,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.50475091766566,31.096658335017,1,17,1 -7640,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4439662697259,31.5187829031041,1,21,1 -7647,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1898183315061,31.3602720605684,1,18,1 -7650,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.72563511645421,34.7331128166285,1,39,1 -7651,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.75998605694622,30.5939026556753,1,22,1 -7656,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1433448221069,30.7601755251486,1,15,1 -7660,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.92449364555068,29.5165146664806,1,26,1 -7661,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.69086770736612,33.3825440097268,1,20,1 -7662,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.57343885535374,37.662468727721,1,36,1 -7663,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.88634733692743,31.6051013265994,1,19,1 -7664,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.8879927592352,37.4184023106233,1,38,1 -7665,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3183831360657,30.2228564218552,1,25,1 -7666,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1328701577149,34.4586178869403,1,31,1 -7671,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2984481074382,36.6924237450796,1,34,1 -7676,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.93242248590104,35.1649757756312,1,34,1 -7677,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.50779752922244,30.862102221205,1,26,1 -7678,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.69073265069164,32.7681060125205,1,21,1 -7680,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1239192523062,31.2221478310016,1,27,1 -7681,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2985904938541,30.2977723149952,1,16,1 -7682,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.70613488927484,35.7984341918437,1,27,1 -7690,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.71343591832556,29.601534889352,1,19,1 -7692,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1897671436891,35.3500350150587,1,23,1 -7702,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2394559900276,39.6860018875337,1,38,1 -7709,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4128510463051,34.68885168636,1,36,1 -7715,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.66858518309891,36.1508147008175,1,33,1 -7721,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0164142001886,29.8259641594675,1,13,1 -7723,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.118131065974,31.6800122000715,1,19,1 -7724,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.80543027119711,33.5007193737669,1,26,1 -7725,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.505824576132,32.6451229379295,1,21,1 -7726,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0083560622297,30.4734584242171,1,16,1 -7727,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1474717189558,32.8620839313967,1,21,1 -7729,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.60567778907716,36.8159100321386,1,32,1 -7730,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.8301077557262,37.9187518104,1,46,1 -7737,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.84659154945984,30.3839173839983,1,40,1 -7739,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1219819227699,35.0371368988131,1,28,1 -7743,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.94334029103629,31.0352528519843,1,20,1 -7744,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.59112780634314,37.0631412081501,1,33,1 -7746,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3205750554334,35.2613800204411,1,53,1 -7747,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4784124318976,36.8336131499306,1,41,1 -7748,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.094538778998,31.8311069833431,1,19,1 -7753,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.81791489082389,37.3432452680362,1,31,1 -7756,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.60976234613918,35.9653945180304,1,35,1 -7760,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.84108814084902,30.1856761418517,1,25,1 -7761,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.57692370424047,36.9631857538447,1,30,1 -7762,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.6764346670825,32.1650195951388,1,22,1 -7763,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.93990862276405,37.3817247053307,1,41,1 -7767,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0674282091204,32.6810956251366,1,22,1 -7768,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.51923292758875,36.0443127114086,1,30,1 -7772,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.86364074377343,36.6469367961079,1,31,1 -7775,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3070287853479,30.7239579192637,1,18,1 -7782,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.93301063776016,31.2635071255892,1,22,1 -7785,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.71454192162491,30.1924546304905,1,29,1 -7789,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1393920439295,33.5645345989563,1,24,1 -7793,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.77971032820642,34.2222013819139,1,27,1 -7794,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2730545743834,31.0824384861896,1,23,1 -7796,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.99807769246399,34.5656192497581,1,44,1 -7800,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.56184744276106,32.3609061323374,1,25,1 -7807,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.78871104004793,32.917647617317,1,20,1 -7814,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.86301572923549,28.8332540669207,1,18,1 -7815,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3143202944193,31.694947125312,1,17,1 -7816,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.98818131047301,35.3832081071786,1,41,1 -7818,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.76012973929755,30.6670467523084,1,16,1 -7823,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.9482736880891,31.8871459655704,1,10,1 -7824,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.99386642430909,36.7601228002448,1,35,1 -7825,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.62882318068296,38.4235501491898,1,30,1 -7826,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.53676121402532,28.8421324232702,1,22,1 -7828,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.53144932468422,34.6270202436724,1,45,1 -7831,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3680200329982,34.0805681209209,1,32,1 -7837,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.99680120474659,30.8901225576802,1,16,1 -7838,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.63566908542998,32.8362160305478,1,36,1 -7839,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3491929990705,34.049858580815,1,27,1 -7840,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.27745923982,29.5265713594432,1,21,1 -7845,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.70672275149263,32.887654005012,1,38,1 -7846,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4430401080754,29.7929776576076,1,16,1 -7848,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1383679208811,35.2678751229679,1,40,1 -7850,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2591825274285,34.7458614912941,1,36,1 -7852,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.86771246558055,36.0208731609687,1,32,1 -7854,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.382355076028,27.6361328109899,1,10,1 -7856,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.81709608295932,29.5023631337559,1,21,1 -7859,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.77007552119903,36.5693399727617,1,24,1 -7863,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4551770908292,34.4850389864965,1,40,1 -7866,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.64522125083022,31.495954109599,1,29,1 -7868,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4053649802227,35.9516607126381,1,29,1 -7872,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.93824372766539,31.4311954235113,1,22,1 -7879,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.63805170636624,30.0156847727809,1,29,1 -7890,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.228038786212,31.599585932145,1,25,1 -7891,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.60685293655843,35.6691959693402,1,26,1 -7892,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3415392267052,26.5992800379985,1,22,1 -7894,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.0935829307418,33.8473409045073,1,37,1 -7898,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.53982611070387,35.0693967400703,1,45,1 -7909,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.225803099107,33.1798882366623,1,18,1 -7910,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.9171803558711,36.277531768398,1,34,1 -7914,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2108069597743,29.7481749264255,1,23,1 -7916,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.74645106960088,35.0676542522719,1,33,1 -7917,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.98222627537325,33.0632858917803,1,20,1 -7923,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2777147502638,30.1775028820225,1,17,1 -7924,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1386828867253,35.8428860720488,1,46,1 -7926,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.95043223211542,31.8080871004287,1,18,1 -7927,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.79255931451917,31.5566107329055,1,16,1 -7929,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.046327552991,37.3365813468758,1,37,1 -7930,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4677252592519,36.2495451368721,1,38,1 -7931,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4093105564825,31.0486815436587,1,14,1 -7934,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.94598939735442,36.7177862717424,1,38,1 -7936,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4609788251109,32.2934697052943,1,22,1 -7938,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3871528736781,37.6592138370644,1,31,1 -7942,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1470008275937,33.3420519464812,1,34,1 -7943,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1111683775671,35.6383998084879,1,33,1 -7947,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3943754655775,34.1772557497476,1,29,1 -7948,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4166865835432,36.5410556859735,1,35,1 -7949,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.66923559713177,39.051818640189,1,28,1 -7950,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.83600782952271,33.5022620037638,1,19,1 -7953,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.52459334721789,31.2331589004819,1,25,1 -7955,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4269662320148,30.7285515017327,1,24,1 -7956,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4030709466897,30.309525554339,1,17,1 -7957,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.76866379706189,35.6898210147961,1,29,1 -7965,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1420619692653,30.7931426026201,1,23,1 -7966,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1934224858414,35.3077895578279,1,29,1 -7967,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.68241143738851,34.5559709370511,1,38,1 -7975,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.9320201065857,28.8600778100689,1,23,1 -7979,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.98090509348549,37.9701486336111,1,30,1 -7980,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.68862822651863,30.4593550470991,1,22,1 -7981,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.70685742329806,36.37645774868,1,39,1 -7986,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.468783098273,30.4125985846031,1,31,1 -7987,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.327462492045,37.0609380298431,1,36,1 -7988,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.60671470686793,39.2783968019757,1,42,1 -7989,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.61236904328689,27.0010394530196,1,19,1 -7992,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0425386673305,32.731669636095,1,27,1 -7998,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.97217516275123,34.831343085556,1,34,1 -7999,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.58198076719418,28.4851304671553,1,24,1 -8001,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2225077459589,33.7333972435358,1,29,1 -8005,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2058447140735,37.6432271943044,1,41,1 -8007,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.229528931668,30.387376025527,1,21,1 -8013,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.70119803980924,36.8208332141372,1,38,1 -8014,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.87958877929486,37.2123671629058,1,35,1 -8020,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0281452178024,30.0457024231564,1,31,1 -8022,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.064837312093,31.3236789511231,1,11,1 -8023,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1743440995924,37.2756110601174,1,32,1 -8025,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0878748691175,29.9481046882351,1,23,1 -8027,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2405676029157,31.1166472902158,1,35,1 -8029,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2842254431453,32.4879965218181,1,28,1 -8032,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4890629833099,29.8433618311912,1,24,1 -8040,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.65007488615811,31.9996951991652,1,20,1 -8047,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2876807979774,32.1749007923488,1,37,1 -8048,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.98551823757589,37.9604509273297,1,35,1 -8053,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.52232613647357,31.3533204145333,1,24,1 -8061,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.392035283614,32.8796174763627,1,15,1 -8063,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.64357238775119,35.1765788836157,1,43,1 -8070,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.67589720338583,31.0923792664684,1,28,1 -8071,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3930848597083,29.4834623246996,1,17,1 -8077,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1832597050816,32.271654233521,1,22,1 -8078,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.61218422790989,37.0280084821908,1,43,1 -8081,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.95425496995449,32.2508759868458,1,22,1 -8085,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2447352483869,31.5309963826415,1,18,1 -8086,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.99023196171038,33.6856347423504,1,30,1 -8087,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.18805673928,34.4316985282274,1,29,1 -8090,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.71551061538048,32.2744104230708,1,17,1 -8094,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1891904356889,29.6179972975634,1,17,1 -8095,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0127355887089,34.335979454813,1,21,1 -8097,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.95718412357382,29.0396178083779,1,24,1 -8099,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.2404684224166,32.1736248079155,1,26,1 -8107,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.5048540555872,32.8448201835322,1,28,1 -8111,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0725152527448,35.7475397553069,1,32,1 -8112,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3483317014761,30.1502345286148,1,18,1 -8114,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.93536237510853,31.2243853075475,1,31,1 -8118,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.94017563946545,28.9311376010831,1,18,1 -8121,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1011300466489,29.1652822532888,1,22,1 -8122,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0028078143951,34.3766125884323,1,32,1 -8124,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3803790672682,26.6509402101136,1,19,1 -8126,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4056410356425,29.8998027226733,1,14,1 -8130,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.67081144265831,34.6124432096394,1,28,1 -8133,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.90250513283536,30.8356637652319,1,22,1 -8138,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4180604221765,34.3818176609082,1,31,1 -8153,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.76891077682376,31.2614915592908,1,13,1 -8154,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.77097764331847,32.5909449507977,1,22,1 -8163,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.2491631354205,36.4110625232888,1,32,1 -8164,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.81535941758193,28.0354313297123,1,15,1 -8167,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.91534637659788,34.5534060838612,1,40,1 -8169,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0993769711349,28.9047256851826,1,20,1 -8176,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.638437098125,27.080541356315,1,23,1 -8181,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2076728537213,30.6925145392278,1,21,1 -8182,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.53109918953851,30.8470175662282,1,19,1 -8191,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.89614935265854,27.3216647750583,1,24,1 -8192,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.66610157140531,30.7136367436827,1,16,1 -8194,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.97694282513112,27.5812362416337,0,18,1 -8200,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.85404558572918,27.501233042906,1,17,1 -8203,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1415190396365,29.8409760936849,1,26,1 -8204,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.98128373082727,33.3078737200243,1,22,1 -8207,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.1124452380463,37.6581848739016,1,30,1 -8210,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4238675928209,37.6152314620893,1,30,1 -8213,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0683406251483,28.0344085439696,0,20,1 -8214,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0620149597526,33.1148352392136,1,30,1 -8224,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.75930796237662,34.1955994471842,1,34,1 -8226,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2490955099929,28.7306697488856,1,10,1 -8227,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.70619627204724,32.929716898226,1,33,1 -8228,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.73685837746598,28.3461646513933,1,20,1 -8230,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3138793180697,29.6471651776326,1,16,1 -8231,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1303000014741,29.8664775753101,1,16,1 -8235,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2270251980517,29.3742386588185,1,20,1 -8241,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.7168419950176,36.2169375093902,1,30,1 -8242,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3248211245518,28.4712495695009,1,22,1 -8244,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.52230416843668,33.8687598377873,1,37,1 -8246,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.95862815296277,34.707654288441,1,22,1 -8248,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.56552251009271,28.9288606405273,1,14,1 -8249,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4504411008675,35.6979614068194,1,31,1 -8254,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.2217922925483,35.4374972849621,1,26,1 -8259,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.50455961958505,30.7710238122037,1,19,1 -8260,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.50063717737794,31.8966080609992,1,39,1 -8262,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.87474379851483,30.4914544887369,1,19,1 -8263,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.53398469393142,29.9803690366462,1,16,1 -8264,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.87049075122923,33.939521887677,1,23,1 -8266,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3073841528967,31.514362192054,1,18,1 -8271,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.9836459022481,33.2030036970967,1,39,1 -8273,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.245857903501,30.2813443911887,1,17,1 -8284,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.98261834704317,31.9711775579901,1,36,1 -8287,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.72198416036554,33.6316899871834,1,27,1 -8290,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1011621344369,28.6183508538013,1,22,1 -8292,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1529359016567,31.5779123592024,1,17,1 -8295,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.2377095688134,31.7843211782644,1,36,1 -8297,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.457150476519,34.5172020248727,1,29,1 -8298,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0680684477556,36.6303303697532,1,28,1 -8299,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3945811495651,27.4915009016921,1,13,1 -8302,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.62573093082756,33.4189778928825,1,35,1 -8304,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.78332553175278,36.059172008038,1,24,1 -8310,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.63051135465503,27.7286126886755,1,17,1 -8311,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2265195241198,29.1006793451978,1,23,1 -8314,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3258606814779,33.9679146284569,1,30,1 -8315,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0017567717005,32.7217770831724,1,37,1 -8319,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.99958442966454,33.5890927614279,1,27,1 -8321,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.6975671662949,28.9738788625685,1,20,1 -8325,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.66037145326845,28.1846662816813,1,10,1 -8328,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.31682096445,29.2595616717104,1,25,1 -8332,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1574397250079,26.2920551191047,1,14,1 -8334,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.93580764275976,33.2453111584242,1,36,1 -8337,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.1752774196211,37.4873961644565,1,41,1 -8344,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.54782712529413,29.8548579200585,1,14,1 -8345,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.56863552611321,35.4929633858769,1,30,1 -8348,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.70197627088055,27.0159629903389,1,26,1 -8350,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.8611189047806,35.0568539397818,1,34,1 -8352,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0277857044712,28.0620370059874,1,12,1 -8357,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.97345025488175,31.0936257109867,1,17,1 -8367,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.387651263969,32.1752455080581,1,36,1 -8382,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.93580831144936,34.8444293889037,1,33,1 -8386,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.72135336790234,32.7150985050565,1,33,1 -8389,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.9882483559195,28.7656981171757,1,25,1 -8393,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.2718308237381,36.231011651782,1,32,1 -8398,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.56915314425714,27.5415960617721,1,18,1 -8400,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.94901201734319,34.134019508276,1,31,1 -8403,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.99204347492196,35.110255952552,1,28,1 -8404,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4543858002871,30.3299390270149,1,17,1 -8410,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4638430601917,34.8214434633873,1,28,1 -8412,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.92809988907538,28.6597872679225,1,22,1 -8413,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4760504225269,36.040297449553,1,24,1 -8416,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.7720462710131,30.1802150057383,1,14,1 -8418,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.2874007883947,34.6968592588923,1,24,1 -8420,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.61887763696723,27.9503606961364,1,16,1 -8421,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.6936683554668,31.9979026314512,1,24,1 -8422,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4376385232899,35.2406495076537,1,28,1 -8430,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.68332904810086,29.4969032706901,1,20,1 -8435,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3776838569902,29.5706489358517,1,18,1 -8437,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.84416018147022,29.6882529220115,1,19,1 -8438,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.368972110562,24.7942300832129,1,18,1 -8439,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.5156289183069,35.2770388279498,1,35,1 -8445,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.91550735430792,32.4672126091116,1,34,1 -8446,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.58512417296879,27.5036877231813,1,20,1 -8447,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3147768175695,28.7904935571228,1,22,1 -8450,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.267695014365,37.389264237829,1,35,1 -8451,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.2661388323177,35.3426785425735,1,26,1 -8454,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.57098710932769,32.5694760741358,1,28,1 -8465,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3010735367425,34.6428201113593,1,29,1 -8466,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.86908886977471,30.5332205855434,1,20,1 -8472,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2085868425202,30.2705312104305,1,22,1 -8474,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2989060007967,31.7883960978129,1,26,1 -8475,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.77608969109133,29.8256214279763,1,17,1 -8478,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3634785995819,30.0957729703014,1,20,1 -8479,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.79815731802955,28.1718441102327,1,12,1 -8490,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.76792162633501,35.6184497344443,1,35,1 -8492,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.94561369717121,34.7161927551736,1,29,1 -8493,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3153401343152,35.4932168497194,1,32,1 -8494,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.64618099085055,28.9520667795114,1,19,1 -8495,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.86920110788196,30.2340485574136,1,21,1 -8501,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3133023057599,30.4897550288972,1,10,1 -8503,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.74700108962134,33.8870425831263,1,35,1 -8504,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.2698170884978,33.4454613303582,1,32,1 -8507,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.77748412475921,30.6336942571175,1,23,1 -8508,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.9930398860015,30.8969333412931,1,17,1 -8509,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3718315970618,35.2333930985961,1,26,1 -8510,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0474336752668,34.5411391742201,1,29,1 -8520,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3327567123342,37.8325069200103,1,25,1 -8522,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.77001128019765,30.4511114761454,1,19,1 -8539,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.75924390880391,33.2791894118281,1,33,1 -8540,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.76289417152293,32.8600419657963,1,25,1 -8544,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.74367938935757,34.7405163544898,1,22,1 -8545,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3937302208506,33.1498436899058,1,27,1 -8546,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0619277607184,30.7839121449419,1,29,1 -8548,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3467212237883,30.1669309234876,1,31,1 -8553,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0242491045501,29.5128465644285,1,20,1 -8555,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.86383377551101,35.0530921299993,1,37,1 -8556,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2537324966397,31.49125837701,1,16,1 -8558,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.56491337553598,31.6727968060157,1,29,1 -8566,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.86583242379129,29.7596839494578,1,12,1 -8569,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.74285238073207,31.7692200167206,1,21,1 -8571,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3596245488152,28.9979970202827,0,14,1 -8573,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.99138868483715,29.8650589247521,1,23,1 -8574,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1535780646373,28.1983998857912,1,20,1 -8576,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1482607333455,27.3427761428079,1,15,1 -8577,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0449775971938,34.3843199181237,1,23,1 -8579,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.75790846627206,31.0543601157403,1,15,1 -8584,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4651756649837,34.9507988806765,1,27,1 -8586,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.81244432041422,26.0431528956845,1,20,1 -8588,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.52311756834388,28.5226825369192,1,21,1 -8589,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.76898638089187,33.60112689922,1,33,1 -8599,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0858158573974,29.1833819327069,1,20,1 -8601,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.60428811050951,26.8571557239034,1,16,1 -8604,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3785250722431,28.6255558992215,1,23,1 -8605,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.79707090347074,34.3876723884896,1,44,1 -8606,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4998753415421,27.5268007148936,1,19,1 -8607,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3164301749784,28.6133355408952,1,17,1 -8615,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3390087170992,27.585129964083,1,20,1 -8616,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.60646295151673,33.4404016686124,1,32,1 -8619,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.98857774748467,37.6614978057952,1,47,1 -8621,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1880944194272,30.5259344781321,1,20,1 -8622,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.97774662775919,29.8248795121323,1,21,1 -8623,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.89029286452569,28.5208985645278,1,19,1 -8625,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.58488133409992,36.5568901450258,1,37,1 -8626,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.89196050330065,30.1403066210635,1,18,1 -8627,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.84974078717642,30.540323168997,1,18,1 -8629,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.98779489658773,32.0029965047591,1,21,1 -8630,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.0271200244315,30.3227834923213,1,18,1 -8631,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.3714102494996,29.7921604366332,1,18,1 -8635,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2751214746386,28.7048814435217,1,22,1 -8638,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.59491252666339,29.9979191425522,1,18,1 -8639,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3935943923425,35.2235385295354,1,31,1 -8640,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2459326970857,33.1878854434751,1,23,1 -8647,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.61123173171654,29.8640224681428,1,21,1 -8649,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3745305491611,37.6047142691573,1,43,1 -8653,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.53663792670704,31.3892741898045,1,28,1 -8656,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.7547325824853,35.6448756300082,1,31,1 -8659,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.98883216502145,33.5310923706209,1,29,1 -8660,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.52670181239955,36.272781525631,1,41,1 -8664,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.64140197308734,31.415807737412,1,16,1 -8665,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.93419049726799,37.2722732567677,1,39,1 -8666,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.94942948548123,37.8708593172202,1,27,1 -8667,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.77486209897324,37.030659877656,1,34,1 -8671,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4064725285862,37.7591665094219,1,42,1 -8672,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1619337636512,33.6073525424977,1,35,1 -8673,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.336391385179,31.6490759508234,1,20,1 -8674,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.4228349654004,31.1017674565641,1,16,1 -8676,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.90115241077729,36.192331657018,1,28,1 -8684,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.68124670512043,35.7410011481061,1,32,1 -8686,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3192066510674,34.2554849254248,1,45,1 -8689,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4049948600587,36.1466953045793,1,32,1 -8690,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.3388933779206,31.137215676028,1,20,1 -8692,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1128812276293,31.4517988348856,1,16,1 -8693,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.95252446853556,33.6309425451402,1,34,1 -8695,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0157859034371,34.8725849771344,1,33,1 -8698,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.60106441401877,26.6673517533766,1,17,1 -8700,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.61512379487976,33.6274877106281,1,23,1 -8708,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1528937853873,30.8782236581865,1,15,1 -8715,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.97522815130651,35.658496771862,1,29,1 -8721,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.023866747506,34.0062345083264,1,27,1 -8725,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.80584817402996,32.6407146284099,1,32,1 -8726,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4779472039081,35.8550741187793,1,30,1 -8730,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.72486864845268,35.8641826420616,1,40,1 -8734,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.98701263498515,35.5187634046445,1,32,1 -8742,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.381080058869,36.418921700936,1,45,1 -8743,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1077703128103,33.7140936244668,1,38,1 -8751,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.99530224385671,34.2067016306455,1,38,1 -8752,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.3786566930357,31.2444077899506,1,21,1 -8754,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.95970662962645,36.2826170659855,1,27,1 -8761,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4644995024428,35.6184385885534,1,35,1 -8762,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.95762041234411,31.2824284672785,1,26,1 -8764,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4666334772483,35.5184758258717,1,30,1 -8766,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.3470589218196,31.874691832748,1,22,1 -8767,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.8220602418296,30.8839998052263,1,21,1 -8771,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.65662132459693,30.5769460932797,1,29,1 -8774,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.94271899666637,31.9414322083024,1,27,1 -8780,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.72257090755738,30.104256225597,1,22,1 -8783,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.86548364255577,29.3798349153835,1,24,1 -8787,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4512285240926,36.5395108251022,1,25,1 -8790,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1735067947302,32.434198538666,1,20,1 -8792,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1087089648936,35.1461706503219,1,37,1 -8797,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.87568019190803,29.9241740794537,1,23,1 -8803,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1962705273181,32.8642913528453,1,19,1 -8809,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.75707314978354,32.4164978542853,1,26,1 -8812,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2205103430897,36.6344179397994,1,40,1 -8813,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.248924436979,29.6590785741972,1,28,1 -8814,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2548821559176,36.9418516058203,1,37,1 -8816,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.300907375291,27.8618553511967,1,21,1 -8819,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0088880793191,36.6932789913219,1,37,1 -8827,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.4066035584547,30.6904839407681,1,15,1 -8830,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.71918570599519,37.8510905932439,1,40,1 -8831,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.96299292030744,36.3523843027927,1,29,1 -8834,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.631167544052,36.4574056463029,1,45,1 -8835,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1354254803155,30.2909262242883,1,29,1 -8837,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3173952470534,34.0868942359584,1,29,1 -8840,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0996762008872,34.351165965506,1,35,1 -8843,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.83457661350258,32.1693366315329,1,26,1 -8844,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1230656306725,33.8266945476603,1,41,1 -8856,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.51603867230006,29.3962622205732,1,29,1 -8857,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.96935902442783,29.633874822757,1,28,1 -8858,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.66161313815974,34.9641813257817,1,36,1 -8859,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.59468767093495,35.5163341388289,1,41,1 -8860,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.75037324405275,31.6082725231845,1,18,1 -8865,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2470337066334,32.6820346707089,1,14,1 -8869,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2070690733381,35.1978627621202,1,30,1 -8872,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.52286291867495,36.8207241496373,1,38,1 -8874,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2462466582656,37.5724893485932,1,36,1 -8875,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.86223722109571,30.2935866103193,1,15,1 -8876,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.76499584200792,30.254320591611,1,20,1 -8879,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1370746667963,29.7958707887358,1,14,1 -8881,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.9941445547156,29.4414198863249,1,22,1 -8882,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4984773655888,35.9535620651662,1,36,1 -8883,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.56382503220811,34.0446085047638,1,41,1 -8887,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0285047164652,37.9183002580674,1,35,1 -8888,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.5676695171278,29.2795110667113,1,20,1 -8894,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.96968071325682,36.1969761375688,1,31,1 -8895,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.314668496605,35.4709325599749,1,39,1 -8900,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.49636777048,30.0896899807574,1,19,1 -8903,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3197435010225,34.6583148568266,1,39,1 -8906,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.93873930047266,32.0651676760114,1,19,1 -8910,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.3008096676785,29.1331136439309,1,17,1 -8911,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.83015646226704,30.9939267338331,1,22,1 -8912,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.76907296781428,33.0912154859673,1,20,1 -8913,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.76583011448383,29.7987793004645,1,26,1 -8917,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1878717942163,32.233307048253,1,16,1 -8918,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.61578393867239,35.3941276647372,1,56,1 -8924,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.95727243064903,32.1957953899705,1,20,1 -8925,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.69336595479399,36.9446805825399,1,47,1 -8928,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.94347231136635,29.970303182157,1,21,1 -8929,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0598181930836,34.3010893452984,1,42,1 -8930,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.61173285497352,30.3537593212634,1,21,1 -8931,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.50225210981444,36.1671204197018,1,37,1 -8935,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.53297125012614,36.0931799883296,1,33,1 -8936,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3525222993921,35.7021678291703,1,34,1 -8945,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.94817959866486,30.3218509182371,1,15,1 -8946,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.77400472713634,30.8969386870204,1,21,1 -8952,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0196598151233,35.1253748940548,1,23,1 -8954,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.0773559750523,31.9695867272588,1,12,1 -8956,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1919859275222,33.7059071713769,1,37,1 -8958,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.86459457292221,30.8225527030495,1,23,1 -8966,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2226550618652,29.8625029430058,1,19,1 -8970,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2734838032629,29.2960785202707,1,22,1 -8973,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.6557938575279,30.9365872526287,1,14,1 -8975,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.50812194403261,30.246225630665,1,20,1 -8978,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0435138316825,34.2672841880211,1,32,1 -8979,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.61446454143152,32.1519698432814,1,25,1 -8980,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.56660573277622,31.3488876501903,1,22,1 -8983,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.61540982197039,33.9199607912909,1,32,1 -8985,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3703724951483,36.2417888761293,1,30,1 -8987,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.348156850785,35.9971164325163,1,28,1 -8989,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1480366699398,37.8541578181466,1,32,1 -8993,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1969749126583,37.1465115095165,1,30,1 -8995,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.66969086742029,32.1636572892638,1,19,1 -8996,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1463985207956,31.3843554902317,1,32,1 -8997,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.6411442309618,37.7470680770427,1,43,1 -8998,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1582788908854,30.0499942732482,1,21,1 -9001,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.99734436045401,37.5955080117719,1,36,1 -9005,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2682380243205,28.2983376696997,1,34,1 -9012,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.53583915135823,35.6862714761705,1,23,1 -9019,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3771439895499,35.2744934786317,1,41,1 -9021,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1687446529977,37.6567340230038,1,41,1 -9024,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3290257058106,34.450645126114,1,32,1 -9027,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1620586684439,29.8819045632569,1,19,1 -9028,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2327893828042,29.479707381552,1,8,1 -9034,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4234531491529,34.7886769359029,1,29,1 -9035,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2595106803346,32.7468509008456,1,13,1 -9040,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.4779129049275,30.8159282581583,1,23,1 -9041,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2700365493074,28.5159064989172,1,31,1 -9043,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1917262333445,32.4526887404706,1,20,1 -9047,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.56046074070036,34.8376637107808,1,40,1 -9048,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.78811376355588,31.2268732095889,1,16,1 -9052,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.71584726218134,36.3686998193303,1,36,1 -9056,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.73738303687423,29.7039893892874,1,22,1 -9057,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3736894170288,38.0179428684684,1,27,1 -9060,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.85672053159215,38.4456504371563,1,47,1 -9064,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.75755605101585,30.5346186762485,1,20,1 -9067,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1442386636045,27.2004295908857,1,19,1 -9071,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.97960906778462,31.6608165608501,1,20,1 -9074,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0087409710977,37.3809832531216,1,23,1 -9076,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.4026956495363,30.153352024163,1,20,1 -9077,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.90496203466319,30.3731554303771,1,18,1 -9082,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.67791656288318,35.2558786357052,1,34,1 -9086,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.0414959178306,31.367942426944,1,25,1 -9089,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.63895589928143,33.2505017163473,1,16,1 -9093,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.69252106593922,32.235487255589,1,26,1 -9094,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1602776355576,33.1857158754821,1,31,1 -9097,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.53535046172328,36.7921197827656,1,36,1 -9098,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.4553511517588,29.5899584724172,1,13,1 -9100,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0329533941112,37.3273765752469,1,36,1 -9103,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.70364944008179,34.5072101596894,1,30,1 -9106,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2900216185953,32.4303321976714,1,28,1 -9110,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.83495328575373,30.8936410703574,1,20,1 -9116,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.67274934356101,29.2086395423995,1,20,1 -9117,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.92880948004313,29.7774229496053,1,19,1 -9118,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.70274901646189,29.5005575554799,1,22,1 -9121,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.56513337488286,36.0783857823423,1,48,1 -9136,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.5255450878758,30.1559327714013,1,19,1 -9142,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3649198911153,33.2209905559345,1,36,1 -9143,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3302751872689,26.3342785454985,1,13,1 -9145,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4944856017828,29.2842543597054,1,15,1 -9148,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.61209055269137,32.5366952469412,1,27,1 -9150,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2987795090303,25.4595102240545,1,11,1 -9156,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.92870750254951,32.5560120638721,1,28,1 -9159,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.95916399592534,33.1521392322504,1,24,1 -9160,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.50361213134602,34.1872409543875,1,22,1 -9165,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.99160505621694,28.6402649573611,1,30,1 -9173,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.60877758567221,28.4152430241357,1,12,1 -9176,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.89460325380787,31.3979547745103,1,28,1 -9177,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.93415524577722,26.5647597075719,1,18,1 -9179,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.0966165212449,29.0589591873118,1,15,1 -9182,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4049194818363,28.3135141476043,1,16,1 -9186,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2307206150144,27.6799503886798,1,13,1 -9194,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3175520158838,25.9740182461479,0,14,1 -9195,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2843434719834,25.9721312503032,0,17,1 -9197,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1316103783902,30.5816021958624,1,37,1 -9198,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4564444271382,28.8203751334359,1,12,1 -9200,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1134195099585,33.8772901982909,1,30,1 -9205,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.83847587741911,27.7844606537879,1,15,1 -9208,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.78598104347475,26.4410432928146,1,10,1 -9209,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0755884221289,30.4263648319383,1,25,1 -9210,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1862927055918,29.0241866852846,1,18,1 -9212,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.95817575603724,31.8897420968476,1,29,1 -9218,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1470404111315,33.6292525321847,1,27,1 -9223,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.0088737381157,25.7889405032443,1,14,1 -9224,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2948853736743,24.6352572155029,1,10,1 -9225,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3930325179826,26.754788742242,1,15,1 -9226,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1669964601751,33.4105067959274,1,19,1 -9229,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.4708160450682,32.2967216230463,1,19,1 -9230,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.832077489933,32.0217641127796,1,25,1 -9233,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.99998492747545,28.9740052058451,1,8,1 -9234,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3090316196904,31.0672859738773,1,29,1 -9237,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.85853797406889,29.3491905192895,1,14,1 -9240,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1239325902425,30.0155057269597,1,31,1 -9242,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.90156496758573,27.7206681785507,1,15,1 -9243,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.0529518062249,25.8612688426169,1,14,1 -9247,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.79260494466871,28.3326822876934,1,20,1 -9249,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.54722060775384,31.1893397767576,1,28,1 -9258,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.713896561414,33.333644477011,1,23,1 -9263,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4803342947271,27.9298965343814,1,16,1 -9271,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.66876246104948,32.8351020579797,1,26,1 -9279,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3700752526056,35.8643132937106,1,39,1 -9284,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4761919949669,28.4243940291151,1,17,1 -9285,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2897396043409,32.0629446807184,1,33,1 -9291,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2655597289559,31.6775105391524,1,33,1 -9292,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2014584923163,28.5502228247924,1,15,1 -9293,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.073885001475,31.4990336089838,1,20,1 -9300,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.80534446542151,33.5199629473464,1,36,1 -9301,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4396248026751,24.1878068202373,1,15,1 -9304,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0866884910502,31.1778039830357,1,25,1 -9308,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.50521115283482,30.6855788854698,1,26,1 -9311,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.451269605197,31.9643087588472,1,33,1 -9315,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1677360406611,28.0455805166421,1,15,1 -9317,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4273225294892,28.651597362325,1,9,1 -9322,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1871943778824,31.2740202731565,1,20,1 -9325,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2735447483137,31.3665890667322,1,22,1 -9328,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.63866067724302,26.6646731573069,1,22,1 -9329,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.78029077523388,26.5198670307153,1,15,1 -9330,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.54279407113791,30.0961232281909,1,30,1 -9333,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.63629138143733,28.0824983979844,1,16,1 -9336,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.64743614592589,28.6311273600559,1,4,1 -9338,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.78974704118446,28.8958613739654,1,8,1 -9339,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3913452113047,26.2444291489263,1,11,1 -9341,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0447992824484,31.3455428601784,1,26,1 -9344,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.81658243900165,27.647187421758,1,10,1 -9347,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.65587870939635,28.9786250891716,1,10,1 -9353,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3416563076898,32.4390205796474,1,21,1 -9357,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.83048655069433,25.7492424025104,1,11,1 -9363,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.73287612688728,27.2116261575642,1,10,1 -9364,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.86499270820059,24.7792548581794,1,13,1 -9365,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.50576210417785,32.3805899204955,1,31,1 -9368,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.78166406555101,30.1462689700983,1,21,1 -9369,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.69467234797776,33.0151470462461,1,20,1 -9373,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1237642031629,32.6625942723984,1,19,1 -9375,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.62158951233141,31.5546690739073,1,16,1 -9379,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.15506218886,27.9859161291325,1,15,1 -9382,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.58993413276039,28.1525777776607,1,10,1 -9387,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.59891462721862,26.3498608158595,1,17,1 -9388,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.83164521027356,24.5599879537337,1,16,1 -9390,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.82818671013229,27.8229048487509,1,14,1 -9392,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2124926429242,31.7676787033286,1,22,1 -9393,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1229713177308,28.2086610218223,1,12,1 -9394,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.327973407926,29.6937246381665,1,22,1 -9395,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.76966089033522,35.0903051926185,1,28,1 -9397,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1497006961145,31.7747033447869,1,22,1 -9404,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2888987902552,31.0401312275598,1,27,1 -9406,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.0485173303168,28.4124930227433,1,14,1 -9413,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.58983801724389,26.2122078651849,1,18,1 -9420,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4273641684558,28.8061186556186,1,16,1 -9425,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4793196606915,27.1565160621871,1,11,1 -9426,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0551130352542,32.9904473669023,1,17,1 -9428,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.89690672676079,32.5648385369694,1,19,1 -9429,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3648098604754,33.4993644594255,1,24,1 -9432,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.92285351455212,34.3769350948888,1,27,1 -9436,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1010617672,34.0765073837377,1,26,1 -9439,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4008683227003,25.1742484381272,0,22,1 -9440,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.69057253771462,28.0451052759964,1,31,1 -9443,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.4338081288151,34.0881542768402,1,26,1 -9445,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.87205572589301,28.3333122197695,1,18,1 -9450,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.018116487423,32.8751976611717,1,16,1 -9454,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.57035705214366,27.6298136522415,1,15,1 -9455,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.6681012257468,25.7997232434542,1,6,1 -9471,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3885300103575,28.5089623885608,1,29,1 -9484,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3938317047432,29.6383146478225,0,15,1 -9485,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3304470437579,28.5040788563392,0,18,1 -9488,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0658245319501,32.4849649513352,1,23,1 -9495,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.90163412783295,28.0025419344839,1,23,1 -9499,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.74139264598489,33.3529960465337,1,21,1 -9501,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1700754771009,29.8521436707564,1,22,1 -9502,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.97422333620489,33.291141271377,1,28,1 -9511,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0282313777134,32.7539581760761,1,21,1 -9516,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.95810744678602,27.1112090124957,1,18,1 -9518,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2858249919955,26.4580616168617,1,12,1 -9525,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2741690932307,26.9034279648265,1,11,1 -9530,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1949676242657,31.0688248630559,1,27,1 -9532,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3567110097501,30.3129209597647,1,14,1 -9534,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.92282502446324,27.6086336049674,1,18,1 -9538,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.50144740124233,31.4678910663779,1,23,1 -9541,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.51315369596705,32.100974193206,1,19,1 -9543,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3519187644124,28.6197474457917,1,14,1 -9547,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.5075387947727,28.9101738167881,1,15,1 -9548,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.9033499439247,32.6056543743784,1,32,1 -9555,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.6718553819228,32.3409251255871,1,14,1 -9561,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.67515426874161,27.2842070081138,1,13,1 -9562,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2342350436375,30.7146150894705,1,18,1 -9564,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.702289840905,34.134070082884,1,21,1 -9568,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.0294261504896,25.8024809837708,1,11,1 -9571,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.80542584788054,29.0781806667587,1,11,1 -9575,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.4119508503936,30.6983060653536,1,32,1 -9579,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.52295673964545,27.6842753263776,1,14,1 -9580,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2227274978068,30.9638389022392,1,23,1 -9581,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.65384469740093,32.3614331853456,1,27,1 -9583,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.465664739022,31.0786680319816,1,28,1 -9585,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.79943329561502,32.5637861236695,1,25,1 -9590,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3035831861198,32.0179272791618,1,21,1 -9595,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4923473359086,28.9311667725951,1,17,1 -9608,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.55523661384359,29.0350960368576,1,25,1 -9612,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.92157583218068,27.3163744857156,1,22,1 -9623,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4970911224373,27.2941647562687,1,15,1 -9625,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3977654268965,26.6819774226884,0,8,1 -9627,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.2105639060028,29.8368194837263,1,26,1 -9631,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.94642655132338,25.6627021479058,1,7,1 -9635,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0289082305972,28.6123097353595,1,22,1 -9640,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.71391466981731,25.8274366544102,0,12,1 -9642,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.65649884962477,31.242153962206,1,30,1 -9644,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.70421966351569,26.9577089359545,1,13,1 -9646,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.232030272251,26.3347422752801,1,9,1 -9650,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.77341168071143,24.1038310495699,1,13,1 -9651,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.87633329653181,30.3167139868777,1,25,1 -9653,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.254439876182,22.0761169866917,0,19,1 -9654,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.2777406803798,30.7470530089536,1,27,1 -9658,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0574863911606,25.1046682347813,1,10,1 -9659,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.50432275282219,25.2028630310586,1,13,1 -9661,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0966644708533,25.9257729498349,1,30,1 -9662,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2191391845699,25.6281952676105,0,17,1 -9663,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.93256046203896,31.8349008085967,1,17,1 -9664,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2277934814338,24.5487131262956,0,8,1 -9665,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.88875220809132,26.8332106199481,1,24,1 -9667,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.91253413585946,24.6921561667867,0,14,1 -9671,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4185559460893,25.9604508627272,1,9,1 -9673,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.50758473528549,27.4078638686323,1,12,1 -9675,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0986252708826,28.9014018462673,1,14,1 -9676,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.85623625735752,30.0107863056695,1,21,1 -9677,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.67533133551478,23.4800685264409,1,12,1 -9679,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.84350737649947,33.240900740741,1,19,1 -9681,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3429722448345,31.1836414794628,1,24,1 -9682,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2557433936745,24.0260757745245,0,17,1 -9685,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.83888488449156,23.9485350102397,0,17,1 -9686,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1127063159365,29.8637405826017,1,17,1 -9687,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.72879462875426,29.9793567724214,1,22,1 -9690,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.93741256603971,29.0778320740389,1,14,1 -9692,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.63304754975252,30.9471873119107,1,21,1 -9697,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0828249694314,25.6369576989016,0,17,1 -9701,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.65706183132716,28.344919176305,1,7,1 -9705,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.306559575256,26.3972750150096,0,14,1 -9707,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.92442947532982,31.2961403747863,1,30,1 -9708,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1844942872413,31.9566215422672,1,21,1 -9709,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.8624603045173,26.1275978770612,1,18,1 -9711,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.90447264630347,30.5112833011383,1,25,1 -9712,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.2482936715242,30.2174242584985,1,23,1 -9715,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0594761469401,28.8239409815435,1,20,1 -9722,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.87567965406924,26.6645815793972,1,8,1 -9723,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.51824192749336,27.0635476917234,0,12,1 -9724,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.60830746870488,32.0921564188569,1,18,1 -9726,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.52495616208762,33.1406118152862,1,15,1 -9732,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.73562987381592,29.8298463285542,1,19,1 -9734,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.68554036226124,25.2450546393269,1,10,1 -9736,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0821536662988,26.0989517611054,0,13,1 -9740,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.67536014760844,24.8045228833596,0,15,1 -9742,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.56841946300119,25.1726715561319,0,9,1 -9744,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4814981985837,25.5253628501432,1,12,1 -9746,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.53859767527319,28.721121258181,1,19,1 -9750,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0315148727968,25.9429616085244,0,10,1 -9751,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3323882813565,23.4365908922982,0,13,1 -9755,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0729835890234,32.7783582782962,1,16,1 -9757,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3078422534745,28.6044927805286,1,23,1 -9758,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.9389710992109,23.7731438482597,0,17,1 -9765,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4814824378118,30.0768878174912,1,21,1 -9766,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.1298415842466,25.0133846088507,1,12,1 -9774,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.1945202404168,26.9976430798902,0,11,1 -9776,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3461760177743,30.1379360308213,1,22,1 -9782,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3581752018072,26.3138101143606,1,9,1 -9783,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2747331820428,25.7787377324824,0,17,1 -9784,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.62010572198778,28.4434885983769,0,15,1 -9786,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4109062496573,29.288837629476,1,23,1 -9787,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4638615997974,27.4492659266347,1,26,1 -9789,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.8052338140551,23.0462131191264,0,13,1 -9792,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.74320350168273,29.6614127605609,1,16,1 -9793,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.7199818440713,28.2032201518493,1,18,1 -9795,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.69494046084583,31.8987435428783,1,20,1 -9802,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.97873507812619,32.2322352024026,1,16,1 -9806,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.96733497385867,27.2266764595751,0,19,1 -9807,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3272986903321,27.1186405168507,1,14,1 -9812,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.52114093257114,27.8119628019483,1,27,1 -9815,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.50217972020619,25.1301000479276,0,12,1 -9817,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0748591027223,25.0576723439065,1,16,1 -9819,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1003898950294,28.9499517417331,1,20,1 -9823,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.78874966618605,22.3496307824181,1,11,1 -9825,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.64035738725215,26.8315880235441,1,25,1 -9827,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0757114647422,26.4714176780038,0,9,1 -9837,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.6457182103768,31.652438321531,1,15,1 -9840,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.96642779791728,23.7768261535967,1,6,1 -9846,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.5732409437187,26.409735582429,1,9,1 -9848,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.68544192402624,26.2863519998198,1,13,1 -9849,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.57502505299635,27.7981300996038,0,13,1 -9852,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.2661040651146,30.3016459514583,1,28,1 -9857,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3083660644479,28.9546298872094,1,19,1 -9863,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.91280693211593,26.9650136757036,0,14,1 -9864,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.91937864851207,23.6638873966376,1,16,1 -9866,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.89219690230675,28.5755678497267,1,28,1 -9872,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.1880988185294,25.1430303866464,0,16,1 -9873,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.1833330634981,26.0233567999569,0,12,1 -9878,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0542323815171,25.9311137985812,0,22,1 -9880,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.1140702820849,23.6184935019266,1,10,1 -9883,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.83612430095673,23.8813056484429,0,7,1 -9887,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.71833730419166,32.7766149582769,1,18,1 -9888,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.71973125310615,29.6758914469975,1,21,1 -9889,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.54376074625179,26.7667362168281,1,8,1 -9892,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.89737377595156,27.2644317851293,0,8,1 -9896,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.84640921186656,24.9746338927393,0,16,1 -9902,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1674131245818,29.2157702965203,1,16,1 -9903,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3367650755681,29.5035813237931,1,17,1 -9904,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2848481035326,24.4457988073324,1,17,1 -9906,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.68183146417141,26.859359798925,0,18,1 -9907,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.68778046150692,31.8997509198766,1,15,1 -9908,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4848589824978,26.225137478363,0,10,1 -9913,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3921246253885,29.1000408251,1,22,1 -9922,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.201996907359,25.4449713978068,1,13,1 -9923,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.51635775761679,28.5848364493091,1,17,1 -9933,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.95930049591698,29.7860175057498,1,23,1 -9937,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.60376643110067,26.9245391838487,1,12,1 -9938,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2999054112006,25.2406929921065,0,10,1 -9939,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.86062126513571,29.276033829013,1,22,1 -9940,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.53751518717036,30.6035349779904,1,17,1 -9944,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2274161942769,25.7243068925647,1,13,1 -9945,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3098328942433,31.9224743817425,1,26,1 -9955,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.65181279880926,27.3781192684129,1,14,1 -9956,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.71047782734968,30.1780763414784,1,19,1 -9957,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.5667121829465,30.0044152980661,1,24,1 -9959,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3898577007931,25.8081730121463,1,14,1 -9961,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.5987522858195,26.565045153751,1,8,1 -9965,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3345628182869,25.0128679934074,1,13,1 -9971,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0655830258038,27.6976477712719,1,6,1 -9975,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.1475692791864,26.0444634408851,0,15,1 -9978,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.99585084244609,23.5265345813169,0,18,1 -9979,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.6127429024782,33.1707737362456,1,20,1 -9980,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3367108944803,24.5829230943876,0,15,1 -9987,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3988130481448,24.6753467386176,1,17,1 -9990,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2714864308946,24.3948013183926,0,8,1 -9998,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.191566779511,25.5810484656633,1,8,1 -10000,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.89122096262872,24.7811042132871,1,20,1 -10001,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.1650295644067,25.7309752392334,0,18,1 -10002,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.016388221411,25.6279289491453,1,9,1 -10004,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.50430496688932,30.3402595211316,1,27,1 -10005,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4796818362083,27.6490926377163,1,21,1 -10006,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.74151510675438,27.3242990790618,0,16,1 -10007,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2812002853025,24.8351890673725,0,12,1 -10009,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3610815410502,24.7196222835513,0,14,1 -10011,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1503522326238,28.5229419054559,1,16,1 -10015,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.217118533561,28.0332376241867,1,32,1 -10019,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0116265539546,25.5071661155272,1,12,1 -10023,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1266854542773,28.2409268894364,1,19,1 -10028,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3894994978327,33.4795721184347,1,21,1 -10029,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.77606883668341,31.4877524965538,1,14,1 -10035,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3742442913353,30.3476249634005,1,17,1 -10036,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.83228932344355,31.3337362643617,1,18,1 -10039,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.76911275787279,28.5266523062438,1,19,1 -10053,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.91568167856894,24.2073422231856,0,15,1 -10057,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.240113419015,25.5683696405782,1,12,1 -10059,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0130833638832,29.0650903064608,1,27,1 -10060,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.87276623118669,30.0752999835844,1,21,1 -10063,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.80302800401114,29.4478736151302,1,17,1 -10066,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.2960380571894,31.6805806101986,1,27,1 -10067,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.82094116415828,27.1133804065102,0,10,1 -10072,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.98411113512702,28.826892069737,1,15,1 -10073,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4351809395012,25.1881888145485,1,9,1 -10074,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.55613232008182,24.7110020090685,0,17,1 -10076,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.91126068192534,25.7899004357685,0,7,1 -10078,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.78312662267126,29.2711976334674,1,12,1 -10083,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.6768800932914,31.0644293637424,1,26,1 -10094,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.65446977270767,29.6772731256071,1,24,1 -10095,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4495740481652,26.5806376376205,1,8,1 -10098,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3768986712676,28.4593282102978,1,25,1 -10099,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.86142968968488,27.5073959269609,0,13,1 -10100,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.271730898181,29.5020487023788,1,20,1 -10101,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3180508348159,21.9887081897606,0,15,1 -10111,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.76566504966468,28.7244362546781,1,15,1 -10113,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.228080634959,25.5103388811789,1,20,1 -10115,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.67743496992625,26.022960830496,0,18,1 -10119,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0029893622268,19.54201118831,0,9,1 -10120,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.57615937199444,29.0437444701289,1,15,1 -10123,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.50701506622136,22.0926741986925,0,12,1 -10124,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.56289994344115,27.4595642836685,0,15,1 -10128,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0329446024261,26.3072084620566,1,14,1 -10130,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.57625604094937,19.5771971740321,0,6,1 -10132,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2242026107851,25.1113136876652,1,15,1 -10133,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.393836265197,27.8385036408244,1,13,1 -10135,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2105328084435,22.4295319721637,1,14,1 -10136,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.86767007410526,23.25627837089,0,12,1 -10137,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.56544246966951,26.3715609467184,0,15,1 -10139,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.99434976838529,24.0858259111562,1,10,1 -10143,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.58799007278867,25.513497264063,1,20,1 -10144,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.54038800951093,27.9167860602849,1,15,1 -10148,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.4567491714843,22.2226501497808,0,7,1 -10149,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.72054216242395,26.3590259448564,1,15,1 -10153,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2148520902265,27.2110038727185,1,10,1 -10157,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.68455186439678,22.2064507630079,0,10,1 -10160,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0349584864452,20.8146928231055,0,9,1 -10165,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2676731336396,26.7839386147676,1,17,1 -10172,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1017264002003,20.1768156357358,0,9,1 -10181,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.70096312672831,24.1540964462651,1,17,1 -10182,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.5023981356062,20.8622452215602,0,9,1 -10186,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.99555131304078,25.3400349460823,1,24,1 -10188,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.86020258348435,25.629616274784,0,16,1 -10193,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.57889635162428,25.8796623701085,1,17,1 -10198,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.73444893793203,28.5498519460698,1,11,1 -10200,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.68263198737986,19.0180756741168,0,6,1 -10206,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.97850517858751,25.2654643327479,1,10,1 -10209,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.50795843615197,21.4782998360354,1,7,1 -10213,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3309726952575,27.9219572412104,1,19,1 -10214,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1832890945952,21.9911124570653,0,13,1 -10215,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.5846947459504,24.5785257897205,0,19,1 -10217,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3523417054676,22.2090063024504,0,5,1 -10225,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.50832915841602,22.6717919789401,0,10,1 -10227,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0115653767716,26.2840393931485,1,12,1 -10230,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4869136828929,25.6204380764536,0,11,1 -10231,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.52115333080292,22.7339281745374,0,5,1 -10234,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.1362397216726,26.4240638164702,1,15,1 -10235,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3773108532187,23.5566304489739,0,4,1 -10236,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0167990904301,27.1022477472745,1,20,1 -10250,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.4530652153771,22.6976318661179,0,10,1 -10251,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0900712278672,26.185533798608,1,19,1 -10254,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.88841383787803,22.0570086486759,0,9,1 -10255,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4621999189258,25.0741943543449,1,17,1 -10256,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0719085147139,22.0489776371261,0,6,1 -10259,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3149231560528,26.475386113583,1,9,1 -10260,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4500149292871,26.4741241572659,0,11,1 -10270,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.99557176395319,24.8437200448317,0,15,1 -10271,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4642348184716,28.0079240414088,1,16,1 -10276,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3843644885346,20.283505658046,0,6,1 -10279,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.61673167720437,25.9904200523192,1,14,1 -10281,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.81751113082282,21.6314909041303,0,8,1 -10284,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.82526086107828,25.4427872928328,1,11,1 -10291,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.75776764238253,21.8009225347028,0,8,1 -10295,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3609386240132,27.9949323782014,1,14,1 -10297,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.4031611275859,20.5724953625042,0,6,1 -10298,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.95422121160664,21.4965981354541,0,6,1 -10299,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.2918175281957,22.4693673977342,0,7,1 -10300,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0120343298186,25.1163126457186,0,4,1 -10303,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.57156858942471,23.2984949090327,0,4,1 -10304,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2513820242602,26.7116492290605,0,13,1 -10308,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.67675225366838,26.3826051960965,0,13,1 -10309,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.59128643176518,28.1277992572924,1,11,1 -10310,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.67810354242101,27.3560556114001,1,12,1 -10317,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3976701020729,24.6759826114215,0,8,1 -10319,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.53595032100566,23.27629953865,0,6,1 -10326,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.63142015086487,23.101257450449,0,8,1 -10331,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3664465129841,26.2872431982327,0,18,1 -10332,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.58738006278872,20.1317174555485,0,9,1 -10333,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.4837968258653,19.8193499443931,0,6,1 -10335,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.82048407546245,22.8424120038672,0,8,1 -10336,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.62278866139241,21.9990066242691,0,9,1 -10337,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0215766350739,22.3976137121815,0,7,1 -10338,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.87122813356109,22.2688899639364,0,3,1 -10340,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.70800041942857,26.8183937309836,0,12,1 -10341,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.6174002464395,20.0993494694422,0,8,1 -10349,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2021043181885,26.1005856417554,0,14,1 -10353,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3126748693176,22.4756917690403,0,5,1 -10355,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.72309845965356,20.4750463085531,0,4,1 -10357,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.2670870339498,18.9803479301555,0,9,1 -10358,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3705757684074,22.0898100407414,0,7,1 -10360,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3520308956504,22.4692981217732,0,10,1 -10362,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.81588885677047,25.4325096479452,0,8,1 -10364,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.96312490152195,25.4837940289407,1,12,1 -10368,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.63926642038859,18.9144070854473,0,8,1 -10370,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.70027739624493,21.1491164809607,0,13,1 -10372,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.2696377085522,19.3303046513989,0,14,1 -10375,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.51709608361125,25.2876544616936,1,15,1 -10376,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.66350071970373,20.690560189122,0,7,1 -10378,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.39363820781,21.6780245635415,0,9,1 -10379,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2265363743063,27.7089181360691,1,12,1 -10380,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.81173539021984,25.4218877869291,1,14,1 -10385,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0277687702328,28.1720703492492,1,11,1 -10386,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.70095675881021,21.8246165685282,0,8,1 -10388,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.51010030321777,20.4439597753407,0,11,1 -10389,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3916237954982,25.8914119063699,1,9,1 -10395,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0526423119009,19.8304102096085,0,8,1 -10396,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.89406011183746,27.6121215583297,1,11,1 -10397,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1388006026391,20.6180034731323,0,4,1 -10401,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4405860498082,25.540676774981,1,9,1 -10402,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1694838071708,22.7430270177418,0,5,1 -10406,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.66436042217538,27.9941341227801,1,22,1 -10407,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.6234181933105,28.0093895381994,1,17,1 -10408,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.4002225613222,21.6145585147332,0,7,1 -10413,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.106359386351,21.2119268037832,0,3,1 -10417,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1042828790378,21.8057255219248,0,12,1 -10420,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3107156171463,21.6955312532103,0,6,1 -10427,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1780113095883,20.5525932531089,0,5,1 -10428,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1789741064422,18.2647412914311,0,9,1 -10430,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4607543270104,25.8848328893928,0,12,1 -10433,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0621504436713,20.8041068325958,0,10,1 -10434,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.60408658441156,20.3196103039294,0,9,1 -10439,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.4123829971068,21.0581834866082,0,14,1 -10443,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.6670868715737,18.3824836089156,0,7,1 -10445,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0158860513475,19.0995321358863,0,7,1 -10446,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.83418185403571,25.5171345332393,1,16,1 -10449,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.81344222207554,26.6467363952299,1,15,1 -10451,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2592329552863,26.5209862964857,0,16,1 -10452,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3456178607885,25.062645454787,1,7,1 -10454,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.95138715370558,20.718176564406,0,9,1 -10455,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3370787391905,21.7830417180617,0,5,1 -10457,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.55100512341596,27.3023085401711,1,10,1 -10460,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.68430972821079,25.3490707425205,1,11,1 -10461,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2932409022469,28.8810342306858,0,17,1 -10465,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.57284992933273,28.16661104234,1,13,1 -10466,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4478985124733,25.9406710719503,0,8,1 -10471,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.95834546722472,25.3233178431276,1,14,1 -10474,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.77085602190346,27.7819011949,1,17,1 -10482,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.5839043778833,26.3567045613578,1,19,1 -10483,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0787784517743,19.4045131790999,0,12,1 -10486,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2254872873891,26.5081825965816,0,14,1 -10494,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.67236447404139,25.5544944212933,0,11,1 -10497,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.75797923165374,22.3311610934846,0,17,1 -10500,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1472820031922,21.5874367140646,0,12,1 -10502,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.5263044689782,19.9235950988735,0,13,1 -10503,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4812846702989,26.7602284656156,1,18,1 -10504,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.4000102558639,21.8349022697055,0,9,1 -10507,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1608465465251,20.777314368765,0,9,1 -10512,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3074617090169,24.7403388839592,1,10,1 -10517,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0901088148821,20.2698815641089,0,9,1 -10523,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.66901364014484,29.5044909426145,1,14,1 -10525,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1823155775201,21.2180646451609,0,12,1 -10527,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.82068761019036,26.5753160224104,1,19,1 -10529,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.53437322122045,26.8755670727606,1,12,1 -10532,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.9100513283629,27.3341732918641,1,18,1 -10534,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.68208092171699,27.643909010567,1,13,1 -10537,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.82517092418857,21.797707978785,0,5,1 -10538,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3576025196817,19.890413913865,0,9,1 -10544,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0824665618129,21.3524385712974,0,10,1 -10547,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.9049553477671,23.5700881365521,0,8,1 -10548,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.015025166329,22.0659847399713,0,12,1 -10550,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.61852672300301,22.2867857249977,0,7,1 -10555,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.92104746354744,22.5559191589041,0,8,1 -10558,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.58405628381297,26.9436189443542,1,12,1 -10561,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.89705839799717,22.6390948344293,0,6,1 -10568,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.724996087607,25.9150985285345,0,13,1 -10569,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.72360433638096,21.4800350538405,0,7,1 -10570,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.4105020731222,21.6814992194628,0,11,1 -10571,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.7861573623959,21.6894731252697,0,12,1 -10574,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2755106734112,27.3659348282931,1,15,1 -10579,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2848707519006,25.7258124296766,1,14,1 -10582,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.86657984019257,26.1511633298595,1,14,1 -10585,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.60795748070814,27.0942585253812,1,14,1 -10586,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.6324490820989,24.9292621115509,0,16,1 -10587,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3546197190881,24.0863464117198,0,13,1 -10593,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.69356557587162,23.7019516863447,0,8,1 -10604,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.5180589563679,27.6014817930303,0,11,1 -10610,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.61833937955089,18.6878935542725,0,8,1 -10611,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1838773523923,20.4328471883405,0,8,1 -10613,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4569794607814,20.7487622665516,0,7,1 -10614,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.0816550708842,18.1042997649297,0,8,1 -10615,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1945570330136,20.5841338655116,0,7,1 -10619,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.78091534483247,24.4995394144996,0,9,1 -10621,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4226361017209,18.921169634586,0,8,1 -10622,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2358680875041,19.3967529854613,0,8,1 -10624,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1527998298407,25.3639653092329,1,12,1 -10631,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.69370443769731,21.2513742715551,1,10,1 -10634,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.51824611471966,23.5962944267744,0,8,1 -10638,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.4347743093967,22.6477334524532,0,11,1 -10644,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.186556189321,19.3591618534026,0,11,1 -10645,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.63354069017805,20.0902607366573,0,6,1 -10648,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.90106179169379,19.5554147417012,0,4,1 -10656,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.87622466753237,22.6180825592487,0,6,1 -10667,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.97921640635468,25.5183505951863,0,9,1 -10670,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3687057658099,23.4221030030567,1,12,1 -10677,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.65940436022356,21.2206972494333,0,5,1 -10680,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4023001159076,17.5930840228974,0,9,1 -10681,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.0762221163604,17.6657814184125,0,8,1 -10688,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2764420497697,23.6713517358292,0,13,1 -10690,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.069902083138,19.0213821794437,0,8,1 -10691,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.85427936608903,22.1345837755569,1,12,1 -10696,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.92693942016922,19.8508806776067,0,8,1 -10697,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1052055682521,21.8939736616787,0,7,1 -10698,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.227730673505,18.691134556487,0,6,1 -10700,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.97698463499546,19.7560773525146,0,6,1 -10704,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.4232991475146,21.8670594337105,0,7,1 -10706,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3707872009836,22.66319298342,1,19,1 -10707,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.70485197473317,25.7448232390947,1,14,1 -10709,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3355809045024,25.2971930386718,0,9,1 -10714,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1450845859945,26.2315700486726,0,6,1 -10717,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0747121782042,24.4842419899188,0,8,1 -10720,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.61406817124225,23.8927721906647,0,8,1 -10721,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1859869731124,16.4989966553846,0,4,1 -10723,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.89614574401639,21.7006742826795,0,8,1 -10727,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.170664614765,21.8237726033067,0,9,1 -10733,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.5562059332151,18.5596248413656,0,7,1 -10734,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.83495307411067,18.1266217730297,0,5,1 -10737,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.67526841745712,26.6483778642919,0,15,1 -10739,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2686729878187,24.1764495076532,1,19,1 -10741,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.64655360509641,23.5560083421394,0,9,1 -10744,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.63734667492099,18.9575723528906,0,3,1 -10746,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.6735455407761,21.4960538027575,0,8,1 -10747,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.51942717283964,18.080687648911,0,6,1 -10748,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.83788341330364,19.4290086289018,0,12,1 -10752,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4862656230107,17.4117423613217,0,7,1 -10755,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2512699069921,19.705266123888,0,8,1 -10760,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.51083589880727,24.8428082126193,0,16,1 -10767,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4296612192411,19.7003314022629,0,10,1 -10769,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.75106947263703,23.7052355078717,1,15,1 -10770,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.96238869149238,21.6633638700701,0,12,1 -10771,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.63434562459588,24.0359913115617,1,9,1 -10774,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.90565494960174,24.5897673025952,0,7,1 -10776,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.0079111219384,19.6348132829906,0,5,1 -10778,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.97012545121834,17.1244321382431,0,8,1 -10779,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.53731144499034,18.5861816381316,0,6,1 -10780,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.63181769521907,23.2538416766984,0,11,1 -10781,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.69739551981911,18.8490857196162,0,7,1 -10783,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1755296455231,25.8606985028373,0,13,1 -10785,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4605900312308,17.9680624680309,0,4,1 -10786,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.90822929283604,20.044656807646,0,9,1 -10787,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2765961496625,24.2926749595844,1,13,1 -10789,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.77315038861707,16.599417951488,0,10,1 -10792,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1300307756756,24.7069553362737,0,8,1 -10793,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1011456120759,18.8631296345969,0,13,1 -10798,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3973945407197,24.6789514444717,0,10,1 -10803,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.60038737440482,20.9265094031332,0,7,1 -10806,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.451104512671,19.4311312440007,0,6,1 -10819,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.4678194907028,23.5874503696377,1,5,1 -10822,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.3030423789751,19.8063150698887,0,13,1 -10823,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.4912699323613,23.1082610876011,0,11,1 -10825,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.87056001229212,17.5569835901867,0,15,1 -10826,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.53962961421348,22.8617095453433,0,9,1 -10828,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1255125952885,18.5616543502425,0,7,1 -10830,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.69947998737916,26.0502561652446,0,14,1 -10833,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.354812792968,26.0127920147318,0,15,1 -10835,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2570211854763,24.8510503876499,0,16,1 -10836,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.64081795490347,16.023941113971,0,9,1 -10838,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.03598999721,18.5003950906501,0,6,1 -10842,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1458276538178,26.0549655309882,0,11,1 -10843,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.89090690505691,26.8282251031426,0,15,1 -10845,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.83475480717607,21.7024243160871,0,2,1 -10846,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.76249529211782,17.4391434275467,0,8,1 -10849,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.97731603402644,22.6021677106014,0,8,1 -10850,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0654721788596,24.4909975530295,1,13,1 -10855,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.87611034396105,16.86854049967,0,7,1 -10859,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.62020685849711,16.9229229458404,0,10,1 -10863,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1779338263441,25.0638014929976,0,12,1 -10865,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.72255145595409,19.2141483737521,0,5,1 -10869,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.418400489958,22.5656252092194,0,12,1 -10870,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.93358501442708,17.994451185991,0,10,1 -10872,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.0165810056496,17.5547308702421,0,9,1 -10876,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.50891267089173,24.8713625547469,0,19,1 -10882,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0650163758546,25.4792049276342,1,22,1 -10883,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.80575446761213,24.4848079342476,0,11,1 -10885,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.75630055507645,24.2432640454748,0,7,1 -10887,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.57982339826412,23.7130747515068,0,14,1 -10894,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.4152402975596,25.1408585462949,1,11,1 -10897,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.91348600643687,18.9610275573266,0,8,1 -10898,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.0217190550175,20.0353662346419,0,8,1 -10899,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4116540581454,17.9273574987316,0,3,1 -10902,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.90113594545983,18.6368457762275,0,8,1 -10905,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1508413443808,19.985900495876,0,6,1 -10907,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.149494434474,19.5024572634377,0,6,1 -10908,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2461854291614,16.3873297681356,0,7,1 -10912,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.3325492572039,19.0088943569416,0,9,1 -10916,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.52812936482951,24.3144028125326,0,11,1 -10922,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.88626547716558,19.6490125763401,0,5,1 -10923,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1229910997208,18.203420790508,0,8,1 -10925,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.3430414532777,21.3773602250172,0,4,1 -10927,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.92354101617821,25.0150299920651,1,10,1 -10931,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.7973149609752,16.834654360144,0,9,1 -10934,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1646841270849,18.3702382158169,0,8,1 -10938,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.6228795517236,18.7795382508804,0,8,1 -10943,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4067452729214,17.6823160680823,0,11,1 -10945,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.88924252451397,20.7512288722724,0,6,1 -10947,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3133527357131,26.2715146935292,0,11,1 -10951,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.57573085906915,19.4295257895667,0,5,1 -10953,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.54403724404983,19.3619190186209,0,3,1 -10956,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.90235118358396,21.4973528605785,0,17,1 -10959,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2512197499163,24.9868763682455,0,12,1 -10961,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.52081973897293,22.6878036743103,0,9,1 -10964,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.114369769115,23.7801441728192,0,10,1 -10975,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.66859981184825,19.0867739470378,0,4,1 -10978,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2870311487932,20.4792356729975,0,7,1 -10983,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0751691241749,22.8274940225745,0,13,1 -10984,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.77849761629477,18.8214700816196,0,8,1 -10985,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.418597682612,26.768308490359,1,11,1 -10986,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2729184476193,23.3282612040966,0,14,1 -10987,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.71335170976818,22.2271861218626,0,7,1 -10991,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.97413151757792,25.3491891390512,0,12,1 -10995,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.86030536750332,23.4956131889014,0,10,1 -10998,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1440707249567,18.7331316519289,0,4,1 -11002,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0824341953266,27.0949762666568,0,11,1 -11004,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.77827959018759,17.5943691544466,0,12,1 -11005,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.55472249910235,15.3621835329691,0,1,1 -11008,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.72427277266979,23.6986933622196,0,11,1 -11010,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.514844505582,22.3369340280247,0,13,1 -11011,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.67502225702628,24.2407763178694,1,11,1 -11014,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.3664863195736,18.0048765655489,0,5,1 -11020,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.55839599226601,18.7553371318639,0,8,1 -11021,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1272536767647,24.7889917749382,1,11,1 -11025,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.58273264486343,19.8770038602941,0,8,1 -11026,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.88001977466047,24.4032028306001,1,10,1 -11029,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2575250822119,16.6914867685449,0,7,1 -11033,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.56747150304727,23.7294968244483,0,8,1 -11034,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2129106675275,24.6629699330635,0,14,1 -11043,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.172561669955,20.9865510277607,0,5,1 -11044,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.88602899201214,18.7694939500857,0,2,1 -11045,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.3255112047773,20.9464104236719,0,8,1 -11046,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1424307597335,21.4177199735294,0,10,1 -11050,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.5179071710445,24.8219293423287,1,8,1 -11052,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1768111537676,19.3693565529475,0,6,1 -11053,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.0238724215887,16.7745279316941,0,6,1 -11054,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.0399410226382,18.8118493620957,0,9,1 -11055,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0680300521199,25.7781228687561,0,12,1 -11058,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.87012130394578,23.523413349621,1,13,1 -11059,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.3557359091938,19.9194553976567,0,7,1 -11062,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2534046177752,18.7949888174745,0,5,1 -11067,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.98416094388813,20.2422669070191,0,3,1 -11068,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.98825043835677,24.2502137726611,0,14,1 -11072,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.78898404864594,18.594613796569,0,12,1 -11074,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1396545029711,23.5898830584383,0,14,1 -11076,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.65731421508826,17.1557219413431,0,6,1 -11078,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.83647858374752,20.4291211530546,0,6,1 -11081,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.65388007322326,17.6095421333106,0,6,1 -11083,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.83382035046816,19.8575107932151,0,11,1 -11088,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.58840431296267,26.3040363764543,0,6,1 -11092,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.78915803041309,24.6934042101613,0,8,1 -11099,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.444612407824,18.5761755052337,0,10,1 -11100,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.65719888452441,24.0701257118997,0,18,1 -11105,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.84076658939011,26.656622622139,1,14,1 -11111,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.86801459128037,27.7473730632201,1,13,1 -11115,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.1428387991618,23.2985374872824,0,11,1 -11120,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.4357849343214,26.3217388712663,1,14,1 -11121,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.51756774820387,23.0412042599238,0,11,1 -11128,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0349449370988,30.6426555140431,1,18,1 -11129,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2235642140731,26.3442967040129,1,15,1 -11131,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.58873422141187,29.5453005089185,1,13,1 -11132,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.91965113440529,26.0184750756529,1,9,1 -11133,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0002996304538,22.1816573193415,0,12,1 -11136,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.66607391391881,18.4316323201704,0,13,1 -11139,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.91147777694277,27.4814482586404,1,13,1 -11140,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.52455807453953,23.1585993423017,0,10,1 -11143,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.62455828022212,29.9742392547209,1,15,1 -11144,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.4119996663649,28.501305311178,1,16,1 -11149,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.89391575101763,28.0644247706594,1,13,1 -11154,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.87181861419231,22.587049772824,0,7,1 -11159,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3782240478322,21.6576016820859,0,6,1 -11161,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.4134482108057,23.2619403285043,0,7,1 -11167,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.99949243292212,25.9464517617861,1,7,1 -11170,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.99128862540238,26.947592764122,1,8,1 -11172,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.6878906369675,28.6838174264388,1,12,1 -11174,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3971909382381,21.9988488878244,0,9,1 -11175,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.81132782250643,28.2952428814707,1,11,1 -11177,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.89708846760914,29.666875327741,1,11,1 -11178,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.50029128976166,22.4986307441368,0,13,1 -11185,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.72358703217469,27.0947552740405,1,26,1 -11186,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.99595858692192,26.6173414161266,0,5,1 -11188,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.1199205387384,20.9892326518768,0,6,1 -11190,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.2092083939351,21.7996232217904,0,10,1 -11191,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1509638060816,30.1900140465678,1,13,1 -11192,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0412568980828,28.4584891542417,1,25,1 -11194,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3135638940148,28.3633947270949,1,12,1 -11196,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.63098219246604,27.7464950358539,1,14,1 -11202,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.76663164049387,22.3792944315012,0,15,1 -11203,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.4304701287765,21.6053135361039,0,6,1 -11206,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2447580997832,27.9115089094631,1,18,1 -11207,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3290479301941,29.0367664546466,1,14,1 -11208,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.4680898862425,23.3532647237209,1,8,1 -11215,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.444493366871,23.2162359327362,0,5,1 -11217,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.85164895444177,29.9462203230487,1,12,1 -11221,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1651319416706,29.0362882830186,1,23,1 -11226,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.1124100552406,22.064640777834,0,6,1 -11230,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.63704939535819,28.3921145037358,1,20,1 -11231,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.87197362678126,26.0195861251798,0,12,1 -11233,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.427023045253,24.6431520929938,1,19,1 -11243,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.183313956717,21.3246054995295,1,5,1 -11244,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3527424375061,21.3826717540215,0,6,1 -11248,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.13301179884,26.4231724251714,1,11,1 -11249,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.73334125592373,21.8493254607284,0,11,1 -11261,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3921434029471,20.5651525499427,0,11,1 -11263,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1405593189411,29.7677774151121,0,14,1 -11273,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.82035974296741,29.2481443472372,1,18,1 -11278,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0430026634131,22.3885574731978,0,13,1 -11280,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.66703198454343,26.1604160934771,1,11,1 -11281,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.73031675582752,26.8724089041098,1,10,1 -11284,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.58729986706749,23.5146879849997,0,10,1 -11289,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.153154696105,22.1765675224522,0,12,1 -11293,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.2405372059438,22.2676545496362,0,9,1 -11298,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.84565546968952,24.2020267519089,0,15,1 -11299,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.8592209268827,27.5745040912918,1,12,1 -11300,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.78483597631566,22.4235657951167,0,8,1 -11303,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.52514897170477,24.0418756665317,1,13,1 -11317,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.4180725368205,22.4258612838457,0,11,1 -11318,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.94608522718772,22.6848877657387,0,17,1 -11319,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0164918128867,29.7446682319922,1,15,1 -11320,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.6152776950039,21.7660267523915,0,8,1 -11323,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3787652638275,25.414308694592,1,16,1 -11330,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.81072153733112,27.7469244353625,1,19,1 -11334,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.89349972899072,23.2019836648776,0,11,1 -11335,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3662344971672,22.6530093186319,0,7,1 -11339,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.62228874163702,23.823284818172,0,13,1 -11341,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0464620161802,21.5705933172717,0,11,1 -11342,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.1629677445162,20.6881549211887,0,10,1 -11350,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1788867502473,27.9473706241568,1,21,1 -11354,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.97152803302743,20.2688436424427,0,9,1 -11357,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2576104002073,25.8155664673849,1,8,1 -11358,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.4845658512786,23.3392277207659,1,10,1 -11362,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3303267555311,28.5165709019576,1,16,1 -11365,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.82586790667847,20.62387865665,0,8,1 -11369,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.59853384247981,22.5256234178389,0,14,1 -11370,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.138539593434,29.1160453617219,1,18,1 -11375,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.4145774543285,25.4285084003138,0,11,1 -11381,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.95186910196207,20.4888153628881,0,7,1 -11382,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3618661388755,28.7328273422217,1,14,1 -11386,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.71316681127064,24.4426275964484,1,8,1 -11388,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1025440443773,26.6896430601829,1,16,1 -11392,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.93737074453384,29.0851309442374,1,17,1 -11393,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1277713021263,28.1460740721702,1,17,1 -11395,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.2952933760826,24.610369582421,0,10,1 -11396,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.88026171107776,24.9792236244907,1,15,1 -11398,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0660474069882,23.8808416259773,0,8,1 -11408,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.79146768455394,23.3144155485599,0,14,1 -11409,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.76957719889469,28.4875776231943,1,17,1 -11410,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.5109441797249,23.3605482206325,0,12,1 -11411,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2513674409129,27.8939731347581,1,18,1 -11413,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.72418927610852,20.9938961759957,1,7,1 -11415,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.64437906746753,22.2327356828063,0,10,1 -11416,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.85721556213684,20.4235860834531,0,15,1 -11418,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.76696446002461,24.551668934714,0,12,1 -11419,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.278987042373,26.0617553887026,1,19,1 -11426,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.64399526524357,30.8092380496835,0,11,1 -11427,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.71424680016935,24.8437639027436,1,18,1 -11430,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0650189551525,25.8235563348088,1,12,1 -11431,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3741419841535,22.7177293365981,0,5,1 -11440,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.53258985630237,27.4047542770835,1,11,1 -11441,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3996573642362,18.0815725234771,0,8,1 -11442,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0200720212888,28.506460054333,1,19,1 -11444,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3624053215608,20.7590382494846,0,11,1 -11446,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3408632506616,23.4313889632348,0,12,1 -11447,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.59611795959063,22.6851162643777,0,15,1 -11452,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.57839096151292,22.8920496436486,0,8,1 -11461,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3300660015084,26.2518680594155,1,13,1 -11466,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.50808095885441,28.0425805266861,1,18,1 -11468,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.6717460968066,22.7476014426967,0,10,1 -11471,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.99704374093562,21.9659211273358,0,12,1 -11472,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0765902411658,26.9928508260204,1,25,1 -11473,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.85423910547979,20.8298001148155,0,7,1 -11476,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.70831910357811,27.7936466401901,1,14,1 -11477,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0666208115872,21.7735867492357,0,12,1 -11478,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.54890150786377,27.5427888000568,1,16,1 -11482,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.90663993102498,22.7007987910712,0,4,1 -11484,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.4599458437879,21.7709295331384,0,10,1 -11490,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.79773613577709,27.202849909102,1,16,1 -11491,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.68435597838834,27.3260777973905,1,17,1 -11492,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.54344331775792,25.3598912343187,1,20,1 -11498,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.4021149398759,28.7210151546108,1,11,1 -11501,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.91686401283368,22.4834322834909,0,11,1 -11502,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3148282226175,23.6066169563799,0,12,1 -11503,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.90178023069166,27.7732496846135,1,13,1 -11509,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.59254921297543,29.600724601956,0,19,1 -11516,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.74637073650956,28.4739661860375,1,17,1 -11518,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.85667147021741,21.644445288476,0,11,1 -11519,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2449987656437,30.7856343561905,1,14,1 -11520,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.1206662680488,22.963016161745,0,10,1 -11521,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.89040060457774,24.6476222537339,0,11,1 -11524,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.50288506015204,20.8658935459548,0,7,1 -11529,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2047763566952,28.5548147600857,1,15,1 -11536,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1229339479469,28.0487641175651,1,12,1 -11538,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.97552551003173,25.1577862813422,0,14,1 -11545,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.99957219930366,22.2498655979092,0,8,1 -11551,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1532306759618,25.9404728410306,1,16,1 -11552,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.74369367701001,29.3468462768554,1,15,1 -11553,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.119502807036,26.5391839589304,1,15,1 -11556,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.93624543910846,29.5517059685758,1,12,1 -11564,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.72293418226764,20.7659775370526,0,4,1 -11566,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.58723473688588,23.506846926939,0,12,1 -11567,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.88620374770835,22.8757922133898,0,12,1 -11569,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.4421178221237,29.4457610241036,1,10,1 -11572,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.92470823600888,20.9372572073399,0,12,1 -11574,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0126564700622,22.3434033468958,1,6,1 -11578,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.71372626535594,23.8922486319331,0,7,1 -11581,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.95378919574432,26.6224735721933,1,19,1 -11587,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3545543001965,26.5199584008095,1,16,1 -11591,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.6645385925658,23.9351165038606,0,8,1 -11592,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.68430947349407,29.5788344570903,1,15,1 -11593,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2720651673153,27.6893656842635,1,18,1 -11595,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.4352148191538,22.6174075872338,0,8,1 -11597,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2667946240399,26.837539158801,1,17,1 -11601,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1688890706282,25.0020217350039,0,12,1 -11602,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0649830452166,22.0881764027729,0,10,1 -11604,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0212894743308,24.8891663596624,1,11,1 -11611,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.476764324354,25.5926108516458,0,12,1 -11615,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.1221413733438,26.994408907698,1,18,1 -11616,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.83801420265809,21.5191043004077,0,10,1 -11618,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.64283583918586,22.9594536967131,0,9,1 -11619,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3755885690916,24.4460548840377,0,10,1 -11621,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.4571043255273,22.9677552545185,0,11,1 -11624,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.72647175448947,26.0557338392687,0,8,1 -11625,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.4088003512006,25.245280257152,0,10,1 -11626,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0597807900049,26.8686376900865,1,22,1 -11627,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.71795227052644,23.7474981852238,0,10,1 -11629,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.8274307702668,28.2496885530145,1,10,1 -11630,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.464617411606,29.5319494487535,1,14,1 -11635,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.4281300613657,28.3914159765875,1,17,1 -11637,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.88741445704363,28.6359041774362,1,19,1 -11638,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.71463056793436,24.2941549683038,0,8,1 -11639,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.55273621762171,23.6559078237934,0,9,1 -11640,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2219375160057,22.2381262408704,0,17,1 -11653,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.50774919171818,26.7950505231418,0,11,1 -11655,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.66663915105164,22.1821452839986,0,7,1 -11656,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.4761953277048,28.1656840588335,1,16,1 -11662,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.92046655435115,28.9440229198143,1,21,1 -11669,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.96651498787105,27.5078177710602,1,21,1 -11675,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.9309892905876,27.5365709511033,1,15,1 -11678,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.96995686646551,21.4500904674609,0,11,1 -11682,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1982702959795,24.7276516494641,0,9,1 -11684,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.230703466339,23.0424911698688,0,14,1 -11686,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2046990010422,24.7400460228735,0,11,1 -11687,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.8613258828409,21.232993373279,0,12,1 -11694,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2955300761387,23.3525476298096,0,14,1 -11698,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.1306845734362,27.9089566150903,1,15,1 -11705,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.4612887736876,27.4324497226509,1,12,1 -11708,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3020021931734,29.3602049178225,1,18,1 -11711,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.96268420177512,26.1944912441935,1,23,1 -11716,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0101244722027,26.3492775629113,1,12,1 -11718,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.50262326351367,23.9118774129655,0,12,1 -11720,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.70327637577429,21.1670035987735,1,15,1 -11721,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.392111122841,29.2752607509518,1,13,1 -11725,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2420700348448,21.4825762725624,0,14,1 -11728,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0464494065382,25.4131396656199,1,19,1 -11730,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.228100377135,22.1051684834013,0,11,1 -11732,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.80981638585217,22.5435144253901,1,9,1 -11733,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.63484473130666,23.184601200032,0,10,1 -11734,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2698567747138,20.1658424172117,0,8,1 -11744,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2823272433598,23.3824376307905,0,14,1 -11747,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.74849844514392,28.9191198353418,1,16,1 -11754,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.9271001634188,27.6736842789636,1,15,1 -11756,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.67446533660404,29.4309002389666,1,24,1 -11758,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.53669880027883,20.896727157976,0,12,1 -11759,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2193874500226,24.0994464321577,0,8,1 -11763,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.87491640658118,28.237014875883,1,20,1 -11775,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.64293417264707,26.3083377414567,0,14,1 -11781,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.96914421580732,21.4496270394021,0,8,1 -11785,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.7912238331046,24.5151734038886,1,8,1 -11786,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2536327510606,29.0718832233048,1,15,1 -11791,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3025776664726,26.9604710677072,1,20,1 -11793,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.98024938395247,29.5664745305246,0,19,1 -11800,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.468173106201,29.5645219654588,1,21,1 -11802,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.50493293395266,27.6327145602672,0,14,1 -11803,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3825779163744,27.1589744465505,1,24,1 -11809,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1386032679584,23.6773729963055,0,9,1 -11811,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.85291931359097,23.1844464705395,0,10,1 -11815,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2053039064631,22.7861379575064,0,13,1 -11817,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.4270076865796,27.4964159836459,1,11,1 -11818,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.84422925021499,23.0717733909665,0,11,1 -11819,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3849304926116,30.7389879173473,1,17,1 -11822,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3667843383737,21.6032859248672,0,4,1 -11823,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.91789625864476,20.8644442837692,0,9,1 -11824,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.84397246385925,22.5739292779482,0,8,1 -11830,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.54668761906214,28.2344544763672,0,9,1 -11834,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.350349505432,22.9420796099278,0,11,1 -11835,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.4249209023546,27.7167463235539,1,25,1 -11837,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.83653960074298,27.1606906716692,1,12,1 -11839,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.74937061779201,29.1420113434952,1,14,1 -11843,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3502834499814,22.3490907399344,0,12,1 -11845,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.88228145590983,27.2457082707245,1,14,1 -11855,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1768860595766,22.1624875544242,0,10,1 -11860,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.89121210202575,23.2315231147897,0,10,1 -11861,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.59504040703177,26.9024741711397,1,19,1 -11862,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.95959125133231,24.8658939732944,0,7,1 -11864,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.86754223215394,23.5395519151934,0,8,1 -11869,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.53493029111996,28.5222191920119,1,19,1 -11870,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.72771102259867,29.5641963943861,1,14,1 -11871,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3108160372358,22.3031533510192,0,15,1 -11872,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.4285661072936,28.6941080398963,1,6,1 -11874,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.86577952746302,22.8827844747972,0,6,1 -11875,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2403530245647,21.1505639426192,0,12,1 -11880,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.7697977614589,26.3524046772322,1,15,1 -11887,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.63043100642972,21.735970053164,0,11,1 -11899,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.59765421948396,20.5529872506923,0,10,1 -11903,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.7727058858145,21.6562686307814,0,11,1 -11909,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.94765168125741,29.3798151765453,1,20,1 -11911,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.1962479883805,28.4579012170912,1,21,1 -11914,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.75958287506364,22.2413001515318,1,9,1 -11917,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2945102513768,28.4957857862988,1,17,1 -11921,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1434403865132,23.1831254871823,0,6,1 -11923,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.7402608464472,27.6905957867672,1,18,1 -11924,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.86615073238499,23.8079130811681,0,11,1 -11926,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1809915704653,22.0382342980878,0,13,1 -11928,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0227965328377,23.3993253233293,0,8,1 -11930,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0510059443768,27.2337735002711,1,14,1 -11932,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.4072099437471,26.9280278351442,1,21,1 -11941,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.53232424287125,25.5135067741711,0,11,1 -11942,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2605053985026,24.717755919028,0,7,1 -11952,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.82553957565688,19.978989176725,0,11,1 -11954,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1825282266364,25.3207752447614,0,9,1 -11955,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.82286319043487,25.902058316755,1,4,1 -11960,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.68779443297535,22.5776051759267,0,9,1 -11961,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.64674456021748,20.5106422968945,0,3,1 -11965,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3546069914009,19.8840912943927,0,16,1 -11980,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0487808363978,23.9078543270825,0,13,1 -11981,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.4747446456458,27.6001541097564,1,15,1 -11983,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.96077081700787,21.7191773030164,0,9,1 -11984,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.86251527280547,28.0954113856153,1,18,1 -11986,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.79393098922446,25.1869286864598,0,7,1 -11989,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.91520241554826,27.3212714285847,1,12,1 -11996,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.92754926718771,22.4892087492484,0,11,1 -11997,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1397353047505,20.5949953620821,0,10,1 -12001,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.64131237193942,28.9308374145617,1,12,1 -12009,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3162772567011,21.9922384989807,0,9,1 -12010,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.96235305466689,21.6904660226035,0,5,1 -12011,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3693493034225,22.4894276687258,0,13,1 -12012,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.72476541250944,28.8120276073138,1,18,1 -12016,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0176948620938,21.6287421567608,1,10,1 -12017,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.1788882112596,27.5135997681579,1,17,1 -12020,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.62206395086832,27.3692165416114,1,21,1 -12022,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0176905584522,30.0811097982429,1,17,1 -12023,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2306951170322,29.0217279184673,1,16,1 -12025,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.8386955705937,29.4378931841434,1,18,1 -12026,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.4976498708129,26.8326996659859,1,16,1 -12028,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2457583372016,28.3652014154838,1,20,1 -12032,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2798020301852,26.6591199334934,1,17,1 -12033,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1503298794851,22.9580245131169,0,17,1 -12035,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0940423037391,27.9644904713154,1,11,1 -12037,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0325210636947,21.636187537924,0,15,1 -12038,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3673460583668,22.7748219423036,0,10,1 -12044,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2513146609999,29.4448817368138,1,20,1 -12046,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.9537660498172,25.9294477966503,1,16,1 -12048,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.66159928683192,29.417893539321,1,23,1 -12053,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.54741786373779,26.7097614202831,1,19,1 -12054,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0827178931795,27.2839969077014,1,17,1 -12055,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0482251215726,26.5496174403222,1,11,1 -12059,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3590206534136,22.6396454316358,0,7,1 -12067,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.99457528069615,27.1075161963454,1,16,1 -12071,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.56516855233349,26.7393639857194,1,18,1 -12074,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0100016919896,22.1673771739936,0,9,1 -12076,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4030816955492,24.8333553411869,1,12,1 -12079,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0184853649698,20.7298928124876,0,12,1 -12093,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0501113396604,23.0801032747272,0,9,1 -12097,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.4286138887983,20.3297526655641,0,6,1 -12098,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3136046151631,20.9534382842559,0,11,1 -12099,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4711927652825,29.6412188394296,0,19,1 -12103,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.8658447728958,23.2741480114094,0,11,1 -12107,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.75080116419122,23.0996021437407,0,14,1 -12110,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.67816048744135,21.5792967570273,0,9,1 -12114,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3386894876603,23.1153740501941,0,5,1 -12120,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.2146695861593,22.1666266795065,0,8,1 -12124,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.72742674872279,28.3998207035024,1,13,1 -12126,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0257498910651,29.8208021355555,0,10,1 -12130,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.91876611043699,27.6803263178141,1,14,1 -12131,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.89745191740803,24.4444268654884,1,17,1 -12134,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.4406415021513,19.4818200936041,0,7,1 -12142,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.2997981763911,24.7673508440917,0,10,1 -12146,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.62537143332884,26.6060284872358,1,14,1 -12149,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.77097760513425,26.5606339708229,1,21,1 -12153,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.4424330836628,19.0109737740267,0,5,1 -12157,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.91633541835472,27.4036374258539,1,18,1 -12159,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.56645878893323,25.9322755371148,1,14,1 -12162,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.57345465011895,20.3023525965698,0,7,1 -12165,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.53158709756099,21.6176237289575,0,3,1 -12167,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.1881192300934,21.8559245325923,0,10,1 -12169,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.1421552696265,24.8094721714514,1,17,1 -12170,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0786936485674,28.2160498487229,1,20,1 -12171,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.60141658526845,28.9513172481854,1,18,1 -12175,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.2397733544931,28.0576269642836,1,6,1 -12177,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.66508186771534,26.7430963530323,1,15,1 -12178,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.6664615618065,20.9333713931059,0,6,1 -12185,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.184130259091,26.7857292109754,0,15,1 -12191,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.7341592181474,26.7934564045418,1,7,1 -12192,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.83363554091193,22.0821961112953,0,12,1 -12197,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.1773002028931,22.1005463611562,0,8,1 -12199,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.1470685421955,27.4614602106507,1,15,1 -12201,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3493279437535,24.3698297532471,0,12,1 -12203,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3717473263387,20.6808400283043,0,13,1 -12206,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.70765828900039,21.4175244545933,0,7,1 -12207,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.81927360035479,21.9434703511915,1,11,1 -12208,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.1523889463861,25.3892613374224,1,14,1 -12211,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.68124921340495,23.7500979277126,0,5,1 -12212,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.76468259538524,26.3188562767892,1,14,1 -12217,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4849936880637,27.8650709120899,1,15,1 -12218,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.92609342373908,28.3266944623661,1,20,1 -12221,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4787617323454,28.1363095786241,1,18,1 -12223,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.3915513111278,25.1210916497217,1,15,1 -12225,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0040267587174,22.532188870264,0,8,1 -12232,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.2442745757289,25.4554933499255,1,18,1 -12234,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4772726586089,28.1461821263458,1,17,1 -12235,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.5353368173819,25.6431169816467,1,15,1 -12238,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.73102634097449,22.557011331272,0,4,1 -12240,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.50904694315977,26.3060529364865,1,17,1 -12244,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.89235734357499,25.9940339679121,1,17,1 -12246,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.80715198093094,29.1259073321938,0,20,1 -12254,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.82526275329292,20.9655606853737,0,10,1 -12258,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.1587994822767,22.3168319806275,0,10,1 -12260,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.9508679935243,27.2901593941961,1,12,1 -12261,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0296980771236,27.3225880614207,0,7,1 -12262,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.65883507579565,27.7265713124209,1,8,1 -12265,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.73194645741023,21.2752645277477,1,5,1 -12268,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3592211939394,22.0406921276749,0,11,1 -12274,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.4527096448001,19.8401813201211,0,14,1 -12275,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4699061205611,25.2952445162631,1,15,1 -12276,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.68227020604536,26.6653827100095,1,18,1 -12280,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.65864877263084,26.6758153460663,1,19,1 -12283,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.52191295614466,27.4908115580493,1,14,1 -12286,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.3836633625906,28.1962803577288,1,24,1 -12291,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.82192384684458,23.4168673828248,0,5,1 -12295,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.60029600188136,20.3824045461163,0,6,1 -12296,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.62715556588955,26.8484505975236,1,14,1 -12297,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.63646410778165,22.1290596623402,0,6,1 -12299,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.88893893547356,22.7991837938102,0,16,1 -12304,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.73208828107454,27.9508640054014,0,18,1 -12306,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.92231036373414,24.3681516071333,0,12,1 -12310,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.85376597987488,27.118116220035,1,15,1 -12315,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.51982287154533,26.4058825762069,1,7,1 -12319,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.63834236725233,28.6631407105634,1,19,1 -12320,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.2797926876228,22.0985763420576,0,12,1 -12321,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.93915015086532,20.6716732412378,0,15,1 -12324,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.80778670241125,20.7341228886057,0,6,1 -12331,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0437385074329,29.7535392465556,1,13,1 -12333,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.181197202066,21.2876725813797,0,11,1 -12334,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.61634548613802,21.8685073158064,0,13,1 -12335,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.94986808928661,22.4919866842657,0,10,1 -12337,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.96922988328151,20.3914228530926,0,10,1 -12340,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.52555016125552,26.9477489069052,1,21,1 -12343,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.83470501378179,27.7161969303298,1,10,1 -12344,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.76143301138654,25.2299286755629,1,15,1 -12345,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0148882465437,22.5496794128126,0,9,1 -12347,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.83849364612252,22.6834927636063,0,14,1 -12352,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3528171679936,23.768719391909,1,9,1 -12356,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4010112038814,25.6804602382643,0,13,1 -12358,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.2206485078204,24.9938605840052,1,13,1 -12359,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.50807468593121,26.4174795555372,0,17,1 -12362,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.82862072903663,21.7101756639233,0,10,1 -12364,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.2362534545828,28.0196505713093,0,8,1 -12365,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.71972514945082,21.3003679005942,0,8,1 -12366,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.91588744311593,20.1559362004884,0,8,1 -12367,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.78661848790944,25.7076261616881,1,16,1 -12368,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.63334996905178,20.6088501771197,0,7,1 -12375,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.94832335389219,29.9402787087098,1,9,1 -12378,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3706265180372,21.2819134541873,0,14,1 -12386,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.1329828081653,19.8748738750059,0,7,1 -12393,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.80550278513692,23.7450806340932,0,11,1 -12399,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0792818234768,21.0347368079544,0,8,1 -12400,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0009295006748,26.7870710175933,1,9,1 -12403,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.2708324771374,27.2532483882143,1,14,1 -12407,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3133967206813,19.8721120142752,0,13,1 -12410,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4611320383847,28.0687082414871,1,13,1 -12411,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.97964392462745,22.6103407242096,0,8,1 -12414,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.2132698711939,27.0593590342544,1,16,1 -12417,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.86516565759666,26.7185388244191,1,15,1 -12420,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.78114048577845,20.6631381331525,0,7,1 -12423,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.1501808995381,23.527428573695,0,9,1 -12424,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.75997444638051,26.7105062102323,1,11,1 -12426,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.9989595208317,20.3575463468047,0,4,1 -12428,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.2609141631983,27.4167795408386,1,13,1 -12431,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.600615369156,26.4513029115425,1,12,1 -12432,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.8432141749654,22.6919907352324,0,5,1 -12437,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.73324781120755,28.2201601087276,1,15,1 -12439,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0508695379831,22.348725433263,0,9,1 -12441,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.78554463945329,19.9202664840037,0,11,1 -12453,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.3428528313525,27.5655233253179,1,6,1 -12454,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0390555197373,22.4947845690594,0,7,1 -12456,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.64016869710758,22.1535749360774,0,4,1 -12461,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.247382640373,21.2919145159802,1,11,1 -12464,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.7707921420224,27.1733373803426,1,15,1 -12468,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3013905417174,20.7112464709186,0,10,1 -12478,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.86186704272404,21.2110942107238,0,6,1 -12480,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.2527623511851,29.3865203211317,1,16,1 -12484,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.65822966140695,23.0776467551397,1,14,1 -12494,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0320151238702,20.8843633953721,0,5,1 -12498,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.3665841629263,27.1150202412646,1,21,1 -12501,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.1675472417846,28.1703164838681,1,22,1 -12506,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.1421980522573,26.8100304483369,0,18,1 -12511,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4761347651947,28.5525794507242,1,13,1 -12512,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4871921117883,28.4386886726621,1,13,1 -12514,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.698381411843,21.4893519587227,0,12,1 -12516,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.4629764626734,23.4289084474506,0,9,1 -12517,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.382136462722,22.9369403276831,0,13,1 -12520,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.2881968580186,28.5208031992408,1,23,1 -12525,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.77114011161029,26.8784800471158,1,16,1 -12527,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2815261520445,29.6384734373165,1,24,1 -12528,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.70868184999563,28.5136714997665,1,15,1 -12530,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4859738464002,29.5519655849215,1,18,1 -12532,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1147259506397,29.8151230068986,1,17,1 -12537,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4900783763733,20.9637945042536,1,12,1 -12538,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.473481998546,28.0001903809933,1,19,1 -12544,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1388621439692,27.624374562757,1,23,1 -12551,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.91141820233315,28.4749311751605,1,20,1 -12552,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.96647234028205,28.0365285317794,1,18,1 -12554,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.7170387157239,25.2861799933436,0,15,1 -12561,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3467311565764,28.730856595641,1,22,1 -12562,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2498722386081,29.3932667855969,1,23,1 -12563,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.1981894806959,22.0245919051145,0,17,1 -12566,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.7948952477891,22.6913526589528,0,10,1 -12568,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.0722610009834,27.4475387114289,1,18,1 -12577,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.0533204213716,27.2137195014424,1,17,1 -12582,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.99168948153965,20.3048139776665,0,11,1 -12592,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4798212097958,22.9315210062598,0,11,1 -12593,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3470866726711,22.5742822442357,0,14,1 -12594,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4651422013994,23.6521689438744,0,14,1 -12595,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3604599051178,23.1557476536207,0,7,1 -12598,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2474095737562,31.8023318970022,1,17,1 -12599,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1853768357541,30.7536686432013,1,13,1 -12600,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.0700171827339,27.03043945484,1,23,1 -12604,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.116886474425,26.8692339366156,1,16,1 -12608,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4489971874282,30.5730544537895,1,15,1 -12613,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.79730627941899,31.068190849657,1,19,1 -12617,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.66525897034444,23.360837813132,1,13,1 -12618,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.52846273360774,24.6173349939158,0,15,1 -12620,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.74928258452564,28.0348248633328,1,14,1 -12622,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.1971602088306,25.6217343810057,0,4,1 -12624,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.66747398208827,23.3584527055052,1,7,1 -12627,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3847388771828,31.5646920553006,1,12,1 -12629,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.57739108731039,29.3384475869653,1,20,1 -12630,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.102020998951,22.6457473636181,0,11,1 -12633,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.2528848398943,24.4194826201095,0,7,1 -12634,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.90792937460355,25.2002288958087,0,9,1 -12638,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.86752780224197,22.5845704354821,0,13,1 -12640,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.0000299839303,29.0811376967871,1,18,1 -12644,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4422506561968,24.7060760031082,0,10,1 -12645,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3577193352394,22.8937060416513,0,12,1 -12648,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3816366959363,23.0112762366592,0,12,1 -12650,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4761391505599,23.5441639579633,0,10,1 -12652,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.9805080590304,21.2909682484574,0,12,1 -12657,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.54699429427274,29.9371939195949,1,14,1 -12659,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4796356281731,31.740071972134,1,16,1 -12660,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.69300525076687,29.2220250038251,1,24,1 -12662,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.98421881394461,30.7683938226818,1,16,1 -12663,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3237434907351,28.8811600554254,1,16,1 -12668,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.70959893194959,30.3974650062369,1,20,1 -12674,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.2801419727039,22.845319844838,0,8,1 -12675,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.367279571481,28.4417972107663,1,16,1 -12677,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.79103288962506,23.6843895641598,0,11,1 -12681,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.54831852740608,31.550130604169,1,25,1 -12685,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.65047803544439,28.9907513403495,1,15,1 -12686,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.2004883517511,24.9607743955963,1,13,1 -12687,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.96987955132499,28.7314895208041,1,17,1 -12688,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.0144539626781,29.9406790201146,1,21,1 -12691,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.86840177304111,28.434357291136,1,19,1 -12694,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.079716139473,27.7773739982957,1,15,1 -12695,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1541172708385,32.8004630680376,1,17,1 -12703,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.67831251374446,27.4716875099269,1,16,1 -12705,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.66448174952529,29.626398744679,1,20,1 -12709,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.62774550588802,26.0709615921251,1,8,1 -12713,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.69046278647147,22.6735175170819,0,4,1 -12717,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.91900331224315,29.5505274497973,1,16,1 -12718,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.77647424326278,30.7134000310244,1,9,1 -12720,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2522106878459,30.5391005377844,1,21,1 -12723,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.53154802555218,29.8605515737169,1,24,1 -12728,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.8865473808255,29.601787077797,1,16,1 -12729,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2903535771184,27.7340916059664,1,20,1 -12731,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.71642116317526,31.6993533110269,1,19,1 -12732,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.90306109911762,23.1653246665918,0,9,1 -12734,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.64030440151691,27.683146516019,1,22,1 -12735,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1677120679524,30.2186299241993,1,19,1 -12736,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.5855854593683,28.2691733100816,1,14,1 -12737,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.85588314966299,29.8628022618317,1,16,1 -12739,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.91363352863118,22.9022606745371,1,9,1 -12741,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4453483424149,26.0449989109008,1,22,1 -12746,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.94276149221696,29.9468001919817,1,24,1 -12749,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2327966673765,30.2458368424584,1,16,1 -12750,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.70460368529893,25.5291009376277,0,17,1 -12751,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4985018793959,26.0439084684328,1,15,1 -12752,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0880634097848,24.4508042229266,0,9,1 -12753,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.61285094544291,30.698688070844,1,14,1 -12759,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.84705195529386,22.5141792212028,0,11,1 -12760,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.6538143849466,22.3813707546013,0,15,1 -12761,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.90933155594394,23.5416493141751,0,11,1 -12765,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.56810542428866,28.5309364042487,1,22,1 -12768,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4574648332782,27.0544582639403,1,14,1 -12770,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4986496099737,28.5174446493016,1,22,1 -12771,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.0871030746493,27.8037131036571,1,12,1 -12772,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4938457226381,29.5172712350515,1,24,1 -12776,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3808494154364,28.0451460413637,1,11,1 -12780,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1926761101931,28.8144764232098,1,15,1 -12789,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4506981885061,31.8553291020755,1,17,1 -12793,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4499746842775,24.3311734005043,1,13,1 -12803,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.1375499693677,22.1016208727778,0,9,1 -12804,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.56100194249302,23.1493687136225,0,14,1 -12805,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0471709130798,23.8530597408271,0,8,1 -12807,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.441339595709,25.2145067545838,0,12,1 -12814,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.241380773019,21.8515514222893,1,9,1 -12819,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.55303056444973,23.1819908609274,0,17,1 -12822,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.0894714733586,29.4440152349101,1,20,1 -12823,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3853986856993,21.5488613532509,1,15,1 -12824,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.97742989636026,29.4922470239053,1,21,1 -12832,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4054411745165,28.1177999877103,1,21,1 -12833,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3124973541126,25.3130966081543,1,17,1 -12836,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.9955543843098,30.1642680054539,1,13,1 -12837,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.2829548357986,22.7992943351606,0,13,1 -12838,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.1770434475038,27.0315133506636,0,13,1 -12844,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.85681622312404,25.4246615575123,0,12,1 -12845,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.0107481083833,30.6844625694338,1,17,1 -12848,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4303494060878,24.6751873119416,0,10,1 -12852,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.1742697637528,26.6115222706577,0,7,1 -12858,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.89168805372901,26.5323252128963,0,6,1 -12859,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3646409350913,22.3755849073655,0,7,1 -12860,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.81267246184871,18.6365212667786,0,12,1 -12863,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4353005548473,30.1235379394079,1,19,1 -12865,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4954525297508,24.4822727639393,0,13,1 -12871,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.58441913616844,24.2223161049299,0,11,1 -12876,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4181708898395,31.1953550270967,1,24,1 -12877,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4276764285751,24.7313468917587,0,11,1 -12878,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2075951667503,27.8751176087266,1,12,1 -12882,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.94349608337507,23.4638362144025,0,16,1 -12884,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.54444681107998,24.6610034495837,0,11,1 -12885,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3364234187175,24.2086709620327,0,12,1 -12889,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.74289740575477,22.3909172839753,0,15,1 -12890,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.69506780058146,21.6125097303637,1,12,1 -12891,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.71654414059594,29.0679275841574,1,23,1 -12892,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4296188957524,22.9322331351962,0,13,1 -12894,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4227251734119,27.4479966633979,1,18,1 -12896,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.78536364110187,26.8210996273882,0,15,1 -12898,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.2857329044491,22.7339239938355,0,11,1 -12899,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.98899811925367,22.6603289486346,1,8,1 -12900,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2696385500021,27.2033073926808,1,15,1 -12901,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4724862650037,27.1656072564929,1,19,1 -12903,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2624529418536,29.3217921336451,1,9,1 -12904,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4685183996335,25.6699387470472,1,14,1 -12905,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.89187871804461,23.5311420129312,1,9,1 -12914,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.66529134009033,23.6491589109968,1,12,1 -12919,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.89693556400016,24.2813930715612,0,11,1 -12921,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.54855201183818,28.1646274447383,1,22,1 -12922,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.62500161584467,29.8595991670179,1,23,1 -12924,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3412596543785,25.2909881485153,0,13,1 -12925,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.193345549982,23.1745024007965,1,12,1 -12927,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.98394162906334,32.3794981914456,1,22,1 -12928,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3190759501886,22.7750245844049,0,5,1 -12933,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.95229996670969,26.4393285338891,0,10,1 -12934,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.64901985437609,23.2989868365433,0,10,1 -12935,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0512204333209,24.1620250474922,1,10,1 -12937,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.57820590981282,28.0294548287706,1,18,1 -12938,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.189300643513,23.3517142380256,0,13,1 -12946,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.64975323271938,27.0615733166028,1,15,1 -12948,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3972982876003,22.672942928509,0,7,1 -12949,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1662370082922,28.5368310852193,1,20,1 -12953,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4121081021149,23.3611458909042,0,12,1 -12957,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0655899625272,22.4610217844534,0,12,1 -12961,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.85683907661587,30.341292095275,1,23,1 -12967,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2123654836323,28.5034907069613,1,19,1 -12976,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.98362032882869,26.9197309171532,1,17,1 -12977,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3045771704055,24.5923325517438,1,13,1 -12978,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4691493834835,22.1796134020275,0,6,1 -12979,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.1443191973958,24.3924950528644,0,6,1 -12986,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4240206498653,25.1595221792211,1,12,1 -12990,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4936832713429,21.8837765501489,0,13,1 -12991,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.80091320443898,23.0302095138362,0,9,1 -12995,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.81557115749456,28.4352051362999,1,17,1 -12997,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2454470291268,21.0674414489501,0,9,1 -13000,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.52492030127905,27.7103937814035,0,10,1 -13002,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1672924207523,22.4448183734686,0,10,1 -13006,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.287999513559,21.0647903023942,1,7,1 -13007,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4034872166812,21.2956745263595,0,9,1 -13008,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.75600355817005,25.5598004849341,1,12,1 -13009,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2681052954867,22.681983166326,1,13,1 -13012,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.94569544983096,23.7127513951138,0,12,1 -13015,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.9503233616706,23.2481841799928,0,2,1 -13016,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.48077610787,26.5924970034897,1,18,1 -13020,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0976219207514,25.5619942531162,0,18,1 -13023,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.98252832191065,21.972516998672,0,8,1 -13028,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.3865921914112,25.023006455571,1,7,1 -13031,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0104997740127,31.2770880051009,1,8,1 -13039,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.62996688531712,23.3929465381335,0,18,1 -13047,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.9117610049434,21.9827271038694,0,11,1 -13049,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.71001120423898,22.6594564469822,0,6,1 -13054,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.70062799565494,26.1008327979453,0,11,1 -13056,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.54952669609338,21.9241643209281,1,15,1 -13060,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.87573594693094,26.1120941809705,0,16,1 -13061,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.93141236878,18.7535028345544,0,11,1 -13064,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2411805235315,27.0485830809341,1,13,1 -13069,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.69000144256279,22.3764158859747,0,13,1 -13071,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2001110664569,21.2087732701854,0,8,1 -13072,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1600766361225,21.7817781221133,0,6,1 -13073,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.54410717403516,26.4746744414612,0,14,1 -13080,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.63449950236827,20.7259079937794,0,10,1 -13082,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.96530207362957,27.6653125509502,1,17,1 -13085,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.88993079657666,22.1743938178874,0,8,1 -13087,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2064321693033,21.9553595599717,0,3,1 -13089,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1887500905432,19.8846716134292,0,12,1 -13093,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.71154738403857,26.7944414589241,1,13,1 -13095,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0800072478596,22.0076988621043,0,7,1 -13097,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.35686069238,20.6580355870925,0,4,1 -13100,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2056420827284,26.8789206848163,1,11,1 -13101,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.61978653399274,26.7888437242641,1,11,1 -13110,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1187588470057,20.5177621485897,0,4,1 -13113,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2084340052679,21.3157393902974,0,13,1 -13114,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.68755046068691,27.0762939055627,1,14,1 -13117,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1115896336269,25.9643313612942,1,8,1 -13118,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.74931047786959,26.5497620840283,1,19,1 -13123,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.65450231917202,24.7675224626914,1,15,1 -13124,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.99980169744231,22.0284089373652,0,9,1 -13125,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.8132634984795,28.5076604399614,1,13,1 -13126,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.184692239156,29.6053213458068,1,14,1 -13130,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0847705018241,29.3707213991542,1,10,1 -13131,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.92382316128351,22.9916630954149,0,6,1 -13134,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1771065415815,26.8602160233822,1,11,1 -13141,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1601917741355,20.9833454966435,0,7,1 -13143,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.3774610643741,23.5295039076853,0,10,1 -13145,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.68277968047187,21.7123700509728,0,11,1 -13148,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2034752930049,26.6433663296901,1,14,1 -13152,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.64689337252639,20.0698570649689,0,8,1 -13155,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1099854053464,31.0650834794231,0,13,1 -13156,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.84065146022476,23.1774338517068,0,5,1 -13157,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.59756045392714,28.5255291232651,0,15,1 -13158,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2030587822665,19.9520028778994,0,11,1 -13160,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.3071677915286,21.6810372535416,0,6,1 -13163,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.80128408479504,26.5566769478997,1,14,1 -13172,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.82513141166419,21.876575588101,0,5,1 -13173,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.89610464288853,30.4776918042554,1,12,1 -13174,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.3973205077928,29.3608411194476,1,13,1 -13178,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0874520544894,20.3513173959917,0,15,1 -13181,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.62273223977536,20.8970931045254,0,8,1 -13182,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.57481824583374,24.0286381844255,1,20,1 -13184,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4993070471101,27.3201583905259,1,5,1 -13191,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0199445146136,20.8031243119584,0,3,1 -13192,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.93227524403483,27.3441813968969,1,15,1 -13199,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.66794730303809,26.3719414793669,1,13,1 -13204,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4541249475442,27.2486385932255,1,13,1 -13205,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2318253929261,22.146992053053,0,5,1 -13206,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.77027017693035,24.2794156147904,0,12,1 -13213,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0579463590402,28.2291011762271,1,13,1 -13215,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.3126202186104,20.2965404392988,0,8,1 -13218,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.91224979702383,21.7895346784417,0,8,1 -13219,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1161629860289,19.7241421301011,0,11,1 -13220,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4992493842728,26.8650491802652,1,19,1 -13222,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0906250742264,20.230552978804,0,9,1 -13229,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.6069280677475,24.7754583416857,1,8,1 -13232,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4680355766322,20.6368465231858,0,12,1 -13237,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.50624204636551,23.3014005811972,0,9,1 -13238,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.8444307805039,26.9340549867985,0,13,1 -13244,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0759528984781,26.550563878432,1,16,1 -13248,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.200400818605,19.6701047896352,0,5,1 -13257,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.65134680573829,27.4551679148693,1,16,1 -13262,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.3000173475593,22.0319505904,0,14,1 -13263,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.73422838537954,26.7372836475431,1,12,1 -13264,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.60682602063753,21.7998819993466,0,7,1 -13266,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.59295127680525,28.2383718521893,0,10,1 -13267,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.82560673938133,20.1234241024367,0,8,1 -13274,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.61132885655388,28.3242217986868,1,16,1 -13275,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1049664937891,20.7215344980468,0,5,1 -13279,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.82198286475614,22.9334418193717,0,11,1 -13288,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.3554979665205,26.1345825392011,1,25,1 -13289,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4884296704549,21.2794138677106,0,11,1 -13294,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.206024941057,26.7063646932821,1,12,1 -13296,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.94130943366326,26.0340980563713,0,15,1 -13298,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1978459458333,27.8306385035628,1,17,1 -13299,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2386141070165,23.092378846504,0,5,1 -13307,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1682343801949,21.8963531399787,0,7,1 -13308,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.84690850740299,28.1449108667479,1,10,1 -13310,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.72342032566667,27.3839444412947,1,17,1 -13312,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2532362446655,26.6826495834137,1,13,1 -13314,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.97433750028722,27.0422039896064,1,15,1 -13315,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1280365148559,27.1935669186843,1,18,1 -13320,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.88944875309244,25.8825203890781,1,16,1 -13323,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.75865717465058,27.7515635967965,1,10,1 -13324,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.73707982408814,21.3102281436284,0,7,1 -13327,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.3221975273918,24.6909086680058,1,19,1 -13328,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2802196987905,25.8557261028703,1,12,1 -13330,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.3475736130495,26.4549309646609,0,13,1 -13332,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2520426777191,23.0688966060661,0,6,1 -13334,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2670581729617,26.699307830218,1,17,1 -13336,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2835307288915,27.524737054843,1,21,1 -13340,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0185172718484,26.6638264081196,1,18,1 -13341,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4680269786622,21.8636761433347,0,11,1 -13351,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.78124175383709,29.5481466845225,1,17,1 -13354,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.62794999568723,23.566586683039,0,7,1 -13356,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.84785858052783,22.551671425831,0,6,1 -13357,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.7247729501687,28.3324766454578,1,12,1 -13361,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4791678639594,24.1134405231533,1,15,1 -13362,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.3429944566451,19.182687695267,0,8,1 -13366,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2908337034751,27.8230222973272,0,20,1 -13367,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2878960431553,24.6935412547081,1,12,1 -13368,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.55389292468317,22.0007177612986,0,4,1 -13371,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0363570060581,24.2835550411314,0,11,1 -13374,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2285063923337,27.5871686670809,1,12,1 -13379,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2172996499576,28.9738778651618,1,13,1 -13380,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2596912269946,20.9530197575043,0,6,1 -13386,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.75020545558073,26.643421990416,0,14,1 -13388,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.55648158537224,21.731971252606,0,12,1 -13395,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.3094400155824,27.9568457480094,1,22,1 -13397,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.98466817336157,26.9847987208088,1,13,1 -13403,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.80655438755639,25.8339508629156,0,18,1 -13404,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.75486384215765,27.1301441193672,1,11,1 -13405,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.380398749141,22.6525787209273,0,11,1 -13407,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.50071253045462,22.8831773715027,0,11,1 -13408,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.97192253987305,27.2586489649948,1,23,1 -13409,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.77658263407648,22.5667743699515,0,12,1 -13410,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.215186126763,22.8422582920271,0,9,1 -13412,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0572651324328,20.6098284527743,0,7,1 -13413,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.143770879833,27.9142227669627,1,11,1 -13419,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.65622967598028,21.441561578356,0,7,1 -13420,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4384506703354,23.2375965571913,0,10,1 -13421,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.97682289220393,20.347487951094,0,16,1 -13422,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.3749009475578,25.8178642503366,1,21,1 -13425,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0474571136292,26.0772492902518,1,12,1 -13427,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.56606017705053,21.2428345450682,0,7,1 -13430,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.68311927071773,25.9478679571278,1,10,1 -13431,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.313729719026,26.0623749638303,1,19,1 -13432,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.3043075948954,22.1629967348545,0,5,1 -13433,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.83420901815407,26.1132409148321,1,14,1 -13438,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.69303627777845,27.5479240025046,1,6,1 -13439,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2824379140511,22.3794484316935,0,8,1 -13441,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4795966530219,26.1430177580752,1,12,1 -13443,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1377540610265,20.1673102626328,0,12,1 -13446,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2909324355423,20.3773311383112,0,13,1 -13451,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0480071122292,22.3981482331292,1,8,1 -13454,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.86301061697304,21.8974616233572,0,5,1 -13459,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.77374226879328,25.680369955322,1,10,1 -13464,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.84522050293162,27.3523248008578,1,18,1 -13465,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.68747617537156,26.6981007832659,1,14,1 -13468,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4104275763966,27.7980319453829,0,17,1 -13473,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2125455690548,22.0170771069665,0,8,1 -13477,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0005047006998,20.5429073771551,0,12,1 -13481,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4420352193993,21.5430823335214,0,13,1 -13482,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.68665447644889,27.1486038527295,1,18,1 -13483,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.3903542733751,28.2584949490807,1,13,1 -13487,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4263916136697,21.941795763647,0,10,1 -13491,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2263790685683,25.1128476401999,0,9,1 -13494,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.075644666329,24.8939724416267,1,12,1 -13495,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.1595150989015,24.5327627172435,0,9,1 -13496,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.90725025162101,19.8061104467902,0,11,1 -13501,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.62333633494563,27.8576879263881,0,14,1 -13505,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0716350486036,24.9910336928538,1,18,1 -13506,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.56668903771788,21.1994078991601,0,6,1 -13508,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.55406269617379,27.2202334619044,1,6,1 -13513,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2222165223211,24.7149261425651,1,10,1 -13514,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.57613933854736,24.0476012385826,1,10,1 -13515,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.78059340594336,26.8408719534523,1,8,1 -13517,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.61699398700148,23.8325791862343,1,11,1 -13523,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2056345266756,19.2779108761562,1,10,1 -13538,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2986282133497,20.85029095241,0,6,1 -13541,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.189267086098,26.8387570315715,1,14,1 -13543,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.203635985963,18.7948289000066,0,12,1 -13545,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4499001633376,17.2645388659331,0,7,1 -13548,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4639548521955,20.9886356424674,0,6,1 -13549,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0549390306696,25.819470254226,0,18,1 -13552,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.3490676016081,20.2677920617323,0,8,1 -13554,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.3597256175708,25.7319190932308,1,14,1 -13556,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.97383771301247,21.9769633672884,0,6,1 -13557,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.51864756341092,24.6826409926381,1,13,1 -13560,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2841485764366,25.392779952356,0,17,1 -13564,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.1175098840613,24.8638806402146,0,11,1 -13569,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4508017129265,20.7926959952049,0,9,1 -13573,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4782300048973,25.6641507137614,1,3,1 -13579,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.54970783321187,25.160795660137,1,16,1 -13580,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.1459818778094,26.5063297486805,0,8,1 -13585,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.58298377157189,20.7796737195062,0,6,1 -13586,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.81315271416679,25.3831077531505,0,8,1 -13589,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.82976467395201,26.5659810749006,0,21,1 -13590,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.3983757726382,26.692225404411,1,12,1 -13592,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4046343353111,25.9689351515421,0,14,1 -13597,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0988207275514,22.3002021896801,0,12,1 -13603,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2765040474478,21.8012854375237,0,9,1 -13609,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4209844963625,20.5827700888344,0,7,1 -13613,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4501638114452,27.4281882126327,0,12,1 -13618,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4628826384433,25.7500355617513,1,17,1 -13619,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2227898326237,19.2558476343032,0,4,1 -13621,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.89227018179372,22.3110406498652,0,10,1 -13622,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.86740629002452,21.2319476657592,0,12,1 -13623,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2243412227836,21.2738773527835,0,8,1 -13627,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4867003352847,26.5055612370222,1,12,1 -13628,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0934184575453,19.667924167818,0,5,1 -13631,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.5714199768845,19.4578999128658,0,11,1 -13632,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.097657145001,25.3800796465544,1,12,1 -13635,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2148548476398,22.3520318542715,0,12,1 -13637,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.8360692334827,18.6593041785527,0,14,1 -13638,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0401097431313,21.4255927911113,0,8,1 -13641,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.3159764755983,26.2199353950008,1,12,1 -13642,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0660363659263,18.6560941607657,0,4,1 -13648,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4476554626599,25.3177681513925,1,8,1 -13650,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.50127408420667,20.7039446428819,0,14,1 -13653,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.3046703308355,24.3887058659393,0,18,1 -13654,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.66555032785982,25.8565458501851,0,19,1 -13659,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.98312495579012,25.7717075283001,1,10,1 -13665,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.93083211313933,25.8231717047784,1,16,1 -13668,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4874963595066,25.5846536017904,1,12,1 -13669,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4987321419176,26.2540959721229,1,9,1 -13670,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.82960377028212,25.8423295438856,0,10,1 -13679,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.75651409407146,21.7779558861316,0,11,1 -13681,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.87125173863024,19.4446591311545,0,6,1 -13682,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.1837798519991,21.0185760880416,0,15,1 -13683,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.6497839349322,19.3203959474691,1,7,1 -13686,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.3383858618326,24.2439247569935,0,9,1 -13687,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0308390015271,20.2829348045537,0,8,1 -13691,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.99649008340202,20.2330978579096,0,10,1 -13693,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2417577917222,22.8560323127594,0,10,1 -13695,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.99817849812098,26.9441538439039,1,14,1 -13697,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0783640220761,22.4304637621689,0,5,1 -13700,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.87544947210699,21.2541761816602,0,7,1 -13702,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.72281825169921,25.3798351481491,0,14,1 -13706,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4852113814559,26.226045113572,0,10,1 -13707,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.73668073234148,25.3182280005218,0,13,1 -13709,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.67480844282545,28.2397237339343,1,11,1 -13710,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.064282048028,19.9962706037341,0,10,1 -13717,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4867882078979,24.6826391924973,1,11,1 -13718,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.52809471054934,25.7008488709595,1,13,1 -13720,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.81953310314566,22.3866036385313,0,8,1 -13721,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2956041169818,19.8679889918621,1,7,1 -13723,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.5609004967846,25.5956716402224,1,11,1 -13726,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.82198325800709,27.1769636189128,1,10,1 -13730,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.6458122334443,27.0349562435294,0,12,1 -13732,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.54892144026235,19.6222992533609,0,11,1 -13733,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.3090432453901,22.5200545550186,0,10,1 -13735,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.79391695046797,26.6941693528737,0,16,1 -13737,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.51091794413514,26.1802838357744,0,12,1 -13740,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.51717228139751,22.7622010619327,0,7,1 -13742,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.74384046834894,24.1280826316467,1,15,1 -13744,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.3523148384411,20.3880544821047,0,4,1 -13746,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.60465533426031,25.32434959415,1,25,1 -13747,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.7479112194851,18.0827254895093,0,5,1 -13749,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0368621004745,21.0989873169578,0,9,1 -13750,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0991100666579,19.8980008689247,0,9,1 -13752,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.5474228032399,19.6645105634728,0,3,1 -13762,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.86472709313966,18.59478360466,0,8,1 -13763,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.98756066034548,19.7597346408941,0,6,1 -13766,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4909025651868,20.2253724201767,0,3,1 -13768,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.70736748515628,28.849551364866,0,10,1 -13772,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.369404751109,26.4132627423544,1,12,1 -13785,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4898119641002,25.2074427381501,1,12,1 -13788,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.087432425702,26.4580305119185,1,9,1 -13797,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.91901058680378,26.5221206062516,1,14,1 -13800,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4846065170132,20.8738036629971,0,5,1 -13801,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.57903293543495,28.0985936123302,1,12,1 -13802,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.77615744201466,22.0111980746926,0,15,1 -13803,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.3614098317921,20.212470380201,0,3,1 -13804,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.50816971971653,19.2102153029302,0,5,1 -13806,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.431921196403,25.199789406275,1,20,1 -13807,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.52734069223516,19.8211948423228,0,7,1 -13809,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2740439267363,18.2459288586781,0,2,1 -13810,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.95539681566879,27.4861856513667,0,9,1 -13811,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0829695514403,18.6696684514769,0,8,1 -13815,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.62249618279748,21.4377778823686,0,13,1 -13816,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.85386975994334,22.1147713842738,0,10,1 -13817,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.92594939633273,18.3932287522485,0,8,1 -13823,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.1385972998105,25.0715788799661,1,18,1 -13824,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2742772912607,21.5664461661272,0,7,1 -13825,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0936105945148,26.2671842908477,1,19,1 -13830,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.97269535623491,20.8181300800465,0,10,1 -13833,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.67593420716003,25.4867144247608,1,20,1 -13834,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.50561993313022,24.3747593717605,1,15,1 -13840,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.3659539972432,25.7243629444153,0,11,1 -13842,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.92682436131872,24.6193813979361,1,16,1 -13843,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.1683843794744,21.2935795211139,0,8,1 -13845,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2051445641555,19.3830235876922,0,6,1 -13848,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0095448356587,20.1865984176979,0,11,1 -13849,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.1681619733572,29.0495037610608,1,11,1 -13850,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.79238187219016,25.1543814129152,1,13,1 -13853,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.634897635784,25.1558112259892,0,8,1 -13854,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.3081193123944,20.5582467084478,0,4,1 -13855,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.97794854850508,28.5737373210445,1,16,1 -13857,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.64405799238011,25.6434448380706,0,12,1 -13860,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.95436426531523,20.8182216792459,0,10,1 -13861,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.1109253030736,26.6659979187919,1,8,1 -13866,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0456739554647,23.7897446583291,1,11,1 -13869,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.3600279616658,23.773454715203,1,13,1 -13874,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.3375926900189,27.1415334612652,1,21,1 -13876,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4270788279828,20.3117225692888,0,11,1 -13881,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0305413934402,24.3400465536295,0,11,1 -13882,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0618029632606,22.7675203125606,0,6,1 -13888,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.315743450541,27.0542175554859,0,13,1 -13890,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2117042059544,28.3239048565974,1,14,1 -13891,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2243437841535,28.1304913856846,1,15,1 -13892,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4321418947075,19.8183718583593,1,3,1 -13897,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.54669900075532,28.4730271372694,1,13,1 -13905,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2038291196804,19.9639777502363,0,6,1 -13907,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.75631641526707,26.3295773770137,0,10,1 -13914,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.071509459056,20.1836709858497,0,5,1 -13915,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.6758978497237,21.3080220758541,0,4,1 -13918,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.94795951410197,20.2863608209868,0,9,1 -13919,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.3648284003139,24.0540339762368,0,9,1 -13921,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.74164724163711,18.7106829510853,0,9,1 -13924,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0259991737548,22.8073187667736,0,7,1 -13932,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.3844081768766,21.1984156948264,0,7,1 -13934,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.3396157410461,27.428312809663,1,17,1 -13936,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.65495936642401,21.5991625190649,0,7,1 -13940,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2741169973742,23.9020977072691,1,15,1 -13944,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.74191696825437,21.8635174007256,0,5,1 -13951,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.1670161366928,20.2456797778793,0,8,1 -13953,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.66124989022501,26.5446453856754,1,11,1 -13956,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.93511823168956,27.007339109058,0,9,1 -13958,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4001196683384,21.3780058821004,0,4,1 -13959,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2022656323388,21.2001897215155,0,7,1 -13963,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.79514562175609,20.0140705965605,0,5,1 -13971,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.6703941130545,22.4720317662282,0,7,1 -13974,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.88481855671853,21.8032300351502,0,8,1 -13975,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4716802586336,24.761003679354,1,8,1 -13979,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.5862226029858,22.2070619982835,0,5,1 -13982,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0763518842869,19.3707043086038,1,5,1 -13983,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.72877911804244,23.4669921235822,1,4,1 -13989,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.9686793370638,23.8491589715364,1,19,1 -13991,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.245499928249,22.2003230354608,0,2,1 -13997,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.5764944087714,24.3990084189275,0,7,1 -13998,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.89588318043388,20.0781311115624,0,5,1 -14000,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3095648866147,23.3876742231979,0,18,1 -14010,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0527448577341,22.414693292384,0,3,1 -14011,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3601254834794,26.4915032901117,0,25,1 -14012,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2557375505567,20.6929696072218,0,5,1 -14013,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.98624611506239,20.0200667021229,0,8,1 -14018,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.50041538546793,24.6444623946424,1,12,1 -14021,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.53578603477217,21.6265230040799,0,10,1 -14025,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.61118207639083,17.7663649728223,0,13,1 -14027,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.54508694354445,19.1920796578842,0,7,1 -14029,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.493791756453,23.1618074647002,0,11,1 -14031,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2786161357071,19.4160205193848,0,7,1 -14033,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3504977852572,23.5858183230519,1,17,1 -14036,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4935214756988,23.9494627778565,1,8,1 -14038,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.76701927697286,22.577313064299,0,10,1 -14039,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.96296094590798,22.9418260660671,0,9,1 -14044,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.65855880058371,19.5688941549711,0,7,1 -14049,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.7892645727843,18.6858258551476,0,8,1 -14051,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.60646007861942,26.0789713234261,1,14,1 -14054,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1946879306342,24.133696977009,0,16,1 -14057,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.53926769341342,24.6623061533488,0,16,1 -14058,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.79872388835065,22.4096583882466,1,15,1 -14065,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.084837049013,21.2706048609902,0,8,1 -14069,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4462547863368,23.6011535724979,0,16,1 -14075,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.67828440759331,23.0924759596655,1,13,1 -14079,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.454245330533,25.8255750559289,1,6,1 -14081,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.68375066458248,21.1843986139032,0,6,1 -14084,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.76907920953818,20.929640829502,0,7,1 -14089,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.78522777929902,18.934892163919,0,4,1 -14090,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.52735206834041,18.0415813081891,0,6,1 -14091,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3232738869265,17.2911779024584,0,6,1 -14096,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.9228685349226,25.4064665161982,1,10,1 -14099,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.0001380473841,27.147498590562,0,13,1 -14100,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.94342516409233,24.6530664598111,1,15,1 -14101,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1993264728226,20.9511035899859,0,4,1 -14104,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.51866202568635,26.0289601093155,0,13,1 -14107,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.93318766308948,23.2216598215784,1,15,1 -14114,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1542834173888,19.9279281603735,0,5,1 -14115,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.87257887842134,27.0118361802998,0,19,1 -14118,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.97143230610527,23.8403879414306,0,6,1 -14119,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3445979778189,24.6080097330806,1,16,1 -14124,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.81732984492555,20.1317342288967,0,7,1 -14130,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.4655014041346,17.303579959825,0,8,1 -14135,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.51087010186166,20.3930596467694,0,9,1 -14137,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.90391090582125,18.5118303821732,0,12,1 -14140,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.92583729000762,19.7349698696281,0,9,1 -14141,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.350838009268,22.3649695516126,0,6,1 -14146,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.92712548840791,23.1975583573787,0,7,1 -14154,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.91807766142301,27.4047852595766,0,17,1 -14155,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4036026839167,25.393180516455,1,12,1 -14156,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.7898012320511,24.6452080143872,1,15,1 -14159,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.98243869631551,23.3647442827938,1,10,1 -14163,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.74547583586536,22.6882441752967,0,7,1 -14168,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3516101685818,20.5225855327648,0,6,1 -14171,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2547333235852,20.1433956766408,0,6,1 -14184,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.73269888549112,27.6724941622167,1,9,1 -14188,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.92288414645009,23.7681827626982,1,11,1 -14195,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.4030686432961,20.3785138795279,0,11,1 -14200,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.51938883471303,20.9074710751436,0,6,1 -14201,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.55714343488216,16.7598390719088,0,11,1 -14203,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.4122998355888,22.3417976850212,0,6,1 -14212,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.96991756372154,21.2547136035506,0,11,1 -14213,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0354783381335,19.4459837502229,0,8,1 -14216,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.88308522268198,20.6547942419281,0,13,1 -14218,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.59110690909438,24.6423048703629,1,7,1 -14220,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2697337297723,20.1747119007725,0,12,1 -14226,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.7872063415125,17.901768042683,0,4,1 -14229,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1847233341541,25.6928533694992,1,15,1 -14232,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.89500482869335,20.3912972121302,0,6,1 -14234,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.62856260337867,23.5314384843615,1,13,1 -14235,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.51912966836244,19.7021035920309,0,2,1 -14241,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.53508267295547,19.4871150079067,0,4,1 -14242,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.57901992206462,27.1874815768074,1,16,1 -14243,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2785633429885,23.5748422083004,0,13,1 -14244,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.77525250823237,26.1088264196375,0,10,1 -14249,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1314132355619,26.4968721051014,0,16,1 -14257,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4506051554345,24.307995174692,1,14,1 -14260,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.78788778209127,24.3332802400388,0,11,1 -14261,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.63053590618074,26.5260706872924,0,7,1 -14264,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3525170544162,19.1754174181039,0,6,1 -14266,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.50132821011357,23.0162908326216,0,7,1 -14267,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.73878238722682,18.9869074530538,0,11,1 -14268,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2131299499888,21.5201996712474,0,8,1 -14269,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.579063964542,19.9291144255197,0,4,1 -14271,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.74640604644082,25.6400808887842,0,15,1 -14272,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.74442865513265,22.6150567874946,0,10,1 -14273,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3336763347033,17.2505267784335,0,16,1 -14274,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.68666821508668,25.345608141175,1,11,1 -14275,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.6419535484165,25.2194156505412,1,11,1 -14278,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.87662966642529,24.5952475512862,1,12,1 -14279,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.8774514964316,25.6703286022896,1,17,1 -14281,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.53560571582057,23.8467559987111,1,14,1 -14285,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.106120001059,27.7635805549553,1,13,1 -14286,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.2708732739557,22.5562054648016,0,16,1 -14287,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.304960266687,21.5205242781245,0,10,1 -14291,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.52141168573871,26.9238156631606,1,14,1 -14293,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.70323298918083,19.2417347799,0,7,1 -14302,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.580418799771,20.0547503358903,0,11,1 -14303,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4103925696108,24.1172678597947,0,11,1 -14305,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3722434001975,20.9553764122397,0,11,1 -14306,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1496791236568,20.4966536591336,0,6,1 -14309,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3119699473027,26.5711548525539,1,8,1 -14310,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.86163740046322,24.8832871953289,0,10,1 -14312,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4925260627642,27.1789665047607,0,12,1 -14313,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.2491066858638,24.4537343412924,1,10,1 -14314,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.0547518304083,25.8433985565447,1,9,1 -14318,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.4252147097141,20.8041484304102,0,10,1 -14319,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3205378330313,24.4947031376074,1,16,1 -14321,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4879552859347,25.9783092536632,1,13,1 -14323,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.88541248487309,26.7007231063984,0,11,1 -14333,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.70922060776502,28.9938175975814,0,14,1 -14334,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.82622760231607,26.4461857097761,1,20,1 -14335,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.73239685944282,23.8409155178868,0,14,1 -14336,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.80992413847707,22.448032022827,1,7,1 -14337,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.90891155856661,24.8370539698277,1,18,1 -14341,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2170344369952,22.5493193895394,0,7,1 -14342,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.0636661036406,24.7786942903311,0,13,1 -14343,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.251370619284,22.321502426855,0,4,1 -14344,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.98250011727214,22.7839436662718,0,5,1 -14346,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2038493091241,20.6509504182475,0,8,1 -14348,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.70975506515242,18.0314553787689,0,7,1 -14350,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1115916890558,18.3123176370871,0,6,1 -14355,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.60876580281183,23.8852183941561,1,7,1 -14358,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1836210472975,26.7232100728438,1,9,1 -14359,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1573007917032,23.7359951420259,0,17,1 -14360,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.78474828228354,22.5618790770965,0,7,1 -14361,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.252364577027,24.8040052328242,1,10,1 -14362,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.4800968572963,16.5129654641149,0,8,1 -14365,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.483514452586,24.5308031802429,1,9,1 -14367,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.7138497531414,18.5402418823922,0,5,1 -14369,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3709613920655,24.7682775510252,1,12,1 -14371,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4472835974302,25.2448677027133,1,14,1 -14374,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.86282652895898,25.9511411310389,1,19,1 -14380,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.56515456130728,27.3327353181405,1,11,1 -14382,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1837184387259,26.1988622788264,0,7,1 -14383,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.61890543438494,19.6761223543175,0,15,1 -14387,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.72731766919605,25.4597796056152,0,10,1 -14398,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4994625288527,26.0758574647935,0,9,1 -14408,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1520370678045,26.8015778091947,1,15,1 -14409,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4816819981206,25.4856509109142,0,24,1 -14415,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.291743316222,26.5822722149706,1,17,1 -14418,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.51825121976435,19.4106481444632,0,6,1 -14425,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.97609536303207,18.6652259537976,0,6,1 -14428,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.4071200066246,17.1531542364564,0,10,1 -14430,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.0518916735891,25.5309319658538,1,7,1 -14431,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1276817601174,26.8463449678699,1,11,1 -14433,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.73155143391341,23.5798422326745,1,19,1 -14434,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.4948197402991,17.8636885107348,0,9,1 -14435,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3459198100027,21.4175094908692,0,11,1 -14446,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.87623136700131,23.0520589721018,0,12,1 -14449,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0698516007978,19.6064359493507,0,12,1 -14453,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.020491577452,24.1499316922721,1,12,1 -14454,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.88000190048479,20.3354367560278,0,7,1 -14459,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1115782428533,26.0197817859421,0,11,1 -14461,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.73807130404748,27.7894295575242,0,12,1 -14462,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.61780515126884,21.0308176071986,0,9,1 -14464,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1450955192558,20.2882393246605,0,7,1 -14467,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.96000569383614,21.0203252246006,0,12,1 -14471,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.68936590244994,24.9540546140258,1,9,1 -14472,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.4146489249542,23.8595986366604,0,13,1 -14475,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.55277964472771,27.5621020347649,0,15,1 -14478,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.64047527872026,24.6478592582623,0,11,1 -14480,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.61640184442513,22.8269066364626,0,13,1 -14483,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4259524927475,17.9432631334038,0,5,1 -14485,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.82068865816109,23.439665684996,0,13,1 -14487,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1304527428001,19.6572647666896,0,4,1 -14489,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0796854589134,17.8904949328863,0,2,1 -14494,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.94277976662852,18.0738935078272,0,6,1 -14500,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.74992590746842,19.0062208436684,0,3,1 -14501,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.72351505979896,16.1366925821832,0,7,1 -14507,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.60725565836765,18.4090166464412,0,5,1 -14510,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0594641112257,22.4141547712006,0,13,1 -14511,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.71613475866616,23.4154138724563,0,9,1 -14512,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1456738146953,22.4026464671017,1,12,1 -14515,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3811745913699,25.2902067104587,1,9,1 -14516,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.50990895973518,22.5968125563886,0,10,1 -14523,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.73820217442699,18.4716126002588,0,6,1 -14526,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.52101803477854,23.4498443307887,0,8,1 -14531,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2769976027776,23.3972137979279,0,9,1 -14537,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.68930200743489,20.6494034912699,0,13,1 -14538,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3572351459879,23.1062031036792,0,12,1 -14540,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2684762144927,23.1613899598841,0,8,1 -14541,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.79412827175111,20.2780198786881,0,7,1 -14543,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.85215594898909,14.0156826537735,0,7,1 -14545,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.9972499825526,25.03194141938,0,14,1 -14546,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0296723945066,20.5725343887215,0,5,1 -14548,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.98346313950606,24.1663192555677,0,11,1 -14549,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.71686107339337,20.1555309052483,0,7,1 -14550,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0617212951183,18.0238924491264,0,9,1 -14555,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.90577219845727,17.8597719676793,0,3,1 -14556,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0383949803654,20.9316804708931,0,6,1 -14558,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.75062731048092,23.1231137402876,0,7,1 -14559,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0095879845321,24.4397889813786,0,14,1 -14568,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.50352899846621,21.1478673648846,1,10,1 -14569,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0566633543931,16.4884399630696,0,9,1 -14571,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4774117902853,18.1627449164745,0,5,1 -14573,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.71999796619639,18.1680870365595,0,7,1 -14582,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.94197157258168,20.4808248036931,0,5,1 -14583,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.73523057787679,24.6030058425231,0,13,1 -14585,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.4894438132178,26.1125094568561,0,13,1 -14587,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2832284332253,25.2126219855432,0,12,1 -14592,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1627349194605,25.9620401203018,1,4,1 -14596,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2098775301129,16.8399815067437,0,5,1 -14598,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.86083232867531,21.9389363332274,0,7,1 -14600,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.79510995210148,21.454634744353,0,12,1 -14607,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.4773579600733,23.3023036267633,0,10,1 -14609,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1093642965425,19.5194420328665,0,5,1 -14613,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.70975369471125,15.8850172540576,0,5,1 -14616,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.4437442342751,24.5087208274277,0,6,1 -14619,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.7231788423378,17.0439118849877,0,6,1 -14620,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0959812467918,19.0542633020249,0,8,1 -14622,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4184491548222,18.0613790236593,0,2,1 -14626,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4543535739649,22.7928661253559,0,7,1 -14628,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.50637087458745,17.6912095047049,0,8,1 -14634,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.242426905781,19.4378567896864,0,4,1 -14636,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.73769650096074,16.1073920880895,1,6,1 -14638,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.67529175453819,17.2461500891162,0,8,1 -14639,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3325791026,25.4809428856865,0,18,1 -14641,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1420120857656,25.732464356614,0,5,1 -14644,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2548960770946,24.3515521733204,0,12,1 -14647,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.92039300571196,19.1185377202058,0,7,1 -14648,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.64002701453865,17.2038892746334,0,5,1 -14652,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.75819864822552,18.1331798057948,0,3,1 -14654,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4094410601538,18.7680057309954,0,9,1 -14662,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.59038818068802,25.449932259136,0,9,1 -14667,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.58038930245675,23.7178365668864,0,13,1 -14669,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1898471021559,20.8770417096208,0,5,1 -14675,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.61980353225954,19.0782751104647,0,4,1 -14678,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.78621401218697,23.8285173848343,0,13,1 -14679,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.60284734400921,22.1233200895866,0,14,1 -14680,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.87177116121165,16.3742013108936,0,6,1 -14681,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.64062102278695,17.8590301365514,0,5,1 -14683,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.83444004296325,20.798762209307,0,10,1 -14687,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.63977473182604,17.4856804782057,0,13,1 -14688,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.89791568811052,23.7564995475529,1,9,1 -14695,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.63575522764586,19.137742152249,0,3,1 -14699,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1971489547286,18.3083482639483,0,5,1 -14700,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.69119547028095,18.5295574761936,0,3,1 -14709,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1499642857816,26.0074667501079,1,4,1 -14710,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3080428626854,23.3426839200083,0,16,1 -14713,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3429328941274,19.7369970352748,0,5,1 -14714,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.51591393304989,23.712303638558,1,14,1 -14715,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2292252418119,20.6791267317847,0,6,1 -14718,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.9922095425427,21.1879778251699,1,5,1 -14720,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.60037396824919,23.9836618154248,0,8,1 -14724,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.58387288218364,22.1495370032541,0,22,1 -14728,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.93733246414922,23.2661396724055,0,6,1 -14731,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.90588069078512,19.3020595369756,0,5,1 -14733,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3338054600172,19.3488197761694,0,9,1 -14735,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.268191419309,20.3694652489486,0,2,1 -14744,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.70697047165595,21.1661540708998,0,7,1 -14746,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3314020265825,16.9815822842988,0,10,1 -14747,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2183914985508,19.616017694589,0,7,1 -14748,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.50833085272461,20.782368291283,0,12,1 -14749,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.64951477549039,18.3117301004127,0,4,1 -14750,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3301580264233,24.0640151642711,0,14,1 -14756,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2746907277033,19.5645590179094,0,7,1 -14757,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4204660255928,17.6012749621581,0,12,1 -14760,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1899292517919,25.0561419155762,0,12,1 -14763,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.78211569110863,16.1926952069048,0,7,1 -14772,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1146438920405,24.2451072061041,0,12,1 -14777,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0534834493883,24.5525494908439,0,10,1 -14781,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.89875086024404,20.9824155816945,0,9,1 -14782,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2510539032519,23.0133659310656,1,6,1 -14784,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.55886755557731,20.4203971693566,0,4,1 -14785,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0542707159184,22.9238284432333,0,10,1 -14787,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.9604090731591,19.0887704678126,0,5,1 -14797,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.86494266893715,23.5930030998946,0,12,1 -14799,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0950823277235,18.3923123082379,0,5,1 -14804,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0647729630582,16.9790982195719,0,7,1 -14805,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.62040085438639,22.9977742224915,0,11,1 -14808,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.55237747472711,17.3766872373109,0,9,1 -14811,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2355670519173,23.2368961641118,0,10,1 -14813,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.65496000600979,23.0079552639652,0,9,1 -14816,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1553237647749,21.0145754332918,0,4,1 -14817,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.59406334394589,16.9354872089765,0,10,1 -14825,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.70125513104722,17.0362310807979,0,1,1 -14833,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.4961538580246,26.1694052277418,0,15,1 -14834,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.96421332168393,19.5397070998766,0,12,1 -14835,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.97508240886964,23.1185207890207,0,11,1 -14838,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2791829074267,19.6132729530009,0,3,1 -14839,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.52571435389109,22.5069236731352,0,10,1 -14841,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.60560338571668,25.8720307519186,1,4,1 -14843,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.72572829667479,22.3174822145241,0,13,1 -14848,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.52762518171221,23.7797661460569,0,13,1 -14850,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0146731196437,19.5468322759073,0,7,1 -14853,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0365040535107,19.2345280518996,0,8,1 -14855,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.4565766050946,22.6682391217155,0,9,1 -14856,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.70487806503661,15.5758049029472,0,5,1 -14857,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.56833134358749,22.4822802718594,1,11,1 -14858,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.4042726061307,24.9744774144561,1,11,1 -14866,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.63406707067043,23.6470237181014,0,8,1 -14867,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4861750598066,19.9152375805263,0,8,1 -14870,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1966388258152,24.2871916896239,0,5,1 -14871,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.88257873570547,17.373911870942,0,8,1 -14874,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.92720416537486,18.5481856911889,0,7,1 -14875,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.95867689396255,23.1171261364233,0,16,1 -14881,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.91422369261272,18.1902870972003,0,9,1 -14882,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.92918367846869,17.0734348184138,0,13,1 -14883,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1509337190073,18.0011948531909,0,7,1 -14884,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.59591387887485,24.7988756772542,0,12,1 -14885,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.72668917989358,21.1601894097112,1,7,1 -14890,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0745640103705,25.9100770672602,0,11,1 -14895,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.4877338972874,23.6313447022431,0,15,1 -14897,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.5996735196095,23.0765039535374,1,14,1 -14902,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4544181067031,19.6997019450373,0,3,1 -14904,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3176197463181,23.9937147755356,1,5,1 -14907,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.59501974331215,21.0629144132308,0,12,1 -14909,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.89890602836385,25.4178571004592,1,8,1 -14910,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.64847639785148,18.6528636928215,0,12,1 -14911,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.98758809198625,22.5875416859684,0,6,1 -14914,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.105327547295,19.8239815855713,0,9,1 -14915,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3221999327652,22.2225847490459,1,6,1 -14918,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2010460980237,23.2117575341686,0,10,1 -14920,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1482330553699,21.0805125359047,1,10,1 -14924,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.80511440942064,21.5049436222505,0,7,1 -14925,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2543797981925,19.1739573724295,0,5,1 -14933,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.57836052007042,20.0288342124374,0,3,1 -14934,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.60954334191047,23.6198624591078,1,7,1 -14937,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.92770590656437,17.7595176828334,0,1,1 -14938,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.70275074359961,20.1878619348431,0,6,1 -14939,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.57485370058566,19.5091453562324,0,2,1 -14941,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.7777913461905,24.4208010422537,0,6,1 -14942,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.83674427703954,19.1820752094283,0,13,1 -14944,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.74567863228731,25.8294161515856,1,6,1 -14946,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.70923404418863,17.4862730173509,0,9,1 -14952,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4407413827721,16.0617313161286,0,7,1 -14956,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0329702058807,22.7430459467783,0,5,1 -14957,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.8229475019034,24.4543737917926,0,7,1 -14961,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3403198651504,25.9332387124212,0,14,1 -14965,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1499016701709,23.6732823923981,0,7,1 -14969,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2694079743233,14.8413229714759,0,4,1 -14974,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0406497046351,18.6531543602348,0,6,1 -14979,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.15713194618,23.0816213120152,0,10,1 -14980,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3079639354255,20.9228384566991,0,14,1 -14986,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.70709628565237,19.6167852667866,0,7,1 -14990,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2464762751479,22.0244318841124,0,6,1 -14993,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0643717541825,22.3082415124799,0,7,1 -14994,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.63250236026943,22.5515413343176,0,11,1 -14996,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.76553708873689,26.1645964594343,1,9,1 -14997,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.26329037291,26.961019459282,1,11,1 -15000,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.017355915159,22.492725800304,0,9,1 -15001,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3067029812373,23.6929195376907,1,5,1 -15003,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4728268892504,20.4353729155753,0,8,1 -15004,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.6224852220621,25.1317859214397,1,19,1 -15007,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0333569031209,22.1819020829891,0,6,1 -15013,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.81388965132646,29.8822024187909,0,17,1 -15016,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.1901768231764,25.4193248805853,1,13,1 -15020,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0214825742878,23.7951211209405,0,15,1 -15025,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.86056975321844,22.6959815936081,1,8,1 -15026,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.78940625186078,21.8835757696704,0,10,1 -15029,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.62465731776319,20.1758220491968,0,7,1 -15033,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.63476032321341,20.1998430885502,0,6,1 -15034,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3957402531523,21.1179584815572,0,15,1 -15035,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1599330236204,20.0342825966095,0,9,1 -15042,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3660876606591,28.7392924892959,0,14,1 -15044,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3730221458245,22.1185291210562,0,14,1 -15045,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.52394907409325,21.3023460873456,0,9,1 -15046,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0088219693862,23.3147323628575,0,7,1 -15050,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.94512501987629,29.7616096702132,0,11,1 -15055,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4827731011901,19.6751783121092,0,9,1 -15056,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.55795693420805,26.1993203817323,1,11,1 -15057,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.86900458927266,21.3230386227061,0,4,1 -15059,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.82633404294029,22.162563804666,0,14,1 -15062,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1492125389632,20.769975247791,0,10,1 -15063,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4923367444426,22.5716638270976,0,6,1 -15066,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3517883138265,21.3462857985036,0,9,1 -15067,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.70621946337633,22.4668117577949,0,11,1 -15068,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.62776022241451,27.6420542815573,1,13,1 -15071,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3380605576094,25.5976023408908,1,17,1 -15074,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.1038687315304,27.2689339672696,1,8,1 -15076,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.99960242910311,23.4885299841337,0,6,1 -15077,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.77592730941251,21.9166433081488,0,6,1 -15081,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4252429248299,26.1505182172806,1,19,1 -15083,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3875259605702,27.5611658445035,1,8,1 -15086,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.5082404462155,22.2413087101146,0,6,1 -15087,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2046029949561,18.5275029955395,0,5,1 -15091,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.51735660457052,29.5057824767644,1,14,1 -15093,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.56821643910371,28.2642772318823,1,15,1 -15095,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0695460643619,22.9991108780798,0,13,1 -15097,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4246407980099,27.6729428482932,1,18,1 -15109,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.53427809965797,20.995128593506,0,4,1 -15111,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.82347934064455,22.7685919416254,0,11,1 -15122,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.1264938004315,27.1147312433082,1,9,1 -15126,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1925873251166,23.4315311281703,0,9,1 -15130,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.75926923612133,29.4404666369849,1,11,1 -15133,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.62355127208866,23.2656812212016,0,15,1 -15134,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3585887129884,27.3635376765859,0,16,1 -15136,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.8613513649907,21.1005942893251,0,6,1 -15141,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1056090467609,23.6985948970844,0,7,1 -15143,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4821075915825,27.50091131442,0,11,1 -15145,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0503176811617,23.6359928843641,0,13,1 -15147,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.91792459436692,22.0191259971017,0,12,1 -15157,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.90235183993354,23.147655881132,0,7,1 -15164,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.67255497584119,21.9617449169442,0,10,1 -15166,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.2487158565782,27.1783009345607,0,11,1 -15170,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.86963082081638,27.0488288028789,1,19,1 -15171,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0336379460059,21.8283985996731,0,10,1 -15173,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.98086700448766,21.5245342142692,0,11,1 -15174,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3882944686338,22.7871506664507,0,14,1 -15175,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.91720604873262,23.5986457090272,0,12,1 -15176,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.2257885904983,26.13786135465,1,8,1 -15180,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.342344825156,24.6252856524724,0,9,1 -15188,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3227802566253,29.7730794956384,1,19,1 -15191,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2211392652243,23.3048423169132,0,5,1 -15194,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.67702212557197,21.187889235555,0,5,1 -15195,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.174079648219,28.0654623876424,1,18,1 -15207,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.56175497872755,28.5500270700977,1,11,1 -15209,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.84034601249732,26.9733319438569,1,10,1 -15210,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2431339356117,22.1037218713727,1,12,1 -15212,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.8146646390669,18.8354861913114,0,8,1 -15215,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.54038755968213,20.7744245535166,0,7,1 -15217,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0018262322992,27.7626674738116,1,17,1 -15223,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.74517389247194,28.1457626605611,1,19,1 -15229,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.62254910194315,28.0901833062262,1,21,1 -15232,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0221806298941,21.2278808607556,0,11,1 -15235,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4846404762939,25.5048212749372,1,12,1 -15236,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.53014048771001,21.8664119384048,0,8,1 -15237,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0255447120871,26.2950835416788,1,11,1 -15239,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.64206017879769,26.8797319960922,1,11,1 -15241,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1162034694571,20.5432469897988,0,7,1 -15250,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4754732705187,27.1802612974377,1,19,1 -15251,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.65316639957018,27.049002019056,1,16,1 -15255,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0820336355828,27.1782757853297,1,13,1 -15259,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4214404618833,27.3334625370413,1,14,1 -15261,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4176929942332,27.8649162253064,1,13,1 -15269,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3862059370149,26.1800420174918,1,18,1 -15272,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0708846731577,28.6250459157697,1,13,1 -15273,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.85389331541955,26.1780320211345,1,11,1 -15276,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.9078079694882,27.0970298624604,1,16,1 -15281,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4068118673749,23.1086662032687,0,6,1 -15284,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0985684872139,19.8633827957585,0,11,1 -15285,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.031928591663,25.0988129587329,1,21,1 -15296,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3428766813595,20.1036813451466,0,6,1 -15304,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.7551182648167,24.5936013146517,1,14,1 -15306,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3429233173374,22.0325666614327,0,14,1 -15309,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.2220512877684,28.3129011685101,1,19,1 -15315,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.97834032448009,25.7745410448403,1,11,1 -15318,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.60724119725637,22.4937969782585,0,11,1 -15319,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.93559480342083,28.1600182721487,1,7,1 -15320,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0033114184625,26.1781526785532,1,12,1 -15326,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.2821953678504,26.1975117719831,1,12,1 -15328,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3083757502027,20.958859616684,0,11,1 -15338,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.9854072930757,21.963340088336,0,7,1 -15341,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.78843818302266,21.5883624395975,0,12,1 -15344,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2668482048903,21.6102661223016,0,9,1 -15347,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.6410486495588,21.2278261845823,0,7,1 -15349,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3892741256859,23.7561765989311,1,10,1 -15350,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1477071812842,19.63445675219,0,10,1 -15351,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0637561336625,22.9045276282788,0,4,1 -15352,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1275601382367,23.3847785041313,0,7,1 -15355,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.61863072961569,29.0161790097531,1,11,1 -15357,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3547168301884,27.2994633180039,1,15,1 -15360,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2087895760778,23.292667567432,0,9,1 -15367,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.69209195836447,20.6680469729159,0,8,1 -15369,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4969811008777,23.426483558619,0,8,1 -15370,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.5754846718628,28.4009048003686,1,13,1 -15374,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.89262012275867,29.0523407686841,1,13,1 -15375,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4678043173626,27.8352596023171,1,19,1 -15378,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.467941906536,28.0101538280547,1,13,1 -15379,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2050509545952,22.7109469163377,0,6,1 -15381,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1240833099,22.2963130476558,0,7,1 -15382,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.73872262611985,22.2630831109948,0,8,1 -15384,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0790709373541,29.5626533712236,0,12,1 -15386,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.59149676118977,26.1466379521035,1,16,1 -15387,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.88842117483728,27.9149121034532,1,18,1 -15389,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3968746934552,28.7180202837932,1,10,1 -15396,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.1319785984233,28.3895794430254,1,11,1 -15397,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2086767691653,22.0698531754486,0,9,1 -15404,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.70105378096923,24.3335583274637,0,8,1 -15405,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3788671242073,26.0240846868225,1,16,1 -15406,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.99766911123879,23.9817025043506,0,8,1 -15408,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.59210741054267,22.0749082783606,0,10,1 -15409,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4892212958075,20.954697957792,0,9,1 -15413,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2931213376578,22.0876313089215,0,8,1 -15423,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.133701347746,25.9360304811469,1,17,1 -15428,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.1312853128184,28.8015942309673,1,11,1 -15431,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.8549446486868,22.9821147583442,0,12,1 -15432,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2082165668253,23.047561539049,0,13,1 -15433,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0591083695181,26.4079936629948,1,19,1 -15436,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.79422705038451,23.1736686981592,0,8,1 -15438,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.55434724432416,24.2365058581187,0,12,1 -15439,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2363928428385,22.0350085932802,0,10,1 -15443,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1001703068614,21.6788623267675,0,7,1 -15444,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0007916914765,26.7209667350371,1,16,1 -15445,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4409512053244,27.787473989195,1,16,1 -15453,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.6712306952104,17.4387669033281,0,5,1 -15459,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.7989628915675,21.4193997138258,0,6,1 -15461,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.98997914022766,22.0067766756384,0,9,1 -15471,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4879721957259,23.5059283023476,0,8,1 -15473,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3322285548784,19.5114707999553,0,8,1 -15476,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0763970862608,28.2641679401064,1,10,1 -15479,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0173573391512,26.6497222170324,1,13,1 -15480,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.91372477519326,24.2569096805699,0,6,1 -15481,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3946133973077,22.4118330769083,0,7,1 -15483,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.91690865438432,25.5049546415934,1,12,1 -15485,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3018344892189,21.4995402384977,0,8,1 -15495,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3939239054453,27.2303360668562,1,13,1 -15497,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0661071741488,28.9833811021706,1,13,1 -15498,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.75315135391429,24.0282254572724,0,11,1 -15499,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.90042537869886,27.6423049709886,1,16,1 -15502,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.59528042445891,22.610833300577,1,7,1 -15503,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.71744758496061,20.5694300223528,0,9,1 -15506,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4968180519063,16.7547004213926,0,19,1 -15510,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.54138053278439,26.2226888208324,1,11,1 -15515,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0202443879098,24.3241414045245,1,18,1 -15516,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1209254076239,21.5887891431892,1,11,1 -15517,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.7666645119898,25.724402403524,0,13,1 -15521,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4632931482047,24.1508360874608,0,21,1 -15529,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.79580865753815,21.6457247174497,0,11,1 -15531,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.3863173990976,24.8217790342109,0,13,1 -15532,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1905009821057,21.277216706648,0,6,1 -15536,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1930933804251,19.878787615803,0,12,1 -15549,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4007083643228,23.5352898828711,0,10,1 -15553,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.87809381168336,22.0810694121291,0,13,1 -15559,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.61715709045529,18.7021793164948,0,6,1 -15561,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4312256297562,20.8557495679923,1,13,1 -15564,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2613260541111,23.2809157066475,0,10,1 -15567,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.93097731843591,15.7185568174828,0,5,1 -15570,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3205616327468,19.2050943542495,0,8,1 -15571,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3030328860041,20.579344668893,0,4,1 -15574,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.70082102203742,22.963376212339,0,8,1 -15577,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.60096296528354,23.8529779958822,0,9,1 -15578,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.52692491863854,16.5020885104134,0,10,1 -15580,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2701157622505,23.5926550359564,1,13,1 -15591,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.91886818129569,20.1164756866927,0,6,1 -15593,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2499848415609,18.4893706675115,0,8,1 -15595,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.77858866215684,23.0139286553044,0,15,1 -15600,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0859700050205,19.5784888453794,0,6,1 -15606,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.60316865216009,16.3548505345398,0,7,1 -15607,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2334377134684,24.0291595329557,0,15,1 -15614,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2043990099337,15.7574237007643,0,8,1 -15615,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2460869087372,25.9701551978081,0,14,1 -15616,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.6374504561536,22.7446998668513,0,11,1 -15624,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1808092570864,20.474223337989,0,6,1 -15625,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.94400197803043,19.0636259838087,0,10,1 -15628,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.83968335622922,22.8737468559551,0,9,1 -15629,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.81523503456265,25.2769595217357,0,13,1 -15630,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.53265875880606,20.7818679289577,0,7,1 -15644,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.3474336608779,24.3338093283012,0,10,1 -15647,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.57148058735766,17.6609203046069,0,6,1 -15653,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0773159503005,20.3105608711957,0,6,1 -15654,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2717860823032,26.1433878753325,0,20,1 -15655,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.076239795424,19.4935546551617,0,7,1 -15656,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.51356230513193,18.3420110910068,0,10,1 -15657,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.034185300814,19.3763017539443,0,13,1 -15658,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.60840181307867,22.3617265424081,0,16,1 -15659,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0326726671774,25.6216165898999,0,15,1 -15660,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.125947992783,23.2940499845353,0,17,1 -15662,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.59261854784563,22.8020091913725,1,14,1 -15666,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.4830084305722,18.3410781238729,0,3,1 -15669,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2009405724239,26.6250975469425,0,9,1 -15671,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0454049238469,19.0558031462017,0,12,1 -15677,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.71690829074942,20.953673553439,0,23,1 -15680,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.90894385310821,24.8673584643231,0,10,1 -15688,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2580964302178,25.8585938135632,0,13,1 -15697,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.3451731996611,23.7321314182011,0,8,1 -15699,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1319506836589,24.6151916414761,0,14,1 -15702,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.79670774424449,19.7164567694621,0,10,1 -15710,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0451609564479,21.4276139236165,0,8,1 -15715,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.58376111183316,22.6496318183029,0,13,1 -15718,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2885235883296,17.1800353065098,0,7,1 -15721,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.9178091364447,20.6854260519054,0,7,1 -15722,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2699259978253,23.0729847662333,0,10,1 -15723,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.92999199265614,23.2733843222473,0,16,1 -15728,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.071320440853,25.6497769576671,0,11,1 -15730,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1999862280209,19.3206366312408,0,7,1 -15743,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1956581431441,15.9589805559266,0,6,1 -15748,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3597129075788,17.4371007149801,0,4,1 -15751,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1246813423932,24.4913129426475,0,10,1 -15753,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2682748739608,19.2708974829974,0,7,1 -15758,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.3187748859636,27.1147122694451,0,11,1 -15763,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.3235773402266,26.0890058553388,1,10,1 -15766,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.95314329699613,21.058459794838,0,10,1 -15767,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.92678961902857,25.0419892470766,1,12,1 -15768,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.67029802431352,26.1023405177092,0,9,1 -15769,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3943193117157,20.6142771370717,0,6,1 -15772,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.84812807221897,19.3037415015387,0,4,1 -15773,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.58474998595193,18.4223599252303,0,11,1 -15776,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1366123389453,19.1009597959857,0,8,1 -15777,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.73962123924866,23.9189755808376,0,8,1 -15778,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0917801172473,25.5035869342629,1,15,1 -15779,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.5859028219711,18.6804774119351,0,9,1 -15780,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.4050811915658,17.6519535578859,0,5,1 -15781,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1341794596519,17.7669426805785,0,6,1 -15794,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3518815245479,18.8237036236482,0,3,1 -15795,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.5091746377293,17.4033372624766,0,8,1 -15796,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2168749342673,20.1136969071802,0,8,1 -15797,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.191725267563,19.6496907979908,0,14,1 -15798,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.52148435683921,18.091862697929,0,5,1 -15804,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.3639945585746,24.8444951569987,1,13,1 -15807,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2402169092093,22.3890013458414,1,16,1 -15813,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.73739048652351,20.1564330283679,0,4,1 -15816,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1492473415565,24.0587228567156,0,10,1 -15822,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.93196018179879,19.0465240793858,0,9,1 -15823,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0187513201963,21.3693697850725,0,6,1 -15828,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.94136819709092,18.7522827247554,0,8,1 -15831,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.106851158198,23.5349824063452,0,10,1 -15836,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4131148708984,24.3247413263488,0,15,1 -15837,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.90831170394085,23.0543829691089,0,8,1 -15845,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.56769847264513,19.2909360807619,0,13,1 -15846,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.75471012457274,24.9859055058097,1,13,1 -15850,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.53165565780364,23.8768645482171,0,11,1 -15851,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1929920909461,20.0708000282872,0,8,1 -15854,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.237843021052,24.006505826694,1,8,1 -15855,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1396542729344,19.0759365809389,0,3,1 -15856,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.643524289364,19.9315278481116,0,7,1 -15859,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.60334506141953,19.5277220240419,0,3,1 -15863,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.57807164802216,24.3998770879929,0,9,1 -15866,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.183689680649,24.2655246543462,0,10,1 -15872,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.73684576456435,25.3978797563664,0,11,1 -15873,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2485932898708,18.4738997994652,0,5,1 -15876,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.54300140263513,19.3511516936973,0,5,1 -15889,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.4035191608127,19.2907372200005,0,7,1 -15893,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.57394395465963,25.0421514139389,0,18,1 -15895,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.8751604447607,24.0896122458608,0,5,1 -15896,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.80959409102798,24.9985697483976,1,12,1 -15899,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.56432759342715,25.1252252734335,1,16,1 -15900,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2053955453448,22.6153158709417,0,14,1 -15906,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4400610709563,25.3179573508481,0,11,1 -15909,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.80031256633811,19.2156520732429,0,5,1 -15913,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.99083402776159,26.8290610380606,0,8,1 -15914,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2606895109639,26.5437901622043,0,12,1 -15916,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0767248084303,15.2228761809926,0,4,1 -15918,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.54115957138129,26.0446256192667,1,14,1 -15921,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0471300815698,19.0781549261532,0,8,1 -15924,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2309026650619,24.5031659812459,1,12,1 -15926,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.3338064539712,23.8658875334216,0,21,1 -15930,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3208067843225,16.5360284289103,0,3,1 -15931,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.98825653502718,15.3608414250778,0,6,1 -15935,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.79870328702964,23.1774765127905,1,12,1 -15936,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3940815324895,19.2952917315032,0,6,1 -15937,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.5633233548142,18.6206078052391,0,7,1 -15938,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.80847007222474,25.2990245549161,0,12,1 -15940,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.51580913108774,18.5363536997469,0,11,1 -15946,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0868087050039,21.3629490874619,0,7,1 -15950,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2422275790013,18.8699845632019,0,12,1 -15952,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.64899075543508,25.2962241726371,0,12,1 -15960,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.8225695847068,26.2941517512312,0,16,1 -15962,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0411408385262,22.9152869642209,0,8,1 -15963,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4760135898832,23.7616521538187,0,13,1 -15966,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.58643981441855,18.9005362472157,0,8,1 -15977,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2816585504916,25.489637402816,1,13,1 -15978,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1390163444448,18.465927280583,0,6,1 -15982,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.87154680956155,24.0419959946158,0,11,1 -15989,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4663179796189,23.6634400961174,0,9,1 -15995,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.4584957933985,18.0339757864522,0,1,1 -16001,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2754925943445,23.7759146098754,0,12,1 -16003,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.50737839052454,17.4197335178072,0,4,1 -16004,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.73783112526871,17.1997409202794,0,10,1 -16006,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.70545091642998,25.0722232884215,1,13,1 -16010,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.082572533749,23.1758915193981,1,14,1 -16012,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4846028555185,24.086543057218,0,7,1 -16014,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0602921419777,17.1983905377004,0,5,1 -16017,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0928390948102,19.8148655324545,0,6,1 -16018,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1910559027456,24.3363424383984,1,14,1 -16020,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.82243015291169,25.7834502159235,1,19,1 -16027,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.95817963173613,23.8152640028601,0,16,1 -16029,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2867268957198,20.6524596827016,0,6,1 -16035,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.3542588111013,27.9946317585898,0,16,1 -16038,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.1842645928264,21.2217269233472,0,3,1 -16041,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.61222931044176,20.8683651241532,0,10,1 -16043,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4141737627797,24.409887722491,0,16,1 -16044,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.96071525267325,23.0561711188557,1,15,1 -16045,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1717532102484,26.987569395235,0,14,1 -16046,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.52266466547735,18.8627442802441,0,8,1 -16049,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0497514505405,21.6899207531019,0,11,1 -16050,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.0514915380627,27.5097082812256,1,10,1 -16052,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.53682423499413,21.1003339814581,0,3,1 -16055,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4049825686961,26.3948780643868,1,18,1 -16058,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4741210802458,24.6384653389387,0,10,1 -16064,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4974072179757,26.4513107848617,0,13,1 -16071,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.51234623859636,23.8708018054214,1,11,1 -16075,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.9075612181332,26.0366190977066,0,13,1 -16076,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.3313855270389,26.3059573056728,1,11,1 -16089,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.90625367546454,25.5226853687927,0,13,1 -16091,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3824906907976,21.1108031549738,0,7,1 -16093,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1223539269995,26.5736282969062,1,9,1 -16097,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.70793416420929,19.5651447527539,1,10,1 -16098,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.85563272819854,23.300023943488,0,7,1 -16104,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.87430671183392,24.8684535479691,0,10,1 -16107,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.95154771069065,25.9456912887756,0,17,1 -16108,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1305077648722,26.6618912038641,1,13,1 -16112,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.56653918139637,25.0276641072988,1,14,1 -16113,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.52129252022132,20.0475702231585,0,7,1 -16115,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4486204036511,19.5893548496068,0,3,1 -16118,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.53603912401013,26.3744520420223,1,11,1 -16120,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.65669431909919,20.0045963241995,0,11,1 -16123,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.72565422370099,28.6610882168523,1,8,1 -16124,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2554043482523,23.3562380499298,0,8,1 -16127,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.73551592743024,21.2548621363025,0,11,1 -16142,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.8483428566251,27.992818633673,0,19,1 -16146,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.1852055583149,19.9380161904446,0,8,1 -16148,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.0012082373723,25.1987746480648,1,12,1 -16150,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.1246299713384,20.3007881972642,0,5,1 -16152,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.68117529479787,24.517985926471,1,21,1 -16154,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.59349631075747,21.6193358778048,0,13,1 -16170,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2077433892991,22.450485412378,0,10,1 -16174,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.61557033262216,25.9585060513721,1,11,1 -16175,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.3915406123269,26.0122878827996,1,14,1 -16177,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4074629591778,25.0476847087316,1,13,1 -16178,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.58555154455826,25.7668614799603,1,12,1 -16182,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.54372119903564,24.2872847460698,1,12,1 -16185,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.64902202016674,24.6273898266553,1,11,1 -16187,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.86872419249266,25.3994594034663,1,13,1 -16189,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.87606763234362,26.980328112941,0,12,1 -16191,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.87899913406,21.7542036293463,0,9,1 -16195,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.75954035785981,26.9425343714533,1,10,1 -16201,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.8143890441861,17.6103908409744,0,4,1 -16205,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.59192736307159,28.6716233160297,0,14,1 -16206,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.50087304157205,26.6418452276565,0,11,1 -16207,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.78837764938362,18.4209687070354,0,10,1 -16217,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.073004050646,25.1877647140341,1,17,1 -16221,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.5758736890275,21.6113506364488,0,11,1 -16226,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.82620646967553,25.1438844192686,0,18,1 -16232,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2554124973249,20.1863523112501,0,10,1 -16236,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1351616021711,26.3604256142648,0,12,1 -16239,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.8172353124246,19.8847187869711,0,5,1 -16250,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.448426826857,25.7565650431298,0,13,1 -16251,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.97048927797005,25.6514100504199,0,12,1 -16252,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2186361907516,27.7877155131482,0,10,1 -16253,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4363792573567,28.1714737024387,0,22,1 -16258,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.013361704303,22.902336684495,0,4,1 -16260,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2079484169371,25.1949548893528,1,14,1 -16261,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.98408234003,23.9444211910054,1,16,1 -16263,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.52017852640711,20.282218451947,0,7,1 -16273,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.65105494135059,20.7953137831127,0,7,1 -16277,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.1492837059777,16.8211829085949,0,8,1 -16278,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3166082708631,22.1910531472976,0,12,1 -16279,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.65112749510445,27.6472783408195,1,12,1 -16280,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.98941467166878,19.4360390404525,0,10,1 -16281,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.60325436200947,23.3155578798518,0,7,1 -16282,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.73358658910729,19.4645062972581,0,5,1 -16285,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.0595984791871,25.2931289547623,1,10,1 -16287,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.5158065976575,19.9330664453226,0,8,1 -16291,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4103868056554,19.6099082002651,0,9,1 -16293,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.0726448968053,25.0125395534204,1,13,1 -16301,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2751752070617,20.2168843668272,0,8,1 -16302,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.55735037266277,23.2230471468647,0,10,1 -16306,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.68105366942473,26.7221936018883,1,16,1 -16311,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.9380951942876,26.0380729138901,1,13,1 -16316,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4895588932559,21.2578065612818,0,6,1 -16318,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.65787457488477,24.6309360892628,1,7,1 -16319,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.9962841568049,27.7855937922956,0,11,1 -16321,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.1376215566415,23.2131341615414,0,11,1 -16322,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4225114521105,21.3525410121404,0,11,1 -16323,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2628155930433,24.6641610656437,1,16,1 -16324,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.97284167818725,28.6639644865008,1,10,1 -16325,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2039905691054,25.5273234396871,1,8,1 -16327,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.76878147944808,19.7051818467725,0,9,1 -16328,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.98646050179377,28.4849698237802,1,9,1 -16329,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.6625269211363,25.0168088175508,1,15,1 -16335,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.3710101565812,25.8949424651294,1,14,1 -16337,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4089326385874,28.0317644774986,1,14,1 -16338,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.91894953022711,20.5799192879957,0,10,1 -16339,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1121836130042,26.7568783187333,1,10,1 -16342,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2603807966225,25.4422332453685,1,15,1 -16344,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.1574729683343,23.6671820066167,0,3,1 -16350,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.82873653806746,27.503076569265,0,13,1 -16352,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.64248191076331,22.317325232747,1,16,1 -16361,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4739738646895,19.7424966932888,0,14,1 -16376,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3722522731405,22.0818942807035,0,9,1 -16380,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0367946026381,21.6711983435034,0,9,1 -16383,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.69409527606331,24.6766761871117,1,11,1 -16384,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.91509682685137,25.8748379366479,1,14,1 -16387,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2578125002328,23.7696089504294,0,3,1 -16391,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.84978282172233,26.9043686459567,1,8,1 -16397,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.88593473145738,21.5561976739451,0,8,1 -16398,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.1348250934388,22.5482536545611,0,6,1 -16400,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.94782067206688,20.8794515975008,0,10,1 -16401,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4591101803817,20.0355457871789,0,8,1 -16403,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4101371958386,26.3766283200957,1,10,1 -16404,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.69046351825818,25.4475121234825,1,10,1 -16405,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.0264821732417,26.512475296355,1,14,1 -16410,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.81255104090087,26.4316661910089,1,11,1 -16412,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.53367114602588,19.3845877543034,0,8,1 -16421,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0323078332003,18.6702861314099,0,11,1 -16422,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2358742477372,22.2734403277106,0,7,1 -16424,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.96634483733214,20.7317353814246,0,9,1 -16427,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2442142721266,25.7734583456178,1,13,1 -16428,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0365798389539,22.0078712523342,0,14,1 -16431,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.92870245920494,19.6281315275274,0,15,1 -16433,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.99591530254111,19.2220660061585,0,10,1 -16436,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4539965661243,19.373912680056,0,14,1 -16439,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.74811172764748,17.7316680223753,0,13,1 -16441,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.78915273887105,21.061486842719,0,14,1 -16442,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.80682316259481,22.0845703267353,0,4,1 -16445,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.80159678403288,21.6576084689951,0,7,1 -16447,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3893884678837,21.8845250589451,0,8,1 -16448,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4190564707387,19.5977689853168,0,11,1 -16456,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.0819880985655,26.8865927325815,0,10,1 -16457,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.9941902353894,25.2256958280555,1,17,1 -16460,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4361244484317,22.5115732487498,0,5,1 -16465,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.65327976644039,28.0315589425236,0,14,1 -16467,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.56787724210881,16.9386339906024,0,11,1 -16473,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.72118829167448,19.5935321459517,0,10,1 -16475,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0063925166614,20.3736295335612,0,8,1 -16476,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.58940181881189,25.3860985552595,1,12,1 -16480,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0878697664011,19.5372057720226,0,8,1 -16484,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.472848223988,21.0116098067817,0,8,1 -16487,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.67492365511134,20.3451176083761,0,9,1 -16488,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.98864056542516,21.0737033683562,0,10,1 -16491,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2909686774947,22.494197360403,0,7,1 -16492,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.7848629092332,25.8838565143227,0,8,1 -16496,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.92911645863205,24.1985819740485,1,8,1 -16499,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.62993422662839,25.551537841601,1,16,1 -16500,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4713204579893,20.8414890017652,0,3,1 -16502,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4657767470926,23.8496752877663,1,23,1 -16503,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0659364180174,20.6679326340599,0,5,1 -16504,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.67997168260626,20.0935497482274,0,11,1 -16515,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.1586622036994,20.6668025406235,0,12,1 -16516,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.69193519814871,24.6747984292267,1,14,1 -16518,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.3450296004303,22.0297910502925,0,16,1 -16519,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.60924737877212,19.9702508238358,0,14,1 -16521,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.91993095586076,26.6478299730264,1,15,1 -16522,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.88535489654168,25.7705147542013,1,10,1 -16525,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.0537242444698,23.0819314799933,0,11,1 -16529,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1483426422346,23.6489954303163,1,11,1 -16530,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3009267752059,21.6201529078463,0,6,1 -16541,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.2248517328408,25.1236128781904,0,10,1 -16543,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3269848769996,25.2474106437536,1,10,1 -16544,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.57599010015838,24.6039700415369,0,10,1 -16545,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.2386157489382,26.0889160122171,1,16,1 -16546,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.069065613905,19.5269290862794,0,9,1 -16548,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1531152976677,21.4933199931519,0,4,1 -16554,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.52595706679858,24.4556463250795,0,11,1 -16557,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.91924665030092,24.4490829154405,0,9,1 -16564,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.72088234289549,19.3626505583893,0,5,1 -16565,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4618471961003,22.4080828502929,0,3,1 -16571,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.73309190548025,26.5115189698208,0,11,1 -16572,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.77169797103852,24.2733708171762,1,15,1 -16575,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.82430531270802,21.6053757849491,0,6,1 -16584,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.6948427085299,24.6696409955263,0,19,1 -16589,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.2441866758745,22.3486415210878,0,7,1 -16591,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4660137665924,25.8617775090443,1,17,1 -16599,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.96229442651384,20.7270738145689,0,9,1 -16607,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.62901123403572,25.4142600385574,1,12,1 -16611,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1622272846289,23.557101674436,0,5,1 -16614,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4888505551498,25.6323756417668,1,15,1 -16619,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.2815132564865,25.4706146110143,0,11,1 -16623,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3455995300319,24.5442466110596,1,10,1 -16624,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.59354027663358,20.07199861032,0,13,1 -16629,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.53604317526333,20.2228225996159,0,10,1 -16630,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.52827366651036,21.5728653974458,0,7,1 -16634,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.1834841188975,23.6607318644387,1,16,1 -16644,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.0293896018993,21.4967305389641,0,9,1 -16647,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.87229190254584,24.367974719971,0,14,1 -16649,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.86204922874458,23.6616668481184,0,8,1 -16663,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1631095663179,20.3631781091698,0,7,1 -16665,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.67334275506437,20.1760069660686,0,7,1 -16666,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.92506505711935,17.2469904161036,0,11,1 -16668,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4500153709669,20.2912429585666,0,11,1 -16676,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.3969393717125,21.8243175470161,0,13,1 -16684,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4225676530041,17.6357101616642,0,7,1 -16690,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.81965857208706,20.2211212149379,0,4,1 -16693,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3890974111855,24.4870426261704,1,14,1 -16694,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.98801443725824,21.7632781772351,0,5,1 -16701,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0312685340177,23.4844416948079,0,5,1 -16703,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.56769389030524,27.4840327466492,0,12,1 -16711,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.94308891636319,24.8933129570207,0,16,1 -16712,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.9702473806683,22.4362476055211,0,7,1 -16714,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.304485051427,25.4947904302073,1,17,1 -16716,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.97690052073449,26.7240782898386,0,13,1 -16720,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.3019689940847,19.7701000656654,0,7,1 -16723,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.59913636068814,24.4020201644142,0,17,1 -16725,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0611639162526,26.3962519761953,1,11,1 -16728,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4867689569946,25.9544129297327,0,11,1 -16734,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.7399544143118,25.231035645926,1,10,1 -16735,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.94877567817457,24.7790797514435,1,18,1 -16739,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.52689777268097,18.7751033694463,0,7,1 -16740,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3081467545126,23.2915519201,0,10,1 -16741,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.54736577766016,22.3143548582868,1,12,1 -16742,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4191129978281,19.8367873439226,0,10,1 -16743,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3238363275304,26.4808652688842,1,16,1 -16744,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.95064903935418,21.3367773441406,0,8,1 -16755,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.1731063269544,26.9481215685124,0,9,1 -16756,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.008706723107,18.7483023291666,0,8,1 -16757,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0175442374311,25.6620334380165,0,16,1 -16760,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0437971763313,25.988064242188,1,17,1 -16762,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.72947185160592,26.2681631057349,1,14,1 -16763,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.85309805581346,25.8026499103693,0,10,1 -16765,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.0051089422777,20.0129267148706,0,5,1 -16767,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.71488816523924,23.3773288633376,1,13,1 -16771,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0964452039916,25.7023102432185,1,10,1 -16772,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.2148022891488,21.2762527507898,0,8,1 -16773,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3037044536322,23.2439917653146,0,13,1 -16775,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.80375095130876,24.9786265060645,0,12,1 -16776,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4196973473299,21.3228835357598,0,7,1 -16777,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0007723111194,24.7004767258608,1,14,1 -16778,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.90089169098064,25.0393802614485,1,15,1 -16779,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.51349742640741,17.224401450621,0,11,1 -16780,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.73697179462761,18.5729661050953,0,14,1 -16782,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.405401883414,23.572931372271,1,10,1 -16788,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0848881166894,23.5805442395691,1,13,1 -16789,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.92538073495962,24.4340627501608,1,18,1 -16792,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.91332106059417,24.8129762818525,1,8,1 -16803,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.8351346841082,26.4018828017605,0,6,1 -16804,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1754277430009,22.0897566485503,0,6,1 -16807,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.52110895654187,23.4669651492609,0,12,1 -16808,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4818950688932,20.1089963102969,0,6,1 -16809,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.52346312627196,24.0712846365957,1,15,1 -16812,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.063182443846,20.8078523941815,0,6,1 -16814,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1308841921855,21.7866244765019,0,6,1 -16816,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.71317189699039,26.7023056869316,0,8,1 -16818,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.70699992170557,17.314845802641,0,9,1 -16820,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.189851605799,28.3224081424035,0,10,1 -16822,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.65824448456988,19.135494827661,0,10,1 -16832,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.95502401911654,22.2032725624438,0,16,1 -16834,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.1179638141766,23.6073117840686,1,16,1 -16836,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.1836611668114,25.9997884748761,1,12,1 -16838,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4108887258917,20.4774043779105,0,7,1 -16842,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.6599824691657,22.0194911040975,0,12,1 -16843,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.2211302733049,25.75840484622,0,13,1 -16846,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.82241759030148,16.5276729820279,0,8,1 -16847,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.8131406516768,24.3850104119953,1,9,1 -16849,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.53190697659738,26.3078679990665,0,13,1 -16851,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4949747361243,22.6167879778213,0,8,1 -16853,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.2190521915909,19.1291002902864,0,4,1 -16855,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0765770247672,26.4550685650269,1,8,1 -16856,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.95284632756375,26.3575121859431,1,12,1 -16857,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3023403279949,26.9381620905516,0,12,1 -16858,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.77267751167528,19.112800242283,0,2,1 -16861,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.63969818246551,22.2100123246065,0,9,1 -16863,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.2252883384936,18.2758464770488,0,13,1 -16864,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.91887286538258,25.7682927495165,0,11,1 -16872,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.2388449877035,23.4914950269269,0,11,1 -16874,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3265615866985,24.7567455405292,0,12,1 -16875,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4608693213668,27.6408530701206,1,11,1 -16878,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4090277811047,25.5370519797296,0,14,1 -16894,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.0161647808272,18.8190135815929,0,9,1 -16896,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.68366087623872,21.6234041430073,0,6,1 -16899,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.70187519723549,26.7860275847418,1,12,1 -16901,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.59520070417784,20.9906480731022,0,9,1 -16903,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.78049908508547,26.5762494897917,0,14,1 -16905,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.57161337905563,25.2410723752175,1,13,1 -16907,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.58470872091129,19.3259509447751,0,7,1 -16911,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.0849432733376,21.1087303189079,0,8,1 -16914,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.55343921366148,21.377710880893,0,7,1 -16915,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.58454556996003,25.5013003140052,1,13,1 -16917,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.6110110594891,20.639579179422,0,6,1 -16919,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.53642411879264,19.0958125417804,0,3,1 -16924,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.3218179380056,18.13610174318,0,6,1 -16925,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.38315653475,26.4183913814214,0,13,1 -16929,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.8812559992075,24.0844598493041,1,13,1 -16931,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.98022501613013,19.4053868298589,0,8,1 -16934,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.6409057052806,21.0451170884133,0,6,1 -16938,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.5420486854855,20.766375427025,0,6,1 -16942,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1311227616388,18.5303707194545,0,8,1 -16946,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.68414782360196,21.8980761004128,0,10,1 -16955,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.6544858017005,21.4852147929413,0,10,1 -16958,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.64725469960831,25.994191920311,1,12,1 -16962,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.0150540615432,18.5818409094822,0,6,1 -16972,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.60140481824055,25.8903726316507,1,10,1 -16973,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.72856201627292,22.0949557890362,1,13,1 -16977,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.53028222313151,25.4092464976161,1,15,1 -16979,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.3120381913614,20.7959355115805,0,9,1 -16982,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.89173726015724,16.1265900340247,0,2,1 -16988,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.81376411858946,19.9027303238681,0,5,1 -16990,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.84548678738065,20.4020073906282,0,5,1 -16992,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.0298649005126,19.88124144218,0,6,1 -16993,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.2868885195348,18.4283284228684,0,6,1 -16995,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.73686401895247,21.4913985633227,0,3,1 -17000,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3284368815366,26.1669292672806,0,7,1 -17001,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.98257477814332,23.5964759311374,1,14,1 -17002,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0906959124841,26.2341302816199,1,16,1 -17006,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.68529466795735,19.3107573320331,0,11,1 -17017,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.61347829038277,18.9582225776571,0,8,1 -17018,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4829697092064,17.7221272004263,0,8,1 -17021,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.2732122084126,19.5525991356063,0,10,1 -17024,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.80272909346968,21.8955503604063,0,8,1 -17026,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1321277553216,20.5303117577758,0,3,1 -17035,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.55926197138615,27.8548071567469,1,11,1 -17036,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.90828461991623,25.0904025486051,1,15,1 diff --git a/tests/testthat/data_files/CLUSTER/CLUSTER_SLO2.rda b/tests/testthat/data_files/CLUSTER/CLUSTER_SLO2.rda deleted file mode 100644 index 80d8d875..00000000 Binary files a/tests/testthat/data_files/CLUSTER/CLUSTER_SLO2.rda and /dev/null differ diff --git a/tests/testthat/data_files/CLUSTER/CLUSTER_SLO3.csv b/tests/testthat/data_files/CLUSTER/CLUSTER_SLO3.csv deleted file mode 100644 index 3bb2c8af..00000000 --- a/tests/testthat/data_files/CLUSTER/CLUSTER_SLO3.csv +++ /dev/null @@ -1,5838 +0,0 @@ -"idPatient","idSurgery","trtGrp","intSurgery","nDoctors","idDoctor","intDoctor","sloDoctor","nPatients","Male","age","BMI","diabetes","incid_rate","private" -3,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.67585739982314,30.224030231881,1,16,0 -8,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.56052444991656,29.2789066708475,1,23,1 -14,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3194539193064,25.576736191476,0,17,1 -18,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.53811761830002,25.0472764711206,0,15,1 -22,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2107359401416,31.8967535544514,1,21,1 -25,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0728390910663,25.8376894520752,0,10,1 -35,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.70347390160896,28.3521786862544,1,20,1 -37,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.74853644147515,25.3103170002155,0,13,1 -38,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.339812326245,30.8616273235912,1,13,1 -43,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0381781542674,25.572817335115,1,14,1 -51,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.1941468061414,24.773721200546,0,16,1 -55,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3586389343254,31.567249564155,1,15,1 -58,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.106878219638,25.4561198154872,0,14,1 -59,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0523177711293,27.434595077927,0,22,1 -66,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0864990055561,31.7112487468371,1,21,1 -67,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.95401998399757,27.2122221789578,0,18,1 -70,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3912196469028,26.0292761934473,1,13,1 -71,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3080000667833,31.5549353650039,1,17,1 -72,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.400022351183,23.4505520325045,0,16,1 -73,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.92098979954608,26.7415459317698,1,13,1 -75,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.96539898542687,22.1127213474106,1,21,1 -77,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.1834563999437,27.7299242623771,1,13,1 -80,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4901192793623,31.3063598466746,1,22,1 -82,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.53257628739811,25.3419643967415,1,9,1 -87,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.95636827754788,30.053272289519,1,20,1 -88,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.1142714966554,32.009755796778,1,21,1 -89,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.53568812040612,25.5499328393764,1,14,1 -90,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.115549081238,26.1979634694143,0,12,1 -92,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.70350591023453,28.0377077645519,0,10,1 -93,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.8853303687647,31.1850247071909,1,18,1 -97,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.1626807143912,27.2657358520902,1,18,1 -102,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.68602433754131,28.4654478476315,1,20,1 -103,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.749254997354,24.3721767567336,1,16,1 -110,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.055858346168,23.9105602738349,1,18,1 -117,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2652327502146,23.2135239835127,0,14,1 -129,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0876319741365,23.8474773187396,1,14,1 -138,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.8943496553693,25.4875792390153,1,13,1 -141,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3838712098077,23.428801984999,1,15,1 -142,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.57954004174098,28.0404191702928,0,11,1 -147,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.74832857982256,27.8594948943357,0,12,1 -149,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.6865159466397,23.427713287686,1,10,1 -150,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.88614494539797,24.8778366580323,1,18,1 -152,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.56531471945345,26.2663226780448,1,15,1 -157,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.61982847726904,30.8506078285929,1,35,1 -158,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.1578126060776,32.6160300448681,1,21,1 -159,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.60540946875699,25.4063778390169,1,11,1 -164,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.57141850702465,29.3440051186096,1,21,1 -166,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.67254072474316,25.422920224712,1,12,1 -168,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.56435862486251,24.2475974424713,1,12,1 -169,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.53481988655403,32.0921982080941,1,18,1 -170,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4173310231417,25.4289065698447,0,7,1 -176,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2074624709785,30.2306289571098,1,18,1 -183,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4713311698288,26.4363708412808,1,16,1 -184,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4273862752598,29.8295414175174,1,28,1 -189,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.90186756197363,29.6857719922215,1,28,1 -190,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2063639147673,28.0619593155927,1,14,1 -191,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.86563500203192,28.8486624772995,1,22,1 -193,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.73184824711643,30.9134257911552,1,28,1 -194,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.092427955009,27.6822099274109,1,14,1 -195,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4435678999871,30.675790397134,1,20,1 -196,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.132038912503,25.2435740971187,1,16,1 -198,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.80397983686998,30.6158806215524,1,27,1 -205,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.69350236537866,24.4443523089452,0,13,1 -209,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.1211613498162,25.6589920922773,0,8,1 -210,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3396963316482,29.8460538928278,1,22,1 -213,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.59075444657356,23.1427289790965,0,11,1 -214,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.92045754357241,29.4817526220823,1,27,1 -222,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.81460290262476,25.272982214062,0,8,1 -225,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.67311512632295,31.1215126856779,1,15,1 -227,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3277271478437,31.9810894632564,1,32,1 -228,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4750648273621,32.8298150155286,1,20,1 -229,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.343901138287,27.3184684497219,1,14,1 -230,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.69368646270595,23.9158648260385,1,14,1 -232,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.75823231809773,27.1004151796093,1,14,1 -233,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2555283687543,26.7777580964081,0,10,1 -234,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.192925776355,23.6919824583948,1,10,1 -237,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.5284043578431,30.1569394385689,1,20,1 -241,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.64433748344891,23.9936110028644,0,13,1 -243,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.74068526760675,27.871201116431,1,18,1 -244,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2609334443696,28.5580835411843,1,26,1 -247,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2619675358292,24.8202059015001,1,9,1 -248,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.75858647632413,23.3967664102298,0,11,1 -251,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.8482404530514,25.8150463285769,1,12,1 -252,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3221931720618,25.1917478472392,1,10,1 -253,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.94400295522064,23.7726280680531,0,9,1 -255,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3091617671307,28.6949746178794,1,23,1 -257,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.1485597693827,22.397996060281,1,20,1 -262,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4908712937031,29.9723790861596,1,21,1 -263,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3435937757604,25.3872678947425,0,13,1 -266,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3241817306262,29.1174355386248,1,21,1 -268,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.58002218673937,27.141523442664,1,6,1 -271,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.49844718026,24.8939882232239,0,13,1 -274,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0535329827107,29.0282776586066,1,17,1 -276,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.504152785521,30.5256132140758,1,27,1 -277,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3174320461694,26.7703793277723,1,13,1 -282,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.63988488237374,25.2104763171091,1,16,1 -283,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4909842240158,31.1322418023309,1,25,1 -285,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.67278047418222,26.7930230056525,1,13,1 -286,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.59083029255271,27.4314332404978,1,12,1 -288,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.78305829921737,28.6188133640978,0,14,1 -289,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.79628153401427,31.0695687612026,1,19,1 -290,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2656600854825,28.9143093535902,0,16,1 -293,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2911828018259,31.1390891359089,1,20,1 -295,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0635251009371,24.3653642897808,0,8,1 -296,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.85139606473967,26.9892020296318,1,7,1 -299,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.77178728207946,28.4029159280918,1,30,1 -300,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.63388678431511,31.217285937346,1,17,1 -303,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.1041036376264,32.6521512887881,1,18,1 -304,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2055907966569,25.3167490033424,1,17,1 -308,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2609631821979,28.5985219883497,1,22,1 -309,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2067389637232,25.9226356182195,1,15,1 -310,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4917590552941,26.2742422893979,1,17,1 -311,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.4971327267122,30.6212998402752,1,23,1 -314,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.61162998806685,27.1151044270889,0,15,1 -315,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4263040621299,25.8262155786669,1,18,1 -317,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3228305939119,27.296385877731,1,20,1 -323,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.55952299991623,24.5549817535275,0,9,1 -324,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.73411815729924,31.4512107648432,1,28,1 -332,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.95167129463516,24.9758482808508,1,8,1 -333,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0377737157978,25.3694290228075,1,12,1 -338,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.70200119609945,29.656564554313,1,8,1 -340,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4164547363762,25.5099076069904,1,11,1 -342,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.66396312066354,29.4628650947311,1,18,1 -345,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.1946822800674,26.4148513326689,1,7,1 -346,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3590107141063,23.4341966553391,0,9,1 -353,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.75046577258036,31.5497232021832,1,21,1 -354,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.54090522043407,25.6836682129924,0,9,1 -363,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.7284254191909,32.3025325398801,1,24,1 -370,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.76050327485427,24.8964138516746,0,17,1 -371,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2557892662007,25.0975230639184,1,10,1 -372,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3255949534941,31.8359191587031,1,27,1 -374,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.91601869394071,25.3856790504527,1,10,1 -377,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0843369811773,26.2928095592672,1,22,1 -378,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0966531948652,33.0309968593204,1,14,1 -379,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.420575619908,30.6900412229825,1,17,1 -384,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.79193367506377,30.0276549411221,1,21,1 -387,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2308064915705,23.9432922550313,1,17,1 -389,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.3540211922955,25.1571396475281,1,14,1 -390,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0830571136903,31.0947515189634,1,16,1 -394,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.0559756129514,27.1637784478817,0,9,1 -400,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.2859879231546,24.17750561905,1,10,1 -401,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.89854784635827,31.4168587415561,1,21,1 -406,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.1996738773305,30.3859462598491,1,22,1 -408,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.53501675091684,30.6971494343151,1,16,1 -409,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.59450512821786,29.2800874455776,1,19,1 -411,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.89521965617314,33.910000091914,1,19,1 -413,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.76843920117244,24.2588446309718,1,13,1 -415,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.92311755311675,25.467532049946,0,16,1 -416,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.94216892193072,23.0225835840409,1,10,1 -417,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.84658888611011,25.5875220825253,1,9,1 -420,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.65279425797053,32.3327158239759,1,20,1 -421,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.1895073130727,25.2930529667579,0,11,1 -426,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.62135337619111,22.8474848266421,1,19,1 -428,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.353628660785,27.1540933819555,0,21,1 -434,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.58782061748207,31.2216899982836,1,29,1 -436,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0369042172097,28.8171837532963,1,15,1 -438,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.90737611777149,23.3215428457777,1,18,1 -439,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2334327723365,30.8528215241986,1,15,1 -445,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.1298913348,32.610577215345,1,17,1 -447,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.8802696345374,24.3978192728171,0,7,1 -450,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.3895614661742,30.2599173417225,1,27,1 -456,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.1063414718956,23.8338085509371,1,10,1 -457,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0468969061039,30.499976128719,1,17,1 -462,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.1084707118571,30.8060566391459,1,18,1 -464,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.91194679308683,25.6564414304412,1,13,1 -465,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.325118323788,30.3560285816374,1,21,1 -467,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.826021642657,26.0324431531114,1,12,1 -468,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2050228521693,30.6112611265884,1,22,1 -472,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.85835970123298,27.7804512291716,0,11,1 -479,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.83664294984192,30.9236400757199,1,23,1 -481,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.52161505748518,25.0730466650388,1,11,1 -484,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4689379909541,26.9548116719224,1,13,1 -488,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.83838888560422,25.9684570465226,0,12,1 -489,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0497345395852,29.2034312550981,1,23,1 -490,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.0473413893487,30.3978815753209,1,20,1 -496,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.80014876648784,24.7158703816991,0,14,1 -498,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.31234657811,30.4811487061536,1,14,1 -499,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.90680516790599,28.3311330188643,0,12,1 -500,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.72238649358042,28.3242932541613,1,21,1 -501,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2497007788625,31.2791033983312,1,29,1 -502,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.7573563978076,33.2540944844661,1,23,1 -505,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,10.4820878319442,27.4162927731506,1,9,1 -508,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,9.54374970705248,28.4760976097119,1,21,1 -510,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.168910223525,31.3852085323803,1,21,1 -511,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,1,10.2695628600195,29.4108192428389,1,22,1 -513,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.59322868613526,26.3598525240103,0,9,1 -514,1,1,2.37456968552376,7,1,-3.75679528408306,-1.10851566090919,514,0,9.87029749923386,26.4413939977862,1,11,1 -516,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.3723803753965,32.9274365499511,1,27,1 -517,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.3886506441049,30.870427478833,1,17,1 -518,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.151683565462,33.7512844400425,1,36,1 -524,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.60212458786555,27.066833356802,1,18,1 -527,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.92591392667964,31.839070753013,1,26,1 -530,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4079703474417,32.3420117878952,1,43,1 -532,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1404830079991,29.6323438212041,1,18,1 -536,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1219394616783,34.4064865169158,1,28,1 -537,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.89521075203083,32.7614259508805,1,21,1 -540,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1847842184361,34.0687522934763,1,34,1 -544,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.67119374847971,34.1340833079756,1,26,1 -548,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.6974131539464,28.3746357890343,1,11,1 -550,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0382298356853,29.532536089958,1,19,1 -552,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.83094816259108,27.3289993916062,1,21,1 -554,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.3364782868885,28.1123737790479,1,24,1 -555,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.93802103353664,33.2763237696387,1,21,1 -556,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.61881281645037,35.0962277232586,1,38,1 -558,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.95975115220062,34.8572351865896,1,28,1 -562,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.53488934249617,34.3488458615058,1,30,1 -563,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.72786329057999,34.2591012774247,1,26,1 -564,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.89975118543953,31.4472067191141,1,19,1 -565,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2872293000109,29.2414909285797,1,18,1 -568,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.75288919988088,29.0735351261199,0,18,1 -572,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2886863308959,27.0916951292623,1,22,1 -574,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.60070840199478,34.4356499895349,1,27,1 -575,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.468371110037,33.0691602432348,1,29,1 -577,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4925779248588,32.4426833175088,1,36,1 -578,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.5567585832905,32.6070104397298,1,42,1 -581,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.2795948351268,34.0253953484063,1,25,1 -585,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.83930433425121,26.2916498251531,1,23,1 -591,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4564085048623,32.8321594521491,1,30,1 -599,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.85102022462524,29.2434567692511,1,19,1 -602,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4652277478017,26.5531451103605,1,16,1 -604,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0377022207249,31.852037702148,1,16,1 -608,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4557537282817,34.8201271695715,1,32,1 -617,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0363543755375,28.1127555156921,1,17,1 -618,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.87761141499504,32.3435518959433,1,28,1 -620,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.092891210923,29.4988116252895,1,19,1 -623,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.60283406311646,28.4208997866915,1,12,1 -625,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.50268766283989,29.0557266036338,1,10,1 -627,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.53503412171267,26.0926225757499,1,16,1 -631,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1923275459558,34.053866007667,1,23,1 -632,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1090408437885,35.0027865487227,1,28,1 -633,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.72228183434345,28.9384242145596,1,9,1 -634,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.9043509082403,34.1527615262776,1,28,1 -637,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.3047766964883,35.8505695234564,1,41,1 -641,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.95890205167234,35.445396096532,1,33,1 -642,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.3720524613746,29.6759349186533,1,15,1 -651,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.2235605546739,33.5932037446825,1,33,1 -657,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.70738826552406,35.9917133203259,1,32,1 -658,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.93916524457745,34.3112273539497,1,36,1 -660,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.64008178561926,28.329186619167,1,18,1 -663,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.69737718277611,28.6037465388622,1,12,1 -665,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.3406859794632,27.0826855176432,1,15,1 -670,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4699060188141,36.0688991590169,1,24,1 -673,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.77835271717049,29.9317013285397,1,17,1 -675,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.83529251650907,35.9903167927846,1,31,1 -676,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.77765807299875,34.7437594451665,1,40,1 -677,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.58994275564328,34.7025409872772,1,35,1 -678,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4667097220663,31.3782668820311,1,20,1 -679,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0751162467059,34.4952295282978,1,27,1 -685,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1474240825046,34.1941856278786,1,26,1 -687,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2996165936347,27.753557126864,1,13,1 -688,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2772599509917,29.5368416885917,1,18,1 -692,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.95055512408726,30.7745809231546,1,29,1 -695,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.6768415318802,36.2022098114005,1,19,1 -703,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0526686385274,30.5240650777394,1,25,1 -707,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.85168869141489,29.0964262228618,1,23,1 -708,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2587440332863,28.5353560915492,1,16,1 -709,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0940861746203,35.406385956517,1,20,1 -718,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0643392517231,35.1461440343787,1,38,1 -719,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.343878678279,33.758609254837,1,42,1 -721,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.53167328983545,33.3555013973363,1,20,1 -723,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.3332307604142,28.2693161643484,1,14,1 -725,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4709183759987,27.980720727739,1,19,1 -735,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.85602249694057,29.8156872833634,1,25,1 -737,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.57258864399046,29.5621764660647,1,21,1 -747,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.97730002249591,28.2348267113899,1,16,1 -751,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1592096295208,26.8234985872927,1,19,1 -752,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4179501070175,34.8817503643422,1,23,1 -754,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0038410788402,33.7830921137371,1,31,1 -755,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1791909225285,35.0176971516308,1,36,1 -756,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4012653462123,38.5980186128781,1,28,1 -758,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.2627015400212,33.8268415368139,1,34,1 -763,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4048300499562,27.3828677278454,1,17,1 -764,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.50093397148885,29.046156133061,1,15,1 -772,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.69259319570847,28.9357361255542,1,20,1 -774,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.75202118721791,30.9851061923531,1,27,1 -776,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0672639235854,26.4347205404982,1,10,1 -784,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.97137425281107,29.1637944173498,1,25,1 -786,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.3086829143576,34.4497958490391,1,33,1 -787,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1534314472228,34.8377170549225,1,21,1 -790,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.97093579429202,32.747326607963,1,32,1 -794,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2863737531006,26.543010085504,1,20,1 -796,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.8271434113849,27.6460217278559,1,14,1 -798,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.84676145319827,26.2563606625891,1,19,1 -800,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.70124917430803,35.406714007765,1,42,1 -803,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1506496646907,36.6248089358185,1,39,1 -806,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.82570236362517,34.8618573332661,1,32,1 -808,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.2034124468919,32.6973936054141,1,26,1 -809,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.66562148928642,29.1339542299591,1,19,1 -811,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1636937593576,26.6117835093721,1,21,1 -818,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2069412835408,26.9607421476772,1,17,1 -819,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.68880869215354,30.2718843678846,1,15,1 -821,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.63474849308841,30.4442755459452,1,26,1 -824,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0290533523075,29.7668779892691,1,22,1 -825,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.2752189098392,34.3640510033518,1,31,1 -827,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.2533600647002,35.1287511365459,1,40,1 -828,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.51160591817461,28.2074211642127,1,20,1 -829,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.834909214871,30.49960841254,1,20,1 -830,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.60156898456626,26.5915691524551,1,17,1 -831,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0945783946663,28.2573157069023,1,18,1 -833,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4021469005384,33.9337763653089,1,21,1 -837,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.173105351394,32.999929215732,1,31,1 -840,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.69595482503064,34.644032965448,1,29,1 -843,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.94363133120351,34.3800075510181,1,33,1 -846,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.79447925370187,31.3962364232808,1,21,1 -847,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.89372009714134,34.4093248756741,1,23,1 -850,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.5585771384649,33.1685878882078,1,31,1 -853,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.2854371860158,35.0416774022916,1,33,1 -856,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.225215252256,29.4129410861774,1,25,1 -863,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.3197307195514,32.1022285885716,1,26,1 -864,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.60817592451349,31.1562553926369,1,15,1 -865,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1445590632502,27.6875077251855,1,19,1 -867,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.2984844136517,34.4982224100437,1,35,1 -868,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2805246710777,30.6858982747301,1,27,1 -870,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.69489047164097,34.7860238070056,1,28,1 -873,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.50254882825539,34.5660013954421,1,37,1 -877,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1774663869292,31.2768635815165,1,25,1 -886,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1234008194879,30.5998407564615,1,17,1 -887,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.87329928623512,34.3665979627534,1,29,1 -888,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.69673669082113,28.6469437962445,1,13,1 -891,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.50224830489606,28.1686709971818,1,15,1 -898,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.70383794326335,35.1462903371066,1,26,1 -901,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.54001668654382,29.4464257065717,1,23,1 -902,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.97462082817219,34.2263848693121,1,30,1 -904,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4742284331005,28.9062000451362,1,23,1 -908,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.73389172973111,29.1461078539929,1,20,1 -910,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.3173592917155,34.3311291271179,1,20,1 -912,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.3847397423815,30.5402280530674,1,21,1 -919,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0560099191498,36.4808336009155,1,30,1 -920,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4925604143646,29.4416005540626,1,25,1 -924,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4659774112515,31.2874537875332,1,34,1 -927,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4289108675439,27.7046122150958,1,25,1 -929,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.86485912790522,34.2442269736372,1,31,1 -936,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1534664316569,32.9586644381164,1,30,1 -937,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.64563279948197,28.1882549447274,1,18,1 -938,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.2429959988222,33.8846171525018,1,26,1 -939,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.59393480443396,29.6080645644193,1,20,1 -943,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.78449319815263,28.851494035787,1,28,1 -947,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0435540634207,31.7087728042171,1,25,1 -950,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.365977173904,34.2582629229288,1,23,1 -953,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4940825998783,30.0139773648763,1,20,1 -963,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.91979656857438,29.6159323499725,1,15,1 -965,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.2246187825222,34.1935076686206,1,26,1 -967,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.0760703140404,28.8614393071064,1,17,1 -968,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0174531813245,32.9918895046394,1,38,1 -970,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.98827081313357,34.9437691970367,1,25,1 -975,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.1371784948278,30.1743010436316,1,28,1 -976,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.4211946437135,33.957827975081,1,24,1 -977,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.75819004373625,27.7122355044237,1,17,1 -980,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.56916575762443,28.100901253465,1,23,1 -982,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.341290541226,34.2157056383548,1,37,1 -986,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.0325682200491,34.4759119561316,1,38,1 -988,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.50510643539019,32.2487345336486,1,33,1 -989,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.2161891288124,27.3769607713107,1,15,1 -992,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1967947103549,31.6273894193528,1,29,1 -995,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.89231712021865,36.8228801923462,1,31,1 -996,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.98822191846557,27.4171688703321,1,20,1 -998,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.81316838460043,26.3369490550447,1,25,1 -1000,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,10.4678200173657,30.0978774756857,1,20,1 -1002,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,9.94727585231885,34.2924830477055,1,18,1 -1006,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,1,10.1202226066962,33.3543707559384,1,35,1 -1009,1,1,2.37456968552376,7,2,-3.45134142891451,2.22841522909433,495,0,9.68762619164772,29.6455669707179,1,19,1 -1013,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.87862555030733,31.9175331799236,1,25,1 -1014,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.52331052650698,35.0342161501816,1,30,1 -1015,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3425851615611,32.3432432827556,1,23,1 -1017,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.58591234032065,33.7374349449135,1,23,1 -1018,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.78536378848366,35.2980956645195,1,43,1 -1020,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.8225420282688,33.5605273015834,1,24,1 -1022,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.75523472577333,41.9426215453075,1,43,1 -1023,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.57247515465133,36.4533048757472,1,35,1 -1024,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4072596069891,30.7870782016741,1,29,1 -1025,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.93687923485413,38.1972174444539,1,47,1 -1028,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2308101786766,31.1060490543671,1,21,1 -1032,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.75432875449769,36.1880368959251,1,46,1 -1033,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.86391703877598,39.6753361200018,1,37,1 -1034,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.92587176593952,31.2950736898174,1,31,1 -1040,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.65942745073698,35.6161198926264,1,50,1 -1046,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2115097809583,37.1950251969209,1,40,1 -1050,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.95932470681146,32.8704793608375,1,21,1 -1052,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.0752378848847,34.311651986334,1,35,1 -1053,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.3294041790068,37.2446795287205,1,36,1 -1055,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4489728927147,33.9863858945442,1,30,1 -1059,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0776655978989,38.0978029751297,1,44,1 -1060,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2995719388127,31.0669269360715,1,29,1 -1061,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.181621912634,34.4593923310227,1,25,1 -1063,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2524971852545,36.453937806754,1,51,1 -1064,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2724874455016,39.6864314714468,1,49,1 -1068,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.82554325880483,36.2506568304336,1,39,1 -1072,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1365562330466,41.5127113214083,1,40,1 -1075,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4362857651431,31.6989779442813,1,35,1 -1078,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.55229888716713,34.0726972841717,1,28,1 -1079,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3554010107182,31.521144744721,1,29,1 -1080,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.306426005438,31.8136831658491,1,30,1 -1086,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.86804892518558,40.4419194362197,1,48,1 -1090,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.96279038977809,39.9447283812006,1,51,1 -1092,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.85527033731341,34.5743862479344,1,36,1 -1095,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0937077242415,38.1579711518032,1,44,1 -1098,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0387138712686,36.8819275976312,1,53,1 -1101,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4253243037965,31.2297091130105,1,33,1 -1104,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4464187712874,36.9203855203896,1,43,1 -1115,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.65541980974376,37.4962489931425,1,41,1 -1116,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.84819775284268,37.7345933885794,1,33,1 -1119,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.57622806564905,38.1264470376475,1,63,1 -1129,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.3233078136109,38.3402165804675,1,54,1 -1131,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.85843480960466,40.0384432483214,1,49,1 -1134,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1265691141598,33.2332437243745,1,33,1 -1137,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.3283733669668,38.739569257202,1,46,1 -1138,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4700328719337,32.42691699508,1,18,1 -1141,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.65353514603339,35.2828961332192,1,32,1 -1145,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2328704344109,37.8582684019114,1,41,1 -1146,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.058829347603,36.8429473411113,1,35,1 -1147,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.7797366513405,31.0789788261737,1,26,1 -1148,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.9800472042989,39.3449915612234,1,40,1 -1150,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.6319895775523,33.2919880993281,1,30,1 -1152,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.85576875135303,33.9852058880026,1,32,1 -1160,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2651657776441,31.2884246182853,1,27,1 -1163,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.0055821104906,36.2943361425113,1,31,1 -1165,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.84714483423159,37.1787686179094,1,51,1 -1166,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.83374857250601,33.3411122075591,1,29,1 -1167,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2294748229906,30.1701395943095,1,26,1 -1171,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2614287207834,35.9546501820027,1,35,1 -1175,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1016493642237,33.2653964950678,1,29,1 -1176,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.3535675036255,37.4930740094028,1,37,1 -1182,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.83797013247386,34.021078915281,1,30,1 -1184,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.65438313153572,37.9493097687019,1,41,1 -1193,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.53128992207348,32.9047328907932,1,32,1 -1194,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1045903034974,32.5220099566632,1,23,1 -1197,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.78084676666185,37.9885171131792,1,37,1 -1198,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.88478184933774,33.1172406483373,1,23,1 -1204,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2029405746143,39.6117123231634,1,43,1 -1209,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4106074867304,32.29066466015,1,28,1 -1213,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.75716841942631,39.7910726038182,1,43,1 -1217,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.64061988680623,32.0101069011063,1,20,1 -1219,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1264712270349,39.2500824031119,1,56,1 -1221,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.6316080710385,33.8120368666139,1,19,1 -1224,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.5860559809953,37.4458144506509,1,28,1 -1228,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.60962747363374,37.7141180102489,1,43,1 -1232,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.86895069782622,39.9713008593741,1,42,1 -1233,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3392895676661,30.4419078669852,1,26,1 -1240,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0701224843506,38.6869349652177,1,35,1 -1245,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0483822375536,39.3563249625102,1,44,1 -1249,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.299090342829,35.3294899666526,1,38,1 -1253,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1194608698133,32.3035816133495,1,25,1 -1254,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.0409854804166,33.9449259073026,1,28,1 -1256,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.55032107839361,33.3921365546812,1,28,1 -1258,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1358705917373,39.3500882734123,1,52,1 -1264,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.391127055278,32.5808233492605,1,21,1 -1271,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.58907666080631,30.6708201312586,1,27,1 -1273,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0475255588535,37.9285133050976,1,48,1 -1277,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.0436735504773,34.6218220488993,1,18,1 -1279,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4921479830518,37.7689246899356,1,41,1 -1283,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4305637865327,37.7132289016349,1,28,1 -1284,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.94023162755184,35.0168197359051,1,39,1 -1285,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.439797330182,32.7794703172747,1,20,1 -1289,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3745705799665,31.0084606169175,1,19,1 -1291,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.58679779153317,32.1480560319697,1,35,1 -1292,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.81158738792874,37.6585581668271,1,43,1 -1293,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.55477749486454,35.7881475636367,1,44,1 -1296,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.410073411651,34.2257582370539,1,37,1 -1304,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1154993220698,32.970720075689,1,27,1 -1305,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2763379432727,33.5928146707874,1,29,1 -1311,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.86511416221038,40.0636556143272,1,36,1 -1313,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.264475087868,37.7790385064516,1,43,1 -1314,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1895837804768,31.4038876556288,1,24,1 -1316,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2390931278933,37.7057948518095,1,35,1 -1317,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.84628563537262,38.8884985188648,1,39,1 -1321,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.9006273704581,32.0299772437185,1,31,1 -1332,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.54763219086453,37.3723581746016,1,43,1 -1337,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.70530184940435,36.553353372043,1,39,1 -1338,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.3626428272109,39.8566631540709,1,39,1 -1342,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.73104073968716,37.2807209670031,1,50,1 -1347,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4644921375439,31.6425908208629,1,30,1 -1348,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2401949798223,39.1277950079979,1,59,1 -1351,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.78304581600241,37.1747987086398,1,44,1 -1353,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1811515160371,34.8966710248817,1,24,1 -1354,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.76115422951989,33.4068189026335,1,33,1 -1356,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.63458878360689,38.1860035121075,1,43,1 -1357,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.88219605153427,34.1225927673614,1,23,1 -1360,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3360812535975,36.0537310734201,1,23,1 -1363,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.65942474338226,32.9940460979682,1,39,1 -1367,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.86900705215521,30.877560702842,1,23,1 -1368,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0084413341247,39.60375898081,1,39,1 -1370,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.14266338991,32.2446466481581,1,33,1 -1371,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.58883969858289,38.1372018793452,1,52,1 -1373,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1016750971321,34.042723046161,1,21,1 -1376,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1542023636866,32.1606700365656,1,18,1 -1378,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.675687154755,32.3715331800519,1,37,1 -1381,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.6734934116248,37.320517681034,1,43,1 -1383,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.83925419347361,30.6004158506168,1,27,1 -1384,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1211102555972,36.1306386439025,1,20,1 -1386,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.86254571354948,35.4947290601212,1,23,1 -1387,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3895593094639,34.5838632655602,1,29,1 -1389,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.0322266905569,35.0341312063407,1,30,1 -1391,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2934049661271,30.7245005910753,1,30,1 -1393,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.97552128857933,39.1405564553599,1,45,1 -1395,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.52040002308786,31.6900701463044,1,25,1 -1398,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.97319281939417,37.2693445911077,1,52,1 -1402,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4234606942628,35.9894316530178,1,35,1 -1404,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2290290258825,37.5940193075512,1,41,1 -1405,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2671843667049,32.7496299661469,1,34,1 -1406,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.08721707738,38.7769432567647,1,46,1 -1409,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.82020918536,35.3843250041492,1,26,1 -1411,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1727904097643,39.4423775770881,1,32,1 -1413,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1763073073234,37.7448635082919,1,42,1 -1414,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.1436575050466,37.1341664274778,1,43,1 -1415,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.92278982838616,39.097725901744,1,60,1 -1418,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.7581317613367,37.7162112321118,1,41,1 -1427,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.68220075475983,33.5002157699976,1,24,1 -1428,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.61837241984904,31.949994366957,1,32,1 -1431,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.4755718121305,36.5100878772304,1,56,1 -1437,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1616440499201,30.218115786794,1,35,1 -1439,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.0417896460276,33.0460485703962,1,33,1 -1440,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.63331411289982,34.0758497589186,1,31,1 -1442,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1262405617163,30.4591528750887,1,33,1 -1455,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.1075598918833,32.7825608394367,1,31,1 -1457,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.0349010976497,34.3332586250328,1,27,1 -1458,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.92124627507292,37.2436198295257,1,57,1 -1459,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.7839908208698,38.2278357398736,1,44,1 -1460,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.2839658488519,39.6769354673927,1,45,1 -1464,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.049053161405,33.8413634292347,1,25,1 -1467,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3539293690119,33.0110820071355,1,30,1 -1468,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.0275984161999,35.5165720221676,1,25,1 -1470,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3030224114191,33.7549276803287,1,29,1 -1472,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.72895622137003,33.4675094021372,1,28,1 -1475,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.2419228120707,32.8719372822639,1,29,1 -1478,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.82349205575883,37.7644479366998,1,31,1 -1481,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.67473970237188,34.2575529336638,1,26,1 -1485,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.5555990380235,38.3666929447796,1,49,1 -1487,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.81132103619166,32.2201713350949,1,30,1 -1489,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.67680054763332,33.8827287635956,1,29,1 -1492,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,10.0768715136219,39.0020109151095,1,49,1 -1493,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.66265752492473,39.0733496320217,1,46,1 -1499,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,1,9.97341658081859,37.5029858482818,1,50,1 -1500,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,9.96860359376296,33.6801704992491,1,35,1 -1501,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.3467443268746,33.7312800784205,1,29,1 -1503,1,1,2.37456968552376,7,3,1.86692219740136,0.909196917385676,495,0,10.4859817211982,33.1230007510911,1,33,1 -1508,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1319494547788,35.9011987172785,1,36,1 -1509,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.97297645662911,32.2265933046389,1,33,1 -1512,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4524857804645,28.4409165210376,1,34,1 -1514,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1909429044463,26.4466228703685,1,22,1 -1516,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3351281462237,34.3129557418301,1,27,1 -1518,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.2220089319162,32.8566960860469,1,33,1 -1526,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.60952641256154,29.6366645567535,1,26,1 -1531,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1508266581222,35.5715686934099,1,33,1 -1533,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2240496112499,29.0927490918261,1,9,1 -1535,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3915314627811,34.1662233828132,1,40,1 -1537,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.141782407416,34.3517687875983,1,25,1 -1538,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.86900711548515,29.6738912891823,1,14,1 -1543,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.59205158543773,28.66226194285,1,15,1 -1544,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.63575418130495,33.3008803637889,1,35,1 -1547,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0713286318351,30.0440496976211,1,27,1 -1557,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1907083948608,30.449254384691,1,26,1 -1564,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.81935620936565,29.249539644213,1,27,1 -1565,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.61051429319195,29.056773656858,1,19,1 -1567,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4873442421667,37.8797053155706,1,28,1 -1571,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.6340198747348,37.9287566019233,1,24,1 -1573,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.245824665064,35.3456138636587,1,36,1 -1574,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.82074404181913,30.4418080847361,1,24,1 -1578,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4762172033079,29.4760081509939,1,29,1 -1580,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.68062174413353,32.7733521121096,1,20,1 -1582,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0976312523708,29.058489796101,1,14,1 -1584,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.74658212531358,35.1214460832888,1,27,1 -1586,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.73670956771821,30.9096660433577,1,30,1 -1588,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.347725715721,38.1550562790249,1,39,1 -1591,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.380595827708,28.6029063724409,1,15,1 -1593,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.66904560732655,35.9518127392364,1,24,1 -1594,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.061252823798,32.1891681135145,1,13,1 -1595,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.2418677064124,33.8652792657888,1,30,1 -1598,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.7375373954419,30.1782360362599,1,29,1 -1599,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.60046680620871,32.1398066978341,1,22,1 -1604,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.92273055762053,29.2732656819048,1,26,1 -1609,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.98890935699455,36.0501959550948,1,46,1 -1613,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.77972719236277,36.1061277484827,1,28,1 -1621,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.56412363657728,35.8862278163368,1,29,1 -1624,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3326614496764,29.376129354536,1,17,1 -1628,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.64255653182045,36.5390439717143,1,31,1 -1629,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.98138581868261,29.7660853132533,1,13,1 -1630,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2868267847225,29.8184086149307,1,15,1 -1631,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1914952190127,36.3080191426949,1,31,1 -1632,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.66066407202743,37.5823089867601,1,28,1 -1634,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.77112074755132,34.995398764326,1,40,1 -1637,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.5200553520117,34.971775199339,1,38,1 -1638,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.92954803514294,33.1790822488767,1,34,1 -1641,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4427797973622,29.2604522759685,1,19,1 -1644,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3553439797834,37.2957859641224,1,40,1 -1646,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.175110402517,32.183417956306,1,44,1 -1647,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.88923811796121,34.9229065396447,1,27,1 -1650,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.9295400690753,33.9318931113968,1,32,1 -1652,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.80344765540212,36.1144890937662,1,37,1 -1653,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2115451376885,25.8774959266037,1,21,1 -1655,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0582682830282,32.7561859151488,1,38,1 -1666,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4440374972764,35.1550845094239,1,25,1 -1669,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.81967748049647,33.7938700791288,1,33,1 -1671,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0068480842747,36.2840514499326,1,33,1 -1672,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.54888451774605,29.8448739603198,1,19,1 -1674,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3246001186781,32.2666554783563,1,20,1 -1676,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0586790230591,31.1095965365657,1,15,1 -1678,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.76056124269962,34.1101210821507,1,30,1 -1679,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.146701374324,28.8144583546372,1,22,1 -1683,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.70359291764908,34.0325773976373,1,40,1 -1684,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3507321199868,27.5519368206396,1,17,1 -1685,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0893290771637,29.0449890881616,1,17,1 -1688,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.3911380090285,35.2029738240014,1,45,1 -1691,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1926493721548,32.0218484383186,1,24,1 -1693,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.87919495184906,36.2401042440986,1,34,1 -1695,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1524575932417,31.0343902537812,1,25,1 -1698,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.55460077850148,36.5307780478218,1,29,1 -1700,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.6442580493167,35.4208720151404,1,31,1 -1701,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.59363749297336,30.7473817695316,1,16,1 -1702,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4070607824251,35.0855540609874,1,32,1 -1707,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4222719031386,36.9158561542688,1,39,1 -1708,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0054011850152,30.2693773048894,1,17,1 -1716,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.93069943622686,36.4278810120958,1,32,1 -1718,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.17224441492,36.7820239285899,1,39,1 -1719,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1667786317412,36.4220033460969,1,23,1 -1724,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.81525461864658,37.2680430104534,1,41,1 -1730,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.59062403347343,38.749479220364,1,27,1 -1734,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.54800721653737,36.3595571978657,1,37,1 -1736,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.2769390011672,32.1674955170131,1,32,1 -1737,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.93046086397953,26.9979590165265,1,20,1 -1740,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.236394898966,28.6660835996775,1,23,1 -1742,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.68305725860409,29.5809398704713,1,30,1 -1743,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.90197414136492,36.5912255324654,1,26,1 -1744,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.86558134504594,32.0201610003704,1,23,1 -1746,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.65404752152972,28.7237855964479,1,20,1 -1750,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.57290797890164,34.0004455144085,1,38,1 -1751,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1652154419571,36.286772263237,1,45,1 -1753,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4331060345285,30.8073914521727,1,20,1 -1756,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3167340962682,29.2120861902285,1,17,1 -1758,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1005573687144,29.0663931952397,1,20,1 -1759,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.71285313600674,27.2553386712381,1,23,1 -1761,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.87053159112111,35.2675755159395,1,36,1 -1762,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.93891338817775,31.4645974387505,1,20,1 -1764,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.66717953723855,35.7589911018593,1,38,1 -1767,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.90816345345229,37.0869697004736,1,33,1 -1769,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.2456559150014,36.9514280481091,1,34,1 -1776,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.78495179861784,36.380277052879,1,28,1 -1782,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4463472862262,31.7645008226021,1,21,1 -1784,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4098122997675,33.5604538721882,1,39,1 -1789,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2408546677325,32.9886652510334,1,23,1 -1796,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.6235534613952,37.9953041148984,1,31,1 -1798,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.92394023831002,32.1060461552449,1,24,1 -1800,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.64302921039052,33.4121881915803,1,29,1 -1807,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1637724381872,30.3605358217144,1,13,1 -1808,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.54802201106213,30.0403756281634,1,16,1 -1811,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.051983617479,28.0584998596195,1,23,1 -1818,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.65728420135565,38.1204538081888,1,29,1 -1819,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.58801821176894,27.4707789063626,1,22,1 -1824,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2942716698162,29.8835041637876,1,14,1 -1826,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.54329435247928,35.8904529386788,1,27,1 -1828,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0436268094927,32.2687034812451,1,17,1 -1831,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.98316349321976,27.3392239517734,1,17,1 -1834,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3568776645698,29.4983299158301,1,13,1 -1839,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.90198623808101,29.7303798451527,1,20,1 -1843,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.80018069688231,32.5591035250427,1,39,1 -1845,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4739541606978,30.4159918881935,1,18,1 -1853,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4128362308256,29.2197005805406,1,17,1 -1857,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.65574628324248,34.959417397068,1,44,1 -1867,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0423719224054,29.6420226380474,1,15,1 -1871,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3535002917051,30.0761550830823,1,15,1 -1876,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.95831312774681,35.2751218698262,1,32,1 -1877,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3396555266809,32.020117453896,1,22,1 -1878,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4664719332941,27.6137706838648,1,19,1 -1879,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3735099139158,32.2222408173753,1,26,1 -1880,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.6664766445756,33.1420595316994,1,37,1 -1881,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.65558278374374,31.041821998087,1,16,1 -1883,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.7268558209762,32.7091913826224,1,19,1 -1884,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4480651605409,29.4898914424575,1,22,1 -1888,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.83588585653342,35.0289509492787,1,40,1 -1889,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0242614056915,29.6549939444785,1,24,1 -1893,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.62071690522134,29.1752187671225,1,23,1 -1894,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.0551519126166,29.6833332716032,1,16,1 -1896,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3985488333274,31.5720931953392,1,9,1 -1898,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2095924585592,29.7664691174352,1,24,1 -1900,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.59629960753955,35.4058671580793,1,33,1 -1905,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.97711666231044,38.9749767653011,1,32,1 -1907,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0989943523891,35.2357790630756,1,29,1 -1909,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.70069416984916,37.2195603307869,1,32,1 -1912,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.52880096039735,33.2677120837499,1,26,1 -1916,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1214082189836,29.3579276427241,1,17,1 -1925,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2834861828014,31.0314976476176,1,17,1 -1927,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2398948031478,29.0835243897747,1,21,1 -1930,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1628961747047,34.3862649078504,1,41,1 -1932,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0097747754771,34.9217753656803,1,39,1 -1935,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.271745948121,29.4126936346585,1,19,1 -1937,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.289665303193,34.5588130689701,1,46,1 -1941,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.2960366697516,30.8971346822785,1,16,1 -1943,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.62486581504345,36.6715798408493,1,41,1 -1944,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1865873411298,33.7278709249636,1,38,1 -1946,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.62277392460965,28.7206241355121,1,15,1 -1948,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.4259630073793,36.0186512992155,1,29,1 -1956,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0534773867112,33.07478930703,1,27,1 -1959,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1254072182346,30.0176392549408,1,18,1 -1960,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.0319892056286,36.0059548580727,1,27,1 -1962,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.1406104704365,31.0370478778775,1,22,1 -1966,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.78463674196973,29.3518265200567,1,13,1 -1967,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.9716095502954,29.8215207466881,1,14,1 -1969,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.90600215224549,30.3415654289404,1,16,1 -1970,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.6911145648919,37.3745495689222,1,36,1 -1972,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.74157813726924,30.4301299163658,1,14,1 -1974,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.63195893424563,30.613273947671,1,21,1 -1982,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1221538404934,36.2855861754659,1,24,1 -1983,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3840932503808,28.639629764698,1,28,1 -1984,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4932371275499,29.9891332718306,1,16,1 -1986,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,9.59883091994561,34.884642729991,1,28,1 -1993,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.56844357587397,31.6299961347306,1,20,1 -1996,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.4174085757695,30.4773561118113,1,19,1 -1997,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,9.92027360363863,30.9818480727804,1,19,1 -1998,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,1,10.1922739173751,33.9937770417943,1,32,1 -1999,1,1,2.37456968552376,7,4,-0.433652458492797,0.126940723788541,499,0,10.3495160755701,29.1339251383107,1,15,1 -2009,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.1999641968869,29.7469803836481,0,23,1 -2011,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.69464772637002,25.4819008235202,1,12,1 -2012,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.149834460346,26.975114680272,1,19,1 -2015,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3875107155181,33.4615126218501,1,23,1 -2017,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.1124483915046,29.5254123322079,1,12,1 -2024,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0732540641911,28.0892419429244,1,16,1 -2027,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2805637591518,27.00069995236,1,18,1 -2031,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.1556006052997,28.1785105059628,1,20,1 -2032,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.272333529545,33.9450042500467,1,28,1 -2033,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0110064484179,33.506655414372,1,23,1 -2034,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.94053008151241,34.2374524342534,1,29,1 -2035,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3152820332907,32.7765787270237,1,20,1 -2036,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.67158721899614,34.0615178096194,1,38,1 -2038,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.96677398681641,26.694037017069,1,13,1 -2040,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0383970332332,30.3972391123391,1,12,1 -2042,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.51898732641712,29.2265881246096,1,21,1 -2048,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.71476218593307,29.756628005404,1,19,1 -2049,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.69776187906973,30.5614621509406,1,16,1 -2053,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2820711431559,27.4575560874802,1,16,1 -2057,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4664534691256,30.5121748682977,1,15,1 -2059,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.1935291260015,28.0946770721295,1,15,1 -2062,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.72434150497429,35.0527255257442,1,27,1 -2068,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.74315853440203,29.0192081130089,1,16,1 -2069,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.71202308661304,33.2272587681288,1,15,1 -2077,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4073093484621,28.7435550429478,1,20,1 -2079,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.51770266145468,32.8302038079376,1,26,1 -2081,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.64133887994103,32.9924002615292,1,22,1 -2082,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0744597064331,34.446852672873,1,30,1 -2083,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.2351016260218,33.9163581386462,1,18,1 -2085,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3376076368149,28.065340163202,1,18,1 -2086,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.82490211818367,33.291517447273,1,37,1 -2087,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.79908634675667,25.4465799797703,1,18,1 -2088,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.1445892604534,29.3549503368217,1,30,1 -2090,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.1122620936949,29.1747822338209,1,15,1 -2095,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.66094569023699,27.9533680450606,1,14,1 -2097,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.91762037179433,28.0917058457929,1,22,1 -2098,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.67836756305769,35.5382006619959,1,28,1 -2106,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3175444388762,35.3342657074754,1,32,1 -2117,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.67134166299365,32.3680744791179,1,31,1 -2118,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.72888682736084,34.19206953511,1,29,1 -2122,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3913339893334,33.5059885871152,1,22,1 -2127,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2377977648284,27.8273058038514,1,17,1 -2128,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0717105991207,29.9976357503668,1,16,1 -2129,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.932143348502,26.014852985161,1,19,1 -2132,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.81479184818454,27.80259780476,1,16,1 -2135,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.2348852488212,31.5660607804896,1,29,1 -2139,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0656873495318,33.9316731480793,1,28,1 -2140,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.83443370787427,27.3485526401548,1,11,1 -2144,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.2555439702701,35.0735187147712,1,26,1 -2145,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.242214734666,32.9487661973942,1,20,1 -2150,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.1278832131065,24.8372469319989,1,16,1 -2154,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0232262695208,31.9368760645134,1,26,1 -2155,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.67262747534551,31.7161906208882,1,29,1 -2157,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1482638001908,33.9653478394253,1,27,1 -2158,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.59941953676753,29.6867577702229,1,26,1 -2159,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.50489555695094,29.6355642795924,1,16,1 -2165,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2421390167437,27.2625556886744,1,14,1 -2167,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.57113346760161,27.6668921108409,1,9,1 -2170,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.1462279856205,29.7515010678463,1,14,1 -2171,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4133748696186,30.0988220589092,1,12,1 -2172,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.64424017537385,31.0767116257819,1,32,1 -2175,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4938467624597,26.6793501680222,1,17,1 -2176,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0110102726612,30.6397393826202,1,21,1 -2177,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.85581631516106,33.3930803272763,1,32,1 -2178,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.75199741497636,33.8223940925309,1,32,1 -2181,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3408573309425,35.2027344688786,1,28,1 -2185,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.69197127316147,33.8138764244918,1,24,1 -2187,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1703015451785,33.5435619170268,1,27,1 -2188,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.73405191744678,26.4884072752498,1,19,1 -2196,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0580308043864,34.3909110494275,1,24,1 -2201,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.51587788411416,32.4497075650865,1,25,1 -2203,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.96575327799655,33.8108011469496,1,26,1 -2204,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.1084353222977,30.4785677498727,1,15,1 -2205,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3334022883791,32.8364799732636,1,35,1 -2208,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.95058125862852,31.7339460896366,1,22,1 -2210,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.1959542981349,27.9825692168303,1,17,1 -2215,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4061815075111,28.0562650477861,1,14,1 -2216,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.67463918495923,27.9025422379046,1,19,1 -2218,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.30462733889,32.6569372044198,1,28,1 -2221,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0071568603162,32.2452649022076,1,30,1 -2224,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.83189477189444,32.3103200398845,1,26,1 -2226,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.395393298706,30.8185522622847,1,19,1 -2231,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.83603187277913,28.0086048014127,1,14,1 -2235,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3017715623137,31.916268957698,1,21,1 -2241,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.64810922648758,26.1030000240666,1,8,1 -2242,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3053415978793,27.8978188788765,1,13,1 -2244,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3726546836551,26.3728257134401,1,12,1 -2246,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0954899769276,29.4512022578188,1,19,1 -2247,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.94946679961868,25.0557603570752,1,15,1 -2248,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.2458889195696,35.4529371414424,1,35,1 -2251,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.75959327747114,34.2451625214272,1,33,1 -2252,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.92732469807379,25.6239885163187,1,18,1 -2253,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0733879033942,34.0089067639789,1,30,1 -2257,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.010355487233,30.663975069452,1,14,1 -2268,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0240009934641,34.5855715211157,1,27,1 -2269,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.79154138104059,28.7947777726098,1,19,1 -2271,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3900117517915,29.8715391199537,1,23,1 -2274,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.51574640674517,26.8209858041795,1,12,1 -2281,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.98351760278456,29.3015613504241,1,17,1 -2289,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.52523549483158,31.9292757224818,1,21,1 -2291,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.99305608728901,34.0979825658448,1,33,1 -2293,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.54080051346682,28.6648084120648,1,31,1 -2294,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.82706460938789,30.8387909760582,1,21,1 -2295,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.4114526538178,36.2420096574696,1,26,1 -2298,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.91601836448535,33.5513810333856,1,28,1 -2299,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.92610728181899,30.3757466709185,0,17,1 -2316,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.9424873017706,30.5797075112216,1,22,1 -2317,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.62770984182134,32.3789014281465,1,28,1 -2319,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0145135226194,27.0890926416978,1,20,1 -2323,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.289256796008,28.0650747882347,1,15,1 -2332,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.85594204999506,35.3296382345633,1,29,1 -2333,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.92758334684186,25.8206202006452,1,14,1 -2335,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.52789314626716,33.2575065125315,1,31,1 -2336,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0808183595072,26.8422160787106,1,17,1 -2337,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.80103061906993,33.4301553711048,1,31,1 -2338,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.66309213079512,26.7119825978913,1,22,1 -2344,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0460134358145,35.9980608660146,1,33,1 -2350,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.56162432581186,28.7852057907128,1,16,1 -2354,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.80266880406998,33.5007405382848,1,28,1 -2357,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.58394190133549,35.0062355077587,1,27,1 -2363,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.65561036160216,31.6683470422463,1,33,1 -2364,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.1210935856216,33.9157127664541,1,18,1 -2366,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0521294835489,29.0031261704956,1,17,1 -2367,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0290348122362,24.9861263348695,1,15,1 -2368,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.87354085664265,27.4052998196493,1,15,1 -2369,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.75295605906285,31.5833320159011,1,36,1 -2371,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0597767059226,28.3798606977561,1,11,1 -2373,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.72149921255186,32.0704567176305,1,34,1 -2375,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.80108003714122,30.9726814581809,1,25,1 -2376,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4771246595774,27.3189022794532,1,6,1 -2379,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.95559916039929,28.7874985054407,1,10,1 -2380,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.4185796075035,31.1623368495117,1,22,1 -2392,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.91654746048152,27.0483307744142,1,16,1 -2393,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.68642226955853,31.3787374768857,1,20,1 -2395,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.280574001139,34.6441370778778,1,17,1 -2401,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.85137404268607,32.0260939434468,1,21,1 -2402,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3976644151844,26.2774257155045,1,28,1 -2408,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2709032576531,26.3067799961576,0,17,1 -2413,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3012210708112,33.7441340601278,1,21,1 -2419,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.98216701275669,32.8671876598961,1,36,1 -2420,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.54656090796925,28.625065456853,1,19,1 -2421,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.197344352724,34.3396890787685,1,25,1 -2426,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.61759662861004,26.1540034870814,1,15,1 -2430,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.65335713187233,33.2331788331764,1,31,1 -2435,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.58874398819171,29.2832550413795,1,13,1 -2436,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.96208924194798,33.7003186159204,1,33,1 -2444,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0706678766292,30.5707239821665,1,27,1 -2446,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.0533215603791,27.9661852689544,1,15,1 -2449,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.87463690829463,26.3866432168918,1,24,1 -2450,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.98494511842728,30.594894906124,1,25,1 -2451,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.49629736715,32.601318735181,1,29,1 -2456,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3064249115996,33.7640674099714,1,33,1 -2461,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.1547842279542,26.6384256035041,1,14,1 -2468,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.89966704370454,28.747525486909,1,17,1 -2476,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.50699335359968,35.2494346677617,1,30,1 -2478,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.85868521174416,33.2093565726676,1,42,1 -2479,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.3232694698963,34.9393837692837,1,28,1 -2483,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.96129460842349,27.5130525830444,1,19,1 -2484,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.3918294743635,26.3163324578724,1,20,1 -2486,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.0784582227934,34.402298198132,1,22,1 -2487,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.2708160474431,31.6787867808526,1,18,1 -2489,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,9.61244441545568,30.1749493484007,1,12,1 -2490,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,0,10.4987971708179,27.709150475314,1,14,1 -2496,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,10.4886614077259,31.126422174156,1,31,1 -2498,1,1,2.37456968552376,7,5,-2.5191505461041,0.391101817504001,496,1,9.51891545788385,33.7929393570099,1,29,1 -2501,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.1550770788454,38.1504150566858,1,32,1 -2507,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.90509065520018,33.7908738235695,1,39,1 -2509,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2257058813702,31.5708432428699,1,32,1 -2515,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.89340372756124,33.3693471401077,1,34,1 -2520,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.55966233089566,36.1778848331679,1,46,1 -2522,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.3291264781728,30.045567217967,1,26,1 -2523,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2953916022088,31.0981311682227,1,16,1 -2524,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.8371665540617,38.3357413262191,1,41,1 -2527,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1784378704615,31.3813120412931,1,26,1 -2529,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4332729279995,30.2810124627516,1,22,1 -2531,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2292722342536,32.3758843300491,1,24,1 -2532,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.87317450903356,36.5284537218706,1,38,1 -2540,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.86826559319161,38.0568204049888,1,42,1 -2542,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2107144889887,37.4482497054258,1,41,1 -2545,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.1866368418559,35.2935256366709,1,45,1 -2546,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0328431620728,36.3228775956393,1,37,1 -2547,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.54799119010568,32.2633239535721,1,19,1 -2549,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2876752866432,31.8080689928196,1,18,1 -2554,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.59442965104245,32.3972304194552,1,21,1 -2562,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.71428152942099,29.6466396189074,1,17,1 -2563,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.56431084964424,36.5803887883955,1,31,1 -2569,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4907079176046,32.3944476945463,1,18,1 -2572,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4558569926303,34.0392298137995,1,37,1 -2575,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.92687950027175,34.2341509162982,1,28,1 -2578,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.57908202079125,34.5038760235775,1,21,1 -2580,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.98005330609158,31.7882327558119,1,18,1 -2583,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.64941849629395,32.0243978443521,1,29,1 -2594,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.3068891139701,27.5224931196399,1,25,1 -2596,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.70584442350082,30.7436105738326,1,21,1 -2598,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4995791451074,38.4015669930069,1,37,1 -2601,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.69444564939477,30.8988660506069,1,29,1 -2602,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.88244410534389,28.6970798338835,1,17,1 -2603,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.0192200310994,28.8301171640098,1,21,1 -2604,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.0700294128619,30.0803275998948,1,19,1 -2608,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4458039263263,37.5958572888745,1,39,1 -2612,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.94076686305925,32.5168030082562,1,22,1 -2618,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.1188671123236,37.3697348690748,1,45,1 -2619,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.0147831502836,31.8070912348265,1,29,1 -2620,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.59798367228359,36.3509383391613,1,26,1 -2624,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.0008666692302,33.2029642120303,1,14,1 -2627,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.56053768959828,37.2498857318417,1,35,1 -2630,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1831794350874,34.9494899091429,1,27,1 -2632,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0488232153002,37.8260658814418,1,34,1 -2633,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0078107533045,34.5348799189837,1,29,1 -2639,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2188234701753,35.3212208979543,1,42,1 -2645,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4355245425832,31.9886728352966,1,18,1 -2646,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.3994565028697,35.7786115357342,1,44,1 -2650,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.86689844261855,35.496575961097,1,37,1 -2652,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2847653159406,29.5320301844209,1,30,1 -2653,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.94048911123537,30.9655507251505,1,21,1 -2657,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.77163959899917,33.0892680329892,1,17,1 -2662,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.50827684020624,35.8050542862399,1,45,1 -2663,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.3199479423929,35.694541737846,1,38,1 -2665,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.93029840616509,35.4837106121076,1,35,1 -2668,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.3478705706075,37.5937369654728,1,34,1 -2669,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0971793499775,35.3342759530961,1,41,1 -2671,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.68383490317501,35.9283554519973,1,34,1 -2673,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2739685296547,36.6453751302041,1,42,1 -2674,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.44492732035,35.1736193521663,1,47,1 -2679,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.81782565382309,37.1667711589314,1,35,1 -2685,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4005912251305,35.491124653436,1,43,1 -2687,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.69212494394742,30.7145537730298,1,14,1 -2688,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.51839499827474,28.7590356825119,1,24,1 -2692,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.407363071572,35.7786315903321,1,41,1 -2693,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.8633775121998,29.2261191720435,1,20,1 -2695,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4217131875921,36.4889300726894,1,30,1 -2696,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.67039381409995,36.4662823603071,1,46,1 -2698,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.80386926257052,28.8666361306318,1,22,1 -2699,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.69307452300563,32.992607766332,1,20,1 -2707,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.9840845791623,31.2134596272557,1,26,1 -2708,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.53034470533021,33.4502608398883,1,34,1 -2713,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.3359889790881,30.0396797330928,1,28,1 -2714,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.72806495358236,34.8100732037787,1,33,1 -2717,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2778590465896,29.2982137165553,1,21,1 -2721,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4434281289577,36.6848412585244,1,33,1 -2722,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.3791455449536,32.1716683549248,1,22,1 -2726,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.70809813123196,30.7039619568457,1,24,1 -2727,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.96539040887728,29.1416421634405,1,20,1 -2729,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4826477530878,36.9982577929975,1,23,1 -2731,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.61236394499429,33.1262043848553,1,30,1 -2735,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.80847022961825,30.27200476424,1,28,1 -2739,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.84844977967441,31.7191525190397,1,20,1 -2742,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1921772921924,30.6415796448747,1,23,1 -2745,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.96384073118679,36.9826025121477,1,39,1 -2748,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4742781077512,37.2434256482236,1,35,1 -2752,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.56918323668651,32.0402876994873,1,16,1 -2759,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4812982613221,30.0775167393679,1,23,1 -2760,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.3776073509362,31.9163807843462,1,26,1 -2764,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.88611630257219,30.9457862186138,1,25,1 -2766,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.845003424678,31.0299222517973,1,22,1 -2771,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2575946475845,33.0655615892671,1,23,1 -2773,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2582577010617,35.2015252231698,1,42,1 -2774,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.59887746721506,34.9221238816376,1,34,1 -2775,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4385282427538,31.1474891624081,1,27,1 -2777,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2844590242021,37.019316479981,1,35,1 -2779,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.77129743224941,34.76323793209,1,49,1 -2784,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.81010188534856,32.3482108216983,1,22,1 -2788,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1141201367136,33.7338465577076,1,27,1 -2790,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.57717681676149,31.7013271328222,1,21,1 -2791,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0865240502171,34.3041919043851,1,41,1 -2793,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4425074455794,32.1200793607787,1,17,1 -2796,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2064667837694,36.716012917731,1,37,1 -2798,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.80446134065278,37.3318352465844,1,42,1 -2799,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.3081472164486,32.3340475619857,1,19,1 -2800,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.1421047791373,37.1445734788169,1,43,1 -2803,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.3330844158772,36.9693584375051,1,26,1 -2806,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2909993648063,32.141160142433,1,25,1 -2808,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.96230539935641,35.6726089326427,1,42,1 -2810,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0142583134584,36.4283022617315,1,36,1 -2813,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.78943661320955,36.9722045307289,1,33,1 -2816,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.87309742276557,33.2999426332283,1,26,1 -2819,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0622863660101,37.1861439587745,1,31,1 -2821,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.68037880631164,34.4116176035944,1,33,1 -2827,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.90455398824997,37.0090368193209,1,42,1 -2828,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.7680430279579,36.8137008013602,1,31,1 -2830,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0444033213425,38.2299682447953,1,33,1 -2842,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4975598263554,38.132205033372,1,35,1 -2845,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.3476500108372,37.8838426688668,1,36,1 -2848,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.54617609945126,36.3281503433251,1,42,1 -2849,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.89749401272275,39.0904766747779,1,36,1 -2856,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.017697927542,31.1484982420153,1,17,1 -2857,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.537822464481,31.9569821783586,1,17,1 -2861,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2078609976452,37.943093362862,1,40,1 -2876,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2826604917645,33.24646839263,1,44,1 -2879,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.71792440442368,37.2582436929345,1,29,1 -2880,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4035587830003,36.4881512230865,1,44,1 -2882,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.96697303745896,32.6511093340911,1,19,1 -2884,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1365796267055,30.9075257497751,1,22,1 -2886,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.51530856825411,35.703541850026,1,39,1 -2887,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.0008376347832,31.6135889460374,1,16,1 -2890,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.3145217816345,33.3308204769177,1,19,1 -2891,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.85194868198596,35.8743885985587,1,37,1 -2892,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.91959822899662,35.6070151115585,1,33,1 -2894,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.470861727139,32.4282293659967,1,22,1 -2902,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0842088069767,34.3812680525,1,31,1 -2903,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.0678355060518,30.0886849275566,1,17,1 -2908,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4713685109746,32.8119269735468,1,26,1 -2911,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.3276143465191,36.4160798314223,1,44,1 -2913,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.95783426566049,30.4462434982321,1,21,1 -2915,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4245336700696,34.7815053427207,1,30,1 -2917,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.3011102506425,35.7076321445995,1,34,1 -2920,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.0048335806932,35.3521275666414,1,31,1 -2921,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.89863398880698,33.4304411727876,1,20,1 -2923,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.1074001272209,35.0639626499033,1,36,1 -2924,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.3053721629549,31.0206009384539,1,15,1 -2926,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.85196924116462,33.5516110756002,1,43,1 -2927,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.1830416226294,35.5253527154465,1,29,1 -2929,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.4375324943103,29.6019193528216,1,24,1 -2936,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.75525093195029,38.1473910485111,1,41,1 -2937,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.95773224392906,32.962469724867,1,29,1 -2938,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.97477365355007,35.2626579956912,1,13,1 -2939,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.61523535079323,33.6972514434094,1,23,1 -2944,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.77512037358247,35.5556588912223,1,43,1 -2945,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.0266085106414,31.1761162886725,1,23,1 -2948,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.2227201538626,34.1309575415213,1,46,1 -2950,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.3627019624691,31.6456358053417,1,25,1 -2953,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.0586198512465,32.0053980132911,1,26,1 -2954,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.322139560245,37.611619759212,1,40,1 -2960,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2450227825902,31.1665111623259,1,23,1 -2963,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.54850195255131,37.1411950065115,1,24,1 -2964,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.82410261756741,33.5905349072932,1,20,1 -2965,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,9.71556529402733,29.6657651612273,1,18,1 -2967,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.1639342918061,30.503589760009,1,16,1 -2968,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,0,10.2825345690362,31.4612887613781,1,27,1 -2973,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,10.4580174186267,36.312985755142,1,36,1 -2975,1,1,2.37456968552376,7,6,-0.243127856122577,0.960659456433727,476,1,9.57070619636215,35.7270497750513,1,45,1 -2976,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1515077003278,35.2799040884186,1,24,1 -2979,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.51158969872631,34.062220253842,1,45,1 -2992,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2283210330643,32.4077438568496,1,24,1 -2997,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.50863551092334,36.1095082915617,1,42,1 -2999,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.62002725782804,38.675692306496,1,39,1 -3001,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4984117674176,35.1601370262602,1,42,1 -3005,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.64221987104975,37.4754365784664,1,35,1 -3009,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.57325710961595,34.2596255933846,1,42,1 -3010,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.377128982218,32.521107379387,1,25,1 -3015,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4797902028076,38.4893600420922,1,39,1 -3016,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.148481186945,36.8052703819635,1,41,1 -3018,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.3055400771555,33.5151437527324,1,25,1 -3019,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0271108991001,33.6718297222056,1,42,1 -3024,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.95437768497504,33.35564707095,1,25,1 -3026,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1588737890124,35.1697119776122,1,39,1 -3029,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.91530551877804,35.9824675912077,1,36,1 -3030,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2502785597462,30.9721103890725,1,24,1 -3035,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1459196361247,37.2522163958485,1,54,1 -3039,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.63194602215663,33.6598989813008,1,28,1 -3040,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.82021438376978,32.6033505270225,1,23,1 -3041,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1699163822923,32.5168613367873,1,20,1 -3050,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.5311002668459,39.6202307086837,1,52,1 -3054,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.81092581036501,30.9817963385494,1,22,1 -3056,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.61489541269839,31.0961076724833,1,19,1 -3057,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.70426334068179,32.7965347213283,1,29,1 -3060,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4441372291185,37.3594731925868,1,31,1 -3061,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.64900476718321,33.8845906328992,1,20,1 -3063,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.6128885098733,38.2268691542733,1,41,1 -3066,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.6097352236975,37.2712731999142,1,48,1 -3068,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.8901171432808,36.8804160669835,1,48,1 -3070,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4014016669244,35.5165373981166,1,42,1 -3074,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.92519612843171,30.287254171275,1,16,1 -3078,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.78436042414978,36.3083774836494,1,37,1 -3081,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.98377525759861,31.3372142850946,1,23,1 -3085,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3805400705896,36.4362889171939,1,36,1 -3086,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.0476924700197,33.3231071453823,1,28,1 -3087,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3925105892122,37.4911160769892,1,46,1 -3088,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.92931617749855,28.8292818582627,1,22,1 -3093,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.50571266631596,34.8501459278366,1,19,1 -3097,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.62257326603867,35.9988938455623,1,38,1 -3098,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.88140833145007,31.2195975727684,1,16,1 -3099,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.9757853760384,33.5150326739384,1,31,1 -3102,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.61623029410839,30.7045517142178,1,25,1 -3104,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1286855512299,32.1013571832095,1,22,1 -3109,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1606283588335,37.790179500129,1,43,1 -3110,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4335982475895,30.2679721549684,1,31,1 -3111,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.045042429585,36.2758013043936,1,51,1 -3112,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1441660891287,37.1671193380702,1,31,1 -3117,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.113630492473,37.415402646425,1,45,1 -3120,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.83415767736733,35.0704236786978,1,41,1 -3126,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.9717336918693,39.9550461059226,1,40,1 -3128,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0744098022114,40.1701591453916,1,51,1 -3134,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.50668668118306,32.6662295926603,1,30,1 -3136,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0674194572493,39.5594126737696,1,42,1 -3143,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.54064430994913,37.6355972217247,1,44,1 -3144,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0775927875657,37.9302467649322,1,36,1 -3154,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4072047227528,33.0782899691712,1,16,1 -3157,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0771125361789,36.9226754385517,1,40,1 -3160,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.3867654197384,30.8337055333598,1,19,1 -3161,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1445170287043,32.4516860404224,1,18,1 -3163,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1784438348841,36.7907749077219,1,51,1 -3164,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.52820281428285,35.9885266774204,1,46,1 -3168,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.66951421136037,32.5415966963183,1,17,1 -3169,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.57273496920243,30.7395956103222,1,27,1 -3170,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1227876450866,37.0849101785641,1,61,1 -3171,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1086919717491,35.9545100759319,1,28,1 -3172,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.58428301825188,31.7018592745993,1,33,1 -3173,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4578183169942,39.0846104547404,1,41,1 -3175,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.89509370154701,37.4144764755832,1,47,1 -3178,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3688657965977,37.1715741040993,1,37,1 -3180,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.3922096856404,32.0225223733626,1,31,1 -3185,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0531975883059,33.8737449680586,1,47,1 -3188,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.73072383669205,34.7535432743703,1,32,1 -3190,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.57815442979336,31.9975449209832,1,20,1 -3192,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4816544181667,31.6341589202469,1,27,1 -3193,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0002845448907,38.1734137350648,1,38,1 -3195,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.0167136173695,33.0792454896565,1,26,1 -3196,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4028790201992,31.4990604962713,1,31,1 -3198,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.78024820424616,38.881764854566,1,36,1 -3199,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.3069370028097,33.2103535553285,1,30,1 -3202,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.54216047795489,38.1461553030572,1,44,1 -3204,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.70474338554777,38.8796661761928,1,44,1 -3206,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.84076260845177,31.1432481211152,1,25,1 -3208,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.50027683051303,37.37711413897,1,41,1 -3212,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2307531414554,32.8614735419526,1,26,1 -3215,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.52216873574071,32.4683520413217,1,28,1 -3221,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.137614724692,37.1293621249599,1,32,1 -3222,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.9828380565159,35.0883904237798,1,25,1 -3226,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.69928766950034,36.9928742870429,1,34,1 -3228,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.72851317562163,31.4824524034848,1,23,1 -3234,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4508486443665,37.9296407642927,1,33,1 -3235,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0171561862808,38.2328845913757,1,40,1 -3237,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.0570409821812,28.3861785470751,1,26,1 -3238,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1124873335939,31.2642215009905,1,22,1 -3244,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.5100314412266,32.4421954906386,1,27,1 -3245,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2129180869088,30.9606042923665,1,30,1 -3247,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.89526128675789,31.3509145501375,1,23,1 -3248,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.53237051982433,36.4352062683981,1,46,1 -3251,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.8174153836444,37.085274021422,1,39,1 -3258,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.57212096103467,35.6421404078913,1,41,1 -3260,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.95917437970638,32.5517726179594,1,29,1 -3268,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.82949664210901,37.1040993307655,1,46,1 -3273,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.5797279542312,34.5741069844063,1,39,1 -3275,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.65603914391249,30.2269416831487,1,21,1 -3278,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.3366414348129,33.3806301396881,1,21,1 -3283,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2993187266402,31.3132244176003,1,26,1 -3285,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.68700678925961,36.7282897493535,1,39,1 -3290,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4850795471575,31.106249786749,1,29,1 -3294,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.2162590520456,37.0111295800113,1,40,1 -3297,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.3980627460405,33.5849850844538,1,34,1 -3303,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1193819947075,35.8330056972661,1,39,1 -3306,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.82556426548399,40.1489691940808,1,34,1 -3307,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.91352089005522,36.9997121369819,1,37,1 -3310,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4206315635238,39.2957353051985,1,41,1 -3311,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.2320608303417,33.0086503604099,1,32,1 -3329,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.98707138327882,37.0756657964594,1,34,1 -3334,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.75419996795245,40.0338927350441,1,36,1 -3337,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.3013546334114,30.247236727661,1,16,1 -3338,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.52295876131393,35.1483309092699,1,51,1 -3343,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4341211405117,37.3678366767363,1,37,1 -3351,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.467404677067,32.3204299906854,1,18,1 -3352,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.65925203892402,31.9361520004402,1,27,1 -3357,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.7043192803394,37.9267766936627,1,46,1 -3358,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.0018107446376,39.3102534300078,1,45,1 -3362,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.0800328894984,31.6903378857256,1,22,1 -3363,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3960336118471,36.3083301908587,1,39,1 -3365,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.0510060777888,29.6218395196067,1,19,1 -3376,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.78478564112447,36.2013384339071,1,41,1 -3378,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1022538943216,32.571233247548,1,31,1 -3384,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.80434967321344,36.2627914087597,1,49,1 -3394,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.94076512334868,37.1862648330157,1,37,1 -3396,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.2202453392092,35.5119835211867,1,45,1 -3399,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.69748577615246,30.8479064509574,1,30,1 -3404,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4333712144289,38.2952410279095,1,39,1 -3405,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.0937537965365,31.235611927107,1,19,1 -3410,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.184157658834,37.3492126923937,1,47,1 -3414,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.76158017013222,38.3176453041965,1,39,1 -3416,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.88902975711972,35.9121922559158,1,40,1 -3421,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.9342352161184,37.4327551942297,1,42,1 -3422,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.78394266520627,36.759511001034,1,42,1 -3423,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.98774426686577,35.8428714352221,1,44,1 -3424,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.6797565096058,32.3311667640138,1,20,1 -3426,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.79550315835513,37.1184568703373,1,40,1 -3432,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.88715195353143,34.1649711978945,1,25,1 -3434,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.0210324444342,30.7153565575951,1,23,1 -3437,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.69503946066834,38.7671524577592,1,44,1 -3440,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.3829748535063,36.6852578676889,1,43,1 -3441,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.52132240100764,32.1166164936989,1,14,1 -3448,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4459196932148,30.644761544296,1,22,1 -3449,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4041315531358,32.3938744837581,1,22,1 -3451,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.7365609051194,38.6630332365997,1,41,1 -3453,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.4388975773472,34.6186634089448,1,53,1 -3458,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.231851400109,37.7421726273069,1,39,1 -3459,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1167028041091,38.736458733547,1,44,1 -3461,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.71474615717307,39.3388909387837,1,45,1 -3464,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.91434841579758,32.9159029448561,1,21,1 -3465,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.086741614854,39.0687051842502,1,35,1 -3466,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.463123624213,36.5505633642085,1,29,1 -3467,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.410105042858,30.8775788184218,1,22,1 -3469,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,10.1207931321114,35.8634892574318,1,35,1 -3473,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.3437413612846,31.0642341810889,1,29,1 -3481,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.89106559986249,33.1884404871152,1,31,1 -3482,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.85845350613818,32.6167272364255,1,33,1 -3485,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,9.56640338432044,32.4723421780425,1,26,1 -3487,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.74178403592668,39.0057078857638,1,29,1 -3491,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.4271480841562,32.9773150458834,1,29,1 -3495,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,0,10.1239163670689,30.8059386456606,1,28,1 -3496,1,1,2.37456968552376,7,7,1.71780943344135,0.127042886547261,521,1,9.61950767762028,38.144936140483,1,39,1 -3499,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.50290359091014,31.3567281203628,1,19,1 -3500,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.68990808562376,30.5369834606994,1,20,1 -3501,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.59627908258699,31.096015558196,1,16,1 -3503,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0171425102744,31.4070487633635,1,33,1 -3506,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.4407293673139,31.4735982688235,1,19,1 -3508,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.2681213577744,32.3339370273682,1,17,1 -3509,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.3686154822353,25.1216598324327,0,13,1 -3513,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3481156332418,30.029318147995,1,18,1 -3515,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1256760302931,27.0918737925492,1,9,1 -3516,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.73636717512272,31.8122829668351,1,13,1 -3519,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0364180125762,29.9427222022457,1,21,1 -3523,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1997264744714,24.4035137921745,1,13,1 -3526,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3173123106826,30.1518231004706,1,18,1 -3530,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.69850930408575,27.5633082471014,0,18,1 -3531,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.51658086851239,27.4803194232485,0,13,1 -3534,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.4114246251993,30.9673681090596,1,18,1 -3537,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.65247649373487,31.8074984372938,1,25,1 -3541,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.2454373687506,25.0806996117015,1,10,1 -3543,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.90784345893189,25.9093967767599,0,10,1 -3544,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.66748722386546,25.2578738625497,1,16,1 -3545,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.96133269160055,24.6293689599284,1,10,1 -3546,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.98533005337231,25.9880647036183,0,14,1 -3548,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0557554124389,24.7162895085283,1,17,1 -3552,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1724866270088,26.9513728602615,0,14,1 -3553,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.64260349608958,31.1034503495545,1,25,1 -3555,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.96095388312824,31.7248685503724,1,28,1 -3558,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.57885127724148,25.1012486496793,1,11,1 -3564,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0554630665574,27.5572161956716,1,16,1 -3566,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1384577199351,28.8957006018805,1,23,1 -3569,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.88994977343827,24.5951127942686,1,18,1 -3571,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.2553542710375,30.9504035381234,1,25,1 -3573,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1147228293121,30.3185516366789,1,19,1 -3574,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1851799334399,26.8295650017024,1,11,1 -3575,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.4448119699955,29.0430047609907,1,19,1 -3576,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4640583747532,26.3051920726583,1,11,1 -3577,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.8107457770966,27.0952027571477,1,16,1 -3582,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3283484485,32.5515355047824,1,15,1 -3583,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.2431873069145,24.5795469287679,1,8,1 -3585,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.2691038069315,27.326678716887,1,13,1 -3587,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.76567254588008,23.5815317085783,0,23,1 -3592,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.76133268652484,26.1438354924175,1,13,1 -3593,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.55771537893452,24.3804490631902,0,19,1 -3594,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4779189103283,26.0110885422006,0,19,1 -3596,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.3650099865627,27.6841089731447,1,8,1 -3599,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0129154429305,31.1801064737983,1,16,1 -3601,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.93214036384597,31.6683479839782,1,18,1 -3603,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.2111867018975,29.3039144924935,1,11,1 -3605,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.53719762898982,21.8127574302938,1,7,1 -3606,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.63730460079387,22.3125576351948,1,12,1 -3607,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.9892534960527,30.1806224403972,1,20,1 -3609,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.2537347984035,26.0254622770039,0,13,1 -3616,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.2810559221543,25.5697960915598,1,15,1 -3621,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.58215668215416,28.5606095489342,1,20,1 -3622,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.5971295889467,31.245492425986,1,21,1 -3624,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.53157247393392,26.2214078485162,0,14,1 -3628,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.78797942236997,30.2341649977459,1,18,1 -3632,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.9988644651603,29.5785836984408,1,24,1 -3634,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0801225558389,24.8097062191253,1,16,1 -3635,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.79441591561772,28.5667724519652,1,23,1 -3636,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.71467563160695,30.9858203794184,1,23,1 -3637,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3593039475381,31.1673539277481,1,22,1 -3638,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.93901983671822,27.085417290957,0,12,1 -3640,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.90211591287516,29.8345674505509,1,14,1 -3643,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.72907997248694,24.0769170582649,1,19,1 -3645,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.96516737295315,24.8238000662094,1,13,1 -3646,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0877291865181,31.3918525858029,1,17,1 -3647,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.5992882528808,30.2111859771108,1,21,1 -3652,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0765854569618,28.4415119260646,1,25,1 -3653,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.90522020449862,25.2123082146199,1,16,1 -3656,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3827159025241,28.1264644697682,1,23,1 -3660,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1104257458355,30.1134105757584,1,24,1 -3666,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.92430583643727,27.3214685620634,1,14,1 -3668,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.61781544191763,26.2164058423129,1,12,1 -3671,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0407422070857,26.1912302847351,1,16,1 -3677,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0080310243648,25.7406311911298,1,16,1 -3679,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0242732781917,25.9642499639301,1,19,1 -3682,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.51116200629622,24.2876096142276,0,14,1 -3689,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.66162275057286,28.2318135548589,0,15,1 -3694,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.84996162285097,29.0282147252809,1,19,1 -3697,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1255082383286,31.7569901904704,1,25,1 -3699,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1656559880357,26.1205825550555,1,8,1 -3701,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.81848434172571,30.8560476060999,1,25,1 -3708,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.400477033807,29.3681420210477,1,24,1 -3713,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.71781658288091,31.7348117484142,1,25,1 -3724,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.6813216812443,25.6139985605341,1,13,1 -3729,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0560693135485,30.1305500012776,1,15,1 -3731,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0518562740181,29.9377819077049,1,17,1 -3732,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0263712641317,27.750915133885,1,11,1 -3735,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1542263631709,33.3182276412508,1,16,1 -3736,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.79015934397466,31.0396542728527,1,14,1 -3740,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.50061478721909,25.2936255788274,1,22,1 -3745,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.4961362970062,28.5101940996428,1,22,1 -3747,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1725734660868,26.9030218255847,0,16,1 -3750,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.88235288555734,26.7011304326125,1,8,1 -3752,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.2506960425526,32.807596082689,1,20,1 -3753,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.75532168382779,26.6622578594644,1,18,1 -3762,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.67385249095969,24.8936308366666,0,13,1 -3768,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3918935530819,33.8560898274868,1,19,1 -3769,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.82492802361958,23.6076832548795,1,19,1 -3773,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.07650972181,24.3054060155153,1,16,1 -3774,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.72291646618396,32.7306064076602,1,23,1 -3776,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.86413295962848,31.8292715022316,1,12,1 -3781,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.76219025230967,28.90440825873,1,17,1 -3784,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1509039420635,24.621357610521,1,10,1 -3788,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.76375904027373,31.744320354997,1,21,1 -3791,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.56549653713591,26.2263207393727,1,15,1 -3793,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.57455690461211,30.5135702742903,1,19,1 -3796,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.3520327613223,27.5298384491263,1,10,1 -3797,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.86787224467844,30.6056467446711,1,17,1 -3798,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.2528344804887,30.2122557407021,1,22,1 -3802,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.2629441076424,27.967869280343,1,14,1 -3809,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0113759408705,25.9834478995595,1,11,1 -3810,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1659190459177,24.8071967602246,1,13,1 -3814,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1781352567486,33.8445222376456,1,23,1 -3816,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.4491260903887,28.0459469024302,1,18,1 -3817,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.59312898502685,25.9359319347387,1,11,1 -3820,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.075684160227,25.7277982367913,1,14,1 -3823,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.102691585198,26.7087907568706,0,13,1 -3828,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.82810194999911,31.9972178288317,1,25,1 -3829,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.86522333696485,28.6214952473544,1,16,1 -3831,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.59443031530827,31.5156744742366,1,37,1 -3833,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.63718434446491,30.4280920267054,1,20,1 -3834,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.60738161415793,25.0381524634429,0,17,1 -3835,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1735241496935,23.8844780923981,1,12,1 -3842,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.4029632348102,30.6613940927039,1,34,1 -3845,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.94013213785365,30.0111477285458,1,20,1 -3846,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0650963415392,29.090032340444,1,23,1 -3847,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.7362329333555,29.8123462632894,1,20,1 -3849,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.8320929214824,30.9805341854437,1,22,1 -3853,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.2913640404586,30.9986663352071,1,13,1 -3854,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.83087341138162,22.3536688136249,1,13,1 -3858,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0233217638452,29.1951355539696,1,25,1 -3861,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.53452353482135,25.6609344334955,1,19,1 -3863,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1176704743411,25.6642619769094,1,10,1 -3866,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.1886172695085,32.4935178568887,1,24,1 -3869,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4849688832182,26.2682693311274,1,12,1 -3870,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.70501329260878,25.4237725737754,1,9,1 -3873,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.4102648643311,30.0819496454278,1,22,1 -3875,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.4889398822561,26.9187599222945,1,24,1 -3879,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.2057544148993,27.5253507552406,0,23,1 -3880,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.4533215858974,34.226734883685,1,16,1 -3881,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.99235422839411,24.5157740377533,0,12,1 -3886,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.417052939767,25.8053542245063,0,16,1 -3887,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.68070757086389,26.4376775743123,1,15,1 -3889,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0688489840832,24.9379546092255,1,20,1 -3891,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.88357491511852,24.4937897646016,1,9,1 -3893,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.3203828197438,23.9144568539279,1,15,1 -3895,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.83550468087196,29.061068374817,1,24,1 -3899,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3851587213576,28.1156826790955,1,20,1 -3902,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.152376756072,25.9941956579166,1,17,1 -3903,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.82061873143539,29.8548855064377,1,14,1 -3907,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1323050817009,26.4610114754965,1,11,1 -3910,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1622865791433,23.8973393942982,1,18,1 -3911,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.0106124735903,25.2716208990317,1,12,1 -3920,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.52195840119384,29.3372081022185,1,22,1 -3925,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.3359805161599,25.9773659748654,1,6,1 -3926,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.7446246384643,23.9914075708672,1,16,1 -3934,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.3218261557631,29.5063367660536,1,24,1 -3936,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4773314096965,23.1886158029148,0,15,1 -3946,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.88504630373791,31.8804097473454,1,24,1 -3948,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.59185240534134,31.2879945909854,1,21,1 -3951,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0910529776011,32.1158241186687,1,10,1 -3954,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.77419576328248,32.1300525972327,1,21,1 -3957,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.4663903228939,24.3641338358999,1,17,1 -3958,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.88884789077565,29.4344521348774,1,18,1 -3959,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.2840496241115,28.789223553959,1,21,1 -3961,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.62402057345025,24.2692183738288,0,16,1 -3967,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.77438903250732,30.5219756698742,1,24,1 -3970,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.5604138856288,31.8507783457861,1,27,1 -3975,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0587819796056,32.1502735074943,1,29,1 -3977,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.4281375401188,29.8366808997128,1,21,1 -3981,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,10.1714588319883,23.5940458830871,1,10,1 -3986,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,9.53356020525098,29.7818452965219,1,21,1 -3988,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.194632503204,31.0782872027529,1,19,1 -3991,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.5412327258382,24.2153744430133,1,12,1 -3995,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,0,9.90616652672179,24.1419753153991,1,12,1 -3996,2,1,-0.978085923799264,1,8,2.68020829624172,-4.2328685889993,505,1,10.0345505010337,29.2167856209616,1,14,1 -4005,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2729974794202,21.4283176963629,0,7,1 -4007,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.93834588164464,20.0082080489659,0,9,1 -4008,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.86027289973572,24.0439358271263,1,7,1 -4009,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3741332336795,24.0460859167412,0,13,1 -4012,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.8524982703384,18.2543904583755,0,5,1 -4015,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.6484417533502,20.2237899213581,1,7,1 -4017,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3153563553933,24.9120522411254,1,11,1 -4021,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.70783980819397,17.9038731890307,0,3,1 -4026,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3154560774565,23.549917491566,1,14,1 -4027,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2525574117899,20.3086040192669,0,7,1 -4038,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0221257780213,18.4175948002168,0,12,1 -4044,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.6529071952682,27.0710792206271,0,22,1 -4045,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.90867616282776,19.9532515856545,0,11,1 -4058,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.5481537876185,24.7390823041928,1,7,1 -4063,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3369675658178,26.6248576839747,0,13,1 -4064,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.69340654625557,25.2873397943395,0,13,1 -4065,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.51596442121081,19.7126122195715,0,7,1 -4066,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.99993404862471,26.2484685221769,1,14,1 -4068,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2247771420516,24.3608978021545,1,15,1 -4073,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.87983303423971,26.4472192044196,1,12,1 -4074,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.75858676666394,21.3663177710008,0,6,1 -4081,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3175492095761,20.8391698050731,0,9,1 -4083,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.59586190828122,18.9813522772333,0,6,1 -4087,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.93263284838758,24.6582451069866,1,12,1 -4088,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.65888380678371,25.5762476128285,0,14,1 -4089,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.93592194910161,17.5801958194976,0,8,1 -4090,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.85902742599137,25.7390642857535,0,9,1 -4091,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.9635133210104,23.9215519932809,0,6,1 -4092,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.50556570477784,21.1845474424703,0,7,1 -4093,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.92741114622913,24.9665660320073,1,14,1 -4094,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1723920465447,24.4242564317659,0,15,1 -4095,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.94113953411579,26.9877653088572,1,12,1 -4102,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0754941413179,24.5246167358767,1,13,1 -4105,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1087191530969,24.0615950289477,1,8,1 -4110,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.58767492417246,22.2092707456372,0,9,1 -4111,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.99110271246172,20.3166718905748,0,7,1 -4114,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.1413540160283,20.8254944078701,0,7,1 -4115,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1689449355472,26.2942243312498,1,12,1 -4116,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1045769378543,22.9527001195998,1,10,1 -4118,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.55470698000863,22.1283076140477,0,11,1 -4121,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3106208317913,26.3097329565555,0,9,1 -4122,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2792742191814,21.8570169979449,0,8,1 -4129,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.6940401988104,18.1066312937811,0,4,1 -4132,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3640951630659,20.9645967554984,0,7,1 -4137,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.87548458739184,25.2751210552876,1,8,1 -4140,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.79580616508611,20.5551193440493,0,11,1 -4141,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.93694420787506,21.4458749039572,0,5,1 -4143,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.69187415624037,19.4663745592728,0,7,1 -4146,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.88376053259708,19.0712800409338,0,8,1 -4153,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0468141194433,24.4172385564847,1,10,1 -4160,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.53141435072757,27.0076449790943,0,12,1 -4165,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2194952536374,18.1859686309772,0,6,1 -4167,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.79297502571717,19.0843825778928,0,2,1 -4168,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0327955693938,23.1619635576938,0,6,1 -4169,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1570870117284,24.5868317525976,1,15,1 -4173,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.87033260776661,19.3620462149877,0,6,1 -4185,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.66458548489027,27.2854653311627,1,15,1 -4191,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.74806063785218,24.8061371291487,0,8,1 -4195,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.60390443913639,23.8643254028475,0,12,1 -4197,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.91675287578255,23.7693241194743,1,8,1 -4198,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1000177965034,25.1004051290433,1,18,1 -4199,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.4234605731908,21.4754280412468,0,11,1 -4201,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.87160967686214,20.2392526828115,0,6,1 -4202,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3085048485082,18.83988979056,0,4,1 -4206,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.79507952416316,20.8919602359977,0,7,1 -4207,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3420182606205,18.692764571596,0,3,1 -4209,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.56574670085683,26.0500109405152,0,14,1 -4211,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.73016972397454,24.9795400783865,1,19,1 -4216,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2443768337835,18.2619650946171,0,5,1 -4217,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.454982280964,25.1353782267353,0,13,1 -4222,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.1530338260345,20.4179689578234,0,7,1 -4223,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4710483062081,24.4874226048107,1,12,1 -4224,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0866210116073,19.8556253577352,0,5,1 -4228,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.2461519869976,19.8843653306484,0,5,1 -4229,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.61039799661376,22.180500768808,0,9,1 -4231,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0528622330166,24.8089259171432,1,14,1 -4232,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.1234919384588,25.5805678595845,1,14,1 -4235,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0020985761657,18.4057632597777,0,11,1 -4239,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3107622379903,16.9634719511132,0,6,1 -4240,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4733380263206,23.0188046958276,1,15,1 -4242,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.56751992856152,26.804979680274,1,13,1 -4243,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4513488311786,27.1554174573586,1,21,1 -4244,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.4575852761045,19.7722766560604,0,8,1 -4246,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.73140293429606,27.0145257379394,1,7,1 -4249,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.76496679754928,18.0205759059375,0,2,1 -4254,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0726632399019,26.8540452098084,0,7,1 -4261,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.86259803478606,17.7038151195464,0,7,1 -4265,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.51903933077119,23.635236159988,0,4,1 -4269,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0415983290877,20.7512376926837,0,7,1 -4273,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4410689692013,24.825683188883,0,12,1 -4278,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.038111083908,23.2307115952783,0,14,1 -4281,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.91700244159438,20.0949658481335,0,12,1 -4283,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3688269800041,21.8485818720438,0,9,1 -4284,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.98033409751952,23.2242548009333,0,17,1 -4285,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.60636596521363,21.5110871808911,0,8,1 -4287,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.51465851604007,24.2197811448071,1,15,1 -4290,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3226525322534,26.1468373204788,1,12,1 -4303,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.68363560945727,20.5092830271778,0,5,1 -4304,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.1293061969336,21.4002306018625,0,4,1 -4305,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.92461092094891,20.2177388695911,0,9,1 -4315,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2431676189881,26.2982299991963,0,8,1 -4318,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.002158437157,18.3239986587949,0,3,1 -4322,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2635695198551,24.5558377655076,0,10,1 -4323,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.1069001264405,18.8325963835167,0,6,1 -4326,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.62028008862399,18.6698185137306,0,3,1 -4332,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.1568832292687,23.0127213612368,0,4,1 -4333,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.55785451922566,18.5150959197069,0,4,1 -4336,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2009360389784,25.3339598531609,0,6,1 -4338,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.85506263934076,21.2268848993325,0,7,1 -4340,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.93722399557009,18.9327506825319,0,5,1 -4343,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3229619404301,27.0802049974585,0,18,1 -4344,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.69256681343541,25.8085263086643,1,8,1 -4345,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3686384407338,24.471957367163,1,7,1 -4347,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.88601013994776,25.3839540221277,0,15,1 -4360,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.67631322704256,24.2782837228577,1,7,1 -4361,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.58970711403526,20.7881688082235,0,8,1 -4365,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.56221622461453,26.6401989338949,1,13,1 -4370,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.92544234986417,23.3843730354231,0,7,1 -4371,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0432858522981,23.090721760348,1,15,1 -4376,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.74537827237509,24.5811813994904,0,7,1 -4377,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.72569837723859,25.3440498702335,1,16,1 -4381,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0792359737679,26.2238856934348,1,16,1 -4383,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.63568646158092,20.6541201887088,0,7,1 -4384,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.97347458335571,20.4990849913448,0,5,1 -4385,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.99658719240688,20.0745304525947,0,6,1 -4386,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.73321925685741,26.5918715412608,0,8,1 -4387,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.83334662835114,24.9010954297961,0,10,1 -4392,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.1041625186335,20.4516069049872,0,8,1 -4397,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.236461015651,29.107224006901,1,12,1 -4406,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.0055470024236,26.3264777554369,0,7,1 -4407,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.93611818063073,25.4899738394105,1,5,1 -4410,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4211508189328,23.7685795817039,0,20,1 -4411,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3369057842065,25.9569025230022,1,17,1 -4412,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3322274503298,23.9471744978839,1,17,1 -4419,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.74758909828961,22.0648056568568,0,8,1 -4420,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2625323694665,26.4936163094369,0,16,1 -4423,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3982536774129,20.6138423218744,0,10,1 -4426,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.91675100056455,24.9051942321439,1,10,1 -4428,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.93718960415572,23.7987910421588,0,12,1 -4430,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4378731229808,24.3611699552076,0,13,1 -4437,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.76656876271591,24.7530136604354,1,12,1 -4443,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.74900704715401,22.044820087861,1,16,1 -4452,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2462422766257,26.0165785193336,1,14,1 -4456,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2231301099528,23.9178232384391,0,10,1 -4461,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.73930805339478,24.4524989182385,1,14,1 -4463,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.5755867685657,27.0621744154272,0,6,1 -4465,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.87551943492144,24.2010193515949,0,18,1 -4467,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0430428173859,20.8998552484167,0,7,1 -4471,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.82965620001778,22.3243013598944,1,12,1 -4472,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0027805452701,15.4190117928685,0,6,1 -4473,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.81982599734329,26.2977515380733,0,14,1 -4474,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.82733909692615,20.2027722277277,0,11,1 -4475,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.56668841512874,23.5945739947096,1,14,1 -4478,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.58873746194877,20.3611780388716,0,8,1 -4479,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.55684055015445,20.1968379006765,0,5,1 -4487,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.81737611023709,21.7455459623735,0,8,1 -4489,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.4531224684324,22.6886848442047,1,9,1 -4497,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.3595303904731,24.4060018577136,0,9,1 -4500,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2609481061809,24.8308575735541,0,9,1 -4501,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,10.2942931978032,25.8333884950589,1,8,1 -4502,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.57686933781952,20.8196329730497,0,11,1 -4506,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.72632661508396,23.839333918336,0,10,1 -4507,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0836650351994,22.5961941051371,0,6,1 -4508,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.0177334579639,19.2027868183091,0,7,1 -4509,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,9.53125515440479,22.0574958530835,0,11,1 -4512,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,1,9.64129868824966,27.7837632129761,0,6,1 -4518,3,0,0.628956858108042,3,9,-0.608775284100456,0.402885336571963,518,0,10.3332658810541,22.8405599089162,0,6,1 -4521,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2937063199934,26.6447283398167,1,11,1 -4527,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0593784374651,17.4544916165797,0,6,1 -4530,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.97439221129753,19.348366860359,0,5,1 -4532,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.99813111219555,26.1169235099983,1,9,1 -4534,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2860526992008,26.2257275947582,0,12,1 -4535,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3457789334934,24.3748494341844,1,18,1 -4536,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1432968208101,23.3861146082239,0,17,1 -4537,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4864283283241,20.6602744050706,0,11,1 -4538,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.84543779701926,23.4758117103839,0,14,1 -4542,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2735481353011,20.316841336043,0,11,1 -4544,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.88909914856777,24.1425372716928,1,15,1 -4546,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.74632614036091,18.4416742628281,0,9,1 -4552,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.253949301783,25.7646647134452,1,8,1 -4553,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.4834235706367,24.2738885934449,1,15,1 -4554,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0029623676091,24.5022932640695,1,11,1 -4555,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.9734449298121,22.2081330556107,0,9,1 -4558,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.95755368913524,18.8202799795212,0,11,1 -4561,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.58898480329663,27.4964753355167,0,19,1 -4565,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.92690867348574,24.4341612842765,1,11,1 -4567,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.61930558481254,19.0582662076551,0,9,1 -4570,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3997445288114,25.1604512285182,0,15,1 -4572,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1773235332221,24.6120715797027,1,12,1 -4573,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.99844568502158,22.8961481615534,0,6,1 -4576,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.53394017089158,21.9705327158481,0,6,1 -4577,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.8696004897356,24.8266841088427,0,12,1 -4578,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.58297565742396,24.7791187599121,0,12,1 -4582,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2061911022756,17.588346327385,0,4,1 -4588,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0870683453977,20.8136439630966,0,9,1 -4589,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.6584344797302,22.2826399868995,1,16,1 -4592,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3619149276055,27.7835692430491,1,17,1 -4594,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.385813330533,25.6786330162922,0,9,1 -4595,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.50561916548759,23.3806345422219,1,11,1 -4596,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0735210869461,28.9858125380904,0,10,1 -4597,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.60534807527438,26.8331355686789,1,22,1 -4604,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.59772435179912,21.600000036866,0,10,1 -4605,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.65497219911776,20.0789256052875,0,6,1 -4609,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.79961597570218,20.6164431664924,0,11,1 -4612,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4208304448985,18.8080344593918,0,5,1 -4613,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.66889205062762,20.0267110789482,0,10,1 -4618,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4980186165776,22.0590254380792,0,10,1 -4620,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2388576508965,26.1612869130856,0,17,1 -4625,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2047585493419,26.0409510809967,1,8,1 -4627,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.76034031854942,20.6198553501524,0,10,1 -4629,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.72690433776006,23.6810109995632,0,10,1 -4635,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.57018149434589,24.4361041993915,0,15,1 -4638,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.80896384874359,27.3409001555357,0,10,1 -4640,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0623375014402,24.284060613177,0,11,1 -4646,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.79035522602499,19.1542064184509,0,7,1 -4649,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0836462161969,20.5379887455298,0,4,1 -4650,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.7737154038623,25.4921403421818,1,11,1 -4652,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.1120547510218,20.1148918428137,0,9,1 -4653,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3728909457568,23.9836269168659,0,16,1 -4666,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.3762230474968,20.7795622882591,0,8,1 -4670,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.3558628826868,21.066691033997,0,4,1 -4676,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2508503457066,22.9194236877797,0,12,1 -4678,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.86096190451644,24.0994966625266,1,11,1 -4681,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.80807480332442,25.8276198154751,1,8,1 -4682,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2087054785807,22.2530111461842,0,6,1 -4683,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1333721226547,23.0209689467925,1,6,1 -4689,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.51122376159765,26.1572001015947,1,10,1 -4691,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2657265078742,22.8801994257106,0,5,1 -4698,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1426130633336,25.5503804009247,1,7,1 -4699,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.50282854726538,22.526011257093,0,7,1 -4706,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1493580464739,23.8335241306744,0,11,1 -4708,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2397252465598,17.9987614096955,0,13,1 -4713,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.343208597973,19.7181536102075,0,10,1 -4714,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.4158899942413,24.8949012977973,0,19,1 -4721,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.69102229643613,21.8163693840941,0,8,1 -4722,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.53794420138001,19.4594627833681,0,14,1 -4726,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.85754818608984,19.1121331306392,0,5,1 -4727,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.68371854838915,24.3310934937731,1,9,1 -4731,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.93077057925984,19.8900616136807,0,9,1 -4734,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.66909759026021,17.4516763915078,0,12,1 -4735,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0459093644749,21.3547111039368,0,11,1 -4744,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.9533717520535,27.75984691306,0,21,1 -4745,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.18108381005,20.7279440434761,0,7,1 -4753,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.6143904987257,19.0690463009044,0,10,1 -4755,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.50882591935806,24.9525938954183,1,8,1 -4759,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4472840791568,19.4893757252101,0,10,1 -4760,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.88419708260335,24.015946418788,1,14,1 -4761,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.88109556911513,24.4673742169916,1,11,1 -4762,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1786949336529,25.3097771476855,0,15,1 -4766,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.3379712663591,19.6710136460907,0,8,1 -4767,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3219541744329,24.3940069063101,0,8,1 -4770,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0228643382434,27.0517090850782,1,9,1 -4771,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.182684362866,18.7010350602804,0,8,1 -4777,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2105359719135,23.5609809371016,0,7,1 -4780,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0909007196315,25.4262656622809,0,14,1 -4783,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.69136983016506,25.3199270182107,1,8,1 -4787,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0807424283121,21.8102525099607,1,5,1 -4789,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0925633490551,18.989224924046,0,7,1 -4792,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.94738110504113,19.8322581903839,0,8,1 -4794,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.76951345335692,26.482820437086,1,7,1 -4797,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2357700110879,24.3250888006857,1,11,1 -4802,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.6015758139547,20.0368773455719,0,13,1 -4803,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0879514480475,23.4626539424503,0,20,1 -4807,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4418911831453,21.5681449815088,0,10,1 -4808,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.60761207318865,20.394596219582,0,6,1 -4814,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.63686655182391,17.8861431112376,0,9,1 -4817,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.78917152900249,23.2737591326555,0,6,1 -4822,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4053910423536,22.1353382135892,0,10,1 -4823,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2648615692742,21.9844768490576,0,6,1 -4828,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4372087018564,19.8635717172134,0,9,1 -4831,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.491272444604,19.4495497961674,0,4,1 -4836,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3353205190506,25.3013000434396,0,12,1 -4838,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3928020298481,23.9128349469501,1,12,1 -4840,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.89253562432714,23.7633681516046,1,12,1 -4848,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0206797181163,21.0044321921411,0,11,1 -4851,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.96774567337707,22.2817537736642,0,10,1 -4867,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.1169662522152,18.9045912081683,0,10,1 -4869,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3913519068155,26.4223932071407,1,16,1 -4870,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.3249684427865,23.9725957691029,0,11,1 -4876,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.62556173489429,26.7102020529481,1,11,1 -4886,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.83067740383558,25.2978507404722,1,9,1 -4889,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.4117274289019,24.4972154498972,1,7,1 -4890,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.8131062365137,26.165295359097,1,13,1 -4892,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.86143853096291,21.6338898850647,0,8,1 -4896,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2746506361291,25.7306574537513,0,9,1 -4897,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1062728872057,24.8843161529768,1,12,1 -4915,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.334457798861,26.8887637527348,0,16,1 -4917,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.7232852219604,24.4601499556247,1,21,1 -4922,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2962450447958,20.5131129328371,0,8,1 -4925,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2549829795025,21.7968590010386,0,4,1 -4926,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.1745671406388,26.5601109687773,1,12,1 -4927,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.113187807845,25.6262615933651,1,12,1 -4929,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.72278271662071,20.6992517548627,0,4,1 -4930,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.76419660495594,26.3982582904787,0,11,1 -4937,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.50643308227882,24.747008774895,1,6,1 -4940,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0904263888951,19.0467348788891,0,5,1 -4949,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2865733020008,25.3111121218528,0,12,1 -4951,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.64855288737454,23.8454528630577,0,9,1 -4952,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.80916524794884,21.5459446259115,0,4,1 -4957,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.87121176091023,20.1733425773173,0,9,1 -4958,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.5218830765225,19.8790628428395,0,5,1 -4961,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.80950078368187,25.1546292055921,1,17,1 -4962,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.58595905662514,23.6208702768276,1,10,1 -4963,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3049563753884,25.1875505368771,1,6,1 -4968,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0574175349902,24.8112495949433,1,15,1 -4969,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.70331479120068,21.6458234814452,0,12,1 -4970,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.1907406062819,22.2035447804217,0,7,1 -4975,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.97196994442493,26.8475419103238,0,19,1 -4976,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.89284052234143,26.4060080387247,1,12,1 -4981,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.72728151129559,19.579733624991,0,10,1 -4985,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,9.8445527292788,25.813705945215,1,14,1 -4988,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0462986999191,27.577693321788,1,9,1 -4989,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2993642331567,25.0009704452807,1,13,1 -4993,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0228550962638,23.7273006368071,1,16,1 -4994,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.93116836971603,19.9295616134124,0,10,1 -5000,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.59304991480894,19.2268057894378,0,6,1 -5006,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.425630122656,21.8158552179912,0,6,1 -5010,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.0978431003168,21.7307543968534,0,5,1 -5012,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.88737611752003,20.4109942159798,0,8,1 -5014,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.2161127836443,21.517096682295,0,12,1 -5016,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.1351468763314,18.9749534362927,0,9,1 -5018,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.2798324106261,25.0810337395707,0,9,1 -5020,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.90188175626099,18.6890334684951,0,8,1 -5021,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.3394701345824,26.2375341884414,0,11,1 -5022,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.4101244059857,19.1390346320283,0,6,1 -5027,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.0624189355876,25.7242820113054,1,17,1 -5029,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,10.3654582782183,17.0145652159296,0,4,1 -5030,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,1,10.4047355945222,24.0050256316049,0,11,1 -5034,3,0,0.628956858108042,3,10,-0.363833850295175,-0.519348212337526,516,0,9.64629574469291,19.0444550585107,0,8,1 -5038,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3979953331873,17.4675368079323,0,12,1 -5046,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.288414321607,17.6022564449365,1,4,1 -5052,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.90712701668963,18.9196830279048,0,9,1 -5055,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3271982059814,23.4136403046554,0,3,1 -5056,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1468272991478,23.2505182006627,1,11,1 -5061,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.72000607475638,19.5648250004422,0,3,1 -5062,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2198009248823,20.0579013635493,0,8,1 -5066,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3404859863222,19.6219132740393,0,6,1 -5067,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.9956768208649,16.4840335881909,0,11,1 -5070,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3335100922268,21.6521828332857,0,6,1 -5072,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.77521283761598,17.1004241604307,0,5,1 -5074,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.83434936660342,22.5377292465545,0,12,1 -5079,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2814468629658,21.9403216480129,0,7,1 -5082,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2601387768518,15.8617938035888,0,6,1 -5083,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4353438382968,17.4066167290451,0,2,1 -5084,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3931825626642,18.7048586498549,0,5,1 -5089,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.67553776176646,19.7875047777217,0,9,1 -5091,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.94094989122823,23.6709568624341,0,9,1 -5095,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1848224524874,23.6104346520106,0,10,1 -5096,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.91694341832772,22.788193390972,0,2,1 -5099,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2656468641944,24.0821334826864,0,9,1 -5102,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.63606414408423,16.5763105500963,0,6,1 -5103,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.7104096475523,17.0451129981988,0,8,1 -5105,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4254987814929,22.8743841058313,0,9,1 -5107,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.89813657198101,24.3296126174908,0,9,1 -5110,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.232104241848,14.9379036936132,0,6,1 -5111,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.95211153314449,18.1577709244542,0,5,1 -5112,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3373017974664,18.9705716794823,0,3,1 -5120,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3516271396074,26.2593648929691,0,7,1 -5126,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.79846750292927,17.0360676500953,0,5,1 -5127,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.56915165809914,17.9882978639812,0,4,1 -5133,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.5827948669903,23.6094610602832,0,7,1 -5135,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2697161117103,19.4211930973225,0,7,1 -5136,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.86315903044306,22.6622130371292,0,9,1 -5137,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0829559417907,22.286699458654,1,8,1 -5139,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.68945587030612,19.5957803033698,0,7,1 -5152,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.55531289591454,23.2537331143959,0,6,1 -5157,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.57393416762352,17.1882266092434,0,8,1 -5161,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.66817113780417,16.9222452016085,0,8,1 -5170,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.80603728815913,23.0314062246187,0,10,1 -5171,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.89011426875368,18.1022368356731,0,0,1 -5175,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.262184396619,21.8063786485344,0,8,1 -5176,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.55020847823471,24.3113419016219,0,10,1 -5185,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.76771856239066,24.3557628832121,0,7,1 -5187,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.98441698448732,21.5616581545587,0,2,1 -5190,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.323163093999,23.6281825278028,0,8,1 -5194,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.54028580710292,18.4120689846948,0,10,1 -5198,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.93224889761768,23.1494834410134,0,9,1 -5202,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.70053939125501,22.3701188501079,0,12,1 -5204,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.58286118181422,18.3047023766352,0,4,1 -5208,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0758438389748,22.0892296862809,0,7,1 -5210,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4228081116453,22.0354336075281,0,13,1 -5211,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1917230440304,24.5205425937196,0,6,1 -5218,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1467619070318,23.2191269400522,0,11,1 -5220,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1507664828096,20.9699221652539,0,6,1 -5221,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.58508891426027,17.7387665850813,0,5,1 -5224,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.82177020818926,22.2507479680172,0,14,1 -5226,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.82326554018073,21.7839416162819,0,11,1 -5228,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.09017341258,24.9740934767341,0,10,1 -5232,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1254186383449,24.3146891145652,0,12,1 -5233,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.92122541344725,18.551707390723,0,10,1 -5238,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0185909336433,17.0479044464049,0,6,1 -5248,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.72678122040816,26.3230973449624,0,12,1 -5254,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.71878506103531,19.5143328992452,0,5,1 -5256,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0575852678157,21.981513661208,0,9,1 -5262,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.76911696605384,17.5803028230628,0,6,1 -5263,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1020121797919,23.9671711048901,0,10,1 -5265,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4331284021027,15.6162113488426,0,6,1 -5267,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.83260006341152,19.090418419025,0,4,1 -5268,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.53733732248656,18.531527539973,0,7,1 -5270,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.9247259425465,23.7777397214938,0,9,1 -5271,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1510311516467,17.2565860307442,0,6,1 -5276,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.86850306158885,18.423671540434,0,6,1 -5285,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.63377632806078,23.921555954012,0,12,1 -5286,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.60648109973408,16.8585624784544,0,6,1 -5287,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4697624049149,15.3653446027962,0,11,1 -5293,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1902458099648,23.4709762061912,0,17,1 -5294,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1316787705291,15.0621680531321,0,6,1 -5297,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.99850444518961,22.4408120440394,1,11,1 -5301,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3161751320586,24.2296100115987,1,8,1 -5302,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.72438994795084,21.9094802185885,0,7,1 -5306,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3211475866847,20.2590984183846,0,9,1 -5307,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.83353687380441,19.6150744473354,0,10,1 -5313,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.92768999189138,22.1731723133009,1,12,1 -5314,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.98907915712334,23.6336220069902,0,12,1 -5315,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.6644167881459,17.6165620706126,0,10,1 -5316,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4361513352487,17.5118643898475,0,6,1 -5317,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0643570509274,17.0171505677926,0,4,1 -5323,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.61320981569588,23.0288736760103,0,7,1 -5325,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.89675058424473,17.1460937768041,0,6,1 -5331,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0399618446827,21.9664519394695,0,12,1 -5333,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.89715811982751,24.5344192612902,0,4,1 -5338,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.69298229878768,17.8874487236809,0,4,1 -5339,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0789134593215,22.9206106751438,0,12,1 -5342,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2025746044237,18.1958723729202,0,7,1 -5343,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.57670968212187,24.7511252248577,0,9,1 -5346,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4659784799442,19.2804056547225,0,8,1 -5350,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2421748277266,18.2968022414778,0,4,1 -5351,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.84615737013519,22.5170157865657,0,9,1 -5359,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3307561303955,18.8310371389554,0,9,1 -5363,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0390288857743,16.7590916087168,0,4,1 -5364,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.94533959194086,26.1467917346873,0,8,1 -5365,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.8024925654754,19.5868437449934,0,7,1 -5367,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.64090787596069,21.9804631281338,0,9,1 -5368,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.67425351403654,19.5108667926311,0,11,1 -5372,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3652366234455,23.8300712076093,0,14,1 -5375,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.5884917548392,23.5129304515039,0,10,1 -5376,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1176273101009,17.5149063057595,0,7,1 -5383,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.96294345054775,18.2287029103309,0,6,1 -5386,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.95205919910222,22.8381071942899,0,10,1 -5390,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.90332167805173,19.6041365619851,0,7,1 -5395,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1545886206441,17.4545847693634,0,8,1 -5396,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.152011038037,23.2040257942908,0,12,1 -5399,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.74275622726418,25.4851089738733,0,10,1 -5401,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0432521263137,18.0137089766405,0,7,1 -5403,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.91630733339116,25.5208536858988,0,5,1 -5404,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.82658842112869,20.2813868252771,0,5,1 -5408,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3142196931876,25.3748836294857,0,10,1 -5409,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.98215999337845,21.8210215608103,1,10,1 -5419,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.127571830526,22.3449604923779,0,12,1 -5421,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.2042444811668,23.4952904546356,0,11,1 -5423,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3731346451677,16.9059249732364,0,8,1 -5425,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4586043080781,22.6951814952619,0,13,1 -5426,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.81494477018714,18.4635961604172,0,9,1 -5429,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1784134143963,18.5628716983071,0,7,1 -5438,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.98380205174908,23.4501578016748,0,6,1 -5439,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.60440231557004,24.2845870402829,0,3,1 -5440,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1331581631675,19.1924390116201,0,3,1 -5442,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.95628140657209,17.5137047638809,0,4,1 -5450,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.87204377003945,16.1465838781879,0,6,1 -5451,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.76477888110094,18.7137589753161,0,8,1 -5455,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0465990568046,19.8885820768701,0,5,1 -5456,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.0549219553359,21.7638104964121,0,11,1 -5457,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.8926310245879,22.544634062921,0,14,1 -5458,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.76529467385262,17.3271853597871,0,5,1 -5463,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.56427716789767,15.958444982764,0,3,1 -5470,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0008545392193,19.3225564876558,0,8,1 -5471,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3222831126768,19.0999895660842,0,7,1 -5472,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.85067427763715,23.0169839364006,0,8,1 -5473,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.1014426480979,20.389254709279,0,6,1 -5476,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.80627742153592,19.6735225506488,0,8,1 -5481,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.80597969167866,23.8573447462245,0,6,1 -5483,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2780535318889,18.3421095354404,0,2,1 -5491,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.2052498378325,17.1069162569193,0,12,1 -5495,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3497201364953,21.3911606020293,0,5,1 -5498,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.93206521566026,23.0069699944143,0,14,1 -5508,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.64701993204653,18.1412795763333,0,5,1 -5509,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3236379430164,22.527993926415,0,8,1 -5512,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1109666903503,23.295079585071,0,12,1 -5515,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.65435467730276,18.0242445034458,0,6,1 -5519,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.80736988666467,23.736780485868,0,7,1 -5520,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.99582145432942,22.7571849994249,0,10,1 -5521,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.57015883480199,22.2020868667322,0,15,1 -5528,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.51621466409415,19.0218969605803,0,6,1 -5529,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.85094988439232,19.2657781874984,0,9,1 -5531,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4293395038694,22.3952067426985,0,9,1 -5532,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.74456028663553,25.0667273117051,0,10,1 -5533,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.97081188368611,22.5820343665756,0,5,1 -5534,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.51708711404353,19.6472572774499,0,7,1 -5540,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.98011020268314,22.8043030090048,0,9,1 -5542,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3927978854626,23.4358636393981,0,12,1 -5544,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3751145307906,18.9265867783108,0,7,1 -5545,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.4989474050235,19.0894796031024,0,11,1 -5546,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.0151815458667,14.830958077522,0,1,1 -5549,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,9.67356936447322,17.0378251491703,0,6,1 -5550,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.4723505948205,22.9542881728951,0,7,1 -5553,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.1649874397554,21.7678321926106,0,9,1 -5554,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,0,10.3322023658548,18.9715968289414,0,5,1 -5557,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,9.6521116795484,23.4757628929036,0,13,1 -5561,3,0,0.628956858108042,3,11,-2.49348914775805,0.261955576998974,531,1,10.3491322398186,23.1553422638405,0,6,1 -5567,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2131919169333,26.3585918216214,1,19,1 -5569,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4053276674822,28.0855688824489,1,13,1 -5570,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2571505659726,23.0122412641857,1,7,1 -5574,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2627380373888,27.2688694360481,1,21,1 -5575,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.450502644293,26.773804233806,1,21,1 -5577,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.477120649768,20.7779671323575,0,7,1 -5580,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4885026155971,21.7674332892758,0,15,1 -5585,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.72549690306187,20.9994287623389,0,8,1 -5587,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.66497225384228,21.4765157703668,0,10,1 -5589,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.1339754115324,20.2093207446644,0,5,1 -5593,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.88231379701756,21.7452997138297,0,8,1 -5601,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2448181288783,26.2477308285248,1,14,1 -5602,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2761335999239,24.4277442255682,0,11,1 -5605,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0661317177583,26.5892576021617,1,16,1 -5606,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4326156747993,29.1071848711794,1,16,1 -5608,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.5285466844216,26.4680167761428,1,10,1 -5609,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.66278201108798,28.2523110791352,1,13,1 -5615,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.1655787781347,27.8686338536205,1,14,1 -5616,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.292276032269,26.0749584390467,1,11,1 -5618,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.70261162170209,21.6901150029436,0,11,1 -5630,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3134340280667,25.678846015323,1,10,1 -5631,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.54170118574984,20.7312516886765,0,11,1 -5633,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.70224061701447,27.1553198464734,1,10,1 -5638,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.61216342379339,20.3521821031608,0,9,1 -5639,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2644388973713,30.9553111332159,1,15,1 -5644,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2525542734656,20.6826061010133,0,11,1 -5646,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.55223332135938,22.4975495382818,0,11,1 -5649,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.54374556057155,18.8620888684952,0,12,1 -5653,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.71447444800287,29.3558109569226,1,16,1 -5655,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.59731247299351,27.3180434358128,0,14,1 -5657,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0582014892716,26.5453971052749,1,18,1 -5659,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.1522269963752,24.8433459993979,0,12,1 -5662,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.1920055036899,27.1160938613053,1,19,1 -5664,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4180229264311,24.3791477773975,1,6,1 -5665,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.88304250175133,25.4209935064085,1,16,1 -5667,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0115830220748,24.465140494905,0,3,1 -5668,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.358677734388,27.8441043060692,1,16,1 -5669,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.82366302190349,21.3996898189903,0,2,1 -5670,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3239600940142,25.8844844852522,1,9,1 -5675,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4172499082051,19.1118700885669,0,12,1 -5677,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4546905141324,26.368260595513,1,16,1 -5678,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.62266478594393,23.4111172962812,0,1,1 -5680,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.82784632313997,21.708256182948,0,8,1 -5681,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.335515368497,19.9144036911541,0,9,1 -5683,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2010130342096,20.6716673064537,0,11,1 -5688,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0157704339363,25.6097422521038,1,15,1 -5696,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.73842245247215,22.1680930233668,0,8,1 -5697,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.9187162516173,21.1052575690521,0,5,1 -5700,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0946492808871,21.4456719894483,0,13,1 -5701,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.89457391714677,22.3031464959687,0,10,1 -5704,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.51321186218411,24.8083441978798,1,13,1 -5705,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.85776387271471,25.5459068007385,1,12,1 -5711,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.80998553708196,21.6900582856453,0,7,1 -5717,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2624076006468,22.8884051432616,0,18,1 -5722,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.58950298815034,26.6571811615661,0,16,1 -5726,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.82459128694609,23.0765562076527,1,7,1 -5729,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.8968321364373,27.6311704564495,1,5,1 -5732,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.44718211703,26.818287567764,0,11,1 -5733,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.61975286970846,20.575692750102,0,7,1 -5737,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.81746553559788,21.4077792876134,0,13,1 -5738,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.85357666318305,23.2155102925929,0,6,1 -5739,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.68830422731116,25.8213646154398,1,16,1 -5740,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4409912102856,21.0150039941634,0,6,1 -5747,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3448724374175,24.2104100916332,0,13,1 -5748,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.73447001073509,21.9596250734684,0,10,1 -5749,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.5815293546766,22.9353339117785,0,1,1 -5750,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.90746553032659,22.0364278230508,0,6,1 -5751,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4075801006984,20.6422399325536,0,6,1 -5752,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0698304404505,26.1542152883353,1,15,1 -5753,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.313269986771,26.7783648861158,1,13,1 -5759,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0629014223814,23.9096028224604,0,9,1 -5763,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.1547691917513,21.3550689241913,0,6,1 -5766,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.78482456738129,25.6855306776139,1,16,1 -5772,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3201750025619,20.248835530846,0,17,1 -5774,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.88668508012779,20.0124378140031,0,8,1 -5780,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.97112645744346,26.43922047003,1,13,1 -5781,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2323635828216,23.7836875712352,1,8,1 -5784,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.71758936182596,23.991275795181,0,12,1 -5786,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.81280160695314,23.4440546857235,0,8,1 -5789,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.1761520577129,24.7037686732945,0,7,1 -5793,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2530532537494,21.0173737496987,0,7,1 -5794,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.1289023072459,21.2215355483656,0,6,1 -5796,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2179782895837,21.3389969658118,0,12,1 -5801,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.79422768834047,22.5385495264504,0,7,1 -5802,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4628521818668,21.3742957057293,0,8,1 -5804,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.75242650113069,27.9442293237491,1,14,1 -5806,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3240334705915,18.6113365485527,0,4,1 -5807,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.1399713126011,22.2311882285056,0,10,1 -5811,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2257851334289,21.4926406760397,0,10,1 -5817,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2870913862716,27.9817139309952,1,19,1 -5821,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4646285166964,22.8353075694846,0,5,1 -5822,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2484170047101,27.378168607866,1,7,1 -5825,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.84556296863593,18.489592024069,1,10,1 -5826,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0803279145621,26.179143355039,1,19,1 -5827,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.4640631682705,19.9132593037849,0,4,1 -5828,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.78994376468472,29.0533778535869,1,15,1 -5830,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.51705492846668,22.3096085350714,0,4,1 -5831,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2219467097893,20.3041985334351,0,6,1 -5833,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.60137114138342,28.8181598882541,1,14,1 -5835,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4686223014724,25.1124855634353,1,17,1 -5838,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.1302767288871,25.3525678563732,1,14,1 -5842,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.56988232536241,21.6352150585485,0,7,1 -5847,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.66348005388863,26.7781239280994,1,12,1 -5848,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.55998247978278,25.4464864819216,0,11,1 -5850,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.82441126601771,19.5427168868649,0,12,1 -5851,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2582491321955,26.1440736526152,1,18,1 -5853,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.75934636802413,21.3634428433297,0,6,1 -5854,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2952407049015,21.8187264483832,0,7,1 -5855,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.7169772956986,23.6444724291153,0,12,1 -5858,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.53443863452412,28.4455016794611,1,15,1 -5867,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.84521043230779,20.8123536786989,0,6,1 -5871,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.327710629208,22.7685443541095,0,8,1 -5873,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.97683720034547,24.4714999995369,1,15,1 -5875,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.74523404543288,26.6097593665963,1,11,1 -5877,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.99036351428367,25.921987080169,1,21,1 -5879,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.82433365052566,25.4707627970398,1,12,1 -5882,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2985141898971,26.1178557695213,0,12,1 -5884,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.86852278071456,21.82584816264,0,6,1 -5885,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.53222697926685,27.3237011788358,1,18,1 -5886,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.105746608926,23.363566108153,0,10,1 -5887,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0722068427131,28.061037091617,1,16,1 -5888,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.9853995074518,26.3307484501201,1,16,1 -5889,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.1083203318994,21.117421000877,0,5,1 -5890,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.1723778867163,24.0556077507843,1,23,1 -5895,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.311674291268,25.8954859421329,1,15,1 -5897,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.91535750217736,22.2889190452387,0,8,1 -5900,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0680499025621,20.5420567466749,0,17,1 -5901,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.04596670717,23.1772381476176,0,4,1 -5903,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3901833172422,20.847750336965,0,17,1 -5912,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4948347210884,27.4209145630498,1,15,1 -5914,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2229615175165,22.3979216427015,0,7,1 -5915,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.344323976431,22.1905181916542,0,6,1 -5918,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.1013806697447,26.818591203629,1,16,1 -5919,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.70184919470921,26.3559966042747,1,19,1 -5920,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2921863400843,26.2094821417651,0,13,1 -5925,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.75425523915328,26.0150717687123,1,12,1 -5927,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.74978449917398,23.4472183151922,0,8,1 -5928,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4886364436243,24.5838484926659,1,17,1 -5935,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.7404830174055,28.073934091634,1,15,1 -5937,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2215945140924,26.6812691244253,1,11,1 -5942,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0977708743885,25.0412264018759,1,14,1 -5944,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.56830258737318,21.054370251229,0,13,1 -5952,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.61204263940454,23.6609005532874,0,10,1 -5953,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3033621767536,26.9454342504394,1,26,1 -5958,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.6404506501276,22.3846290384371,1,11,1 -5963,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.50745667424053,21.8368211059306,0,9,1 -5967,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3645607987419,27.2029549243798,1,8,1 -5968,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.50876080011949,22.2870239999602,0,5,1 -5969,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3909537489526,26.8857988059409,1,17,1 -5971,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3189694031607,22.5851724746671,0,19,1 -5978,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.70962346834131,25.4273491599565,0,8,1 -5979,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2481364174746,23.2517163796397,0,7,1 -5981,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3891216714401,22.5142868523054,0,8,1 -5985,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.97065514046699,28.4369643451341,1,13,1 -5989,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.1306449426338,19.020644261504,0,9,1 -5990,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.66545891505666,20.7463972711401,0,5,1 -5991,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3387343448121,29.422052665275,1,7,1 -5992,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.8396292864345,26.2756218969112,1,18,1 -5998,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3463636080269,29.1127086799901,1,15,1 -5999,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.063571210485,21.6461099385219,0,10,1 -6000,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.8695849715732,26.8256972529922,1,13,1 -6001,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.60490609402768,24.9553186144882,0,13,1 -6003,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.56661594146863,27.4053368181948,1,12,1 -6004,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.53067995863967,25.4463972653957,1,9,1 -6007,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2048505924176,21.2349394398417,0,3,1 -6010,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.93631094228476,23.7498666101673,1,22,1 -6011,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0074745898601,24.7297928112373,1,18,1 -6012,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2045411542058,28.5282996845714,1,11,1 -6015,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4714310392737,25.9462305321348,0,11,1 -6016,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.0308281527832,26.6459483858656,1,17,1 -6018,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.377727995161,20.5448331685223,0,12,1 -6019,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.3833755531814,23.1180184017417,0,8,1 -6020,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.95362888579257,21.3976533954549,0,12,1 -6025,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2755303645972,26.0540949094084,1,16,1 -6031,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.78506718133576,25.3986396011771,1,10,1 -6034,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.72612694348209,24.2023276851794,1,16,1 -6035,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.72558729490265,26.8227740299471,1,19,1 -6036,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.2561395622324,26.9451668225268,1,18,1 -6038,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3163971276954,26.2655643404595,1,6,1 -6040,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.2877569200937,21.803738486946,0,4,1 -6043,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.69565585278906,21.6792570373844,0,9,1 -6046,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.1806263988838,29.2561640021602,1,10,1 -6047,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.72055811155587,21.6746860283978,0,8,1 -6048,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.4546442313585,27.4424775067546,0,10,1 -6056,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.66906025493518,22.0817667164826,0,8,1 -6059,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.66391087486409,19.7432265870347,0,6,1 -6060,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.86595087102614,20.2443785935489,0,5,1 -6061,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.0972258292604,21.5215635909732,0,14,1 -6063,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.97132266755216,20.120358542218,0,5,1 -6064,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,9.57173185213469,22.6651214244952,0,7,1 -6065,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.7841744965408,26.8744960333963,0,16,1 -6066,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.146620409796,26.940089724024,1,16,1 -6070,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.73442634171806,27.3583987351695,1,13,1 -6075,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,0,10.317965162918,23.5118307263888,0,10,1 -6080,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.73350570723414,24.5065265082322,1,17,1 -6082,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,9.98273039585911,28.6512674672161,1,11,1 -6088,4,0,1.09615018600291,3,12,0.65067591921437,0.822823006150766,524,1,10.3448782898486,26.9258947195571,1,19,1 -6093,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1511695061345,25.558197240214,0,13,1 -6097,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.70099240471609,27.8125232059827,1,11,1 -6107,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.0169723231811,19.2267541158815,0,9,1 -6109,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.6050914642401,20.4787056848329,0,6,1 -6114,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3294836401474,27.3251644317103,0,16,1 -6115,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1908364298288,24.9915640875551,1,14,1 -6118,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0122423721477,26.2748469282038,0,8,1 -6119,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.4829416382127,24.6565261963736,0,13,1 -6125,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3322878766339,25.2512119169854,1,20,1 -6128,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.95135383866727,18.7379511739824,0,8,1 -6131,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2529592569917,24.8124702937421,0,15,1 -6142,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.74749431107193,17.8727992981177,0,12,1 -6148,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.73038349905983,21.8800270648952,1,9,1 -6152,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3584741698578,26.5403349813912,1,11,1 -6156,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.51093213702552,17.9510612432379,0,4,1 -6162,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.73173128534108,24.1634835364407,0,16,1 -6163,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4708642424084,21.4580550518314,0,12,1 -6167,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2921774701681,28.9270460581215,0,15,1 -6168,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.98134252475575,17.6066292785545,1,7,1 -6169,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.99891849025153,22.6730036516293,0,3,1 -6175,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.99139179498889,23.6090921098887,1,12,1 -6176,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.8456374257803,23.4585191168145,1,9,1 -6179,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.78010308090597,26.0421429790515,1,11,1 -6180,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.4841941327322,25.7001617432624,1,9,1 -6181,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.0883638488594,20.1988155509454,0,9,1 -6183,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2040307158604,26.7874186602915,0,15,1 -6184,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.96714697638527,19.9962861931544,0,3,1 -6188,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.72646813699976,18.5733110396463,0,5,1 -6191,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.88694671425037,22.2464527731969,0,5,1 -6194,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.88356167799793,17.7178997785474,0,7,1 -6197,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.72492073220201,19.4425234797881,0,12,1 -6199,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.91326635563746,25.6159835662545,1,8,1 -6203,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.5735881307628,25.9584542172033,0,16,1 -6212,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3708966602571,24.5987989965662,1,13,1 -6217,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4273056876846,21.1812439906806,0,6,1 -6222,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.63679641508497,21.0808331699622,0,8,1 -6224,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.98233823571354,24.5641901791116,1,14,1 -6225,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.67949273227714,24.8321269872528,0,9,1 -6230,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.86279237433337,19.2307307273401,0,10,1 -6232,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.5410583417397,18.753201266363,0,10,1 -6233,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.84978381940164,20.6300840525733,0,4,1 -6234,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.77605790481903,20.4402710104969,0,9,1 -6241,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1509137046523,23.5510470444148,1,13,1 -6243,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2329435783904,18.3266605607656,0,9,1 -6244,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.74047441524453,25.9682711035679,1,10,1 -6245,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4904355409089,21.0021249281491,0,13,1 -6247,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2281974283978,19.7311104704509,0,9,1 -6248,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.7740590153262,19.6436796165086,0,9,1 -6251,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.78309555724263,19.1861683679675,0,6,1 -6253,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3276608493179,26.3868265682877,1,14,1 -6257,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1246232178528,23.2820803429142,1,8,1 -6260,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2455873419531,23.5088278153163,0,8,1 -6261,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.3874232340604,21.2487766599335,0,5,1 -6263,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.62751347268932,22.8119292192016,0,10,1 -6264,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.93159572943114,23.3076154986453,1,16,1 -6265,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.52401224849746,24.9344830599713,1,7,1 -6266,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.1113639713731,21.8981079706594,0,11,1 -6267,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.95608978206292,19.5466324740621,0,10,1 -6268,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.6177830430679,27.3880014127066,0,24,1 -6271,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3974446526263,26.290509529712,0,9,1 -6272,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.4033175432123,25.4953473315531,0,13,1 -6273,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.64010272128507,22.7420709402916,0,16,1 -6279,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2440344670322,19.5273209661761,0,9,1 -6285,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1983424501959,22.7317114719899,0,11,1 -6288,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.4003658588044,24.3524649492439,1,8,1 -6302,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.0657944788691,22.3462164594294,0,6,1 -6303,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.64589985925704,19.5764579687413,0,3,1 -6304,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.95543147297576,23.8312017743102,0,16,1 -6308,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.86826625815593,20.2861226916351,0,5,1 -6311,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.0173707760405,21.1336959145483,0,5,1 -6314,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.78550386126153,19.0007223562775,0,3,1 -6321,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2117018159479,25.3694481128525,1,14,1 -6324,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4986509259325,20.0921312535492,0,11,1 -6325,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.73827867605723,23.0335779142076,0,9,1 -6327,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3294899791945,24.84528322847,1,14,1 -6328,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.1329134223051,17.1812494235158,0,12,1 -6332,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3103304251563,24.1005960192937,0,7,1 -6339,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.55671518645249,22.9342180255168,0,6,1 -6340,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.86913026636466,20.5379973694877,0,7,1 -6343,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4019101264421,19.4014120471634,0,6,1 -6346,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.70314118359238,18.8285789777396,0,9,1 -6347,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2670142429415,18.448614564695,0,11,1 -6349,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0373984428588,26.5757497423275,1,15,1 -6352,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.66371487127617,25.3919871251727,1,14,1 -6353,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.0468173145782,21.7433918565881,0,4,1 -6354,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.66771156876348,17.5967682303153,0,7,1 -6355,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0989620005712,23.7581933783036,1,13,1 -6359,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2160876493435,23.5333081814999,1,12,1 -6361,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0439913191367,26.9181083031289,0,7,1 -6362,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.70757769583724,20.0219724243555,0,6,1 -6367,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.90820017177612,19.4675674303329,0,7,1 -6372,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0424668779597,23.3175135435401,0,15,1 -6373,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.82928625447676,22.8227432165119,0,13,1 -6375,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.1889101038687,17.7294363669531,0,7,1 -6381,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1643156367354,24.7035831959072,1,13,1 -6382,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2510978535283,19.2446692102605,0,13,1 -6385,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.0833357619122,19.8682729499308,0,7,1 -6386,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4477688611951,19.3071296532317,0,5,1 -6388,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.69704325823113,20.1424640746465,0,8,1 -6391,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.6220660158433,20.5029794143332,0,8,1 -6392,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.68466452555731,21.380155990175,0,13,1 -6394,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.98822484980337,21.7247309716285,0,5,1 -6395,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2244303061161,22.4334655269151,1,7,1 -6396,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2398447152227,19.4390438238628,0,9,1 -6397,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.3104325898457,21.0471239915375,0,6,1 -6398,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.98403131053783,20.8089946500392,0,6,1 -6400,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.61336928023957,29.0360891437272,1,9,1 -6401,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2330490422901,21.5983297328992,0,7,1 -6404,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4506803730037,21.3767083664758,0,5,1 -6409,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.90872381650843,26.2267890365675,1,15,1 -6414,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.99141070712358,18.4966504413866,0,3,1 -6420,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2337304495741,26.8857049249328,0,13,1 -6421,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.5351379297208,26.6234947605394,0,10,1 -6426,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2632892173715,26.9548228959021,0,16,1 -6436,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.62042118562385,20.1242541292384,0,7,1 -6437,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.74060563161038,20.0170045286721,0,9,1 -6438,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.70261862548068,26.7626792445313,0,15,1 -6443,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3566665260587,26.4587687422169,0,7,1 -6446,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.86491576069966,20.9561680446625,0,9,1 -6447,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.81542757060379,26.7145546163208,1,11,1 -6449,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.78197149792686,24.0906527415081,0,7,1 -6453,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4135687684175,21.5467212690268,0,7,1 -6454,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.91451614676043,20.4370842970601,0,9,1 -6455,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.69093488017097,25.7491642621871,0,13,1 -6456,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0018299962394,28.9788817233371,0,11,1 -6458,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.63879759307019,19.6940109838037,0,13,1 -6462,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.90350638795644,22.9491707283985,1,15,1 -6465,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.96863518166356,25.5222758627419,0,17,1 -6467,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.81690552993678,18.6833220307617,0,10,1 -6471,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2981228013523,20.6978432252733,0,9,1 -6474,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.90701642003842,19.8449633157404,0,11,1 -6477,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.94181971857324,24.0992522243329,0,11,1 -6479,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.6621590135619,18.4364039134979,0,6,1 -6483,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2845668664668,20.763819795737,0,10,1 -6484,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.52536005736329,25.6331779852024,0,11,1 -6485,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.6315171669703,25.0044018427747,1,9,1 -6488,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.1384551054798,19.2413718203424,0,13,1 -6490,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.157519480912,19.9622475385123,0,3,1 -6491,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.86242144624703,18.2471727926115,0,9,1 -6497,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1564273096155,23.1383314703183,0,13,1 -6498,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.73803062969819,22.1455513980235,0,6,1 -6501,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.68138723727316,23.3304019710451,0,9,1 -6504,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.93263599998318,18.907371924201,0,8,1 -6509,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1127710172441,25.1675057197453,1,11,1 -6510,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4121814016253,20.3516190255443,0,7,1 -6513,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.2406484875828,25.6562871412006,1,13,1 -6515,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.58361286134459,24.0380143010114,1,14,1 -6517,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.8244085481856,19.9599616844145,0,6,1 -6518,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.8395985190291,25.1794258688677,0,12,1 -6522,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2137897943612,22.0001437423337,0,6,1 -6524,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.0123336799443,25.6550414464491,1,11,1 -6527,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.97068242612295,23.8231161555614,0,8,1 -6529,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.54791760980152,24.8860050629471,1,12,1 -6533,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.79973283759318,20.0894614828785,0,8,1 -6534,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.8598380680196,25.0019528631413,1,10,1 -6535,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.1304953584913,24.8146553405841,0,15,1 -6537,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.4531017490663,17.0715379496996,0,12,1 -6550,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.2510073306039,21.3989148139805,0,5,1 -6551,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.66456337762065,25.6245351828561,0,7,1 -6554,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,9.57472043205053,25.3984875858812,0,22,1 -6558,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.3480272009037,23.9262301728571,1,11,1 -6566,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.57941427268088,20.1180031594887,0,6,1 -6569,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,10.1439053227659,16.4625903337995,0,11,1 -6570,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,1,10.4216979560442,25.7218043413517,1,14,1 -6578,4,0,1.09615018600291,3,13,-0.905089433432087,1.97952680491039,489,0,9.72067992365919,18.3052582429322,0,10,1 -6580,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.010582719231,28.2383210127015,1,14,1 -6582,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4884244040586,22.022268525431,0,12,1 -6584,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.58768206252716,27.9038929300497,1,17,1 -6586,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3937811513897,25.1441858921718,1,17,1 -6587,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3492290421855,26.4738024921678,1,14,1 -6589,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1526288166642,27.8400115448534,1,12,1 -6591,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.93291364004835,27.8080493555137,1,14,1 -6592,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1958425389603,27.4251337542602,1,19,1 -6595,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.2228199229576,25.1349274319099,1,14,1 -6596,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.56541918730363,21.5018573516036,1,11,1 -6598,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.347900985973,20.6612594103922,0,2,1 -6600,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1622694507241,25.5574994851776,0,20,1 -6601,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1371354998555,20.4193888997373,0,10,1 -6602,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.2608606915455,25.6095691585671,1,19,1 -6603,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.6539154634811,20.8382515034671,0,7,1 -6608,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1909370231442,20.8518317008635,0,11,1 -6612,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.2611624558922,26.8846096403416,1,16,1 -6618,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.67444343469106,21.7366977928746,1,11,1 -6619,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4251146358438,20.2963599558752,0,7,1 -6620,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.63879857747816,28.1482143176524,1,16,1 -6622,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3794836315792,27.8724565549372,0,10,1 -6626,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.0903323958628,21.9016107149999,1,16,1 -6627,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.0622889131773,26.443583576061,1,14,1 -6628,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.65157614112832,28.1474613276818,1,14,1 -6629,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1989654414356,21.6222057143348,0,3,1 -6631,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4160878264811,27.2044930787544,1,10,1 -6634,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.57026661699638,27.5595142383106,1,19,1 -6635,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.2832475895993,20.9678334443449,0,5,1 -6636,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.2933784420602,21.3147388667162,0,8,1 -6640,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4152709203772,26.9836357821276,1,10,1 -6644,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.55259810341522,31.6812245153579,1,13,1 -6648,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.91509779822081,23.1952458088316,0,7,1 -6654,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.5525173060596,23.9457313131868,0,8,1 -6655,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.3557997541502,20.5092641960928,0,11,1 -6657,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.103127341019,25.9172603961671,1,13,1 -6661,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.2217794351745,21.8722362699679,0,12,1 -6662,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.52251612674445,22.9487122331417,0,16,1 -6663,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.84889515535906,27.3050589554555,1,11,1 -6668,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4409405328333,17.9460127122553,0,9,1 -6670,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.67964328476228,23.1565183355053,0,14,1 -6671,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.0399966901168,28.5609892474318,1,16,1 -6675,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.83845075708814,26.0507734225978,0,12,1 -6676,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4704231547657,20.1325929831387,0,6,1 -6678,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.54916783282533,21.7357301790659,0,11,1 -6679,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.93330929568037,24.5942578591587,1,16,1 -6686,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.80318667553365,20.8687700070007,0,10,1 -6687,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.0457934031729,22.9979515687877,0,10,1 -6690,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.2323486749083,27.046572643363,0,18,1 -6692,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.55658435332589,21.1934771049517,1,13,1 -6694,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.3199392033275,22.4203172036399,0,6,1 -6695,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.496345497435,26.2874342628627,0,11,1 -6697,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.54593244963326,21.8596151736768,0,3,1 -6698,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.76145977992564,27.6943222784487,1,13,1 -6699,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.77799929422326,25.602963605381,1,17,1 -6708,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.87693771603517,21.8172738576701,0,6,1 -6710,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.55114185181446,22.3838906731303,0,11,1 -6711,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3596388667356,25.9443056566694,1,16,1 -6714,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.5601079610642,26.3695522260649,1,13,1 -6716,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.3620383271482,20.6927423495741,0,9,1 -6721,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.75656646676362,23.1543304196449,0,6,1 -6726,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1742874346673,27.9952470974026,1,14,1 -6734,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3560883009341,27.8086139774974,1,14,1 -6737,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.7583723727148,22.5740284467639,0,13,1 -6740,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.75034374929965,25.2765600367477,1,15,1 -6741,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.97291417210363,23.589025373739,1,14,1 -6749,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.83998887427151,24.7571692262569,1,12,1 -6753,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4727658824995,26.9208749317888,1,12,1 -6754,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.147242461564,26.4541628426598,1,19,1 -6757,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.89425484510139,27.6965323449394,1,16,1 -6759,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.57373040402308,22.3428700223828,0,3,1 -6763,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.53755805385299,20.8030325460689,0,8,1 -6767,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4238035883754,27.9352615644219,1,14,1 -6769,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.87565828580409,27.6682153446666,0,23,1 -6771,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3027367796749,21.5878925506012,1,10,1 -6773,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.55579337244853,24.0382356534783,0,11,1 -6776,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.75316131580621,25.5645943642191,0,14,1 -6786,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.59637601161376,21.5994526803878,0,12,1 -6794,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1000700693112,26.4358135193226,1,10,1 -6797,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.2696666349657,26.17355715822,0,7,1 -6800,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1117042535916,20.493647211689,0,6,1 -6803,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.1459443764761,21.633927885113,0,10,1 -6805,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.95964094786905,21.3803808905786,0,15,1 -6808,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.70111420191824,22.1006288810611,0,9,1 -6812,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.80165455141105,26.313048469571,1,23,1 -6815,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4978128215298,27.9379832287666,1,17,1 -6819,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.70360625581816,25.2523919532771,1,18,1 -6823,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.53902752208523,26.862879919394,1,13,1 -6825,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.55122726061381,28.5516068538454,1,15,1 -6828,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.2757530962117,26.2562781150886,0,10,1 -6829,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.98755402653478,20.2716179308453,0,9,1 -6833,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4862419459969,29.8329899835711,1,16,1 -6840,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4923789184541,22.1791278791522,0,8,1 -6842,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.85764683713205,25.859787330528,1,21,1 -6843,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.77074861200526,28.1600780038973,1,14,1 -6845,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.76197380595841,20.6200284271105,0,10,1 -6847,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.53459256468341,23.8762906939034,1,10,1 -6849,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.67610448808409,21.2756270909589,0,5,1 -6850,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.75054950453341,26.0279693271907,1,17,1 -6855,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4664117111824,25.2053270884797,1,22,1 -6859,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.50702780322172,25.5741566327262,1,20,1 -6863,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.3602081525605,23.4853248621912,0,8,1 -6866,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.60697041568346,22.0569069432542,0,12,1 -6869,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3064095615409,26.9897798687278,1,8,1 -6870,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.4058907735161,21.4959466582572,0,14,1 -6874,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3299063427839,27.9375625800216,1,13,1 -6880,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.173877581954,28.1171954975591,1,18,1 -6882,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.0892668240704,24.4953477222189,0,14,1 -6885,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.88870834838599,22.0845208470077,0,10,1 -6886,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.73616008204408,22.6301048987236,0,5,1 -6888,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.0847052605823,25.2232010260684,0,13,1 -6889,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3603766818997,26.6508679062437,1,18,1 -6890,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.3471110751852,27.5160458518838,1,16,1 -6891,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.87183054815978,22.9943741317464,0,9,1 -6893,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.0159110159148,21.8419063041112,0,13,1 -6895,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.81966541684233,23.8700844593219,0,9,1 -6896,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.7028519003652,20.3584568733941,0,2,1 -6898,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.74959662323818,25.6206003715835,1,15,1 -6901,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.80777536029927,27.0097148651495,1,16,1 -6904,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.91125848446973,26.3720699834707,1,19,1 -6909,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.86562481592409,19.8011698866108,0,11,1 -6911,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.2279505140614,23.8263010000895,0,8,1 -6912,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.64502668264322,25.7399200080521,1,15,1 -6913,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.91469224565662,23.1472638459302,0,5,1 -6914,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.9697096562013,27.6006000550525,1,10,1 -6916,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.77501566940919,27.1323544010885,1,15,1 -6919,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.85782123776153,27.5929429770516,1,16,1 -6923,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4915981022641,24.3219804444522,1,16,1 -6925,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.78690954251215,29.6361300880993,1,19,1 -6929,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.81454136618413,20.0365172429622,0,6,1 -6939,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1047547024209,28.1286042340308,1,12,1 -6940,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.71614530356601,23.2726235554481,0,9,1 -6941,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.63921109004878,19.5109898014443,0,9,1 -6947,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.92623494379222,21.689946753235,0,12,1 -6948,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.3692198982462,22.0680989156867,0,11,1 -6949,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1685129012913,26.5480090466503,1,16,1 -6956,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1762286047451,26.3533957798475,1,28,1 -6959,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.78203456941992,21.5124108975853,0,15,1 -6964,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.69624476693571,26.858309018441,1,12,1 -6965,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.1799247590825,25.5936351630309,0,22,1 -6967,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.93733740993775,23.0454795652642,0,8,1 -6977,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.74972571968101,25.2077042771513,1,19,1 -6979,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.51254080957733,24.1520228310043,0,7,1 -6982,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.54492814303376,28.1979787962329,1,14,1 -6990,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.95023607253097,25.8894798260037,1,10,1 -6993,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.92080931877717,24.5682102780738,0,10,1 -6997,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.87616810412146,20.4982635731373,0,1,1 -6999,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.2946534270886,20.491262040717,0,8,1 -7003,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.3908416084014,21.8110903535065,0,7,1 -7004,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.90514477528632,27.37896519004,1,14,1 -7010,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.59177064639516,19.3722160792218,0,13,1 -7011,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.2237127670087,26.0282659578921,1,17,1 -7012,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.97358313156292,22.4079508332318,0,8,1 -7020,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.0171620708425,21.5520966117932,0,8,1 -7021,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.2975310736801,25.2243872475724,0,5,1 -7033,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.7114788768813,22.865764912088,0,9,1 -7039,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,9.85346438433044,22.5227246993167,0,7,1 -7044,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,0,10.3557015594561,19.8207673393908,0,14,1 -7049,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.86559936334379,26.884466548364,1,22,1 -7053,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.60110235749744,25.4405008924161,1,18,1 -7057,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,10.4088650448248,28.3828860127538,0,18,1 -7058,4,0,1.09615018600291,3,14,0.64410374127223,-1.02854629431505,485,1,9.58784214942716,26.91224029429,1,20,1 -7067,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3507725067902,36.1535447767527,1,34,1 -7070,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.445285452297,33.7086038477917,1,35,1 -7075,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3296689093113,32.4784609166721,1,28,1 -7079,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.81335183023475,30.0208857143232,1,16,1 -7080,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.059477633331,31.7184206028333,1,22,1 -7082,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3476573403459,30.5213363939922,1,24,1 -7083,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.61739820567891,38.0410752175051,1,43,1 -7086,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4430883154273,34.9463844591064,1,36,1 -7090,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.60342756053433,31.1432865982357,1,30,1 -7095,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.93281504465267,33.6921060641839,1,26,1 -7096,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2482607162092,31.7954428285736,1,28,1 -7097,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.1834503607824,31.5557382635189,1,19,1 -7099,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4466847365256,37.4915636535778,1,43,1 -7100,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.1481214349624,36.3714835660407,1,30,1 -7104,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.1878076831345,34.6106448433056,1,34,1 -7109,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0786353072617,29.1370341594968,1,21,1 -7110,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.1216506864876,31.1839704907844,1,22,1 -7111,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.72231134632602,37.2002802239163,1,40,1 -7113,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.2815194730647,36.148607000447,1,44,1 -7114,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.1862205865327,31.7762618385341,1,21,1 -7115,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.992031958187,37.8761717865169,1,33,1 -7117,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.66356751951389,30.5756752969183,1,23,1 -7121,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.56301799835637,37.9781196153354,1,39,1 -7124,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4714556608815,29.8498743983692,1,18,1 -7125,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.76761078159325,35.7292527129793,1,35,1 -7128,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2566412382293,31.2003294631695,1,19,1 -7132,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.52343801758252,32.6877613999316,1,27,1 -7136,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.1159525758121,32.8617559695064,1,13,1 -7137,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4830182474107,33.9896868621285,1,18,1 -7138,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.350997895468,37.8040441608589,1,45,1 -7139,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.72694517369382,31.634710439487,1,28,1 -7141,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3542815130204,36.9345586852793,1,37,1 -7150,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.71049193129875,37.6765173107654,1,39,1 -7152,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0726079300512,35.6545882006604,1,37,1 -7154,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3655749121681,36.5300112276473,1,28,1 -7159,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.1373270696495,32.3146742698082,1,23,1 -7162,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.52874381188303,30.9146386717149,1,20,1 -7166,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4595496887341,39.1569533646692,1,42,1 -7167,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.71457759407349,32.5196989735424,1,29,1 -7171,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.57922828220762,35.228302618963,1,19,1 -7175,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4987609239761,31.8279374517594,1,14,1 -7176,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0758195051458,37.119986601935,1,32,1 -7183,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.89465480810031,31.6794486226408,1,28,1 -7187,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.53797326982021,38.6703784634241,1,37,1 -7190,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3367336387746,32.6281176946014,1,18,1 -7191,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.53164431056939,34.3628462568001,1,30,1 -7193,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3498639583122,29.2490806662965,1,31,1 -7196,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4325472945347,38.1403985504726,1,34,1 -7198,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0735965601634,36.9289366325716,1,34,1 -7199,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4627707423642,31.1270966485662,1,20,1 -7205,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.67782687186264,30.0153955299323,1,24,1 -7207,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3701630656142,28.913743678582,1,23,1 -7210,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.81786760385148,31.5687809138289,1,20,1 -7216,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3127676162403,36.4351548367198,1,32,1 -7218,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.94300244096667,33.7197816725624,1,24,1 -7219,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4322924027219,34.6890434567561,1,18,1 -7220,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4251953570638,36.8697761514621,1,45,1 -7222,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.74244945379905,29.3387989604481,1,25,1 -7228,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0166976875626,34.8738249604066,1,40,1 -7234,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.65662809181958,31.1337721903267,1,18,1 -7237,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2528827753849,29.6257493548486,1,22,1 -7242,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0251275605988,31.7778920412726,1,23,1 -7244,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.84482562751509,30.5811514091728,1,19,1 -7245,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.95695105590858,32.5019055478093,1,23,1 -7248,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3447586055845,36.1152020822565,1,39,1 -7252,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2504653027281,31.4872045156452,1,19,1 -7255,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.52889856765978,36.8703260433471,1,33,1 -7260,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2341169589199,31.7867684102522,1,30,1 -7266,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4751745618414,33.2365368367712,1,25,1 -7267,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3294976516627,33.349426250868,1,24,1 -7270,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.80438502505422,30.5259504819934,1,14,1 -7273,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.9038400251884,37.4265495869115,1,32,1 -7275,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.1675266763195,36.6624312025077,1,51,1 -7276,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.76389429462142,38.3726232321169,1,38,1 -7279,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.2355683511123,36.9092962341091,1,34,1 -7281,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.98397173872218,33.5499219544418,1,19,1 -7283,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4954833176453,35.894318066853,1,43,1 -7284,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4960739216767,33.5401466187192,1,22,1 -7285,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.66647169180214,31.3388594550435,1,28,1 -7288,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3295711283572,29.6454062666646,1,32,1 -7293,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.82261674525216,32.345945914294,1,17,1 -7294,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0630371659063,31.1290791073175,1,18,1 -7295,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2101676235907,28.2623443262855,1,16,1 -7297,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.91760997916572,35.7267681161204,1,47,1 -7299,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.073514145799,31.4999994608366,1,29,1 -7301,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3822720097378,34.496976131639,1,31,1 -7307,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.83201130852103,37.1109691470806,1,30,1 -7316,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.61078517348506,31.4301535492864,1,30,1 -7318,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.7243234810885,29.7645528071156,1,36,1 -7326,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.77686256030574,37.0612008720078,1,42,1 -7328,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.2065957500599,34.1016796458354,1,32,1 -7334,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.99434236506931,30.9636526213174,1,24,1 -7336,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.54743035766296,31.6905651398198,1,20,1 -7339,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4190997483674,31.816763296001,1,32,1 -7340,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0960779767483,32.4259477882087,1,31,1 -7341,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.8052230339963,32.308848170113,1,40,1 -7343,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.64802316646092,37.4300290374942,1,45,1 -7344,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.040514544351,35.040353372879,1,29,1 -7346,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3705895945895,35.7450420944513,1,41,1 -7347,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.60617491509765,32.152624242247,1,35,1 -7348,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3191878390498,33.1280107152164,1,44,1 -7353,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.94837592705153,30.6034630043292,1,25,1 -7355,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.89054538682103,32.0250960433574,1,18,1 -7360,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.70913207787089,31.4699698900641,1,24,1 -7362,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2015167358331,32.4487491081166,1,23,1 -7363,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3888393340167,32.1221789162978,1,25,1 -7365,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.2212522057816,37.1996685457055,1,34,1 -7366,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.88161483337171,31.5871597512257,1,28,1 -7381,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.012997816084,32.3634787011342,1,24,1 -7384,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0202282755636,29.3997265175985,1,16,1 -7387,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.83394604921341,31.6289591127515,1,22,1 -7388,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4196584261954,29.1653228218589,1,32,1 -7392,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.1721133335959,34.3223026253563,1,38,1 -7394,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2996695577167,29.1089934797639,1,19,1 -7396,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.59403355140239,40.0710574988876,1,46,1 -7397,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.1329998509027,32.1070647638369,1,25,1 -7401,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.1890288544819,33.1351857786707,1,19,1 -7403,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.94073310610838,31.8972814432667,1,23,1 -7405,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4766294215806,38.4238995326065,1,43,1 -7408,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.52304490562528,30.3670800192656,1,19,1 -7409,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.118392317323,37.932824866995,1,35,1 -7411,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.182565291645,32.3994831304423,1,21,1 -7414,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3443010300398,37.2429788059334,1,51,1 -7416,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.55860016774386,31.7725561337562,1,21,1 -7418,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0936623224989,36.2368172264234,1,35,1 -7423,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0413724365644,37.9365114898503,1,41,1 -7427,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.61578780505806,32.5901562298681,1,24,1 -7430,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.62188731855713,36.5168334006933,1,38,1 -7434,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2180501671974,30.5306810966673,1,21,1 -7436,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.8697295607999,31.3202547166621,1,23,1 -7437,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.50686934660189,31.8402108372002,1,21,1 -7438,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3605889216997,32.5048538703005,1,22,1 -7439,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.92606147495098,34.91859781541,1,47,1 -7441,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.0924877016805,34.3009306592335,1,24,1 -7443,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.84084490942769,35.8544718254279,1,37,1 -7444,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4481809195131,35.7094418177507,1,42,1 -7446,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.64024160522968,30.0082776947866,1,16,1 -7447,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.56508514774032,30.8556826377426,1,22,1 -7448,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0695123823825,39.6289422885608,1,40,1 -7449,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3152933893725,31.2050130583626,1,28,1 -7454,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.87466043536551,35.4746156378052,1,34,1 -7464,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.67882729158737,30.3784338366405,1,25,1 -7468,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.74974401365034,30.7108653902723,1,21,1 -7469,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.3858905013185,36.6576619068203,1,41,1 -7471,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.2980403567199,35.2228026657886,1,49,1 -7476,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.2563693369739,38.5056368821056,1,32,1 -7478,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3069710799027,29.7882156692533,1,20,1 -7481,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4421397862025,30.5441247192834,1,32,1 -7482,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.76506980718113,35.4084346832008,1,35,1 -7484,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.56776879122481,34.6909984436622,1,28,1 -7485,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2253580605611,30.3947065188811,1,23,1 -7488,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2544057490304,32.9287043860063,1,26,1 -7489,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.59656365402043,37.287264297195,1,34,1 -7493,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4292264843825,32.0736689037087,1,24,1 -7495,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2900943984278,30.4563001665931,1,28,1 -7497,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.59110377822071,31.0114332904672,1,19,1 -7498,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.85233403835446,37.5287584974053,1,44,1 -7502,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3593686330132,30.1855142546162,1,18,1 -7506,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.325169759104,36.0287404299513,1,40,1 -7507,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.65545309055597,37.2909748139286,1,39,1 -7513,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2570057876874,33.8663696336967,1,21,1 -7515,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.86474246694706,34.5602242565259,1,39,1 -7520,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.68810735968873,36.5138156145168,1,46,1 -7522,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.4885285191704,38.8620187269231,1,36,1 -7528,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.1407905188389,33.8989349052319,1,20,1 -7534,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2276098327711,30.5354739234853,1,29,1 -7538,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.4501006593928,31.8791732356564,1,17,1 -7541,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.94005888421088,32.5403880463691,1,26,1 -7544,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.480786770815,30.5594290006044,1,27,1 -7545,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.51870708516799,30.8754111262585,1,23,1 -7551,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0031892193947,36.3314488294148,1,34,1 -7555,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.2772570606321,30.2020327853459,1,21,1 -7556,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.64049479924142,34.6310058060106,1,41,1 -7557,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3619472961873,31.3471545874726,1,23,1 -7563,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.3687809449621,28.5390482931629,1,25,1 -7564,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,10.1891501429491,31.7280976372936,1,22,1 -7567,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,9.81279509840533,35.2182610168897,1,43,1 -7568,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.1405506904703,35.3181608668134,1,28,1 -7570,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,1,10.0201299889013,37.9891070889107,1,37,1 -7572,5,1,0.700213275570883,5,15,0.996790521575935,1.84207345580598,514,0,9.50931355543435,29.8772679156766,1,21,1 -7580,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2944933618419,29.1683961354173,1,19,1 -7582,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.012839557603,32.5553780224317,1,19,1 -7583,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4582213605754,37.1679205942666,1,41,1 -7584,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.74697092687711,32.0227467839036,1,20,1 -7585,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3210449586622,30.8563869507824,1,15,1 -7586,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4852396114729,35.1804187079444,1,22,1 -7590,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1731144448277,34.7439997483095,1,37,1 -7591,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1777856254485,28.1898221548556,1,16,1 -7592,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.90561479632743,30.8205360314149,1,19,1 -7593,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0884346275125,31.7175286775403,1,23,1 -7598,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.63588979677297,29.4446541022201,1,26,1 -7603,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4852819924708,33.5159314934087,1,47,1 -7605,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.80527516710572,32.7302743139885,1,17,1 -7607,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.91241707839072,30.2691702781129,1,18,1 -7611,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.67197818309069,37.4674409826969,1,35,1 -7612,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.98334887973033,31.2672734365325,1,18,1 -7620,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4871999754105,34.047577844084,1,42,1 -7625,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.367515653139,31.5038831509453,1,19,1 -7631,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.97878570389003,30.8653536605879,1,15,1 -7632,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2732545710169,35.3385968970806,1,52,1 -7637,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2952166097239,34.1848198642791,1,29,1 -7638,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.209147101501,33.6456549683638,1,43,1 -7641,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.80819849739783,31.1707193380249,1,15,1 -7642,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.90091818291694,33.0197292179794,1,44,1 -7644,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2686797177885,33.9670795562033,1,39,1 -7645,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4188582454808,36.001948062546,1,37,1 -7649,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.71684703882784,34.1512572991762,1,44,1 -7653,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.97484318632632,30.2786929924953,1,22,1 -7668,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4204095327295,36.4545539765342,1,35,1 -7670,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3557116133161,33.5037362685287,1,20,1 -7672,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1929796759505,32.0568721056476,1,24,1 -7674,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1766814950388,32.2018765021628,1,19,1 -7679,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3746567366179,37.3884769823481,1,40,1 -7684,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.94922040286474,29.1537963047028,1,27,1 -7685,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.56534931180067,32.9575677954561,1,49,1 -7687,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2986233595293,28.117782976956,1,15,1 -7689,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3870581625961,28.7718053006659,1,14,1 -7691,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4598934534006,33.9022865460159,1,35,1 -7697,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4746564344969,32.0954557929955,1,27,1 -7698,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2786953579634,35.5366375516381,1,38,1 -7699,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.53345679142512,31.2129145402406,1,21,1 -7701,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4332790081389,35.7595616899777,1,36,1 -7703,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.80948796542361,35.9355664116301,1,30,1 -7704,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.199892118806,30.295989984034,1,25,1 -7706,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3393807990942,36.2373015652375,1,37,1 -7707,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3744990036357,30.9157899367763,1,20,1 -7713,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.60995760816149,31.782564785965,1,17,1 -7714,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3072720067576,35.8636322877603,1,36,1 -7716,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3000002985355,31.227115273456,1,22,1 -7717,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.225937231211,32.8479540218558,1,15,1 -7718,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0354651287198,29.4776176674745,1,17,1 -7722,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.323799978476,34.9266976628296,1,23,1 -7728,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1772992410697,39.3248321509644,1,43,1 -7731,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2581955564674,34.9059258839146,1,35,1 -7732,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4743641843088,29.828433334723,1,21,1 -7734,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.8462713023182,36.5087606540406,1,35,1 -7738,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1940033442806,30.1711477941758,1,14,1 -7741,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2353584619705,35.557478873053,1,39,1 -7742,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.54776113317348,36.1063819087059,1,37,1 -7745,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.54145312239416,30.503146510017,1,17,1 -7749,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.63532285951078,28.7506758331749,1,14,1 -7750,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.50678227632307,29.5472438825421,1,20,1 -7751,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.9525038220454,29.0715861565817,1,29,1 -7758,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.0572719867341,34.8561666318391,1,28,1 -7759,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.67325185704976,31.4314124527137,1,24,1 -7765,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1538159144111,27.2804441595582,1,18,1 -7766,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.0887269899249,35.8024828816798,1,31,1 -7776,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1406243985984,30.5912487707849,1,26,1 -7778,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.74132491159253,33.0459967771858,1,26,1 -7779,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3002717506606,33.9584604991074,1,38,1 -7780,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3181121596135,37.0238653676341,1,36,1 -7781,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4608306118753,33.7517916394237,1,22,1 -7784,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.64575459714979,32.2752978067613,1,15,1 -7786,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.83995033428073,26.7527799348963,1,22,1 -7788,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.94410032778978,35.8253015029035,1,29,1 -7791,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.56843336694874,28.5860186699569,1,23,1 -7792,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.66091514541768,29.3965942069545,1,24,1 -7795,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0230686450377,31.3767421545456,1,15,1 -7797,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.61670567654073,30.1318126992061,1,21,1 -7799,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3428510332014,31.0965464911553,1,19,1 -7801,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1485777155031,28.2390043111767,1,17,1 -7802,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.94000767008401,37.3125042416169,1,28,1 -7803,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1600209965836,35.6010312689575,1,47,1 -7804,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1208168203011,34.4504471892476,1,39,1 -7806,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.78293784405105,31.8235292590234,1,23,1 -7808,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.57689839554951,37.2382291561555,1,36,1 -7809,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.83761488064192,34.7622546389443,1,28,1 -7810,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2648137379438,36.5381141715749,1,32,1 -7811,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0524565456435,28.6136423477472,1,27,1 -7813,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.99018823681399,33.6395820625081,1,34,1 -7819,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3904449737165,32.1380785181961,1,22,1 -7820,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3609087443911,36.5145377653157,1,34,1 -7829,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.89147488959134,31.6770978599549,1,23,1 -7832,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3727718614973,35.6970814787405,1,41,1 -7835,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4247117657214,31.8807960793867,1,17,1 -7844,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4558224240318,36.0579102299765,1,33,1 -7851,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.63369319681078,36.3224699455419,1,34,1 -7855,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.97155124042183,31.1486848111569,1,18,1 -7857,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2037204972003,36.7141673637592,1,32,1 -7860,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.81808146438561,32.4798354394117,1,30,1 -7861,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1280610945541,30.4696471732207,1,25,1 -7864,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2750595321413,30.4869728268133,1,24,1 -7865,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.89304343448021,29.0421092076332,1,22,1 -7867,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.82060044258833,30.4203949361964,1,18,1 -7869,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.63191078370437,32.5756772798544,1,26,1 -7873,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1079195674974,30.1334076713879,1,20,1 -7874,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3991958380211,28.807154144715,1,17,1 -7876,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4891273893882,36.0535671021343,1,41,1 -7877,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1962090556044,35.2074003922326,1,37,1 -7878,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2260665325448,30.6824406286575,1,31,1 -7881,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.82123393309303,30.2769932878172,1,15,1 -7882,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2769901535939,35.3323250133411,1,36,1 -7884,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.76844644220546,29.8065255033832,1,23,1 -7885,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.64503592299297,34.3933235085631,1,26,1 -7888,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.6260493202135,30.4204488112236,1,18,1 -7893,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3953888425604,29.9359633212537,1,24,1 -7897,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.50505411857739,30.9753087122994,1,21,1 -7899,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.74714863440022,33.5580699925617,1,41,1 -7901,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.59334735828452,34.0150776025015,1,30,1 -7903,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4806396621279,30.5658875088264,1,21,1 -7904,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4814907286782,30.4629567763074,1,25,1 -7908,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1419359687716,36.4673682253293,1,31,1 -7911,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.94729656376876,32.2562330494298,1,26,1 -7915,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.79108509537764,35.3200115065444,1,36,1 -7920,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4792737483513,33.5900922531659,1,40,1 -7921,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2873192133848,29.7654218490476,1,24,1 -7922,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.70968270511366,37.0325518857611,1,30,1 -7925,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.70524830697104,31.3716535630117,1,17,1 -7928,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0235481562559,27.8418707057435,1,20,1 -7940,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1151570528746,35.5047891951658,1,44,1 -7944,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2587047014385,31.3713308403733,1,27,1 -7952,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0251395953819,28.3466232694703,1,14,1 -7954,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.57633456913754,31.9083780078909,1,26,1 -7958,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1946232824121,35.1622918371273,1,35,1 -7961,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3267098150682,38.5706894121003,1,37,1 -7963,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.82537596672773,30.3414074148656,1,18,1 -7964,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3249654355459,36.4371939663629,1,40,1 -7969,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1141132335179,36.639111911491,1,39,1 -7971,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2509804661386,29.2456221951699,1,21,1 -7973,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.87374275969341,33.9795611814123,1,29,1 -7974,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.79111362760887,28.6007617970236,1,19,1 -7978,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0856200468261,31.0824163686731,1,20,1 -7982,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.88906418671831,30.6545869067221,1,15,1 -7985,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.019737574039,31.0272053970711,1,15,1 -7990,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4594138099346,36.558673475448,1,35,1 -7991,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1617512193043,27.746439867865,1,22,1 -7995,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1072612728458,31.0637155479244,1,18,1 -7996,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.76688859635033,30.2492066034792,1,28,1 -8002,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.53164449660107,34.4173248038897,1,35,1 -8003,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3284688000567,36.2509849234823,1,40,1 -8004,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3668349140789,37.0259195918774,1,37,1 -8009,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.83193026692607,37.3082101390675,1,37,1 -8010,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1124808772001,29.2935961248813,1,17,1 -8011,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.62781785661355,33.3239736840474,1,30,1 -8015,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.4011956080794,33.9460084980852,1,21,1 -8018,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.1289655442815,33.9770936054985,1,36,1 -8019,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.2796098045073,32.5840717283756,1,41,1 -8021,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.0744480509311,36.314249450233,1,47,1 -8026,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2040251605213,31.3211219396597,1,33,1 -8030,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1112633724697,31.6162594582601,1,20,1 -8033,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.99005701369606,28.7165401341119,1,16,1 -8038,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.94438734278083,29.6301555334268,1,20,1 -8039,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.4554817643948,35.4970571619327,1,33,1 -8041,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.0039005698636,29.3584522779704,1,25,1 -8043,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2262665054295,30.5252674024839,1,20,1 -8044,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.99456019536592,34.6363301232397,1,39,1 -8045,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.93548494693823,30.4024167962559,1,23,1 -8046,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.1729674898088,31.2468749512898,1,16,1 -8050,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.86143248155713,31.396413068873,1,22,1 -8057,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.61380465887487,37.0516975419076,1,43,1 -8058,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.65490477252752,35.7594252756136,1,40,1 -8059,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.0763213627506,34.6447682196072,1,43,1 -8060,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3196161512751,31.8471982554461,1,19,1 -8062,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.94590858882293,28.7844628153721,1,28,1 -8064,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.57338945567608,36.0522015182661,1,38,1 -8065,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.73614367679693,35.6671963724501,1,33,1 -8068,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.0031799217686,36.5655667542878,1,34,1 -8069,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.6021815307904,29.2690527211905,1,12,1 -8073,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.2250835094601,30.2455499848266,1,19,1 -8076,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3556468065362,34.9059665053136,1,41,1 -8079,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,10.3584023497533,35.2579518086308,1,28,1 -8082,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.77169654122554,30.4902707677702,1,18,1 -8083,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.81663384358399,35.2816444100693,1,38,1 -8084,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.74179381527938,35.9341178645729,1,30,1 -8088,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,10.3712056940421,31.2880956304331,1,21,1 -8092,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,0,9.8922343144659,32.0953117990685,1,16,1 -8093,5,1,0.700213275570883,5,16,1.46385743923002,0.474960965850887,515,1,9.52124266861938,36.857131692208,1,35,1 -8096,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.65399721520953,30.8476149301441,1,15,1 -8100,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.2258790906053,34.0795111229086,1,29,1 -8101,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.96260398766026,35.1679801440874,1,28,1 -8106,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.74075564183295,32.882551225559,1,38,1 -8108,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3352500027977,31.8744907867282,1,27,1 -8109,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.88972234120592,30.954121727571,1,19,1 -8110,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.1985936528072,34.8926808530501,1,32,1 -8113,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.2672817728017,35.9336773764844,1,32,1 -8115,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4362328979187,30.8910167254198,1,14,1 -8123,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.83343056309968,29.0080507255556,1,17,1 -8125,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4720215264242,34.1029811754384,1,37,1 -8127,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0183042574208,34.8603153077135,1,31,1 -8129,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.1271931177471,32.583255478729,1,32,1 -8131,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0950112103019,28.3394640342148,1,20,1 -8132,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.64020482054912,29.1936262288193,1,18,1 -8135,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.85962652228773,34.8337131059395,1,19,1 -8136,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.54817308625206,33.1431235363567,1,32,1 -8140,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.83415678329766,31.8082888922961,1,31,1 -8141,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.81264157546684,29.0118952482817,1,14,1 -8143,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.79244652506895,35.3213796037778,1,25,1 -8145,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.8100249664858,29.9702553872858,1,18,1 -8148,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.62291323929094,27.5628684216455,1,29,1 -8149,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4812128234189,30.6838808903779,0,18,1 -8156,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0800616317429,30.9354968221185,1,13,1 -8157,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.7602222780697,30.969801238914,1,14,1 -8158,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4631495042704,30.2910439796823,1,19,1 -8159,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1589364667889,29.1773168054124,1,21,1 -8160,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.98296350915916,28.4791171774815,1,16,1 -8166,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.50525283045135,29.6782048507529,1,24,1 -8172,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3267707645427,36.2510812115209,1,31,1 -8175,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4152771055233,29.334849181102,1,14,1 -8178,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.1603114679456,33.3219472994279,1,48,1 -8179,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.80286676762626,34.4530804109923,1,33,1 -8180,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.52667310112156,28.7036366899771,1,16,1 -8184,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.75554808741435,28.0990917987873,1,13,1 -8186,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0118404824752,33.178108153757,1,32,1 -8187,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0661333384924,35.1336448515827,1,31,1 -8188,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.54217337304726,28.8557520711172,1,19,1 -8189,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.69607178075239,28.7123385863707,1,16,1 -8190,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.80562764429487,30.3351585678444,1,27,1 -8193,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.9826149425935,35.5768361354572,1,33,1 -8195,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.97737850900739,34.1640957326885,1,22,1 -8196,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.53420926281251,37.4376956446175,1,28,1 -8199,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.97568801790476,29.5739059910532,1,23,1 -8201,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.51800210331567,34.2077632578194,1,37,1 -8211,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.82355030393228,31.8538394910336,1,21,1 -8212,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.2809476528782,34.750149354893,1,32,1 -8216,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2568116395269,29.9290075063854,1,16,1 -8219,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3547270176932,28.9012112409886,1,27,1 -8221,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.97879355493933,33.567350586617,1,37,1 -8229,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.1642921413295,35.1965753026373,1,25,1 -8232,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.86632400495,35.145276070517,1,28,1 -8233,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.56890107621439,28.4050495129202,1,15,1 -8234,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.97807431570254,28.4805464382548,1,25,1 -8236,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.76831407519057,27.5392536643899,1,15,1 -8237,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.94678770145401,27.1903705207607,1,23,1 -8238,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.2114279097877,33.0033448982503,1,28,1 -8239,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.1457828285638,34.151661351851,1,30,1 -8245,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.8999105556868,30.1106879250048,1,17,1 -8247,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.80231432197616,34.2436033558434,1,31,1 -8250,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.1786733497865,34.5693118196772,1,33,1 -8251,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.77693783212453,30.0487699977689,1,23,1 -8253,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.2842785171233,32.1966300130423,1,37,1 -8257,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3561588402372,28.7179023691005,1,15,1 -8265,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.57291432027705,30.0434608114384,1,17,1 -8270,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4173714397475,28.529579574044,1,17,1 -8274,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.62548041390255,35.9252295919375,1,35,1 -8275,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.92464077402838,31.9326654144213,1,24,1 -8276,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.83465151395649,35.6010777610721,1,25,1 -8277,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.73826694022864,36.0875698611682,1,41,1 -8278,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2648641567212,27.6420037023527,1,17,1 -8279,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.99012404051609,35.7511423217529,1,27,1 -8281,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3612478275318,28.7349350015823,1,16,1 -8285,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.75362878153101,35.6236026936997,1,32,1 -8286,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.7648612644989,34.4620666733885,1,25,1 -8289,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.75356474099681,28.4035686738212,1,18,1 -8294,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.080937938299,32.6582754004774,1,30,1 -8296,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.90087573439814,34.3293259363377,1,40,1 -8300,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4749856283888,34.3853412407297,1,32,1 -8301,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.364368214272,28.5752031281286,1,14,1 -8306,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.69741843035445,30.5580823043836,1,16,1 -8307,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.88136178976856,27.8826413677661,1,17,1 -8309,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4772576037794,29.9371292020268,1,16,1 -8312,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.86239309073426,28.6544092319235,1,17,1 -8313,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4570550920907,35.0796992636884,1,34,1 -8316,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0963270994835,27.7725813918738,1,22,1 -8322,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.52579142060131,28.4115108808282,1,25,1 -8323,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.58643675874919,31.192494540934,1,19,1 -8324,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.96674245665781,31.75954503952,1,29,1 -8327,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3408095662016,32.0056151565099,1,22,1 -8330,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.93986178073101,31.4890450295985,1,32,1 -8335,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1555035698693,31.1604662176714,1,23,1 -8336,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3169793558773,31.0170601108347,1,21,1 -8338,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0015620186459,30.4293582699941,1,21,1 -8341,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.89018039708026,28.7551225612132,1,18,1 -8343,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.64212979446165,27.8143970570208,1,25,1 -8346,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.65327807329595,35.1761183204302,1,34,1 -8349,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4511526676361,34.5992366787278,1,30,1 -8353,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.93118666065857,33.1674532412278,1,36,1 -8355,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3917865995318,35.300342706969,1,32,1 -8358,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3966333817225,26.933149711951,1,13,1 -8360,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.81364474561997,35.0594805450654,1,37,1 -8361,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4261055681854,29.7753789104968,1,16,1 -8362,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0328418260906,36.5071938921699,1,29,1 -8363,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.73324483307078,27.7530620986079,1,14,1 -8364,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.99110896885395,31.9296314682126,1,21,1 -8365,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0779762915336,34.790029482866,1,34,1 -8368,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.54196959524415,29.6732746429028,1,23,1 -8370,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3855174358469,29.018197957049,1,19,1 -8373,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0506705762818,35.337715435444,1,36,1 -8378,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1736706122756,31.4215378076849,1,11,1 -8379,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2726077765692,31.1928104312877,1,19,1 -8380,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0708529714029,30.2454040789984,1,20,1 -8384,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.96508962055668,34.323878622661,1,35,1 -8385,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.96193308290094,35.3875453029409,1,34,1 -8388,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.72551380190998,32.4334461614178,1,31,1 -8392,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0338926953264,29.7221206115923,1,17,1 -8394,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.8329905399587,33.9152511101372,1,31,1 -8395,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.67600970435888,36.5908634690234,1,30,1 -8396,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.86426998092793,31.7936328460075,1,16,1 -8401,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4732098004315,28.9163185210013,1,16,1 -8406,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4784739997704,35.3575330267789,1,35,1 -8407,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.84343909542076,28.7138338920667,1,21,1 -8409,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4628427179996,31.7386645367772,1,32,1 -8415,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.89741436648183,35.2054142110002,1,25,1 -8417,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.93772515468299,34.4117572545354,1,24,1 -8419,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.55466636153869,29.497442620168,1,15,1 -8423,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.1744950516149,33.5020029450686,1,35,1 -8429,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3353041238151,34.5300684873648,1,18,1 -8432,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.1373639381491,29.5625409253436,1,21,1 -8434,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.64905796921812,29.3056616500819,1,22,1 -8440,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2066320141312,29.0549037895981,1,18,1 -8441,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.79997493885458,34.0579749046523,1,27,1 -8449,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.79957690229639,33.8976593786888,1,35,1 -8452,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4699963193852,27.8126968120615,1,17,1 -8455,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.93375244247727,28.5476521387815,1,9,1 -8456,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.3424265270587,27.4912230251754,1,13,1 -8460,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.61349881929345,28.7691927140755,1,26,1 -8461,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0191172359046,29.2798327907623,1,14,1 -8463,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.88122501014732,32.0287015975433,1,26,1 -8467,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.95452076103538,29.8870505330186,1,16,1 -8469,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.53603422874585,34.7583196623359,1,33,1 -8470,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2714211014099,30.7231069656455,1,15,1 -8473,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4310029626358,28.6352655976777,1,22,1 -8477,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4986393305007,27.9351622941577,1,17,1 -8482,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.1099141545128,34.8070515916726,1,28,1 -8484,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.98284310940653,26.4472494488484,1,11,1 -8485,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4822748848237,29.4318363422747,1,9,1 -8486,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.78022367577069,28.848469435674,1,18,1 -8487,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.99468890763819,29.96010534785,1,16,1 -8496,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.314985673409,35.0972294652164,1,31,1 -8497,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.70694498065859,31.638422592703,1,37,1 -8505,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.67819678480737,27.6094404511096,1,24,1 -8511,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.97927159443498,30.0671144501874,1,24,1 -8512,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.67748406063765,35.090340114747,1,32,1 -8513,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.1359554578084,36.0662203588724,1,37,1 -8514,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.0783285363577,28.0806008395261,1,20,1 -8515,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.999362870818,33.0575089791728,1,31,1 -8516,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.65087917819619,34.5119760589971,1,21,1 -8525,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.98535702726804,29.1750523270039,1,25,1 -8526,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4226937717758,29.8670957698255,1,21,1 -8527,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.1351425903849,33.1777193102817,1,28,1 -8529,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.1579248772468,33.3770371584497,1,27,1 -8532,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.9944886143785,34.8022046803386,1,37,1 -8533,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.5379368532449,35.1864057702471,1,25,1 -8535,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2562312197406,29.7208321124767,1,21,1 -8536,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.67129512340762,29.6865737198612,1,10,1 -8537,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.91559657407925,31.6555898078536,1,19,1 -8542,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.95396253257059,31.9342251941926,1,27,1 -8543,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.080893190112,36.7024377798803,1,30,1 -8547,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.8238456803374,33.4689884324806,1,24,1 -8552,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.222741938429,33.6834388719126,1,37,1 -8561,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.97748370748013,31.2702587702593,1,12,1 -8562,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.1025918442756,34.6684824410882,1,26,1 -8565,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4605547836982,35.3916487541146,1,41,1 -8567,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.53800097294152,33.1118519668194,1,23,1 -8568,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3482845623512,35.1960558334586,1,27,1 -8572,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.78461580723524,29.9715413490894,1,18,1 -8575,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.57135324203409,32.0674995181727,1,33,1 -8578,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.70525489491411,33.8663030875504,1,36,1 -8582,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2686063521542,31.0614476212179,1,25,1 -8583,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0430680685677,34.1025553609135,1,29,1 -8587,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.3695246763527,35.4640431299239,1,23,1 -8591,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4938661067281,28.278799028217,1,21,1 -8593,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0207624780014,34.3064995147941,1,27,1 -8595,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.0081130017061,36.4928267595986,1,24,1 -8596,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.78870065743104,32.1211500691459,1,22,1 -8600,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4558374423068,34.0070889175906,1,21,1 -8602,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.475626547588,30.3819426992667,1,17,1 -8603,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,9.72513758158311,35.0097913577045,1,29,1 -8608,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,1,10.4950228936505,35.1647071871495,1,30,1 -8611,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.4611569480039,31.6766801579429,1,19,1 -8612,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,9.80416853376664,32.3634868527132,1,19,1 -8620,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2572945556603,30.7843030940335,1,22,1 -8624,5,1,0.700213275570883,5,17,-0.861151938587569,1.46866940938535,531,0,10.2105619388167,29.5621127923416,1,20,1 -8628,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.59850356332026,30.1407233535584,1,14,1 -8634,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.78591000614688,28.962894786083,1,18,1 -8636,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.90432747872546,32.6741390401277,1,37,1 -8637,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.88641206710599,29.9359673056619,1,15,1 -8641,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4777496389579,34.6648120124808,1,30,1 -8642,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1923028647434,31.3724772812947,1,18,1 -8644,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.7944497182034,30.1514432561153,1,17,1 -8648,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.75698197260499,27.9822104266603,1,20,1 -8650,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.81314131221734,31.7895580128335,1,39,1 -8651,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.7080030948855,35.5344177271285,1,37,1 -8662,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.82528479164466,35.2710164185843,1,31,1 -8670,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.044917679159,30.5211679255585,1,29,1 -8675,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.52799680433236,31.2921572853351,1,21,1 -8677,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0281956053805,34.9984763431254,1,29,1 -8678,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.54385064798407,35.5288105179111,1,40,1 -8679,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3351059893612,35.7829631943769,1,26,1 -8680,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.73818987119012,34.3409911718479,1,26,1 -8681,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.7122915876098,36.1925193291031,1,35,1 -8682,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.3696570578031,31.0759771806679,1,28,1 -8683,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.3764323953073,31.0619876057221,1,22,1 -8687,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.7365924497135,35.9948943239434,1,28,1 -8688,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.86114702583291,29.7375739509403,1,25,1 -8691,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.375428510597,30.8448407561835,1,32,1 -8699,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.0896855392493,32.4607800887956,1,22,1 -8702,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.8087404598482,30.6469455152027,1,26,1 -8703,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1278149494901,33.5651538370068,1,31,1 -8704,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.56042212899774,30.0547588376318,1,18,1 -8705,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.51313485600986,37.5139124359524,1,40,1 -8709,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.7559265375603,37.5591162662451,1,36,1 -8710,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.66376694268547,35.0252324358843,1,39,1 -8711,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.4634607892949,29.7174806544219,1,21,1 -8712,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.93633665749803,32.7877064756438,1,29,1 -8718,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.93172370735556,35.319519796727,1,42,1 -8727,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4274305996951,36.2376903998633,1,42,1 -8728,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3668931983411,35.561439208614,1,39,1 -8729,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3805585685186,37.5895875478893,1,30,1 -8732,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.50214491528459,27.9579496719696,1,21,1 -8739,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.0751167268027,33.3621524877431,1,17,1 -8740,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.187181484187,36.4013741001524,1,41,1 -8741,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.02201322373,30.049365960512,1,20,1 -8750,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1566044741776,35.442987138556,1,37,1 -8753,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.52969752973877,34.869737171638,1,33,1 -8755,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2563349513803,37.8261947993,1,48,1 -8757,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.53074505203404,37.603192772531,1,37,1 -8760,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.53589638555422,31.3558356411692,1,17,1 -8765,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2943782918155,31.3736272250114,1,27,1 -8768,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.9982901730109,36.6376150576925,1,40,1 -8770,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.4886935770046,31.7408202758607,1,19,1 -8773,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1555003153626,36.4489017407907,1,34,1 -8775,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.99564873590134,34.8861650726094,1,20,1 -8776,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.59366957354359,31.0849762790611,1,19,1 -8777,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.88288903236389,36.3108940842652,1,38,1 -8778,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4994836128317,38.2861821703375,1,42,1 -8786,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.0369428263512,29.1513316543854,1,19,1 -8789,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.69831849192269,34.0065319139544,1,37,1 -8794,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2848599629942,28.6994462857364,1,16,1 -8795,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.88139385427348,32.6960906842125,1,19,1 -8798,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.67969005578198,34.6186678763705,1,40,1 -8805,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1101730475202,36.0552045830577,1,38,1 -8806,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.50129810790531,31.811386428997,1,18,1 -8808,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.96009904332459,36.5962698966612,1,28,1 -8810,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.80250593367964,30.0762600054633,1,20,1 -8811,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.8547111353837,28.6272391166449,1,20,1 -8815,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.7816209748853,32.5603228736674,1,24,1 -8817,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.6885785437189,36.9827103361215,1,30,1 -8818,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2511088829488,35.1748304303295,1,33,1 -8824,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3954686929937,38.4480944540229,1,30,1 -8825,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2708861834835,29.6847684772633,1,15,1 -8826,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2592078291345,35.2995837897929,1,33,1 -8828,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.53511076839641,29.7922901755926,1,26,1 -8832,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.90648473240435,31.2871927210135,1,12,1 -8833,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1446068836376,35.5964709762081,1,39,1 -8836,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.60562851768918,31.1472555031937,1,15,1 -8838,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.73902685567737,33.8692810380215,1,28,1 -8839,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2628504200839,28.5576818364398,1,30,1 -8841,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.53018401190639,38.1438217238869,1,37,1 -8842,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3257379783317,33.6802472484427,1,43,1 -8846,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.4521060411353,29.3865801360749,1,27,1 -8847,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.68628886737861,35.760128473517,1,43,1 -8848,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0483743811492,37.1269589936995,1,31,1 -8849,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4286309361923,33.9345571566413,1,34,1 -8850,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.79038169886917,33.5268812038143,1,39,1 -8851,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3676222634967,34.7148246359082,1,32,1 -8852,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2060477240011,35.5924053895259,1,44,1 -8861,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.90993799455464,33.2940176800111,1,31,1 -8867,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.3631504571531,30.9990635303962,1,14,1 -8868,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.9318753008265,36.2022433635278,1,31,1 -8877,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.90850724279881,34.6216737323797,1,36,1 -8878,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0820244278293,36.2889143968627,1,27,1 -8886,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.60254307510331,32.1287135102433,1,24,1 -8889,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0314304290805,36.3303531959765,1,32,1 -8892,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.59268014249392,36.8149052293584,1,33,1 -8896,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.84564492478967,37.2042511371619,1,36,1 -8902,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.55372522957623,35.0965523043074,1,28,1 -8904,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.53028719755821,34.6350957536112,1,22,1 -8908,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1938734848518,36.3983766360961,1,29,1 -8915,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.52674732985906,32.6331337898902,1,29,1 -8916,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2671505140606,34.1783787552217,1,24,1 -8920,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.69020285410807,33.9863197871748,1,32,1 -8923,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.0200612803455,31.4387804459557,1,13,1 -8926,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4741077688523,37.8356920672173,1,34,1 -8927,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.53658388834447,31.9310577845145,1,20,1 -8941,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.54601850034669,31.7477018472284,1,24,1 -8942,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.52802994567901,30.5645559932649,1,26,1 -8943,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0369089813903,37.4683127067084,1,43,1 -8948,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.194164355984,35.2312145826503,1,38,1 -8960,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1714831902646,31.5974371440333,1,22,1 -8962,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.034505526768,30.2915317683765,1,32,1 -8964,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.65686722053215,39.0617482310872,1,30,1 -8969,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.162078425521,29.5448383325293,1,16,1 -8971,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.0717817805707,34.8720402054471,1,27,1 -8974,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0219514602795,38.5631070251033,1,22,1 -8984,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.142078695586,35.8616484346536,1,40,1 -8988,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.201017284533,32.4273317543134,1,23,1 -8990,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0670868810266,35.9187275232349,1,45,1 -8992,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.91630580555648,29.8069553855601,1,21,1 -8994,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.56596326292492,28.8099298070646,1,22,1 -8999,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.99736808915623,30.8453468466146,1,21,1 -9000,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1367719667032,35.2535793486211,1,30,1 -9003,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1607259709854,36.5529088781905,1,45,1 -9004,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.91161034023389,36.1650606750005,1,31,1 -9007,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.64681308018044,34.0450370174082,1,34,1 -9010,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1426873339806,32.3259873548307,1,29,1 -9013,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.6999329556711,35.1727952851105,1,37,1 -9014,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1526819989085,30.7838862420957,1,23,1 -9015,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.60197330219671,37.3572484954902,1,39,1 -9017,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2650761532132,35.2005127808072,1,33,1 -9020,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.85762972594239,34.401018809561,1,40,1 -9025,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.4542652009986,32.5528419011394,1,25,1 -9029,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.60297183436342,32.0998715790053,1,22,1 -9031,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4023543952499,36.1528106035331,1,41,1 -9032,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.325429660501,35.3151108547958,1,33,1 -9036,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.92124431487173,33.9820452657563,1,34,1 -9039,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.77173011796549,36.3432242842539,1,31,1 -9049,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4824098388199,37.3923774678562,1,33,1 -9050,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.64984446484596,29.3923629661685,1,20,1 -9059,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.0220340315718,38.2806946646472,1,33,1 -9061,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1466373705771,31.870554754805,1,21,1 -9066,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.93735523615032,29.7442575654204,1,20,1 -9069,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.77193350763991,35.4483342079342,1,30,1 -9075,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.90175159228966,31.7153058662641,1,21,1 -9079,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.2343416155782,30.3631852444957,1,28,1 -9080,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.52419073716737,33.7047396440894,1,31,1 -9083,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.4581508138217,34.7205387752291,1,32,1 -9084,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.3222862330731,37.1182149998917,1,41,1 -9085,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.4410827683751,32.2776752329708,1,20,1 -9088,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.89878556015901,31.0274610631829,1,17,1 -9090,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2413608203642,35.4286547251925,1,29,1 -9092,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.3050159201957,28.6815051798039,1,24,1 -9102,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.4997973663267,30.9009538216401,1,15,1 -9104,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.0192367117852,31.7208033137602,1,23,1 -9109,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.54421116271988,36.4068266583489,1,30,1 -9113,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.72754880553111,36.0550462137868,1,34,1 -9114,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.1728283495177,36.3573129988571,1,32,1 -9115,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.89974423893727,31.1174893065017,1,25,1 -9119,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.0301262913272,28.003952907502,1,27,1 -9123,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.0124354155269,31.1716857990056,1,35,1 -9125,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.54880452854559,34.9066231803742,1,34,1 -9126,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.63244319218211,30.0077497231899,1,25,1 -9127,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.73730852338485,28.7642919567767,1,19,1 -9128,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2913865321316,34.1616494728428,1,33,1 -9131,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.95955892466009,36.6789793101274,1,35,1 -9132,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,10.2129426205065,35.5433099435786,1,33,1 -9134,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.73309555463493,33.4167976115878,1,29,1 -9137,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,1,9.64938441850245,34.6187536383601,1,34,1 -9138,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,10.1452872327063,29.3230458890939,1,22,1 -9141,5,1,0.700213275570883,5,18,0.714114383757768,1.30210682854099,518,0,9.96097513707355,33.6630437394952,1,19,1 -9144,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.81850590067916,31.6547966737718,1,23,1 -9146,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.66554091847502,30.3273107235843,1,23,1 -9149,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.89976033545099,33.8975056917261,1,18,1 -9151,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1934472450521,30.6218935964221,1,23,1 -9153,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.65060881129466,26.4090271068946,1,19,1 -9158,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.60819077910855,27.9988559699323,1,11,1 -9161,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0651612123474,31.0154639465308,1,29,1 -9162,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.85266797500663,24.7576780819422,1,18,1 -9163,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.75953271007165,32.8322552091127,1,24,1 -9164,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.0917958023492,26.9707305679098,1,17,1 -9166,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.80771525204182,24.9137688990015,1,18,1 -9167,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.56784891709685,31.0328888674251,1,28,1 -9170,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.0094291903079,24.7739278805207,1,17,1 -9171,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.93656797287986,25.5396026299482,1,11,1 -9174,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.55994431301951,26.2869582851258,1,17,1 -9175,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3895976808853,27.5574546936602,1,17,1 -9183,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.55646818736568,33.1421336175129,1,26,1 -9184,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.246708788909,29.3714119845235,1,21,1 -9185,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3103645839728,25.1781118541117,1,20,1 -9192,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.80446550692432,31.2318935697411,1,29,1 -9196,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.108360636048,27.796317939188,1,17,1 -9199,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.4877594108693,34.6764272130604,1,33,1 -9202,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.61797677585855,31.4839236727262,1,22,1 -9203,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.070792818442,31.9260470454671,1,24,1 -9213,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0691667208448,32.8430169288741,1,18,1 -9214,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4861219404265,25.0237825309338,1,12,1 -9220,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.82231900282204,30.0551630310687,1,14,1 -9222,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.71034229290672,30.6212083254838,1,21,1 -9231,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.75206251419149,28.3068542271356,1,16,1 -9232,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2088240718003,27.3586312398279,1,20,1 -9239,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.72584821633063,34.7928984775363,1,25,1 -9244,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.65148228034377,32.9601272459963,1,25,1 -9245,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.65955138835125,33.2351662771849,1,28,1 -9248,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1828488563187,26.8804736831595,1,21,1 -9252,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.74683833308518,24.7034979589446,1,12,1 -9254,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.98837313079275,32.5515542609233,1,18,1 -9255,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.0240044000093,25.0420762730106,1,18,1 -9260,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.73045683139935,28.7059801757537,1,18,1 -9265,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.4317445645574,31.1966067530215,1,20,1 -9268,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.56218134635128,26.3266952155479,1,11,1 -9270,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1274495497346,32.3486504032758,1,26,1 -9275,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.0118151621427,28.2301974011166,1,13,1 -9280,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3005904997699,30.3857487796165,1,32,1 -9281,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.8465712426696,28.1256792974381,1,14,1 -9282,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.143137096893,29.014918816677,1,14,1 -9283,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.99785575526766,28.6068426759966,1,19,1 -9289,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3542213572655,25.933034383932,0,13,1 -9290,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3714496169705,25.5552496526735,1,11,1 -9295,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.7320377768483,27.6631329578148,1,17,1 -9296,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0299359734636,34.5314269149315,1,25,1 -9297,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3771649508271,27.1648651045181,1,19,1 -9298,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3841316741891,24.7584913544495,1,13,1 -9299,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4673862659838,27.5414147446777,1,10,1 -9302,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.70657648332417,27.7072706428431,1,11,1 -9303,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.58113674703054,28.2269780535943,1,15,1 -9305,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.94408371229656,32.5154472524774,1,19,1 -9306,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4447374138981,27.6534722699384,1,16,1 -9309,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.87548538809642,27.5451345175748,1,18,1 -9310,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2985018568579,25.9571099020555,1,30,1 -9312,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2527868349571,25.1977490497446,1,19,1 -9314,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.60660799150355,32.7186181381994,1,25,1 -9319,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.80491932481527,28.267006676323,1,14,1 -9320,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.80012036697008,32.2918165462436,1,23,1 -9321,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1546774557792,26.4608563356941,0,17,1 -9323,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3987957665231,31.1035307773985,1,25,1 -9324,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4803783358075,28.8155216461277,1,22,1 -9327,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.68303912552074,34.4245889707569,1,25,1 -9331,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3802937103901,32.7945712297152,1,21,1 -9334,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1588734863326,27.1214167890635,1,15,1 -9340,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.73525228817016,31.6532058245993,1,23,1 -9342,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.74550777673721,32.0161166627436,1,24,1 -9343,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0889146486297,32.9964450850396,1,20,1 -9345,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1456533428282,27.9975785478834,1,19,1 -9349,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2934876002837,30.4177542251686,1,18,1 -9354,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.79781202739105,27.994831648633,1,22,1 -9356,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1078797851223,31.3640147044141,1,40,1 -9358,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.435375982197,30.8179517326134,1,26,1 -9362,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.91632352070883,27.4585870907385,0,17,1 -9366,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.99741094908677,35.4603942608924,1,29,1 -9370,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.84443142660893,25.9079479818248,1,21,1 -9372,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1727169908118,27.2486498722121,1,15,1 -9374,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.0774146472104,28.5708650853237,1,21,1 -9377,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1422166586854,32.5122681456172,1,32,1 -9378,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2685165195726,29.0132677761588,1,15,1 -9381,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.5840960026253,25.5812960944543,1,15,1 -9383,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2941727600992,32.9704262857569,1,16,1 -9386,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.76764927338809,26.7227890023444,1,15,1 -9389,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.55691461637616,26.1560772338942,1,10,1 -9391,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.5540909464471,27.3110001459424,1,24,1 -9398,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.62810500198975,32.1602373919525,1,28,1 -9399,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.67777465283871,33.7790687438067,1,21,1 -9400,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0093939404469,33.7109381378556,1,27,1 -9402,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.83136785565875,32.6358943519593,1,28,1 -9405,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.67561754374765,31.5434256662153,1,25,1 -9408,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.72963812761009,27.5747799300401,1,9,1 -9409,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.54464780539274,27.8288905407551,1,20,1 -9410,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.88841703371145,28.6661549440046,0,21,1 -9412,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1864988578018,28.361930894882,0,14,1 -9414,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.98100603604689,33.3860508995376,1,30,1 -9415,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.68619961314835,31.0579690777643,1,29,1 -9418,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4723565720487,26.6778490178495,1,17,1 -9421,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3546854022425,24.3270186576777,1,10,1 -9423,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3544117361307,32.3027174678407,1,30,1 -9424,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1719944360666,28.3656379383261,1,12,1 -9427,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.85406624525785,29.4426585817532,1,15,1 -9431,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.89581131562591,26.8202202794296,1,18,1 -9435,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.92045317636803,25.012471991117,1,17,1 -9437,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0505832878407,32.1619172417571,1,18,1 -9441,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.7836257093586,33.8506008695139,1,25,1 -9446,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.117592244409,35.0126603996711,1,25,1 -9447,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.81900367024355,26.65113346923,1,9,1 -9451,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.99899207125418,32.168309990014,1,33,1 -9452,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2738961949944,30.7858101493444,1,30,1 -9456,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.7091317102313,28.5605832247785,1,17,1 -9457,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0188920414075,33.265427297509,1,36,1 -9459,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.79529803385958,33.0192785176299,1,27,1 -9461,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.55740299285389,34.2971438168463,1,23,1 -9464,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3509674747474,26.780777325867,1,17,1 -9466,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4324833257124,26.2026659459959,1,14,1 -9467,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2271879219916,26.5014266346393,1,6,1 -9472,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.93470651819371,25.3349319188161,1,13,1 -9473,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1706094734836,24.8041464679832,1,17,1 -9476,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1067935451865,28.1469416306487,1,13,1 -9478,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.260601516813,26.8339612479098,1,13,1 -9479,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.83177427155897,27.5701563683034,1,16,1 -9480,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.2329186466523,29.9429526834664,1,31,1 -9486,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.0873755039647,27.6582703376785,1,15,1 -9487,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3570196211804,31.4267208665676,1,20,1 -9492,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.63458960060962,33.7740648303003,1,28,1 -9493,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.59825517865829,31.4924164402193,1,20,1 -9494,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.53657811833546,34.3750058687017,1,26,1 -9496,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.82881913823076,32.9526906778571,1,26,1 -9503,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.97019290854223,27.9999043811414,1,10,1 -9505,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.56650433712639,32.6408231464704,1,21,1 -9506,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.345689364709,32.6033670211165,1,26,1 -9507,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.67407862050459,26.4817407773455,1,15,1 -9510,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.0939719416201,25.1911587969382,1,19,1 -9513,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.0882637253962,27.2961561514769,1,11,1 -9514,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.72080723126419,32.4752238161746,1,18,1 -9517,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.85789337614551,26.9409203895514,1,20,1 -9519,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.96398383146152,27.062314275484,1,15,1 -9521,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.75386038585566,31.0152497537036,1,35,1 -9523,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.025952474447,27.1410322406187,1,7,1 -9528,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1292113447562,33.6837117977364,1,27,1 -9533,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.50326634198427,26.1809048164089,1,15,1 -9536,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1866250727326,30.7735014116492,1,19,1 -9537,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1233488761354,31.9537114019267,1,18,1 -9540,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3470293036662,33.6162918111026,1,38,1 -9542,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2017113277689,26.4743829522795,1,14,1 -9549,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.4972019009292,33.3418887569373,1,32,1 -9551,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.4387884980533,30.5937322814876,1,30,1 -9554,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3277359881904,31.9475346075129,1,30,1 -9558,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3689852263778,34.6051979998724,1,29,1 -9563,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.483953953255,26.5839573321387,0,18,1 -9565,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3690508569125,31.2840197474512,1,28,1 -9566,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.63494491949677,27.3438783264758,1,12,1 -9567,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1591675358359,25.4257723185392,1,20,1 -9574,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2409300343134,27.3667507805287,1,20,1 -9576,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.2728399257176,29.1423265412891,1,21,1 -9578,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.3504112293012,27.6380528219393,1,21,1 -9582,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.9783184977714,34.4813556553988,1,32,1 -9584,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.4214763920754,26.6217773854056,1,16,1 -9586,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1023540236056,26.0366118094353,1,13,1 -9589,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0490289912559,34.6050626844234,1,25,1 -9591,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.3741908748634,27.7451951973608,1,18,1 -9592,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.0293320044875,33.5609992644162,1,27,1 -9593,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.474618565524,33.5105108777305,1,26,1 -9594,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.52346965111792,30.3225717651561,1,16,1 -9597,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.69570235838182,33.3680361108651,1,19,1 -9600,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.4743919793982,32.5427497178998,1,34,1 -9610,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.1478383636568,30.5807815230788,1,34,1 -9611,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,9.95082207908854,29.31817873141,0,14,1 -9613,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,10.415598481195,32.1579780401424,1,23,1 -9614,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.74639139370993,31.7351660391335,1,28,1 -9616,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,0,10.1615950881969,28.1344249034106,0,16,1 -9617,5,1,0.700213275570883,5,19,-2.42821696065783,1.01947567474492,475,1,9.57224858831614,30.1749260850948,1,37,1 -9620,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.74792326660827,25.8496447879351,1,19,1 -9621,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4593366940971,25.0881679107822,1,20,1 -9622,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.82245265995152,29.1601776089194,1,17,1 -9624,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.90641778660938,29.8922595431259,1,22,1 -9626,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3537740863394,26.6240345156221,0,12,1 -9628,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.98354018526152,33.0872710484743,1,23,1 -9629,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.96615937096067,24.8048490888949,1,14,1 -9634,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.92085051303729,30.5162901766915,1,19,1 -9637,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.9136192353908,22.9793759695936,1,13,1 -9638,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.64038287498988,30.9712604014662,1,22,1 -9639,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.7846196743194,28.2280606375558,1,17,1 -9643,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.2950263358653,32.2448369215616,1,26,1 -9649,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.69012283999473,30.2255626887767,1,23,1 -9660,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.84249033988453,26.6917670316838,0,7,1 -9666,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0815852552187,26.9006132101537,1,15,1 -9668,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.99334348202683,31.9020352188962,1,17,1 -9669,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.2630675872788,32.0270571295324,1,23,1 -9670,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.5523122062441,30.6433401295996,1,14,1 -9678,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0615431945771,31.268584804395,1,22,1 -9680,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3277154674288,30.3736164182293,1,20,1 -9683,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.97875921404921,33.0793841958584,1,25,1 -9688,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.89631247101352,25.0992726116308,0,16,1 -9689,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.99867624137551,27.2580414803041,0,16,1 -9693,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4488884075545,25.5155635288052,1,15,1 -9699,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3175555297639,28.7435967646234,1,17,1 -9702,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.7916612974368,25.9592244098567,1,17,1 -9704,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.2931974807288,30.4831689746333,1,17,1 -9713,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.76633236347698,30.7553191831411,1,19,1 -9714,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4853143920191,25.3477363489395,0,12,1 -9716,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.81692701112479,29.4992248828626,1,14,1 -9717,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.64449342130683,29.8295713554628,1,25,1 -9719,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.85493673780002,29.8423363786238,1,15,1 -9720,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.91152671119198,31.8963234952614,1,22,1 -9721,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.66640274319798,29.4372231559105,1,14,1 -9727,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0489823024254,31.4270430861546,1,27,1 -9729,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.99206081405282,22.7716568256533,1,12,1 -9733,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.79596401099116,24.4458623421974,1,10,1 -9737,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0837110131979,29.6289893503736,1,18,1 -9738,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.54132424201816,25.8868448518711,0,10,1 -9739,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.1937464801595,22.7131770106971,1,12,1 -9747,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3122831396759,29.4134014545555,1,28,1 -9748,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.66900251246989,31.8449013860213,1,11,1 -9756,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.350440202048,31.4606726774156,1,21,1 -9761,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.53137962566689,23.3609805469864,1,11,1 -9764,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3963145010639,30.4382167733797,1,20,1 -9767,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.68811398674734,26.3037889718882,1,10,1 -9770,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.65662342007272,22.9410176590523,1,17,1 -9771,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.90955726336688,26.0806050348693,1,15,1 -9772,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0062033871654,25.7573072877465,1,15,1 -9775,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1628847753163,31.2909636511768,1,23,1 -9777,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.83555811550468,30.953608405786,1,21,1 -9778,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1173385216389,31.2772998232137,1,25,1 -9780,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.77772954944521,27.7572654911966,1,4,1 -9788,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0137864642311,32.5611000794646,1,18,1 -9790,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.84192353719845,23.8710793047788,1,16,1 -9791,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1648893430829,30.2618479801018,1,18,1 -9798,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.413620328065,28.4325752246775,1,17,1 -9799,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.76629215921275,31.0574490646279,1,31,1 -9803,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.7818107958883,24.2619257478511,1,12,1 -9805,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.97689459868707,25.998551538612,1,12,1 -9811,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1462219341192,30.4070707506572,1,23,1 -9813,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.88319805380888,22.3368840041105,0,6,1 -9816,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2135869422927,26.2103416254446,0,10,1 -9820,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4322749141138,34.1271839007522,1,24,1 -9824,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.97589295683429,25.0941511368429,1,7,1 -9829,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2486444658134,26.695156688288,1,9,1 -9830,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3232608570252,30.1527064500122,1,16,1 -9833,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0602365054656,26.9715992043829,0,10,1 -9835,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.280878624646,25.0988347175748,1,11,1 -9836,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.2229687361978,32.4221203626452,1,23,1 -9841,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0075526216533,22.3434993861243,1,12,1 -9844,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.53006293158978,30.5230318232025,1,15,1 -9845,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.71735592675395,27.571934915842,1,25,1 -9850,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.2862419465091,28.3678602139522,1,18,1 -9854,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.77717147022486,30.5577784886088,1,10,1 -9860,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.79179793340154,28.7989338050762,1,27,1 -9861,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.392212878447,25.526184286395,1,7,1 -9862,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4815672778059,27.9982965281337,1,21,1 -9868,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4305723202415,31.9269301743916,1,30,1 -9869,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3796219963115,28.8596861674573,1,23,1 -9870,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.82455534068868,29.1999039938551,1,13,1 -9871,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3466258454137,31.6031393637104,1,21,1 -9875,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.554166050395,29.2238279259541,1,13,1 -9876,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.75471428479068,32.1167636431932,1,22,1 -9877,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3975732170511,25.1462647228239,0,14,1 -9881,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0188817030285,23.4546881109932,0,16,1 -9886,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.77754454570822,24.1011333632066,1,12,1 -9893,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.63765415758826,29.2015567247882,1,25,1 -9897,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.2116160425358,29.0017956790266,1,18,1 -9899,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.91870199260302,31.1867052571396,1,24,1 -9900,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.6154800390359,29.7357515622445,1,17,1 -9901,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.88400988606736,25.3273685236878,1,11,1 -9905,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4736911193468,26.5344242372958,1,12,1 -9909,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.52074536960572,26.4762744495641,0,15,1 -9914,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.2043208102696,30.7983122309332,1,14,1 -9918,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.89838765980676,23.8997627585862,1,9,1 -9926,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.65346899302676,25.5442957146256,1,10,1 -9927,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.1000131082255,24.7985038559055,1,12,1 -9929,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.77200503530912,26.3262150203448,1,17,1 -9932,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.73936166055501,33.3998765598259,1,13,1 -9942,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.2415514662862,23.7588708082519,1,10,1 -9943,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.96092105377465,30.1735173607532,1,14,1 -9946,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.84391498495825,23.8670645971454,1,10,1 -9947,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0117225970607,23.8784953268754,0,12,1 -9948,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.5946023624856,26.0154365323171,0,12,1 -9954,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4897747447249,28.4088860159064,1,30,1 -9962,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.52138092671521,27.2704096958502,1,5,1 -9963,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.2433001480531,30.607123508308,1,17,1 -9966,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.4056472589727,30.4157224211074,1,21,1 -9967,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4609214996453,24.4513597114993,0,11,1 -9970,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.273141434649,25.4647941921886,0,15,1 -9974,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0838288092054,29.0463130556707,1,5,1 -9976,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.81368801812641,22.6524422789786,0,12,1 -9984,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1843661130406,29.1562967935335,1,16,1 -9986,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.3082920529414,24.037383015624,1,9,1 -9988,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1086079971865,29.122072772249,1,15,1 -9989,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3233528696001,30.4532809003783,1,28,1 -9993,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.2141551526729,31.771438476167,1,16,1 -9994,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.1609629483428,25.6549888585588,1,9,1 -10010,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4527778448537,24.4390166117144,1,14,1 -10014,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.2733770525083,29.7871358085244,1,28,1 -10017,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.81415722472593,24.1712109598846,1,13,1 -10018,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.87475649639964,23.4662116967692,0,14,1 -10020,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.95354184834287,29.0281345056154,1,14,1 -10021,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0076484924648,26.0025215219604,1,13,1 -10027,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0401105021592,23.9191742023569,1,16,1 -10030,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0955845066346,31.0028835408602,0,24,1 -10031,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.59064449020661,23.6050458808836,0,6,1 -10032,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.1989029408433,28.938816941852,1,20,1 -10033,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3201432547066,29.5088392013414,1,15,1 -10037,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0898027217481,23.8865195191656,1,10,1 -10042,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.70239641610533,23.3508435823454,1,17,1 -10043,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.90159964817576,31.8045392638722,1,26,1 -10044,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0368341400754,23.5182905609085,0,10,1 -10045,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.63767379894853,32.3883574539753,1,21,1 -10047,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.50754658225924,29.4238937327024,1,22,1 -10050,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.94627129216678,30.9530002913071,1,25,1 -10052,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0566302142106,25.5278696692403,1,9,1 -10055,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3129976186901,31.6039001705425,1,17,1 -10065,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.90241242735647,24.643248803024,0,10,1 -10068,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.98357243696228,33.9198604888348,1,21,1 -10071,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.0906592397951,29.6879001763337,1,19,1 -10077,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.1466250268277,22.8714643974878,1,17,1 -10081,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.94667814858258,31.0487431408145,1,29,1 -10082,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.96075146016665,26.0646166441441,1,12,1 -10084,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,9.67066233605146,29.73457994563,1,19,1 -10085,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.0094242633786,26.8755367337301,0,11,1 -10087,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,10.4328225872014,21.7415974783607,0,10,1 -10088,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.58116497378796,22.3933315299641,0,12,1 -10090,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3165750575718,32.0994999380844,1,15,1 -10093,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.79015599587001,26.0841090436532,1,12,1 -10096,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,0,9.85054117906839,25.3946322000082,1,19,1 -10102,6,1,-0.183813053799111,1,20,-1.10939256877603,-1.47519295009089,487,1,10.3009216859937,29.4891558566899,1,24,1 -10105,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.59588452917524,27.5838729361502,1,12,1 -10108,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.59394074650481,20.394408780596,0,11,1 -10109,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.98777838214301,25.1683770350019,1,14,1 -10110,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.1041814617347,23.5316133649079,0,11,1 -10112,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.94907999457791,27.8427564460636,1,16,1 -10116,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.56439627055079,27.7408442965359,0,14,1 -10121,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.699805700453,23.3647700378066,0,9,1 -10122,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.69821837497875,26.1552979932422,1,16,1 -10126,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4913191825617,26.5563478958849,1,17,1 -10129,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.52999230800197,23.000614120769,0,11,1 -10131,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0080335272942,22.2389705598162,0,11,1 -10138,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3719934045803,25.8781727275539,0,7,1 -10141,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.69158692518249,25.6089028596078,1,12,1 -10142,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3556298303884,25.8146468423789,1,14,1 -10146,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.85948209976777,28.959228502849,1,16,1 -10150,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.58218975644559,24.2211930585513,1,9,1 -10151,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.63640390755609,25.6984754642139,1,9,1 -10152,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.66147983097471,27.5712817591513,1,16,1 -10155,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4611775816884,25.7306358307504,1,16,1 -10159,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1044678583276,21.5302194969507,0,5,1 -10163,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.81654950347729,20.1109082310257,0,8,1 -10166,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.396463948302,21.9382752443498,0,11,1 -10168,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2388584383298,25.0309004916656,1,11,1 -10169,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.79041302832775,26.9371864949193,1,20,1 -10171,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1340165853035,20.8794584316955,0,6,1 -10173,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2463452452794,26.4353097715237,1,10,1 -10174,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0868720100261,26.9149636351892,1,19,1 -10175,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.7835244871676,26.4068556129534,1,17,1 -10176,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4409950822592,26.9990958837137,0,8,1 -10177,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.90355139179155,21.758873696319,0,10,1 -10178,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1042444794439,20.1153620314118,0,7,1 -10179,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.482623223681,25.9555508172212,1,24,1 -10180,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.84811358619481,26.9724508531324,0,12,1 -10184,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.55801910837181,22.3689907419641,0,12,1 -10185,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2404055837542,26.2268232395426,1,14,1 -10187,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.161201688461,27.2947679923054,1,10,1 -10190,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0675618157256,25.999911777546,1,12,1 -10191,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.62921261205338,19.8272528503275,0,11,1 -10194,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4231129207183,27.3663575817976,1,12,1 -10196,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.57940006814897,21.3076515677926,0,8,1 -10201,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0956309156027,27.5886457277377,1,14,1 -10202,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.009284641128,21.4989570080735,0,9,1 -10204,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.85962948016822,20.9964745547877,0,6,1 -10205,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.90541791007854,28.1471628666159,1,13,1 -10210,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4032018177677,23.8786980860994,1,16,1 -10211,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.68584734504111,25.5873010813602,1,12,1 -10212,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.2074538921006,20.7452031115894,0,5,1 -10216,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3384544125292,19.9283683179261,0,7,1 -10220,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0711355162784,23.4468981034656,1,16,1 -10221,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3864402952604,22.4991185899736,0,13,1 -10222,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.78632936417125,27.8073936637516,1,20,1 -10223,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.2221019498538,20.9413558682192,0,6,1 -10229,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.57529802946374,17.074299773117,0,13,1 -10241,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0428587165661,25.0889479918391,1,16,1 -10242,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3013929508161,26.8451110215767,0,18,1 -10246,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.676716997521,26.5494890366945,1,12,1 -10248,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3268882322591,26.1393242043654,1,8,1 -10252,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3610481314827,29.3452912988044,1,11,1 -10257,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4028010196052,26.4687684337554,0,15,1 -10258,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.72932309750468,20.5871102323932,0,5,1 -10261,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3069633324631,27.026970975897,1,17,1 -10262,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.2691250967328,21.1584770303279,0,6,1 -10265,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.86085175652988,22.2911239125362,0,9,1 -10266,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.69338649488054,23.7618011203676,1,9,1 -10268,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.99348509358242,27.7459697973313,1,11,1 -10269,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.260620604502,26.8076199772051,0,16,1 -10277,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0590054108761,24.6042781530558,0,6,1 -10278,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.56090628681704,25.2156852795766,1,7,1 -10280,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.2729399618693,21.4392306609272,0,3,1 -10283,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1271388698369,22.0929804024947,0,11,1 -10286,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.85631047352217,26.2522845129821,1,16,1 -10289,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.59674360533245,21.2283399420732,0,8,1 -10292,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0915391037706,24.7639623758291,1,15,1 -10296,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.77919981861487,23.7169114420437,0,10,1 -10301,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.93365343404002,27.7174045991852,0,13,1 -10305,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3673741179518,23.5141911433608,0,7,1 -10307,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3878921042196,28.8859127957659,1,23,1 -10311,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1830014833249,24.7787077383653,0,6,1 -10312,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.5717158515472,20.7020084755024,0,4,1 -10323,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.4702537551057,23.0984342172186,0,11,1 -10325,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.83869074448012,22.2927912383594,0,5,1 -10327,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0256384543609,25.7062762186826,1,15,1 -10334,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2296457528137,25.5680057908494,1,13,1 -10344,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.89245180808939,19.8726595193299,0,11,1 -10352,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.74454188137315,25.3998481878545,1,14,1 -10361,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.64280351577327,27.9658160279726,1,21,1 -10363,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2781939876731,29.1193052942823,0,14,1 -10366,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.022434677463,20.6059854131626,0,7,1 -10367,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1977574045304,19.3421746150475,0,10,1 -10371,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.83905950537883,19.7489378139118,0,15,1 -10374,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.93120827665552,20.26843313118,0,9,1 -10381,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.60440912027843,24.7452243269384,0,16,1 -10382,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0875737201422,27.3725218344704,0,21,1 -10400,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0188824157231,23.2383886866588,0,7,1 -10404,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.1132755386643,25.3515798576613,0,16,1 -10411,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.93401231849566,25.6411769340256,1,14,1 -10412,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.78980653407052,26.5987645541609,1,12,1 -10416,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.53344084089622,29.4283967930868,1,9,1 -10418,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.1498992044944,27.7787985721593,0,18,1 -10421,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.2609267393127,22.8090889513816,0,9,1 -10423,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.50678803026676,23.2621350912324,0,12,1 -10425,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4434457048774,25.290294443581,1,17,1 -10429,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.4071487584151,27.7821573055737,0,13,1 -10435,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.74881988530979,20.4161971747628,0,6,1 -10441,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.75317515782081,26.1017252974242,1,15,1 -10453,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.64412890560925,24.9747441635816,1,13,1 -10458,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1127372954506,21.8823543458363,0,4,1 -10462,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2842294524889,26.9013903611803,0,15,1 -10467,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0953517609742,25.8689632396075,1,13,1 -10469,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.58379003265873,21.3382895244886,0,11,1 -10476,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.022621863056,21.8294868799695,0,7,1 -10480,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.60579992877319,28.1151423662787,1,16,1 -10481,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.76196556142531,21.8363741182354,0,5,1 -10484,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.6803987249732,27.5980954128634,1,14,1 -10485,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3656928297132,26.6898669631353,1,14,1 -10487,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.343445190927,21.8442792744168,0,7,1 -10493,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1152251763269,21.3304590859017,0,10,1 -10495,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.2056685227435,21.5956242049991,0,3,1 -10501,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.0923304688185,25.7516964073924,1,14,1 -10506,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.69570417096838,25.6457048037503,1,12,1 -10509,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.2776692160405,20.0561074258943,0,10,1 -10510,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.94486669637263,24.1504342330617,1,15,1 -10515,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3028407979291,25.6165334533182,1,11,1 -10516,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.460998106515,26.8287158593695,1,13,1 -10518,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.1237715722527,26.7546828119085,1,11,1 -10520,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0101125410292,19.9436536802002,0,7,1 -10521,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3606201247312,25.2781573615066,1,18,1 -10522,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.70498644001782,23.8239895626239,1,13,1 -10530,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.97200071113184,22.7205644280671,0,9,1 -10536,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2739023563918,26.8193603789365,0,18,1 -10539,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.4964025984518,20.5399057487633,0,11,1 -10540,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.96605107863434,25.7032485271285,1,17,1 -10541,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.2879340406507,28.1867521921538,1,14,1 -10542,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.8267945102416,20.6164307430355,0,5,1 -10545,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0438710860908,20.5509375013221,0,6,1 -10551,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.54279915406369,26.237056795114,1,14,1 -10554,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.088707926916,23.3880921097544,0,7,1 -10557,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.357401862042,27.4045533526614,1,18,1 -10559,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0188528914005,21.669778866087,0,8,1 -10562,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3776613797527,22.947123480078,0,11,1 -10564,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0355649990961,21.0261836925921,0,8,1 -10566,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.1263157622889,21.6369796646751,0,12,1 -10572,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,9.86712545179762,24.902717294266,1,20,1 -10573,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.3183110996615,21.5469074092498,0,9,1 -10575,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,1,10.3174069116358,25.5352801139316,1,12,1 -10576,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.76546937110834,24.6776484897483,0,7,1 -10578,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,10.0494497239124,22.0468880672951,0,9,1 -10580,7,0,2.61803289632224,8,21,-1.20336506001069,-0.127542811086285,481,0,9.97730363463052,21.4161497990951,0,8,1 -10590,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.85084635554813,21.9198225946534,1,14,1 -10591,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.9519111411646,19.0223987598982,0,4,1 -10592,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1908614442218,18.3730455004611,0,16,1 -10594,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.20077751996,25.5253814793715,1,11,1 -10596,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.90284791821614,19.9263322495099,0,9,1 -10597,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.62913802708499,22.5035810758453,1,11,1 -10599,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1317404308356,20.7558615746,0,6,1 -10601,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.64479042496532,16.2083356544017,0,7,1 -10606,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0840288165491,19.1787135515964,1,18,1 -10612,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.91394683346152,24.8284066972836,0,6,1 -10617,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.61551042203791,18.3139935081668,0,6,1 -10625,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4903815183789,19.3724779425752,0,6,1 -10627,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.67803978989832,25.3313752927755,1,14,1 -10628,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.60215211543255,22.9459870720164,0,9,1 -10630,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3797060411889,22.2065021861588,0,12,1 -10632,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2349308230914,17.8428589995748,0,6,1 -10637,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.50117447064258,20.4901661549845,0,9,1 -10639,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.4510029912926,24.3236255356968,0,11,1 -10640,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0666405207012,22.2434087598892,0,10,1 -10641,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.52575913118199,20.0816139751642,0,10,1 -10642,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.87211629794911,23.702842108218,0,15,1 -10643,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.93798901722766,22.9628548671212,0,8,1 -10647,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2178913317621,24.0486289167312,0,9,1 -10649,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3981352036353,25.3134552528763,0,12,1 -10651,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.67415383388288,25.4809840730786,0,9,1 -10652,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.68182222312316,26.1449290619314,0,8,1 -10654,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.75450705783442,25.9954590153524,1,13,1 -10658,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.99906124104746,20.8271531367213,0,5,1 -10659,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4267220634501,20.4165507298977,0,11,1 -10662,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.79721792903729,21.9898333589303,0,9,1 -10663,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1841810313053,21.572987710309,0,5,1 -10668,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3128660377115,23.1067991695842,0,12,1 -10673,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4177586792503,20.143389007467,0,8,1 -10674,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.88052357593551,24.121278540473,1,10,1 -10676,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2156070463825,16.7369717991483,0,9,1 -10679,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0113384495489,23.2627592154725,0,11,1 -10682,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.9964560312219,25.3562739317176,1,10,1 -10683,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.59298573620617,22.7142028046923,1,12,1 -10685,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.96809467533603,27.8513321831752,1,9,1 -10687,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.59802498645149,26.9799633338642,0,18,1 -10693,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1997630477417,21.1806997662486,0,10,1 -10694,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.94197875075042,24.8339581474044,0,12,1 -10695,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.66623512259685,21.1681077206594,0,7,1 -10699,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.3650038293563,21.3008885840485,0,6,1 -10701,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2254121478181,18.255521230938,0,10,1 -10702,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2146264044568,20.4849665394081,0,4,1 -10703,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.71434806426987,25.3073747717909,0,7,1 -10708,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.59804959292524,23.080629722496,0,12,1 -10711,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.67684430186637,21.0010307256937,0,9,1 -10713,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4305257296655,18.5188417246822,0,9,1 -10715,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2501812004484,22.6930767539755,0,9,1 -10724,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.59452004334889,19.6788252974558,0,14,1 -10729,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.63763564429246,25.2748196633136,0,13,1 -10730,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.4097887203097,25.87692581965,0,16,1 -10732,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.89713356946595,22.7691343717718,1,9,1 -10735,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1818107627332,25.039522727428,1,13,1 -10742,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.58544325316325,24.3603655033705,1,13,1 -10743,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2317870955449,22.158299723821,0,6,1 -10749,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.76771509717219,21.4586706377795,0,8,1 -10750,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1204426975455,26.9222832743212,1,7,1 -10751,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.355636843713,24.7585188994904,0,7,1 -10753,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.70846405928023,24.5619614587314,0,14,1 -10754,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.339747826336,24.5178526695081,0,12,1 -10758,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.90122208255343,21.6029789336196,0,4,1 -10759,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.94616050389595,24.8794669335439,0,12,1 -10763,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.68031295877881,19.8761057159592,1,9,1 -10765,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.5629788057413,17.69153481309,0,2,1 -10766,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.458463649964,23.8620549889614,1,12,1 -10768,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.75025839242153,26.9932810137972,0,10,1 -10773,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.96726763201877,26.0287716295938,1,14,1 -10775,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4853700369131,18.4160889245477,0,3,1 -10777,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1844770447351,24.9984142399835,1,10,1 -10782,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.0938037303276,17.4117212355712,0,2,1 -10784,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2448065730277,26.5459764578574,0,17,1 -10795,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4009042282123,19.5361779228075,0,10,1 -10796,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0939005063847,23.7994982874077,0,12,1 -10800,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.89782438939437,24.2692722548275,0,6,1 -10802,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.54771307040937,24.1172532732431,0,14,1 -10805,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.50776885077357,27.0671424786469,1,11,1 -10811,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.3836611099541,19.4804687908212,0,4,1 -10812,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.52182185673155,19.435622501251,0,8,1 -10813,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.66865988704376,26.2007772396031,1,17,1 -10814,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.4929232483264,24.1502109335289,1,11,1 -10815,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2521755662747,24.3194076457122,0,16,1 -10817,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.50713888998143,25.7569519730869,0,7,1 -10818,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.50518850889057,26.8299989093696,0,13,1 -10820,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1873189080507,16.6031891021109,0,4,1 -10821,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.59118994348682,24.5888475450163,0,14,1 -10824,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.53944933856837,24.0945444306593,0,9,1 -10829,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.54598756507039,23.5836306966394,0,8,1 -10837,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.7993610589765,17.5618246243118,0,10,1 -10839,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.99063622020185,20.2083167832643,0,6,1 -10840,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.61787665588781,25.5837409259413,0,11,1 -10841,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.3555387405213,19.7515772960663,0,5,1 -10848,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0934105578344,25.5509370019324,1,12,1 -10852,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.3667864045128,17.3307350010511,0,7,1 -10854,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.7811192101799,23.4550147927702,0,6,1 -10861,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.77671840810217,19.9968682318488,0,7,1 -10862,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.97689075698145,19.0152902240587,0,7,1 -10866,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2418223149143,25.0771582299466,0,8,1 -10867,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2113043975551,19.7907796139507,0,9,1 -10868,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2778871713672,23.9523742381686,0,12,1 -10873,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.68429589550942,18.4550101600634,0,8,1 -10877,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.69049194850959,18.8272665226495,0,7,1 -10879,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.76598131703213,22.3047348007056,0,7,1 -10880,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2166034174152,26.7317979649806,1,16,1 -10881,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.95467187231407,23.3997057866428,1,9,1 -10884,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.58603809308261,17.3045217782545,0,6,1 -10890,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3230861255433,23.4129898052574,1,12,1 -10893,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.080314447172,20.91303490022,0,8,1 -10900,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.68095227144659,18.7537534131082,0,5,1 -10901,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3880649476778,24.2076092296382,0,4,1 -10903,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.32414545957,22.1343400631182,0,4,1 -10904,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3488881003577,24.6041507319006,0,7,1 -10906,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1265709702857,17.5523826774835,0,5,1 -10909,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.78054394922219,23.4254521294652,0,9,1 -10915,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.4925310171675,24.8372893049301,0,11,1 -10917,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.70148958265781,19.6357714101031,0,8,1 -10920,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.64601961406879,20.139330342039,0,3,1 -10928,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.99868501583114,25.8684576770048,0,14,1 -10930,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.56563192163594,24.0293664418169,1,6,1 -10935,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0230416462291,22.8504118624772,0,12,1 -10937,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.88492604787461,26.6468887776204,1,12,1 -10940,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.51162732997909,21.0254130752042,0,7,1 -10944,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.62632192741148,17.3077895488931,0,4,1 -10948,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.4180177608505,20.734026912908,0,10,1 -10950,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1620294041932,21.5406971108563,0,8,1 -10952,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.86714137112722,16.358095905241,0,9,1 -10960,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.4211497118231,25.0842761888186,1,7,1 -10962,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.82255155872554,19.8657180647599,0,10,1 -10969,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.95936089055613,17.9034328396931,0,4,1 -10971,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2073185944464,18.8163814253448,0,7,1 -10976,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.72947527072392,19.2563264757647,0,7,1 -10979,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.0352272791788,24.9624830494379,0,12,1 -10980,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.62191161396913,26.8007039228124,0,7,1 -10982,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2646433266345,17.0501986896367,0,6,1 -10989,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.63942346116528,24.4839523430306,1,14,1 -10990,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2850836971775,17.5984031867448,0,4,1 -10992,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.3221608023159,18.9324548556778,0,9,1 -10993,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.63304074364714,24.5029247978293,0,14,1 -10994,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.94432703289203,23.2359172530698,1,8,1 -10997,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1356741604395,20.690631823841,0,6,1 -10999,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.91898026084527,21.5559781638967,0,14,1 -11007,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.0204316494055,19.7059916928046,0,10,1 -11012,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.75231490447186,22.6076091141677,1,9,1 -11015,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.9366171839647,21.8146245258674,0,4,1 -11016,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.52341921674088,22.1884961004208,0,11,1 -11024,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1418117671274,18.5469627677184,0,5,1 -11031,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.71205056924373,21.3095350375087,0,13,1 -11032,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3615903602913,25.228008808494,0,7,1 -11040,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3441241066903,24.0922063145768,0,8,1 -11041,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2454818540718,22.753915350607,0,10,1 -11042,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.63155302987434,18.9023547378327,0,6,1 -11048,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.82124466844834,21.8069154275369,0,5,1 -11049,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.3384834148455,20.0133744760474,0,4,1 -11056,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.2363692373037,25.1788018007807,0,6,1 -11061,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1908763174433,22.2968633143698,1,8,1 -11063,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.1936361021362,19.1676274495658,0,1,1 -11065,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.3414126522839,24.428521365901,1,11,1 -11066,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2011636190582,16.4911260141004,0,7,1 -11069,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.64899068954401,24.6574763012694,1,14,1 -11071,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,10.1070097186603,27.1130810537981,0,13,1 -11075,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.53569869091734,22.3778464968671,0,17,1 -11077,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,10.2833950747736,19.4107409247682,0,8,1 -11082,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.64417147473432,25.4846398656882,0,10,1 -11096,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.7019925636705,24.0627510245639,0,16,1 -11097,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.64190307422541,23.2533512022691,0,7,1 -11101,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.77109025302343,23.2917897457153,1,10,1 -11102,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,1,9.50589779275469,21.9207882829563,0,18,1 -11103,7,0,2.61803289632224,8,22,-3.4142052009394,0.881787841085699,518,0,9.83025866677053,20.7190350387961,0,9,1 -11104,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.62155351834372,27.5654989483165,1,10,1 -11106,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.81527901487425,22.4145580762712,0,12,1 -11109,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.83667063247412,26.5499358702332,0,8,1 -11110,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.77951825479977,25.5921120341649,1,17,1 -11112,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.63199977413751,29.1409252585944,1,18,1 -11114,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.4144073131029,22.3528846744131,0,10,1 -11116,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.76468131830916,25.834201848352,0,11,1 -11122,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.99387683463283,22.8864910981157,0,7,1 -11123,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.75144392065704,22.897844797492,0,6,1 -11124,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0451218164526,22.4294795016785,0,7,1 -11126,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0299771556165,28.5840647338837,1,13,1 -11127,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.50008880789392,23.1381803154534,0,8,1 -11135,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2498798666056,27.0862618957089,1,15,1 -11137,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.6693155283574,29.6755820531423,1,14,1 -11138,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.1173847364262,23.5569084401178,1,6,1 -11142,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.2695642595645,22.7687901255031,0,11,1 -11147,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.75878600706346,27.1134465474617,1,11,1 -11148,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.61283031408675,21.1552004225101,0,5,1 -11150,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.2187456903048,24.929568047198,0,8,1 -11152,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.93547129980288,26.6527614830995,1,13,1 -11155,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.58646959532052,23.1038660973076,0,9,1 -11156,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.68227096274495,28.4410844453569,1,17,1 -11157,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.75953086512163,22.7903900094316,0,6,1 -11158,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.382488126168,25.3762185632078,0,6,1 -11166,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.64957073004916,30.645207996676,1,27,1 -11169,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.94012854364701,27.8910484567735,0,20,1 -11171,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3970181639306,22.0501801138436,0,7,1 -11173,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2337590262759,27.3446736320092,1,21,1 -11176,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.88934163982049,22.989802880174,0,11,1 -11179,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0561137951445,23.8994951309884,0,10,1 -11180,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1685994679574,28.4328848959979,1,17,1 -11182,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3779202587903,22.7718496451931,0,9,1 -11201,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.54636194626801,24.051676309439,0,11,1 -11205,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2944051460363,27.8830678399879,1,19,1 -11209,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.356362742139,25.9851857736929,0,7,1 -11210,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.339907386573,24.0700359018318,0,13,1 -11211,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.53072634921409,26.6452190560917,1,15,1 -11213,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.57588513987139,26.1593897216774,0,13,1 -11218,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.81226972350851,24.7162452263068,0,11,1 -11219,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.56106275529601,28.7035910089443,1,12,1 -11222,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.056375668617,26.4865431332104,1,11,1 -11224,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.51183345192112,29.0008249037778,1,11,1 -11227,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2499614264816,31.6407731822202,1,24,1 -11228,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.69704724475741,21.3072321350421,0,8,1 -11229,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.91239885124378,25.7273903776613,1,20,1 -11232,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.58164517697878,27.3952696423613,1,15,1 -11234,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3550995981786,20.6068711645688,0,11,1 -11246,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.51989917294122,28.0231252696426,1,26,1 -11247,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.55906382692046,20.9110021455909,0,4,1 -11252,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.87555684545077,26.6933242677792,1,14,1 -11253,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.78043898846954,27.3578930225613,1,15,1 -11255,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.67068376974203,25.2887089433843,0,7,1 -11256,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.1012965580449,21.8591779339493,0,11,1 -11257,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.62411752529442,21.7418444946917,0,12,1 -11258,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.66817100532353,23.126496730054,0,8,1 -11266,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2125378167257,28.1084841525877,1,23,1 -11267,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.71028590295464,21.5837088143292,0,10,1 -11270,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.89256049622782,24.2864441882613,1,12,1 -11271,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.69174888986163,29.8543255777292,1,17,1 -11274,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.2640833277255,22.2285271948329,0,10,1 -11276,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.473117666319,27.0528320245026,1,13,1 -11277,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2397997591179,27.6254345399681,1,18,1 -11282,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.54226450365968,22.514450561304,0,6,1 -11285,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.8312797495164,21.8378771853444,0,5,1 -11287,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2437876479235,28.5540354200039,1,12,1 -11294,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.69018498063087,27.049389499936,1,13,1 -11295,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3484391600359,24.2827712987876,0,6,1 -11307,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.79136753152125,26.4657473470376,0,23,1 -11310,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3356830053963,22.8483001976179,0,9,1 -11312,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.88764643506147,27.7578496110255,0,15,1 -11313,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.2147309426218,25.10451126839,0,12,1 -11322,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.87356051476672,21.2236327015069,0,8,1 -11325,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3133545392193,29.4472207763921,1,11,1 -11326,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.306949587306,27.4744821772885,0,16,1 -11327,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.58989897300489,27.3588377907973,0,12,1 -11328,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1936454677489,26.2252001452009,1,21,1 -11331,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.82471431000158,21.8325177827815,0,10,1 -11337,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.53153279982507,23.1525745491153,0,5,1 -11340,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.62540338374674,29.6980717567274,1,18,1 -11344,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3537616464309,28.2145584852625,1,12,1 -11345,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3727278774604,21.323351598127,0,13,1 -11346,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3245712895878,22.1304470462724,0,7,1 -11352,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.4937785754446,27.8701827876936,1,18,1 -11355,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1363289887086,31.1276811998711,1,15,1 -11359,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.57094410574064,22.6056129528328,0,13,1 -11361,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3860817551613,22.7475646548968,0,9,1 -11363,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.7269471695181,22.5408987623783,0,6,1 -11367,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.37309197383,22.4051902287303,0,7,1 -11378,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.374495168915,28.2073687567045,1,19,1 -11380,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.4461459065787,22.1826480714155,0,7,1 -11383,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.88371942727827,27.9240248676635,1,22,1 -11387,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1893918565474,28.0386999986968,1,13,1 -11390,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3266924878117,20.4915481805256,0,4,1 -11394,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0036141555756,24.7799290711538,0,8,1 -11397,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2155147474259,28.7324186084095,1,15,1 -11399,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.6222119696904,26.0698090329583,0,8,1 -11401,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.77748796879314,30.1255108533217,1,23,1 -11405,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.4101352714933,26.4789757730953,1,13,1 -11406,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.50442732381634,26.8986967511229,1,18,1 -11407,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3459313020576,29.1059573152456,1,13,1 -11412,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.94640535395592,29.3246271223168,1,11,1 -11414,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0134738672059,30.8237468183965,1,14,1 -11422,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.2228058860637,22.0050588593728,0,10,1 -11429,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.9867033129558,22.1574769414638,0,17,1 -11432,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.75379557302222,29.1138068009805,1,11,1 -11438,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3362826860975,23.8180636816377,0,15,1 -11439,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.65574885299429,22.6498266601905,0,6,1 -11445,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0776673173532,21.9135032188128,0,4,1 -11448,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.2094625108875,20.0805024242163,0,12,1 -11449,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2340990835801,26.3796407612949,1,14,1 -11451,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.6328760876786,26.3189581397216,1,19,1 -11453,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.75394232547842,23.8364347085108,0,13,1 -11455,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.452330940403,29.2497164211909,1,14,1 -11458,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1420905583072,27.4769311363733,1,12,1 -11459,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.2161877446342,22.6952091231303,0,8,1 -11460,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.4352537763771,28.9822952141218,1,16,1 -11462,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.88454071222804,21.4300939382394,0,6,1 -11464,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.779516691342,27.6291570075364,1,12,1 -11465,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.82708469592035,27.227378382644,1,16,1 -11469,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.57918630959466,28.1671988797964,1,15,1 -11479,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.90449579525739,27.6952896828892,1,12,1 -11483,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2164021227509,28.538059696972,1,14,1 -11486,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.89406381105073,26.866731487535,1,18,1 -11487,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.80119915283285,24.3679904196935,0,9,1 -11488,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0995533408131,22.1387132914472,0,11,1 -11489,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.51383620849811,27.7588659981129,1,14,1 -11493,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3202888886444,29.3705852200306,1,13,1 -11494,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.76670516631566,29.0785142750314,0,14,1 -11495,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.9158474043943,28.8828851660754,1,21,1 -11496,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.4747980146203,21.2360580355385,0,9,1 -11497,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.4997545760125,22.6312937214828,0,11,1 -11499,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.65842610807158,25.0555952826325,0,10,1 -11504,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.58028675569221,21.9936250075713,0,11,1 -11506,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0245043463074,21.4154311809665,0,10,1 -11512,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3756535351276,24.9282518758743,0,4,1 -11513,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.57030669273809,19.5676986513036,0,8,1 -11514,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.5044206646271,23.5846287772375,0,10,1 -11515,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.73260420653969,27.7225068608265,1,20,1 -11517,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.66057977080345,29.0758296584314,1,14,1 -11522,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0823841649108,21.415321413718,0,7,1 -11525,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.0253434104379,28.0796610882421,1,23,1 -11526,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2323670894839,27.3819744596674,1,15,1 -11535,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.3456348483451,29.5542909856932,1,19,1 -11539,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3019899250939,21.9103105263266,0,11,1 -11541,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.76315608876757,27.8476328263198,1,15,1 -11542,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.63826024532318,22.101926098846,0,9,1 -11543,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.2798491520807,30.3188422068349,1,16,1 -11546,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.77812843350694,20.7348016757369,0,12,1 -11547,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.3505538906902,21.8048896930644,0,11,1 -11549,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.60763183119707,21.3843395365399,0,7,1 -11550,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.70737797557376,24.5848507342108,0,8,1 -11557,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.82167829363607,25.3747081994389,1,11,1 -11558,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,9.80462324875407,22.8621250746197,1,10,1 -11562,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.85073503199965,28.0617641984717,1,17,1 -11563,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,9.60134400543757,26.3972333408387,1,20,1 -11565,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.1445660092868,24.7931170860687,1,12,1 -11570,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,1,10.472467059968,26.8604072864128,1,12,1 -11571,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.4946700185537,22.0822540826492,0,12,1 -11573,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.0365215367638,20.171776599664,0,5,1 -11577,7,0,2.61803289632224,8,23,0.0510850805752998,-1.34848566460118,475,0,10.1477130039129,21.123001031372,0,7,1 -11579,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0281182352919,23.8156776994945,0,9,1 -11580,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1386698547285,23.2082650576903,0,14,1 -11584,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.78939809789881,25.2132872870883,1,16,1 -11585,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.4134473963641,29.2168408092225,1,9,1 -11588,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2622424038127,23.8681164450551,1,9,1 -11590,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.55691759823821,28.8684137649847,1,23,1 -11594,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3213211637922,22.8860556654921,0,13,1 -11598,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.6892691233661,29.2984801893269,1,15,1 -11599,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.51981122884899,23.5843995494036,0,7,1 -11603,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.67341694026254,27.7000059226508,1,17,1 -11607,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.6844054912217,28.2572774564072,1,21,1 -11608,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.161842125468,23.7962737222461,0,4,1 -11612,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.4654385517351,28.7998687919309,1,19,1 -11614,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2640316598117,22.3083821314334,0,7,1 -11617,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0635889556725,27.5051001139251,1,13,1 -11620,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.7198093268089,26.5551681665943,0,12,1 -11622,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.67517714621499,22.1293273941573,1,10,1 -11633,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.4446748835035,26.8862615187111,1,21,1 -11642,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0489133822266,21.3178213068939,0,8,1 -11643,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.98299706541002,26.3389110161005,1,22,1 -11645,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.58565320726484,28.4492388851482,1,13,1 -11647,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.67044720007107,28.7249300203841,1,23,1 -11648,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.87319715018384,27.2752919173867,1,20,1 -11649,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2145670517348,24.5423948218922,0,14,1 -11650,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3669672280084,27.9194249700134,1,27,1 -11651,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3390689110383,26.7230480264969,1,17,1 -11652,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3100746534765,26.1512741069882,0,9,1 -11657,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.1661356666591,28.5867156098687,1,18,1 -11660,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.75573503784835,25.4024386954666,1,11,1 -11663,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.72068758960813,22.0205678292762,1,7,1 -11666,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1840220945887,21.4240994735679,0,6,1 -11667,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.65667956555262,24.238471848224,0,13,1 -11672,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.4853259215597,27.9111473866634,1,13,1 -11677,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.68977427575737,29.319491052308,1,19,1 -11681,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.98995160753839,23.1719525957811,0,7,1 -11688,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.71637523733079,29.0086498596066,1,13,1 -11691,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.058936778456,23.1432109292097,0,7,1 -11692,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.50940582808107,21.9224299681681,0,11,1 -11700,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.77854685019702,25.071329824476,1,24,1 -11701,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.71503672120161,29.868332792598,1,16,1 -11703,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0044521796517,28.2485206717697,1,16,1 -11704,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.98198961373419,23.5666042114287,0,8,1 -11706,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.88749501225539,26.7019102442341,1,14,1 -11709,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2030496092048,24.0062132918443,0,8,1 -11710,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3964843801223,28.1615638046459,1,13,1 -11715,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3297968329862,23.900255934139,0,9,1 -11717,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0762199810706,21.4731159698337,0,7,1 -11722,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2822554702871,21.7999333305449,0,10,1 -11724,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.4030931571033,22.2888015208105,1,9,1 -11726,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.93393288552761,26.7229273222908,1,17,1 -11735,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.62901981151663,23.1730870743807,0,5,1 -11737,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.4022241341881,30.287413447023,1,23,1 -11738,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.4974633457605,20.5639259422072,0,9,1 -11741,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.077757508494,24.074807160844,1,5,1 -11742,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.79960906645283,23.1433536122688,0,8,1 -11743,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.50088485120796,26.6764643593033,1,24,1 -11746,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.90151404310018,21.2228741653751,0,6,1 -11749,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2277155588381,25.8147137472779,1,17,1 -11750,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.53565907268785,21.8404783387803,0,6,1 -11751,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2859057697933,25.7955571100887,1,19,1 -11753,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.4829424943309,27.9253997742191,1,20,1 -11762,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0235235956497,27.7880714081231,1,16,1 -11765,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2159710677806,29.6291892808343,1,22,1 -11768,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2857881241944,30.4983278243596,1,15,1 -11770,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0344556348864,28.5705449959571,1,18,1 -11771,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.79567284765653,27.159102412405,1,17,1 -11772,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.97882072231732,29.792869376709,1,10,1 -11776,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.97546628396958,25.9178271661791,1,16,1 -11777,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.75897899223492,23.6442160618031,0,19,1 -11778,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.9245049089659,19.9829822090297,0,11,1 -11780,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1774806156754,22.7748150253593,0,9,1 -11782,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.71863249386661,27.1671561020746,1,24,1 -11783,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.83323577605188,29.3095956669927,1,14,1 -11784,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.7409180405084,23.290873262023,0,9,1 -11790,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.71594814234413,26.4491269732752,0,9,1 -11792,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2352151349187,26.355860299874,1,21,1 -11795,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3593641896732,22.6011592188028,0,10,1 -11798,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.170902937185,21.7782142566927,0,10,1 -11799,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.96987221878953,20.7172311326733,0,12,1 -11804,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2626569468994,28.7230292463439,1,14,1 -11805,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0841340424959,21.4999131380021,0,12,1 -11806,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2914799365681,28.3865186184102,1,12,1 -11810,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2156329383142,24.4147894372859,0,11,1 -11812,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.70167424785905,27.5277854223226,1,22,1 -11814,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2667739901226,22.7856269532046,0,10,1 -11820,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.97989946394227,23.6334277607645,0,15,1 -11825,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0850002788939,22.3425725005959,1,17,1 -11826,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.57702161394991,22.3321777937527,0,13,1 -11827,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0747587224469,28.7063962815012,1,9,1 -11828,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.82828323915601,29.3269357580959,1,23,1 -11829,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3886007808615,27.9836802303927,1,16,1 -11831,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1934243615251,22.8284495861054,0,7,1 -11832,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.98983181104995,23.9805137213188,1,9,1 -11838,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3924920083955,19.3701497217994,0,10,1 -11840,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.86663146270439,27.3493716636076,1,16,1 -11842,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.92617415497079,19.9376923017641,0,9,1 -11844,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2471566954628,22.6752185608922,0,10,1 -11846,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3520700752269,22.4330527431859,0,10,1 -11850,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.88424233091064,27.5520260882353,1,21,1 -11853,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1093852457125,21.0716426880181,0,17,1 -11856,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0528554830234,24.1858604870236,0,7,1 -11857,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0906492967624,27.101822515145,0,13,1 -11858,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.6644464165438,29.5594059318689,1,12,1 -11859,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1279232648667,25.9271584523697,0,4,1 -11865,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.51993873203173,28.8619804750541,1,10,1 -11867,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.55710375099443,22.1932656619197,1,19,1 -11877,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.91557847289369,27.6656133139693,1,19,1 -11878,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.78529218747281,26.5786847910877,1,16,1 -11882,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.63143059285358,27.1566407604772,1,20,1 -11883,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.64071271778084,25.0842279309776,1,13,1 -11884,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.71271370677277,20.7477623359188,0,9,1 -11885,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.224066374125,26.8802011536089,1,23,1 -11886,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.75678605423309,26.3320562788882,1,22,1 -11888,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3375618273858,26.1236529043474,1,7,1 -11890,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.81079449481331,30.3451748144391,1,25,1 -11891,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1443703318946,20.2052191861148,0,13,1 -11893,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2589867343195,21.5898794522476,0,4,1 -11894,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.95111452532001,21.387481508821,0,12,1 -11895,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.78428359585814,20.5324111106014,0,11,1 -11896,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.1122149527073,28.2801251020746,1,21,1 -11897,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3320446261205,27.8636159079993,0,16,1 -11898,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.4885849209968,28.21020802853,1,13,1 -11908,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.337953337701,20.0680895930776,0,10,1 -11913,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.66633988986723,28.2420813241012,1,16,1 -11918,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.57833201950416,21.790699795671,0,14,1 -11919,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.7410638469737,28.2637520967036,1,12,1 -11922,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3589160584379,22.422635817477,0,8,1 -11929,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2141368817538,30.5709403996907,1,12,1 -11933,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.63380527519621,26.552305993417,1,16,1 -11934,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.01831203443,26.7354757520744,1,12,1 -11936,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.91739413235337,25.2284193706527,0,10,1 -11937,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0821897855494,21.3290747561821,0,8,1 -11938,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.83805197570473,26.988027301716,1,17,1 -11939,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0320158223622,21.9218507088335,0,8,1 -11940,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.2300301520154,22.7136299471412,0,17,1 -11944,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.98148824367672,29.714989906095,1,18,1 -11945,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.71541006141342,24.0478925813642,0,12,1 -11946,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.81572613166645,28.413019567822,1,20,1 -11948,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.90179035160691,26.8892096222028,1,14,1 -11950,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.089390322566,27.7726122968229,1,17,1 -11956,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3986271212343,21.6909231771447,0,8,1 -11962,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2622698729392,30.3936813347473,1,12,1 -11963,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2698580927681,27.6574859667852,1,10,1 -11964,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.0745257616509,24.9840898107948,0,14,1 -11970,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.57823169603944,28.5497435202829,1,15,1 -11971,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.1666900967248,25.4654694033899,1,22,1 -11973,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.80915275495499,30.7037918947147,1,15,1 -11977,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.470175930066,25.9715932095863,0,11,1 -11982,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.3343444662169,27.063543796247,1,20,1 -11985,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.55732537433505,24.2211527634474,0,6,1 -11988,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.1884957458824,24.1017904334326,0,15,1 -11992,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.52290912065655,26.8820751009131,1,15,1 -11993,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.64434503042139,26.5522672399745,1,17,1 -11994,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.2127049830742,27.6729934011488,1,17,1 -11999,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.91538271401078,24.6483661406264,0,11,1 -12002,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.55119103379548,27.9119258004411,1,11,1 -12003,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.84923536377028,25.3703938242476,1,13,1 -12005,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.94295831653289,26.033264494243,1,15,1 -12013,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0402183569968,29.3053005572611,1,13,1 -12014,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.1109594446607,26.9937594069311,1,17,1 -12015,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.71635246044025,26.1548974256143,1,10,1 -12018,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.460733900778,29.0409488844051,1,13,1 -12019,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.60451126657426,29.0198343748585,1,10,1 -12024,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.0318190054968,30.7578166802456,1,22,1 -12027,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.51219448982738,29.6397110557819,1,15,1 -12029,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.4905630003195,25.243039802646,1,13,1 -12030,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,10.1066721973475,28.5614370701947,1,15,1 -12036,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.98230286827311,26.0019111195094,1,14,1 -12042,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,9.52163737989031,22.1146012232502,0,11,1 -12047,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,1,9.96046792180277,24.0668793079543,1,22,1 -12050,7,0,2.61803289632224,8,24,0.291326014233072,-0.767675871617258,475,0,10.3198889633641,23.0901699446895,0,6,1 -12056,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.8269757325761,21.1622906351182,0,7,1 -12057,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0073371548206,27.4097127416049,1,13,1 -12058,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.2237470981199,21.739391232332,0,13,1 -12060,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.3944182728883,27.3373258667234,1,15,1 -12061,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.88428945909254,19.8825317215004,0,7,1 -12063,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.65247914171778,22.2401826880381,0,8,1 -12064,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.1678420957178,24.4795067030685,1,11,1 -12066,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.98788588820025,21.7130759447457,0,7,1 -12068,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.3841058986727,27.468969365158,1,17,1 -12075,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.97103616595268,23.4174244235222,0,8,1 -12077,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3844201797619,20.2836806236195,0,6,1 -12078,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0404759920202,28.1740397617425,1,13,1 -12080,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.94987714267336,30.5799780493473,1,11,1 -12083,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.88121272344142,22.3274515384419,1,6,1 -12088,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.68549168133177,28.6128410146829,1,15,1 -12091,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4080310545396,28.5779474858309,1,11,1 -12095,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0272380898241,23.2540897729971,0,9,1 -12096,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.4292940602172,20.4273572991293,0,11,1 -12105,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0048874346539,19.4857916480426,0,10,1 -12106,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0213993892539,25.7414735650245,1,17,1 -12112,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0664115147665,20.568182134594,0,8,1 -12118,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.4792249191087,21.4935256353477,0,14,1 -12119,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4147356916219,27.075698387897,1,14,1 -12122,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.97805410414003,21.8142434772022,0,15,1 -12125,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.74308461416513,28.8359030796957,1,15,1 -12128,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.78891280828975,26.5062763520134,1,18,1 -12129,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.4572224880103,22.2639414475947,0,6,1 -12132,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.1001905652229,20.8708543794504,0,10,1 -12139,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.1105526734609,22.1491528747664,0,10,1 -12140,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.58538603479974,20.0934967624596,0,8,1 -12141,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.2561278212816,21.7027444414232,0,5,1 -12143,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.96210272586904,25.7854234733907,1,12,1 -12144,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.465671173064,20.0881307189493,0,8,1 -12145,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.67355854692869,25.0111102979075,1,15,1 -12151,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.1170206507668,29.8865840234582,0,20,1 -12156,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0495573116932,29.3746346926615,1,16,1 -12158,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.84490771754645,28.5465702084403,1,17,1 -12160,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0195610909723,21.6595823461639,0,4,1 -12161,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.53474150761031,28.1696698337403,1,12,1 -12164,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3544865406584,22.7170306602329,0,11,1 -12168,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.82528425264172,23.1736396938665,0,10,1 -12172,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.2518341511022,25.1181625657215,0,10,1 -12180,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4632104570046,27.798277746633,1,12,1 -12181,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.60728852357715,27.6066110950731,1,18,1 -12184,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.76198840513825,26.3303486954863,1,21,1 -12187,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.1889705092181,27.1206340081465,1,11,1 -12189,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.3201453525107,28.1928215681997,1,20,1 -12190,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0620582094416,23.4424753174234,0,8,1 -12200,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.94457594677806,25.7884736116073,1,12,1 -12202,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3708184403367,21.4596395486829,0,5,1 -12204,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.55454582744278,28.0575216651782,1,12,1 -12210,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.66079395497218,20.7732759951265,0,7,1 -12213,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.83687900053337,20.7290752679173,1,8,1 -12214,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.70631269156002,25.3992723159818,1,16,1 -12215,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0223376390059,26.7651663115437,0,12,1 -12220,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.91464630886912,26.4184994236573,1,15,1 -12237,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.76602260256186,28.2035616114233,1,21,1 -12241,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.51709940191358,22.4504572621509,0,4,1 -12242,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.62467393791303,23.4805940391116,1,7,1 -12243,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.2198453210294,27.4036607956967,1,9,1 -12247,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0936316566076,29.8903860355559,1,13,1 -12253,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.54124241205864,26.2105810818402,1,21,1 -12255,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.72542388318107,28.4104967068408,1,12,1 -12256,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0453725070693,28.288258967761,1,17,1 -12263,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.5627141117584,22.1534117900118,0,7,1 -12266,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.4503648329992,20.1336040028869,0,10,1 -12267,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.81280745216645,19.8842685987973,1,9,1 -12269,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.96058073895983,27.8031289587312,1,16,1 -12270,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.82363857585005,28.0347838779813,1,16,1 -12273,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.88933877251111,22.1821747807696,0,9,1 -12278,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.80667117726989,21.8094934840761,0,11,1 -12279,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.3159511266276,26.1472309675481,1,13,1 -12281,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4225097419694,26.216777844585,1,15,1 -12287,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.9704298034776,23.6481756335979,0,9,1 -12289,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.69592632446438,25.1359938649735,0,13,1 -12293,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.57127857836895,22.4474152394762,0,14,1 -12294,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.3257287505548,28.491250964521,1,24,1 -12300,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.1995305686723,20.8694953194545,0,8,1 -12301,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0831856937148,21.1381609297029,0,7,1 -12302,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.68731411895715,19.8258144575176,0,12,1 -12305,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.5019646496512,22.2328771018198,0,11,1 -12307,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.64320437749848,21.1626239537002,0,8,1 -12308,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0992014263757,21.5278579772957,0,9,1 -12309,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3535115625709,21.989015752338,0,9,1 -12311,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.99280218407512,27.1657613600418,1,23,1 -12312,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.79644255107269,27.4802726568376,1,23,1 -12314,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.56282461131923,20.4973994946743,0,5,1 -12316,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.59768273029476,20.3757490621102,0,15,1 -12317,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.57286811573431,26.2919365020042,1,13,1 -12318,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4960211422294,26.5511235286527,1,23,1 -12322,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.97231666836888,23.4427251710501,0,11,1 -12325,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.1394783738069,22.2585493955593,0,13,1 -12326,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.55774697009474,21.4857634611383,0,10,1 -12327,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.2017559215892,27.3592056543298,1,11,1 -12336,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0090711775701,21.6189088680572,0,2,1 -12338,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.99240763904527,26.1737192333161,1,16,1 -12339,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4892645117361,28.5565903707049,1,11,1 -12341,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.1691108411178,19.7449141901374,0,14,1 -12346,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0330593159888,25.355358336292,0,13,1 -12348,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.1301343471278,26.9032262460174,1,16,1 -12351,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.94932608841918,20.9445719933962,0,5,1 -12357,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.65773190185428,21.0039812155383,0,7,1 -12369,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3482299072202,22.9386263509626,0,7,1 -12371,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0361506859772,27.2216192151143,1,15,1 -12372,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.4034278686158,24.4282738344015,1,10,1 -12376,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.25293094269,27.3740594449408,1,8,1 -12382,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.88043819670565,26.7962439985072,1,12,1 -12383,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.69103301432915,20.4208824227399,0,13,1 -12387,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.1403292475734,26.4362607124393,0,19,1 -12392,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.1463903544936,22.398670727914,0,10,1 -12394,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.88899846025743,25.2692523271399,1,18,1 -12396,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.61940600001253,22.963834294569,0,12,1 -12397,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.87516370718367,27.8774027499616,1,13,1 -12398,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.1747463797219,25.7174524339668,1,19,1 -12401,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.74731469573453,26.7905898065981,0,13,1 -12402,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.207630612189,23.0182577390597,0,9,1 -12405,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.84534435695969,27.4164527566654,1,12,1 -12406,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.83312525623478,28.6102643482335,1,21,1 -12409,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.2482649008743,28.9877444753696,1,15,1 -12413,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.129155227216,29.1335645053746,1,11,1 -12415,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.70801734738052,23.7533628175113,1,17,1 -12429,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.72122832899913,28.8503353032464,1,10,1 -12430,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.68149343831465,25.9982181414094,1,19,1 -12440,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.96498454827815,21.7087073043099,0,8,1 -12442,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.492729608668,28.1022477657998,1,12,1 -12443,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.2610409343615,20.4971677219148,0,11,1 -12445,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.70945419347845,28.0666585552639,1,14,1 -12446,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.97914437204599,26.0541407812753,1,12,1 -12458,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.2534776385874,24.998115534592,1,13,1 -12462,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.0228913987521,24.8333895741975,1,15,1 -12463,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.1312704060692,27.5514517303227,1,17,1 -12467,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.87647898728028,21.3357175435855,0,10,1 -12469,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4654784617014,26.3059728939822,1,13,1 -12470,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.74157638056204,20.9265577578899,0,8,1 -12471,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.82664036098868,21.5864854820321,0,5,1 -12472,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.1768203650136,24.6213387770168,1,6,1 -12475,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3226318317465,22.2295784479937,0,9,1 -12477,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.50525441672653,27.8367634434278,1,19,1 -12481,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.4732752381824,20.2037130083054,1,13,1 -12482,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.1010021241382,26.6543687433022,1,14,1 -12486,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.4339181205723,26.2339423457154,1,17,1 -12491,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.2199314993341,22.7811415599396,0,12,1 -12492,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.99906585621648,24.0084073279201,0,6,1 -12493,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.3744043542538,23.98267760715,0,5,1 -12495,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.2045159989502,26.3281715891488,1,11,1 -12497,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.88361576921307,21.7056737722974,0,12,1 -12499,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.1942378596868,22.0348617660211,0,13,1 -12502,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.86597009911202,23.4623290165004,0,9,1 -12503,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.83784354478121,21.9172730763274,0,13,1 -12504,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,9.72191382036544,27.0229093778501,1,14,1 -12505,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.60368487681262,22.958292859132,0,14,1 -12507,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.79478412121534,24.7045320334875,0,11,1 -12509,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,1,10.1492051803507,25.840938141277,1,13,1 -12513,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,10.0119374992792,23.2826996706413,0,4,1 -12518,7,0,2.61803289632224,8,25,-0.510612128401316,0.821653126712704,468,0,9.60151250334457,23.114971376323,0,6,1 -12524,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.61570362746716,29.0802219861612,1,17,1 -12526,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.060053439578,24.1988567123387,0,8,1 -12529,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3629640627187,28.7489275112008,1,20,1 -12533,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4439216468018,29.1099739381462,1,14,1 -12534,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.57568904943764,30.14582384332,1,8,1 -12536,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2552205251995,24.91835383277,1,21,1 -12539,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.54926787177101,26.2793805353671,1,11,1 -12540,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4287946217228,28.3541648175024,1,18,1 -12541,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3973585020285,27.0695197845437,1,16,1 -12545,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2816283856519,29.1725335132545,1,14,1 -12546,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.1203582624439,24.1469529915649,1,11,1 -12549,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1966950886417,27.8460860382545,1,13,1 -12553,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.83534096879885,24.5583297234886,0,5,1 -12555,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3451336601283,27.6650519253874,1,15,1 -12556,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.9746740241535,23.3686168782183,0,16,1 -12557,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.51250869850628,22.4674348180668,0,8,1 -12558,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.52507833042182,21.1247739406575,0,7,1 -12559,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0829650422093,25.0626256916723,0,13,1 -12565,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.55358682759106,23.4968344957156,0,6,1 -12569,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1647614815738,29.2116233514178,1,21,1 -12570,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2615147873294,27.5855589987533,1,23,1 -12572,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4956647763029,29.3662983127309,1,16,1 -12573,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.88894290011376,30.2018491397887,1,15,1 -12574,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.85738556901924,25.4086358254943,0,10,1 -12576,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.75143559044227,25.0087957206261,1,9,1 -12583,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.92429445357993,23.8685649509857,0,10,1 -12587,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4709665093105,26.3187226671879,1,19,1 -12588,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3613996661734,28.2267436396967,1,20,1 -12590,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.74462599377148,22.6669706686109,0,12,1 -12596,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.63710561278276,22.0791878189196,0,21,1 -12597,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.93803327949718,27.2869071353858,1,21,1 -12603,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2058567581698,30.2479005000926,1,17,1 -12606,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.64826893969439,30.2658656808942,1,16,1 -12611,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.0181351958308,28.2562990219659,1,17,1 -12615,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.97719534789212,22.7242175736567,1,7,1 -12616,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.5464612597134,25.9798823719593,1,14,1 -12623,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.319271190092,25.1615822998986,0,7,1 -12636,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.1422671615146,24.7377432632535,0,14,1 -12637,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4705935122911,24.8917968497869,0,12,1 -12643,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.76828403142281,31.1129469630144,1,14,1 -12647,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3160012962762,26.4175735627406,0,8,1 -12653,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.83996996912174,29.3734797933572,1,14,1 -12658,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.0824494494591,28.7371714173295,1,18,1 -12661,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.85187839600258,23.5921089998321,0,10,1 -12664,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.53566187573597,23.284724644027,0,7,1 -12665,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.52973100054078,26.4179197898738,1,13,1 -12669,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.99773392290808,27.6733927207688,1,20,1 -12671,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.218554595951,28.3806607320371,1,19,1 -12672,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.1560507691465,23.5664882952489,0,11,1 -12676,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.69834032841027,23.610374955402,0,8,1 -12678,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2183957684319,27.194831737942,1,20,1 -12679,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.5558417995926,29.1075141617904,1,7,1 -12680,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.437669592211,25.980726245672,0,11,1 -12682,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0300773079507,25.7786520758441,1,10,1 -12683,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.0039974399842,29.4923743232355,1,15,1 -12693,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.97646441985853,30.1782976851517,1,21,1 -12696,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.81320428196341,29.837171093589,1,17,1 -12697,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1849872120656,25.6520379692942,1,14,1 -12698,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4660778073594,24.1463798751064,0,7,1 -12701,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4242366149556,29.7780151426481,1,14,1 -12704,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1361457759049,26.727554750918,1,17,1 -12706,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3590509160422,26.8667299991969,1,12,1 -12707,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.65793316205963,23.5564066791166,0,10,1 -12711,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4405383472331,29.5624035893815,1,16,1 -12721,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3420543151442,28.0275512037457,1,21,1 -12722,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3817122036126,28.618150009284,1,18,1 -12725,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3457421071362,28.6177760171448,1,18,1 -12730,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1386906185653,27.4789317888103,1,24,1 -12754,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.89824192295782,25.549265395213,0,9,1 -12757,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2885681595653,28.1089485622054,1,14,1 -12758,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.270194277633,22.5277439926525,0,14,1 -12762,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.72537444578484,29.0199755171003,1,20,1 -12763,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.85218675341457,22.7980936280787,0,6,1 -12767,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0686552159023,23.9648897684498,0,8,1 -12769,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0790872101206,24.6580655289495,0,11,1 -12778,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1564318665769,30.1005840544503,1,17,1 -12779,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4921155187767,26.5302622046293,1,14,1 -12782,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.0812032371759,29.4861689065824,1,10,1 -12785,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.73041594773531,29.2179815161706,1,15,1 -12786,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.2826852456201,22.0164950367164,1,7,1 -12787,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.55576495314017,29.2027951083995,1,9,1 -12794,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3513997648843,28.6370015330186,1,13,1 -12796,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0985933069605,23.2748067073644,0,10,1 -12797,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.52569090691395,28.2974384301252,1,16,1 -12798,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.97615666757338,25.4626549725639,0,10,1 -12799,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.87151320790872,23.7641914471603,0,18,1 -12800,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1130718006752,29.3715645011626,1,19,1 -12811,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4788780049421,25.5307740131536,1,11,1 -12813,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.9396092609968,23.5586479898596,1,18,1 -12818,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.57755385502242,31.1851725179344,1,17,1 -12821,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.85067919036373,29.7472157478749,1,26,1 -12825,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.2448582646903,24.1815652980917,0,14,1 -12826,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.2625378132798,28.5182495671743,1,21,1 -12827,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.4888479828369,27.2570704637601,1,16,1 -12828,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3980353344232,24.8486843302012,0,16,1 -12829,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.73202609852888,27.2852732055869,1,18,1 -12830,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4492519670166,24.0277971634462,1,8,1 -12834,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.71821331139654,22.7513353527002,0,7,1 -12835,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.69119289447553,30.6996866640151,1,16,1 -12840,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.8760532788001,29.1803937225836,1,23,1 -12841,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.65164103638381,24.4781809550243,0,15,1 -12842,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.98881128849462,21.4416887639645,0,10,1 -12843,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.91189541993663,24.5547495155239,0,12,1 -12849,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.3201521777082,24.6404732861627,0,9,1 -12851,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.2099052353296,22.3619295750959,0,9,1 -12854,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.63830310758203,21.5719305852535,0,8,1 -12855,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4053182189818,23.4469878449259,0,13,1 -12856,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.00631877454,29.4655699163151,1,26,1 -12868,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1457455137279,29.6902507145723,1,20,1 -12874,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0488919385243,23.6265095317875,0,13,1 -12880,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0273501076736,24.1408748807006,0,17,1 -12881,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.068953512935,29.4711826819341,1,19,1 -12886,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.79247414250858,22.8147687499061,0,9,1 -12888,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.85573447286151,25.0863566418935,0,12,1 -12893,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.79383049625903,23.199964469305,0,14,1 -12902,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.1638186245691,20.7584282846899,0,12,1 -12911,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.88886038400233,21.70400929018,0,10,1 -12912,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.81444314518012,27.5723568667447,1,15,1 -12913,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0194100982044,25.7947737995965,1,10,1 -12917,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.4725421646144,26.7103699885886,0,13,1 -12918,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3098190566525,25.2084817451256,1,19,1 -12920,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0010752321687,23.4519886492087,1,8,1 -12930,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.72021170286462,27.6605404518314,1,17,1 -12936,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.1714370765258,22.65769418607,0,10,1 -12943,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.84606413333677,26.6409445662632,1,23,1 -12944,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.56286379392259,28.5384963551079,1,23,1 -12951,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.83515020296909,29.6527001660102,1,18,1 -12954,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0634033428505,26.7527356461214,0,10,1 -12956,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.51697490457445,26.838005597708,1,19,1 -12958,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.56442573387176,29.9460766789685,1,16,1 -12959,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.58187013445422,29.1134944926173,1,17,1 -12960,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.64148945687339,24.580325257317,0,15,1 -12962,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.81200476177037,22.8738842941183,1,17,1 -12963,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,9.81540676788427,30.9288231307031,1,17,1 -12964,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.2479110371787,25.0283088941684,0,12,1 -12965,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1622663629241,28.5604153765798,1,20,1 -12970,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.223318308359,25.8610706733809,0,8,1 -12971,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.3334984465037,28.7544753862796,0,23,1 -12973,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,1,10.1358257024549,30.5638923489816,1,17,1 -12981,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,10.0572716174647,26.2836865387997,0,13,1 -12983,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.83693045121618,25.8383894257169,0,14,1 -12985,7,0,2.61803289632224,8,26,1.07220473041893,1.08636878937232,464,0,9.80902246781625,21.618467930495,0,16,1 -12988,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.3882934541907,21.3479028557839,0,7,1 -12992,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2852389034815,26.626429846135,1,17,1 -12996,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.162761022104,20.4732754813181,0,7,1 -12999,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.3879673657939,17.3038458422682,0,11,1 -13003,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.3027600578498,24.7667829298983,1,18,1 -13010,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4822422165889,27.894128784639,1,12,1 -13011,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0206490121782,26.4655168506431,1,8,1 -13013,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.9622619303409,21.057108471073,0,11,1 -13014,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.50221522687934,27.6367108636368,0,15,1 -13017,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.83444097219035,28.4090899670971,1,17,1 -13018,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2009128141217,19.354887266349,0,8,1 -13024,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2923469464295,29.7034101810386,1,17,1 -13027,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.82143011991866,23.735495737466,0,3,1 -13029,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0891045993194,28.8789577783931,0,16,1 -13032,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.96787366154604,20.7736762009293,0,4,1 -13034,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1548616832588,18.0437448437358,0,11,1 -13035,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.67303037992679,22.6207022717521,0,10,1 -13038,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1296353340149,21.1262321688207,0,11,1 -13041,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4325879090466,18.7449075422519,0,9,1 -13042,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4907247785013,28.9461480652029,0,13,1 -13045,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2469784249552,28.215624006009,0,12,1 -13046,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1898743684869,26.34126368236,1,14,1 -13048,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.6760085914284,20.1630813286905,0,9,1 -13050,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.63671680842526,27.0311775563449,0,9,1 -13052,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.56694478983991,29.2253044034726,1,20,1 -13053,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4522539319005,27.1518457555672,0,8,1 -13055,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.68851494556293,28.348667525671,0,14,1 -13057,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.78730799374171,28.4123011199857,0,6,1 -13058,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1135939133819,22.7089041495273,0,10,1 -13059,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.56116567715071,27.5742645422733,0,8,1 -13062,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.65269139246084,25.0109880497033,1,19,1 -13063,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.80350596341304,26.6021984486905,1,6,1 -13065,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.68778340448625,25.7762403240387,1,15,1 -13074,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.59242446301505,24.6222966563334,0,19,1 -13075,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.76819338253699,23.3449274093457,1,11,1 -13076,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1636415293906,27.9795020332106,1,26,1 -13077,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1591663116124,28.2755371656736,0,12,1 -13078,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2203567747492,19.4438827959636,0,9,1 -13081,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.3854409451596,25.8612145351391,1,10,1 -13084,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.3230519504286,27.2705723896545,0,10,1 -13086,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.161256892141,23.9734140803618,0,12,1 -13088,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4673431669362,22.7882801591334,0,5,1 -13090,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2724024492782,26.4591025316819,1,16,1 -13092,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1499845115468,25.086494956811,1,6,1 -13094,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.75341716734692,25.7483609118157,1,15,1 -13096,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2153555445839,26.3473924821116,0,14,1 -13102,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.95973117253743,21.9801355964538,1,7,1 -13103,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1677157559898,24.4980507767905,0,19,1 -13106,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2080983354244,21.9498954271747,0,7,1 -13108,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.90557401301339,26.9592517570237,1,12,1 -13109,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.64515956304967,25.1810013514326,1,10,1 -13111,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.95885409112088,24.1924076046154,1,20,1 -13115,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.3380396862049,26.0090279891975,1,9,1 -13120,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0502285687253,27.8416375007808,0,8,1 -13121,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.63062123931013,20.089522922415,0,7,1 -13127,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.89525359217077,20.0508332828376,0,9,1 -13128,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.67081984179094,23.0464838295966,0,7,1 -13129,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.56564855598845,26.2490763809836,1,11,1 -13132,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.93582305801101,29.2366318333088,0,16,1 -13133,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.94452787819318,20.5801071299226,0,4,1 -13135,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0185667234473,21.2338531441816,0,7,1 -13137,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.97369189327583,27.271999126786,1,18,1 -13138,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1946893811692,21.2996641975442,0,9,1 -13139,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.90193196409382,20.4276523456876,0,10,1 -13140,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.91536359768361,26.2955246767073,0,17,1 -13142,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.455974973971,20.4993314642634,0,9,1 -13144,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0764001996722,27.9408235263143,0,14,1 -13146,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.71754902531393,21.7963476200421,0,2,1 -13149,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.98049717862159,28.3967812764595,1,17,1 -13151,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.54000001749955,31.6692816477486,1,10,1 -13161,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1126042590477,26.702072669282,1,9,1 -13164,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.50108363712206,21.6059747275029,0,5,1 -13166,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.84697864856571,21.2005308266771,0,10,1 -13168,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.64012930798344,25.2438531434027,1,19,1 -13176,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1227244210895,26.2195214332252,1,21,1 -13179,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1863404817414,24.3863830000822,0,13,1 -13183,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4739469077904,20.9165275061407,0,10,1 -13185,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1958546263631,20.0809189673387,0,9,1 -13186,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.60158639028668,20.654592935274,0,9,1 -13187,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0990971482825,28.0885958758874,1,21,1 -13189,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.59577678586356,21.9679365513894,0,5,1 -13194,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.66305472655222,24.064606503237,1,12,1 -13195,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2259833172429,20.2805818556001,0,7,1 -13197,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0144446359482,24.6841986886613,1,16,1 -13198,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1636824442539,23.6244671374496,1,10,1 -13200,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.85485972650349,26.8104991196569,1,5,1 -13201,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.84546241024509,27.7206935941964,1,11,1 -13202,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.6221688548103,26.7080950862545,1,17,1 -13203,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.80300175212324,25.9997039242797,1,18,1 -13208,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.51538715767674,25.4725260976219,0,12,1 -13209,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1432225489989,27.1138312064541,1,12,1 -13210,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0737508039456,25.4010628620075,1,13,1 -13211,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.74735330464318,19.985813814274,0,8,1 -13217,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.3130462625995,24.3577677893052,0,8,1 -13225,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.87585388030857,27.515244919576,1,17,1 -13227,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.61308563081548,22.6874113392227,0,11,1 -13230,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.3747312282212,22.1865236591426,0,4,1 -13231,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.020505560562,21.1161804924022,0,4,1 -13234,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0478052769322,20.8545627967385,0,12,1 -13236,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.3519649368245,20.6517767412203,0,4,1 -13239,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2931753653102,26.8700779366011,1,9,1 -13240,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.83828049967997,27.0009266757939,1,11,1 -13242,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.87316499627195,22.0146756832705,0,5,1 -13243,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.56396085745655,28.262137076274,0,10,1 -13245,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.043774337275,24.3330028607436,1,8,1 -13247,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1654704008251,21.9360058873161,0,10,1 -13251,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4483600966632,19.8872628860085,0,8,1 -13252,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0989680190105,20.0875328030633,0,6,1 -13253,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.61001003626734,20.6392302783409,0,8,1 -13255,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.50499075208791,27.3946516231605,1,24,1 -13265,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0336410743184,27.8318928031465,1,11,1 -13271,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.3435669858009,21.091650904722,0,11,1 -13272,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4856149440166,25.0457672570578,0,12,1 -13273,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.3748787692748,22.1291207223198,0,6,1 -13276,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.73371135955676,21.2690788338771,0,10,1 -13282,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.95312157575972,25.7886272769682,1,14,1 -13283,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0170544313733,20.576026290518,0,11,1 -13284,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2612629944924,28.6077006935822,1,19,1 -13287,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.75882501387969,22.2681030570273,0,8,1 -13290,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4813775469083,24.21239060553,1,13,1 -13291,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.79018215509132,26.7224944132735,1,13,1 -13292,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.54448089189827,20.8218245982909,0,8,1 -13293,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0002843332477,21.2890001365493,0,8,1 -13295,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2463146585505,20.5004907922025,0,7,1 -13301,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.88472262653522,22.9083895695868,0,4,1 -13306,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.029194543371,23.1549814524166,1,6,1 -13309,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.82762842043303,28.6284396014379,0,12,1 -13317,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.98799565806985,27.7061723517126,1,21,1 -13325,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.353637770284,19.7668132588369,0,14,1 -13331,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.81882939627394,26.3819767581099,1,12,1 -13335,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.364164384082,19.9530793893258,0,7,1 -13337,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.3436207226478,25.5794046710774,1,16,1 -13339,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1616480841767,26.9062763709714,1,14,1 -13342,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2654547956772,27.1041620652113,1,11,1 -13343,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1829623535741,22.0614538466351,0,7,1 -13345,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.1812865824904,27.0682471845777,1,15,1 -13346,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.59808167465962,20.8504300236272,0,8,1 -13347,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.74535712902434,19.7352750153766,0,9,1 -13349,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.65737169631757,26.3961757739419,1,13,1 -13350,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.3290090791415,26.1995530583632,1,11,1 -13358,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4651883682236,22.5271599802051,0,7,1 -13360,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4773245495744,22.1252719525562,0,9,1 -13363,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.65232995944098,27.5782221354339,0,17,1 -13364,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.3602354698814,19.5005085179482,0,7,1 -13370,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.92932835198008,20.8473090827785,0,14,1 -13373,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2798068618868,24.9619791314984,0,14,1 -13375,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.2032608245499,20.0885450915269,0,15,1 -13376,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.99776538508013,19.3383589763334,0,11,1 -13382,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.310245864559,26.7270667591695,1,22,1 -13383,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.0692590908147,22.9334876518891,0,5,1 -13384,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.89865039777942,22.880079199304,0,15,1 -13385,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.58523558452725,22.1293640393996,0,5,1 -13387,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4867820681538,20.8863163061241,0,9,1 -13389,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2920511856209,27.7339778504226,1,16,1 -13390,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.79589668055996,22.1220308798491,0,8,1 -13392,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.51471673022024,25.1275258169379,1,15,1 -13393,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.58934297040105,24.7707395773246,1,12,1 -13394,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4680129112676,22.5384775466763,0,4,1 -13399,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.011452871142,21.3656489783047,0,7,1 -13411,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.429069591919,25.1830939999137,1,15,1 -13415,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.406749202637,21.0796420185585,0,6,1 -13416,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4808538663201,21.1808851288007,0,7,1 -13418,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.52696186839603,22.6547099922361,0,9,1 -13423,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.3115106772166,25.8776817126861,1,8,1 -13426,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4784260778688,21.5668468489749,0,6,1 -13428,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.2256607769523,26.4873300597273,1,13,1 -13434,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.86510677915066,21.5045434755109,0,8,1 -13435,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.3904991911259,27.102951248735,1,30,1 -13436,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.64181906334125,21.476026347303,0,14,1 -13437,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.61157182743773,24.8154145141535,1,16,1 -13440,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.0058515460696,27.1447075490584,1,21,1 -13445,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.54873204836622,22.5405244893628,0,8,1 -13452,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4398696604185,24.0411297720704,1,14,1 -13455,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.92546730698086,28.4165645147554,1,12,1 -13456,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.97376175178215,28.5721459403482,1,16,1 -13457,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.74203162454069,22.307040284801,0,11,1 -13463,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.65228819614276,22.7753797681407,0,4,1 -13466,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.53647727705538,25.3295869409051,1,20,1 -13471,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.1119759464636,24.1484635549704,0,7,1 -13474,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,10.4213778532576,20.2050423564534,1,10,1 -13475,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.99371507554315,28.6319834924201,1,23,1 -13479,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4493039574008,24.9245233223707,1,11,1 -13480,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,9.75808570510708,28.3010145324479,1,10,1 -13484,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,0,9.85259757284075,22.5999087615538,0,7,1 -13485,7,0,2.61803289632224,8,27,-1.02771582229369,0.65586641350257,502,1,10.4885032635648,26.8946686040063,1,15,1 -13490,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4724435599055,25.68548362581,1,18,1 -13493,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0641119838692,25.3580225983425,1,18,1 -13497,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4080705775414,24.7636078182709,0,16,1 -13499,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4753955439664,23.8714113558002,1,10,1 -13503,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.9867129533086,20.5384977532464,0,8,1 -13504,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0709066505078,21.5231441943807,0,8,1 -13509,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.58165843575262,19.4655997584551,0,6,1 -13510,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.61021658801474,24.1917974860023,0,12,1 -13511,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.5802523966413,26.6109372058059,1,14,1 -13526,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2592364433222,24.6518327351994,1,13,1 -13528,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0885042750742,19.5220220838159,0,8,1 -13529,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2578533219639,25.7686970483839,0,17,1 -13530,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.3944759289734,27.7735970579872,0,9,1 -13536,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4938302058727,22.1557662969088,0,18,1 -13539,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.67788883391768,19.5570700444526,0,9,1 -13547,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.87956016510725,25.6821453524603,0,6,1 -13550,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.84020879142918,20.2956281902483,0,10,1 -13551,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2924508946016,21.9968375314356,0,9,1 -13558,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.91093196277507,20.5661209668763,0,5,1 -13559,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.3748362055048,26.2469857494792,1,15,1 -13562,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.56298609171063,25.3753434529146,1,14,1 -13563,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.280445471406,25.1694459791753,1,15,1 -13566,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.351503565209,23.9583551335306,1,13,1 -13568,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.58348427480087,24.4482134596262,1,9,1 -13572,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.59860829706304,27.9996599435242,0,11,1 -13574,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.1286389140878,26.9420528787285,1,9,1 -13575,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0497577160131,28.5111691465218,0,13,1 -13576,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0165174640715,21.8580204622292,0,6,1 -13577,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.81750364415348,19.8686427418286,0,12,1 -13584,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.99218301731162,20.7627683153433,0,8,1 -13587,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.89536248124205,27.0488802662147,0,14,1 -13588,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4779695526231,26.7591885745781,1,15,1 -13591,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2980812396854,27.1344863083885,1,15,1 -13594,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2151442100294,24.907916734482,1,14,1 -13595,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.92130932584405,22.9181294468672,0,10,1 -13598,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4980343754869,20.8618604599699,0,8,1 -13600,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.3489447436295,21.4819791048147,0,9,1 -13604,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.89434719993733,22.1091284828316,0,15,1 -13611,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.50327726197429,26.5598794368275,0,13,1 -13614,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.72990643698722,22.369359141486,0,12,1 -13616,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4738806078676,26.3731352011322,1,8,1 -13620,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.1339582537767,21.9646061657677,0,7,1 -13624,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.67022097879089,25.9286108579602,0,19,1 -13625,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.70036987727508,25.4198226337093,1,9,1 -13630,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4943044281099,26.1142563753902,0,11,1 -13636,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0015899452846,24.1025741081866,1,13,1 -13640,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.1997481668368,24.0131387165465,1,17,1 -13643,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2598281858955,20.4873475452654,0,7,1 -13647,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0783767506946,24.1114971752365,0,8,1 -13649,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.248982271878,21.2403517853585,0,12,1 -13651,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.58577130897902,21.4863946839596,0,3,1 -13652,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.8066831829492,26.3892197345393,0,8,1 -13655,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4897807380185,28.0540304108797,1,9,1 -13658,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2413359235507,25.999397884806,1,11,1 -13661,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.8813434750773,20.895363171333,0,6,1 -13662,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2386936743278,24.2771420844022,1,10,1 -13666,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.188708481146,21.4035453832431,0,7,1 -13667,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.94623658806086,24.6044227682636,1,13,1 -13673,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.87794837891124,25.7773115138216,0,14,1 -13674,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.91575556038879,24.8792185890097,1,14,1 -13675,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.84370086621493,18.6407613564302,0,12,1 -13676,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2202071249485,19.7104651182602,0,6,1 -13677,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4038411166985,22.436948941768,1,12,1 -13678,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0202613365836,19.3111212215114,0,9,1 -13685,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4680633090902,20.2166471858724,0,4,1 -13688,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.8171445496846,27.4276713762235,1,16,1 -13704,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2790572212543,26.742314889537,0,12,1 -13708,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.93376177176833,28.093751582048,1,14,1 -13711,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.3234549823683,22.5872726838391,0,9,1 -13713,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4403946350794,28.8999925746746,0,14,1 -13722,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.3229556567967,25.6269088525423,1,17,1 -13727,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0311799021438,26.5137584542807,0,12,1 -13729,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.73364045051858,23.7122141269459,0,9,1 -13736,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.82101373677142,22.7542608796683,1,4,1 -13738,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.1923381434754,27.9372750452175,1,15,1 -13739,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.1272292663343,19.8181969491993,0,4,1 -13741,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.75483100605197,25.721662884515,1,11,1 -13743,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.3045323200058,26.7541900407566,0,15,1 -13754,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.3449091040529,18.398122722788,0,10,1 -13755,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.841475432273,23.9205568211853,1,13,1 -13756,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.131940853782,19.3068112283539,0,6,1 -13760,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.90581024903804,25.660244076777,0,9,1 -13773,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.61083400715142,21.2938271801003,0,10,1 -13775,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.3852056141477,21.6673766771419,0,9,1 -13780,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.67302910285071,24.1089748612181,1,5,1 -13781,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.3348495643586,17.5628215948709,0,7,1 -13786,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4592680551577,21.9685903161813,1,19,1 -13789,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.3667951221578,21.2344539232833,0,7,1 -13799,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.3870920892805,21.8365709585914,0,13,1 -13808,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4312602600548,26.3726566385514,1,9,1 -13812,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.54943335033022,25.3725750367856,0,18,1 -13813,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.81591471494175,20.7181783967864,0,14,1 -13819,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.80463758646511,25.7873370874583,1,8,1 -13821,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.98348572803661,25.2904598131851,1,17,1 -13826,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2918886407278,23.4594463382361,0,7,1 -13827,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.91995260328986,26.2772162512093,0,13,1 -13832,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0570550234988,23.3658972551845,0,11,1 -13835,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.60221596318297,18.892651436649,0,5,1 -13841,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4430676908232,19.4910490203735,0,7,1 -13846,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4935401536059,22.5350571685621,0,14,1 -13847,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4393875354435,21.4971548757409,0,4,1 -13851,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2359608146362,23.1107533185857,1,9,1 -13865,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.3476505640429,21.1928324192399,0,8,1 -13870,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4001903054304,22.7958737681016,0,13,1 -13875,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0360580859706,20.4621159762083,0,8,1 -13879,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.1601709614042,24.043846798448,1,14,1 -13880,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.85116713796742,17.5187716014808,0,7,1 -13883,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.99649448064156,25.3878187067255,1,11,1 -13884,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.337841815548,20.2587497458346,0,10,1 -13885,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.76948500121944,19.7265085998397,1,7,1 -13886,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0512847122736,23.6008246593367,0,10,1 -13887,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.87908893055283,25.6402748110708,0,7,1 -13889,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.1124895967077,20.4436404763308,0,12,1 -13893,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.85408982564695,22.4006236941774,0,14,1 -13894,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0580382279586,23.1986320912632,0,12,1 -13895,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.9631695158314,21.7965560932268,0,7,1 -13896,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.0351145691238,26.2970953083752,1,14,1 -13898,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.65112420544028,26.8769051825283,0,12,1 -13901,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.4107619328424,19.2050392389655,0,6,1 -13903,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.0369718715083,19.1468286656086,0,11,1 -13904,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.82207385660149,21.9449237350037,0,10,1 -13909,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2768235646654,27.4817294687359,1,15,1 -13923,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.90627052937634,25.1260617718948,0,15,1 -13925,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.85960361245088,25.6514805811296,1,18,1 -13928,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.55544845410623,26.1794286860995,0,15,1 -13933,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.4638574351557,25.6349884452125,1,14,1 -13935,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.54679256887175,25.0090146081748,1,20,1 -13937,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.66595120565034,24.1404397491912,0,8,1 -13943,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,10.2226632924285,25.538957387481,1,12,1 -13948,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.68077432271093,19.1512720253417,0,10,1 -13949,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.1927577457391,21.4456081968112,0,12,1 -13954,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,10.2391586706508,22.6170279533739,0,7,1 -13955,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,0,9.6787464809604,19.1089958321273,0,6,1 -13957,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.55439274944365,28.206202335276,1,16,1 -13960,7,0,2.61803289632224,8,28,-1.93504161015579,-1.25267685302539,473,1,9.85426741070114,22.9422234187181,1,18,1 -13962,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.0305919994134,24.1410114134061,1,7,1 -13966,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2413752267603,18.4539693572796,0,4,1 -13967,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1355138106737,24.7859985728544,0,10,1 -13969,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.94767833361402,25.2294623199895,0,20,1 -13970,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.70655686035752,20.3386140356714,0,7,1 -13973,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4506953924429,27.298205934786,0,13,1 -13977,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3527370523661,23.0864099981132,0,3,1 -13980,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.64762896578759,27.2662792255919,0,12,1 -13981,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3846216483507,20.134461784552,0,8,1 -13985,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.65031401161104,19.2248018707455,0,2,1 -13986,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1320843119174,21.6285995360171,0,10,1 -13988,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.98594533745199,18.8701926370758,0,7,1 -13993,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.8546658186242,24.6584696862612,1,12,1 -13994,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4603552531917,25.0241208575036,0,6,1 -13999,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3739680841099,24.7584469764885,0,12,1 -14002,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1955355438404,20.3624306555697,0,7,1 -14004,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3352062029298,28.1047448346066,0,9,1 -14006,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.54300733259879,21.2279429516779,0,7,1 -14007,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.4439335006755,20.6956647752397,0,6,1 -14008,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.2217508098111,26.5035999164932,1,10,1 -14015,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.9760391281452,20.1614449573849,0,8,1 -14017,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.61082394747064,23.2850348129791,1,14,1 -14019,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.89597007841803,25.0806524221915,0,14,1 -14020,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.57745824404992,18.9563882956903,0,16,1 -14028,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.88398715201765,21.1061203038015,0,8,1 -14030,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3445293817203,24.7665189880536,1,15,1 -14034,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.88963471469469,20.6010720775646,0,6,1 -14035,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1044259585906,22.3842004105541,0,8,1 -14043,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.53597045037895,19.9843358775419,0,4,1 -14045,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0820085890591,19.0880609672289,0,10,1 -14047,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.86258069542237,24.8710300614937,1,11,1 -14052,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2896730005741,21.0546930647236,0,8,1 -14060,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.70802950370125,19.3211385884265,0,8,1 -14062,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.2825212436728,26.2154479380271,0,12,1 -14063,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.79929405031726,24.5391396140724,0,16,1 -14064,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.71602297993377,25.9743785911156,1,14,1 -14071,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1238955671433,19.8431954452988,0,12,1 -14072,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.62274458864704,18.4440694886129,0,12,1 -14074,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3053193602245,24.8402458729222,0,23,1 -14077,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3117272420786,25.2075346595915,1,14,1 -14080,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2107694600709,21.1037541344764,0,5,1 -14086,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.59645762597211,24.7493651113145,1,10,1 -14088,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.71541998139583,19.7049166726191,0,16,1 -14093,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.86416250257753,20.9115459219317,0,8,1 -14097,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.63354754261672,20.5588330270168,0,8,1 -14098,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0268454023171,22.9602403426519,0,4,1 -14105,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3702768296935,19.3543623339784,0,6,1 -14108,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.97681224066764,20.6347965678825,0,6,1 -14109,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.55118693551049,26.530000667166,1,13,1 -14112,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.2936447302345,24.1430855957411,1,14,1 -14116,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3394916378893,20.2456784456639,0,6,1 -14117,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.99929115688428,23.8247209110345,0,17,1 -14121,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.71359578589909,21.0248579720057,0,7,1 -14122,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.73274208069779,26.8785808418182,1,9,1 -14123,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1489752379712,20.8022509488703,0,7,1 -14125,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.86161883664317,21.4752361157266,0,2,1 -14128,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.4606169466861,21.7986066753117,0,5,1 -14131,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1141323610209,25.2358126389263,1,14,1 -14134,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1951554850675,20.1732208793158,0,2,1 -14136,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.85980834742077,20.7735924064969,0,11,1 -14148,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.2973714473192,22.2080731743381,1,12,1 -14152,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.205897757085,24.9180985602267,1,9,1 -14153,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3973711519502,25.9067345897339,1,11,1 -14158,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3288693018258,25.7827190545161,0,17,1 -14162,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3671669389587,27.0742238863845,0,7,1 -14167,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3881082052831,21.428771066338,0,8,1 -14169,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.51792366942391,28.6104146664033,1,17,1 -14170,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.4640346339438,21.7532043175291,0,2,1 -14172,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3532502991147,24.3795520744168,0,8,1 -14174,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.98421893664636,24.5130280298417,0,10,1 -14175,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3949097802397,20.6912560006804,0,5,1 -14176,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4137278343551,25.8036176296022,1,15,1 -14178,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1006800963078,25.861526810948,1,13,1 -14180,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1346903280355,24.0381526497023,1,14,1 -14181,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.093792893691,17.7841556892349,0,7,1 -14183,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.86737154563889,27.9508231025765,0,13,1 -14185,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3379467278719,25.8893934968426,0,15,1 -14186,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.67502395412885,18.5433646874574,0,13,1 -14189,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1599943761248,18.22549401507,0,4,1 -14190,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3326818833593,21.4539008910721,0,7,1 -14191,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3802239007782,20.5310211630572,0,7,1 -14192,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.54234222276136,24.7098117609532,1,13,1 -14194,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.9392313901335,26.440704990218,1,9,1 -14196,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.0918683472555,25.9870456362312,1,12,1 -14199,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1183435756247,29.2690069800795,0,14,1 -14202,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.94807345233858,20.6055983691427,0,8,1 -14206,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.58894451148808,19.7672835680344,0,7,1 -14210,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.95095154037699,20.6832403095414,0,7,1 -14211,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.99874573829584,27.1651167121961,0,11,1 -14214,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.98651378625073,22.702924441026,0,10,1 -14217,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3810523441061,21.9870907629663,0,2,1 -14219,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.57414061157033,22.3431507519003,0,9,1 -14224,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.336351756705,25.0603262502774,1,7,1 -14225,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0909841200337,21.3216236561049,0,8,1 -14227,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1766353542916,22.6910234003446,0,7,1 -14230,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2172103337944,18.381089853559,0,15,1 -14231,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3676405141596,27.4264760144547,0,16,1 -14238,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1167457338888,19.1753528365413,0,7,1 -14239,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.53822844056413,24.6217797257526,0,15,1 -14247,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.0960191644263,24.1515353179062,0,13,1 -14248,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.84020940680057,19.8521395386252,0,12,1 -14250,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.82485131896101,25.0131060462229,0,8,1 -14252,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.5222781826742,25.8089877449959,1,7,1 -14253,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3569079090375,23.358954676029,0,11,1 -14256,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.2779194891918,25.598705521461,0,17,1 -14276,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.80430208449252,25.7909255060691,0,9,1 -14282,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0327692402061,18.4897008074137,0,12,1 -14284,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.50109753734432,26.0892138768651,0,18,1 -14288,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.2206293432973,28.3682353883961,1,12,1 -14292,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.85688712424599,19.7122743156473,0,12,1 -14294,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1584679628722,27.8588727540655,0,19,1 -14295,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.52290464076214,23.1308025993327,1,10,1 -14296,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3228113977239,24.8277953480754,1,15,1 -14297,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.95632736431435,23.5544543398442,1,11,1 -14301,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3504486663733,25.4740734985312,0,11,1 -14307,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0799026815221,17.9886156147525,0,5,1 -14315,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.62432996300049,26.5578678094007,0,15,1 -14320,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.70233846339397,25.0098036269319,1,10,1 -14322,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2194819375873,21.7227337644075,0,14,1 -14325,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0628911694512,19.3129927320975,0,8,1 -14327,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0400739158504,19.9717659580895,0,9,1 -14328,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2504331569653,21.2184562910275,0,7,1 -14329,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.57901801075786,21.0751140542834,0,7,1 -14331,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1722903067712,26.0183011148897,1,9,1 -14332,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.57321853167377,20.3911606342906,0,10,1 -14338,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.90340681793168,20.3222134747012,0,11,1 -14339,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1239456392359,21.2218194053735,0,8,1 -14340,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3968210658059,27.2054970146862,1,13,1 -14345,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.85411810083315,20.3416561261399,0,11,1 -14349,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3622511017602,28.0903615529758,1,11,1 -14353,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2775391121395,20.1574978304036,0,8,1 -14364,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.83860547747463,22.1633047001997,0,9,1 -14370,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3983562318608,19.7460468996888,0,5,1 -14372,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.4928341270424,22.0131525663186,0,8,1 -14375,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.64312771940604,20.7127046433103,0,8,1 -14379,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.82180873933248,20.2342641747353,0,8,1 -14381,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.64078281726688,26.2868346559302,0,13,1 -14385,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.0428690379485,25.866619815557,1,10,1 -14386,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4637160527054,25.9951177946506,0,10,1 -14390,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0128550180234,19.2738528460137,0,5,1 -14391,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.0432095932774,20.6523012312043,0,7,1 -14393,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.6542636922095,26.2548934947488,1,9,1 -14394,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.85359275643714,25.7861254877893,1,16,1 -14395,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3121096927207,20.1673578947936,0,16,1 -14397,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.1158964384813,24.2820509949253,1,18,1 -14399,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1660995432176,21.6220995379697,0,3,1 -14404,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3842290523462,21.4403041480586,0,5,1 -14405,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.58975865831599,25.3685069549433,1,12,1 -14406,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.60063960356638,21.0758654477835,0,11,1 -14407,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.90934544359334,18.568276625129,0,4,1 -14410,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.2602387550287,21.6906364835923,0,9,1 -14412,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.7754511393141,23.8344675020323,1,16,1 -14414,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.2881470818538,27.6789022517683,0,16,1 -14416,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.8380881047342,18.4443702241915,0,3,1 -14417,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.378960680915,20.3076040197611,0,5,1 -14419,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.3987464557867,24.3144381916606,0,7,1 -14420,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.1810973261017,20.2737412588134,0,9,1 -14421,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.195706761675,21.2716728886905,0,8,1 -14423,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.71303884941153,19.3141109628117,0,9,1 -14424,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.50249474635348,20.7981094926955,0,5,1 -14427,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.91832619952038,22.2183075973129,0,9,1 -14429,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.2299231446814,25.9157891812098,1,6,1 -14432,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.77357823238708,21.8785784956407,0,7,1 -14436,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.75814553140663,21.3873987028942,0,4,1 -14437,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.2235512915067,25.1522490204492,1,16,1 -14439,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.89427581080236,21.2137391267312,0,7,1 -14442,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.9662790724542,27.6208302462203,1,7,1 -14444,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.416757612722,23.7816533453808,1,10,1 -14445,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.67301326198503,21.2017857982806,0,5,1 -14447,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.79747355892323,21.1156863310724,0,16,1 -14452,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,10.4229078639764,25.8474752488173,0,9,1 -14455,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.64337516087107,25.7299196809646,0,11,1 -14457,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.65260479366407,25.1913240299006,0,9,1 -14458,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,1,9.99830070557073,27.1572898514042,1,11,1 -14463,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.6897642784752,22.8565733857825,0,2,1 -14466,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.90578579390422,19.1659348244383,0,12,1 -14468,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.221702254843,18.983997201655,0,6,1 -14470,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,10.3514469435904,20.327185183181,0,5,1 -14473,8,0,-0.163954263927099,6,29,0.612097122251373,-1.55532506250667,515,0,9.55132447788492,20.8631641122485,0,6,1 -14476,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0598886595108,21.0748969120493,1,8,1 -14477,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.7052102915477,19.9983479765781,0,6,1 -14481,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.9135180732701,18.5603799074421,0,7,1 -14484,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.76124282530509,18.647913382977,0,9,1 -14486,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3444979274645,23.3025997368065,0,10,1 -14491,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.65662255417556,19.5934300175201,0,8,1 -14496,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0992793687619,22.9111257000428,0,5,1 -14497,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.93791920947842,26.084005518034,0,12,1 -14502,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.54441296192817,25.9644412560743,1,10,1 -14503,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.90100969839841,19.8858056710144,0,3,1 -14504,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.386529026553,22.7995592413041,1,16,1 -14506,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.9150433561299,20.4050362149728,0,4,1 -14508,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2747875782661,24.7046090052516,0,7,1 -14509,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.89351998758502,18.8867537938781,0,3,1 -14520,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2768004289828,24.631628899625,0,16,1 -14521,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1406002964359,19.2713275624047,0,7,1 -14522,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.6282559025567,23.5801635288568,1,13,1 -14528,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2254296317697,22.4589026025081,0,6,1 -14529,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.7527919895947,20.544579664028,0,3,1 -14532,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.61462088953704,24.552959897138,0,14,1 -14533,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.69046152732335,21.4476488420438,0,10,1 -14536,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.59504942619242,19.5046099117449,0,4,1 -14542,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2256631823257,23.1385178659712,0,11,1 -14547,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.68041296838783,18.8742704379013,0,7,1 -14551,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.99632966914214,18.7743526422482,0,5,1 -14552,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.51746649504639,18.9999462984186,0,12,1 -14554,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3485380832572,23.6150090660184,0,15,1 -14557,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.371872223448,23.5016937080504,0,6,1 -14564,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.58670766046271,22.7421700255442,1,6,1 -14566,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.86904545128345,23.2403277529569,0,9,1 -14567,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.69511512038298,17.3448638682766,0,2,1 -14574,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0192866066936,18.6331844260761,0,12,1 -14576,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3912571447436,27.1108043302098,1,10,1 -14579,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2350239919033,16.8973208439663,0,6,1 -14580,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.66291642305441,24.032728074113,0,5,1 -14581,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.99883204395883,22.3037879245223,0,10,1 -14593,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1806494812481,16.7346212562283,0,9,1 -14594,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2552530262619,24.8991423266687,0,20,1 -14595,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2654705944005,23.8768187440952,0,14,1 -14599,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0030692003202,23.694402006929,0,10,1 -14603,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1746252153534,22.8464644653924,0,8,1 -14604,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0945082723629,17.5013858698962,0,3,1 -14605,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.86025375151075,18.6553130618439,0,9,1 -14606,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.64806196605787,18.2952615944123,0,5,1 -14608,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3920369141269,20.8260544308171,0,7,1 -14610,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1850092606619,24.3257756134522,0,13,1 -14611,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.64250660664402,20.0733270191752,0,6,1 -14614,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.8846273124218,18.6328646719983,0,5,1 -14621,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.59758891910315,23.2706830439296,0,12,1 -14624,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.4140285684261,24.0414318596197,0,8,1 -14625,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.7279462730512,24.9247618168103,0,14,1 -14627,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1333026010543,18.6494487548456,0,6,1 -14629,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.4573166195769,23.2216693905174,0,7,1 -14631,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0549304550514,26.1023138322704,1,10,1 -14632,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4962219654117,18.9049334206186,0,2,1 -14640,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.025086915819,22.3402539782252,0,8,1 -14642,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1520647623111,19.757209677392,0,5,1 -14643,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.96663743001409,24.3202395848059,0,8,1 -14645,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3147540125065,25.0226802514426,0,13,1 -14649,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.95276570599526,18.7233086888425,0,6,1 -14650,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.92618543771096,26.5776434185148,0,17,1 -14651,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4699665119406,18.2850682501475,0,9,1 -14653,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.95440685143694,20.127252003558,0,12,1 -14658,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.64862216473557,26.6371128811244,0,14,1 -14660,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.4645848451182,23.6538205449858,1,12,1 -14664,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.4108367839362,25.6596135798155,0,11,1 -14666,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4822995036375,17.3985283386574,0,6,1 -14668,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0277436368633,23.339928197937,0,6,1 -14670,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1343040503561,23.6392074160966,0,5,1 -14671,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2861057119444,17.6493936969329,0,9,1 -14672,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1747736462858,19.7898902716558,0,10,1 -14674,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.102203092305,24.2100308518317,0,14,1 -14676,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.72923423605971,22.236926532398,0,17,1 -14677,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.8876936447341,17.43023709545,0,7,1 -14685,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3429050259292,20.7862824888872,0,8,1 -14691,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.70715181226842,16.0248903700279,0,6,1 -14692,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.76006094529293,20.5832052587854,0,13,1 -14693,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.90562755218707,24.7880227514811,1,10,1 -14694,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.64504469837993,22.3401694676733,1,12,1 -14697,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.77311060694046,26.3293782235437,0,13,1 -14698,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2116512386128,24.5915677431779,0,6,1 -14703,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1149315913208,23.8111680687944,0,8,1 -14704,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.62925992324017,25.3769837776779,1,8,1 -14705,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2496543496381,18.6549748415694,0,4,1 -14707,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.82899124920368,25.380794763073,0,11,1 -14711,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.73289412120357,23.5890160025707,0,14,1 -14717,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1708424771205,19.4931484873958,0,14,1 -14721,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1752571754623,20.0928106921693,0,13,1 -14725,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.59431995544583,17.7425633232609,0,9,1 -14727,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.57611006405205,19.4772797676381,0,7,1 -14729,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2105398594867,24.6009246139427,0,10,1 -14734,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3336524791084,18.7222619458742,0,12,1 -14739,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.91810524603352,19.0964623528618,0,7,1 -14740,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3318627409171,19.3748338514049,0,6,1 -14741,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.87626565364189,24.7631559851017,0,14,1 -14743,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1679188450798,18.4313502874132,0,8,1 -14745,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1406627187971,19.5049885803347,0,8,1 -14751,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4356742561795,18.0075982761402,0,4,1 -14753,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.76939507387578,23.1711694676712,0,5,1 -14754,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.68675293377601,18.7266796443301,0,9,1 -14755,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.71018248796463,18.7211660356426,0,9,1 -14759,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.50399210047908,24.4016563789499,0,14,1 -14766,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3059622719884,17.0952416099108,0,4,1 -14767,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2594852603506,15.0784489769032,0,6,1 -14771,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1276718184818,18.5153445659141,0,5,1 -14773,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.68849493516609,19.1804265192821,0,9,1 -14774,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.69198837666772,19.662377451606,0,5,1 -14775,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1100328087341,21.8067801192713,0,9,1 -14776,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.158064231975,18.4427827354676,0,7,1 -14778,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.97129559051245,19.954687976889,0,7,1 -14779,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.91651970124803,25.9057599064823,1,8,1 -14783,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.77273858361878,17.5521736454584,0,12,1 -14786,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1262575176079,22.2442805682157,0,12,1 -14788,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.76071763504297,23.7813407454984,0,6,1 -14792,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.74754690239206,22.415309602393,1,10,1 -14793,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.75133414543234,17.8395013464999,0,5,1 -14794,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1427684284281,20.1452889479658,0,5,1 -14795,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3006261466071,24.2299201864034,1,11,1 -14800,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2535783890635,19.574193022119,0,9,1 -14806,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3564403578639,16.4162705760861,0,8,1 -14809,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0700604594313,19.0703889438605,0,8,1 -14810,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0203017613385,18.2560869981487,0,3,1 -14812,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.9068099737633,24.5964059989549,0,12,1 -14815,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0403300237376,19.0617794332526,0,4,1 -14818,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1194368842989,18.6187539667019,0,9,1 -14823,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.63881350448355,20.8061317552468,1,6,1 -14824,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.71847081976011,22.6843952444557,1,8,1 -14826,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2250021984801,19.6053854158166,1,8,1 -14830,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.91057438589633,17.5453732982792,0,2,1 -14831,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.69100454752333,26.3614907313591,0,11,1 -14832,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.6381223606877,18.5107672355743,0,9,1 -14836,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.83808006462641,19.5141025146053,0,1,1 -14837,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1054300116375,19.8305563877784,0,5,1 -14840,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.63298449898139,24.9944884861433,1,12,1 -14842,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1441340059973,16.2556543538716,0,5,1 -14846,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.56746979872696,22.8399247570235,0,11,1 -14851,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.50209011370316,24.4229780168559,0,10,1 -14852,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.87635292625055,18.9052599690597,0,5,1 -14859,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0354788624682,19.093414465113,0,7,1 -14860,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.76440127845854,16.0002671084844,0,7,1 -14863,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3519566194154,23.3759648646271,1,7,1 -14869,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0241394005716,23.9452108696942,1,14,1 -14873,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3395232819021,17.3357755661742,0,9,1 -14876,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4284525504336,19.3609307178367,0,7,1 -14877,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.76138443755917,21.8642206716309,0,11,1 -14879,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.94373553153127,16.7464492509651,0,7,1 -14887,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.3517217375338,19.1731798148426,0,6,1 -14888,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.55441013094969,23.1833825097488,0,11,1 -14889,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0484727500007,18.2047219241392,0,7,1 -14891,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.1139177056029,23.3342977837142,0,13,1 -14899,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2355706747621,19.7947552395471,0,4,1 -14900,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2190353537444,19.4399510986361,0,4,1 -14903,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.5752158886753,25.0882633985409,0,7,1 -14906,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.81939700432122,18.7495961787587,0,6,1 -14912,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.90842337906361,24.9389616412557,1,11,1 -14917,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.76013696193695,22.6913687558501,1,9,1 -14919,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.4509816050995,22.0522558143914,0,12,1 -14921,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.0846932542045,16.9149873498786,0,7,1 -14923,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0062888015527,21.9619937166495,0,10,1 -14926,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.97864140034653,19.3794502368554,0,8,1 -14927,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2039742704947,22.5976530830927,0,16,1 -14929,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.4044763585553,19.2146684250865,0,1,1 -14931,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1652053382713,20.0489128961945,0,8,1 -14935,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.88002459751442,21.9593866629699,0,12,1 -14936,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0647274339572,24.7797746670136,0,5,1 -14943,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.92085346556269,18.1912141208116,0,9,1 -14947,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.2188502915669,19.6547558127951,0,8,1 -14948,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3010638714768,22.6438906324728,0,13,1 -14949,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.59517019055784,22.7917596629085,0,16,1 -14950,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.55911490274593,24.9417681773185,0,9,1 -14951,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.0290521022398,23.8012700518513,0,9,1 -14953,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.1132540055551,19.2992648766814,0,12,1 -14955,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.70925243175589,19.4550013872077,0,11,1 -14958,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.92951606423594,20.2564810543787,0,8,1 -14959,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.97948943963274,20.9469038122081,0,1,1 -14960,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.68794212047942,21.6036932871092,0,10,1 -14962,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2667835932225,25.8390404608354,0,11,1 -14967,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.4107714286074,22.8245494596415,0,5,1 -14970,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.94637948763557,17.2751088054755,0,9,1 -14971,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,10.271942549618,21.3133599236202,0,4,1 -14973,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.3745486778207,20.3416164590506,0,11,1 -14975,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.4271487763617,23.347327025078,1,8,1 -14977,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.61553225852549,25.2634267966655,0,4,1 -14978,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,10.2553129482549,24.7809570210616,0,14,1 -14982,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.530479633715,22.84863620323,0,17,1 -14984,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.7562464333605,17.5219017161739,0,5,1 -14987,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,1,9.63086930289865,23.8586040947511,0,6,1 -14988,8,0,-0.163954263927099,6,30,-1.14748323418017,2.13929076916298,514,0,9.87432338064536,20.7048867327983,0,5,1 -14991,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.95703324791975,25.8094411561191,1,19,1 -14995,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.52328948164359,28.0372902053579,1,15,1 -14998,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4845064757392,22.6196813208668,0,5,1 -15005,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.6646088573616,28.3067161360097,1,20,1 -15006,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.51385828433558,21.8451326068162,0,16,1 -15008,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.81641046795994,21.1592431022842,1,10,1 -15010,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.1057739588432,29.7276295750954,1,12,1 -15011,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.62628377042711,28.4000015639469,0,12,1 -15012,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.95778471231461,20.4362316095459,0,5,1 -15014,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1482185136992,22.0770688001477,0,11,1 -15018,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4952015217859,20.9673990823658,0,11,1 -15019,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.65937787340954,20.8930173014281,0,6,1 -15021,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4779245145619,28.1502799265526,1,8,1 -15022,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.59925744100474,24.9938239548101,1,14,1 -15023,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.1510096208658,27.3380166642068,1,14,1 -15024,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.65287059359252,25.8937771839931,1,19,1 -15032,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.97879586624913,29.381364282962,1,8,1 -15036,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.79910626029596,29.044020906802,1,16,1 -15038,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.64547807001509,22.2093440919575,0,9,1 -15040,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4485612120479,27.7983224337784,1,17,1 -15041,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.1383694265969,25.5201438449809,1,22,1 -15051,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4703042905312,20.996838186731,0,7,1 -15054,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4522304809652,23.1222424768345,0,16,1 -15058,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2116672100965,23.2341141468371,0,10,1 -15060,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3798630826641,22.1999300852488,0,7,1 -15064,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2518979234155,20.3062715381848,0,8,1 -15065,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.75131181115285,20.062603480871,0,4,1 -15069,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.83121510944329,26.678689347968,1,15,1 -15075,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.83094607573003,25.216817063987,0,8,1 -15078,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.73272178298794,25.8271893058657,1,11,1 -15080,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.57258506072685,20.1715495924279,0,7,1 -15082,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.75664339610375,27.6302706384725,1,23,1 -15084,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4929484822787,21.8005227197523,0,8,1 -15085,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0353422879707,26.4116841572284,1,15,1 -15090,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4011718817055,20.2604918228789,0,10,1 -15098,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3482374609448,27.7862993926605,1,9,1 -15103,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.77473621303216,19.8727303619551,0,9,1 -15104,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.2396708410233,25.193091779287,1,15,1 -15106,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.78989509539679,28.1710174789532,1,21,1 -15110,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.95212644827552,21.9915340583898,0,10,1 -15112,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.1160769688431,26.6533007879616,1,15,1 -15114,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.1224111584015,28.505740145839,1,11,1 -15117,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.53657222515903,21.1267733409745,0,8,1 -15118,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.8855617842637,28.7201175949531,1,16,1 -15120,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.55896462220699,22.1019051394936,0,12,1 -15125,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4980561200064,27.8744402768151,1,10,1 -15129,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4329719762318,21.4110457639597,0,10,1 -15132,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.88963964907452,25.3455035742804,1,12,1 -15135,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1637508643325,20.8474855143044,0,11,1 -15137,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.84599139611237,25.4373800261268,1,17,1 -15142,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.83099766378291,29.5216100302592,1,21,1 -15146,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.61516183312051,21.4213931464017,0,6,1 -15149,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.83075170358643,25.1505798484618,1,17,1 -15150,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.5177848211024,22.1569283910363,0,10,1 -15151,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0519672259688,23.875920005265,0,15,1 -15156,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.81900138827041,27.1607018840011,1,10,1 -15158,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4023265871219,21.5297471725282,0,10,1 -15159,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.99176923558116,24.6442936136117,0,8,1 -15162,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2175391269848,21.6510167947701,0,8,1 -15163,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3991036054213,28.8737316145191,1,16,1 -15167,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0036671592388,28.1783740007714,0,14,1 -15172,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.7671019891277,19.9510008894851,0,6,1 -15178,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.57581083290279,26.9122737120365,0,11,1 -15185,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2517560895067,20.4487739657828,1,12,1 -15187,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.2027559070848,28.6064913982788,1,13,1 -15190,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4041641000658,24.8171486761349,1,15,1 -15192,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.93152357661165,20.4344121902872,0,12,1 -15197,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.65213369880803,26.8878201527032,1,22,1 -15198,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.99431014945731,22.0242128819569,0,8,1 -15202,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4156861999072,22.3537692338074,0,7,1 -15203,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.93209025729448,22.056527791974,0,5,1 -15204,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3615325465798,24.938311124585,1,16,1 -15205,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4009800637141,25.0936241282608,1,8,1 -15206,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.57109837327152,24.0536023990807,0,9,1 -15211,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.70441060187295,21.4935157798795,0,7,1 -15213,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4229243008886,24.5896874644178,0,14,1 -15216,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.90792532288469,22.4596836119751,0,6,1 -15218,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2669742787257,21.5094761619334,0,11,1 -15219,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.64449979737401,20.6904801077743,0,5,1 -15221,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2629605773836,21.1394716225374,0,8,1 -15222,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.73097326559946,22.8096910227775,0,6,1 -15230,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3545184978284,24.3061128887709,1,24,1 -15231,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.56519319140352,21.5076171538322,0,12,1 -15233,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.93152016820386,22.755717007561,0,5,1 -15234,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.2565016879234,27.3712464505158,1,13,1 -15238,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3028939929791,28.0633159700595,1,14,1 -15242,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.60067187901586,20.8023185168697,0,8,1 -15243,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.50389998522587,21.3852167036567,0,9,1 -15247,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.85677796090022,21.8354600893725,1,11,1 -15248,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.67974297190085,27.6923291692735,1,10,1 -15249,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1480892379768,22.5082059809301,0,9,1 -15258,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.91758153424598,27.1633930125031,1,16,1 -15262,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4192408395465,23.6048610031883,0,8,1 -15263,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2175040303264,21.9882297769901,0,10,1 -15264,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0750649517868,21.0684733733455,0,11,1 -15265,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.52557601570152,28.8113935436318,1,8,1 -15266,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.026128484169,25.1610965877651,1,17,1 -15267,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.76615370996296,28.4357184723193,1,13,1 -15268,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.95043957629241,26.7003408413805,1,12,1 -15270,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.89043177408166,20.7476934047499,0,9,1 -15271,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.97600239212625,27.0154279542578,1,18,1 -15274,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1310321947094,22.8216904914207,1,8,1 -15277,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.81005145190284,22.7316797973143,0,9,1 -15279,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.6386825570371,21.6005258180876,0,9,1 -15280,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.2644864164758,25.8699870987404,1,17,1 -15283,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.183036711067,23.1607961454341,0,6,1 -15288,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4037311058491,22.3026133560321,0,5,1 -15290,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3827095383313,29.1148457492474,1,18,1 -15291,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3464787583798,27.0827439046075,1,14,1 -15292,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.52967253513634,24.0066260525538,0,4,1 -15294,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1934135193005,20.2592143086322,0,9,1 -15298,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.99029944790527,24.5812509500035,1,16,1 -15299,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.29442421766,23.0720155277622,0,9,1 -15300,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.82597998855636,27.1647274733153,0,21,1 -15307,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.54857962904498,23.7984436848736,0,12,1 -15311,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.70107759232633,21.5696877746906,0,10,1 -15312,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3108220968861,20.5155775304638,0,7,1 -15313,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.56267642369494,22.0836984569643,1,13,1 -15314,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.78975548176095,24.7099736936928,1,12,1 -15321,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.83631560066715,27.0844150573106,1,13,1 -15324,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.53974409494549,22.3564383114414,0,11,1 -15327,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.91365579562262,24.4036076996559,1,12,1 -15330,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4421430053189,21.164836420641,0,11,1 -15331,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.77089204383083,26.1814396990215,0,17,1 -15332,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.96904199616984,26.6091998224568,1,20,1 -15333,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4207682039123,19.8938887014859,0,6,1 -15337,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3743607390206,27.0676988993079,1,16,1 -15339,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.84476794372313,23.2133522250804,0,12,1 -15340,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.67356526828371,28.3478085693866,1,15,1 -15342,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.84954935964197,21.9624476935802,0,11,1 -15343,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.82623344147578,21.8711966743998,0,12,1 -15345,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.65375924180262,19.3316233614318,0,11,1 -15348,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.722113693133,19.9262558666378,0,13,1 -15354,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.81931851943955,22.0444175624963,0,4,1 -15359,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.74164667190053,21.9151120968335,0,9,1 -15361,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.85580777772702,27.5292698129625,1,7,1 -15362,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.3571287607774,27.943339208564,1,14,1 -15363,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.2997849301901,27.1661469992371,1,14,1 -15364,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.60745958751068,23.6964068874449,0,14,1 -15365,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.6905203727074,22.1374814516337,0,11,1 -15366,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4915242732968,21.3099382723289,0,8,1 -15368,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.63178085139953,21.825504810876,0,5,1 -15372,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4675302861724,18.873763264033,0,8,1 -15373,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.7334775342606,26.2266707971151,1,11,1 -15376,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.92698018532246,22.4257504978627,0,7,1 -15377,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4604393399786,24.7196653557142,1,17,1 -15385,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.4107159241103,21.1272926815429,0,6,1 -15388,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.78033547755331,25.4395104547166,1,15,1 -15390,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.55092440568842,25.7886956260884,0,25,1 -15393,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.77453940385021,25.8323717637938,1,21,1 -15395,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.70060190279037,25.9341486063687,1,18,1 -15398,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.91442432440817,24.1999473809339,0,1,1 -15400,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.71306714252569,21.6465239868412,0,5,1 -15402,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.4270675021689,26.182875174035,1,15,1 -15403,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.5214067324996,22.4686868914516,0,8,1 -15407,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0247512948699,25.6610299117365,0,15,1 -15410,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3724487039726,24.2984818794886,0,7,1 -15412,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1055199261755,21.0412835604599,0,11,1 -15414,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0371558545157,21.6496805162579,0,10,1 -15415,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3188324940857,22.3124550024328,0,9,1 -15416,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.74127169698477,26.9894610810969,1,7,1 -15417,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.89268357609399,20.9128554179142,0,10,1 -15419,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0379387210123,26.2112977332655,1,8,1 -15420,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.87067036191002,27.4438657568659,1,16,1 -15422,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.310807734495,20.9531280061244,0,11,1 -15424,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.93640373391099,19.2239192327596,0,5,1 -15425,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.484125419287,28.5513364036532,1,15,1 -15426,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.1281151177827,26.2540462242964,1,17,1 -15429,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.76584854070097,20.9694783747756,0,13,1 -15435,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.3359219499398,22.9187519129247,0,9,1 -15437,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1638210630044,20.7370770325422,0,3,1 -15440,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2548509389162,20.9645401006147,0,17,1 -15446,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0216004934628,20.8991426840406,0,10,1 -15447,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.55383908282965,26.5688186824003,1,13,1 -15448,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.014906383818,26.8174553337483,1,17,1 -15451,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.67863376252353,28.4971870040156,0,11,1 -15456,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0199096819852,20.3232837131331,0,8,1 -15457,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.66198690421879,29.0577072348504,1,14,1 -15464,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.1150275059044,22.785290527482,0,10,1 -15466,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.2495956521016,27.953855188951,1,18,1 -15467,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2322616034653,22.5058421456321,0,9,1 -15468,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.6345150556881,21.0532795560103,0,9,1 -15474,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.2175946047064,22.1643301242394,0,9,1 -15478,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.59779831534252,21.314810894083,0,6,1 -15482,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,10.0387533667963,22.8207453661287,0,4,1 -15486,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.70113722071983,20.4263933597655,0,9,1 -15487,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0101779694669,28.1693402988901,0,18,1 -15488,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0989611106925,25.7970977102494,1,10,1 -15492,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.86311168689281,20.8725828807939,0,12,1 -15496,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.92966884584166,27.5821519837698,0,16,1 -15500,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.64792332239449,25.9648806702795,1,9,1 -15505,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.0300100666936,28.536233055683,1,15,1 -15511,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,0,9.90430272277445,21.1143704790374,0,10,1 -15512,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,10.2668011826463,26.6368153391175,1,20,1 -15514,8,0,-0.163954263927099,6,31,2.04226758976629,0.364755994984563,527,1,9.85491508524865,29.1623554956684,1,10,1 -15522,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4282942779828,23.9915187925393,0,15,1 -15526,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0040808983613,19.0997334135182,0,13,1 -15527,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1909490602557,27.1724245777911,1,13,1 -15528,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.84279181715101,23.9370490197196,1,6,1 -15533,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1167480717413,16.9761922871278,0,4,1 -15534,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.8223366625607,18.3615792179835,0,8,1 -15537,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.63659744244069,17.8298804306933,0,4,1 -15538,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.868950759992,18.7345356050553,0,5,1 -15539,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.94944426743314,18.8615079082999,0,7,1 -15542,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0191165113356,24.2535303337194,0,11,1 -15543,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2137224937323,20.0723980162614,0,5,1 -15545,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2555167949758,22.5485088574961,0,10,1 -15546,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.55735539644957,17.6430535177312,0,6,1 -15547,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.76299604354426,23.0340918801875,0,8,1 -15548,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0729938792065,25.5973933810661,0,6,1 -15550,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0628810385242,25.1239558050178,1,13,1 -15551,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.8249194866512,17.8282113613757,0,8,1 -15552,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.8307646389585,25.2779335446927,0,7,1 -15554,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1472275641281,19.0950456761489,0,6,1 -15555,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.63719363999553,22.2132134748794,0,14,1 -15556,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.77199021237902,21.7864110879619,0,3,1 -15558,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.63991896784864,21.0202880617404,0,10,1 -15560,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1280396450311,25.441958108153,0,8,1 -15563,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.67402843059972,17.982834441207,0,5,1 -15568,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.51150190364569,25.942041603468,0,14,1 -15569,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1388749000616,17.6264071627048,0,9,1 -15572,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.3498032896314,24.1724793300115,0,12,1 -15573,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.67586373747326,18.6964611835232,0,6,1 -15575,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.57514688069932,17.450860112052,0,7,1 -15576,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.73783535626717,20.2573516531399,0,11,1 -15583,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1561393924057,25.3185967198872,0,10,1 -15584,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2060571573675,16.0129052118008,0,8,1 -15585,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0267806614283,26.1600238592503,0,12,1 -15586,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.3059769307729,26.1592160195766,0,11,1 -15589,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0504067230504,20.71800449818,0,9,1 -15596,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.57322097430006,26.7630785922264,0,13,1 -15598,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.9515073581133,17.8788590442006,0,4,1 -15601,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.93252744013444,20.810221891594,0,4,1 -15602,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.56756953615695,20.7547069286718,0,6,1 -15603,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2203373417724,14.7930384741181,0,8,1 -15604,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.62120320671238,19.7057089531523,0,6,1 -15605,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.56138832424767,18.7073657468911,0,7,1 -15608,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1741038919427,25.6709796837301,0,3,1 -15610,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4468081835657,21.5335009093587,0,17,1 -15612,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0351576057728,19.4975733131073,0,7,1 -15613,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.53794769244269,18.3940323563805,0,7,1 -15617,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.85614911676385,22.6339218123135,0,6,1 -15618,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1005119732581,17.0321605774797,0,7,1 -15619,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.3910020701587,22.6889883526097,0,11,1 -15621,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.51568485074677,25.1429308734977,0,18,1 -15626,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.75252466415986,17.6876070607952,0,9,1 -15633,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2974074073136,22.6634494688917,0,6,1 -15635,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0216068634763,20.3368698359583,0,6,1 -15636,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.79896624409594,16.9519529695135,0,5,1 -15638,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.4010198293254,20.9619036938719,0,3,1 -15639,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3814337975346,18.574541790042,0,9,1 -15640,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.5862634612713,25.4589366186573,0,11,1 -15641,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0265885416884,18.529308129652,0,8,1 -15642,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.65950251114555,19.3000515474329,0,10,1 -15643,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3144369302318,19.7608266570288,0,9,1 -15645,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.55393431778066,17.9272822427391,0,6,1 -15650,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.112948723603,21.5121388859221,0,6,1 -15663,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.56541098724119,17.8588151953606,0,7,1 -15664,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0325052719563,19.4131758014491,0,6,1 -15665,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.61130558280274,21.6222114668276,0,10,1 -15667,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.96635241573676,24.7921629641925,0,10,1 -15668,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0125490962528,21.3575036135376,0,12,1 -15672,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.98769973102026,25.4908603652831,0,13,1 -15675,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.51634602318518,19.3744653553669,0,6,1 -15678,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.66176828625612,24.4477048687997,1,14,1 -15679,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1217512572184,22.7761224816711,0,6,1 -15681,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.71181216347031,24.2516980044161,1,12,1 -15682,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.8499981299974,25.6450234541275,0,13,1 -15684,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0270084617659,22.472745211459,0,9,1 -15685,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0205871420912,25.9285576732024,0,14,1 -15686,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.62271022936329,22.2494488840048,1,11,1 -15689,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.62450423580594,18.980299609942,0,5,1 -15690,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1620222299825,17.979621144748,0,6,1 -15693,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3835858390667,19.8899608991661,0,9,1 -15696,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.98746706638485,19.082166711362,0,3,1 -15705,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.84542384766974,18.5092695528656,0,6,1 -15706,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.8164379876107,18.6989027606073,0,5,1 -15707,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.149168163538,23.6563165538526,0,17,1 -15708,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0489376736805,19.1014917634583,0,8,1 -15711,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.57863336871378,19.859736826549,0,7,1 -15713,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1116204923019,22.7336156289076,0,10,1 -15717,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2616883614101,18.916794308436,0,12,1 -15720,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.71301329671405,24.2483537394987,0,13,1 -15724,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.90437009744346,22.8341991027359,1,12,1 -15727,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.397352875676,19.628129028182,0,11,1 -15736,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.3046799232252,26.254661715079,0,5,1 -15737,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.7746942806989,24.8943746610916,0,9,1 -15738,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1342255466152,23.799609903559,1,13,1 -15739,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.72156990016811,19.109662998853,0,5,1 -15740,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0576909750234,25.8091829814072,1,13,1 -15741,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.86691194679588,18.6795808762461,0,6,1 -15742,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1522933589295,26.0314753915442,0,11,1 -15745,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0951362729538,19.2375889511024,0,13,1 -15747,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.89118102542125,20.0505117188525,0,9,1 -15750,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.74914559675381,26.0764337569875,0,11,1 -15755,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.79311205982231,21.4538704643802,0,12,1 -15760,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.61652459041215,26.3666103974842,0,15,1 -15761,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.53312482731417,17.4625829241914,0,7,1 -15762,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.62827443238348,26.7902761231571,1,9,1 -15770,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3817358587403,18.2531769575348,0,6,1 -15771,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3595283373725,19.2918392260583,0,8,1 -15774,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4339091142174,26.4597640826215,0,12,1 -15775,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.86099471827038,24.5134581246479,1,10,1 -15782,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.69102567783557,24.308545254477,0,20,1 -15785,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.63947173557244,18.7218921211882,0,5,1 -15786,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0418572416529,23.5065403096458,0,15,1 -15788,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.5640860858839,21.796021993106,0,12,1 -15791,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.7422142336145,23.5059508942486,0,9,1 -15792,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.88701716973446,25.014485019068,0,10,1 -15793,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.95719632762484,23.2905388754077,0,16,1 -15802,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.84131082403474,18.8781664819989,0,7,1 -15805,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.56165221426636,19.192817559307,0,10,1 -15806,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.3990434031002,20.263778797432,0,10,1 -15808,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2390261956025,19.048674450424,0,9,1 -15809,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.82818223442882,18.823876701677,0,9,1 -15810,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.59738802770153,24.6488380596186,0,10,1 -15817,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0037590777501,25.9086915971913,0,10,1 -15818,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2998214510735,20.6556060923929,0,8,1 -15826,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.62553502852097,18.2123109443901,0,6,1 -15827,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2234575198963,18.4608748850125,0,9,1 -15829,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0859041055664,23.2998114832937,0,8,1 -15830,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.68962279940024,23.2161327848355,1,14,1 -15834,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1155383749865,23.3636768238318,0,6,1 -15839,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.6791586233303,22.3143491772582,0,14,1 -15840,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.77993110893294,18.8888419237453,0,3,1 -15841,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.82485038414598,21.7959158058567,0,11,1 -15842,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4432038601954,22.2344356284862,0,13,1 -15843,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.86844268091954,25.0782761208858,0,14,1 -15847,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.68293837853707,24.9853050286939,0,7,1 -15849,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.3208809627686,24.5414205249143,0,6,1 -15852,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.4268661397509,20.1929428910118,0,6,1 -15853,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2227199436165,23.2184829737598,0,15,1 -15857,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4114882736467,24.2560908168618,0,16,1 -15860,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1731445805635,24.5958315303896,0,12,1 -15861,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.66024786420166,23.01099421245,0,15,1 -15867,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2635688818991,19.1155653177794,0,9,1 -15868,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1029172660783,16.8051093234709,0,7,1 -15869,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.52201517834328,19.3406197374273,0,8,1 -15870,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.50068389205262,19.0244303781829,0,7,1 -15875,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.76450590416789,17.4071379169126,0,9,1 -15879,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.56843191268854,21.9621509718027,0,10,1 -15880,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.83034388604574,20.1181803723742,0,7,1 -15883,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.315685861744,24.1677931941354,0,11,1 -15887,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.73517839564011,24.1119065964501,0,10,1 -15894,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.89711986831389,25.406487731982,0,11,1 -15897,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.258464272134,22.3719820616999,0,14,1 -15898,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.2305903476663,22.4057596767611,0,9,1 -15904,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2123532623518,21.8690990933513,0,3,1 -15905,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.96509769745171,19.6089521020746,0,8,1 -15907,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.3336262044031,24.1552432014021,1,10,1 -15908,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.97371412836947,20.6472742225541,0,10,1 -15910,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.1200313675217,24.4496463453952,1,10,1 -15912,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.1530398060568,17.132744401032,0,9,1 -15915,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0825546525884,24.7817134500617,0,12,1 -15922,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.4428672615904,20.6694298458365,0,4,1 -15923,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.82295318786055,17.5538650249675,0,4,1 -15925,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.61201544757932,20.2881903508676,0,12,1 -15933,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.82911880756728,19.7095099454117,0,4,1 -15934,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.64660956687294,19.754286905861,0,3,1 -15939,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.76030679396354,18.095654036651,0,5,1 -15943,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.72404807596467,24.6612984257382,0,14,1 -15945,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.4200231996365,17.16816147406,0,4,1 -15947,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2432093794923,17.482866800021,0,7,1 -15948,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.2905315482058,19.5711832452184,0,9,1 -15949,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.63035656535067,20.7691501889978,0,3,1 -15951,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.53531703469343,19.7468007039318,0,5,1 -15956,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.6176938561257,19.0217594588107,0,5,1 -15957,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.62032815162092,16.6451576146867,0,10,1 -15958,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.84641698864289,23.5685323144909,1,10,1 -15959,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.61611586157233,19.0635702307409,0,6,1 -15961,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.53204665146768,22.9017715098649,1,17,1 -15965,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.94425758090802,23.4063033014839,0,10,1 -15968,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.53447169438004,19.3617140146421,0,5,1 -15969,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.93353427946568,17.5469389754642,0,8,1 -15970,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.86852479726076,23.520866847849,0,13,1 -15973,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.62588007701561,19.1521412730673,0,4,1 -15974,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.93569118343294,20.5953089761903,0,6,1 -15975,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.0627022539265,24.8411762147916,1,15,1 -15976,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.74090461572632,25.9348814846617,0,15,1 -15980,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.95759333879687,20.0868586675786,0,9,1 -15983,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.6615035245195,18.2837663724534,0,12,1 -15984,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,9.89180001360364,19.3876068559391,0,4,1 -15985,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.64243280282244,23.252065311082,0,7,1 -15994,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.102361147292,22.8948352503603,1,9,1 -15998,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.4874222937506,21.2213871525047,0,9,1 -15999,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.5566253089346,22.5506090353522,0,10,1 -16000,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,9.97801381209865,25.9480979946159,0,13,1 -16002,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.20117920544,22.6842289895995,0,15,1 -16005,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.3828493447509,26.0324482424205,1,11,1 -16009,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.377251341939,20.4427972658598,0,6,1 -16013,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,0,10.0245908056386,18.702612849392,0,9,1 -16015,8,0,-0.163954263927099,6,32,-0.610157071170163,0.125073371536872,501,1,10.3365798029117,23.3322939823108,0,11,1 -16019,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.89541074051522,26.6087098874476,0,13,1 -16022,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.7037770152092,26.9017317991624,1,13,1 -16023,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2992103539873,24.3911679252042,1,15,1 -16026,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.95048638852313,25.5583822180468,0,11,1 -16030,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.71417131950147,21.5977999911654,0,7,1 -16031,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0230507336091,19.745440694574,0,10,1 -16032,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2615414727479,26.3265518867647,1,12,1 -16037,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.90082607790828,25.7000670875298,0,10,1 -16056,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.158581746975,20.7340158760271,0,14,1 -16059,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2321179653518,25.9460115800498,0,19,1 -16060,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.96697542862967,23.0951730814729,0,13,1 -16063,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.71967103052884,19.3660788110568,0,11,1 -16069,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1857073123101,25.5796438456468,1,13,1 -16072,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4176565140951,20.3060822548963,0,7,1 -16073,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.3615805655718,24.3017073308453,0,13,1 -16074,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.333504661452,27.1873993303065,1,7,1 -16077,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.5547573317308,26.703726830114,0,13,1 -16078,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.3986225323752,26.4279113518873,1,12,1 -16079,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2407271079719,17.9396169520152,0,6,1 -16080,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0159110475797,19.1488677180095,0,8,1 -16081,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.78796456125565,21.3687901835379,0,3,1 -16082,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.58490225113928,24.7365880509149,1,13,1 -16084,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.99164149514399,25.3977126981788,1,13,1 -16086,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.61024185013957,21.5452437103487,0,8,1 -16088,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1701743437443,26.4304461346793,0,13,1 -16092,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.70517591526732,21.361312096579,0,11,1 -16094,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0843792115338,21.0725512945709,0,10,1 -16106,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.61591053963639,23.0137570029212,0,12,1 -16109,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3715211099479,21.0595371682724,0,4,1 -16116,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.1604747269303,19.7046844451552,0,14,1 -16121,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4641275089234,27.7075318232266,1,16,1 -16125,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4858985184692,27.0983714239034,1,11,1 -16126,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.84455487271771,17.7654151384463,0,12,1 -16129,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0504884344991,20.199016432922,0,11,1 -16133,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.72337627527304,28.3427888817188,1,12,1 -16134,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0020725354552,22.6955057004485,0,10,1 -16135,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2673917589709,24.8908937763899,1,16,1 -16137,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.3595550579485,24.3740568443086,1,11,1 -16138,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1807953945827,24.6527321818856,1,15,1 -16140,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1478884126991,23.6145841548486,1,14,1 -16141,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3325849997345,19.3394953610928,0,7,1 -16143,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.82687435718253,26.6073662435906,1,12,1 -16144,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2528158011846,24.8028360131868,0,18,1 -16145,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3916652677581,19.1960111278576,0,12,1 -16149,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.83021351089701,25.8977094872191,1,20,1 -16151,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.483604789013,20.6929947730056,0,4,1 -16153,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.76928248256445,21.5109015004027,0,9,1 -16155,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.66493926174007,24.0935127257834,1,12,1 -16158,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.81043626880273,18.9851595543195,0,14,1 -16159,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3499521072954,21.4749515630196,0,5,1 -16160,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3824276798405,20.5459513638756,0,12,1 -16161,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4886865599547,22.1441344200382,0,9,1 -16169,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.54653550544754,21.6388311015382,0,5,1 -16171,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2360770364758,27.1298786384723,1,12,1 -16172,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.1871298616752,18.8590394646129,0,5,1 -16173,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.84166662930511,24.1372034842565,1,10,1 -16183,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.77314257249236,23.8191262296444,0,10,1 -16184,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.1029715540353,20.5156608764824,0,10,1 -16188,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.77147568739019,19.6962955550281,0,9,1 -16190,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.1498209971469,20.5729746036378,0,9,1 -16192,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.89563747891225,23.9481863724203,1,12,1 -16197,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.72225041408092,26.7340200653959,0,9,1 -16199,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.72549706790596,24.7861392140555,1,13,1 -16208,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.76509862113744,20.6730104901304,0,6,1 -16211,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2392964763567,26.3369960399694,0,17,1 -16212,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4503537567798,25.270482735948,1,13,1 -16213,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.59312092745677,18.7553148402988,0,8,1 -16218,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.52628853893839,26.6633005598517,0,10,1 -16220,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1265565648209,24.4322353885861,0,15,1 -16228,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4314395689871,19.4152937868235,0,6,1 -16229,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4520414243452,21.2137291202924,0,7,1 -16231,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.82942076656036,20.6156690453012,0,6,1 -16233,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.064589668531,26.2944281549555,0,15,1 -16234,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.0991912665777,26.3107998865089,0,11,1 -16235,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4664238207042,22.8116757419569,0,9,1 -16238,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.75603647180833,26.1065844897383,1,11,1 -16242,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.72605875902809,19.2996869910739,0,10,1 -16244,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4157683975063,22.3932191493557,0,10,1 -16245,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3619213467464,18.2550041839463,0,5,1 -16246,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.51981922797859,29.2401461129807,1,6,1 -16255,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.87782796774991,25.9068723480088,0,15,1 -16256,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.0889248449821,26.6758522150799,1,17,1 -16262,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2777867680416,18.3892064415058,0,10,1 -16266,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4133574403822,18.8492156654744,0,5,1 -16267,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.5321663224604,21.415024047735,0,7,1 -16271,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4845164059661,19.8465667748125,0,7,1 -16274,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.55742601957172,21.1397845374825,0,9,1 -16276,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.92286908091046,22.9013163856677,0,3,1 -16283,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0887760464102,19.8733306011723,0,10,1 -16284,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2727464823984,20.4030597817761,0,7,1 -16289,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.0680884607136,25.1422056835548,1,20,1 -16290,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.3447912179399,24.9022859236224,0,12,1 -16294,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2338764602318,26.0569224924396,1,11,1 -16295,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.67906027892604,25.8306042434827,0,18,1 -16296,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4438696503639,25.9948281261588,0,16,1 -16298,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.81642238143831,20.0024088099101,0,10,1 -16299,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.919520115247,24.2627078491632,1,10,1 -16300,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4497337364592,20.711479782799,0,6,1 -16313,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0455822604708,20.7762155135789,0,5,1 -16314,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.418699079426,26.0309763153129,1,15,1 -16317,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2743593165651,24.6906743574794,0,15,1 -16320,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0711114692967,18.6689070615673,0,10,1 -16326,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.0092334784567,20.8236104507632,0,12,1 -16330,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.56837194925174,19.6767257886175,0,12,1 -16331,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.9792153085582,20.9272705471883,0,6,1 -16333,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.3904546650592,27.0296827992038,1,15,1 -16334,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.5795883552637,24.7406778080693,1,14,1 -16336,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.68475935794413,25.0719538392505,1,13,1 -16340,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.81724079791456,19.5539715544783,0,2,1 -16345,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.7440292655956,25.1534470534651,1,14,1 -16349,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4419770389795,19.7150085605188,0,7,1 -16354,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.69542522425763,27.5488700422765,1,14,1 -16355,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3821414813865,21.743499645325,0,10,1 -16357,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.5501465764828,22.9004930913748,0,13,1 -16358,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.82153592468239,24.5575305530781,0,14,1 -16362,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2093094070442,25.2984774689801,1,10,1 -16363,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1884463685565,26.1609991991471,1,12,1 -16364,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.96562965842895,19.0839235010564,0,3,1 -16365,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.456352105597,23.8463359430274,0,15,1 -16366,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.0205889523495,23.2058573324038,1,17,1 -16368,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.171256955713,25.1059677879925,0,15,1 -16372,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4984666472301,25.3076554565755,1,14,1 -16373,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2817580376286,21.6592231488386,0,10,1 -16374,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.89288867404684,20.58237208753,0,8,1 -16388,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.0103650121018,24.3747858712533,0,20,1 -16390,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3591280400287,18.8455491448049,0,5,1 -16392,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.63156347628683,22.2377416530533,0,8,1 -16394,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3996266389731,19.3465363767247,0,13,1 -16395,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2293005031534,25.1286372792368,0,10,1 -16406,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1682762694545,26.5293515054418,1,15,1 -16411,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.90234813792631,26.1426757057355,0,11,1 -16417,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4720470895991,19.0892334561606,0,9,1 -16420,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.0461245230399,25.0195137021959,1,13,1 -16425,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.83000881504267,23.5898386275269,0,6,1 -16426,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.98923166561872,21.5671680839877,0,9,1 -16429,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2825712587219,21.3960193852819,0,5,1 -16432,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3054826732259,19.5989609103651,0,9,1 -16434,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4645959951449,24.4766072760974,1,11,1 -16435,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2704622305464,18.6115167262998,0,9,1 -16443,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.3967947626952,24.8654145969216,0,12,1 -16446,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.64436337118968,20.8322161568971,0,12,1 -16449,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.52853835164569,26.6739625217145,1,23,1 -16451,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3982951706275,17.6271109368194,0,5,1 -16458,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.99324692087248,24.3472049090202,1,11,1 -16461,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.3692975225858,24.5079304325895,1,7,1 -16462,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.8397111503873,24.5749596425849,0,10,1 -16463,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.4351264070719,25.9278675452605,1,12,1 -16466,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2352567249909,25.4133236723364,1,9,1 -16468,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.78446543216705,24.6093194897842,0,16,1 -16469,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.0082806097344,25.9394938525246,1,21,1 -16470,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.1846286063083,26.2084467938795,1,10,1 -16471,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.298921080539,21.2597365981249,0,7,1 -16474,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.73436870751902,27.3899836692264,1,10,1 -16477,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.4416301432066,19.8594008876641,0,8,1 -16478,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.1886192676611,21.9884755768887,0,2,1 -16481,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2557446411811,21.4296782687553,0,8,1 -16482,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.1983369609807,22.4961122308751,0,9,1 -16485,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.80294051906094,19.175378028286,0,4,1 -16486,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2838025037199,25.3277379841062,1,15,1 -16495,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.66232078452595,21.0704504278994,0,10,1 -16505,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.472893234808,22.5212789474676,0,6,1 -16506,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.50490742828697,28.0835251980415,1,14,1 -16507,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.53809168352745,24.0621919972188,1,10,1 -16512,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.3627646896057,21.4715929171072,0,10,1 -16517,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.54315246362239,26.218474727851,1,9,1 -16520,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.2477499800734,26.217830654495,0,17,1 -16524,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.95734464051202,22.7731239739613,1,5,1 -16526,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,9.76405529957265,19.6686407876177,0,8,1 -16531,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,9.74218925251625,24.8502991103458,1,16,1 -16534,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.400909950491,18.7847068714816,0,7,1 -16535,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,1,10.206436318811,25.4138369380535,1,16,1 -16536,8,0,-0.163954263927099,6,33,0.927226128848615,-0.170973523031728,523,0,10.2729736072943,20.5846772430914,0,6,1 -16542,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1944907947909,20.7542307853186,0,7,1 -16551,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.79971356317401,18.4846345187414,0,6,1 -16552,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.2147024641745,27.5996310223392,0,10,1 -16553,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.76025013392791,23.9525157689208,1,13,1 -16559,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.88269876479171,24.9733266945569,1,15,1 -16568,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.58590685925446,26.1958117302372,1,7,1 -16574,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.2269719296601,18.5012194021137,0,8,1 -16577,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.70109451096505,23.4522772922466,0,6,1 -16578,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.79603321501054,18.7575351728186,0,9,1 -16580,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.90908345277421,21.3721914746432,0,13,1 -16586,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.99877639627084,25.6966048449518,1,14,1 -16590,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.865223395871,19.6291465980243,0,5,1 -16593,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4979866780341,24.9056144100047,1,16,1 -16594,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.1228617525194,24.0780789107346,1,10,1 -16596,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3159801459406,25.7382769260458,0,15,1 -16597,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4861753568985,25.141303910956,0,14,1 -16598,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.079673724249,25.1588744778082,0,18,1 -16600,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.76611252757721,25.0387941661583,0,5,1 -16601,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.7685773295816,19.2058780838876,0,11,1 -16602,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.3605575470719,20.6287221642936,0,6,1 -16603,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.935366633581,21.8923797481343,0,5,1 -16604,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.86439975607209,26.6062879684481,1,13,1 -16605,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.66685175802559,26.6134489857382,1,11,1 -16616,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0928500385489,26.2135934653844,1,7,1 -16617,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.97951534111053,25.7579634940087,1,16,1 -16621,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.56170806381851,24.5513651699305,1,14,1 -16622,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.152634408325,18.4597595926352,0,4,1 -16625,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.93113664118573,26.1060856789594,1,13,1 -16626,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.345398837002,17.241348718715,0,9,1 -16627,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.3983871606179,21.9125649069849,0,8,1 -16628,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.7518341105897,26.1552867193173,1,10,1 -16632,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3366564316675,25.6659367314612,1,7,1 -16633,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.2520348888356,20.0455760120382,0,9,1 -16635,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3231750144623,25.9386951019866,1,9,1 -16636,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.354746442521,20.5292988161149,0,8,1 -16637,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4180071416777,19.4496188904303,0,6,1 -16639,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.95324353175238,20.26620943487,0,6,1 -16640,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.76894546463154,18.070464837406,0,10,1 -16641,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4576215259731,21.5162913703599,0,7,1 -16642,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.97741234325804,24.894795369565,1,16,1 -16643,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.78915479104035,19.260152547927,0,4,1 -16645,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4750206505414,25.8433217075081,0,7,1 -16646,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.3788624363951,19.7729447484272,0,12,1 -16650,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.0452763207722,22.0972709982058,0,6,1 -16651,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.88929747254588,19.8204363641564,0,9,1 -16652,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1326525141485,23.1237188037547,0,8,1 -16655,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0278643204365,24.8107844245274,1,11,1 -16656,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.55549810500816,18.7302119907586,0,8,1 -16657,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.93375621596351,25.0196409279716,1,15,1 -16658,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.51858756109141,21.4396059722389,0,13,1 -16659,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0020461431704,27.6489093578631,0,13,1 -16664,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.433022971265,25.9015552669255,0,12,1 -16671,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.89125058334321,24.5967555096547,1,11,1 -16675,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.3640616252087,18.880369999183,0,9,1 -16677,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4641115351114,21.0416476398916,0,8,1 -16679,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.392777194269,23.762848535136,1,10,1 -16681,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4327070035506,19.7132383402661,0,5,1 -16682,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.80260780337267,27.4286563511534,0,19,1 -16685,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.50792131223716,24.2136844980082,1,12,1 -16686,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.66187945310958,18.6988183114462,0,8,1 -16688,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.97037326544523,18.8431576239577,1,8,1 -16689,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.63684590905905,26.8273561504156,1,23,1 -16691,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.2630789808463,22.502466165966,1,15,1 -16692,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.70724795130081,18.8938139169853,0,4,1 -16695,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.2552821768913,24.1532959443718,1,18,1 -16698,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.65595958055928,22.2816950521581,1,18,1 -16699,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.83156874938868,25.1554180059383,0,11,1 -16704,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.82481465674937,25.2465979968217,0,13,1 -16705,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.059962301515,18.7833414357509,0,11,1 -16707,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.83278560149483,25.5889846637556,1,13,1 -16708,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.89115386223421,22.7823596579652,1,10,1 -16709,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3777534049004,25.1716295834902,0,12,1 -16715,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0415918079671,27.1190723666103,0,13,1 -16719,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0805676532909,25.1207790001617,1,18,1 -16727,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3288986950647,24.8426304293141,1,19,1 -16730,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.57498447527178,27.2532338892043,0,21,1 -16732,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.61231494462118,25.3839848958573,0,11,1 -16736,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3855186928995,25.2536970074912,1,8,1 -16737,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.2331627919339,24.5301043832262,0,16,1 -16738,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4860308717471,21.10870794699,0,12,1 -16746,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.69703524303623,17.9287495921386,0,6,1 -16750,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4615090056323,22.269700435008,0,18,1 -16752,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0607557818294,25.2647148759334,0,12,1 -16753,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.60573684610426,24.4679968076246,0,15,1 -16754,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.86625528894365,26.3424443728103,1,10,1 -16768,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.59801106667146,21.2495174376591,0,5,1 -16769,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.97303471667692,24.7362620534642,1,11,1 -16781,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3283864390105,27.0187119985158,0,9,1 -16783,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.1242509591393,24.6587189679808,0,14,1 -16784,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.78155343676917,21.320131089706,0,8,1 -16785,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.77650274801999,24.1068071792669,0,17,1 -16791,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3754484099336,25.7584499236115,1,11,1 -16793,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.9419262977317,21.3840658551158,0,12,1 -16794,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.388179234229,19.5868753590626,0,8,1 -16799,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.3364166098181,19.5868060126731,0,6,1 -16805,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4839890052099,23.7277390757847,1,12,1 -16806,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4029169257265,25.5348723665543,1,9,1 -16810,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.74815213587135,20.8409895203571,0,14,1 -16813,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.82660442707129,26.3359334525621,0,14,1 -16815,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.69556652847677,25.529521033495,1,13,1 -16817,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.81427087867633,25.5573111580366,0,18,1 -16819,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.55352478520945,26.4742110253407,1,10,1 -16824,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.5346404267475,24.9077241708386,0,16,1 -16826,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.6018407845404,27.2578423873181,1,13,1 -16828,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.0901374386158,17.9728799947012,0,10,1 -16830,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4357983490918,22.8041303140001,0,5,1 -16831,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4370041561779,24.9057352933541,0,17,1 -16833,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0009597716853,23.5662873544683,0,12,1 -16837,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.91194625291973,20.9507605281868,0,14,1 -16840,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.85914754425175,24.2551732321991,1,13,1 -16841,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.68532694480382,24.0447626896959,0,16,1 -16844,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.55106763890944,25.8086137964829,1,12,1 -16845,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.59636279637925,18.5266054123872,0,4,1 -16848,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.73756048223004,25.5754082544267,1,11,1 -16850,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.1498580500484,26.3573896063508,0,10,1 -16852,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.2879436789081,25.2067426428222,1,14,1 -16854,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.2995276155416,24.0474014711089,1,5,1 -16860,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.51106718811207,26.8191416579189,0,10,1 -16862,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.2156230148394,19.455572480985,0,9,1 -16866,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.197176363552,25.6065856535755,1,9,1 -16867,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0698326951824,26.5448102809851,1,14,1 -16869,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.56491279508919,20.6009747862617,0,4,1 -16870,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3893286660314,24.3376047245614,0,13,1 -16876,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.50091382861137,19.4193836119641,0,15,1 -16879,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.2601722632535,19.6483555313108,0,5,1 -16880,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.204858369194,21.0376731967113,0,5,1 -16881,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.082817414077,21.9905291055894,0,6,1 -16885,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.2504119193181,26.2640475892757,0,17,1 -16887,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1571557654534,20.9589846994641,0,10,1 -16888,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.2246184132528,19.7180377853535,0,8,1 -16890,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4932574874256,22.2971280714363,0,8,1 -16891,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.67632448766381,20.9203986497466,0,7,1 -16892,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.67277507204562,26.3673387307522,1,13,1 -16898,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0539086228237,25.7360432546391,1,15,1 -16900,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.74775729188696,20.2011856555485,0,8,1 -16909,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.57926697214134,20.843503230914,0,9,1 -16910,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0013799872249,23.8338828051787,0,10,1 -16916,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.2619544942863,26.6313839155294,0,18,1 -16921,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.0365759576671,22.2668265896406,0,10,1 -16922,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.98483842751011,25.3114848067114,1,6,1 -16928,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3733623938169,24.2494533626314,1,14,1 -16930,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0196748473682,22.5068459601943,1,14,1 -16937,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.076441940153,26.9654680995153,1,8,1 -16943,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.95854408526793,23.6944895504833,1,12,1 -16948,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.59512458718382,18.4948666672174,0,4,1 -16950,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.75714303157292,24.3188707396181,0,12,1 -16951,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.79822762776166,24.098366099322,1,12,1 -16952,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.3259802202228,21.1778492847899,0,8,1 -16953,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.90638727834448,25.2116177931918,0,15,1 -16960,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0605329002719,25.6276131556258,1,11,1 -16963,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.60164712788537,22.787925073925,1,14,1 -16965,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.2935431010555,25.7802538099963,0,11,1 -16969,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4331390189473,23.2110330284586,1,15,1 -16970,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.0465302453376,21.2637691296867,0,12,1 -16976,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.1020953739062,28.3176963515735,0,14,1 -16978,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3864887200762,22.6876084646324,1,11,1 -16980,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.71137119852938,24.6571651125373,1,13,1 -16983,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.4238856604788,20.2606328002478,0,8,1 -16984,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.4959174401592,26.9338252191453,1,11,1 -16994,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.8683088303078,18.2339140846348,0,7,1 -16997,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.9244370253291,19.7134273065931,0,9,1 -16998,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.79687487194315,19.8783059303514,0,11,1 -17003,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.93945079203695,22.8925101487617,0,7,1 -17004,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.59898386965506,27.0102548333332,1,12,1 -17008,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.9859146613162,20.7985699619465,0,11,1 -17012,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.0779938616324,27.1807216104929,0,5,1 -17014,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.92131623416208,23.9985663733712,0,16,1 -17016,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.2576669943519,22.5264545262534,0,6,1 -17022,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3872992899269,25.5767858669854,1,14,1 -17025,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.61916899285279,28.1244793634983,1,14,1 -17027,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.1180023925845,21.1199863735342,0,9,1 -17031,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,9.56360082421452,25.9345551618749,1,13,1 -17032,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,1,10.3178634226788,26.2830107602937,1,10,1 -17033,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,10.3160714695696,21.4014612408842,0,6,1 -17034,8,0,-0.163954263927099,6,34,0.455271076121977,-1.68903612147009,497,0,9.68631473835558,18.5407633217209,0,8,1 diff --git a/tests/testthat/data_files/CLUSTER/CLUSTER_SLO3.rda b/tests/testthat/data_files/CLUSTER/CLUSTER_SLO3.rda deleted file mode 100644 index 38e54b23..00000000 Binary files a/tests/testthat/data_files/CLUSTER/CLUSTER_SLO3.rda and /dev/null differ diff --git a/tests/testthat/data_files/DISCORDANT/DISCORDANT_STUDY1.rda b/tests/testthat/data_files/DISCORDANT/DISCORDANT_STUDY1.rda deleted file mode 100644 index 985ed22c..00000000 Binary files a/tests/testthat/data_files/DISCORDANT/DISCORDANT_STUDY1.rda and /dev/null differ diff --git a/tests/testthat/data_files/DISCORDANT/DISCORDANT_STUDY2.rda b/tests/testthat/data_files/DISCORDANT/DISCORDANT_STUDY2.rda deleted file mode 100644 index 36613120..00000000 Binary files a/tests/testthat/data_files/DISCORDANT/DISCORDANT_STUDY2.rda and /dev/null differ diff --git a/tests/testthat/data_files/DISCORDANT/DISCORDANT_STUDY3.rda b/tests/testthat/data_files/DISCORDANT/DISCORDANT_STUDY3.rda deleted file mode 100644 index 8ad4e31e..00000000 Binary files a/tests/testthat/data_files/DISCORDANT/DISCORDANT_STUDY3.rda and /dev/null differ diff --git a/tests/testthat/data_files/DISCORDANT/discordant_study1.csv b/tests/testthat/data_files/DISCORDANT/discordant_study1.csv deleted file mode 100644 index 4ad27f43..00000000 --- a/tests/testthat/data_files/DISCORDANT/discordant_study1.csv +++ /dev/null @@ -1,13 +0,0 @@ -,A,B -1,1,5 -2,2,6 -3,3,7 -4,4,8 -5,5,9 -6,6,10 -7,7,11 -8,8,12 -9,9,1 -10,10,2 -11,11,3 -12,12,4 diff --git a/tests/testthat/data_files/DISCORDANT/discordant_study2.csv b/tests/testthat/data_files/DISCORDANT/discordant_study2.csv deleted file mode 100644 index ab8084ca..00000000 --- a/tests/testthat/data_files/DISCORDANT/discordant_study2.csv +++ /dev/null @@ -1,13 +0,0 @@ -,B,C -1,5,9 -2,6,10 -3,7,11 -4,8,12 -5,9,1 -6,10,2 -7,11,3 -8,12,4 -9,1,5 -10,2,6 -11,3,7 -12,4,8 diff --git a/tests/testthat/data_files/DISCORDANT/discordant_study3.csv b/tests/testthat/data_files/DISCORDANT/discordant_study3.csv deleted file mode 100644 index d86a8fc4..00000000 --- a/tests/testthat/data_files/DISCORDANT/discordant_study3.csv +++ /dev/null @@ -1,14 +0,0 @@ -,A,C -1,1,9 -2,2,10 -3,3,11 -4,4,12 -5,5,1 -6,6,2 -7,7,3 -8,8,4 -9,9,5 -10,10,6 -11,11,7 -12,12,8 - diff --git a/tests/testthat/data_files/FACTOR_LEVELS/FACTOR_LEVELS1.rda b/tests/testthat/data_files/FACTOR_LEVELS/FACTOR_LEVELS1.rda deleted file mode 100644 index 9ab11281..00000000 Binary files a/tests/testthat/data_files/FACTOR_LEVELS/FACTOR_LEVELS1.rda and /dev/null differ diff --git a/tests/testthat/data_files/FACTOR_LEVELS/FACTOR_LEVELS2.rda b/tests/testthat/data_files/FACTOR_LEVELS/FACTOR_LEVELS2.rda deleted file mode 100644 index 628b14fc..00000000 Binary files a/tests/testthat/data_files/FACTOR_LEVELS/FACTOR_LEVELS2.rda and /dev/null differ diff --git a/tests/testthat/data_files/FACTOR_LEVELS/FACTOR_LEVELS3.rda b/tests/testthat/data_files/FACTOR_LEVELS/FACTOR_LEVELS3.rda deleted file mode 100644 index 7a40e0c7..00000000 Binary files a/tests/testthat/data_files/FACTOR_LEVELS/FACTOR_LEVELS3.rda and /dev/null differ diff --git a/tests/testthat/data_files/FACTOR_LEVELS/FACTOR_LEVELS_DATASET1.csv b/tests/testthat/data_files/FACTOR_LEVELS/FACTOR_LEVELS_DATASET1.csv deleted file mode 100644 index 0a2756e2..00000000 --- a/tests/testthat/data_files/FACTOR_LEVELS/FACTOR_LEVELS_DATASET1.csv +++ /dev/null @@ -1,101 +0,0 @@ -ID,COLOURS,COLOURS.NUMBERS,POSITIVE.NUMBERS,NEGATIVE.NUMBERS,NUMBERS,POSITIVE.DECIMAL,NEGATIVE.DECIMAL,DECIMAL,PLANETS.CHARACTERS -1,red,100,1,-1,-1,1.1,-1.1,-1.098,Earth -2,blue,200,2,-2,1,2.2,-2.2,1.19,Jupiter -3,purple ,300,3,-3,0,3.3,-3.3,0.0987,Saturn -4,orange,400,4,-4,2,4.4,-4.4,2.567,Mercury -5,green ,500,1,-1,-1,1.1,-1.1,-1.098,Earth -6,red,100,2,-2,1,2.2,-2.2,1.19,Jupiter -7,blue,200,3,-3,0,3.3,-3.3,0.0987,Saturn -8,purple ,300,4,-4,2,4.4,-4.4,2.567,Mercury -9,orange,400,1,-1,-1,1.1,-1.1,-1.098,Earth -10,green ,500,2,-2,1,2.2,-2.2,1.19,Jupiter -11,red,100,3,-3,0,3.3,-3.3,0.0987,Saturn -12,blue,200,4,-4,2,4.4,-4.4,2.567,Mercury -13,purple ,300,1,-1,-1,1.1,-1.1,-1.098,Earth -14,orange,400,2,-2,1,2.2,-2.2,1.19,Jupiter -15,green ,500,3,-3,0,3.3,-3.3,0.0987,Saturn -16,red,100,4,-4,2,4.4,-4.4,2.567,Mercury -17,blue,200,1,-1,-1,1.1,-1.1,-1.098,Earth -18,purple ,300,2,-2,1,2.2,-2.2,1.19,Jupiter -19,orange,400,3,-3,0,3.3,-3.3,0.0987,Saturn -20,green ,500,4,-4,2,4.4,-4.4,2.567,Mercury -21,red,100,1,-1,-1,1.1,-1.1,-1.098,Earth -22,blue,200,2,-2,1,2.2,-2.2,1.19,Jupiter -23,purple ,300,3,-3,0,3.3,-3.3,0.0987,Saturn -24,orange,400,4,-4,2,4.4,-4.4,2.567,Mercury -25,green ,500,1,-1,-1,1.1,-1.1,-1.098,Earth -26,red,100,2,-2,1,2.2,-2.2,1.19,Jupiter -27,blue,200,3,-3,0,3.3,-3.3,0.0987,Saturn -28,purple ,300,4,-4,2,4.4,-4.4,2.567,Mercury -29,orange,400,1,-1,-1,1.1,-1.1,-1.098,Earth -30,green ,500,2,-2,1,2.2,-2.2,1.19,Jupiter -31,red,100,3,-3,0,3.3,-3.3,0.0987,Saturn -32,blue,200,4,-4,2,4.4,-4.4,2.567,Mercury -33,purple ,300,1,-1,-1,1.1,-1.1,-1.098,Earth -34,orange,400,2,-2,1,2.2,-2.2,1.19,Jupiter -35,green ,500,3,-3,0,3.3,-3.3,0.0987,Saturn -36,red,100,4,-4,2,4.4,-4.4,2.567,Mercury -37,blue,200,1,-1,-1,1.1,-1.1,-1.098,Earth -38,purple ,300,2,-2,1,2.2,-2.2,1.19,Jupiter -39,orange,400,3,-3,0,3.3,-3.3,0.0987,Saturn -40,green ,500,4,-4,2,4.4,-4.4,2.567,Mercury -41,red,100,1,-1,-1,1.1,-1.1,-1.098,Earth -42,blue,200,2,-2,1,2.2,-2.2,1.19,Jupiter -43,purple ,300,3,-3,0,3.3,-3.3,0.0987,Saturn -44,orange,400,4,-4,2,4.4,-4.4,2.567,Mercury -45,green ,500,1,-1,-1,1.1,-1.1,-1.098,Earth -46,red,100,2,-2,1,2.2,-2.2,1.19,Jupiter -47,blue,200,3,-3,0,3.3,-3.3,0.0987,Saturn -48,purple ,300,4,-4,2,4.4,-4.4,2.567,Mercury -49,orange,400,1,-1,-1,1.1,-1.1,-1.098,Earth -50,green ,500,2,-2,1,2.2,-2.2,1.19,Jupiter -51,red,100,3,-3,0,3.3,-3.3,0.0987,Saturn -52,blue,200,4,-4,2,4.4,-4.4,2.567,Mercury -53,purple ,300,1,-1,-1,1.1,-1.1,-1.098,Earth -54,orange,400,2,-2,1,2.2,-2.2,1.19,Jupiter -55,green ,500,3,-3,0,3.3,-3.3,0.0987,Saturn -56,red,100,4,-4,2,4.4,-4.4,2.567,Mercury -57,blue,200,1,-1,-1,1.1,-1.1,-1.098,Earth -58,purple ,300,2,-2,1,2.2,-2.2,1.19,Jupiter -59,orange,400,3,-3,0,3.3,-3.3,0.0987,Saturn -60,green ,500,4,-4,2,4.4,-4.4,2.567,Mercury -61,red,100,1,-1,-1,1.1,-1.1,-1.098,Earth -62,blue,200,2,-2,1,2.2,-2.2,1.19,Jupiter -63,purple ,300,3,-3,0,3.3,-3.3,0.0987,Saturn -64,orange,400,4,-4,2,4.4,-4.4,2.567,Mercury -65,green ,500,1,-1,-1,1.1,-1.1,-1.098,Earth -66,red,100,2,-2,1,2.2,-2.2,1.19,Jupiter -67,blue,200,3,-3,0,3.3,-3.3,0.0987,Saturn -68,purple ,300,4,-4,2,4.4,-4.4,2.567,Mercury -69,orange,400,1,-1,-1,1.1,-1.1,-1.098,Earth -70,green ,500,2,-2,1,2.2,-2.2,1.19,Jupiter -71,red,100,3,-3,0,3.3,-3.3,0.0987,Saturn -72,blue,200,4,-4,2,4.4,-4.4,2.567,Mercury -73,purple ,300,1,-1,-1,1.1,-1.1,-1.098,Earth -74,orange,400,2,-2,1,2.2,-2.2,1.19,Jupiter -75,green ,500,3,-3,0,3.3,-3.3,0.0987,Saturn -76,red,100,4,-4,2,4.4,-4.4,2.567,Mercury -77,blue,200,1,-1,-1,1.1,-1.1,-1.098,Earth -78,purple ,300,2,-2,1,2.2,-2.2,1.19,Jupiter -79,orange,400,3,-3,0,3.3,-3.3,0.0987,Saturn -80,green ,500,4,-4,2,4.4,-4.4,2.567,Mercury -81,red,100,1,-1,-1,1.1,-1.1,-1.098,Earth -82,blue,200,2,-2,1,2.2,-2.2,1.19,Jupiter -83,purple ,300,3,-3,0,3.3,-3.3,0.0987,Saturn -84,orange,400,4,-4,2,4.4,-4.4,2.567,Mercury -85,green ,500,1,-1,-1,1.1,-1.1,-1.098,Earth -86,red,100,2,-2,1,2.2,-2.2,1.19,Jupiter -87,blue,200,3,-3,0,3.3,-3.3,0.0987,Saturn -88,purple ,300,4,-4,2,4.4,-4.4,2.567,Mercury -89,orange,400,1,-1,-1,1.1,-1.1,-1.098,Earth -90,green ,500,2,-2,1,2.2,-2.2,1.19,Jupiter -91,red,100,3,-3,0,3.3,-3.3,0.0987,Saturn -92,blue,200,4,-4,2,4.4,-4.4,2.567,Mercury -93,purple ,300,1,-1,-1,1.1,-1.1,-1.098,Earth -94,orange,400,2,-2,1,2.2,-2.2,1.19,Jupiter -95,green ,500,3,-3,0,3.3,-3.3,0.0987,Saturn -96,red,100,4,-4,2,4.4,-4.4,2.567,Mercury -97,blue,200,1,-1,-1,1.1,-1.1,-1.098,Earth -98,purple ,300,2,-2,1,2.2,-2.2,1.19,Jupiter -99,orange,400,3,-3,0,3.3,-3.3,0.0987,Saturn -100,green ,500,4,-4,2,4.4,-4.4,2.567,Mercury diff --git a/tests/testthat/data_files/FACTOR_LEVELS/FACTOR_LEVELS_DATASET2.csv b/tests/testthat/data_files/FACTOR_LEVELS/FACTOR_LEVELS_DATASET2.csv deleted file mode 100644 index 83e2fc1a..00000000 --- a/tests/testthat/data_files/FACTOR_LEVELS/FACTOR_LEVELS_DATASET2.csv +++ /dev/null @@ -1,101 +0,0 @@ -ID,COLOURS,COLOURS.NUMBERS,POSITIVE.NUMBERS,NEGATIVE.NUMBERS,NUMBERS,POSITIVE.DECIMAL,NEGATIVE.DECIMAL,DECIMAL,PLANETS.CHARACTERS -1,red,100,3,-1,-1,1.1,-1.1,-1.098,Earth -2,blue,200,2,-2,1,2.2,-2.2,1.19,Jupiter -3,purple ,300,3,-3,0,3.3,-3.3,0.0987,Saturn -4,orange,400,4,-4,2,4.4,-4.4,2.567,Mercury -5,green ,500,1,-1,-1,1.1,-1.1,-1.098,Earth -6,red,100,2,-2,1,2.2,-2.2,1.19,Jupiter -7,blue,200,3,-3,0,3.3,-3.3,0.0987,Saturn -8,purple ,300,4,-4,2,4.4,-4.4,2.567,Mercury -9,orange,400,1,-1,-1,1.1,-1.1,-1.098,Earth -10,green ,500,2,-2,1,2.2,-2.2,1.19,Jupiter -11,red,100,3,-3,0,3.3,-3.3,0.0987,Saturn -12,blue,200,4,-4,2,4.4,-4.4,2.567,Mercury -13,purple ,300,1,-1,-1,1.1,-1.1,-1.098,Earth -14,orange,400,2,-2,1,2.2,-2.2,1.19,Jupiter -15,green ,500,3,-3,0,3.3,-3.3,0.0987,Saturn -16,red,100,4,-4,2,4.4,-4.4,2.567,Mercury -17,blue,200,1,-1,-1,1.1,-1.1,-1.098,Earth -18,purple ,300,2,-2,1,2.2,-2.2,1.19,Jupiter -19,orange,400,3,-3,0,3.3,-3.3,0.0987,Saturn -20,green ,500,2,-4,2,4.4,-4.4,2.567,Mercury -21,red,100,1,-1,-1,1.1,-1.1,-1.098,Earth -22,blue,200,2,-2,1,2.2,-2.2,1.19,Jupiter -23,purple ,300,3,-3,0,3.3,-3.3,0.0987,Saturn -24,orange,400,4,-4,2,4.4,-4.4,2.567,Mercury -25,green ,500,1,-1,-1,1.1,-1.1,-1.098,Earth -26,red,100,2,-2,1,2.2,-2.2,1.19,Jupiter -27,blue,200,3,-3,0,3.3,-3.3,0.0987,Saturn -28,purple ,300,4,-4,2,4.4,-4.4,2.567,Mercury -29,orange,400,1,-1,-1,1.1,-1.1,-1.098,Earth -30,green ,500,2,-2,1,2.2,-2.2,1.19,Jupiter -31,red,100,3,-3,0,3.3,-3.3,0.0987,Saturn -32,blue,200,4,-4,2,4.4,-4.4,2.567,Mercury -33,purple ,300,1,-1,-1,1.1,-1.1,-1.098,Earth -34,orange,400,2,-2,1,2.2,-2.2,1.19,Jupiter -35,green ,500,3,-3,0,3.3,-3.3,0.0987,Saturn -36,red,100,4,-4,2,4.4,-4.4,2.567,Mercury -37,blue,200,1,-1,-1,1.1,-1.1,-1.098,Earth -38,purple ,300,2,-2,1,2.2,-2.2,1.19,Jupiter -39,orange,400,3,-3,0,3.3,-3.3,0.0987,Saturn -40,green ,500,4,-4,2,4.4,-4.4,2.567,Mercury -41,red,100,4,-1,-1,1.1,-1.1,-1.098,Earth -42,blue,200,2,-2,1,2.2,-2.2,1.19,Jupiter -43,purple ,300,3,-3,0,3.3,-3.3,0.0987,Saturn -44,orange,400,4,-4,2,4.4,-4.4,2.567,Mercury -45,green ,500,1,-1,-1,1.1,-1.1,-1.098,Earth -46,red,100,2,-2,1,2.2,-2.2,1.19,Jupiter -47,blue,200,3,-3,0,3.3,-3.3,0.0987,Saturn -48,purple ,300,4,-4,2,4.4,-4.4,2.567,Mercury -49,orange,400,1,-1,-1,1.1,-1.1,-1.098,Earth -50,green ,500,2,-2,1,2.2,-2.2,1.19,Jupiter -51,red,100,3,-3,0,3.3,-3.3,0.0987,Saturn -52,blue,200,4,-4,2,4.4,-4.4,2.567,Mercury -53,purple ,300,1,-1,-1,1.1,-1.1,-1.098,Earth -54,orange,400,2,-2,1,2.2,-2.2,1.19,Jupiter -55,green ,500,3,-3,0,3.3,-3.3,0.0987,Saturn -56,red,100,4,-4,2,4.4,-4.4,2.567,Mercury -57,blue,200,1,-1,-1,1.1,-1.1,-1.098,Earth -58,purple ,300,2,-2,1,2.2,-2.2,1.19,Jupiter -59,orange,400,3,-3,0,3.3,-3.3,0.0987,Saturn -60,green ,500,4,-4,2,4.4,-4.4,2.567,Mercury -61,red,100,1,-1,-1,1.1,-1.1,-1.098,Earth -62,blue,200,2,-2,1,2.2,-2.2,1.19,Jupiter -63,purple ,300,3,-3,0,3.3,-3.3,0.0987,Saturn -64,orange,400,4,-4,2,4.4,-4.4,2.567,Mercury -65,green ,500,1,-1,-1,1.1,-1.1,-1.098,Earth -66,red,100,2,-2,1,2.2,-2.2,1.19,Jupiter -67,blue,200,3,-3,0,3.3,-3.3,0.0987,Saturn -68,purple ,300,4,-4,2,4.4,-4.4,2.567,Mercury -69,orange,400,1,-1,-1,1.1,-1.1,-1.098,Earth -70,green ,500,2,-2,1,2.2,-2.2,1.19,Jupiter -71,red,100,2,-3,0,3.3,-3.3,0.0987,Saturn -72,blue,200,4,-4,2,4.4,-4.4,2.567,Mercury -73,purple ,300,1,-1,-1,1.1,-1.1,-1.098,Earth -74,orange,400,2,-2,1,2.2,-2.2,1.19,Jupiter -75,green ,500,3,-3,0,3.3,-3.3,0.0987,Saturn -76,red,100,4,-4,2,4.4,-4.4,2.567,Mercury -77,blue,200,1,-1,-1,1.1,-1.1,-1.098,Earth -78,purple ,300,1,-2,1,2.2,-2.2,1.19,Jupiter -79,orange,400,3,-3,0,3.3,-3.3,0.0987,Saturn -80,green ,500,4,-4,2,4.4,-4.4,2.567,Mercury -81,red,100,1,-1,-1,1.1,-1.1,-1.098,Earth -82,blue,200,2,-2,1,2.2,-2.2,1.19,Jupiter -83,purple ,300,3,-3,0,3.3,-3.3,0.0987,Saturn -84,orange,400,4,-4,2,4.4,-4.4,2.567,Mercury -85,green ,500,1,-1,-1,1.1,-1.1,-1.098,Earth -86,red,100,2,-2,1,2.2,-2.2,1.19,Jupiter -87,blue,200,3,-3,0,3.3,-3.3,0.0987,Saturn -88,purple ,300,4,-4,2,4.4,-4.4,2.567,Mercury -89,orange,400,1,-1,-1,1.1,-1.1,-1.098,Earth -90,green ,500,2,-2,1,2.2,-2.2,1.19,Jupiter -91,red,100,3,-3,0,3.3,-3.3,0.0987,Saturn -92,blue,200,1,-4,2,4.4,-4.4,2.567,Mercury -93,purple ,300,1,-1,-1,1.1,-1.1,-1.098,Earth -94,orange,400,2,-2,1,2.2,-2.2,1.19,Jupiter -95,green ,500,3,-3,0,3.3,-3.3,0.0987,Saturn -96,red,100,1,-4,2,4.4,-4.4,2.567,Mercury -97,blue,200,1,-1,-1,1.1,-1.1,-1.098,Earth -98,purple ,300,2,-2,1,2.2,-2.2,1.19,Jupiter -99,orange,400,3,-3,0,3.3,-3.3,0.0987,Saturn -100,green ,500,4,-4,2,4.4,-4.4,2.567,Mercury diff --git a/tests/testthat/data_files/FACTOR_LEVELS/FACTOR_LEVELS_DATASET3.csv b/tests/testthat/data_files/FACTOR_LEVELS/FACTOR_LEVELS_DATASET3.csv deleted file mode 100644 index 7754dafd..00000000 --- a/tests/testthat/data_files/FACTOR_LEVELS/FACTOR_LEVELS_DATASET3.csv +++ /dev/null @@ -1,101 +0,0 @@ -ID,COLOURS,COLOURS.NUMBERS,POSITIVE.NUMBERS,NEGATIVE.NUMBERS,NUMBERS,POSITIVE.DECIMAL,NEGATIVE.DECIMAL,DECIMAL,PLANETS.CHARACTERS -1,red,100,1,-1,-1,1.1,-1.1,-1.098,Earth -2,blue,200,2,-2,1,2.2,-2.2,1.19,Jupiter -3,purple ,300,3,-3,0,3.3,-3.3,0.0987,Saturn -4,orange,400,4,-4,2,4.4,-4.4,2.567,Mercury -5,green ,500,5,-5,-2379,6.6,-106.9,-1.098,Venus -6,pink,600,6,-6,8666,1.1,-1.1,1.19191919,Earth -7,red,100,7,-1,-1,2.2,-2.2,-1.098,Jupiter -8,blue,200,1,-2,1,3.3,-3.3,1.19,Saturn -9,purple ,300,2,-3,0,4.4,-4.4,0.0987,Mercury -10,orange,400,3,-4,2,6.6,-106.9,2.567,Venus -11,green ,500,4,-5,-2379,1.1,-1.1,-1.098,Earth -12,pink,600,5,-6,8666,2.2,-2.2,1.19191919,Jupiter -13,red,100,6,-1,-1,3.3,-3.3,-1.098,Saturn -14,blue,200,7,-2,1,4.4,-4.4,1.19,Mercury -15,purple ,300,1,-3,0,6.6,-106.9,0.0987,Venus -16,orange,400,2,-4,2,1.1,-1.1,2.567,Earth -17,green ,500,3,-5,-2379,2.2,-2.2,-1.098,Jupiter -18,pink,600,4,-6,8666,3.3,-3.3,1.19191919,Saturn -19,red,100,5,-1,-1,4.4,-4.4,-1.098,Mercury -20,blue,200,6,-2,1,6.6,-106.9,1.19,Venus -21,purple ,300,7,-3,0,1.1,-1.1,0.0987,Earth -22,orange,400,1,-4,2,2.2,-2.2,2.567,Jupiter -23,green ,500,2,-5,-2379,3.3,-3.3,-1.098,Saturn -24,pink,600,3,-6,8666,4.4,-4.4,1.19191919,Mercury -25,red,100,4,-1,-1,6.6,-106.9,-1.098,Venus -26,blue,200,5,-2,1,1.1,-1.1,1.19,Earth -27,purple ,300,6,-3,0,2.2,-2.2,0.0987,Jupiter -28,orange,400,7,-4,2,3.3,-3.3,2.567,Saturn -29,green ,500,1,-5,-2379,4.4,-4.4,-1.098,Mercury -30,pink,600,2,-6,8666,6.6,-106.9,1.19191919,Venus -31,red,100,3,-1,-1,1.1,-1.1,-1.098,Earth -32,blue,200,4,-2,1,2.2,-2.2,1.19,Jupiter -33,purple ,300,5,-3,0,3.3,-3.3,0.0987,Saturn -34,orange,400,6,-4,2,4.4,-4.4,2.567,Mercury -35,green ,500,7,-5,-2379,6.6,-106.9,-1.098,Venus -36,pink,600,1,-6,8666,1.1,-1.1,1.19191919,Earth -37,red,100,2,-1,-1,2.2,-2.2,-1.098,Jupiter -38,blue,200,3,-2,1,3.3,-3.3,1.19,Saturn -39,purple ,300,4,-3,0,4.4,-4.4,0.0987,Mercury -40,orange,400,5,-4,2,6.6,-106.9,2.567,Venus -41,green ,500,6,-5,-2379,1.1,-1.1,-1.098,Earth -42,pink,600,7,-6,8666,2.2,-2.2,1.19191919,Jupiter -43,red,100,1,-1,-1,3.3,-3.3,-1.098,Saturn -44,blue,200,2,-2,1,4.4,-4.4,1.19,Mercury -45,purple ,300,3,-3,0,6.6,-106.9,0.0987,Venus -46,orange,400,4,-4,2,1.1,-1.1,2.567,Earth -47,green ,500,5,-5,-2379,2.2,-2.2,-1.098,Jupiter -48,pink,600,6,-6,8666,3.3,-3.3,1.19191919,Saturn -49,red,100,7,-1,-1,4.4,-4.4,-1.098,Mercury -50,blue,200,1,-2,1,6.6,-106.9,1.19,Venus -51,purple ,300,2,-3,0,1.1,-1.1,0.0987,Earth -52,orange,400,3,-4,2,2.2,-2.2,2.567,Jupiter -53,green ,500,4,-5,-2379,3.3,-3.3,-1.098,Saturn -54,pink,600,5,-6,8666,4.4,-4.4,1.19191919,Mercury -55,red,100,6,-1,-1,6.6,-106.9,-1.098,Venus -56,blue,200,7,-2,1,1.1,-1.1,1.19,Earth -57,purple ,300,1,-3,0,2.2,-2.2,0.0987,Jupiter -58,orange,400,2,-4,2,3.3,-3.3,2.567,Saturn -59,green ,500,3,-5,-2379,4.4,-4.4,-1.098,Mercury -60,pink,600,4,-6,8666,6.6,-106.9,1.19191919,Venus -61,red,100,5,-1,-1,1.1,-1.1,-1.098,Earth -62,blue,200,6,-2,1,2.2,-2.2,1.19,Jupiter -63,purple ,300,7,-3,0,3.3,-3.3,0.0987,Saturn -64,orange,400,1,-4,2,4.4,-4.4,2.567,Mercury -65,green ,500,2,-5,-2379,6.6,-106.9,-1.098,Venus -66,pink,600,3,-6,8666,1.1,-1.1,1.19191919,Earth -67,red,100,4,-1,-1,2.2,-2.2,-1.098,Jupiter -68,blue,200,5,-2,1,3.3,-3.3,1.19,Saturn -69,purple ,300,6,-3,0,4.4,-4.4,0.0987,Mercury -70,orange,400,7,-4,2,6.6,-106.9,2.567,Venus -71,green ,500,1,-5,-2379,1.1,-1.1,-1.098,Earth -72,pink,600,2,-6,8666,2.2,-2.2,1.19191919,Jupiter -73,red,100,3,-1,-1,3.3,-3.3,-1.098,Saturn -74,blue,200,4,-2,1,4.4,-4.4,1.19,Mercury -75,purple ,300,5,-3,0,6.6,-106.9,0.0987,Venus -76,orange,400,6,-4,2,1.1,-1.1,2.567,Earth -77,green ,500,7,-5,-2379,2.2,-2.2,-1.098,Jupiter -78,pink,600,1,-6,8666,3.3,-3.3,1.19191919,Saturn -79,red,100,2,-1,-1,4.4,-4.4,-1.098,Mercury -80,blue,200,3,-2,1,6.6,-106.9,1.19,Venus -81,purple ,300,4,-3,0,1.1,-1.1,0.0987,Earth -82,orange,400,5,-4,2,2.2,-2.2,2.567,Jupiter -83,green ,500,6,-5,-2379,3.3,-3.3,-1.098,Saturn -84,pink,600,7,-6,8666,4.4,-4.4,1.19191919,Mercury -85,red,100,1,-1,-1,6.6,-106.9,-1.098,Venus -86,blue,200,2,-2,1,1.1,-1.1,1.19,Earth -87,purple ,300,3,-3,0,2.2,-2.2,0.0987,Jupiter -88,orange,400,4,-4,2,3.3,-3.3,2.567,Saturn -89,green ,500,5,-5,-2379,4.4,-4.4,-1.098,Mercury -90,pink,600,6,-6,8666,6.6,-106.9,1.19191919,Venus -91,red,100,7,-1,-1,1.1,-1.1,-1.098,Earth -92,blue,200,1,-2,1,2.2,-2.2,1.19,Jupiter -93,purple ,300,2,-3,0,3.3,-3.3,0.0987,Saturn -94,orange,400,3,-4,2,4.4,-4.4,2.567,Mercury -95,green ,500,4,-5,-2379,6.6,-106.9,-1.098,Venus -96,pink,600,5,-6,8666,1.1,-1.1,1.19191919,Earth -97,red,100,6,-1,-1,2.2,-2.2,-1.098,Jupiter -98,blue,200,7,-2,1,3.3,-3.3,1.19,Saturn -99,purple ,300,1,-3,0,4.4,-4.4,0.0987,Mercury -100,orange,400,2,-4,2,6.6,-106.9,2.567,Venus diff --git a/tests/testthat/data_files/GAMLSS/gamlss1.csv b/tests/testthat/data_files/GAMLSS/gamlss1.csv deleted file mode 100644 index 499668b8..00000000 --- a/tests/testthat/data_files/GAMLSS/gamlss1.csv +++ /dev/null @@ -1,608 +0,0 @@ -rowID,ID,e3_bw,hs_asthma,hs_zbmi_who,hs_correct_raven,hs_Gen_Tot,hs_bmi_c_cat,h_cohort,e3_sex_None,e3_yearbir_None,h_mbmi_None,hs_wgtgain_None,e3_gac_None,h_age_None,h_edumc_None,h_native_None,h_parity_None,hs_child_age_None,hs_c_height_None,hs_c_weight_None -1,1,4100,0,0.3,18,84,2,4,male,2008,25.51020432,17,41,28,2,2,0,6.165639973,1.22,23.4 -2,2,4158,0,0.41,25,39,2,4,male,2007,26.49150848,18,41,22.84155273,3,2,1,6.99247091,1.22,27.6 -3,3,4110,1,3.33,13,40,4,4,male,2008,30.11621284,11,39,34.23242188,3,2,1,6.110882957,1.28,37.5 -4,6,2900,1,-0.08,19,4,2,1,female,2007,24.90358162,30,38.8571434,27,3,2,0,6.384782113,1.13,21.5 -5,8,3580,1,-0.1,16,8,2,1,female,2008,28.14870262,20,40.57143021,34,2,0,0,6.338124572,1.225,22.5 -6,10,3780,1,1.75,32,1,3,1,female,2008,40.33377838,9,41,25,1,1,2,6.447638604,1.251,30.3 -7,11,4220,0,3.72,18,48,4,1,female,2008,32.0730629,10,40.7142868,31,3,0,1,6.436573123,1.293,41.6 -8,15,4210,1,2.5,27,28,4,4,male,2008,43.02771759,12,41.42856979,30.6748867,2,2,0,6.45847593,1.29,33 -9,16,2460,0,1.19,13,55,3,4,female,2008,28.72112083,10,36,36.03675842,3,2,2,6.3409765,1.27,28.2 -10,17,3510,0,-0.05,21,14,2,4,male,2008,17.90885544,10,39,29,3,2,1,6.524184349,1.16,20.5 -11,18,2800,0,-0.73,28,17,2,4,male,2008,41.95202255,9,37.57143021,32,2,2,1,6.171115674,1.139,18.7 -12,30,3730,0,1.02,29,6,3,4,male,2008,40.09489059,15,40,29.85799026,3,2,0,6.521674652,1.33,30.3 -13,33,3300,1,0.65,25,8.0625,2,6,male,2007,22.7583065,19,40.2857132,32.82308578,2,2,2,6.538101757,1.202,23.6 -14,40,3310,0,0.46,20,7.0625,2,6,female,2008,27.33991241,25,40.7142868,30.96850586,2,2,1,6.499771846,1.19,22.7 -15,45,2390,0,-0.64,19,29,2,6,male,2008,22.76943779,14,37,28.78302574,2,2,0,6.54072553,1.143,19 -16,46,3480,0,-1.25,16,22,2,1,female,2008,41.5544548,10,40,40,1,0,2,6.179329227,1.143,17.3 -17,48,3040,0,0.46,24,18,2,1,female,2007,38.62446213,13,41.57143021,31,2,0,1,6.726899384,1.184,20.8 -18,49,3050,0,-0.53,21,8.0625,2,6,male,2008,23.38435364,7,36.2857132,36.21247864,3,2,1,6.335500799,1.147,19.3 -19,52,3500,0,2.49,26,19,4,6,female,2008,23.62444749,10,39.2857132,40.19320679,2,2,2,6.836527493,1.265,27.6 -20,53,3420,0,0.37,23,24.4375,2,6,male,2008,19.43301392,20,40,29.35378075,3,2,0,6.036960986,1.096,19 -21,54,3400,0,1.08,13,29,3,6,female,2008,21.56454468,9,39.1428566,30.88439369,2,2,2,6.253251198,1.19,24.6 -22,58,2930,0,-0.89,23,20,2,4,female,2008,18.46722031,10,37.57143021,26.77739716,2,2,2,6.483230664,1.17,18.3 -23,59,3520,0,-0.66,21,27,2,4,male,2008,31.20256424,11,38,31.81963539,1,2,2,5.995893224,1.19,20.5 -24,61,3960,0,0.98,19,22,2,1,male,2007,25.42642784,13,40.7142868,26,1,2,1,6.368355008,1.172,23.1 -25,63,4388,0,1.24,25,11,3,4,female,2008,33.79246902,25,40,22.41392708,2,2,1,6.023385809,1.255,30.5 -26,64,3370,1,-0.61,18,78,2,4,female,2007,24.24242401,17,39,28.34155273,3,2,0,6.403718914,1.17,20.3 -27,65,3020,0,0.69,27,38,2,6,female,2008,18.2898941,22,39.42856979,26.82139587,2,2,0,6.283481634,1.13,22.7 -28,67,4210,0,3.19,32,55.5625,4,4,female,2008,33.02946091,8,41,36.24452209,3,2,2,7.685261237,1.316,39.4 -29,68,2920,0,-0.29,16,17.0625,2,1,male,2008,34.2935524,8,38.57143021,30,3,1,0,6.554300707,1.195,21.5 -30,70,3300,0,1.21,21,44,3,1,male,2008,34.22911072,3,38.8571434,23,2,2,0,6.767967146,1.25,33.1 -31,72,3030,0,-0.18,12,21.25,2,6,female,2007,17.50638962,25,40.2857132,29.61563683,2,2,1,6.863791923,1.124,19 -32,73,2928,0,0.18,23,9,2,4,male,2008,27.18090057,3,38,33.69794464,3,2,1,6.231234314,1.19,22 -33,75,3800,0,1.12,22,82,3,4,male,2008,36.2897377,0,38,30.58995438,2,2,2,6.201232033,1.273,24.9 -34,76,3600,0,1.88,21,82,3,4,male,2007,32.27078629,20,40,30.9506855,2,2,0,6.910335387,1.28,30.7 -35,77,3880,0,1.06,27,29,3,4,female,2008,40.33377838,8,40,22.95228386,3,2,0,6.015058179,1.22,25.5 -36,81,2970,1,1.88,18,35.375,3,6,male,2008,23.58832932,18,39.2857132,26.14776802,2,2,1,6.880333105,1.214,27.7 -37,85,3440,0,1.31,27,20,3,4,female,2007,26.21882057,5,37,31.18310547,3,2,2,6.135637691,1.25,28.1 -38,87,3220,0,2.96,26,44,4,4,female,2008,19.73396111,30,39,41.12990952,2,2,0,6.384782113,1.28,36.6 -39,90,2900,0,0.7,15,43,2,6,female,2007,22.83288002,10,38.42856979,27.13905144,2,0,0,6.343486197,1.193,24.1 -40,91,3320,1,-1.84,25,8,2,1,male,2008,27.53338432,12,40.1428566,29,1,0,2,6.650353639,1.152,17.6 -41,93,3590,0,-0.46,29,18,2,4,male,2008,19.59183693,13,40,29.11894989,3,2,0,6.026009582,1.2,23.6 -42,94,3770,0,-0.04,29,24,2,4,male,2008,22.59814072,29,39,31.98356247,3,2,0,6.499771846,1.31,26.3 -43,95,4010,0,1.83,25,32,3,6,male,2007,34.8825264,14,41,24.66010666,2,2,1,6.694045175,1.3,26.9 -44,97,2780,0,-0.67,25,10,2,1,female,2008,34.55707932,0,39.42856979,29,1,0,1,6.455966233,1.182,20 -45,98,3920,0,0.91,25,5,2,1,female,2007,31.15745163,20,39,23,1,2,2,6.926762491,1.268,27.45 -46,99,3840,0,-0.8,26,63,2,4,male,2008,31.99217224,8,39,35.22967911,2,2,2,6.483344741,1.18,19.4 -47,101,3650,0,-1.29,24,31,2,6,female,2007,20.390625,27,40,28.33553886,2,2,0,6.767967146,1.212,30 -48,102,3800,0,0.51,23,19,2,4,male,2008,28.06642342,21,40,25.40296745,3,2,0,6.929500342,1.29,27 -49,103,4100,1,-0.08,15,7,2,1,female,2007,24.81843948,26,41.1428566,26,1,2,1,6.770590919,1.093,18.2 -50,104,3913,0,-0.01,21,69.5,2,4,female,2008,34.54287338,20,40,26.73241997,3,2,0,6.266940452,1.24,23.5 -51,105,3620,0,0.74,26,19,2,4,male,2007,32.28305817,26,40,35,3,2,0,6.135637691,1.25,25.6 -52,107,2780,0,-0.32,15,12,2,6,male,2008,26.171875,10,37.2857132,24.61968613,2,2,2,6.338010495,1.186,21 -53,108,3890,0,-0.31,17,7.0625,2,6,male,2007,22.37567902,20,39,31.79055405,3,2,1,7.510038786,1.255,23.9 -54,114,2760,0,0.11,25,16,2,1,female,2007,21.98950577,5,39.7142868,22,1,2,2,6.965092402,1.181,18.3 -55,115,4090,0,0.96,29,72,2,4,female,2008,51.42332458,20,40,22.34703255,2,2,1,6.52966005,1.27,27.5 -56,118,2540,0,-1.07,14,14,2,1,male,2007,24.88187981,12,39.42856979,25,1,0,0,6.655829341,1.184,23.5 -57,119,3530,0,-1.06,33,19.23529434,2,6,male,2008,20.17325211,11,38.7142868,32.28359604,3,2,1,6.417408168,1.234,20.6 -58,127,3180,0,2.63,17,15,4,6,female,2008,27.85200882,30,38,28.97589111,2,2,1,6.406684919,1.28,34.8 -59,130,3908,0,0.02,25,17,2,4,male,2008,25,8,40,26.94406319,3,2,0,6.028747433,1.2,22 -60,132,3540,0,0.11,22,0,2,1,male,2008,24.35390472,10,38.7142868,36,2,0,1,6.603696099,1.188,22 -61,134,2440,0,-0.25,20,20.1875,2,1,female,2008,26.5339241,10,38.2857132,35,1,0,1,6.661305042,1.142,19.5 -62,136,3504,0,-0.07,23,26.25,2,1,female,2008,25.08896065,8,41.42856979,23,1,0,0,6.475131189,1.114,18.9 -63,138,3750,0,0.85,30,15,2,1,male,2008,36.87037277,8,40.42856979,36,2,2,1,6.250513347,1.188,23.4 -64,139,3560,0,-1.19,21,21,2,1,female,2008,27.65864944,7,40.7142868,26,2,0,1,6.335500799,1.193,19.4 -65,140,4022,0,1.27,23,38,3,4,male,2008,27.77777863,30,41,32.74177933,3,2,0,6.023271732,1.21,25.7 -66,142,3150,0,2.83,29,26,4,6,female,2008,25.31545448,20,38.57143021,38.91729355,3,2,0,6.636664385,1.241,32 -67,143,2920,1,1.1,12,2,3,1,male,2008,24.47268867,10,39,35,1,2,1,6.425849875,1.228,25.7 -68,147,2960,0,1.38,20,36,3,6,female,2008,35.62901688,25,40,20.79236031,2,2,0,6.25039927,1.171,24.5 -69,148,3834,0,0.46,15,56,2,4,male,2008,25.63691711,0,40,35,2,2,2,6.088980151,1.15,21.1 -70,150,3120,0,1.41,15,15,3,6,female,2007,22.7583065,17,37.7142868,37.01412201,2,2,1,6.382044262,1.17,25.8 -71,156,3555,0,0.21,16,41,2,1,female,2008,29.43868828,20,41.42856979,26,3,0,0,6.373716632,1.26,24.8 -72,157,3110,0,0.75,24,11,2,1,male,2008,34.22911072,9.5,39.7142868,29,2,0,2,6.387519963,1.24,22.6 -73,158,3870,0,0.26,29,24,2,6,female,2007,22.22222137,16,40.42856979,24.99647903,2,2,2,6.428359571,1.169,21.5 -74,159,3900,0,1.95,24,11,3,1,male,2007,28.73539543,6,39.7142868,26,1,0,1,6.825462012,1.175,26.8 -75,163,4061,0,-0.29,16,44,2,4,male,2007,30.29263878,21,41.1428566,26.21986389,2,2,1,7.394934976,1.23,23 -76,167,2530,0,-1.1,23,33,2,6,female,2008,18.90359116,11,35.42856979,32.82308578,3,2,1,6.439425051,1.194,19.6 -77,169,3340,0,-0.09,29,11,2,1,female,2008,28.73681259,20,39,30,3,0,1,6.299680584,1.166,20.6 -78,172,3200,0,1.49,16,45,3,6,male,2007,21.71924973,8,37.57143021,32.32178116,2,2,1,6.863791923,1.238,23.9 -79,174,3480,0,3.23,17,31,4,6,female,2008,21.09375,20,39,31.62312698,2,2,1,6.168377823,1.15,30.4 -80,176,3392,0,-0.74,25,13,2,4,female,2007,22.83736992,10,40,30.48082161,3,2,1,7.414099932,1.25,22.8 -81,177,3040,1,-0.07,31,37,2,1,male,2007,40.09489059,6,38.1428566,27,3,1,1,7.321127082,1.254,24.1 -82,182,3520,0,0.44,13,43,2,1,male,2007,23.96785355,10,41.8571434,36,3,1,0,6.710472279,1.277,30.3 -83,183,3060,0,1.03,15,39,3,6,male,2008,26.33288875,10,36.1428566,30.28965187,3,2,0,6.603810176,1.187,23.9 -84,184,4220,0,-0.23,20,6,2,1,male,2007,34.04298401,9,41.7142868,33,3,0,1,6.778918549,1.175,21.7 -85,185,3140,0,-1.23,17,5,2,1,female,2008,32.69710922,6,39.42856979,28,1,0,1,6.417636322,1.211,20 -86,189,3250,0,0.8,16,23,2,6,male,2008,41.95202255,6,41.1428566,23.84028244,2,2,1,6.488706366,1.163,22.4 -87,190,3978,0,-1.58,24,27,2,4,male,2007,26.12244987,12,41,30.87990952,2,2,1,6.880219028,1.09,22.2 -88,191,2550,0,0.06,23,44,2,4,female,2008,25.9695282,16,40,32.28401947,3,2,1,6.288843258,1.14,21.5 -89,194,3400,0,-0.92,16,5.125,2,6,male,2008,24.67702103,16,39,32.98178101,2,2,0,6.450490532,1.192,20.2 -90,196,2920,0,-1.43,15,63,2,1,male,2007,32.07591248,20,39.1428566,26,1,2,2,6.778918549,1.147,25.9 -91,197,3310,0,-1.15,15,14,2,6,female,2008,24.21875,12,37.42856979,27.63716888,2,2,2,6.707848506,1.159,18.4 -92,198,3760,0,-0.57,17,18,2,1,male,2008,23.87543297,10,40.1428566,35,1,2,0,6.99247091,1.255,24.1 -93,199,3720,0,2.96,30,22.25,4,4,female,2007,27.88518715,15,41.8571434,32.15058136,3,2,2,7.589436459,1.3,35.4 -94,200,3170,0,1,30,48.5,3,6,female,2008,22.83288002,10,39,40.97868729,2,0,1,6.565480265,1.273,29.1 -95,203,3550,0,0.53,21,19,2,6,male,2007,37.37024307,10,38.42856979,35.92881775,3,1,2,6.532511978,1.14,21.8 -96,204,3530,0,4.06,13,45,4,6,male,2007,22.48132896,7,38,35.61669922,3,2,2,6.872005476,1.247,36.6 -97,206,3940,1,2.31,33,14,4,1,male,2008,33.60102081,10,38.57143021,34,3,1,2,6.368355008,1.202,28.1 -98,207,2820,0,0.46,27,22,2,6,female,2008,24.609375,10,36.7142868,31.029356,2,2,1,5.921971253,1.179,22.5 -99,211,3374,0,0.16,20,40,2,1,female,2008,31.72255135,8,39.2857132,22,1,2,0,6.447752681,1.15,20.6 -100,218,2995,0,0.68,18,32,2,4,female,2008,34.2935524,10,39,33.18036652,1,2,1,6.699634953,1.18,19.5 -101,219,3834,0,0.93,26,25,2,4,female,2007,29.00059509,18,40,22,3,2,1,6.822610084,1.09,20.3 -102,220,2850,1,0.3,13,2,2,6,male,2007,25.46198082,7,38.42856979,27.1946907,2,2,1,6.877481177,1.203,23 -103,223,3220,0,0.46,26,11,2,6,male,2007,26.72287178,10,37.8571434,32.24882889,3,2,1,6.819986311,1.254,25.3 -104,224,3900,0,0.35,24,54,2,4,male,2007,28.39506149,20,40,28.61621094,3,2,0,7.184120465,1.3,27.1 -105,225,4080,0,2.62,25,45,4,4,female,2008,38.88888931,40,38,25.39474869,2,2,0,6.233972165,1.3,35.7 -106,226,3460,0,0.71,20,21.125,2,6,female,2008,38.28125,10,38.42856979,25.12384987,2,2,2,6.023271732,1.172,22.7 -107,228,3120,1,0.36,20,82,2,4,female,2008,24.22145329,9,38,29.01643753,2,2,0,6.233972165,1.19,22.4 -108,229,2900,0,1.38,18,15,3,1,female,2008,32.48854446,20,39.57143021,35,1,0,2,6.423112024,1.2,25.8 -109,230,3398,0,-0.08,23,55,2,4,male,2008,25.07619286,17,39,30.79657555,2,2,2,6.485968515,1.21,22.3 -110,231,3420,0,-1.43,24,65,2,4,male,2008,29.74419975,19,40,28.53127861,3,2,0,6.184804928,1.09,16.2 -111,233,3516,0,1.35,13,51,3,4,male,2008,30.48780441,24,40,28.37009048,3,2,1,6.247661419,1.26,25.5 -112,234,3540,0,0.8,24,18,2,1,male,2008,29.00059509,5,40.1428566,35,1,0,2,6.384782113,1.212,24.3 -113,239,3340,1,0.89,23,63,2,4,female,2008,32.11195374,28,39,34.81415558,3,2,2,7.011635866,1.23,25.8 -114,241,2120,0,-1.6,21,34,2,1,male,2008,19.69449806,9,39.1428566,24.22328758,1,0,2,6.606433949,1.119,16.9 -115,242,2680,1,-1.08,17,38,2,1,female,2007,24.64775085,15,40.42856979,33,1,0,2,6.973305955,1.176,19.45 -116,243,2863,0,-0.71,27,0,2,4,female,2008,26.5625,17,40,28.60525131,3,2,1,6.332648871,1.13,18.2 -117,244,3730,1,-1.26,23,26,2,6,male,2008,18.27812195,17,40.2857132,35.22711182,2,2,0,6.080766598,1.184,17.9 -118,246,3150,0,-0.51,20,3,2,6,male,2007,21.38593674,17,40.1428566,26.36136627,2,2,0,6.359913301,1.24,22.6 -119,247,3630,0,4.72,21,50,4,6,male,2007,22.37567902,17,40,17.02313995,2,2,0,6.59810632,1.268,40.7 -120,252,3290,0,0.95,19,21,2,6,male,2008,24.60973358,20,40.2857132,36.29733276,2,2,2,6.253251198,1.14,22.1 -121,255,2450,0,0.23,24,36,2,4,male,2007,38.89807129,13,40,29.96986389,2,2,0,6.970568104,1.29,26.3 -122,256,3180,0,-1.05,18,8.0625,2,1,male,2008,41.5544548,5,39.42856979,24,2,0,1,6.56251426,1.222,21 -123,257,4040,0,2.95,32,68,4,1,female,2008,25.52800751,20,40.57143021,28,3,1,0,7.02532512,1.244,35.8 -124,258,2780,0,-1.53,25,33,2,6,female,2007,26.42357063,4,39.2857132,28.49256516,2,2,1,6.510609172,1.17,18.1 -125,259,2860,0,3.33,20,67.625,4,6,female,2008,36.36363602,8,39,42.31311417,1,2,1,6.275268081,1.23,37.6 -126,260,2290,0,0.05,24,18,2,6,female,2007,22.86253357,9,38.1428566,30.92778015,3,2,0,6.858202145,1.177,21.5 -127,261,3320,0,-0.1,13,35,2,1,female,2007,28.18372345,0,40.1428566,33.80925369,3,1,2,6.907597536,1.12,19.1 -128,262,3470,0,1.42,24,66,3,6,male,2008,30.29263878,12,37,26.73112106,2,2,1,6.463951631,1.263,28.1 -129,265,2600,0,-2.48,20,23,1,4,female,2008,24.16716194,0,40,38.36894989,2,0,2,6.283481634,1.21,18.2 -130,267,3504,0,-0.13,20,7,2,1,female,2008,24.88436317,10,41.57143021,35,3,2,0,6.406456765,1.182,21.05 -131,269,3964,0,0.76,29,14.1875,2,4,female,2007,29.70041275,10,41,31.46712303,3,2,1,7.323864933,1.28,28.6 -132,271,3630,0,0.16,20,12,2,4,male,2009,23.66143799,13,40,28.75,3,2,1,6.108145106,1.19,22 -133,274,3100,0,0.05,19,12,2,4,female,2008,19.56295586,8,38,30.87200546,2,2,2,6.223134839,1.1,18.6 -134,276,2890,0,-0.64,20,9,2,4,male,2008,27.75510204,9,37,24.76369858,2,2,0,6.694045175,1.12,18.3 -135,278,3700,0,-0.48,29,5,2,1,female,2008,26.69395638,19,41.8571434,32,1,2,0,6.661305042,1.225,23.6 -136,281,3330,0,0.89,25,10,2,6,female,2007,26.83864784,17,37.2857132,24.91326332,2,2,1,6.488592288,1.194,24.1 -137,286,3630,0,0.47,22,26,2,4,male,2007,28.62879181,20,39,24.76369858,1,2,0,7.742756103,1.29,41.6 -138,287,3100,1,0.35,22,39,2,1,female,2007,28.73539543,5,39,27,2,1,2,6.80618298,1.19,22.6 -139,288,3910,0,0.93,16,50.4375,2,4,male,2008,40.13878632,10,39,24.80669594,3,2,0,6.083504449,1.2,24.8 -140,289,3207,0,0.81,25,43,2,4,female,2007,30.48780441,10,41,28.5,3,2,0,6.499657769,1.27,30.3 -141,291,3790,0,-0.85,22,23,2,4,male,2008,23.32341766,11,40,26.2746582,3,2,0,6.206707734,1.21,22.2 -142,293,2420,0,-1.3,17,29.3125,2,1,male,2007,28.52065659,8,39.8571434,22,1,0,0,6.466689482,1.248,21.6 -143,296,3080,0,-0.89,12,20,2,1,female,2008,25.07812309,9,39.1428566,32.78110504,1,0,2,6.746064339,1.135,18.1 -144,304,3722,0,1.56,27,39,3,4,female,2007,24.09296989,17,38.57143021,36.29109573,2,2,2,6.77332877,1.3,31 -145,307,3460,0,-0.62,26,15,2,1,male,2008,23.75622368,10,40.8571434,17,1,0,0,6.395505362,1.179,19.1 -146,308,3460,0,-0.33,19,18,2,6,female,2007,18.68512154,10,39,28.38603783,2,2,0,6.464065708,1.241,22.8 -147,312,3510,0,1.19,22,13,3,1,female,2008,25.13384819,20,39.8571434,24,1,1,2,6.718685832,1.22,26.2 -148,313,4006,0,0.94,25,9,2,4,male,2007,24.609375,13,38,25.71712303,3,2,0,6.497033995,1.22,25 -149,314,3280,0,-0.21,28,7,2,1,female,2008,25.83829308,7,40.7142868,29,3,2,0,6.302418435,1.226,22.5 -150,315,3120,0,2.35,19,18,4,1,female,2007,33.21972275,20,41,32,1,0,2,6.710472279,1.245,32 -151,318,3640,0,-0.06,24,12,2,4,male,2007,25.95155716,30,40,29.78013611,3,0,1,6.778918549,1.26,23.1 -152,320,2830,0,0.36,13,48,2,6,female,2008,24.99890327,6,36.2857132,32.42616272,2,2,0,6.680469998,1.239,23.9 -153,322,3660,0,-0.34,23,2,2,4,female,2007,26.44628143,12,38,25.98789978,3,2,0,6.757015743,1.19,21 -154,324,3134,1,1.34,21,9,3,4,female,2008,39.78286743,10,39,29.37713814,3,2,0,6.154802647,1.16,24.3 -155,326,3280,0,-1.44,22,31.1875,2,6,male,2008,24.30461693,9,39,35.74426651,3,1,1,6.529774127,1.149,18 -156,328,3492,0,1.24,24,33.3125,3,4,male,2007,25.46938705,10,40,28.83059311,3,2,2,7.394934976,1.26,28 -157,329,3220,0,-0.68,15,55,2,1,female,2007,24.84375,20,40.1428566,33,1,2,2,6.688455396,1.164,20 -158,331,3360,0,0.11,13,14,2,1,female,2008,24.4850502,15,41.8571434,35,2,2,0,6.485968515,1.149,20.5 -159,335,1780,0,-0.1,31,4,2,4,female,2008,26.72992706,20,34,28.35525131,1,2,2,6.357289528,1.21,22.4 -160,337,2980,0,0.26,25,28.4375,2,1,female,2008,28.52065659,13,38.7142868,38,3,2,1,6.480492813,1.163,21.3 -161,340,3534,0,1.05,11,55,3,4,male,2009,35.62901688,12,40,26.75273895,3,2,0,6.105407255,1.21,24.7 -162,342,3000,0,-0.08,32,8,2,4,male,2008,18.80920601,12,39,28.86894989,2,0,0,7.460643395,1.24,23.8 -163,343,3622,0,0.87,29,9,2,4,male,2008,27.68166161,20,40,26.68036461,2,2,0,7.759183208,1.295,28 -164,345,3280,0,1.14,16,31,3,1,male,2008,24.68066025,9,41.7142868,18,3,2,0,6.507757244,1.225,25.7 -165,351,4080,0,2.69,26,59,4,4,female,2008,23.12062454,8,40,23.72808266,3,2,0,6.313597992,1.26,34 -166,353,3630,0,-0.6,22,22,2,4,female,2008,28.06642342,13,40.57143021,30.63869858,3,2,0,6.212069359,1.25,22.5 -167,360,2760,0,-0.38,22,24,2,6,male,2007,23.51020432,12,36.1428566,32.80838013,2,1,0,6.05338809,1.179,20.7 -168,361,3140,0,3.05,19,30,4,1,male,2008,23.61296272,5,41,28.44353104,3,0,1,6.543577458,1.202,34.2 -169,363,3480,0,0.39,21,14.1875,2,6,male,2008,19.140625,10,39.8571434,30.98108292,2,2,0,6.387519963,1.189,20.2 -170,367,3590,0,1.35,20,64,3,1,female,2008,33.04758835,20,41.7142868,37,3,2,2,6.661305042,1.27,28.4 -171,372,3620,0,-0.13,16,40,2,4,female,2008,24.80158806,16,40,33.32446289,3,2,1,5.508555784,1.06,17.5 -172,373,3020,0,-1.04,21,5.0625,2,6,female,2008,22.49135017,17,38.42856979,26.04118729,3,2,1,6.294433037,1.245,21.9 -173,374,3240,0,0.85,25,8,2,1,female,2007,28.6964016,16,41.1428566,33,1,2,0,6.792607803,1.266,27.1 -174,376,2770,1,-0.34,25,37,2,1,male,2007,28.31095695,8,37,27.06365585,2,2,1,6.346224047,1.21,21.95 -175,380,3940,0,0.23,20,5,2,1,male,2007,33.31339645,5,40.2857132,27,2,0,0,7.069130732,1.254,24.9 -176,381,3600,0,1.01,23,21,3,4,female,2008,21.67125893,11,40,36.32237625,3,2,0,6.568218115,1.33,30.2 -177,386,3760,0,1.23,15,28,3,6,female,2008,26.42356982,14,40,32.80160904,2,2,2,6.083504449,1.2,25.4 -178,387,3400,0,0.1,33,22,2,6,female,2008,25.31545448,8,39,27.42778969,3,0,1,6.436573123,1.211,22.7 -179,391,3880,0,-0.49,19,39,2,6,female,2007,23.33768463,23,41,35.24220657,2,2,0,6.450262377,1.153,21.8 -180,392,2960,1,2.28,18,55,4,6,male,2008,29.06060791,23,36,30.32819557,2,2,1,6.338010495,1.265,30.8 -181,393,3500,0,-1.69,21,15,2,6,female,2007,26.17519379,18,39,25.21013069,3,2,0,6.357175451,1.21,19.2 -182,397,1802,0,1.03,12,28,3,4,female,2008,23.83673477,9,34,36.86347198,2,2,2,6.124458134,1.13,21.5 -183,399,3000,0,-0.01,17,4,2,1,male,2008,27.57497025,19,37.7142868,22,1,1,2,6.565480265,1.204,20.2 -184,406,3380,1,-0.71,15,68,2,1,female,2008,38.89807129,20,40.2857132,38,3,0,2,6.113506731,1.183,18.8 -185,408,3960,0,0.96,20,32,2,4,male,2008,32.32653046,16,40,29,3,2,1,6.822724162,1.3,28.6 -186,409,3886,0,1,20,39,3,4,male,2008,25.390625,12,39,24.68584442,3,2,0,6.453228382,1.16,18.6 -187,410,4640,0,3.14,25,32.125,4,1,male,2007,36.80844879,10,41.7142868,22,1,2,0,6.3544376,1.187,30 -188,414,2610,0,-0.32,21,27,2,1,male,2008,27.30448723,20,38.1428566,38,1,0,2,6.154688569,1.178,20.7 -189,415,3820,0,0,25,46,2,4,male,2008,27.77777863,8,39.7142868,25.05867577,3,2,0,6.29431896,1.24,23.6 -190,419,3370,0,0.51,26,20,2,6,male,2008,23.66524506,10,37.42856979,31.03627586,3,2,1,6.373602555,1.188,22.7 -191,420,3170,1,-1.05,29,11,2,4,female,2008,21.63331604,8,39,31.79771614,3,2,0,6.154802647,1.17,18.9 -192,421,4160,1,1.54,24,18,3,1,male,2008,29.02356911,12,40.7142868,26,3,2,0,6.324549395,1.179,24.7 -193,425,1100,0,-1.97,15,10,2,1,female,2008,21.4421463,9,28,33.57973862,1,0,2,6.806297057,1.21,24.9 -194,426,3120,0,-0.01,16,68,2,1,female,2008,20.40650749,4,38.57143021,25,3,0,1,6.116358658,1.143,20 -195,427,3380,0,0.36,28,0,2,6,female,2007,18.64534378,13.5,42.1428566,25.32919884,3,2,0,6.80892083,1.258,25 -196,429,2540,0,-0.71,16,5.125,2,1,female,2007,35.41632843,5,35.8571434,22.37371635,3,2,0,6.704996578,1.135,18.4 -197,430,3680,1,-0.31,17,12,2,1,male,2007,26.39204025,8,40,29,3,2,2,7.430641113,1.316,25.9 -198,432,2860,0,-0.7,22,20.1875,2,6,female,2008,19.36247253,10,37.8571434,31.12529564,2,2,2,6.833789642,1.182,20 -199,433,4230,1,3.56,21,26.375,4,4,male,2008,31.09789085,20,41,38.59703064,2,2,2,6.338010495,1.23,33 -200,434,3900,0,0.33,19,2,2,1,male,2008,18.84182739,8,40.57143021,20,1,2,2,6.836527493,1.15,20.95 -201,436,3590,0,2.45,30,14,4,4,male,2008,34.60207748,28,39,24.77739716,3,2,0,6.850102669,1.28,28.3 -202,437,2810,1,2.89,13,49.22222137,4,6,male,2008,23.87511444,12,38,25.84220314,2,2,1,6.01779603,1.202,26.6 -203,438,2820,0,1.22,20,47,3,4,male,2007,23.73323822,16,40,24.04771614,3,0,0,6.400981063,1.18,24 -204,440,3120,0,0.78,16,9,2,1,female,2008,28.63357162,10,39.2857132,35,3,2,1,6.316335843,1.144,21.8 -205,445,1920,0,-1.11,16,33,2,4,male,2008,21.25850296,12,32.42856979,31.72260284,3,2,2,6.231234314,1.12,17.5 -206,446,3270,0,-0.96,24,39.375,2,4,female,2008,25.14860535,11,37,25.28949738,3,2,0,6.401209217,1.14,18.1 -207,447,2900,0,1.15,21,44,3,1,female,2008,26.76621437,5,37.42856979,28,3,1,0,6.382044262,1.184,24.4 -208,449,2540,0,-0.94,25,8,2,4,female,2008,22.65625,11,40,32.36139679,2,2,2,6.318959617,1.17,18.8 -209,454,2900,0,-0.39,27,41,2,4,female,2008,24.60973358,14,37,28.2546196,3,2,1,6.694159252,1.22,22 -210,455,2720,0,-0.29,16,29,2,6,female,2007,23.30668005,15,38,30,3,2,0,6.984257358,1.181,30 -211,457,4340,0,-0.56,27,37,2,1,male,2008,19.96287727,8,40.1428566,22,2,0,1,6.809148985,1.23,21.4 -212,464,2900,0,-0.01,18,16,2,1,female,2008,21.78249931,8,39.42856979,30,1,0,0,6.691307324,1.23,23.2 -213,465,3550,0,-0.13,27,5,2,4,male,2008,26.67487526,9,41,23.01484108,3,2,0,6.127310062,1.18,21.1 -214,466,3570,0,1.63,17,12,3,6,female,2008,19.10009193,27,39.2857132,31.29330254,2,2,1,6.094455852,1.184,24.8 -215,472,3490,0,-0.91,22,9,2,4,male,2009,22.79032898,14,41,30.01917839,3,2,1,6.127310062,1.143,19.1 -216,474,3080,0,-0.21,15,23,2,1,male,2008,33.7492981,3.5,41,29,2,2,0,6.603582021,1.115,18.8 -217,475,2760,0,1.63,25,82,3,1,female,2007,30.81958771,12,38.8571434,20,1,1,0,6.874743326,1.28,30.6 -218,483,3770,0,0.31,21,65.04285431,2,6,female,2008,21.90758324,20,40.1428566,33.80925369,3,2,1,6.485854438,1.2,22.8 -219,484,2530,0,3.84,13,74.22222137,4,6,male,2007,18.37682515,10,35.1428566,29.10736847,2,2,0,6.351699749,1.245,35.5 -220,486,2920,0,-2.55,18,9,1,1,female,2007,20.75489426,9,38.57143021,30,3,1,1,6.819986311,1.193,17.3 -221,488,2460,0,-0.37,9,133,2,1,male,2008,20.87976646,10,35,31,2,1,1,6.319073694,1.226,22.35 -222,489,3030,0,-1.63,19,59.93333435,2,6,male,2008,19.38214493,13,40.1428566,33.03614044,3,2,1,6.713324207,1.218,20 -223,491,3000,0,0.08,13,53.75,2,6,female,2008,19.59645844,9,38,29.30440521,2,2,0,5.445471138,1.236,23.6 -224,494,3400,0,1.59,10,28,3,6,female,2007,24.77679443,12,38.7142868,29.79515648,2,2,1,6.384553958,1.182,25.2 -225,495,2610,1,0.88,20,37,2,4,male,2007,20.44913673,16,40,30.97558784,2,2,0,6.486082592,1.217,24.1 -226,496,3660,0,0.16,18,39.5,2,6,male,2008,21.09619141,17,40,30.6365509,3,2,0,6.299680584,1.205,22.6 -227,498,3320,0,0.96,32,17,2,6,male,2007,27.18090057,16,38.2857132,31.20972061,3,2,0,6.663814739,1.224,25.3 -228,500,2900,0,-0.6,13,48.3125,2,6,female,2008,20.07960129,23,39.1428566,26.06321335,2,2,0,6.313483915,1.108,17.7 -229,502,2840,0,1.25,18,11,3,1,female,2007,32.12889099,8,41.2857132,37.39082718,1,0,2,6.395733516,1.235,26.9 -230,503,3860,0,0.87,15,20,2,1,male,2008,29.50003052,9,39.7142868,26,2,0,2,6.516084873,1.177,23.5 -231,504,3740,0,0.11,22,75,2,1,male,2008,37.14358139,9,40.42856979,28.09703255,3,2,0,6.485968515,1.123,19.55 -232,505,3050,0,0.32,12,7.125,2,6,female,2008,21.93634796,10,39,30.99436188,2,2,1,6.401209217,1.209,23.1 -233,508,3990,0,0.85,28,26,2,4,female,2008,25,20,39,28.91392708,2,2,2,6.387519963,1.27,23 -234,511,3910,1,-0.17,22,22,2,4,male,2009,29.74580765,25,39,28.40570831,3,2,1,6.072553046,1.143,21.9 -235,512,2710,0,1.68,12,25,3,6,female,2009,21.87755013,25,38.1428566,35,3,2,1,6.480492813,1.212,27.4 -236,513,3440,0,0.94,14,8,2,1,male,2008,23.87030411,8,38.57143021,29,1,0,2,6.707734428,1.169,23 -237,514,3870,0,-0.39,16,38,2,6,male,2008,18.37682515,20,38.8571434,24.22328758,2,2,2,6.98973306,1.232,22.7 -238,519,3760,0,0.12,14,83,2,1,female,2007,18.84182739,12,40.57143021,29.01026726,1,2,0,6.767967146,1.144,23 -239,520,3140,0,-0.82,15,25,2,6,female,2008,22.91303253,10,37.57143021,37.66019058,3,2,1,6.288843258,1.167,19.5 -240,521,3504,0,-0.92,20,17,2,4,female,2008,24.38652611,11,41,24.28013611,2,2,1,6.058977869,1.169,18.8 -241,523,3343,0,1.42,26,31,3,4,female,2008,27.47252655,22,40,34.89200974,3,2,2,6.127310062,1.25,28 -242,527,3500,1,-0.43,22,6,2,1,male,2008,32.16893005,5,38.1428566,36,3,2,2,6.401209217,1.196,21.2 -243,528,3020,0,0.75,30,25,2,4,male,2007,27.7767067,15,39,23.31963539,3,2,0,6.770704997,1.297,23.6 -244,529,3070,0,-0.51,13,55,2,4,male,2008,20.82094002,10,40.7142868,27.1567421,3,2,1,6.12183436,1.15,20.2 -245,530,3560,0,1.61,21,40,3,6,female,2008,21.09375,35,40,30.63869858,2,2,0,6.119096509,1.21,22.6 -246,533,3740,1,0.75,20,19,2,1,female,2008,26.76494408,9,40.7142868,27.86525726,1,2,1,6.447752681,1.166,22.6 -247,534,4260,0,0.69,29,20,2,4,male,2008,28.93507385,20,40,20.12168884,3,2,0,7.019849418,1.28,27.1 -248,535,3220,0,-0.06,20,14,2,1,male,2008,22.07939529,5,39.57143021,20,1,2,0,6.658453114,1.184,21 -249,539,3210,0,-1.29,16,2,2,6,female,2008,22.98539734,16,38,27.9222374,2,2,1,7.063655031,1.197,23.6 -250,540,2360,0,1.97,16,0,3,1,female,2009,36.68451691,5,37,26,2,0,2,6.299794661,1.182,26.95 -251,542,4120,0,0.69,24,8,2,1,male,2008,22.07939529,20,39.57143021,28,3,2,1,6.455966233,1.187,24.2 -252,545,3180,1,-0.89,20,23,2,1,male,2008,24.53562546,10,39,39,1,2,0,6.529774127,1.239,21.9 -253,546,2900,0,-1.44,28,25.25,2,6,female,2007,32.69054031,12,40,28.0834465,2,2,0,6.360027379,1.25,21 -254,547,3260,0,1.58,22,38.0625,3,6,male,2008,32.69054031,8,38.1428566,27.95060539,2,2,0,7.077230208,1.321,31.7 -255,552,3632,0,1.01,19,84,3,4,female,2008,31.58861351,20,40,26.550457,1,2,2,6.151836642,1.19,23.8 -256,555,3370,0,-1.4,22,48,2,4,male,2008,30.10211945,14,39,24.61187172,2,2,0,6.102669405,1.24,21 -257,556,3030,0,-0.56,21,49,2,4,female,2008,23.87511444,9,39,28.86894989,3,2,0,6.841889117,1.25,22.6 -258,557,3963,0,-0.58,22,75.5625,2,4,male,2008,20.87976646,18,40,30.31415558,3,2,0,6.067191421,1.18,20.3 -259,558,3210,0,-1.48,19,40,2,4,male,2008,20.19557762,12,40,34.86347198,3,2,2,6.338124572,1.21,19.9 -260,559,3823,0,1.3,21,24,3,4,male,2007,31.72255135,23,40,29.41118813,2,2,2,6.934976044,1.26,27.9 -261,561,3010,0,0.72,25,26.25,2,6,female,2008,25.07619286,18,37.2857132,28,3,2,1,6.524184349,1.278,27.2 -262,562,3134,0,2.06,23,7,4,4,female,2007,21.96712112,8,39,28.3449688,3,2,0,6.045174538,1.3,32.8 -263,564,2920,0,0.43,22,38,2,1,female,2007,24.20601654,18,39.7142868,30.44348717,2,2,1,6.932238193,1.105,19.7 -264,565,3419,0,1.44,19,99,3,4,male,2009,29.41073418,20,37.8571434,28.58589935,2,2,0,6.110882957,1.228,24.4 -265,566,3520,0,-1.7,22,24,2,4,male,2008,19.91836739,11,38.42856979,36.01917648,3,2,1,5.749372576,1.2,19 -266,569,3680,0,-0.02,24,9,2,1,male,2008,38.02388,9,41,28,3,2,0,6.346452202,1.241,23.6 -267,570,4050,0,0.75,16,54.1875,2,6,male,2007,24.9107666,15,37.1428566,29.11704254,2,2,2,6.346224047,1.205,22.2 -268,572,3000,0,-0.38,24,5.0625,2,6,female,2008,19.84127045,13,38.57143021,36.39638138,2,2,2,6.962354552,1.254,23.2 -269,573,2321,0,0.8,20,24,2,4,female,2008,36.80572128,18,41.7142868,36,3,2,0,6.162902122,1.21,22.2 -270,575,3290,0,1.04,13,18,3,1,male,2008,31.09789085,15,38.57143021,31,2,0,2,6.387519963,1.22,25.2 -271,577,3540,0,1.25,27,27.25,3,6,female,2007,20.81165504,15,39,22,2,2,1,7.175792836,1.27,24.7 -272,578,3360,0,-0.05,23,25,2,4,female,2008,25.15589523,15,40,24.61187172,3,2,0,6.203969884,1.16,19.6 -273,582,3950,0,1.65,22,41,3,4,female,2008,35.15625,22,40,35.64086914,2,2,1,5.623545517,1.26,29 -274,586,3100,0,-0.17,19,11,2,1,male,2007,22.99427986,9,40.8571434,16,1,2,0,6.595368469,1.097,18.25 -275,588,2800,1,0.81,18,7,2,1,male,2007,20.93663979,0,40.7142868,25,2,0,0,6.863791923,1.33,29.5 -276,589,2960,0,-1.21,15,13,2,1,male,2008,22.17302895,13,39,24,2,1,0,6.56251426,1.242,21.45 -277,592,3962,0,-0.75,25,38,2,4,female,2008,25.46938705,18,41,24,3,2,0,7.195071869,1.26,22.7 -278,593,3395,0,-1.09,20,27,2,6,male,2008,18.36547291,17,39,30.44348717,2,2,1,6.039698836,1.18,19.4 -279,594,3480,0,0.39,22,3,2,1,female,2008,27.48503113,5,41.57143021,17,1,0,0,6.516084873,1.18,22.9 -280,597,3527,0,0.19,21,41,2,4,male,2008,20.390625,11,41.8571434,24,1,2,0,5.995893224,1.31,26.7 -281,601,2970,0,-2.35,19,21,1,4,female,2007,18.96192741,27,39,32.74452209,2,2,2,7.011635866,1.13,18.8 -282,603,3540,1,0.13,17,11,2,1,male,2008,29.70564461,10,39,36,3,0,1,6.193132558,1.127,19.7 -283,605,3200,0,0.01,27,57,2,4,male,2007,25.71166229,16,40,25.19246483,3,2,0,7.718115446,1.3,27.1 -284,607,3580,0,-1.07,25,2,2,1,male,2008,23.03563499,10,40.7142868,30,2,0,1,6.406684919,1.193,17.2 -285,612,3560,0,1.04,18,12.30555534,3,6,female,2008,25.53670311,12,41.8571434,40.16693878,3,2,1,6.513232945,1.165,27.3 -286,614,3978,0,0.62,31,61,2,4,male,2008,36.57143021,10,40,24.21164322,2,2,0,6.863791923,1.19,22.6 -287,615,4250,0,4.7,19,23,4,4,male,2008,36.80844879,11,39,34.61735153,3,2,1,6.05338809,1.23,37 -288,616,3720,0,1.03,28,16,3,1,female,2007,39.77258682,9,40.8571434,25,2,2,0,6.967716176,1.184,24.3 -289,618,3110,0,2.95,20,25,4,6,male,2007,20.07960129,18,36.2857132,24.50236702,2,2,1,7.159479808,1.355,39.7 -290,620,4230,0,1.48,19,33,3,4,male,2008,32.9564476,10,38,43.50547791,2,0,2,6.198380105,1.177,22.5 -291,622,3080,0,1.29,20,29.3125,3,6,female,2007,23.30668068,30,38.57143021,26.86266136,2,2,0,7.323750856,1.2,31.5 -292,625,3800,0,0.36,21,25,2,4,male,2008,24.93371964,14,40,30,3,2,2,6.329796943,1.23,21.8 -293,626,3430,1,-1.92,28,32,2,1,male,2007,37.2985611,5,40.1428566,26,2,2,0,6.663814739,1.186,19.8 -294,628,2760,0,0.49,22,22.53333282,2,6,female,2008,30.81854057,13,37.57143021,33.00860214,3,2,1,6.507871321,1.15,22 -295,631,2630,0,2.58,13,41,4,6,male,2007,22.83288002,10,37,30.50905037,2,2,2,6.455852156,1.214,29.5 -296,632,2780,1,-0.74,17,57,2,1,male,2007,24.20282745,3,40,26,3,1,1,6.674766142,1.096,17.1 -297,633,3300,0,0.61,24,6,2,1,female,2008,24.67550027,15,38.57143021,36,3,1,1,6.370864705,1.227,24.6 -298,643,3220,0,0.32,11,15.22222233,2,6,male,2008,18.96192741,19,38.42856979,30.08201981,3,2,1,6.743212412,1.276,22.4 -299,646,3575,1,0.76,22,2,2,4,male,2008,22.68905067,10,40,26.53127861,3,2,0,6.176591376,1.12,20.6 -300,649,2930,0,-0.21,18,10,2,4,male,2007,25.95155716,13,37,23.38812828,1,2,2,7.063769108,1.294,24.1 -301,650,3400,0,0.74,22,18,2,4,female,2007,26.49150848,14,40,19.23630142,2,2,0,6.984257358,1.22,24.9 -302,651,3540,0,0.07,30,15,2,1,male,2007,28.06642342,7.599999905,40,35,3,0,2,6.841889117,1.189,21.9 -303,652,2980,1,0.12,28,15,2,4,male,2008,26.13930893,13,38,36,3,2,1,6.65309149,1.172,21.4 -304,657,3580,0,0.37,28,0,2,1,female,2007,30.85399437,8,39,26,1,1,1,6.825462012,1.24,24.6 -305,659,3510,0,-0.83,21,9,2,6,female,2008,23.33546638,12,40,29.4483223,3,2,1,6.297170888,1.14,17.7 -306,666,4060,0,1.02,28,4,3,1,female,2008,25.01562691,12,41.57143021,23,3,2,0,7.030800821,1.176,23.65 -307,667,3300,0,0,25,28,2,1,female,2008,27.06405067,5,39,27,3,1,1,6.384782113,1.063,17.3 -308,669,3425,0,0.96,24,24,2,4,female,2008,23.63755035,9,40,26.56415558,3,2,1,6.310746064,1.21,24.9 -309,670,3850,1,1.45,13,6,3,6,male,2008,22.49135017,20,38.8571434,33.01697159,3,2,1,6.329796943,1.27,29.9 -310,672,3290,0,0.87,20,2,2,6,female,2008,25.390625,11,37.8571434,36.34618759,1,2,1,6.439539128,1.141,21.9 -311,676,3360,0,-1.51,19,38,2,6,male,2008,29.58579826,7,38.42856979,33.99959183,2,2,2,6.376340406,1.139,17.3 -312,679,2500,0,-1.62,13,48,2,1,female,2007,29.0579071,17,38,37,2,0,0,6.778918549,1.276,21.4 -313,682,3270,1,-0.15,26,46,2,6,male,2007,22.30814934,14,37.1428566,27.95060539,2,2,1,7.151266256,1.278,25 -314,686,3816,0,4.64,31,56,4,4,male,2008,23.38868713,15,39,35.64086914,3,2,0,6.425849875,1.3,48.6 -315,687,3880,0,0.48,20,30,2,6,male,2008,26.44628143,20,40.2857132,33.47985077,3,2,0,6.338010495,1.181,21.6 -316,689,3500,1,-2.42,13,26,1,6,male,2008,19.70553207,13,38.2857132,26.38879395,3,2,1,6.332648871,1.175,17.5 -317,692,4472,0,-0.77,24,41,2,4,female,2008,29.06592751,15,41.2857132,27.01758003,2,2,0,6.54072553,1.197,23.6 -318,696,3706,0,-0.08,24,7,2,4,female,2007,25.68956184,20,40,25.25273895,2,2,1,6.814510609,1.25,23.8 -319,697,3590,0,-1.08,27,1,2,1,male,2008,34.61085892,16,40.42856979,27,1,0,2,6.570841889,1.225,20.8 -320,698,3550,0,-0.13,19,8.125,2,1,male,2007,25.95155716,12,38.2857132,31,2,1,0,6.915811088,1.23,24.5 -321,699,3886,0,-0.23,30,13,2,4,female,2008,25.35154152,3,40,25.77191734,2,2,0,6.480378736,1.21,22.7 -322,700,3360,0,0.16,27,2,2,1,female,2008,31.71097755,9,41.7142868,31,3,2,2,6.527150354,1.2,22.8 -323,701,3140,0,-2.05,27,9,1,1,female,2007,23.77170563,12,40,31,2,0,2,6.877481177,1.155,18.2 -324,705,3540,1,0.98,20,32,2,1,male,2007,40.33377838,5,41,23,1,0,0,5.445471138,1.176,23.6 -325,706,2460,0,-0.43,14,18,2,1,male,2007,32.02052689,6.5,37,31,1,0,2,6.929500342,1.24,22.9 -326,707,4584,0,1.02,27,23,3,4,male,2009,20.390625,30,40.7142868,43.50547791,3,2,2,6.113506731,1.23,22.9 -327,711,3560,0,-0.29,18,8.0625,2,4,female,2008,20.46334457,15,39,36.50822067,3,2,2,6.176591376,1.12,18.6 -328,712,3150,0,1.45,15,53,3,6,male,2008,21.90758324,30,35.2857132,30.43394852,2,2,1,6.450262377,1.218,26.2 -329,714,2990,0,2.06,19,2.266666889,4,6,female,2008,23.33546638,14,38.1428566,37.2993927,3,2,1,6.203969884,1.206,28.6 -330,717,4340,0,1.08,25,14,3,1,male,2008,30.8630352,28,37.8571434,34.41752243,3,2,1,6.466803559,1.165,23.1 -331,718,2680,0,2.08,12,35,4,6,female,2008,40.33377838,25,40.7142868,19,1,2,0,6.266826375,1.228,29.8 -332,725,3500,1,0.39,24,21,2,1,female,2007,20.94925308,20,39.7142868,18,1,2,1,7.003422313,1.254,25.3 -333,726,3680,0,-0.77,24,0,2,1,female,2008,36.68100739,10,41.7142868,24,2,0,0,6.532626055,1.223,23.1 -334,727,3370,0,-1.01,27,31,2,4,male,2007,24.67702103,7,38,32.28013611,3,2,1,6.943189596,1.232,20.1 -335,728,4464,0,0.49,32,21,2,4,male,2008,39.32823181,16,41,25.94935036,3,2,0,6.143737166,1.3,27.8 -336,729,3900,0,-0.42,27,46.375,2,4,male,2008,25.09950066,5,39,28.87831116,3,2,1,6.472393338,1.28,24.3 -337,730,3540,1,-0.65,13,3,2,1,female,2008,22.77318573,5,39.7142868,23,1,2,2,6.379306411,1.176,19.4 -338,732,2910,0,1.2,26,14,3,4,male,2007,24.22145271,13,39,31.59429169,1,2,1,6.882842802,1.27,28 -339,735,3540,0,2.37,16,40,4,6,male,2007,28.93507385,8,38.1428566,29.09618568,2,2,1,6.428587725,1.26,29.8 -340,741,3770,0,-0.05,23,42,2,4,male,2007,28.72678757,10,39,32.53013611,3,2,2,7.331964408,1.31,29 -341,742,3410,0,-0.69,22,12,2,4,female,2007,19.4674015,8,39,30.5281601,3,2,1,6.973305955,1.27,21 -342,743,3070,0,0.42,31,15,2,6,female,2008,24.80158806,12,40,25.65529251,2,2,0,6.113620808,1.133,20.5 -343,744,3380,0,-0.18,23,15,2,1,female,2007,23.61942863,10,40.7142868,32,3,2,0,6.81724846,1.19,21.6 -344,745,5260,0,0.83,26,10.0625,2,4,male,2008,27.77427101,20,40,32.74177933,2,2,0,6.65309149,1.29,35 -345,747,4000,0,2.82,21,22,4,4,female,2008,29.7577858,30,40,28.49178123,3,2,0,6.146475017,1.18,30.8 -346,749,3240,0,-0.08,21,33.3125,2,6,male,2007,22.57104683,28,37.2857132,20.86515999,2,1,0,7.531941593,1.275,25.2 -347,752,3492,0,-0.22,28,25,2,4,male,2007,24.22145271,16,40,27.63716888,3,2,1,7.175792836,1.19,21.4 -348,754,3700,1,-0.36,27,7,2,1,male,2007,25.84695053,6,41.8571434,24,2,2,0,6.614533425,1.12,21.25 -349,755,3250,0,0.95,18,18,2,6,female,2008,31.23941422,13,41.1428566,34.41752243,2,2,2,6.409194616,1.195,24.3 -350,756,3130,0,1.57,17,15.22222233,3,6,male,2008,25.53670311,12,36.2857132,29.15658379,2,2,0,6.406456765,1.175,24.6 -351,759,3000,0,2.22,12,92.8125,4,6,male,2008,24.22145271,10,38.8571434,27.24842262,2,2,0,6.56525211,1.23,29.7 -352,761,3274,0,-0.13,25,34,2,4,male,2007,31.17913818,7,40,41.12990952,3,2,0,7.014373717,1.23,23 -353,764,3020,1,0.56,12,14,2,1,male,2009,26.6689949,5,39,26,1,0,2,6.212069359,1.24,25.1 -354,765,3380,0,1.57,22,26.125,3,1,male,2008,27.96158218,13,38.2857132,27,3,1,0,7.02532512,1.181,27.1 -355,768,2951,0,-0.48,32,55,2,4,female,2008,31.91930771,8,37,24,2,2,0,6.02886151,1.13,18.6 -356,769,4080,0,1.14,24,7,3,1,male,2008,37.0447464,10,41.42856979,30.27085686,1,1,2,6.483116587,1.251,26.8 -357,773,3480,0,0.51,28,25,2,1,female,2008,31.10003662,0,40.42856979,22,2,2,0,6.447752681,1.173,23.7 -358,774,3810,0,0.28,23,48,2,4,male,2007,24.76756668,15,40,29.86347008,3,2,0,6.108145106,1.21,23 -359,775,2630,0,-1.19,15,19,2,6,female,2008,21.71924973,12,37,30.00229073,2,2,1,6.442048825,1.154,19.8 -360,776,3370,0,0.82,26,27,2,4,female,2008,22.49135017,13,41,22.21986389,2,2,0,7.274469541,1.23,24.9 -361,777,4340,0,0.04,31,9,2,1,female,2007,26.00906372,5,39,33,3,1,0,6.81724846,1.19,21.85 -362,778,3400,0,-1.25,21,13,2,1,male,2008,21.194664,10,37.8571434,22.41392708,3,1,0,6.403947068,1.193,20.2 -363,779,3190,1,0.04,11,28,2,6,male,2008,24.03461075,10,38.1428566,28.0834465,2,2,0,6.116358658,1.161,20.6 -364,781,2480,0,-0.35,25,22,2,1,female,2007,32.62265396,10,41.42856979,34,2,2,0,6.368355008,1.164,20 -365,783,3140,0,0.36,27,3,2,1,female,2007,25.18462753,9,37.7142868,29,3,0,1,6.655829341,1.142,20.8 -366,784,4340,0,1.33,23,2,3,1,male,2007,32.32196808,22,39.42856979,36,2,2,2,6.984257358,1.275,28.5 -367,788,3300,1,0.69,25,7,2,1,male,2007,20.390625,9,40,29.63702583,3,0,1,7.718115446,1.248,25.7 -368,790,2810,0,1.45,25,21,3,6,female,2008,23.72528648,9,38.57143021,34.32024002,3,2,1,6.261350673,1.232,26.7 -369,791,3180,0,-1.34,22,33,2,6,female,2008,20.3125,17,38,36.31040573,2,2,2,6.641911932,1.194,18.1 -370,792,1390,0,-0.82,13,10,2,1,male,2007,22.98539734,5,32,23,3,2,0,6.806297057,1.225,22 -371,794,3320,0,-0.3,21,10,2,6,female,2007,22.18934822,18,39.8571434,27.99033165,2,2,0,6.510609172,1.106,18.3 -372,797,3220,0,1.87,26,6,3,4,female,2007,26.92743683,20,40,35.12009048,3,2,0,6.346338125,1.29,32.2 -373,798,2420,0,2.94,17,39,4,1,male,2008,26.4815197,12,38.57143021,28,1,0,2,6.565480265,1.198,29.7 -374,802,3300,0,-2.02,18,15,1,6,male,2008,19.53125,23,38,32.27364349,3,2,0,6.56525211,1.167,17.8 -375,803,2680,0,-0.46,23,52,2,4,male,2007,26.07897186,14,36.1428566,30.93972588,2,2,0,6.767967146,1.24,21 -376,806,3210,0,2.97,23,8,4,4,male,2007,28.06642342,20,38,25.56878853,2,2,0,6.234086242,1.26,33.6 -377,807,2820,0,-0.1,25,38,2,6,male,2008,22.41026878,10,38,28.41237068,3,2,1,6.486082592,1.2,22 -378,809,3872,0,1.34,16,18,3,4,male,2009,23.66524506,10,40,33.4248848,3,2,1,6.110882957,1.26,27.2 -379,810,3460,1,1.74,21,62.6875,3,6,female,2008,25.63116837,10,38.8571434,33.26214981,3,2,0,6.472165184,1.202,26.9 -380,812,3190,0,-1.27,14,16,2,1,female,2007,33.22551346,9,41.42856979,35,1,0,2,6.836413415,1.19,23.6 -381,813,3810,0,0.38,26,39,2,4,male,2008,31.99217224,30,39,25,3,2,0,6.105521332,1.21,23.2 -382,816,3500,0,-1.24,27,44,2,1,male,2008,26.76621437,15,41.8571434,28,1,2,0,6.636664385,1.213,20.25 -383,819,3392,0,2.38,13,8.0625,4,6,male,2008,21.484375,9,39.8571434,34,1,2,1,6.3544376,1.264,31.8 -384,820,2930,0,-1.29,15,13,2,6,female,2008,21.67125893,20,39.8571434,27.22984505,2,2,0,6.023271732,1.146,17.7 -385,822,2120,0,1.58,23,16.375,3,6,female,2007,32.87197232,25,30.8571434,36.15605927,3,2,1,7.145790554,1.297,31.5 -386,825,3342,0,0.28,26,22,2,4,female,2008,18.81892395,9,38,29.72808266,3,2,1,6.740474561,1.16,20.5 -387,828,2560,0,0.62,16,95,2,4,female,2008,22.95908737,10,40,25.0997715,2,2,0,5.437257586,1.11,20 -388,829,2570,0,2.22,20,16,4,6,male,2008,22.48132896,2,36.1428566,34.42502213,3,2,1,6.56525211,1.177,28.3 -389,830,3150,0,-0.22,27,40,2,4,male,2008,20.93663979,10,40,24.67214584,2,2,2,6.620009126,1.19,21.4 -390,834,2210,0,-0.86,19,45.5,2,6,female,2007,20.93211937,10,35.1428566,35,2,2,2,6.387291809,1.199,20.6 -391,835,2540,0,0.49,18,36,2,6,male,2008,20.76124573,13,39.42856979,33.46874237,2,2,1,6.453228382,1.183,22.5 -392,836,2550,0,0.02,13,102,2,4,male,2008,21.71924973,9,38,23.80319595,3,2,2,6.14636094,1.13,19.6 -393,837,3430,0,1.34,31,16,3,6,male,2007,26.0932752,7,37.2857132,36,3,2,0,6.488592288,1.181,28.1 -394,843,3870,0,0.08,22,2.0625,2,1,female,2007,20.7002182,12,41.7142868,19,1,0,0,6.869267625,1.176,21.45 -395,846,3320,0,2.23,20,21,4,4,female,2008,32.52595139,9,40,33.16666794,3,2,2,5.437257586,1.184,28.6 -396,847,4620,0,1.05,15,12,3,1,female,2008,27.06405067,9,39,36,1,2,2,6.746064339,1.16,23.3 -397,848,2820,0,2.28,33,12,4,6,male,2008,29.1363163,3.5,35.2857132,36.79285049,2,2,2,6.359913301,1.21,28 -398,849,4017,0,0.25,24,41,2,4,female,2007,28.32658005,15,40,43.34429169,2,2,1,6.902121834,1.24,24.3 -399,851,3630,0,-0.16,20,46,2,1,male,2008,23.29071999,3,41.7142868,17,1,2,0,6.201232033,1.181,21.1 -400,852,3060,0,1.11,33,40,3,6,male,2008,33.12130737,9,38,28,3,2,0,6.99247091,1.159,22.9 -401,854,2500,1,-1.54,14,34,2,6,female,2008,20.56933022,22,37.57143021,30.76895523,1,2,2,6.46954141,1.187,19.1 -402,855,3504,0,1.13,11,88,3,6,male,2008,24.38652611,14,39.1428566,29.63702583,2,2,0,6.98973306,1.319,25.5 -403,856,4160,0,-0.55,12,25,2,1,male,2008,28.93507385,8,40,17,1,2,1,6.368355008,1.15,20.45 -404,858,3170,0,-0.94,15,53,2,1,male,2008,24.72946167,24,39.42856979,28.86894989,1,1,0,6.447752681,1.144,19.2 -405,859,3358,0,0.54,25,25,2,4,female,2008,34.52708817,20,39,26.58059311,2,2,0,6.844741045,1.14,21.2 -406,863,2820,0,-3.58,16,25,1,1,male,2008,18.39737129,6.5,39,30,1,1,1,6.507985398,1.171,16 -407,864,3000,0,0.62,13,23.54411697,2,6,male,2008,38.94681168,13,38,28.04205704,2,2,0,6.918548939,1.259,26.2 -408,865,4020,1,3.13,9,37,4,6,male,2008,19.95728493,30,37.7142868,32.22317886,2,2,1,6.46954141,1.236,32.4 -409,866,3660,0,-1.3,19,11,2,1,female,2008,23.52941132,9,41.42856979,38,1,1,2,6.401209217,1.184,21.1 -410,868,3860,0,1.36,23,37.3125,3,6,female,2008,24.21875,11,41.42856979,26.11909676,2,2,1,6.494296144,1.312,30.8 -411,872,3740,0,3.29,15,14.125,4,4,female,2008,19.73396111,14,40,39.60525131,3,2,2,6.26146475,1.26,37 -412,873,3640,0,0.58,24,28,2,6,male,2008,24.34175873,20,40.2857132,35.11534882,3,2,1,6.313369838,1.208,23.6 -413,876,3360,0,-0.03,31,17,2,1,female,2007,21.95405197,0,37.7142868,24,1,2,0,6.770704997,1.255,24.1 -414,877,2970,0,1.61,22,46,3,6,male,2007,28.40533829,25,35,27.86730957,2,2,1,6.283367556,1.24,27.5 -415,878,3512,0,-0.4,24,20.125,2,4,female,2008,26.36560249,17,39,26.29223824,3,2,1,6.190394707,1.19,20.8 -416,879,3460,0,-1.03,25,35,2,4,female,2007,24.22145271,0,40.2857132,32,3,0,2,6.130047912,1.16,18.6 -417,882,3880,0,0.49,19,22,2,1,male,2007,20.19566727,9,42.2857132,23,1,2,0,6.639174082,1.323,28.2 -418,883,3600,0,-0.67,17,21,2,6,female,2007,23.87511444,20,36,18.9347477,1,2,0,6.422883869,1.095,17.1 -419,884,3970,0,0.35,29,8,2,4,male,2008,34.55707932,30,40,32.28013611,3,2,1,6.510723249,1.31,27.3 -420,885,3360,0,-0.12,11,4,2,1,male,2008,21.33821064,9,41.7142868,33,3,2,0,6.858316222,1.155,21.2 -421,887,2830,0,0.51,21,43,2,6,female,2008,23.1404953,9,38,43,2,1,2,6.46954141,1.19,21.9 -422,888,3320,0,-0.67,19,10,2,1,male,2008,20.390625,1,40.7142868,30,3,2,0,6.655601186,1.31,18.9 -423,891,3336,0,0.71,24,45,2,4,male,2008,25.24933815,16,40,33.83333206,3,2,2,5.921971253,1.22,26.7 -424,892,3660,0,1.91,22,45,3,1,male,2008,26.28476715,8,41,26,3,0,1,6.809034908,1.238,28.7 -425,893,3680,0,1.03,22,9,3,1,male,2008,25.36937904,25,41.42856979,33.12252045,3,0,1,6.518936801,1.265,27.2 -426,895,2790,0,0.15,16,41,2,1,female,2007,29.91725349,10,38.57143021,30.05825615,1,1,2,6.792607803,1.198,22.4 -427,896,3500,0,-0.02,12,7,2,1,female,2007,35.62901688,7,41.1428566,27,1,0,2,6.866529774,1.218,19.6 -428,898,3640,0,-0.14,26,10,2,4,male,2008,23.66524506,10,40.57143021,28.03675842,2,2,0,6.661305042,1.18,21.2 -429,899,3750,0,-0.1,22,66,2,4,female,2007,30.11940193,10,39.57143021,21.51095963,2,2,0,6.620123203,1.19,21.5 -430,903,3880,0,0.75,21,28,2,1,female,2007,35.96804428,10,40.7142868,31,1,2,2,6.896646133,1.275,27.35 -431,904,2820,0,2.63,32,12.125,4,1,female,2007,29.66983986,7,40.1428566,36.48186111,1,2,1,6.877481177,1.26,34.5 -432,906,2300,0,1.77,14,17,3,6,female,2007,23.53304271,3,37.2857132,39.14478302,2,2,0,6.442276979,1.135,24.3 -433,908,4000,0,1.77,19,8,3,4,male,2007,33.60102081,8,41,30.11347008,2,0,1,6.466689482,1.26,25.6 -434,910,3540,0,0.85,30,11,2,1,male,2007,31.10003662,10,40.8571434,19,1,2,0,7.088295688,1.15,22.3 -435,911,3300,0,1.62,25,34,3,4,female,2008,21.09375,10,39,30.43394852,2,0,2,5.853524983,1.17,25.8 -436,915,3100,0,0.8,15,74,2,6,male,2008,21.67125893,8,36.8571434,33.46874237,2,2,1,6.48060689,1.183,23.4 -437,918,3620,0,1.05,13,29,3,1,female,2008,31.31833076,8,39.2857132,29,1,0,2,6.603810176,1.224,25.8 -438,919,4120,0,0.85,32,25,2,4,female,2007,29.03178978,13,43,26.47260284,3,2,0,7.104722793,1.33,30.1 -439,920,2960,1,3.53,18,43,4,4,male,2008,26.39580345,20,36,22.449543,3,2,0,6.46954141,1.305,32 -440,921,2600,0,-1.18,24,11,2,6,female,2007,22.67995262,11,36.57143021,33,2,2,1,6.346338125,1.146,22.1 -441,924,2970,0,2.87,17,50,4,6,female,2007,26.70362282,12,38,22.04497719,3,2,0,7.003422313,1.256,35.1 -442,925,3810,0,-0.82,31,3,2,4,male,2008,30.85399437,15,41,35.43584442,2,2,1,5.708418891,1.16,19.3 -443,927,3640,0,0.15,22,10.25,2,6,female,2007,21.15529442,13,39.57143021,30.57473946,1,2,2,7.085557837,1.33,23 -444,933,3620,0,0.21,19,31,2,6,male,2008,22.77318573,12,40,32.78110504,3,2,0,6.592630618,1.226,23.6 -445,935,1780,1,-0.03,23,14,2,1,male,2007,31.27884674,5,34,33,3,2,0,6.902121834,1.15,22 -446,936,3690,0,2.05,24,32,4,1,male,2007,36.80572128,10,40.7142868,29.01026726,3,0,2,6.893908282,1.294,33.6 -447,940,4540,0,0.69,29,13,2,1,male,2007,38.89807129,9,41.7142868,35,3,2,1,6.770704997,1.21,24.1 -448,941,2710,0,1.11,12,33,3,6,female,2008,21.5138588,20,38.57143021,30.91102028,2,2,1,6.483116587,1.162,27.3 -449,945,2880,1,-0.73,22,24.33333397,2,6,female,2007,23.42355728,7,38.42856979,26,2,2,1,6.877481177,1.143,19.4 -450,947,3640,0,-0.01,16,28,2,1,male,2008,40.13878632,5,38.7142868,36,1,2,1,6.401209217,1.197,19.7 -451,951,2890,0,0.76,21,2,2,6,female,2008,31.50136566,18,37,33.81074524,3,2,0,6.313597992,1.238,25.5 -452,955,2970,0,-1.08,14,17,2,6,female,2008,20.06920433,12,37,31.25950623,3,2,1,6.474903034,1.223,20.6 -453,959,4350,0,0.49,27,24,2,6,male,2008,27.85200882,9,37.8571434,30.0603466,3,2,1,6.365389003,1.181,22.4 -454,962,2360,0,1.95,24,33,3,1,male,2008,22.17302895,10,34.2857132,17,1,2,0,6.625712982,1.205,24.6 -455,964,3212,0,-0.05,19,10,2,4,male,2007,33.56401443,12,39,32.08607483,3,2,1,6.362765229,1.2,22 -456,965,4030,1,1.81,26,45.9375,3,6,male,2008,23.42209053,17,39.8571434,20.19819069,2,2,0,6.297170888,1.209,26.7 -457,967,3240,0,2.16,23,23.125,4,6,male,2008,23.83673477,17,37.2857132,33.13724518,3,2,0,6.565480265,1.219,26.1 -458,970,3920,0,0.38,16,29.1875,2,6,female,2007,21.09619141,10,38,34.15065384,3,2,1,6.757015743,1.253,25 -459,974,3260,0,-0.71,17,11,2,1,female,2007,27.17021751,11,40.2857132,25,3,2,0,6.751540041,1.195,20.4 -460,975,2120,0,-0.1,12,42,2,6,male,2008,17.84651947,14,33.1428566,35.09079742,1,2,1,6.360027379,1.146,20.6 -461,976,3230,0,-0.1,23,31,2,6,male,2007,20.3125,18,38.2857132,21.79825401,2,2,1,6.704996578,1.155,20.4 -462,982,3380,0,-0.46,28,32,2,4,female,2007,29.06877327,20,37,26.87748146,3,2,1,6.477640885,1.25,23.1 -463,984,4140,0,1.27,21,82,3,4,male,2008,28.95899963,15,39,30.44406319,3,2,1,6.015058179,1.28,23.6 -464,987,3548,0,1.38,14,32,3,4,male,2008,26.29172325,9,38.42856979,23.51917839,2,2,0,6.39835729,1.22,26.2 -465,988,3336,0,0.62,21,7,2,4,female,2008,29.76086235,7,40.57143021,24.51643753,3,2,1,6.001368925,1.19,23.2 -466,992,3980,0,2.36,20,3,4,1,male,2008,32.03961563,32,41.42856979,32,3,2,1,6.39002966,1.21,28.5 -467,994,4230,0,2.45,24,0,4,4,male,2009,32.07591248,20,39,31.43362617,2,2,2,6.127310062,1.23,26.4 -468,998,4640,0,1.22,21,15,3,4,female,2008,24.53896523,13,41.57143021,31,3,2,2,7.460643395,1.2,25.3 -469,999,3952,0,2.17,20,11,4,4,male,2007,21.96712112,15,41,36.24452209,3,2,2,7.76739676,1.33,35.3 -470,1002,2820,0,-1.25,18,11,2,1,male,2008,24.72946167,8,38,37,3,1,0,6.469427333,1.21,20.2 -471,1006,3980,0,1.35,21,27,3,4,female,2008,25.61728477,16,41,23.97808266,3,2,0,6.19301848,1.135,19.6 -472,1008,3260,0,1.78,25,37,3,6,female,2007,20.79673004,12,39.1428566,30.05825615,3,2,1,6.888546658,1.24,26.1 -473,1010,3550,0,1.25,26,21,3,6,female,2007,24.50894547,7.5,38.42856979,31.66748428,2,2,1,6.918548939,1.236,27.15 -474,1011,3040,0,2.94,19,34,4,6,male,2007,26.0932752,12,39,36.39866257,2,2,1,6.406684919,1.231,26.7 -475,1012,3620,0,1.06,24,31,3,1,male,2007,25.51020432,10,40.8571434,25.93036461,2,2,0,7.02532512,1.26,25.6 -476,1013,2950,0,-0.39,32,0,2,6,female,2007,24.02380943,18,37.42856979,35.43013382,3,2,0,6.351699749,1.143,21.1 -477,1015,2985,0,0.82,18,22.1875,2,4,female,2008,24.44727898,17,38,25.13538742,3,2,0,6.121720283,1.143,21.3 -478,1018,3140,0,0.58,20,4,2,1,female,2008,25.36937904,10,37.42856979,30,1,2,1,6.417636322,1.197,24.5 -479,1021,3834,0,0.86,26,14,2,4,male,2008,32.87310791,20,40,25,2,2,0,5.702829112,1.21,24.4 -480,1022,4120,0,0.46,26,8,2,4,female,2007,35.85643005,30,40,27.63716888,2,2,2,6.880104951,1.28,23.3 -481,1024,2479,0,-2.98,24,21,1,4,male,2007,25.35154152,13,40,27.05593681,3,2,0,7.186858316,1.24,18.9 -482,1027,3900,0,2.66,20,23,4,4,male,2008,34.60207748,11,39,32,2,2,2,6.46954141,1.36,37.4 -483,1028,4080,0,0.28,26,5,2,4,male,2008,27.51338577,18,39,33.35799026,3,2,1,6.023271732,1.19,22.5 -484,1029,3492,0,1.77,32,8.0625,3,4,female,2007,35.15625,10,40,34.07237625,3,2,2,6.395733516,1.15,24.8 -485,1030,4050,0,1.13,22,26,3,4,female,2008,21.46915054,0,39,36,3,2,2,5.864476386,1.18,24 -486,1031,4040,1,0.37,22,23,2,4,male,2008,26.12861061,21,39.2857132,32.22694016,3,2,1,6.447752681,1.19,22.5 -487,1037,3550,0,-0.89,25,0,2,4,female,2007,23.38435364,13,40,30.8497715,3,2,1,7.014373717,1.25,22 -488,1040,2600,0,-0.6,20,6,2,1,male,2007,34.35274887,8,37.57143021,23,1,2,0,7.143052704,1.26,19.8 -489,1041,3270,1,1.57,25,27,3,6,male,2007,24.67702103,20,38.7142868,31,2,2,1,6.422883869,1.18,23.1 -490,1043,3050,0,1.77,26,38.5,3,4,female,2008,33.38655853,20,41,24.49178123,3,2,0,6.294433037,1.23,28.6 -491,1046,3430,0,-0.32,23,42,2,4,female,2008,28.25699043,8,40,28.03675842,2,2,0,6.496805841,1.21,21.7 -492,1047,3220,0,2.98,20,14,4,1,female,2007,40.33377838,12,40.2857132,27,3,0,0,7.033538672,1.32,38.1 -493,1048,3336,0,1.5,25,33,3,4,male,2008,25.390625,18,39,21.83881187,2,2,0,6.023385809,1.11,21.7 -494,1050,4000,0,0.71,26,25.125,2,4,male,2008,31.60321236,15,41,31.62716866,3,2,1,6.39002966,1.16,22 -495,1051,4022,0,0.99,21,14,2,4,male,2008,26.79493713,18,40.42856979,36,3,2,2,5.494752453,1.19,23.6 -496,1056,3000,0,3.51,20,13,4,6,female,2007,24.93371964,20,39.1428566,36.29383469,3,2,0,6.751540041,1.171,33.2 -497,1057,2540,0,-1.43,27,8,2,4,female,2007,21.5138588,5,36.7142868,31.08881187,3,2,1,6.88569473,1.16,18 -498,1059,4480,1,0.87,26,58,2,1,male,2008,44.84930038,10,40.57143021,18,2,2,0,6.746064339,1.19,23.65 -499,1070,3935,0,0.47,28,33,2,1,female,2007,25.72995186,13,40,28,2,1,0,6.699520876,1.26,27 -500,1071,3090,0,3.01,21,57,4,6,male,2008,24.03440666,26,38.57143021,24.7598114,2,2,1,6.406456765,1.29,35 -501,1073,2500,0,-1.44,33,16.0625,2,6,female,2007,31.99217224,11,37.2857132,33.32446289,2,2,1,7.110198494,1.185,18.8 -502,1075,3030,0,3.46,13,22,4,6,male,2008,29.38475609,8,38.42856979,34.00735855,2,2,2,6.680241843,1.272,36.2 -503,1076,3150,0,0.61,23,66.17500305,2,6,male,2008,21.875,20,40,31.43362617,3,2,1,6.507757244,1.23,22.7 -504,1081,3340,0,2.08,18,14,4,6,female,2008,24.42583656,8,38,32.82308578,3,2,2,6.505019393,1.331,34.9 -505,1084,3290,0,-0.85,25,10,2,1,female,2008,22.40983391,16,40.42856979,24.21164322,1,0,0,6.494182067,1.196,21.8 -506,1085,3380,0,1.44,26,17,3,1,male,2008,27.77777863,13.60000038,40.57143021,29,3,0,0,6.143737166,1.13,28 -507,1087,3210,0,0.58,26,8,2,1,male,2007,34.48846817,10,38.57143021,30,2,2,0,7.030800821,1.165,22.2 -508,1088,3240,0,0.34,25,11,2,1,male,2008,29.35752106,15,40,26,3,2,2,6.655601186,1.144,20.8 -509,1089,3240,0,1.73,30,12,3,4,female,2008,26.39797783,18,38,22.96872139,2,2,1,6.841889117,1.16,25.5 -510,1091,3430,0,0.34,23,36,2,4,male,2008,30.77870178,15,40,26.2746582,3,2,0,6.132785763,1.202,22 -511,1092,3105,0,2.43,17,16,4,1,male,2008,35.3985672,8,37.42856979,36,1,1,2,6.661305042,1.314,33.9 -512,1094,3780,0,0.06,29,41,2,6,male,2007,22.22906113,12,40.8571434,27.69609833,2,2,0,6.932238193,1.214,22.8 -513,1096,3620,0,1.22,31,5,3,1,female,2007,32.9564476,5,41.1428566,24,1,0,1,6.809034908,1.194,25.25 -514,1098,2550,0,0.31,18,44,2,6,male,2008,24.38237381,13,34.1428566,21.23676682,2,2,0,6.269678303,1.189,19.8 -515,1099,3500,0,3.23,19,31.20000076,4,6,female,2008,23.42209053,30,38.42856979,26.02517319,1,2,0,6.485854438,1.23,35.4 -516,1100,3020,0,0.98,25,40,2,6,male,2008,21.90758324,5,38.2857132,28.84805298,3,2,0,6.31884554,1.24,22.3 -517,1101,2590,0,2.89,23,27,4,6,female,2007,26.76494408,3,38.7142868,34.77210236,2,2,1,6.381816108,1.193,31.5 -518,1103,3550,0,1.05,20,19,3,6,male,2008,24.74745369,28,40,33.31299973,2,2,2,6.568218115,1.201,24.3 -519,1104,3220,0,-0.34,20,4,2,1,male,2008,26.44413948,10,36.2857132,31,3,2,1,6.524184349,1.14,21.8 -520,1108,2810,0,2.32,24,36,4,6,male,2008,25.390625,12,37.8571434,32.42286301,3,2,0,6.316107689,1.214,28.5 -521,1109,4000,0,0.89,27,38,2,4,male,2007,30.8248291,10,40,27.02739716,3,2,0,7.315537303,1.33,30 -522,1111,3050,0,-1.19,25,23,2,4,female,2008,26.64359856,15,39,34,3,2,2,6.745950262,1.29,21.5 -523,1112,3730,0,-0.06,32,31,2,4,female,2007,26.36560249,12,40.1428566,37.97967911,3,2,1,6.973305955,1.26,24.3 -524,1113,3680,0,-0.07,31,57,2,4,male,2007,30.85399437,15,41,28.86894989,2,2,0,6.822724162,1.3,28 -525,1114,3820,0,1.5,18,33,3,4,female,2008,34.5776329,20,40,30.74178123,3,2,2,6.149212868,1.09,21.5 -526,1118,3140,1,-1.38,13,0,2,1,female,2008,24.93371964,13,40.57143021,27,1,0,0,6.488820443,1.135,18.8 -527,1119,3392,0,0.07,19,61,2,4,female,2007,25.25951576,10,40,23.92762566,2,2,0,7.011635866,1.22,23.1 -528,1123,3980,0,-0.02,24,39,2,6,male,2008,24.38237381,17,38,42.14476776,3,2,1,6.491330139,1.197,23.6 -529,1124,4022,1,1.74,22,8,3,4,female,2008,26.6193428,16,41,31.66118813,3,2,2,6.19028063,1.27,29.2 -530,1125,3720,1,0.34,17,22,2,1,female,2008,18.49569511,24,40.7142868,26,1,2,2,6.203969884,1.054,17.6 -531,1128,3600,0,1.17,24,42,3,4,female,2008,28.39372635,20,39,25.61735153,3,2,0,6.521560575,1.316,23.6 -532,1131,3500,0,1.68,11,31.125,3,6,female,2008,21.93634796,10,40,41.70705795,3,2,1,6.39835729,1.281,29.7 -533,1135,3300,0,-0.68,23,12.0625,2,6,male,2008,19.13265228,19,38.57143021,24.58607292,2,2,1,6.620009126,1.25,22.7 -534,1136,3040,0,-0.32,29,40,2,1,female,2007,26.03270149,9,39,34,3,2,0,6.773442847,1.21,23.9 -535,1140,3180,0,1.17,15,13,3,4,male,2009,30.4866848,20,40,21.9002285,2,2,1,6.031485284,1.2,25 -536,1141,3210,0,0.6,18,26.29999924,2,6,female,2008,24.91349411,7,40.42856979,31.94693565,2,2,1,6.5134611,1.263,26.2 -537,1142,2740,0,-1.18,16,11,2,1,male,2008,21.95324516,17,38.42856979,28,2,1,0,6.570955966,1.16,18.6 -538,1145,2960,0,-1.51,15,33,2,1,female,2009,24.1307888,20,41.42856979,21,1,0,0,6.502281542,1.181,18.2 -539,1148,3460,0,-0.97,25,11,2,1,female,2007,23.63755035,12,41.7142868,29,3,2,1,6.696668948,1.183,19.5 -540,1149,2800,0,-1.99,23,1.0625,2,6,male,2007,24.44180298,9,37.57143021,32.28938293,3,2,2,7.028177048,1.196,18 -541,1151,2980,0,1.78,18,31.375,3,6,female,2008,29.37239647,15,38.1428566,33.81074524,3,2,2,6.560004563,1.205,27.5 -542,1153,3620,0,-0.42,26,8,2,1,male,2008,24.83695602,20,39.2857132,41,3,0,0,6.573693817,1.245,23.6 -543,1154,3200,0,1.61,20,28,3,1,male,2007,29.90770721,20,37.8571434,18,1,2,0,6.841889117,1.276,36.6 -544,1155,2770,0,-1.33,14,55,2,6,male,2008,24.91349411,25,37.8571434,24.37689209,2,2,0,6.116358658,1.132,17.6 -545,1156,3000,0,1.19,27,25,3,6,female,2007,22.03856659,7,38.7142868,34.629776,3,2,1,6.847250742,1.201,27.6 -546,1160,3100,0,0.58,27,23.0625,2,6,male,2008,21.484375,8,39.8571434,27.86525726,2,2,1,6.598334474,1.19,25.1 -547,1161,3150,0,1.85,18,24,3,6,female,2008,24.60973358,25,39,24.27792931,2,2,0,6.622975131,1.197,26.6 -548,1162,2860,0,-1.1,22,22,2,6,male,2008,20.56933022,12,38.42856979,26.29628181,3,2,0,6.46954141,1.154,24.9 -549,1164,3200,0,-0.01,19,27,2,6,male,2007,21.875,12,38.8571434,24.80669594,2,2,1,6.439310974,1.124,19.4 -550,1167,2820,0,2.97,13,13,4,6,female,2007,28.515625,3,38,37.89798737,2,2,2,6.324435318,1.2,31.2 -551,1169,3340,0,1.08,24,40,3,6,female,2007,22.38631439,12,40.57143021,28,3,2,0,6.499771846,1.216,25.6 -552,1170,2720,1,0.96,17,8,2,1,male,2007,31.08959579,11,38.7142868,24,2,0,0,6.713096053,1.243,26.1 -553,1171,3888,0,-0.77,20,32,2,4,female,2008,31.14186859,20,40,23.28949738,1,2,0,6.428473648,1.29,23.6 -554,1172,2780,0,-0.1,21,26,2,1,female,2008,28.13590431,13,38,39.42505264,1,0,2,5.494752453,1.188,21.3 -555,1176,4010,0,0.91,17,14,2,1,male,2008,27.47711754,8,38.2857132,34,2,0,0,6.450262377,1.166,22.75 -556,1183,2760,0,3.31,15,7.0625,4,1,female,2008,33.32134628,15,38.1428566,32.72552872,1,1,2,6.740588638,1.235,34.8 -557,1184,3200,0,-1.01,30,32,2,4,female,2008,26.12861061,13,39,33.12252045,3,2,2,6.275039927,1.14,18 -558,1185,2870,0,-0.1,18,25,2,6,female,2008,21.64412117,6,37.7142868,30.27085686,3,2,2,6.428473648,1.108,20.8 -559,1186,3980,0,0.57,19,28,2,4,male,2008,25.08896065,20,40,28,3,2,0,5.702829112,1.18,22 -560,1187,3810,0,-0.18,24,15,2,1,male,2007,40.33377838,20,41.8571434,28.02190208,3,2,0,7.041752225,1.244,23.6 -561,1190,4093,0,3.31,22,17,4,4,male,2007,36.49376297,20,40,34.08059311,2,2,2,7.028177048,1.26,38.8 -562,1191,3380,0,2.63,15,61.42857361,4,6,male,2008,23.73323822,25,39.8571434,32.23092651,2,2,0,6.477640885,1.305,34.3 -563,1192,3520,1,1.28,23,76,3,1,male,2007,28.02371597,10,37.8571434,22,3,2,1,6.746064339,1.219,25.95 -564,1195,2920,0,0.57,26,11,2,6,male,2007,25.21735764,10,35.8571434,36.56373978,3,2,1,6.390143737,1.213,23.8 -565,1197,3460,0,-0.82,27,18,2,1,male,2008,22.5,9,38,24,1,0,0,6.661305042,1.19,20.3 -566,1202,3670,0,0.49,16,29,2,6,male,2008,28.76397133,8,40,27.63716888,2,2,2,6.453228382,1.232,24.4 -567,1203,4036,1,0.62,27,11,2,4,female,2008,30.85399437,20,40,28.01369858,3,2,1,6.475017112,1.2,23.6 -568,1204,4000,0,1.76,19,15,3,1,male,2008,38.89807129,15,40.42856979,26,3,0,2,6.206707734,1.231,27.5 -569,1206,2860,0,-0.31,24,18,2,6,female,2008,21.54509163,11,39.57143021,29.96986389,3,2,0,6.40942277,1.201,21.4 -570,1207,3690,1,0.15,23,60,2,4,female,2007,30.48780441,18,40,30.93310547,3,2,2,7.101984942,1.23,25.8 -571,1209,2530,0,0.71,17,6,2,6,female,2008,19.23356056,10.5,35.8571434,26.55024147,3,2,1,5.894592745,1.154,21.8 -572,1221,3230,0,2.82,24,68,4,6,male,2008,22.10028959,12,40,31.00820351,3,2,0,6.491330139,1.28,33.8 -573,1222,3280,0,0.19,24,27,2,6,male,2007,23.50780487,18,41.2857132,30.74178123,2,2,2,6.639174082,1.165,21.2 -574,1223,3210,0,-0.46,16,8,2,1,female,2008,25.8745842,6.5,38.2857132,30,2,0,2,6.461213781,1.224,21.9 -575,1224,4250,0,3.42,22,64,4,6,male,2008,21.45328712,20,40,35.11724091,2,2,0,6.647615788,1.247,34.9 -576,1229,4150,0,0.22,24,10,2,4,male,2007,29.06592751,11,39,26.67488098,2,2,0,7.425051335,1.31,27.3 -577,1230,3220,0,0.6,23,22.1875,2,6,female,2008,25.09950066,14,39,28.01796722,3,2,1,6.023271732,1.131,20.9 -578,1231,3260,0,-0.35,19,40,2,1,male,2007,21.35779572,5,39.2857132,27,1,0,2,6.770704997,1.097,21 -579,1232,3510,1,-0.63,12,30.1875,2,6,male,2007,24.44727898,10,35,23.44264603,3,2,0,6.442276979,1.19,21.7 -580,1235,3200,0,-0.7,27,22,2,1,female,2008,32.85969925,8,40.8571434,26,1,0,1,6.469427333,1.133,23.6 -581,1237,3744,0,1.21,28,32,3,4,male,2007,26.67276382,11,40,20.13926888,2,2,2,6.485854438,1.14,20 -582,1238,3220,0,0.15,26,21,2,1,male,2007,29.64782333,5,38.42856979,29,1,1,2,6.915811088,1.232,22.2 -583,1243,3660,0,-0.22,18,5,2,1,female,2008,20.19557762,12,38.8571434,35,3,2,1,6.507871321,1.183,20.95 -584,1245,3270,0,0.44,12,14,2,6,male,2008,27.14158249,15,37.42856979,36.61153793,2,2,1,6.275039927,1.209,26.9 -585,1248,3080,0,-0.58,19,48.4375,2,6,female,2007,20.703125,26,38.1428566,40.97868729,3,2,1,6.411932466,1.147,19 -586,1251,2930,0,0.22,24,26.53333282,2,6,male,2008,23.49523735,28,38.8571434,30.88671684,3,2,0,6.746064339,1.11,19.4 -587,1253,3109,1,-1.25,9,93,2,4,female,2008,24.76756668,15,40,24.77739716,2,2,1,5.894592745,1.11,16.7 -588,1254,3420,0,-1.09,12,18,2,1,female,2008,32.28305817,11,39.7142868,34,1,0,2,6.447752681,1.149,19.5 -589,1256,3360,0,0.25,12,40,2,1,female,2007,25.74154663,10,40.2857132,19,1,0,0,6.428587725,1.19,22.7 -590,1262,3360,0,-0.82,25,16,2,6,female,2007,24.39105884,16,39.7142868,38.39938354,3,2,1,6.672142368,1.147,18.6 -591,1263,3390,0,-0.2,16,25,2,6,female,2007,22.9481163,10,42,35,3,2,1,6.507757244,1.19,21.5 -592,1264,3080,0,0.14,24,22,2,6,male,2008,22.15102196,7,38.1428566,26.84968376,2,2,2,5.437257586,1.193,22.2 -593,1265,3880,0,-0.36,16,3,2,1,male,2008,35.08734131,20,40,39,1,0,2,6.143737166,1.135,19.15 -594,1267,3480,0,0.87,21,31,2,6,female,2007,25.71166229,0,39.57143021,23.31963539,3,2,0,6.420374173,1.223,25.2 -595,1271,4420,0,0.58,15,4,2,1,male,2007,28.93507385,9,41.1428566,24,2,0,1,6.694045175,1.227,24.5 -596,1272,2770,0,-0.52,25,30,2,4,male,2008,25.59373665,14,40,24.69794464,3,2,0,6.001368925,1.119,19.7 -597,1275,4660,1,2.35,17,44,4,1,male,2008,41.65205383,25.39999962,41.7142868,36,3,2,1,6.340748346,1.24,29.85 -598,1278,3704,0,0.03,26,48,2,4,male,2008,19.19530296,17,40,27.45342445,3,2,0,6.184804928,1.21,22.5 -599,1280,3520,0,-0.65,31,9,2,1,female,2007,32.85969925,5,41,34,3,2,2,6.822724162,1.22,21.4 -600,1281,2240,0,-0.1,34,6,2,1,female,2007,29.2481308,3,33.1428566,32,3,0,0,6.984257358,1.19,21.6 -601,1284,3240,0,-0.2,22,57,2,1,female,2007,35.8984375,10,38.2857132,37,2,2,0,6.863791923,1.184,21.1 -602,1288,3320,0,-0.26,12,21,2,1,female,2008,21.167696,10,40,26,3,1,0,6.023385809,1.247,23.2 -603,1293,2540,0,-0.43,21,14,2,6,female,2007,22.49135017,8,38,30.09611893,2,2,0,6.507757244,1.211,22.7 -604,1294,3843,0,0.01,22,43,2,4,male,2007,29.70564461,27,40,28.61621094,2,2,2,6.882842802,1.2,22.2 -605,1297,2900,0,1.94,31,34.4375,3,6,female,2008,33.56401443,17,40.42856979,32.15058136,2,2,1,6.809148985,1.234,29.7 -606,1299,4068,1,1.04,22,13,3,4,male,2008,27.37966537,20,41.2857132,22.03127861,3,2,2,6.497033995,1.25,26.5 -607,1301,3580,0,0.48,28,0,2,1,female,2008,23.52548981,5,40.7142868,36,3,2,2,6.401209217,1.254,25.35 \ No newline at end of file diff --git a/tests/testthat/data_files/GAMLSS/gamlss1.rda b/tests/testthat/data_files/GAMLSS/gamlss1.rda deleted file mode 100644 index d0b27439..00000000 Binary files a/tests/testthat/data_files/GAMLSS/gamlss1.rda and /dev/null differ diff --git a/tests/testthat/data_files/GAMLSS/gamlss2.csv b/tests/testthat/data_files/GAMLSS/gamlss2.csv deleted file mode 100644 index 08042799..00000000 --- a/tests/testthat/data_files/GAMLSS/gamlss2.csv +++ /dev/null @@ -1,497 +0,0 @@ -rowID,ID,e3_bw,hs_asthma,hs_zbmi_who,hs_correct_raven,hs_Gen_Tot,hs_bmi_c_cat,h_cohort,e3_sex_None,e3_yearbir_None,h_mbmi_None,hs_wgtgain_None,e3_gac_None,h_age_None,h_edumc_None,h_native_None,h_parity_None,hs_child_age_None,hs_c_height_None,hs_c_weight_None -1,5,3950,0,0.98,19,18,2,3,male,2005,22.15102196,20,43,20.86515999,1,2,0,9.451174994,1.37,34 -2,12,3660,0,2.71,24,19,4,3,male,2006,23.73866272,18,39,37.59890366,3,2,1,8.637805156,1.33,48 -3,19,3870,0,-0.46,34,15,2,5,female,2005,21.09375,9,41.1428566,32,3,2,0,9.505817933,1.37,28.5 -4,21,3710,0,1.4,28,33.4375,3,3,female,2006,28.47988701,22,40.57143021,32.07939911,1,2,1,8.547684235,1.267,30.7 -5,23,3040,0,-0.52,25,41,2,3,male,2006,19.56295586,13,41,25.39356613,2,2,0,8.479009811,1.27,24.4 -6,25,2490,0,1.8,34,32,3,3,female,2005,25.09950066,17,39,40.08761215,2,2,1,9.11430527,1.405,42.1 -7,26,3590,0,0.18,29,60,2,5,female,2005,26.5625,14,41,29.45616531,3,2,1,8.703627652,1.395,31.4 -8,27,2943,0,1.64,28,18,3,5,female,2006,30.48668503,15,41.1428566,40.16693878,3,2,2,8.629591604,1.303,33.8 -9,28,3590,0,-0.23,25,4,2,5,male,2006,19.13265306,20,39.57143021,28,3,2,0,8.68434862,1.243,24.1 -10,32,3060,0,0.57,31,16,2,5,male,2007,23.91883029,11,35,34,3,2,0,8.03559206,1.314,28.8 -11,34,3428,0,1.78,25,17,3,5,female,2006,26.67487526,15,43.57143021,23.55920601,2,2,0,8.624344057,1.297,36.1 -12,35,3370,0,-1.63,33,24,2,5,male,2006,20.76124567,10,38.57143021,37,3,2,1,8.314852841,1.34,23.6 -13,36,3620,0,-0.29,32,29,2,5,male,2005,24.09297052,20,39.42856979,31,2,0,2,8.884325804,1.393,30.2 -14,37,3850,0,0.77,30,2,2,5,female,2006,24.91349481,20,39.57143021,31,3,2,1,8.484713666,1.318,26.1 -15,39,3460,0,2.36,31,6,4,5,female,2005,30.79338244,8,39,34,2,0,1,8.695300023,1.367,36.6 -16,41,2880,0,1.08,27,29,3,3,male,2005,24.21875,10,40,29.62354469,1,2,0,9.037645448,1.356,27.4 -17,42,2660,0,0.01,33,19,2,3,male,2005,22.98742676,9,39,31.80834961,3,2,0,9.075975359,1.24,28.6 -18,43,3242,0,3.29,32,18.375,4,3,male,2005,35.62901688,0,41.2857132,33.5222435,3,2,0,9.703057267,1.425,54.4 -19,44,3460,0,-1.91,26,51,2,5,female,2006,19.1953028,12,40,32,3,2,1,8.446383755,1.225,23.3 -20,47,3300,0,-0.84,27,66,2,3,male,2005,24.55775261,10,39.42856979,21.44284821,1,2,0,9.075975359,1.249,21.8 -21,50,3764,0,-0.58,33,11,2,5,male,2006,18.82711104,14,41.42856979,33,2,2,2,8.54471823,1.252,23.6 -22,56,3290,0,-0.9,27,29.25,2,5,female,2007,21.71925011,6,35.8571434,40,3,2,1,6.918548939,1.213,21.3 -23,60,3150,0,0.94,30,16,2,3,male,2006,34.20582962,7,39,32.11391068,3,2,0,7.299110198,1.311,29.3 -24,62,1916,0,-1.07,30,0,2,5,male,2006,28.57796068,20,32.42856979,31,2,2,0,8.555897787,1.3,24.4 -25,69,3328,0,-0.26,35,29.3125,2,5,male,2005,23.14049587,15,38.1428566,40,3,0,1,7.93155373,1.297,26.1 -26,71,4204,0,-1,32,0,2,5,male,2006,18.8267935,18,41.8571434,30,3,0,0,8.413529546,1.445,26.1 -27,74,3490,1,0.13,33,3,2,5,male,2005,25.20920136,12,39.1428566,34,3,0,1,8.684462697,1.34,29 -28,78,3185,1,2.21,25,27,4,3,female,2005,36.35734177,12,39.42856979,16,2,1,0,8.955624002,1.37,41.6 -29,79,3360,0,2.94,32,47,4,3,male,2005,22.65625,15,39.7142868,33.4373703,2,2,1,9.032169747,1.343,48.6 -30,80,3620,0,1.08,24,2,3,5,male,2006,24.77209671,7,40,35,3,2,2,8.052019165,1.307,30.8 -31,82,4122,0,0.39,29,4,2,5,female,2006,19.72318339,15,40,38.23682404,3,0,1,9.582591832,1.355,30.7 -32,88,3080,0,2.42,28,25,4,3,male,2006,22.265625,10,38.8571434,38.0369606,1,2,1,8.654460415,1.34,38.1 -33,89,3230,0,-1.52,32,14,2,5,female,2005,18.68512111,25,40.7142868,26,2,0,0,8.583048141,1.38,25.9 -34,92,3680,0,-0.88,22,6,2,3,female,2005,17.63085365,20,40.1428566,35,1,2,0,9.215719827,1.315,25.4 -35,96,2010,0,-1.62,29,40.3125,2,3,female,2005,20.47826576,7.5,36.7142868,34.11635971,2,2,1,9.505817933,1.264,21.6 -36,100,3430,0,0.01,27,9,2,3,female,2006,23.30668068,9,41.57143021,32.90349197,3,2,1,8.164271047,1.34,28.3 -37,106,3760,0,0.55,31,13,2,5,female,2006,26.0932752,25,39.42856979,34,3,2,0,8.539470682,1.359,30 -38,109,2980,0,-0.42,26,16.1875,2,5,female,2006,18.68512111,12,40.7142868,29,2,2,1,8.824093087,1.27,22.6 -39,111,3400,0,-0.53,33,25,2,3,male,2005,32.8125,9,38.8571434,28.44353104,3,2,1,9.300365047,1.248,23.9 -40,112,3726,0,1.38,25,5.125,3,5,female,2006,18.81892395,15,40.1428566,33,2,2,1,8.167122975,1.38,36.7 -41,113,3242,0,-0.09,30,8,2,5,male,2005,19.47340584,12,41,35,3,2,1,8.829568789,1.3,27.1 -42,120,2575,0,1.28,34,14,3,3,male,2006,21.33821106,30,41.42856979,26.27789116,1,2,0,9.336185261,1.451,29.4 -43,121,3030,0,1.1,32,27,3,3,female,2005,24.9107666,5,41.1428566,30.01231956,2,2,0,8.769336071,1.41,32.9 -44,122,3320,0,0.65,25,15.0625,2,5,male,2006,20.2020202,18,41.1428566,32.36139679,3,2,0,8.271161305,1.39,33 -45,123,4472,0,-0.78,34,26.1875,2,5,female,2006,23.50780533,9,40,37,3,2,1,8.082135524,1.361,26 -46,124,3120,0,-0.26,25,8,2,3,male,2005,21.23057175,11,40.42856979,37,3,2,0,8.539470682,1.229,23.2 -47,125,4022,0,0.62,33,20.0625,2,5,female,2005,24.47709846,11,41.8571434,34,3,2,0,8.950034223,1.328,31.2 -48,128,3848,0,0.24,33,5,2,5,male,2005,19.3337307,11,41,33,2,0,1,8.741957563,1.256,23.2 -49,129,3952,0,0.11,31,2,2,5,male,2006,18.40134298,14,41.8571434,36,3,2,2,8.290212183,1.25,25 -50,131,1564,0,-1.1,32,26,2,5,female,2005,23.01117686,9,34.8571434,37.58795166,3,2,0,8.665297741,1.234,21.6 -51,135,3534,0,0.89,31,21,2,5,female,2006,20.56932966,12,39.1428566,29,3,2,1,8.334017796,1.4,32.6 -52,141,3460,0,1.97,25,7,3,3,female,2006,20.81165504,13,40.57143021,27,2,2,1,8.703741729,1.338,37.8 -53,144,3530,1,1.67,21,38.25,3,3,male,2006,26.83518028,11,40.42856979,39.42505264,3,2,1,8.194387406,1.336,33.9 -54,145,3650,0,-0.4,30,16,2,5,male,2006,21.20310523,12,41,33.12252045,3,2,2,8.492927219,1.429,25.5 -55,146,2750,0,-0.23,26,15.0625,2,3,female,2005,22.98190175,13,39.57143021,36.30390167,3,2,1,9.215719827,1.369,30.2 -56,149,3320,0,-1.38,30,9,2,5,female,2005,18.49649888,7,41,33,3,2,1,9.015742642,1.4,23.3 -57,151,3830,0,0.39,34,6,2,3,female,2005,34.66265106,18,41.2857132,39.09103394,1,2,1,8.777549624,1.366,30 -58,152,3720,0,-0.85,35,27.25,2,5,female,2006,26.953125,10,41.7142868,18.9347477,3,0,0,8.249144422,1.34,23.6 -59,154,3872,0,0.15,27,16.1875,2,5,male,2005,22.265625,12,41.1428566,35,3,0,1,8.911704312,1.355,30.5 -60,155,3310,0,2.28,33,25,4,3,female,2005,36.328125,9,40.42856979,32.87063599,1,2,0,9.618183892,1.409,47.4 -61,160,3400,0,1.17,28,18,3,3,female,2007,23.52941132,11,40,28.21628952,3,2,0,8.780173397,1.277,28.1 -62,162,2600,0,-0.93,34,18,2,5,female,2005,19.0194421,12,39.57143021,33,3,0,0,8.862422998,1.303,24.1 -63,164,3120,1,-1.38,33,8,2,5,male,2007,16.8525225,12,42,34,3,2,0,8.03559206,1.314,24.1 -64,165,2700,0,-0.08,32,10,2,3,male,2006,23.33546638,10,39.1428566,35.86858368,1,2,0,7.969883641,1.23,24.2 -65,166,3580,0,0.33,34,5,2,5,male,2006,20.93663912,12,40,33,3,2,0,8.796600502,1.32,28.8 -66,170,3900,0,1.74,30,17,3,3,female,2007,24.38652611,9,40.1428566,31.85489464,3,2,0,8.257357974,1.365,38.4 -67,171,3600,0,-0.5,32,18,2,3,male,2006,30.09143257,12,41.57143021,31.96988297,3,2,1,8.889915583,1.316,32 -68,175,3430,0,-0.21,34,40,2,3,female,2006,23.01037979,12,40.57143021,35.62765121,2,2,0,8.295801962,1.233,25.1 -69,179,3100,0,0.41,34,31.0625,2,3,female,2005,19.67516708,10,37.8571434,27.49349785,2,2,1,9.319758157,1.34,30.7 -70,180,3988,0,0.58,29,9,2,5,male,2006,24.9107666,28,41.42856979,24,2,2,0,8.610426648,1.39,33.4 -71,187,3220,0,0.14,34,12,2,3,female,2005,23.18339157,11,40,30.77618027,1,2,0,8.763746292,1.345,29.7 -72,188,3490,0,0.45,29,23.125,2,5,male,2007,25.09950066,5,40,30,3,2,1,8.153319644,1.359,30.6 -73,192,3100,0,1.36,26,10.125,3,3,male,2005,23.42209053,12,40.57143021,31,2,2,0,8.763746292,1.267,30.1 -74,193,4400,0,1.57,29,41,3,3,male,2005,21.30394936,23,39.2857132,37.58795166,2,2,0,9.130846452,1.35,34.9 -75,202,3155,0,-1.32,22,2.0625,2,5,male,2006,24.56747405,24,39.1428566,32,3,2,0,8.733744011,1.37,26.6 -76,205,4020,0,-0.89,32,0,2,5,male,2005,22.14532872,11,39.8571434,29,2,2,1,9.470225873,1.434,28.5 -77,209,3795,0,1.16,29,15.125,3,5,female,2006,36.80572128,15,40.7142868,19.06912994,3,2,0,8.07118412,1.414,32.9 -78,210,3430,0,0.08,34,6,2,3,female,2005,20.17325211,16,39.57143021,32.73921967,2,2,1,9.256673511,1.445,35.3 -79,215,3756,1,-0.1,30,5.0625,2,5,male,2006,21.91358025,15,39.7142868,37,3,2,1,8.150581793,1.28,24.1 -80,217,3330,0,0.28,31,3,2,5,male,2005,25.71166229,15,39.57143021,33,3,2,0,9.188227242,1.412,31.4 -81,221,3570,0,0.58,33,3,2,3,female,2005,20.19509315,13,40.2857132,27.69609833,2,1,0,9.451174994,1.34,30.7 -82,222,2980,0,-0.75,28,40.5625,2,3,male,2006,17.71541977,5,40.42856979,24.98562622,1,2,1,9.067761807,1.237,22.7 -83,227,3290,0,1.97,29,5,3,3,male,2005,24,13,40,34.97056961,1,2,1,8.681838923,1.34,35 -84,232,3645,0,0.44,26,8,2,5,female,2006,23.30668005,8,40.8571434,35,3,2,1,8.350558978,1.254,29.8 -85,235,3320,0,-0.91,28,14,2,3,female,2006,23.66524506,18,42.57143021,39.1457901,3,2,1,8.616130504,1.3,24.4 -86,236,3790,0,-0.22,36,23,2,5,male,2005,22.40817899,25,41.57143021,33.74674988,3,2,1,9.440109514,1.349,29.1 -87,240,3450,0,0.51,31,12,2,5,male,2006,30.8112461,8,39.57143021,34.42502213,3,2,0,8.689824321,1.38,32 -88,245,3180,0,-1.29,25,12.125,2,5,male,2005,18.02595738,10,39.57143021,36,3,2,0,9.284052019,1.325,25.3 -89,248,2780,0,0.04,35,25.125,2,3,male,2005,24.74093819,12,38.57143021,32.9500351,3,2,1,9.599018937,1.417,32.8 -90,249,3720,0,-0.9,27,15,2,5,male,2005,17.99816345,12,42.7142868,32,3,2,0,9.524868811,1.432,27.4 -91,250,3158,0,-0.94,34,18,2,5,male,2006,34.15365955,8,37.7142868,40,3,2,0,8.32318047,1.383,27.8 -92,251,2973,0,-0.25,32,9.125,2,5,female,2006,25.71100827,28,38.42856979,40,3,0,0,8.112365959,1.205,22.2 -93,254,3568,0,-0.37,29,16.0625,2,5,female,2006,20.42941836,16,40.7142868,39,3,2,0,8.265571526,1.29,24.7 -94,264,3150,0,-0.28,32,14,2,3,male,2005,22.03856659,10,42.2857132,30.06981468,3,2,0,8.19701118,1.41,33.3 -95,266,2570,0,2.12,24,52,4,3,female,2006,23.5303669,18,37.1428566,27.42778969,1,2,0,8.290326261,1.34,37.6 -96,268,3848,0,1.13,32,4,3,5,female,2005,20.76124567,13,41.57143021,36,3,0,1,8.889801506,1.309,31.9 -97,270,3594,0,1.14,36,28,3,5,female,2006,20.9566075,12,40,33,3,2,1,8.426990646,1.311,30.8 -98,272,3200,0,0.65,31,15,2,3,female,2006,22.77318573,20,41.57143021,35,2,2,0,8.353296829,1.37,32.6 -99,275,3330,0,-0.39,29,5,2,5,female,2006,21.0076678,12,40.57143021,31,2,2,0,8.459958932,1.438,31.4 -100,277,3870,0,0.53,28,11.125,2,5,male,2006,22.49134948,12,40,33,3,2,1,8.479237965,1.358,30.9 -101,279,2415,0,2.37,31,54,4,3,female,2005,26.98962021,14,34.2857132,34.96783066,2,2,2,8.736595939,1.383,43.1 -102,280,4230,0,-0.3,34,15,2,5,male,2006,23.33546614,18,40.8571434,26,2,2,0,8.709103354,1.32,27 -103,282,3550,0,0.51,33,16,2,5,male,2005,25.15589523,17,40.1428566,30,3,0,0,9.215719827,1.365,37.2 -104,284,2820,1,2.36,34,61,4,3,female,2006,29.7577858,10,39.42856979,26.67488098,1,2,1,9.582591832,1.387,45.7 -105,285,3680,0,3.19,30,69.75,4,3,male,2006,37.0447464,25,41.8571434,32.81314087,2,2,0,9.949463838,1.445,56.1 -106,290,4330,0,0.29,35,11.0625,2,5,male,2006,22.03172568,10,41.57143021,30,3,2,0,9.158110883,1.373,31.3 -107,292,3490,0,1.97,28,54,3,3,male,2005,28.04037857,10,40,29.57426453,2,2,1,9.371777321,1.315,36.3 -108,294,2410,0,-0.21,35,43,2,3,female,2005,24.16716194,10,40.8571434,35.42231369,3,2,0,8.980150582,1.361,29.1 -109,295,3032,0,1,33,24,3,5,male,2005,22.40587695,20,40.2857132,31,2,2,1,9.180013689,1.343,32.9 -110,297,3080,0,2.7,26,15,4,3,male,2006,38.93480301,9,37.8571434,35.34291458,2,2,0,8.79945243,1.312,39.1 -111,298,4378,0,1.11,32,12.1875,3,5,male,2007,22.64737696,12.5,40.2857132,32,3,2,0,8.005475702,1.432,32.8 -112,299,3202,0,2.61,33,37.3125,4,3,male,2005,35.2955513,0,40.1428566,28.7638607,2,2,0,9.618183892,1.432,48.3 -113,300,3360,0,0.75,31,32.25,2,5,female,2006,25.05930703,24,40,28,2,2,2,9.582591832,1.38,33.1 -114,301,4670,0,2.44,27,62,4,5,male,2005,24.22145329,8,42.1428566,24.58607292,2,2,0,8.747433265,1.48,39.1 -115,302,3160,0,2.16,26,49,4,3,male,2006,19.4674015,14,41.42856979,27.99033165,2,2,0,8.941820671,1.35,40.3 -116,303,3200,1,1.27,26,17.0625,3,5,female,2005,21.06674327,11,37.1428566,39,3,2,2,8.418777093,1.407,36.7 -117,305,3606,0,0.07,30,22.25,2,5,male,2007,22.4996371,10,39.42856979,32,3,2,0,8.150581793,1.3,25.2 -118,309,3370,0,1.01,19,58.5,3,3,male,2006,25.09950066,12,41.1428566,30.87200546,1,2,0,8.804928131,1.33,31.6 -119,311,3850,0,-0.36,29,9,2,5,male,2005,20.38156971,15,38.7142868,31,3,2,1,8.848733744,1.322,27 -120,316,3140,0,-0.14,23,9,2,5,female,2006,20.30741221,20,41.2857132,36.31040573,3,2,1,7.770020534,1.23,25.2 -121,317,3916,0,-0.73,34,20.1875,2,5,female,2006,25.60553633,12,41.8571434,30,3,2,0,8.290326261,1.272,23.6 -122,319,3084,0,0.1,32,13,2,5,female,2006,25.6543724,27,39,26,3,2,0,8.353296829,1.232,26.6 -123,321,3970,0,0.96,24,60,2,3,male,2006,25.76571274,10,38.7142868,36.22998047,3,2,0,7.780971937,1.329,32.2 -124,323,3862,0,1.47,33,10.25,3,5,male,2006,25.21735858,10,39.8571434,33,3,2,1,8.32318047,1.326,32.8 -125,325,3280,0,1.29,31,45,3,3,female,2005,20.19557762,20,41.42856979,38.23682404,1,2,0,9.270476842,1.359,35.4 -126,327,4540,0,-0.68,24,24,2,5,male,2005,26.4815197,19,41.2857132,24,2,0,0,8.944558522,1.333,26.7 -127,330,3608,0,0.02,34,21,2,5,female,2005,24.15881797,18,39.57143021,34.42502213,3,2,1,7.93155373,1.339,31.6 -128,332,3058,1,0.68,31,13.125,2,5,male,2006,26.6727633,17,37.42856979,32,3,0,0,8.06844627,1.33,27 -129,336,3722,0,2.48,26,120,4,3,female,2006,19.83471107,10,41,32.62696838,2,2,1,8.917180014,1.39,44.1 -130,338,3250,1,0.14,32,24.3125,2,5,female,2006,20.96436059,25,40.7142868,30,3,2,1,8.054871093,1.225,24 -131,339,3785,0,1.56,32,17.5,3,5,male,2006,23.83673469,10,40.7142868,28,3,2,0,8.158795346,1.451,39.4 -132,344,3860,0,1.77,32,57,3,3,female,2005,22.3132782,17,41.8571434,28.0834465,2,2,0,8.426990646,1.395,36.7 -133,346,3620,0,1.08,29,9.0625,3,3,male,2006,17.85651779,17,37.1428566,43.50547791,1,0,1,7.299110198,1.374,37.6 -134,347,3154,0,-0.58,33,59.375,2,5,female,2006,22.5710475,13,39.42856979,31,3,2,2,8.153433721,1.261,23.5 -135,348,3822,0,-1.11,33,28.0625,2,5,male,2006,24.56747405,15,42.2857132,29,3,2,0,8.06844627,1.232,21.7 -136,350,3608,0,-0.07,34,5.0625,2,5,female,2006,22.05805119,8,40.2857132,30,3,2,1,8.221765914,1.392,23.6 -137,352,2414,1,2.8,30,13,4,5,male,2006,28.93518519,11,35.42856979,36,3,0,0,8.301277664,1.303,38.1 -138,356,3454,0,-0.17,30,28.4375,2,5,female,2006,19.48696145,17,42.7142868,33.10335541,3,2,0,8.235569245,1.214,22.8 -139,357,3010,0,-0.08,32,29,2,3,male,2006,21.54509163,20,40.8571434,34.94045258,3,2,0,8.134154689,1.25,24.4 -140,362,3220,0,2.29,26,16.125,4,3,female,2006,26.29172325,13,42.1428566,31.16221809,3,2,0,8.416267397,1.29,33.3 -141,364,3490,0,1.06,34,1,3,5,female,2006,22.27530992,16,38.42856979,30,3,0,0,8.273899156,1.366,33.7 -142,365,3070,0,0.55,32,25.375,2,3,female,2005,22.1002903,17,41.42856979,30.6365509,3,2,0,9.683892311,1.334,31.4 -143,368,3675,0,0.16,28,17.125,2,5,female,2006,22.98190175,8.5,40,37,3,2,0,8.082135524,1.292,26.8 -144,369,2540,0,-0.5,29,5,2,3,female,2006,22.49135017,8,40,40.08761215,3,1,0,8.536504677,1.295,25.6 -145,370,3890,0,0.45,20,17,2,5,male,2006,17.99307958,21,40.57143021,37,3,2,1,8.167008898,1.416,33.1 -146,371,3882,0,-0.81,26,8,2,5,male,2006,20.47826661,15,41.7142868,30,3,2,0,8.125941136,1.35,27.1 -147,375,3180,0,0.79,26,48.375,2,3,male,2006,22.30814934,9,40,38.62559891,3,2,1,8.547684235,1.46,36.9 -148,377,3080,0,-0.37,35,20,2,3,male,2005,28.22838593,5,39.42856979,39.09650803,1,2,2,9.429272188,1.367,29.2 -149,378,3970,0,-0.03,27,47.3125,2,3,female,2005,20.70081711,17,41.42856979,24.11225128,3,2,0,8.736595939,1.328,28.8 -150,382,2550,0,-0.37,30,48.375,2,3,male,2006,18.49548531,18,38.57143021,28.32854271,3,2,0,7.556354095,1.26,21.7 -151,383,1757,0,-0.03,30,9.0625,2,5,male,2006,22.49134948,13,32.1428566,33,3,0,0,8.750285193,1.283,26.2 -152,384,3280,0,0.92,29,10.1875,2,3,female,2005,23.38435364,14,40,32.74195862,1,2,0,9.251311887,1.355,32.4 -153,385,3000,0,2.49,28,33.3125,4,3,male,2005,25.33333397,13,38.2857132,28.83059311,2,2,1,8.810403833,1.352,34.8 -154,388,3880,0,1.44,33,5.125,3,5,female,2007,21.33821064,24,40.42856979,33,2,2,2,8.161533196,1.262,30.2 -155,389,3475,0,0.72,32,55,2,3,male,2006,26.17519379,18,40.57143021,33.2840538,1,2,0,8.139744467,1.392,30.5 -156,390,4090,0,0.35,27,23.25,2,3,female,2006,27.29322433,21,41.7142868,27.38672066,1,2,0,8.988364134,1.33,29.7 -157,394,3480,0,0.16,28,49,2,3,male,2005,23.4375,14,40.1428566,31.46064377,1,1,0,8.84337212,1.312,28 -158,395,3242,0,0.47,24,4,2,5,male,2007,22.14532872,7,41.1428566,35.075737,3,2,1,6.921172713,1.25,28.2 -159,396,2780,0,-0.14,30,8,2,3,female,2006,21.07719612,8,38.42856979,31,2,2,1,8.032854209,1.215,25.7 -160,401,3940,1,0.86,25,36,2,5,male,2006,20.51913409,9,37.8571434,29,3,2,1,8.262833676,1.348,31.4 -161,403,3600,0,0.6,35,8,2,5,male,2006,20.390625,3,39.7142868,34,3,2,0,8.402578143,1.323,29.8 -162,404,3810,0,1.49,32,59.375,3,5,male,2006,27.7767067,14,40.8571434,32.90349197,3,2,2,8.657198266,1.39,37.6 -163,405,3608,0,-0.45,24,29.25,2,5,female,2006,22.40817899,20,39.1428566,33,3,2,1,8.28758841,1.313,25.9 -164,407,3550,0,2.75,32,20,4,3,male,2005,39.78286743,11,40.8571434,30.26146507,2,2,0,9.037645448,1.343,49 -165,411,2840,0,-1.11,34,11,2,5,male,2005,19.77769867,9,38,32,3,2,1,8.720054757,1.26,22.9 -166,412,3875,0,-0.89,27,13,2,3,male,2006,20.34279823,12,41.7142868,34.19028091,3,2,1,7.556354095,1.3,24.4 -167,413,3970,0,0.92,31,48.375,2,3,male,2005,24.67702103,8,39.8571434,32.46543503,2,2,1,9.11430527,1.325,31.8 -168,416,4000,0,-1.08,34,17.125,2,5,male,2006,36.80572128,10,41.7142868,32.60232544,3,0,1,8.627081907,1.375,27.3 -169,417,2890,0,0.24,28,7,2,3,female,2005,20.19509315,7,40,32.36139679,2,2,0,9.185489391,1.305,22.2 -170,439,4230,0,-0.06,31,21,2,5,male,2005,20.47826661,14,42.7142868,39,3,0,0,9.065023956,1.366,29.8 -171,442,3200,0,2.78,27,41.5625,4,3,female,2006,24.609375,22,41.8571434,25.29226494,1,2,0,8.586014146,1.38,38.1 -172,448,3355,0,1.13,28,13,3,3,female,2006,19.47340584,20,40,39.19233322,2,2,1,9.160734657,1.39,36.3 -173,451,2910,0,-0.74,22,56.3125,2,3,male,2005,23.62444687,9,39,29.89733124,1,2,0,9.297741273,1.29,27.6 -174,453,3520,0,2.98,33,76,4,3,male,2005,26.92743683,55,41,33.10335541,1,2,1,9.429272188,1.444,52 -175,458,3750,0,2.26,28,8,4,5,female,2005,24.38652644,11,40,43,3,2,0,8.826716861,1.36,37.5 -176,459,3120,1,1.03,27,49,3,3,male,2005,25.07812309,10,38.8571434,23.82204056,2,1,0,8.509354324,1.429,36.2 -177,461,3920,0,2.27,34,8,4,3,female,2005,40.77122498,2,40.1428566,34.6475029,2,2,1,8.840634269,1.33,39.7 -178,463,3502,0,-0.13,34,3,2,5,male,2007,20.61925365,20,41,34,3,2,1,8.073921971,1.388,29.7 -179,467,3180,0,-0.3,26,57,2,3,male,2006,21.50446892,18,40.7142868,35.92881775,3,2,1,8.777663701,1.29,23.7 -180,468,2970,0,-0.19,23,13,2,3,female,2005,21.15529442,18,42.1428566,32,2,2,0,8.851471595,1.295,26.3 -181,469,3415,0,2.45,30,5,4,5,male,2005,23.87511478,10,41.2857132,25,3,2,0,8.950034223,1.33,38.8 -182,470,2360,0,0.01,26,12,2,3,female,2005,22.89282036,16,38,27.06365585,1,2,0,8.840634269,1.347,29.6 -183,471,3400,0,0.14,29,41.3125,2,3,male,2006,18.90359116,6,41.1428566,33.40999222,2,2,1,8.364248232,1.306,27.4 -184,473,3640,0,0.76,26,19,2,3,female,2005,26.91272545,13,39.2857132,33.49213028,3,2,1,9.659251654,1.309,31.1 -185,476,3600,0,0.23,32,5,2,5,male,2005,21.10726644,8,40.57143021,34.00136948,3,0,2,8.591261693,1.353,30.6 -186,478,3290,0,-0.72,32,3,2,5,female,2007,26.89767075,20,39.1428566,29,3,0,1,6.954140999,1.216,21.5 -187,480,4850,0,-0.27,32,0,2,5,male,2006,23.80869017,20,40.57143021,35,3,2,2,8.087611225,1.402,30.2 -188,481,4350,0,1.22,25,4,3,5,male,2006,21.484375,10,42.2857132,31,2,2,1,8.429956651,1.386,32.4 -189,482,3950,1,-0.88,33,36.25,2,3,male,2006,20.3710289,12,43.2857132,19.06912994,1,2,0,8.134154689,1.206,19.6 -190,485,4016,0,-0.42,32,9,2,5,male,2005,21.383942,12,39,31,2,0,0,9.188227242,1.355,26.4 -191,490,2770,0,1.24,31,65,3,3,male,2006,20.95660782,25,41,27.70431137,1,2,1,8.189025781,1.359,28.3 -192,492,2710,0,-0.89,26,26,2,3,male,2005,37.05335617,8,37.2857132,38.02327347,3,2,1,9.549737623,1.317,26.2 -193,493,3442,0,-0.14,28,13.1875,2,5,female,2006,20.70081674,20,42.1428566,30,3,2,1,8.662673968,1.31,26.9 -194,497,3670,0,2.89,32,23,4,3,male,2005,20.39542198,8,42.2857132,34.45585251,1,2,1,8.736595939,1.39,46.5 -195,499,4064,1,0.63,29,13.125,2,5,female,2005,25.30864198,9,41.1428566,31,3,2,0,8.813027607,1.401,34 -196,501,3230,0,1.34,33,7,3,5,female,2005,26.29757785,12,36.8571434,41,3,2,1,8.875998175,1.432,39.4 -197,507,3820,0,-0.93,35,10,2,3,female,2005,25.15589523,18.5,42,31,3,2,1,8.769336071,1.306,25 -198,510,3230,0,2.39,25,50,4,3,female,2005,23.12467003,17,39.57143021,25.79055405,2,2,0,9.04312115,1.331,41.2 -199,515,3220,0,-2.5,30,7,1,3,female,2006,22.86236763,10,40,37.35523605,2,2,0,8.41889117,1.308,21.3 -200,517,3446,0,0.32,24,16,2,5,female,2006,18.40134298,15,38.2857132,34,3,2,1,8.257357974,1.333,29.1 -201,518,3222,0,-0.36,32,7,2,5,male,2005,18.37682515,12,40,36,3,0,1,9.075975359,1.377,29.7 -202,522,3395,0,2.37,32,20,4,3,male,2006,22.27531052,9,39.57143021,32.15605927,3,2,0,8.273899156,1.455,43.5 -203,524,2761,0,0.53,29,8,2,5,female,2006,21.45357371,12,38,29,2,2,0,8.503650468,1.347,30.7 -204,525,3750,0,-0.02,36,7,2,5,male,2006,24.77209671,15,41.42856979,31.73169136,3,2,1,8.744695414,1.39,30.8 -205,526,3950,0,1.29,34,25,3,5,female,2006,23.53304271,16,42.2857132,27,2,2,2,8.906228611,1.387,35.6 -206,531,3816,0,-0.43,17,28.5625,2,5,male,2006,23.91883029,4,39,36,3,0,0,7.252566735,1.28,24.5 -207,532,4328,0,-0.35,30,5.0625,2,5,female,2005,22.22906193,20,41.1428566,37,3,2,1,9.28678987,1.459,33.2 -208,536,3790,0,1.41,31,40,3,5,male,2006,25.20920136,17,40,30,3,2,1,7.780971937,1.365,34.5 -209,541,4335,1,-0.32,30,3,2,5,male,2006,22.65625,20,43,31,3,2,1,8.563883185,1.313,26.6 -210,543,3330,0,0.43,29,13,2,5,male,2006,23.046875,10,41,35.94797897,3,2,1,8.873374401,1.28,27.3 -211,544,3350,0,0.52,32,9,2,3,male,2005,15.88278389,11.5,41.42856979,28,3,2,1,8.810289756,1.26,26.8 -212,548,3530,0,0.65,30,19.25,2,3,female,2006,18.90690041,8,40.8571434,35.73716736,2,2,0,8.421743098,1.325,30.1 -213,550,3400,0,1.06,31,20,3,3,male,2005,23.42209053,25,37.7142868,29.75222397,2,2,0,9.451174994,1.345,34 -214,551,3625,0,1.22,32,8,3,5,female,2006,25.82644628,8,37.57143021,37,3,2,1,8.613164499,1.368,34.9 -215,553,3714,0,1.52,33,17,3,5,female,2005,22.64737696,17,38.7142868,31,3,2,1,8.925393566,1.415,39.6 -216,554,4390,1,1.23,31,2.0625,3,5,female,2007,25.37532234,20,40.2857132,37,3,2,2,6.954140999,1.368,34.3 -217,563,3500,0,0.06,30,13,2,3,female,2006,26.67276382,32,41.8571434,36.18891144,1,2,1,8.314738763,1.241,24.5 -218,567,4122,0,0.47,29,7.0625,2,5,female,2006,20.69049454,12,40.1428566,36,3,2,2,8.372461784,1.282,27.5 -219,568,2960,0,0.71,24,20,2,3,female,2006,22.86236763,15,40,31.3155365,3,2,0,8.777663701,1.339,29.85 -220,571,3150,0,-0.92,23,17.125,2,3,male,2006,22.67573738,7,37.8571434,38.58726883,1,2,1,8.481975816,1.36,27 -221,574,4280,0,2.97,21,97,4,3,female,2007,45.4887085,0,39.57143021,34.32717133,1,2,1,8.188911704,1.352,41.9 -222,576,2321,0,-1.3,30,7,2,5,female,2007,20.32443826,5,41.2857132,36,3,2,1,8.032854209,1.283,25.7 -223,580,3748,0,0.56,35,3,2,5,female,2005,20.04744562,17,40.7142868,33,3,2,1,8.947296372,1.361,31.1 -224,581,2708,0,-1.26,33,12.0625,2,5,male,2006,16.22406387,20,37.42856979,31,3,2,0,8.301277664,1.34,25.4 -225,583,3300,0,-0.54,23,19,2,3,female,2005,22.6002636,18,41.1428566,32.15058136,1,2,1,8.665297741,1.235,22.9 -226,584,3160,0,1.08,36,16.25,3,3,male,2006,21.33821106,9,42,36,3,1,0,8.347821127,1.28,29.1 -227,587,4584,0,0.1,19,18,2,5,male,2006,24.9107674,12,41.8571434,32,2,2,2,8.610426648,1.285,28 -228,590,3366,0,0.35,27,8.0625,2,5,male,2007,19.95728441,12,38.2857132,30,3,2,0,8.161533196,1.34,28.7 -229,591,3788,0,0.64,25,16.1875,2,5,female,2006,21.71925011,25,39,31,3,2,1,8.128793064,1.381,32.4 -230,595,3180,0,0.74,26,65.5625,2,3,female,2005,26.89767075,15,41.2857132,35.55920792,3,1,1,9.185489391,1.215,25.7 -231,596,3970,0,0.19,27,23,2,5,male,2005,22.49134948,20,40.1428566,30,3,2,1,9.363449692,1.368,30.9 -232,598,4328,0,1.15,33,8.0625,3,5,male,2005,20.46334457,28,39,36,3,2,2,8.917180014,1.405,35.9 -233,602,3660,0,-0.42,32,34,2,3,male,2005,25.78125,4,40,31.30458641,2,2,1,9.656513803,1.285,25.8 -234,606,3530,1,-0.26,24,47.0625,2,5,male,2006,21.60410478,25,40,26,2,2,0,8.213552361,1.305,25.8 -235,609,2596,0,1.33,24,8.125,3,5,female,2006,26.81359045,6,36.2857132,34,2,2,0,8.854209446,1.31,37.8 -236,610,3330,0,-0.43,35,9,2,5,female,2006,19.83471074,13,42.8571434,31,3,0,1,8.32318047,1.295,25.3 -237,611,4050,0,0.04,33,0,2,5,male,2006,22.94811574,15,39.57143021,31,2,2,0,8.314852841,1.244,24.6 -238,621,3660,1,-0.03,33,23,2,5,male,2006,24.60973358,10,41,33,2,2,1,8.876112252,1.377,28 -239,624,3280,0,0.74,31,3,2,3,male,2005,19.72103691,10,40,29.65366173,2,2,0,8.922655715,1.395,30.1 -240,629,3080,0,1.46,26,29,3,3,male,2006,25.39021873,12,38.2857132,30.87748146,3,2,0,8.041067762,1.414,36.8 -241,630,2990,0,-0.7,31,29,2,3,male,2006,19.26615715,8.5,37.8571434,36.7638588,3,2,0,8.030116359,1.285,27.3 -242,634,2910,0,0.57,25,22.25,2,3,female,2006,18.14486885,14,38.42856979,25.33607101,1,2,0,8.109514031,1.342,30.3 -243,635,4350,0,-0.85,28,2,2,5,male,2005,21.46193662,20,41.1428566,32,3,2,1,9.793406343,1.402,27.4 -244,636,4668,0,0.09,31,30,2,5,male,2007,20.38156971,18,41.2857132,32.22317886,3,2,1,8.109514031,1.341,23.6 -245,637,3280,0,1.58,30,18,3,3,female,2005,21.30394936,0,40.7142868,32.91444397,2,2,1,8.947296372,1.365,37.6 -246,638,3520,0,1.45,31,18,3,3,female,2006,26.56434441,13,41.1428566,33,3,2,0,8.550308008,1.34,34.6 -247,639,3100,0,-0.3,28,51,2,5,male,2007,28.19544411,13,39.2857132,40,3,2,2,8.062970568,1.34,27.5 -248,640,3614,0,-0.32,24,13,2,5,male,2006,22.7189744,16,40,33,3,0,0,8.344969199,1.352,27.3 -249,644,3475,1,-0.1,22,0,2,5,male,2007,20.76124567,10,41.8571434,37,3,2,2,8.065708419,1.315,27.1 -250,645,3750,1,2.85,33,13,4,3,male,2006,31.91930771,8,41.57143021,35.84667969,1,2,1,8.139744467,1.44,46.5 -251,647,4442,0,1.28,30,42,3,3,male,2006,27.68877792,19,44,30.49418259,2,2,0,8.583048141,1.31,31.4 -252,654,4080,0,-0.81,29,0,2,5,female,2006,20.32225287,12,40.7142868,31,3,0,0,8.224503765,1.336,25.8 -253,655,3362,0,-1.06,28,10,2,5,female,2006,26.64359862,8,39.7142868,35,3,2,1,8.854209446,1.302,23.9 -254,656,4274,0,-0.28,13,18,2,5,male,2006,21.2244898,8,41.57143021,31,3,2,1,8.388774812,1.337,26.3 -255,658,2500,0,-0.12,30,12,2,5,female,2006,38.89807129,15,39.7142868,32.85694885,2,2,0,8.596737394,1.421,31.5 -256,660,3266,0,0.71,32,30,2,5,male,2006,26.33288875,25,40,43.50547791,3,2,1,8.221879991,1.433,34.9 -257,661,2980,0,0.94,23,29,2,3,female,2006,20.19509315,20,40.42856979,25.80150604,2,2,0,8.126055213,1.33,28.2 -258,665,2740,0,-1.68,32,5,2,5,male,2006,17.00680272,17,38.7142868,35,2,2,2,8.665183664,1.25,21 -259,668,2760,0,0.13,31,7.0625,2,5,male,2006,16.22406387,20,34.8571434,37,3,2,2,8.180698152,1.27,25.8 -260,674,3910,0,-1.15,22,7,2,5,male,2006,20.32225287,20,40.7142868,32,3,2,0,8.824093087,1.315,24.9 -261,675,3210,0,-0.01,31,13.1875,2,5,female,2005,27.33564014,20,41.1428566,40.08761215,3,2,1,9.500456308,1.328,28.8 -262,677,3330,0,-0.65,28,6,2,3,female,2006,20.47826576,14,39.2857132,37.39630508,3,1,0,8.416267397,1.35,27.3 -263,678,3342,0,0.14,31,19,2,3,female,2005,24.03440666,10,39.8571434,35.21697617,3,2,1,8.281998631,1.268,25.8 -264,680,3090,0,2.21,33,48.4375,4,3,female,2006,28.125,8,39.1428566,34.8911705,3,2,0,8.183436003,1.328,37.9 -265,681,3740,0,0.87,36,29.3125,2,3,female,2005,23.33546638,9,39.7142868,31.58384705,3,2,0,8.506502396,1.3,30.7 -266,684,3630,0,1.95,32,0,3,5,male,2007,20.91070816,9,39.2857132,34,3,0,0,8.112251882,1.315,30.1 -267,685,3280,0,0.11,31,2,2,3,female,2006,26.89232254,8,42,34.47227859,3,2,1,8.750171116,1.407,28.2 -268,688,3700,0,2.05,29,17,4,5,female,2006,23.32341766,9,42.42856979,29,3,2,1,8.191649555,1.37,40.1 -269,690,4442,0,3.23,33,33.1875,4,5,male,2006,33.59375,11,41.57143021,37,2,2,1,8.90349076,1.52,57.3 -270,691,3300,0,1.34,28,25.125,3,3,male,2006,33.73250198,3,39.42856979,26.02053452,2,2,1,8.227241615,1.312,31.4 -271,693,4154,1,-0.99,28,4.0625,2,5,male,2006,24.44727891,11,42.2857132,34,3,2,1,8.265571526,1.34,26.2 -272,695,2943,0,0.53,25,13,2,5,female,2005,19.84126984,13,41.2857132,31,3,2,1,8.637805156,1.317,30.3 -273,702,4120,0,3.41,34,11,4,3,male,2005,26.171875,0,41.57143021,31.18959618,2,2,0,8.736595939,1.359,46.8 -274,703,3730,0,-0.94,35,4.125,2,5,male,2005,23.30668005,13,40,41,3,2,2,9.40189368,1.412,26.7 -275,708,3424,1,-0.23,34,3.0625,2,5,female,2006,21.4532872,5,40.57143021,30,2,2,0,8.440908054,1.247,24.1 -276,709,3478,0,0.68,30,7,2,5,female,2005,26.57312925,15,40.7142868,34,3,0,2,8.345083276,1.303,31.4 -277,710,3530,0,1.04,24,21,3,3,male,2006,21.604105,13,40.7142868,37.17727661,2,2,2,8.180698152,1.257,27.8 -278,713,3934,0,0.54,33,7,2,5,male,2006,20.2812331,17,40.2857132,30,3,2,0,8.555897787,1.409,33.3 -279,715,3604,0,0.03,22,2,2,5,female,2006,25.30864198,8,36.57143021,36,2,2,1,8.837782341,1.387,30.6 -280,716,3500,0,0.8,27,31.375,2,3,female,2006,35.55555725,5,40.42856979,31.9096508,1,2,1,8.432694501,1.24,23.3 -281,720,3300,0,1.98,30,43,3,3,female,2005,20.96436119,18,39.8571434,32.84051895,2,2,0,8.706365503,1.31,36.3 -282,724,3260,0,-1.15,32,16,2,5,female,2007,19.13265306,12,40.42856979,35,3,0,0,8.06844627,1.277,23.2 -283,731,3140,0,0.33,32,53.75,2,3,male,2006,22.7583065,17,38,33.12252045,3,2,0,8.279146703,1.359,29.7 -284,733,3565,0,-1.03,18,23,2,3,male,2006,20.4467411,13,39,33.6125946,2,2,1,8.492927219,1.248,22 -285,734,3740,0,-0.1,35,14.125,2,5,female,2006,22.95908737,20,40.1428566,37,3,2,0,8.213552361,1.361,27.9 -286,736,2926,0,-0.36,23,15,2,5,female,2007,22.12711525,12,40.57143021,31,3,2,0,6.954140999,1.28,21.4 -287,738,4340,0,0.8,34,2,2,5,male,2006,20.33832645,12,42.57143021,34,2,2,2,8.317704768,1.37,31.9 -288,739,3020,0,0.2,32,13,2,3,male,2005,21.35991478,11,38.8571434,32.35865784,3,2,0,8.87063655,1.404,32.2 -289,740,3250,0,1.47,31,55,3,3,female,2005,20.79673004,18,41,29.47022629,2,2,0,9.404631531,1.36,36.5 -290,746,4442,1,1.56,30,12,3,5,male,2006,34.57763236,20,42.1428566,27,3,2,0,8.213552361,1.341,26.7 -291,748,3768,0,-0.39,24,11,2,5,female,2006,20.06920415,15,40.8571434,27,2,2,0,8.186173854,1.304,24.8 -292,750,3040,0,-0.64,28,45.3125,2,3,male,2005,22.94213104,11,40,34.93223953,2,2,1,9.256787588,1.39,23.6 -293,751,3843,0,1.96,34,2,3,5,female,2007,40.33377838,15,41.7142868,38,3,2,1,8.114989733,1.389,39.6 -294,757,3378,0,0.4,34,29,2,5,female,2005,18.40134298,20,41.1428566,32,3,2,0,8.919803787,1.378,31.8 -295,760,2935,0,-0.35,34,45.375,2,5,female,2006,21.07719523,12,38.8571434,31,3,2,0,8.109514031,1.308,24.8 -296,763,4335,0,-0.48,19,2,2,5,male,2005,28.40054796,7,41.1428566,34,2,2,1,8.914442163,1.412,30.5 -297,767,4100,0,0.44,30,5.1875,2,5,male,2007,20.24489796,27,40.8571434,35,3,2,2,8.150581793,1.315,28.5 -298,770,3425,0,-1.19,29,17,2,3,male,2005,21.04804802,10.5,40.2857132,32.57494736,3,2,0,9.064909879,1.296,24.2 -299,771,4246,1,0.38,30,15,2,5,female,2005,23.45856238,13,41.8571434,35,3,2,0,8.873374401,1.33,29.2 -300,772,2825,0,-0.67,29,9,2,5,female,2006,21.875,20,41,33,3,0,0,7.014373717,1.395,28.6 -301,780,3660,0,-0.65,20,28,2,5,female,2005,20.04744562,11,38.7142868,34,3,2,1,8.451631303,1.275,24 -302,782,3916,0,-0.47,33,7,2,5,male,2006,19.03114187,14,41.1428566,32,3,2,0,8.413529546,1.357,26.2 -303,785,2780,0,1.68,30,16,3,3,female,2005,19.13265228,25,40.57143021,29.05954742,2,2,0,9.618183892,1.315,36.2 -304,786,3270,0,-0.12,25,41,2,3,male,2006,22.18934822,13,41.42856979,28.78302574,1,2,1,7.299110198,1.236,24.1 -305,793,3250,0,0.8,31,33,2,3,male,2005,22.3214283,18,40,31.71252632,2,2,1,9.949463838,1.452,32.2 -306,795,3460,0,-0.77,31,35.375,2,5,male,2007,23.80869017,13,39,34,3,2,0,8.062970568,1.34,26.4 -307,796,3300,0,-0.62,30,43,2,3,male,2006,18.37682515,9,40.2857132,31.45790482,2,2,0,8.596965549,1.34,22.7 -308,799,3710,0,1.74,33,11,3,3,male,2005,19.95728493,12,39.7142868,36.15605927,2,2,1,9.026694045,1.422,39.9 -309,800,2960,0,1.22,25,25,3,3,male,2006,31.10003662,20,39.57143021,27.09103394,3,2,0,8.632329455,1.315,32.3 -310,801,4406,0,0.31,34,7,2,5,female,2006,32.87197232,7,40.1428566,27.55099297,2,2,1,8.016427105,1.337,29 -311,808,3860,0,-0.72,31,24.25,2,5,female,2006,22.95908737,12,41.7142868,33,2,2,1,8.128793064,1.232,25.7 -312,811,3440,0,-0.5,28,3.125,2,5,male,2006,17.00680272,9,39.57143021,34,3,2,0,8.049281314,1.326,24.9 -313,814,4180,0,-0.11,33,5,2,5,female,2005,25.02976036,10,42.42856979,30,3,2,1,8.698151951,1.34,28.3 -314,815,3040,0,2.03,31,7.0625,4,3,female,2005,26.34649467,20,40,30.10266876,2,2,0,9.251311887,1.403,43.8 -315,817,3370,0,-0.62,31,49.3125,2,5,male,2006,21.79930796,35,40.42856979,27,2,2,0,8.295687885,1.283,24.1 -316,818,3202,0,0.42,33,8,2,5,female,2006,22.53061224,7,40,30,3,2,0,8.429956651,1.266,32.1 -317,821,3860,0,-0.43,33,8,2,5,male,2006,18.30576947,11,39.42856979,30,3,2,0,8.208190737,1.4,29.9 -318,823,3380,0,1.28,32,52,3,3,female,2005,22.03172493,9,40.42856979,29.85626221,2,2,0,9.900182523,1.405,38.1 -319,824,4100,0,0.8,32,2,2,5,male,2005,22.10028959,30,40.57143021,37,3,2,2,8.763746292,1.31,31.3 -320,826,4180,0,0.67,29,6.1875,2,5,male,2006,18.90690102,5,41.7142868,35,3,2,1,8.123317363,1.35,30.5 -321,840,3210,0,2.28,23,78.5,4,3,male,2006,24.87771988,20,40,37.37714005,1,2,1,8.254506046,1.275,33.6 -322,841,3400,0,0.96,32,5.0625,2,3,male,2005,19.25702858,10,38.8571434,33.24298477,3,2,0,9.369039471,1.378,30.9 -323,842,3490,0,-0.52,32,26,2,5,female,2006,21.63331531,13,40,31,3,2,0,8.503650468,1.341,27.2 -324,844,3690,0,0.62,32,20,2,3,female,2005,20.43816566,18,44.1428566,31.9096508,1,2,1,8.783139402,1.336,29.8 -325,850,3515,0,1.93,31,21,3,3,female,2005,22.14532852,13,40.42856979,36.21081543,3,2,0,7.93155373,1.29,34.3 -326,853,3338,0,1.13,33,10.25,3,5,male,2006,22.30935641,15,38.57143021,33,2,2,1,8.369723933,1.423,36.6 -327,857,3913,0,2.1,28,5,4,3,male,2006,22.4996376,8,40,32.16700745,2,2,1,8.221765914,1.345,36.4 -328,860,3420,0,0.82,32,10.0625,2,5,female,2007,20.41522491,8,41.42856979,32,3,2,1,8.153319644,1.319,24.9 -329,861,4070,0,1.1,24,60,3,3,female,2006,27.43484306,12.5,40.1428566,36.95550919,2,2,1,7.583960757,1.295,29.8 -330,862,2990,0,0.51,30,6,2,3,female,2007,19.87910271,10,39.8571434,33.74674988,3,2,0,8.010951403,1.266,26.9 -331,880,3530,1,2.95,32,26,4,3,male,2005,32.04587555,25,42,29.14168358,3,2,0,8.966461328,1.343,53.3 -332,881,3460,0,1.01,32,29.25,3,3,female,2006,24.84098053,23,40,36.48186111,2,2,0,7.909536847,1.359,34 -333,886,3650,0,1.01,32,10.0625,3,5,female,2005,24.18745232,8,42,33,3,2,0,8.911704312,1.435,38.1 -334,890,2990,0,0.27,24,10.125,2,3,male,2006,17.71541977,18,38.2857132,27.54551697,3,2,0,8.188911704,1.349,30.1 -335,894,3600,0,-0.85,32,26.1875,2,5,male,2006,24.38237298,15,39.57143021,37,3,2,1,8.186287931,1.266,25.4 -336,897,2680,0,-1.99,30,13,2,3,male,2006,20.06095505,10,39.8571434,30.90485954,2,2,0,8.969199179,1.325,23.7 -337,902,3200,0,0.35,33,13,2,5,female,2005,22.23098713,18,40.1428566,35,2,2,2,9.130846452,1.39,32.2 -338,905,3215,1,-0.79,31,20.25,2,5,male,2006,21.2244898,12,38.42856979,37.58795166,3,2,1,8.563883185,1.387,28.6 -339,907,3795,0,1.6,33,12.125,3,5,male,2006,26.42356982,16,39.8571434,35,3,2,2,8.191649555,1.432,38.6 -340,912,3396,0,-0.33,35,9,2,5,male,2006,22.14532872,10,41.57143021,33,3,2,0,8.07118412,1.37,29.2 -341,913,3050,0,-0.02,32,62,2,3,male,2006,19.14672279,9,37.8571434,39.96988297,2,2,1,7.909536847,1.195,23.2 -342,916,3130,1,-1.04,35,15,2,5,female,2006,28.36035153,12,38.2857132,28.48186111,2,2,0,8.060232717,1.195,20.1 -343,917,3040,0,-0.58,28,22.1875,2,3,female,2005,23.833004,32,41.1428566,36,2,2,2,7.225188227,1.298,30.5 -344,923,3500,0,-0.14,31,47,2,3,female,2006,20.1171875,12,39.2857132,38.23682404,3,2,1,8.492927219,1.28,26.3 -345,926,3015,0,-0.27,28,11,2,3,female,2005,18.68512154,15,36.8571434,40.97868729,2,2,0,8.952772074,1.405,33.3 -346,928,3460,0,-0.11,28,42.0625,2,3,female,2005,21.09375,7.5,41.2857132,31.18959618,2,2,0,8.695528177,1.418,31.7 -347,929,3670,1,-1.43,33,10.0625,2,3,male,2006,18.97092247,12,40.2857132,31.10472298,3,2,0,8.561259411,1.322,23.3 -348,930,3872,0,-2.11,27,8.0625,1,5,male,2006,21.61281179,12,41,36,3,2,1,8.189025781,1.284,21.8 -349,931,2800,0,2.44,34,23.5,4,3,male,2005,27.28174591,4,38.8571434,37.58795166,1,2,2,9.333219256,1.402,43.9 -350,932,3580,0,0.41,26,6,2,3,male,2006,28.62879181,17,38.8571434,32.22998047,2,2,1,8.082135524,1.345,29.7 -351,934,3500,0,0.89,26,42,2,3,female,2005,24.15881729,10,41.2857132,39.53182602,1,2,1,8.637805156,1.365,33.3 -352,937,4050,0,0.38,28,40,2,3,female,2005,20.3125,18,39.8571434,35.61669922,3,2,2,9.130846452,1.381,31.9 -353,938,3730,0,-0.31,31,7,2,5,female,2006,26.36560303,20,39.8571434,26,3,2,0,8.169746749,1.315,26.3 -354,939,2300,0,2.98,31,21,4,3,male,2005,21.56454468,20,36.42856979,26,2,2,0,8.881587953,1.35,48.1 -355,943,3255,0,-0.29,29,120.6875,2,3,male,2005,18.49548531,6,41.1428566,36.79285049,2,2,2,9.295117499,1.319,27.3 -356,946,3570,0,0.11,35,7,2,3,female,2005,20.57613182,20,39.1428566,28.02190208,3,2,0,10.21206936,1.342,30.4 -357,948,3872,0,0.84,31,58,2,3,male,2006,21.30394936,16,42,36,2,2,1,8.648984714,1.325,30.3 -358,949,2630,0,-0.13,31,16,2,5,male,2006,21.88707637,16,37.57143021,29.10736847,3,2,0,8.514601871,1.316,28.5 -359,950,2970,0,1.2,27,15.22222233,3,3,male,2005,25.47665977,9,37.8571434,35.60027313,1,2,0,9.429272188,1.336,33.2 -360,952,3668,0,-0.35,31,31,2,5,female,2005,21.61281179,20,41.2857132,36,3,2,2,8.919803787,1.313,26.7 -361,953,4230,1,-0.36,28,5,2,5,female,2005,20.79672989,13,42.7142868,27,3,2,1,9.297741273,1.35,23.6 -362,956,3100,0,0.11,30,33.3125,2,3,male,2005,24.02380943,11,40.7142868,31.55646896,2,2,1,9.095140315,1.298,28.2 -363,957,3648,0,1.94,28,8.125,3,5,male,2006,32.46489716,25,37.57143021,33,3,2,0,8.873374401,1.475,43.9 -364,958,3380,0,0.97,33,0,2,3,male,2005,24.9107666,12,40.2857132,32,3,2,1,8.736595939,1.414,30.1 -365,961,3700,0,-0.21,33,0,2,5,male,2005,25.09950066,10.5,41.8571434,32,3,2,0,9.188227242,1.385,33.1 -366,963,3850,0,0.2,32,3,2,5,female,2005,21.19274242,14,40.1428566,32,3,0,1,8.821241159,1.28,31 -367,966,3520,1,-1.01,33,36,2,3,male,2005,23.30668068,12,40.1428566,33.00205231,2,2,0,8.854209446,1.325,25.6 -368,968,3590,0,-0.23,34,1,2,5,female,2006,20.80856124,12,41,29,3,2,0,8.208190737,1.39,29.9 -369,971,3440,0,-0.81,35,15.0625,2,3,female,2005,18.40134298,18,41.57143021,32.12867737,1,2,0,9.798767967,1.28,27.4 -370,972,2877,0,0.68,29,3,2,5,female,2006,22.58270917,16,38.2857132,35,3,2,1,8.440908054,1.36,30.2 -371,973,3470,0,-0.07,31,1,2,5,female,2005,38.89807129,10,39,31.65776825,2,2,1,8.873374401,1.4,32.5 -372,977,3746,0,1.08,30,8,3,5,female,2006,23.73866213,20,41,34,3,2,1,8.572096737,1.348,33.3 -373,978,3850,0,0.04,32,1.0625,2,5,male,2006,20.42941836,13,41,35,3,0,0,7.947866758,1.256,24.9 -374,980,3010,0,-1.06,36,3,2,5,male,2006,18.93877551,20,41,27,3,2,0,8.128678987,1.304,24.4 -375,981,3020,0,0.66,32,12,2,5,female,2005,22.5710475,8,38.1428566,32,3,2,1,8.637805156,1.257,27.3 -376,983,3450,0,-0.14,31,4,2,5,male,2007,24.16326531,10,38.57143021,31,3,2,2,6.978781656,1.299,25.8 -377,986,4184,0,0.74,27,2.0625,2,5,female,2006,23.30668005,20,42.42856979,38,3,0,1,7.225188227,1.305,24.6 -378,989,3740,0,-0.7,27,13,2,5,male,2006,21.30394936,6,41,34,3,2,0,8.481975816,1.332,26.3 -379,990,3600,0,2.54,32,8,4,3,male,2005,19.43301392,24,40.7142868,32.03011703,2,2,0,9.103353867,1.389,33.5 -380,993,3080,0,2.07,34,22,4,3,male,2005,24.50894547,30,38.7142868,26.47227859,2,2,0,9.075975359,1.315,32.4 -381,995,3376,0,-0.21,34,9,2,5,male,2005,22.49134948,15,40.7142868,27,3,0,0,9.026694045,1.397,30.7 -382,996,2979,0,0.16,30,14,2,5,female,2006,27.28174591,14,41.8571434,33.77686691,2,0,0,8.213552361,1.34,25.5 -383,1000,2910,0,-0.5,24,17,2,3,female,2005,24.14151955,10,40.42856979,28.78302574,1,2,1,9.24287018,1.22,22.8 -384,1001,3590,0,-0.13,30,9,2,3,female,2005,20.30072975,8,41.42856979,35,3,2,0,8.826945015,1.448,33.1 -385,1003,3690,0,0.87,34,3,2,5,male,2005,24.05693475,12,40.8571434,35,2,0,0,8.881587953,1.415,35.2 -386,1004,3150,0,-0.05,32,37,2,3,female,2005,23.11111069,11,38.2857132,26,1,2,1,8.996577687,1.244,23.6 -387,1005,3374,0,-0.2,34,2,2,5,male,2005,22.265625,17,37.1428566,29,2,0,0,9.437257586,1.33,25.95 -388,1007,4652,0,-0.77,31,7.0625,2,5,male,2006,22.94811574,20,40.7142868,23,2,2,0,7.991786448,1.323,25.7 -389,1009,2860,0,0.28,29,43.5625,2,3,female,2005,19.38214493,23,40.7142868,32.73374557,1,2,1,8.985626283,1.23,22.4 -390,1016,2860,0,1.77,30,21,3,3,female,2005,22.95908737,22,42,27.69883728,2,2,1,8.996577687,1.345,39.1 -391,1017,3678,0,-0.89,33,3,2,5,female,2006,21.29529475,12,40.2857132,32,3,2,1,8.320328542,1.26,22.8 -392,1019,2064,0,1.18,28,0,3,5,female,2007,32.14664341,16,38.42856979,30,2,2,1,6.978781656,1.228,24.9 -393,1020,3770,0,2.82,28,45.3125,4,3,male,2005,22.86253357,18,41.57143021,28.83059311,2,2,1,9.648300251,1.452,58.4 -394,1023,2800,0,-0.03,29,7.0625,2,5,female,2006,19.46740129,10,41.1428566,33,3,2,0,8.837782341,1.307,27.4 -395,1025,3012,0,0.26,33,72.4375,2,5,male,2005,21.78649237,8,41.1428566,25,2,0,0,9.144535706,1.419,33.3 -396,1032,4006,0,1.8,35,2,3,5,female,2005,20.9839876,22,39.2857132,32,3,2,1,8.774697696,1.38,39.2 -397,1036,3195,0,-0.73,34,7,2,5,male,2006,24.57786715,8,39.1428566,39,3,2,1,8.51186402,1.261,23.5 -398,1039,3500,0,0,35,32,2,3,male,2006,23.01117706,9,38.7142868,33.87542725,2,2,1,8.763746292,1.336,28.7 -399,1044,3512,0,1.32,30,8,3,5,female,2006,22.40817899,15,38.57143021,30,3,0,1,8.235569245,1.3,33 -400,1049,3690,0,-0.56,35,1,2,5,male,2005,18.73278237,17,41.1428566,31.96988297,3,2,0,8.566621036,1.316,25.3 -401,1052,3590,0,-0.38,35,8,2,5,male,2006,21.17546272,12,39.1428566,33,3,2,0,7.956194387,1.3,26 -402,1053,3830,0,-0.63,27,21.0625,2,3,male,2005,37.81380081,10,41.42856979,27.62491417,3,2,0,10.0698152,1.536,36.5 -403,1054,3744,0,-1.27,28,47,2,5,male,2005,20.61925365,14,41.57143021,35,3,2,0,9.524868811,1.253,22.4 -404,1055,4465,1,1.16,30,15,3,5,male,2006,20.80856124,20,40.57143021,33,3,0,1,8.843258042,1.41,34.6 -405,1058,3690,0,1.22,35,57,3,3,male,2006,28.57796097,15,40.7142868,27.8247776,3,2,0,8.873374401,1.38,35.1 -406,1060,4330,0,0.05,33,8,2,5,male,2006,27.7767067,12,40.1428566,27,2,2,0,8.109514031,1.369,29.7 -407,1062,3584,0,-0.8,32,8.125,2,5,male,2005,26.5625,20,40,21.86995125,2,2,0,8.471024413,1.418,24.2 -408,1064,3320,0,0.89,30,29.1875,2,3,male,2005,20.76124573,10,40.7142868,34.41752243,2,2,1,9.305840748,1.385,34.2 -409,1066,2715,0,2.45,27,82,4,3,male,2006,23.92242241,11,39.1428566,30.86652946,1,2,0,8.588751996,1.335,38.4 -410,1067,2610,0,2.01,28,4,4,3,male,2006,20.6790123,9,37.8571434,35.48254776,2,2,0,7.665982204,1.414,40.6 -411,1068,2940,0,0.9,25,6,2,3,female,2005,22.50692558,10,39.1428566,30.43394852,2,2,0,8.857061373,1.247,29.9 -412,1069,3425,0,1.04,14,14.1875,3,3,male,2006,24.609375,16,39.57143021,29.31690598,3,2,0,8.153433721,1.355,33.3 -413,1072,3060,0,1.53,26,32,3,3,male,2006,28.39871788,16,41.57143021,36,3,2,1,8.487451517,1.33,33.3 -414,1074,3550,0,1.71,33,30,3,3,male,2006,38.97392273,0,40.7142868,34.23682404,1,2,0,9.245836185,1.39,38.3 -415,1080,2838,0,-0.74,25,4,2,5,male,2006,21.2962963,12,40.7142868,39,3,2,1,8.51186402,1.391,28.6 -416,1082,2640,0,-0.36,31,21.0625,2,5,female,2006,19.19530296,9,37.8571434,33.4248848,3,0,0,8.14795802,1.319,26.3 -417,1083,3960,0,-0.28,35,11,2,5,female,2007,24.85907356,16,41.8571434,32,3,2,0,8.161533196,1.29,25.4 -418,1090,2800,0,1.08,31,10,3,3,female,2005,23.051754,5,39.2857132,32.60232544,3,2,0,9.278576318,1.248,22.2 -419,1093,3825,0,1.07,27,2,3,5,male,2005,17.21108681,15,40.57143021,28,3,2,0,8.988364134,1.319,32 -420,1097,2990,0,0.21,27,24,2,3,female,2005,25.40281677,9,42.2857132,38.87747955,1,2,0,9.442961442,1.385,31.4 -421,1102,3740,0,0.35,31,29,2,5,female,2005,20.76124567,6,38.7142868,37,3,2,0,9.615217887,1.398,33.5 -422,1106,3755,0,2.54,20,8,4,3,male,2005,23.87543297,10.5,40,31,2,2,0,8.884325804,1.31,37.5 -423,1107,2960,0,-0.71,33,7,2,3,female,2005,20.06095505,8,39.7142868,38.95413971,3,2,1,8.851471595,1.304,25.2 -424,1110,3804,0,-1.03,35,10,2,5,female,2005,21.38593635,20,40.7142868,30,3,2,0,8.887063655,1.374,27.1 -425,1115,2255,0,-0.81,26,16.1875,2,5,female,2006,21.5349084,10,38.42856979,31,3,2,0,8.290326261,1.233,22 -426,1117,4064,1,-0.48,33,8,2,5,male,2006,23.7953599,22,40.7142868,35,3,0,2,7.956194387,1.418,25.5 -427,1122,3050,0,-0.57,33,13,2,3,male,2006,21.25850296,15,39.2857132,30.88295746,3,2,0,8.208190737,1.345,27.1 -428,1126,3212,1,-0.2,23,10.25,2,5,female,2006,25.46198063,11,41.1428566,35,3,2,1,7.014373717,1.177,20.9 -429,1127,3055,0,1.35,31,14,3,5,male,2007,25.40281677,12,39.8571434,36.29733276,3,2,2,8.027378508,1.34,31.2 -430,1130,3110,0,1.67,35,22.25,3,3,male,2005,19.19530296,8,40.1428566,23.55920601,2,2,0,9.516883413,1.435,41 -431,1132,3500,0,-0.07,31,14,2,3,male,2006,22.7583065,12,40.8571434,30.52703667,3,2,0,8.07118412,1.212,23 -432,1134,3600,0,0.54,30,31,2,3,male,2005,26.83518028,18,42,32,3,2,0,8.777549624,1.395,27.6 -433,1137,3110,0,2.12,21,99,4,3,male,2006,24.87771988,14,40,32.76659775,1,2,1,8.375085558,1.335,35.3 -434,1138,3140,0,-0.64,32,21,2,3,female,2005,25.7210331,9,38.2857132,31.08008194,2,2,1,9.703057267,1.24,22.9 -435,1144,4110,0,-0.73,30,2,2,5,female,2005,20.24489796,10,40.8571434,28,3,2,0,8.591261693,1.4,28.8 -436,1150,3102,0,0.5,32,16.1875,2,5,female,2007,20.2020202,8,36.57143021,33.99959183,3,0,0,7.197809719,1.227,24.6 -437,1157,3290,0,1.1,26,27,3,3,female,2006,20.95727348,10,40.57143021,36,3,2,1,8.443645905,1.335,32.5 -438,1158,3185,0,-0.39,32,19,2,3,female,2006,27.47562981,12,41.1428566,33.02121735,3,2,1,8.049281314,1.225,22.4 -439,1159,3326,0,-0.06,25,10.0625,2,5,male,2007,17.91508924,10,41.1428566,34,3,2,0,6.965092402,1.19,20.3 -440,1163,3270,0,0.58,32,3,2,5,female,2006,24.16716194,10,38.7142868,32,2,0,1,8.208190737,1.25,31.5 -441,1165,3212,0,0.09,34,25.3125,2,5,male,2005,27.35884546,10,38.7142868,38,3,2,2,8.610426648,1.289,24.7 -442,1168,3480,1,0.3,35,19,2,5,female,2005,23.87511478,14,39.2857132,39,3,2,2,8.637805156,1.336,29.5 -443,1174,3350,0,-0.46,27,14,2,3,male,2005,18.73278236,17,41.42856979,29.8617382,3,2,0,8.232717317,1.3,25.6 -444,1178,3060,0,-0.92,29,25,2,3,female,2005,17.4190731,15,40.1428566,26.47227859,2,2,0,9.251311887,1.333,26.3 -445,1179,3680,0,-0.93,28,4,2,5,female,2006,21.60410478,18,43,27,2,2,0,8.624344057,1.317,25 -446,1180,3380,0,-1.17,34,3,2,3,female,2005,19.81767654,16,41.42856979,25.57700157,2,2,1,8.845995893,1.395,25.7 -447,1181,2450,0,1.03,29,7,3,3,male,2005,25.07619286,7,41.7142868,36.93634415,1,2,0,9.642824549,1.319,31.9 -448,1189,3470,0,-0.27,32,14,2,3,male,2006,19.77769852,10,39.8571434,37.70568085,2,2,1,8.788501027,1.27,25.5 -449,1196,3854,0,1.76,32,9,3,5,female,2006,27.75510204,7,39.42856979,32,3,2,1,8.268309377,1.39,46.3 -450,1198,3470,0,0.62,29,7,2,5,male,2006,23.03004535,13,40.2857132,35,2,0,0,8.109514031,1.247,25.6 -451,1200,3770,0,-0.65,34,27,2,3,female,2005,30.8630352,3,40.1428566,29.01026726,1,2,0,9.404631531,1.355,27.8 -452,1201,4600,0,2.06,35,10,4,3,male,2005,24.91349481,12,42,32.1752243,2,2,1,9.618183892,1.4,41.6 -453,1205,3550,0,-0.42,33,9,2,5,male,2006,25.6543724,9,40.42856979,30,3,2,0,8.164271047,1.278,24.8 -454,1210,2920,0,-0.97,27,13,2,5,female,2006,22.49134948,12,37.2857132,36.39638138,3,2,2,8.563883185,1.225,21.5 -455,1211,3910,0,1.32,33,8.125,3,5,male,2005,23.83673469,12,43,35,2,2,1,9.130846452,1.51,42.7 -456,1212,3600,0,2.76,25,12,4,3,male,2006,29.40759659,15,40.1428566,24.96372414,2,2,1,10.03696099,1.434,50.9 -457,1213,3425,0,0.27,33,14,2,5,female,2005,18.507766,10,40.8571434,38.40930939,3,2,1,8.424366872,1.37,30.7 -458,1216,3608,0,-0.22,31,20.125,2,5,female,2005,18.36547291,17,40.7142868,32,3,2,1,8.930869268,1.39,29.8 -459,1218,3722,0,-1.1,30,7,2,5,female,2006,26.72992706,14,38.8571434,35,2,2,1,8.640771161,1.389,26.1 -460,1219,3910,0,0.09,32,22.3125,2,3,male,2006,23.42355728,25,40.1428566,26.8911705,3,2,0,8.826945015,1.254,23 -461,1220,3220,0,0.38,33,7,2,3,female,2005,22.95908737,11.5,40.1428566,30,2,2,0,8.506502396,1.214,26.8 -462,1225,4000,0,2.16,12,45.3125,4,3,female,2007,31.70738792,8,40.42856979,30,2,0,1,6.88569473,1.16,27.15 -463,1226,2080,0,-0.89,34,5.0625,2,5,male,2006,21.56454468,12,31.7142849,27,2,2,0,8.169746749,1.289,30.9 -464,1228,3736,0,-0.03,30,0,2,5,male,2007,19.83516296,10,40.8571434,29,3,2,0,6.918548939,1.197,22.1 -465,1233,3390,0,0.73,34,12,2,3,male,2006,19.83471107,23,39,31.9096508,3,2,0,8.057494867,1.361,31.4 -466,1234,3524,0,-0.35,35,2,2,5,male,2005,22.64737701,24,38.57143021,35,3,2,1,8.539242528,1.318,27.8 -467,1236,3232,0,0.99,34,10,2,5,female,2005,22.05805119,18,41.1428566,28,3,2,0,8.574834588,1.315,31.2 -468,1241,3630,0,-0.07,32,9,2,3,male,2006,27.51338577,10,39.1428566,30.05825615,2,2,0,9.549737623,1.404,31.8 -469,1242,4215,1,0.18,32,21,2,5,female,2005,23.7654321,10,41.42856979,36,3,2,1,8.75553274,1.31,30.3 -470,1246,3890,0,-0.34,28,12.25,2,5,female,2006,24.61810377,0,39.57143021,32,3,2,0,8.032854209,1.256,23.9 -471,1249,3650,0,1.01,30,5,3,3,male,2006,24.72946167,12,41.1428566,26.65023994,3,2,0,8.432694501,1.3,30.3 -472,1250,3400,0,3.97,26,42.4375,4,3,female,2006,23.03004456,9,40.7142868,31,3,2,1,8.84337212,1.524,55.9 -473,1255,3580,0,1.66,25,1,3,3,female,2005,23.03004456,18,40.7142868,27.50444984,2,2,0,9.086926762,1.374,38.8 -474,1257,3882,0,0.28,29,15,2,5,male,2005,25.90945695,28,41.1428566,30,2,2,0,8.648756559,1.305,23.9 -475,1258,3310,0,0.13,30,1.0625,2,3,male,2005,17.84651947,8,40.57143021,28.0848732,3,2,0,9.741159023,1.426,34.8 -476,1259,3350,0,1.45,27,36,3,3,male,2006,25.15315056,13,39.8571434,31.72621536,1,2,1,8.353296829,1.265,29.9 -477,1261,3210,0,0.63,32,9,2,5,male,2006,20.90419501,9,40.7142868,37,3,2,1,8.268309377,1.347,30.6 -478,1266,3340,0,0.6,26,17,2,3,female,2006,20.56933022,14,38.7142868,32.62696838,2,2,1,8.038329911,1.314,26 -479,1268,2935,0,-0.03,31,25,2,3,female,2005,25.39021873,20,41,33.83333206,1,2,1,8.865160849,1.263,25.5 -480,1269,3830,0,-0.81,33,45,2,3,male,2005,23.11111069,10,40.1428566,30.6420269,3,1,0,9.703057267,1.248,22.35 -481,1270,4075,0,0.42,31,3,2,5,male,2006,23.05456246,18,41.42856979,30,3,0,1,8.178074378,1.29,27.4 -482,1273,3714,0,0.28,32,23,2,5,female,2006,18.36547291,13,40,35,2,2,1,8.854209446,1.3,31.6 -483,1276,2780,0,1.47,31,9,3,3,female,2005,21.1927433,21,39.7142868,35.71800232,1,2,1,8.777549624,1.355,34.8 -484,1277,3800,0,-0.2,27,0,2,5,female,2005,18.37682515,15,41.57143021,33,3,2,0,9.295117499,1.35,28.9 -485,1279,4140,0,0.5,32,11.0625,2,5,male,2006,18.30576947,22,40.1428566,22.41392708,2,0,0,8.189025781,1.397,30 -486,1282,3050,0,0.32,13,0,2,5,male,2006,22.49134948,10,41.8571434,37,3,2,2,8.514715948,1.414,32.8 -487,1283,3730,0,0.2,29,7,2,5,female,2005,20.9839876,12,40.8571434,40,3,2,0,9.557723021,1.38,35.3 -488,1286,3150,0,0.46,24,10,2,3,female,2006,21.45328712,15,38.57143021,27.70705032,2,2,0,8.60244125,1.39,32.5 -489,1287,3212,0,-1.63,28,7.0625,2,5,female,2006,34.15365955,10,39.8571434,30,3,0,0,8.090349076,1.322,23.3 -490,1289,3560,0,-1.47,33,8,2,5,female,2005,22.09317005,10,39.57143021,35,2,2,1,8.851471595,1.366,25.7 -491,1290,2560,0,1.2,29,36,3,5,female,2005,27.63605442,14,40.1428566,33,3,2,0,8.867784622,1.355,28 -492,1292,3185,0,-0.61,31,22,2,3,male,2005,20.2020202,10,38.42856979,30.18754196,3,2,0,9.703057267,1.268,24.4 -493,1295,3690,0,3.45,26,13.25,4,3,male,2006,26.813591,30,41.42856979,32.20807648,2,2,2,8.49566507,1.377,41.7 -494,1296,2810,0,-0.41,30,26.0625,2,5,female,2006,25.30693205,14,39.57143021,24.68584442,3,0,0,8.279374857,1.235,23 -495,1298,3420,0,-0.46,34,28.5625,2,3,female,2006,22.49135017,9,39.57143021,31.73169136,3,2,0,8.63529546,1.2,23.6 -496,1300,4000,0,-1.18,32,18.3125,2,5,male,2006,20.79673004,20,41.57143021,36,3,2,1,8.114989733,1.336,24.6 \ No newline at end of file diff --git a/tests/testthat/data_files/GAMLSS/gamlss2.rda b/tests/testthat/data_files/GAMLSS/gamlss2.rda deleted file mode 100644 index 66bbaddf..00000000 Binary files a/tests/testthat/data_files/GAMLSS/gamlss2.rda and /dev/null differ diff --git a/tests/testthat/data_files/GAMLSS/gamlss3.csv b/tests/testthat/data_files/GAMLSS/gamlss3.csv deleted file mode 100644 index de53b7fc..00000000 --- a/tests/testthat/data_files/GAMLSS/gamlss3.csv +++ /dev/null @@ -1,199 +0,0 @@ -rowID,ID,e3_bw,hs_asthma,hs_zbmi_who,hs_correct_raven,hs_Gen_Tot,hs_bmi_c_cat,h_cohort,e3_sex_None,e3_yearbir_None,h_mbmi_None,hs_wgtgain_None,e3_gac_None,h_age_None,h_edumc_None,h_native_None,h_parity_None,hs_child_age_None,hs_c_height_None,hs_c_weight_None -1,4,3270,0,-0.76,28,54.5,2,2,female,2005,21.04804802,21,39.2857132,32.72552872,1,2,1,10.13826146,1.345,27.7 -2,7,3350,0,0.04,34,21.1875,2,2,male,2003,27.51717567,20,40,39.60027313,1,2,2,11.34302989,1.315,29.8 -3,9,3000,0,-1.78,35,19.0625,2,2,female,2004,23.02895164,12,40.8571434,30.3874054,2,2,1,10.71594798,1.51,24.3 -4,13,3390,0,0.2,30,26.3125,2,2,female,2004,21.64412117,5,40.42856979,34.23682404,3,2,1,10.57095597,1.435,31.5 -5,14,2850,0,-0.55,33,43.5625,2,2,male,2004,16.95501709,20,39.7142868,26.93223763,2,2,0,10.38478211,1.39,30.8 -6,20,3050,0,-0.01,31,36.25,2,2,female,2005,23.79536057,17,39,34.05612564,3,2,0,9.957563313,1.415,33.2 -7,22,3310,0,0.09,33,32.0625,2,2,female,2004,22.29099655,13,39.7142868,23.60301208,3,2,0,10.63928816,1.44,36.1 -8,24,3050,0,-0.84,32,75.5625,2,2,female,2003,28.46489143,5,41.57143021,27.74811745,3,2,0,11.08008214,1.425,31.8 -9,29,3700,1,0.85,31,23.375,2,2,female,2004,24.87771988,12,41.7142868,25.83709717,3,2,1,10.64191193,1.355,35.1 -10,31,3410,0,-1.47,31,19.0625,2,2,female,2004,20.44523048,13.5,40,38.19301987,3,2,1,10.67225645,1.435,26.1 -11,38,2780,0,-0.34,36,13.1875,2,2,female,2003,18.40332031,20,39.57143021,29.21834373,3,2,0,11.57574721,1.435,34.4 -12,51,3080,0,0.35,29,2,2,2,male,2005,20.65753937,15,39.7142868,27.10472298,3,2,0,10.26956423,1.485,39.1 -13,55,3460,0,0.75,28,31.1875,2,2,female,2005,19.79411316,20,41,40.16700745,3,1,0,10.5269222,1.685,37.8 -14,57,4010,0,-0.77,35,23,2,2,female,2004,18.14486885,25,41.1428566,40.8432579,1,2,2,10.90485969,1.53,36.7 -15,66,3410,0,0.28,31,9.0625,2,2,male,2004,20.46334457,10,40.42856979,36.64339447,2,1,2,11.34827744,1.45,37.4 -16,83,2580,0,1.16,33,16.3125,3,2,male,2004,27.34375,8,40.1428566,29.37713814,2,2,0,10.6914214,1.435,40.6 -17,84,3250,0,1.45,31,39.3125,3,2,male,2004,25.53670311,15,41.1428566,39.19233322,1,2,1,10.84462697,1.36,38.5 -18,86,3030,0,-0.52,33,9,2,2,female,2004,22.86253357,15,38,27.60848808,3,2,1,10.71047228,1.505,36.9 -19,110,3660,0,1.35,35,13.125,3,2,male,2005,26.48756027,18,37.8571434,21.86995125,1,2,0,10.36812685,1.435,40.5 -20,116,3400,1,0.07,36,46.63849258,2,2,male,2004,22.27531052,6,39.2857132,40.16700745,3,1,1,10.40098106,1.455,38.8 -21,117,3180,0,-1.88,32,20.22222137,2,2,female,2004,17.52448463,5,40.57143021,39.80287552,2,2,2,9.963153091,1.46,24.8 -22,126,3530,0,0.01,34,29.25,2,2,male,2004,22.16343689,11,41.2857132,28.8432579,3,2,0,10.63928816,1.43,34.3 -23,133,3720,1,0.25,35,15.125,2,2,female,2005,20.3244381,10,40.1428566,29.9520874,3,2,1,10.06148757,1.39,33.4 -24,137,3330,1,-0.18,34,41.5,2,2,male,2004,24.44727898,13.5,37.42856979,22.26694107,2,2,0,10.75975359,1.435,41.6 -25,153,3820,0,-0.58,34,23.1875,2,2,male,2004,23.19296074,13,41.2857132,40.56126022,3,2,1,11.18948209,1.42,33.3 -26,161,3850,1,-0.43,35,23,2,2,male,2003,19.85254478,16,40,28.43258095,2,2,2,11.18423454,1.4,31.9 -27,168,3780,0,-0.78,32,28.0625,2,2,male,2005,20.79673004,13,41.42856979,38.14647675,3,2,1,10.40668492,1.38,33.2 -28,173,3270,0,-0.6,33,26,2,2,female,2003,21.4174614,12,38.2857132,34.1327858,2,2,2,11.80835044,1.5,37.3 -29,178,3215,0,0.62,32,22.1875,2,2,female,2004,19.3337307,21,40.1428566,32.2546196,3,2,2,10.69952088,1.455,26.1 -30,181,3550,0,1.47,33,37.1875,3,2,male,2003,27.81588173,7,42.2857132,27.51539993,3,2,1,11.51825234,1.535,48 -31,186,3370,0,0.71,29,19.3125,2,2,female,2004,21.07719612,10,40.7142868,36.95550919,2,2,2,11.4002966,1.36,35.8 -32,195,3520,0,-1.11,34,11,2,2,male,2004,20.14797211,13,37.8571434,34.60095978,3,2,0,11.15674196,1.6,39 -33,201,3330,0,-1.17,32,11.125,2,2,male,2004,22.81131744,21,39.2857132,27.98631096,3,2,1,11.17590691,1.43,32.3 -34,208,2290,0,-0.27,34,56.375,2,2,male,2004,27.92728233,11,37.7142868,25.56878853,3,2,0,11.01163587,1.475,37.1 -35,212,3300,0,-1.07,33,24,2,2,female,2005,17.68850517,13,38,26.34086227,2,2,1,9.705566963,1.285,24.3 -36,213,3120,0,1.25,30,14.1875,3,2,male,2004,24.03461075,17,40.7142868,28.54483223,2,2,0,10.56548026,1.51,46.2 -37,214,3540,0,1.36,30,23.3125,3,2,male,2005,27.18090057,5,40.42856979,30.93223763,3,2,1,11.18948209,1.4,39.9 -38,216,3430,0,-0.47,34,34,2,2,male,2003,21.58579826,23,40.8571434,32.27364349,3,2,0,10.18206708,1.38,30 -39,237,3440,0,0.71,34,12.0625,2,2,male,2005,22.68905067,12,41.2857132,29.67282677,3,2,1,10.365389,1.44,38.5 -40,238,3030,0,0.28,34,6.125,2,2,female,2003,20.30072975,16,39.7142868,32.00547409,3,2,0,11.45254392,1.535,43 -41,253,2770,1,0.18,33,38.5625,2,2,female,2004,20.54569435,10,40,26.24777603,3,2,0,10.6914214,1.325,30.6 -42,263,2630,0,-1.62,35,3,2,2,female,2003,18.97092247,9,40,30.01231956,3,2,0,11.15674196,1.29,30.4 -43,273,2960,0,-0.98,34,14.1875,2,2,female,2003,25.15315056,20,40.2857132,17,2,2,0,12.10130048,1.52,37.1 -44,283,4060,0,0.57,35,32.125,2,2,male,2003,25.37532234,20,40.57143021,34,3,1,2,10.9486653,1.44,37.5 -45,306,3380,1,1.16,34,26.1875,3,2,female,2005,22.91892242,12,40.42856979,30.52703667,3,1,0,10.25861282,1.465,42.3 -46,310,3870,0,0.17,33,1,2,2,male,2004,33.12130737,14,38.2857132,30.15468788,2,2,0,10.26694045,1.39,33.1 -47,333,2740,0,1.14,34,6.25,3,2,female,2005,18.96192741,7,41.2857132,32.62696838,3,2,0,9.275952544,1.395,36.8 -48,334,3520,0,0.7,33,17.0625,2,2,female,2005,21.58579826,11,39.57143021,27.55099297,3,2,0,9.4865389,1.343,33.3 -49,341,3100,0,-0.23,30,26.125,2,2,female,2005,22.27530992,10,37.7142868,31.44695473,3,1,0,10.04243669,1.435,32.6 -50,349,2300,0,0.26,34,46.25,2,2,female,2004,20.54569435,10,35.8571434,38.87747955,3,2,2,10.3464522,1.455,32.3 -51,354,4070,0,-0.98,33,1.0625,2,2,male,2004,25.94436646,12,42.42856979,32.62696838,3,2,0,11.08555784,1.48,33.7 -52,355,3000,0,0.47,36,30.1875,2,2,female,2003,26.5625,12,37.8571434,28.73374367,1,2,1,11.23351586,1.52,42.9 -53,358,2870,1,0.07,27,55,2,2,male,2004,25.53670311,20,38.8571434,28.02737808,2,2,0,10.98973306,1.39,33.2 -54,359,2877,1,1.41,33,23.1875,3,2,male,2004,26.27477455,15,39.7142868,22.37371635,2,2,0,10.5927447,1.445,45.6 -55,366,3150,0,1.64,34,18.125,3,2,female,2004,19.28937912,8,40.42856979,40,3,2,0,11.05544148,1.45,46.7 -56,379,5260,0,1.97,34,37.4375,3,2,male,2004,25.97668266,20,40.42856979,30.79657555,2,2,1,10.31348392,1.51,46.1 -57,398,2860,0,-1.51,33,9,2,2,male,2004,18.67093468,6,38.57143021,30.34907532,2,2,2,11.23054985,1.396,28.6 -58,400,3920,0,-0.3,29,8.125,2,2,male,2004,21.17546272,13,39.8571434,31.29637146,3,2,1,10.98973306,1.64,45.9 -59,402,3580,0,-1.1,31,50.5,2,2,male,2004,19.9369297,8,41.1428566,28.38603783,3,2,0,10.66951859,1.405,29.7 -60,418,3010,0,0.47,29,15,2,2,male,2004,19.03114187,10,38.42856979,30.28884315,3,1,0,11.27173169,1.52,41.4 -61,422,3110,0,-1.07,34,33,2,2,male,2004,18.359375,12,38,29.99041748,2,2,1,10.23134839,1.3,25.2 -62,423,3290,0,-1.76,33,26.125,2,2,female,2003,19.83516312,12,40,37.1937027,3,2,2,11.59194616,1.515,33.3 -63,424,2930,0,1.45,28,17,3,2,female,2004,35.62901688,9,35.8571434,28.3449688,1,2,2,10.90485969,1.435,43.9 -64,428,3850,0,-0.73,34,9.0625,2,2,male,2004,20.5498867,6,41.42856979,27.21149826,3,2,0,11.03080082,1.455,33.1 -65,431,3910,0,1.68,36,21.125,3,2,female,2003,24.42583656,15,38.1428566,38.40930939,2,2,2,11.04996578,1.405,44.1 -66,435,3756,1,-1.1,34,48.3125,2,2,male,2003,20.12639236,8,39.57143021,30.8172493,1,2,1,11.23351586,1.395,29.8 -67,441,4800,0,3.05,33,82.6875,4,2,male,2003,31.4113884,10,39.2857132,33.65913773,3,2,1,11.24994296,1.57,71.1 -68,443,3360,0,1.13,33,33.1875,3,2,male,2004,31.50136566,12,40.2857132,29.23750877,3,1,0,11.33744011,1.51,44.5 -69,444,2810,1,1.18,33,52.3125,3,2,male,2003,20.390625,11,40,21.70020485,2,2,0,11.42790326,1.385,38.4 -70,450,3290,0,-0.28,36,11.0625,2,2,male,2003,19.95546913,13,42,25.12525749,3,2,0,11.61943874,1.46,35.3 -71,452,4150,1,1.27,34,84.875,3,2,female,2004,34.2935524,17,41,33.57973862,3,2,0,10.81998631,1.47,44.5 -72,456,3150,0,-0.52,32,33.1875,2,2,female,2005,20.12364388,14,40.42856979,26.96509171,2,2,1,10.02600958,1.345,28.3 -73,460,3620,0,-0.38,27,48,2,2,male,2004,24.76756668,22,42,33.24298477,2,2,0,11.07734428,1.405,32.4 -74,462,2730,0,-0.28,31,61.375,2,2,male,2003,22.98539734,6,39.8571434,27.22984505,2,2,0,11.15674196,1.405,33.8 -75,477,2520,0,-0.19,32,23.1875,2,2,female,2004,23.0871048,16,40.2857132,27.06365585,2,2,1,11.43862651,1.485,38.1 -76,479,3570,0,-1.11,26,35.125,2,2,male,2005,21.5349084,17,41.7142868,35,2,2,2,9.776865161,1.35,26.8 -77,487,3910,0,0.77,34,65.5625,2,2,male,2003,22.03172493,13,38,29.63449669,3,2,0,11.96988364,1.535,48.3 -78,506,4130,0,-0.46,33,72,2,2,female,2005,18.40332031,10,41.2857132,35.61669922,3,2,2,9.645448323,1.37,29.2 -79,509,2960,0,0.39,29,37.375,2,2,female,2003,22.67573738,8,41.42856979,31.60848808,2,2,2,11.59194616,1.36,26.1 -80,516,3200,0,-0.18,31,7.0625,2,2,male,2004,23.22543144,8,41.42856979,28.83504486,3,2,1,10.91318731,1.455,38 -81,537,3340,0,-1.05,27,52,2,2,female,2005,24.50894547,20,39.57143021,27.45342445,2,2,1,10.45300023,1.48,32.8 -82,538,2500,1,0.11,33,10.125,2,2,male,2004,32.86338806,17,39.2857132,28.9445591,2,2,1,10.94045175,1.32,30.7 -83,549,3400,0,0.74,32,19.0625,2,2,female,2003,23.61275101,10,41,29.98768044,2,2,0,11.76180698,1.53,44.6 -84,560,2780,1,-0.68,32,26.125,2,2,male,2003,19.26615715,9,36.2857132,29.78013611,3,2,2,11.72347707,1.37,30.3 -85,579,3510,0,0.11,34,31.4375,2,2,male,2003,23.59728241,13,40.1428566,35,1,2,0,11.46052932,1.405,34.5 -86,585,3440,0,-0.67,32,42,2,2,male,2005,24.47709846,13,40.57143021,35.75359344,3,2,2,9.538672142,1.345,33.1 -87,599,3070,0,1.12,35,15.3125,3,2,female,2004,27.28174591,20,39.42856979,37.82614517,3,2,0,10.57095597,1.52,47 -88,600,3590,0,0.56,35,18.375,2,2,male,2005,21.604105,10.5,40,38.85557938,3,2,2,9.927446954,1.536,33.5 -89,604,3970,0,0.06,35,33.125,2,2,female,2004,27.41480255,16,40.7142868,37.17727661,3,1,2,11.46326717,1.315,41.2 -90,608,2900,0,2.44,34,26.1875,4,2,male,2004,20.07960129,5,42,38.18480682,3,2,0,10.66951859,1.46,52 -91,613,2770,1,0.19,30,30.125,2,2,male,2004,19.44444466,13,36.8571434,21.21013069,2,2,0,10.59536847,1.685,65.1 -92,617,3630,1,1.78,36,29.25,3,2,male,2004,29.38475609,4,41,33.77686691,2,2,0,10.91581109,1.52,49.7 -93,619,3530,1,-0.35,35,16.1875,2,2,female,2004,28.19544411,13,41.57143021,24.12046623,3,2,0,10.49965777,1.45,34.8 -94,623,3410,0,3.23,34,43.375,4,2,female,2004,25.01352119,19,38.2857132,36.39151382,3,2,2,10.19575633,1.46,65.1 -95,627,3550,0,-0.03,31,9.1875,2,2,male,2003,20.96436119,12,40.7142868,34.11362076,2,2,1,11.23351586,1.485,37.6 -96,641,3700,0,1.51,31,54.1875,3,2,male,2005,26.76621437,11,40.57143021,25.43036461,3,2,0,10.00958248,1.4,34.6 -97,642,3500,0,-1.86,33,48,2,2,male,2003,24.81354713,20,41,29.01643753,3,2,0,11.37303217,1.44,36.5 -98,648,1780,0,1.4,31,37,3,2,male,2003,19.3337307,18,34.2857132,31.52908897,2,2,1,11.61943874,1.475,45.4 -99,653,3200,0,0.68,31,15.125,2,2,female,2004,20.12875748,13,40.42856979,24.90622902,3,2,1,10.41193247,1.44,38.3 -100,662,3534,0,0.05,34,18,2,2,male,2003,20.51163483,18,41.57143021,29.48117638,3,2,0,11.57574721,1.56,41.7 -101,663,3440,0,2.43,28,14.125,4,2,male,2004,22.265625,20,39.2857132,28.49281311,2,2,2,10.91866302,1.495,54.4 -102,664,3320,0,1.01,29,46.375,3,2,female,2004,19.53125,17,40.8571434,32,3,1,0,11.18685832,1.41,34.7 -103,671,3565,0,1.38,28,12.1875,3,2,male,2004,24.69040489,10,38,38.60917282,3,2,1,10.54608715,1.52,45.9 -104,673,3320,0,0.74,27,2.0625,2,2,male,2004,20.70081711,10,39.7142868,34.45585251,2,2,1,11.17590691,1.39,37.2 -105,683,3255,0,-1.88,34,13,2,2,male,2005,18.91576385,21,40.8571434,23,3,2,0,9.883641342,1.395,22.7 -106,694,2740,0,0.71,32,39.25,2,2,male,2003,20.6727562,13,39.42856979,34.51060867,2,2,1,10.48037874,1.455,38.5 -107,704,3040,0,1.36,27,35.375,3,2,female,2004,24.03440666,10,39.57143021,33.40451813,2,2,2,10.81188684,1.435,44.5 -108,719,2930,0,1.49,33,20,3,2,female,2005,18.98160553,10,41.2857132,29.68377876,3,2,2,10.12183436,1.42,34.7 -109,721,3180,0,1.14,34,39.25,3,2,male,2004,27.76342964,32,41,21.45927429,2,2,1,11.59217431,1.445,41.8 -110,722,3280,1,-0.88,34,8.125,2,2,male,2004,18.21019745,6.5,41,31.16221809,3,2,1,11.3977869,1.49,34.8 -111,723,3000,1,-0.01,36,35.25,2,2,male,2003,23.7118454,16,39.42856979,27.09650993,3,2,0,11.11019849,1.495,38 -112,737,2770,0,1.76,34,29,3,2,female,2003,34.41613388,0,37.57143021,36.7638588,2,2,2,11.55110655,1.53,56.9 -113,753,1910,0,-1.3,36,44.3125,2,2,female,2004,19.39618874,12,34.1428566,30.1382618,3,2,0,11.18948209,1.28,24.7 -114,758,4200,0,2.07,35,26.3125,4,2,male,2004,23.10843468,18,40.1428566,24.11225128,3,2,0,10.76534337,1.48,49.3 -115,762,4070,0,0.45,34,10,2,2,male,2004,24.23668671,9,41.8571434,29.53045845,3,1,1,10.52977413,1.39,35.9 -116,766,3885,1,1.26,36,12.0625,3,2,male,2004,22.92097092,8,40,25.04038239,2,2,0,10.91866302,1.52,45.8 -117,787,3370,0,0.55,34,15.1875,2,2,female,2004,34.52708817,7,41.7142868,27.52087593,2,2,0,10.50239562,1.335,33.2 -118,789,3220,0,-0.44,32,13.25,2,2,male,2004,20.20202065,18,40,32,3,2,0,9.820670773,1.48,34.3 -119,804,3740,0,-1.47,31,14,2,2,female,2003,17.0992775,17,38.1428566,38.74332809,2,2,0,11.32386493,1.41,28.9 -120,805,3120,0,-1.1,32,11,2,2,female,2003,24.609375,21,39.57143021,33.10335541,3,2,0,11.24172941,1.475,31.4 -121,827,3290,0,-2.23,34,18,1,2,female,2004,15.88278389,10,38.2857132,32.91444397,1,1,0,10.54905316,1.385,24.9 -122,831,3620,0,-0.32,36,24,2,2,female,2004,26.33288875,17,40.1428566,21.45927429,3,2,0,11.03627652,1.46,34.9 -123,832,2870,0,-0.94,35,15,2,2,male,2004,22.62184334,20,35.57143021,36.2600975,3,2,2,11.27173169,1.495,34.7 -124,833,1780,1,0.24,34,37,2,2,male,2004,24.09297052,16,34,27.12662506,2,2,0,10.68309377,1.434,35.5 -125,838,3340,0,-1.73,36,16.125,2,2,male,2004,20.02884102,10,38.8571434,28.48186111,3,2,0,10.54905316,1.345,24.3 -126,839,3540,0,0.96,34,47.3125,2,2,male,2004,35.32574463,5,40.2857132,29.11704254,2,2,1,11.00616016,1.36,35.1 -127,845,2640,0,1.28,34,57.5,3,2,male,2003,33.73250198,8,38.57143021,35.34839249,2,1,2,11.01437372,1.345,36.1 -128,867,3400,1,-2.05,35,69.5625,1,2,male,2003,19.140625,10,41.57143021,32.28401947,3,2,1,11.2253023,1.41,24.9 -129,869,3185,1,1.96,33,50.75,3,2,male,2004,27.64948082,3,37.8571434,25.05133438,2,2,1,10.97604381,1.455,50.2 -130,870,3730,0,2.45,30,54,4,2,female,2004,34.8825264,17,39,37.70568085,3,2,2,10.35728953,1.45,44 -131,871,3670,0,0.84,33,8.125,2,2,male,2003,25.63116837,6,40.1428566,36.80766678,2,2,1,11.51825234,1.535,45.1 -132,874,4340,0,-0.29,35,30.1875,2,2,male,2004,25.02976036,27,40.42856979,30.27241707,3,2,0,10.97604381,1.495,36.5 -133,875,3202,0,1.78,36,33.125,3,2,male,2003,20.95717049,15,39.57143021,28.38603783,3,2,0,11.49634953,1.5,49.1 -134,889,4550,0,-0.07,31,20,2,2,male,2003,20.51913452,16,39.7142868,30.14099884,3,2,0,11.40600046,1.515,37.4 -135,900,3090,0,-0.57,34,28,2,2,male,2003,20.02884102,10,41.1428566,24.53114319,3,2,0,12.06844627,1.43,33.8 -136,901,2550,0,-0.1,33,35.125,2,2,male,2004,20.56933022,10,39,28.86242294,3,2,2,11.72610084,1.38,32.7 -137,909,3530,0,-0.8,31,48.375,2,2,male,2004,22.12711525,11,40.42856979,39.92333984,3,2,2,10.00410678,1.35,27.7 -138,914,1280,1,1.06,33,34,3,2,female,2004,25.46198082,4,31.1428566,36.34223175,2,2,0,10.74321241,1.505,37.3 -139,922,3240,0,2.21,33,23.3125,4,2,male,2004,32.46489716,12,39.57143021,24.76369858,2,2,1,11.00616016,1.375,41.4 -140,942,3500,0,-1.05,34,24.1875,2,2,male,2004,22.65625,12,41.42856979,21.67556381,2,1,0,10.75154004,1.29,25.2 -141,944,3420,0,0.11,35,68,2,2,female,2004,19.89143372,12,41.2857132,28.17795944,3,2,1,11.24994296,1.4,34.9 -142,954,2710,1,0.42,33,25.3125,2,2,male,2005,18.27812195,19,39.57143021,29.86995125,3,1,0,10.81998631,1.425,35.4 -143,960,3390,1,-1.17,33,16,2,2,female,2004,26.98600006,10,40,29.90280724,3,1,1,10.34086242,1.385,29.5 -144,969,3940,0,1.42,31,17.1875,3,2,male,2004,25.8064518,24,40.1428566,33.17179871,2,2,0,10.52977413,1.42,39.9 -145,979,3480,0,0.41,26,21.1875,2,2,male,2004,32.66076279,0,40,24.73100662,2,2,0,10.3464522,1.34,31.1 -146,985,3670,0,1.62,34,34.375,3,2,female,2003,21.82995224,16,38.8571434,32.10129929,3,2,2,11.08008214,1.495,50.1 -147,991,3360,1,1.96,31,48.375,3,2,male,2003,31.23140907,20,42.57143021,29.51950645,3,2,0,11.2198266,1.43,50.1 -148,997,3570,0,0.26,34,22.25,2,2,male,2003,22.49135017,20,39.2857132,30.6365509,2,2,1,11.34576774,1.375,39.1 -149,1014,4250,0,1.57,31,42.125,3,2,male,2004,19.03149223,25,40.57143021,21.70020485,3,2,0,11.02806297,1.48,41.7 -150,1026,4440,0,-0.12,34,10.1875,2,2,male,2003,28.54828072,13,39.7142868,34.63381195,3,2,1,11.71241159,1.48,37.5 -151,1033,3420,0,0.06,33,24.0625,2,2,female,2004,28.37178612,13,41,32,3,2,0,10.93771389,1.45,36.7 -152,1034,4090,0,-0.35,32,25.125,2,2,male,2004,22.40817899,28,39.7142868,34.05612564,2,2,2,11.49634953,1.565,40.6 -153,1035,3490,0,0.39,35,39.125,2,2,male,2005,21.69664001,12,39.42856979,27.09650993,2,2,0,10.59810632,1.515,39.4 -154,1038,3790,1,-0.59,34,28,2,2,male,2004,18.49548531,17,42.57143021,28.78850174,2,2,0,11.15674196,1.46,33.8 -155,1042,3690,0,-0.09,33,43.6875,2,2,male,2004,26.70940208,12,36.57143021,25.43463326,2,2,0,11.24161533,1.435,37 -156,1045,3622,0,2.21,33,4.0625,4,2,male,2005,27.81588173,35,41,27.42505074,2,2,2,10.37907826,1.465,48.3 -157,1061,3500,0,-0.18,26,33,2,2,male,2005,20.3074131,21,38.57143021,22.0314846,2,2,0,9.659137577,1.445,57.3 -158,1063,4100,0,-0.34,35,27.125,2,2,male,2005,18.98160553,20,40.8571434,28,2,2,1,10.15183664,1.445,33.3 -159,1065,2620,1,2.27,32,17,4,2,female,2003,22.9481163,16,38.42856979,31.60848808,3,2,1,9.369039471,1.452,44 -160,1077,3360,0,-0.23,31,34.375,2,2,female,2003,26.42702484,10,38.42856979,33.89459229,3,2,2,10.73511294,1.485,36.6 -161,1078,3650,0,1.49,34,24,3,2,female,2003,24.38652611,8,40.1428566,35.13210297,3,2,0,11.34302989,1.46,46.7 -162,1079,3190,0,-1.07,36,10.0625,2,2,female,2005,21.30394936,10,40.1428566,28.44353104,3,2,1,9.538672142,1.345,26.3 -163,1086,2960,0,-0.23,33,25.3125,2,2,male,2005,20.79673004,8,40,35.94797897,3,2,1,10.16563997,1.415,32.7 -164,1095,3310,1,-0.73,33,12.0625,2,2,female,2004,18.30576897,12,37.57143021,29.48117638,1,2,0,10.40668492,1.46,32.8 -165,1105,3350,0,0.52,31,33.1875,2,2,male,2005,24.15093994,15,40.42856979,28.29294968,3,2,0,10.20933151,1.46,36.8 -166,1116,2850,1,1.01,34,89,3,2,male,2005,23.61275101,20,38.2857132,28,3,2,0,10.29968058,1.45,39.1 -167,1120,3680,1,-0.4,34,28,2,2,female,2004,20.390625,9,42.42856979,33.99589157,3,2,2,10.62297513,1.43,33.1 -168,1121,3220,0,-0.36,33,17.125,2,2,male,2003,25.72755432,12,38.2857132,26,2,2,1,11.03080082,1.55,39.2 -169,1129,3760,1,1.75,26,23.125,3,2,male,2003,25.47542572,10,41.42856979,30.6420269,2,2,2,11.70146019,1.485,46.2 -170,1133,2550,0,-0.76,32,35,2,2,male,2004,26.89232254,18,37.57143021,31.93155289,2,2,1,10.40645676,1.33,27.3 -171,1139,3350,0,1.46,31,37,3,2,female,2003,21.13252831,12,40.8571434,38.40930939,3,2,0,11.34576774,1.47,46.7 -172,1143,3680,0,-1.25,32,18,2,2,male,2004,17.00680351,21,37.7142868,26.87748146,3,2,1,10.59536847,1.435,30.5 -173,1146,2560,0,-1.52,28,1,2,2,female,2004,19.95728441,11,39.57143021,33.71115494,3,1,2,11.26625599,1.315,32.3 -174,1147,3460,0,0.05,33,26.3125,2,2,male,2005,19.81767654,13,40.1428566,26.73241997,3,2,1,10.35728953,1.37,31.5 -175,1152,3550,0,0.88,32,26.375,2,2,male,2005,24.42583656,19,38.57143021,24.7748127,3,2,0,10.5927447,1.53,43.5 -176,1166,3130,0,1.45,30,34,3,2,female,2003,29.58579826,3,39.1428566,31.27994537,3,2,1,11.22245038,1.465,46.4 -177,1173,1400,0,0.52,27,44.375,2,2,female,2003,30.25132179,0,30.8571434,20.98562622,1,2,0,11.48539813,1.475,41.1 -178,1175,3090,0,1.2,33,28.125,3,2,female,2004,24.16326531,8,40.7142868,30.56262779,3,2,0,11.24994296,1.45,36.3 -179,1177,3212,0,1.33,29,19,3,2,female,2003,22.64737701,9,40.7142868,31.55646896,3,2,1,11.62765229,1.58,51.3 -180,1182,3310,0,2.5,34,39.375,4,2,male,2004,28.76397133,30,39.57143021,29.23750877,2,2,0,11.04722793,1.425,51.6 -181,1188,3310,0,0.04,34,6.125,2,2,female,2004,20.62494469,10,36.42856979,28.005476,3,2,0,10.86926762,1.42,35.3 -182,1193,3960,0,-0.73,34,37.25,2,2,female,2004,29.71918678,15,39.7142868,30.43394852,2,2,1,10.66119097,1.355,28.7 -183,1194,2960,0,-0.32,34,12,2,2,female,2004,24.02380943,12.69999981,40.8571434,30.71321106,3,2,0,10.96783025,1.46,35.3 -184,1199,3140,1,0.44,29,34.3125,2,2,female,2003,20.44913673,30,40.57143021,27.1567421,2,2,1,10.19849418,1.52,41.4 -185,1208,3350,0,0.67,32,23.25,2,2,male,2004,23.42209053,8,41,30.10266876,2,2,0,10.58167922,1.375,33.8 -186,1214,3460,1,-1.47,31,13.125,2,2,female,2005,28.43531418,5,39.1428566,35.71526337,1,2,2,9.484029204,1.33,23.4 -187,1215,3820,0,0.84,28,24.25,2,2,male,2005,19.72318268,11,40.7142868,35.34839249,2,2,1,10.15731234,1.49,40.4 -188,1217,3640,0,-1.99,33,0,2,2,male,2004,22.4996376,15,38.7142868,30.02874756,3,2,0,10.51870865,1.495,27.6 -189,1227,3590,0,-1.24,32,43,2,2,female,2004,24.9107666,20,42,28.2546196,2,2,1,10.65309149,1.415,29.6 -190,1239,3770,0,-0.64,34,13.0625,2,2,female,2004,24.82883263,10,37.57143021,25.21013069,3,2,0,11.81930185,1.515,37.9 -191,1240,3040,0,-2.22,35,19,1,2,female,2004,30.25132179,12,39.57143021,27.69609833,2,2,0,10.77081907,1.316,25.9 -192,1244,3590,0,0.06,35,16.1875,2,2,female,2003,18.2898941,10,40.7142868,29.11704254,3,2,1,11.34576774,1.435,35.2 -193,1247,3400,1,-0.39,28,14.1875,2,2,male,2004,20.93663979,23,40.8571434,28.58589935,3,2,0,10.43680128,1.41,31.8 -194,1252,2820,0,-1.43,23,26.125,2,2,female,2004,19.23356056,15,39.2857132,22.82272339,2,2,0,10.34371435,1.325,24.4 -195,1260,3500,1,-0.92,31,29,2,2,female,2004,21.49489021,12,39.42856979,29.43463326,3,2,0,10.65845311,1.43,31.7 -196,1274,2930,0,0.47,33,6,2,2,female,2004,24.18745232,9,40.42856979,28.61875343,3,2,0,11.03080082,1.355,32.7 -197,1285,3080,0,1.93,35,8,3,2,female,2003,27.30448723,15,38.57143021,29.50581741,2,2,0,11.9835729,1.685,69.9 -198,1291,2800,0,1.05,31,23,3,2,female,2004,19.50685692,20,37.42856979,30.60095787,1,1,1,10.11362081,1.355,35.4 \ No newline at end of file diff --git a/tests/testthat/data_files/GAMLSS/gamlss3.rda b/tests/testthat/data_files/GAMLSS/gamlss3.rda deleted file mode 100644 index 0b2fa87d..00000000 Binary files a/tests/testthat/data_files/GAMLSS/gamlss3.rda and /dev/null differ diff --git a/tests/testthat/data_files/MEDIATION/UPBdata1.csv b/tests/testthat/data_files/MEDIATION/UPBdata1.csv deleted file mode 100644 index d95a3670..00000000 --- a/tests/testthat/data_files/MEDIATION/UPBdata1.csv +++ /dev/null @@ -1,386 +0,0 @@ -"","att","attbin","attcat","negaff","initiator","gender","educ","age","UPB" -"1",1.0005617251787,1,"M",0.840460963028066,"myself","F","M",41,1 -"2",-0.708588935066827,0,"L",-1.25746496925322,"both","M","M",42,0 -"3",-0.708588935066827,0,"L",-1.20225639208792,"both","F","H",43,0 -"4",0.606142342045117,1,"M",-0.374127734608467,"ex-partner","M","H",52,1 -"5",0.211722958911534,1,"M",1.94463250633401,"ex-partner","M","M",32,1 -"6",2.05234674686826,1,"H",-0.815796351930843,"ex-partner","M","H",47,0 -"7",-0.314169551933244,0,"L",-0.429336311773764,"ex-partner","F","M",52,1 -"8",0.343196086622728,1,"M",-1.25746496925322,"myself","M","H",54,0 -"9",-1.10300831820041,0,"L",-0.705379197600249,"myself","F","H",59,0 -"10",-0.051223296510855,0,"M",-0.926213506261437,"ex-partner","M","M",44,0 -"11",-0.708588935066827,0,"L",0.674835231532175,"myself","F","H",32,1 -"12",-0.051223296510855,0,"M",0.840460963028066,"ex-partner","F","M",51,1 -"13",-0.182696424222049,0,"L",-0.0428762716166852,"ex-partner","F","H",48,0 -"14",1.0005617251787,1,"M",2.33109254649108,"both","F","H",39,1 -"15",0.474669214333923,1,"M",-0.705379197600249,"both","F","M",33,0 -"16",-0.051223296510855,0,"M",0.343583768540394,"both","M","H",52,0 -"17",-1.3659545736228,0,"L",-0.208502003112576,"ex-partner","M","M",34,0 -"18",-0.051223296510855,0,"M",1.94463250633401,"both","F","L",45,1 -"19",0.737615469756312,1,"M",-0.429336311773764,"myself","F","M",39,0 -"20",0.474669214333923,1,"M",0.122749459879206,"ex-partner","M","M",51,1 -"21",0.737615469756312,1,"M",-0.374127734608467,"myself","F","H",28,1 -"22",-0.708588935066827,0,"L",0.840460963028066,"myself","M","M",37,1 -"23",0.343196086622728,1,"M",-0.153293425947279,"myself","F","M",29,0 -"24",0.737615469756312,1,"M",-1.25746496925322,"both","F","H",42,1 -"25",-1.3659545736228,0,"L",-1.09183923775733,"ex-partner","F","M",40,0 -"26",-1.3659545736228,0,"L",-0.208502003112576,"myself","F","H",47,0 -"27",-0.577115807355633,0,"L",-0.484544888939061,"myself","F","M",55,0 -"28",1.1320348528899,1,"M",0.619626654366878,"ex-partner","F","H",42,0 -"29",-1.3659545736228,0,"L",-0.815796351930843,"both","M","H",26,0 -"30",1.78940049144587,1,"H",-1.09183923775733,"ex-partner","F","M",34,0 -"31",-0.314169551933244,0,"L",-0.926213506261437,"myself","F","H",25,0 -"32",-1.3659545736228,0,"L",-1.20225639208792,"both","F","M",62,0 -"33",-0.445642679644438,0,"L",-0.87100492909614,"myself","M","H",62,0 -"34",-1.3659545736228,0,"L",-0.705379197600249,"myself","F","H",33,0 -"35",-0.051223296510855,0,"M",0.895669540193363,"myself","F","M",35,1 -"36",0.0802498312003395,1,"M",1.72379819767282,"ex-partner","F","M",38,0 -"37",1.0005617251787,1,"M",-0.153293425947279,"myself","F","M",42,1 -"38",-0.182696424222049,0,"L",-0.815796351930843,"myself","F","M",55,1 -"39",-0.840062062778022,0,"L",-0.0428762716166852,"myself","F","L",51,0 -"41",-0.708588935066827,0,"L",0.509209500036284,"myself","M","H",43,1 -"42",0.211722958911534,1,"M",0.0675408827139087,"ex-partner","F","H",40,1 -"43",1.0005617251787,1,"M",1.83421535200341,"ex-partner","F","H",61,0 -"44",-0.182696424222049,0,"L",1.50296388901163,"myself","F","H",46,1 -"45",0.869088597467506,1,"M",1.55817246617693,"ex-partner","M","M",47,1 -"46",-1.3659545736228,0,"L",0.840460963028066,"myself","F","M",51,0 -"47",-1.3659545736228,0,"L",0.0123323055486118,"myself","F","H",41,0 -"48",-0.971535190489216,0,"L",-1.03663066059203,"ex-partner","M","H",61,0 -"49",1.1320348528899,1,"M",0.0675408827139087,"myself","F","H",34,0 -"50",-0.708588935066827,0,"L",-0.484544888939061,"myself","F","M",54,1 -"51",-0.051223296510855,0,"M",1.88942392916871,"myself","F","H",42,1 -"52",-0.182696424222049,0,"L",-0.926213506261437,"myself","F","H",48,1 -"53",-0.971535190489216,0,"L",-0.0428762716166852,"both","M","H",59,0 -"54",-1.3659545736228,0,"L",-1.36788212358381,"ex-partner","M","M",47,0 -"55",-0.445642679644438,0,"L",-0.0428762716166852,"myself","F","M",49,0 -"56",1.1320348528899,1,"M",-0.760587774765546,"myself","F","H",51,0 -"57",-0.577115807355633,0,"L",-1.36788212358381,"myself","F","H",36,0 -"58",-0.314169551933244,0,"L",0.840460963028066,"ex-partner","F","M",46,0 -"60",1.1320348528899,1,"M",0.288375191375097,"ex-partner","F","H",41,1 -"61",-0.051223296510855,0,"M",-1.36788212358381,"myself","F","M",33,1 -"62",-0.182696424222049,0,"L",-0.429336311773764,"ex-partner","M","M",25,0 -"63",1.1320348528899,1,"M",-0.815796351930843,"ex-partner","F","M",38,0 -"64",1.1320348528899,1,"M",0.730043808697472,"ex-partner","F","H",47,0 -"65",-1.10300831820041,0,"L",-0.0980848487819821,"ex-partner","M","M",30,1 -"66",1.0005617251787,1,"M",2.27588396932579,"both","F","M",29,1 -"67",0.869088597467506,1,"M",-1.14704781492262,"myself","F","H",49,0 -"68",0.343196086622728,1,"M",-1.36788212358381,"myself","M","H",59,0 -"69",0.343196086622728,1,"M",-0.153293425947279,"myself","F","M",23,1 -"70",0.474669214333923,1,"M",0.343583768540394,"ex-partner","M","M",47,1 -"72",1.78940049144587,1,"H",2.33109254649108,"myself","M","M",54,1 -"73",0.606142342045117,1,"M",-0.705379197600249,"myself","F","M",35,0 -"74",-1.3659545736228,0,"L",-1.20225639208792,"myself","M","M",30,0 -"75",1.1320348528899,1,"M",1.11650384885455,"ex-partner","F","H",31,1 -"76",1.1320348528899,1,"M",-0.760587774765546,"both","F","M",41,0 -"77",-0.708588935066827,0,"L",2.38630112365638,"ex-partner","M","H",43,1 -"78",1.1320348528899,1,"M",-0.263710580277873,"myself","M","H",44,0 -"79",1.1320348528899,1,"M",1.50296388901163,"myself","F","M",46,0 -"80",2.57823925771303,1,"H",0.785252385862769,"both","M","M",54,1 -"81",-1.3659545736228,0,"L",-0.926213506261437,"both","M","M",42,0 -"82",-1.3659545736228,0,"L",-0.594962043269655,"myself","M","H",43,0 -"83",-1.3659545736228,0,"L",0.840460963028066,"myself","F","M",41,0 -"85",0.474669214333923,1,"M",1.22692100318514,"myself","M","M",58,0 -"86",0.869088597467506,1,"M",-0.484544888939061,"ex-partner","M","L",42,0 -"87",0.474669214333923,1,"M",-0.0428762716166852,"myself","M","M",47,1 -"88",-0.182696424222049,0,"L",0.619626654366878,"ex-partner","M","H",55,0 -"89",-0.051223296510855,0,"M",1.50296388901163,"ex-partner","M","H",49,1 -"90",-1.3659545736228,0,"L",0.509209500036284,"ex-partner","M","H",41,0 -"91",-1.3659545736228,0,"L",-0.926213506261437,"myself","F","M",43,0 -"92",0.0802498312003395,1,"M",-1.25746496925322,"both","F","M",45,0 -"94",-0.708588935066827,0,"L",-1.03663066059203,"both","F","M",54,0 -"95",-1.3659545736228,0,"L",-0.926213506261437,"ex-partner","F","H",39,0 -"96",-1.23448144591161,0,"L",1.11650384885455,"ex-partner","F","L",28,0 -"97",-1.3659545736228,0,"L",-0.484544888939061,"both","M","M",49,0 -"98",-0.445642679644438,0,"L",-0.31891915744317,"myself","F","H",48,1 -"99",0.737615469756312,1,"M",0.454000922870987,"ex-partner","M","H",37,1 -"100",-1.3659545736228,0,"L",0.454000922870987,"myself","F","M",47,0 -"101",0.606142342045117,1,"M",-0.0428762716166852,"myself","F","H",27,0 -"102",1.92087361915706,1,"H",-0.484544888939061,"myself","F","M",56,0 -"103",-0.051223296510855,0,"M",-1.20225639208792,"myself","M","L",62,0 -"104",-0.051223296510855,0,"M",-0.374127734608467,"both","M","H",33,0 -"105",0.474669214333923,1,"M",0.177958037044503,"ex-partner","M","M",47,1 -"106",0.211722958911534,1,"M",-0.87100492909614,"both","M","M",48,0 -"108",-0.971535190489216,0,"L",-1.36788212358381,"myself","F","H",42,0 -"109",-1.3659545736228,0,"L",-0.926213506261437,"myself","F","H",38,0 -"110",-0.051223296510855,0,"M",-0.484544888939061,"ex-partner","M","H",40,1 -"111",-1.3659545736228,0,"L",0.122749459879206,"myself","F","M",47,0 -"112",-0.708588935066827,0,"L",-0.153293425947279,"both","F","H",33,0 -"113",-0.314169551933244,0,"L",-0.760587774765546,"ex-partner","F","H",37,1 -"114",-0.314169551933244,0,"L",0.39879234570569,"myself","M","M",32,0 -"115",-0.577115807355633,0,"L",0.0675408827139087,"ex-partner","F","M",39,1 -"116",-0.840062062778022,0,"L",-0.208502003112576,"both","F","M",58,1 -"117",1.65792736373467,1,"H",0.122749459879206,"both","F","H",36,0 -"118",1.78940049144587,1,"H",-1.36788212358381,"myself","F","M",30,1 -"119",0.343196086622728,1,"M",0.674835231532175,"both","F","H",47,0 -"120",-0.182696424222049,0,"L",1.66858962050752,"myself","F","H",32,0 -"121",0.343196086622728,1,"M",-0.208502003112576,"myself","F","H",29,1 -"122",1.0005617251787,1,"M",0.840460963028066,"both","F","M",48,0 -"123",0.211722958911534,1,"M",-0.650170620434952,"myself","F","L",61,1 -"124",0.869088597467506,1,"M",-1.14704781492262,"myself","M","M",38,0 -"125",1.39498110831228,1,"H",0.454000922870987,"ex-partner","F","M",38,1 -"126",-0.840062062778022,0,"L",-1.36788212358381,"ex-partner","M","H",37,0 -"127",1.39498110831228,1,"H",0.0123323055486118,"both","M","H",52,0 -"128",-1.3659545736228,0,"L",-1.36788212358381,"both","F","H",40,0 -"129",-0.314169551933244,0,"L",-0.87100492909614,"ex-partner","M","M",56,0 -"130",0.606142342045117,1,"M",0.95087811735866,"ex-partner","F","L",33,0 -"131",1.26350798060109,1,"H",1.28212958035044,"ex-partner","F","H",55,1 -"132",-1.3659545736228,0,"L",-1.36788212358381,"myself","M","M",51,1 -"133",0.211722958911534,1,"M",-1.36788212358381,"myself","F","L",57,0 -"134",-0.840062062778022,0,"L",1.06129527168925,"myself","M","H",30,0 -"135",0.606142342045117,1,"M",1.55817246617693,"myself","F","M",43,0 -"136",1.52645423602348,1,"H",0.343583768540394,"myself","F","M",25,0 -"137",-0.051223296510855,0,"M",-1.03663066059203,"ex-partner","M","M",40,0 -"138",-1.3659545736228,0,"L",1.22692100318514,"ex-partner","M","M",49,1 -"139",-0.840062062778022,0,"L",-0.594962043269655,"both","M","H",31,0 -"140",1.26350798060109,1,"H",1.39254673468104,"ex-partner","M","H",43,1 -"141",1.0005617251787,1,"M",-0.87100492909614,"myself","F","H",43,0 -"142",1.52645423602348,1,"H",0.177958037044503,"myself","F","H",32,0 -"143",-0.314169551933244,0,"L",-0.815796351930843,"both","M","M",37,0 -"144",1.52645423602348,1,"H",-0.981422083426734,"myself","M","M",31,0 -"145",0.0802498312003395,1,"M",-0.263710580277873,"ex-partner","F","M",37,1 -"146",0.474669214333923,1,"M",-0.263710580277873,"ex-partner","F","M",45,0 -"147",-1.3659545736228,0,"L",-0.981422083426734,"myself","F","H",37,1 -"148",-1.3659545736228,0,"L",-1.36788212358381,"myself","M","M",51,0 -"149",-0.971535190489216,0,"L",0.840460963028066,"ex-partner","M","M",55,1 -"150",-0.577115807355633,0,"L",-1.20225639208792,"myself","M","H",56,1 -"151",-1.3659545736228,0,"L",-1.14704781492262,"ex-partner","F","M",54,1 -"152",-0.840062062778022,0,"L",0.454000922870987,"myself","F","L",52,0 -"153",-1.3659545736228,0,"L",-0.539753466104358,"myself","M","M",53,1 -"154",1.52645423602348,1,"H",1.72379819767282,"ex-partner","M","M",46,1 -"155",-0.182696424222049,0,"L",-1.36788212358381,"myself","F","M",39,0 -"156",-1.3659545736228,0,"L",-1.14704781492262,"myself","F","M",36,0 -"157",-0.840062062778022,0,"L",-1.14704781492262,"myself","M","M",54,0 -"158",-0.577115807355633,0,"L",-0.0980848487819821,"myself","F","M",47,0 -"159",-0.314169551933244,0,"L",-1.36788212358381,"both","M","H",35,0 -"160",0.737615469756312,1,"M",0.2331666142098,"ex-partner","F","H",38,1 -"161",-0.051223296510855,0,"M",1.50296388901163,"both","F","H",47,0 -"162",0.737615469756312,1,"M",0.730043808697472,"both","M","M",46,0 -"163",-0.577115807355633,0,"L",-1.09183923775733,"both","F","H",46,0 -"164",0.0802498312003395,1,"M",-0.263710580277873,"both","F","M",49,1 -"165",1.52645423602348,1,"H",0.840460963028066,"ex-partner","M","H",41,1 -"166",1.26350798060109,1,"H",0.785252385862769,"both","F","M",53,1 -"167",0.343196086622728,1,"M",1.72379819767282,"ex-partner","M","H",44,1 -"168",-0.051223296510855,0,"M",0.564418077201581,"myself","M","H",48,0 -"169",1.26350798060109,1,"H",-0.594962043269655,"ex-partner","M","M",48,0 -"170",-0.708588935066827,0,"L",-0.484544888939061,"myself","M","L",48,0 -"171",1.39498110831228,1,"H",-0.926213506261437,"myself","F","H",45,0 -"172",-1.3659545736228,0,"L",-1.36788212358381,"both","F","M",61,0 -"173",-0.708588935066827,0,"L",-1.36788212358381,"myself","F","H",63,0 -"175",-1.3659545736228,0,"L",-0.374127734608467,"ex-partner","M","H",47,0 -"176",-1.3659545736228,0,"L",-1.36788212358381,"myself","F","M",36,0 -"177",-1.3659545736228,0,"L",-0.0428762716166852,"myself","F","H",35,0 -"178",1.65792736373467,1,"H",-0.374127734608467,"myself","M","M",45,0 -"179",1.39498110831228,1,"H",1.28212958035044,"myself","F","H",37,0 -"180",1.65792736373467,1,"H",0.564418077201581,"both","M","M",43,1 -"181",1.39498110831228,1,"H",0.2331666142098,"ex-partner","F","M",48,0 -"182",-1.3659545736228,0,"L",-1.36788212358381,"myself","F","H",48,0 -"183",-0.051223296510855,0,"M",-0.31891915744317,"myself","M","H",35,1 -"184",-0.840062062778022,0,"L",-1.36788212358381,"both","F","H",46,0 -"185",-1.3659545736228,0,"L",0.0675408827139087,"myself","F","H",43,0 -"186",-0.971535190489216,0,"L",0.2331666142098,"ex-partner","F","H",33,0 -"187",0.474669214333923,1,"M",-1.36788212358381,"both","M","M",48,0 -"188",1.39498110831228,1,"H",1.83421535200341,"ex-partner","F","H",45,1 -"189",0.343196086622728,1,"M",0.2331666142098,"both","F","M",54,0 -"190",-0.971535190489216,0,"L",-0.484544888939061,"both","M","M",51,0 -"191",1.39498110831228,1,"H",0.343583768540394,"ex-partner","M","H",44,1 -"192",-0.708588935066827,0,"L",-0.484544888939061,"myself","F","H",26,0 -"193",-1.3659545736228,0,"L",-1.03663066059203,"ex-partner","M","H",33,0 -"194",0.474669214333923,1,"M",1.72379819767282,"ex-partner","M","M",68,0 -"195",1.26350798060109,1,"H",0.454000922870987,"myself","F","M",44,0 -"196",-1.3659545736228,0,"L",0.177958037044503,"both","M","H",38,1 -"197",0.606142342045117,1,"M",0.840460963028066,"ex-partner","F","H",35,1 -"198",-0.182696424222049,0,"L",-0.31891915744317,"myself","F","M",43,0 -"199",0.737615469756312,1,"M",-0.705379197600249,"myself","M","H",27,0 -"200",-0.445642679644438,0,"L",0.39879234570569,"ex-partner","M","M",49,0 -"201",-0.971535190489216,0,"L",-1.03663066059203,"myself","F","M",44,0 -"202",-0.840062062778022,0,"L",-1.25746496925322,"myself","M","H",50,0 -"203",2.31529300229065,1,"H",1.06129527168925,"ex-partner","F","H",49,0 -"204",0.474669214333923,1,"M",-0.705379197600249,"myself","M","L",39,0 -"205",1.39498110831228,1,"H",1.06129527168925,"both","F","H",28,1 -"206",0.869088597467506,1,"M",0.122749459879206,"myself","F","M",50,0 -"207",-1.3659545736228,0,"L",-1.36788212358381,"myself","F","M",37,0 -"208",0.343196086622728,1,"M",-1.36788212358381,"myself","F","M",32,0 -"210",-1.3659545736228,0,"L",1.28212958035044,"both","F","M",44,0 -"211",1.0005617251787,1,"M",0.895669540193363,"myself","F","M",33,0 -"212",-0.182696424222049,0,"L",0.177958037044503,"both","M","M",32,0 -"213",-0.708588935066827,0,"L",-1.03663066059203,"myself","M","L",36,1 -"214",2.05234674686826,1,"H",2.27588396932579,"ex-partner","M","M",60,1 -"215",-1.3659545736228,0,"L",0.730043808697472,"ex-partner","M","M",41,0 -"216",1.65792736373467,1,"H",1.17171242601985,"ex-partner","F","M",37,0 -"217",0.737615469756312,1,"M",1.77900677483811,"myself","F","H",28,1 -"218",0.211722958911534,1,"M",-1.03663066059203,"myself","F","M",34,0 -"219",-1.3659545736228,0,"L",-1.36788212358381,"myself","M","H",64,0 -"220",0.0802498312003395,1,"M",-0.87100492909614,"ex-partner","F","M",64,0 -"221",-1.3659545736228,0,"L",1.50296388901163,"ex-partner","F","M",49,0 -"222",1.39498110831228,1,"H",-1.36788212358381,"myself","M","H",49,0 -"223",0.474669214333923,1,"M",1.39254673468104,"ex-partner","F","M",43,0 -"224",0.0802498312003395,1,"M",-0.539753466104358,"myself","F","M",36,0 -"225",-0.840062062778022,0,"L",-0.926213506261437,"myself","M","M",40,0 -"226",0.211722958911534,1,"M",-0.926213506261437,"myself","F","M",38,0 -"227",-0.971535190489216,0,"L",-0.484544888939061,"ex-partner","F","M",54,0 -"228",-0.051223296510855,0,"M",2.22067539216049,"myself","F","H",44,1 -"229",-1.3659545736228,0,"L",0.509209500036284,"myself","F","M",45,0 -"230",-0.314169551933244,0,"L",-0.539753466104358,"myself","F","L",39,0 -"231",-1.3659545736228,0,"L",0.0123323055486118,"myself","F","M",50,0 -"232",-0.577115807355633,0,"L",0.288375191375097,"both","M","M",50,1 -"233",0.343196086622728,1,"M",-0.429336311773764,"myself","M","L",46,0 -"234",0.343196086622728,1,"M",1.55817246617693,"ex-partner","M","H",62,0 -"235",0.869088597467506,1,"M",-1.36788212358381,"myself","F","M",26,0 -"236",-0.445642679644438,0,"L",0.454000922870987,"both","M","H",35,0 -"237",1.26350798060109,1,"H",1.44775531184633,"myself","F","M",50,1 -"238",-1.3659545736228,0,"L",-0.815796351930843,"myself","F","M",55,0 -"239",0.343196086622728,1,"M",-0.705379197600249,"myself","F","H",37,1 -"240",0.606142342045117,1,"M",-1.36788212358381,"myself","F","M",43,0 -"241",0.343196086622728,1,"M",0.619626654366878,"myself","F","M",51,0 -"242",-0.445642679644438,0,"L",0.0675408827139087,"ex-partner","M","M",45,0 -"243",0.474669214333923,1,"M",1.39254673468104,"myself","F","M",45,0 -"244",-1.3659545736228,0,"L",-0.705379197600249,"myself","F","M",42,1 -"245",-1.3659545736228,0,"L",0.39879234570569,"myself","M","M",35,0 -"246",0.0802498312003395,1,"M",-0.429336311773764,"myself","M","L",50,1 -"247",-0.971535190489216,0,"L",-0.0428762716166852,"myself","M","H",50,0 -"248",-0.840062062778022,0,"L",-0.0980848487819821,"myself","M","H",63,1 -"249",-0.971535190489216,0,"L",-0.594962043269655,"both","M","M",54,0 -"250",1.65792736373467,1,"H",-0.815796351930843,"myself","F","M",35,0 -"251",1.26350798060109,1,"H",-0.208502003112576,"ex-partner","F","H",40,0 -"252",0.211722958911534,1,"M",-0.0428762716166852,"myself","F","M",37,1 -"253",-0.708588935066827,0,"L",0.674835231532175,"myself","F","M",25,1 -"254",1.26350798060109,1,"H",-0.0428762716166852,"myself","F","M",46,0 -"255",-0.182696424222049,0,"L",-1.36788212358381,"ex-partner","M","M",56,0 -"256",1.0005617251787,1,"M",-1.09183923775733,"myself","F","H",40,0 -"257",-0.708588935066827,0,"L",-1.20225639208792,"ex-partner","M","M",30,1 -"258",-0.182696424222049,0,"L",-0.0980848487819821,"both","M","H",32,1 -"259",0.0802498312003395,1,"M",1.66858962050752,"both","F","M",39,0 -"260",0.737615469756312,1,"M",-1.09183923775733,"myself","F","H",61,1 -"261",-0.445642679644438,0,"L",-0.31891915744317,"both","M","M",41,0 -"262",0.869088597467506,1,"M",1.55817246617693,"ex-partner","F","H",49,0 -"263",0.343196086622728,1,"M",-0.760587774765546,"both","F","H",30,0 -"264",0.474669214333923,1,"M",1.77900677483811,"myself","F","H",37,1 -"265",-1.3659545736228,0,"L",-1.36788212358381,"myself","F","M",46,1 -"266",1.0005617251787,1,"M",0.619626654366878,"ex-partner","M","M",45,1 -"267",1.92087361915706,1,"H",-0.705379197600249,"ex-partner","M","M",50,1 -"268",0.211722958911534,1,"M",-0.650170620434952,"ex-partner","M","M",62,1 -"269",-0.840062062778022,0,"L",-0.153293425947279,"both","F","M",31,0 -"270",0.737615469756312,1,"M",1.17171242601985,"myself","M","H",45,0 -"271",-0.182696424222049,0,"L",0.895669540193363,"ex-partner","F","M",43,1 -"272",0.0802498312003395,1,"M",0.619626654366878,"ex-partner","M","H",28,1 -"273",-0.708588935066827,0,"L",-0.484544888939061,"both","F","M",42,0 -"274",2.44676613000184,1,"H",1.61338104334222,"ex-partner","M","H",44,1 -"275",-0.051223296510855,0,"M",-0.31891915744317,"myself","F","M",43,0 -"277",-0.708588935066827,0,"L",0.785252385862769,"myself","F","M",47,1 -"278",1.0005617251787,1,"M",1.00608669452396,"ex-partner","M","M",49,1 -"279",1.39498110831228,1,"H",1.33733815751574,"ex-partner","M","M",33,1 -"280",0.0802498312003395,1,"M",0.619626654366878,"myself","F","H",43,0 -"281",1.0005617251787,1,"M",0.343583768540394,"myself","F","M",26,1 -"282",0.0802498312003395,1,"M",-0.263710580277873,"myself","F","M",44,0 -"283",-0.314169551933244,0,"L",-0.484544888939061,"myself","F","M",38,0 -"284",-1.3659545736228,0,"L",-0.0428762716166852,"ex-partner","M","L",37,1 -"285",-0.708588935066827,0,"L",-1.36788212358381,"both","M","H",68,0 -"286",-1.3659545736228,0,"L",-1.14704781492262,"myself","F","H",50,0 -"287",-1.3659545736228,0,"L",-1.36788212358381,"both","F","L",49,0 -"288",-1.3659545736228,0,"L",0.177958037044503,"myself","F","M",49,0 -"289",-1.3659545736228,0,"L",0.895669540193363,"ex-partner","F","M",36,0 -"290",-0.182696424222049,0,"L",-0.484544888939061,"ex-partner","M","M",43,0 -"291",0.474669214333923,1,"M",0.674835231532175,"myself","F","H",30,1 -"292",1.26350798060109,1,"H",0.619626654366878,"ex-partner","M","H",57,1 -"293",0.737615469756312,1,"M",1.17171242601985,"myself","F","M",52,0 -"294",-1.3659545736228,0,"L",-0.0428762716166852,"both","M","M",37,0 -"295",-0.840062062778022,0,"L",-0.705379197600249,"both","F","L",46,0 -"296",0.343196086622728,1,"M",-0.153293425947279,"ex-partner","M","H",35,1 -"297",0.343196086622728,1,"M",-0.374127734608467,"myself","F","L",22,1 -"298",1.0005617251787,1,"M",-0.815796351930843,"myself","F","H",37,0 -"299",0.606142342045117,1,"M",2.44150970082168,"ex-partner","F","M",28,1 -"301",-0.445642679644438,0,"L",0.674835231532175,"myself","F","M",30,0 -"302",-1.3659545736228,0,"L",0.0675408827139087,"both","F","M",54,0 -"303",-0.182696424222049,0,"L",0.619626654366878,"myself","F","H",35,0 -"304",-1.3659545736228,0,"L",-1.36788212358381,"both","F","M",35,0 -"305",-1.3659545736228,0,"L",-0.0980848487819821,"myself","F","M",48,0 -"306",0.474669214333923,1,"M",0.785252385862769,"myself","M","M",44,0 -"307",2.05234674686826,1,"H",0.122749459879206,"ex-partner","F","M",47,0 -"308",0.211722958911534,1,"M",0.2331666142098,"myself","F","M",33,1 -"309",0.869088597467506,1,"M",2.33109254649108,"ex-partner","F","H",47,1 -"310",1.39498110831228,1,"H",0.0675408827139087,"myself","F","M",44,1 -"311",2.18381987457945,1,"H",0.509209500036284,"ex-partner","M","H",48,0 -"312",1.39498110831228,1,"H",0.0675408827139087,"ex-partner","M","M",45,1 -"313",-0.577115807355633,0,"L",-1.25746496925322,"both","F","M",45,1 -"314",1.52645423602348,1,"H",3.04880404963994,"ex-partner","F","M",57,1 -"315",-0.445642679644438,0,"L",0.95087811735866,"both","M","M",47,1 -"316",-0.314169551933244,0,"L",-1.20225639208792,"both","F","M",42,0 -"317",0.343196086622728,1,"M",-1.36788212358381,"myself","F","H",67,0 -"318",0.211722958911534,1,"M",-0.926213506261437,"ex-partner","M","H",41,0 -"319",-0.708588935066827,0,"L",0.2331666142098,"ex-partner","M","M",43,1 -"320",-1.3659545736228,0,"L",-1.36788212358381,"myself","F","M",43,0 -"321",-1.3659545736228,0,"L",-0.484544888939061,"myself","F","H",33,0 -"322",0.211722958911534,1,"M",1.55817246617693,"ex-partner","F","H",31,0 -"323",-1.3659545736228,0,"L",-1.03663066059203,"myself","F","M",57,0 -"324",-1.23448144591161,0,"L",-0.926213506261437,"ex-partner","M","M",57,0 -"325",0.343196086622728,1,"M",-0.0980848487819821,"myself","M","H",50,1 -"326",-1.3659545736228,0,"L",-0.484544888939061,"ex-partner","M","M",46,0 -"327",-1.3659545736228,0,"L",-0.539753466104358,"ex-partner","F","M",51,0 -"328",-1.3659545736228,0,"L",0.39879234570569,"myself","F","L",52,1 -"329",-1.3659545736228,0,"L",-0.926213506261437,"myself","M","M",50,0 -"330",-0.708588935066827,0,"L",-0.760587774765546,"myself","M","H",40,0 -"331",1.1320348528899,1,"M",0.39879234570569,"ex-partner","F","H",35,1 -"332",0.343196086622728,1,"M",-0.0428762716166852,"both","F","H",39,0 -"333",0.343196086622728,1,"M",-0.815796351930843,"myself","M","H",50,0 -"334",-1.10300831820041,0,"L",-0.429336311773764,"myself","M","M",51,0 -"335",2.05234674686826,1,"H",1.66858962050752,"ex-partner","F","M",34,1 -"336",-0.708588935066827,0,"L",-0.815796351930843,"both","M","H",40,1 -"337",0.211722958911534,1,"M",-0.263710580277873,"myself","F","H",48,1 -"338",-0.577115807355633,0,"L",-0.0428762716166852,"ex-partner","M","M",51,1 -"339",0.343196086622728,1,"M",-0.484544888939061,"both","F","M",25,0 -"340",-0.971535190489216,0,"L",-0.705379197600249,"myself","M","L",31,0 -"341",-1.3659545736228,0,"L",2.1102582378299,"ex-partner","F","M",43,0 -"342",-0.708588935066827,0,"L",-0.263710580277873,"myself","M","H",49,0 -"343",-1.3659545736228,0,"L",-1.14704781492262,"myself","F","M",26,1 -"344",-0.840062062778022,0,"L",0.730043808697472,"myself","M","M",49,0 -"345",-0.051223296510855,0,"M",-0.374127734608467,"myself","F","L",44,0 -"346",-0.708588935066827,0,"L",0.895669540193363,"myself","F","M",44,1 -"347",-0.971535190489216,0,"L",0.454000922870987,"ex-partner","M","H",46,1 -"348",1.65792736373467,1,"H",1.39254673468104,"ex-partner","M","M",47,1 -"349",0.606142342045117,1,"M",-1.14704781492262,"ex-partner","M","H",31,1 -"350",1.26350798060109,1,"H",1.9998410834993,"myself","F","M",26,1 -"351",-0.577115807355633,0,"L",1.11650384885455,"myself","F","H",41,0 -"352",-0.445642679644438,0,"L",0.343583768540394,"ex-partner","M","H",39,1 -"353",0.869088597467506,1,"M",0.509209500036284,"myself","F","M",26,0 -"354",1.0005617251787,1,"M",1.28212958035044,"ex-partner","F","H",35,1 -"355",1.65792736373467,1,"H",-0.650170620434952,"both","F","M",29,1 -"356",-1.10300831820041,0,"L",-0.429336311773764,"myself","F","H",52,1 -"357",0.0802498312003395,1,"M",0.0675408827139087,"ex-partner","M","M",48,0 -"358",1.1320348528899,1,"M",1.44775531184633,"ex-partner","F","H",53,1 -"359",1.39498110831228,1,"H",-1.36788212358381,"myself","M","L",50,0 -"360",1.26350798060109,1,"H",1.94463250633401,"ex-partner","M","M",43,0 -"361",0.737615469756312,1,"M",0.840460963028066,"ex-partner","M","M",56,1 -"362",0.211722958911534,1,"M",-0.153293425947279,"myself","F","M",43,0 -"363",-0.182696424222049,0,"L",0.288375191375097,"myself","M","M",37,0 -"364",0.606142342045117,1,"M",0.454000922870987,"both","M","M",46,0 -"365",-0.840062062778022,0,"L",-0.374127734608467,"myself","F","M",31,0 -"366",-0.182696424222049,0,"L",-0.0980848487819821,"both","F","M",32,1 -"367",1.0005617251787,1,"M",-0.0428762716166852,"myself","F","H",35,0 -"368",0.211722958911534,1,"M",-0.650170620434952,"ex-partner","F","L",36,0 -"369",0.343196086622728,1,"M",-0.926213506261437,"myself","M","L",37,0 -"370",0.869088597467506,1,"M",0.122749459879206,"both","F","M",58,1 -"371",0.869088597467506,1,"M",-1.03663066059203,"myself","M","M",56,0 -"372",0.343196086622728,1,"M",0.509209500036284,"myself","M","H",51,0 -"373",1.39498110831228,1,"H",0.785252385862769,"ex-partner","M","M",43,1 -"374",1.39498110831228,1,"H",1.83421535200341,"myself","F","H",42,1 -"375",-0.971535190489216,0,"L",0.730043808697472,"myself","F","M",50,0 -"376",-1.3659545736228,0,"L",0.840460963028066,"myself","F","H",43,0 -"377",-0.051223296510855,0,"M",-0.539753466104358,"both","M","H",34,0 -"378",-0.182696424222049,0,"L",0.730043808697472,"myself","F","M",62,0 -"379",1.1320348528899,1,"M",0.2331666142098,"ex-partner","M","M",39,0 -"380",-0.971535190489216,0,"L",-0.429336311773764,"myself","M","M",57,0 -"381",-0.182696424222049,0,"L",0.0675408827139087,"ex-partner","M","M",54,1 -"382",0.737615469756312,1,"M",-0.594962043269655,"myself","M","M",41,0 -"383",1.1320348528899,1,"M",2.27588396932579,"both","F","H",26,1 -"384",-0.971535190489216,0,"L",-0.87100492909614,"ex-partner","M","M",54,0 -"385",-1.3659545736228,0,"L",-1.36788212358381,"myself","F","M",40,0 -"386",-0.577115807355633,0,"L",-1.31267354641852,"ex-partner","M","M",51,0 -"387",1.65792736373467,1,"H",0.674835231532175,"myself","F","H",45,1 -"388",2.31529300229065,1,"H",2.55192685515227,"ex-partner","F","M",40,1 -"389",0.0802498312003395,1,"M",0.730043808697472,"ex-partner","F","M",33,1 -"390",-1.23448144591161,0,"L",-1.31267354641852,"myself","F","H",47,1 -"392",0.0802498312003395,1,"M",2.22067539216049,"myself","F","H",28,0 -"393",0.474669214333923,1,"M",0.343583768540394,"ex-partner","M","M",37,1 -"394",-0.314169551933244,0,"L",0.454000922870987,"both","F","L",45,0 -"395",-1.10300831820041,0,"L",-0.760587774765546,"myself","F","H",36,0 -"396",0.869088597467506,1,"M",0.177958037044503,"ex-partner","M","H",57,1 diff --git a/tests/testthat/data_files/MEDIATION/UPBdata2.csv b/tests/testthat/data_files/MEDIATION/UPBdata2.csv deleted file mode 100644 index 84a815cc..00000000 --- a/tests/testthat/data_files/MEDIATION/UPBdata2.csv +++ /dev/null @@ -1,360 +0,0 @@ -"","att","attbin","attcat","negaff","initiator","gender","educ","age","UPB" -"1",1.1320348528899,0,"M",-0.926213506261437,"myself","M","M",41,1 -"2",-0.577115807355633,1,"M",-0.815796351930843,"myself","F","H",47,1 -"3",0.869088597467506,0,"M",1.44775531184633,"myself","F","M",40,0 -"4",-0.708588935066827,0,"H",-0.153293425947279,"ex-partner","F","H",31,1 -"5",-1.3659545736228,1,"L",-0.705379197600249,"ex-partner","F","M",43,0 -"6",1.26350798060109,0,"M",-0.484544888939061,"myself","M","M",33,1 -"7",1.39498110831228,1,"L",-0.0980848487819821,"myself","M","L",43,0 -"8",1.1320348528899,0,"L",0.674835231532175,"ex-partner","F","M",37,0 -"9",-0.182696424222049,1,"L",-0.705379197600249,"ex-partner","F","M",33,1 -"10",-0.182696424222049,1,"L",-0.153293425947279,"ex-partner","M","H",48,1 -"11",-0.445642679644438,0,"M",1.72379819767282,"ex-partner","F","H",51,0 -"12",1.78940049144587,1,"L",-1.36788212358381,"myself","F","M",56,1 -"13",1.1320348528899,1,"M",1.55817246617693,"myself","F","H",35,0 -"14",1.26350798060109,0,"L",0.177958037044503,"both","M","M",37,0 -"15",0.474669214333923,0,"L",-0.0980848487819821,"myself","F","H",58,0 -"16",1.0005617251787,0,"L",-0.926213506261437,"ex-partner","F","H",41,0 -"17",0.0802498312003395,0,"M",-1.36788212358381,"myself","F","H",50,0 -"18",0.474669214333923,1,"L",1.17171242601985,"myself","M","M",37,0 -"19",-1.3659545736228,0,"M",-0.705379197600249,"myself","M","M",51,0 -"20",2.05234674686826,1,"L",-0.650170620434952,"ex-partner","F","H",36,0 -"21",-1.3659545736228,0,"M",0.0123323055486118,"ex-partner","M","M",37,1 -"22",1.39498110831228,0,"L",-1.36788212358381,"myself","M","H",34,1 -"23",-0.708588935066827,1,"M",-0.815796351930843,"both","M","M",43,0 -"24",0.474669214333923,0,"L",-0.484544888939061,"myself","F","H",44,0 -"25",-0.708588935066827,0,"L",-0.153293425947279,"myself","M","M",48,1 -"26",-1.3659545736228,0,"M",1.55817246617693,"ex-partner","M","M",43,1 -"27",0.474669214333923,1,"L",-1.03663066059203,"ex-partner","F","L",35,0 -"28",-0.708588935066827,1,"M",-0.429336311773764,"myself","M","M",47,0 -"29",-1.3659545736228,1,"L",1.28212958035044,"ex-partner","F","M",28,1 -"30",-0.577115807355633,1,"L",-1.20225639208792,"ex-partner","F","H",52,1 -"31",-0.971535190489216,1,"M",-0.0428762716166852,"both","M","H",43,0 -"32",1.65792736373467,0,"H",-1.36788212358381,"myself","F","M",38,0 -"33",0.0802498312003395,1,"L",1.88942392916871,"ex-partner","F","M",46,0 -"34",0.211722958911534,1,"M",-0.539753466104358,"ex-partner","M","L",43,0 -"35",0.343196086622728,0,"L",-1.14704781492262,"ex-partner","F","M",31,0 -"36",-0.840062062778022,1,"M",2.33109254649108,"myself","F","H",49,1 -"37",-0.840062062778022,0,"M",2.44150970082168,"ex-partner","F","H",56,0 -"38",0.606142342045117,0,"H",-0.926213506261437,"both","F","M",37,1 -"39",-0.314169551933244,0,"H",-1.14704781492262,"myself","F","H",57,1 -"40",0.0802498312003395,0,"M",0.122749459879206,"ex-partner","F","H",41,0 -"41",0.474669214333923,1,"L",0.343583768540394,"myself","F","L",32,0 -"42",-0.971535190489216,1,"L",-0.981422083426734,"both","M","H",41,1 -"43",-0.971535190489216,1,"M",-1.14704781492262,"myself","F","H",61,0 -"44",0.869088597467506,1,"M",0.730043808697472,"ex-partner","F","H",60,0 -"45",0.606142342045117,0,"L",1.50296388901163,"myself","M","H",43,1 -"46",1.0005617251787,1,"L",-1.09183923775733,"myself","F","M",56,0 -"47",1.52645423602348,1,"M",0.288375191375097,"myself","M","M",28,0 -"48",1.65792736373467,1,"L",-1.03663066059203,"myself","M","H",37,0 -"49",-1.3659545736228,0,"M",1.33733815751574,"both","F","H",47,0 -"50",0.869088597467506,1,"L",0.509209500036284,"both","M","M",38,0 -"51",-0.182696424222049,1,"L",-0.760587774765546,"myself","M","M",37,1 -"52",0.474669214333923,1,"L",0.674835231532175,"both","M","H",46,0 -"53",-1.3659545736228,0,"M",2.27588396932579,"myself","F","L",42,0 -"54",-1.3659545736228,1,"M",0.730043808697472,"both","F","M",40,0 -"55",1.0005617251787,1,"L",0.288375191375097,"ex-partner","M","M",37,1 -"56",-1.3659545736228,1,"L",0.122749459879206,"myself","M","H",62,1 -"57",0.211722958911534,0,"M",-0.0428762716166852,"ex-partner","F","M",56,1 -"58",-0.840062062778022,1,"L",-1.36788212358381,"ex-partner","F","M",44,0 -"59",-0.051223296510855,1,"L",-0.815796351930843,"ex-partner","F","H",57,0 -"60",1.1320348528899,1,"L",-1.09183923775733,"myself","M","M",50,1 -"61",-0.314169551933244,0,"H",1.11650384885455,"myself","F","H",62,0 -"62",-0.182696424222049,0,"M",-0.374127734608467,"myself","M","M",29,1 -"63",1.0005617251787,0,"M",0.564418077201581,"both","F","H",56,1 -"64",0.211722958911534,0,"M",-0.0428762716166852,"ex-partner","M","M",42,0 -"65",-0.314169551933244,0,"M",-0.815796351930843,"myself","F","H",39,1 -"66",0.211722958911534,1,"M",0.895669540193363,"myself","M","M",44,0 -"67",-1.3659545736228,1,"H",0.730043808697472,"myself","M","M",48,0 -"68",0.0802498312003395,1,"L",-1.36788212358381,"myself","M","H",52,0 -"69",-1.3659545736228,1,"L",0.2331666142098,"myself","F","M",46,0 -"70",1.65792736373467,1,"M",-1.36788212358381,"both","M","M",32,1 -"71",0.474669214333923,1,"M",-0.31891915744317,"myself","M","M",49,0 -"72",0.343196086622728,0,"L",2.27588396932579,"both","M","M",46,1 -"73",0.737615469756312,0,"L",-0.263710580277873,"ex-partner","M","M",44,1 -"74",-1.3659545736228,0,"M",0.2331666142098,"myself","F","M",48,0 -"75",-1.3659545736228,0,"L",0.619626654366878,"ex-partner","F","H",53,0 -"76",-1.10300831820041,0,"M",1.11650384885455,"ex-partner","F","H",25,0 -"77",1.26350798060109,0,"L",-0.539753466104358,"both","M","M",43,1 -"78",0.211722958911534,1,"L",-1.36788212358381,"myself","F","M",51,0 -"79",0.869088597467506,1,"L",-0.153293425947279,"both","F","M",44,0 -"80",-0.051223296510855,0,"H",-1.36788212358381,"ex-partner","F","M",26,0 -"81",1.65792736373467,1,"L",0.0675408827139087,"myself","F","L",29,1 -"82",0.474669214333923,0,"L",0.619626654366878,"both","F","H",49,0 -"83",-1.3659545736228,0,"L",1.9998410834993,"ex-partner","F","M",44,0 -"84",2.44676613000184,1,"M",0.122749459879206,"ex-partner","M","H",42,0 -"85",-0.314169551933244,0,"M",1.83421535200341,"myself","M","M",54,1 -"86",2.57823925771303,1,"L",-1.20225639208792,"ex-partner","M","H",40,1 -"87",1.26350798060109,0,"M",-0.429336311773764,"ex-partner","M","M",63,0 -"88",-0.971535190489216,0,"M",-0.374127734608467,"ex-partner","F","H",26,0 -"89",0.869088597467506,0,"L",-0.539753466104358,"ex-partner","F","M",64,0 -"90",0.211722958911534,1,"H",0.454000922870987,"myself","M","M",35,0 -"91",0.869088597467506,0,"H",-1.25746496925322,"myself","F","M",49,0 -"92",-0.708588935066827,0,"L",-0.0428762716166852,"ex-partner","M","H",38,1 -"93",-0.182696424222049,1,"L",1.22692100318514,"myself","M","M",40,0 -"94",-1.3659545736228,1,"L",0.2331666142098,"myself","F","M",50,0 -"95",-0.708588935066827,1,"M",0.840460963028066,"myself","F","L",30,1 -"96",0.343196086622728,0,"M",3.04880404963994,"myself","F","M",37,0 -"97",0.0802498312003395,0,"L",-0.760587774765546,"ex-partner","F","M",55,0 -"98",-1.3659545736228,1,"H",2.22067539216049,"both","F","M",54,1 -"99",1.1320348528899,1,"L",1.72379819767282,"myself","F","H",33,0 -"100",1.1320348528899,0,"L",-0.31891915744317,"ex-partner","F","M",41,0 -"101",0.343196086622728,1,"H",1.55817246617693,"myself","M","M",49,1 -"102",-1.3659545736228,0,"M",0.619626654366878,"ex-partner","F","H",42,0 -"103",-0.182696424222049,1,"L",1.50296388901163,"myself","F","H",26,0 -"104",1.39498110831228,0,"M",-1.03663066059203,"myself","F","M",43,0 -"105",2.05234674686826,1,"L",1.17171242601985,"myself","M","H",29,0 -"106",-1.3659545736228,0,"H",-1.25746496925322,"ex-partner","F","M",39,1 -"107",-0.971535190489216,1,"L",1.39254673468104,"myself","F","M",35,0 -"108",0.869088597467506,1,"M",0.0675408827139087,"myself","M","M",48,0 -"109",-0.051223296510855,0,"M",0.840460963028066,"myself","F","M",46,0 -"110",-1.3659545736228,1,"L",-1.36788212358381,"ex-partner","F","H",39,0 -"111",1.1320348528899,0,"L",-0.0428762716166852,"myself","M","M",54,0 -"112",-0.051223296510855,0,"H",1.22692100318514,"both","F","H",32,1 -"113",-1.3659545736228,1,"L",-0.815796351930843,"myself","M","M",35,1 -"114",-0.971535190489216,1,"L",0.2331666142098,"myself","M","M",35,0 -"115",-0.445642679644438,0,"M",1.00608669452396,"ex-partner","F","H",35,0 -"116",-1.3659545736228,1,"L",-0.0428762716166852,"myself","F","M",46,1 -"117",-1.3659545736228,1,"H",0.619626654366878,"both","F","M",55,0 -"118",-0.182696424222049,1,"L",-0.208502003112576,"ex-partner","M","H",49,1 -"119",1.0005617251787,0,"M",-1.25746496925322,"myself","F","M",52,0 -"120",-0.708588935066827,1,"L",0.177958037044503,"both","F","L",43,0 -"121",0.737615469756312,1,"H",-0.0428762716166852,"myself","F","H",46,0 -"122",0.474669214333923,0,"L",-0.705379197600249,"myself","F","H",35,0 -"123",0.211722958911534,0,"L",-1.36788212358381,"myself","F","H",38,1 -"124",-0.051223296510855,1,"M",-1.20225639208792,"both","F","H",46,1 -"125",0.0802498312003395,0,"M",-1.36788212358381,"both","M","M",35,1 -"126",-0.971535190489216,0,"L",-0.484544888939061,"ex-partner","M","M",46,0 -"127",0.211722958911534,0,"L",-0.374127734608467,"ex-partner","F","H",25,1 -"128",0.211722958911534,1,"L",-0.705379197600249,"myself","F","M",51,0 -"129",1.92087361915706,0,"M",-0.0428762716166852,"myself","M","H",37,1 -"130",0.474669214333923,0,"L",0.122749459879206,"both","F","H",46,0 -"131",-1.3659545736228,0,"M",-0.208502003112576,"both","F","H",64,0 -"132",-0.840062062778022,0,"M",-0.0428762716166852,"myself","F","L",49,1 -"133",-1.3659545736228,0,"L",-0.374127734608467,"myself","M","M",43,1 -"134",-1.3659545736228,1,"H",-0.650170620434952,"myself","M","H",26,0 -"135",1.39498110831228,1,"M",0.454000922870987,"both","M","M",61,0 -"136",-0.708588935066827,1,"L",-0.31891915744317,"ex-partner","F","M",37,1 -"137",1.52645423602348,0,"L",-0.815796351930843,"both","F","M",32,1 -"138",1.1320348528899,0,"L",0.2331666142098,"myself","F","L",36,0 -"139",1.78940049144587,1,"L",-0.484544888939061,"myself","F","M",51,0 -"140",-1.3659545736228,0,"L",0.840460963028066,"both","M","M",39,0 -"141",0.211722958911534,0,"M",-0.484544888939061,"myself","F","M",55,0 -"142",1.26350798060109,1,"M",-0.429336311773764,"myself","F","H",34,1 -"143",-0.051223296510855,0,"M",0.39879234570569,"myself","M","M",47,1 -"144",-0.971535190489216,0,"L",1.06129527168925,"ex-partner","M","H",35,1 -"145",-0.971535190489216,1,"M",0.730043808697472,"myself","M","L",48,1 -"146",1.26350798060109,0,"M",-1.36788212358381,"myself","M","M",49,0 -"147",-1.3659545736228,1,"L",-1.03663066059203,"ex-partner","M","M",31,0 -"148",0.474669214333923,1,"M",1.06129527168925,"myself","M","H",49,0 -"149",1.65792736373467,1,"M",1.50296388901163,"myself","F","H",67,1 -"150",0.737615469756312,0,"M",1.28212958035044,"ex-partner","M","M",42,1 -"151",1.0005617251787,0,"L",-0.208502003112576,"both","F","H",26,0 -"152",1.1320348528899,1,"M",-1.36788212358381,"myself","F","M",45,0 -"153",1.92087361915706,0,"L",1.83421535200341,"myself","M","M",40,0 -"154",-0.840062062778022,1,"H",-1.20225639208792,"ex-partner","M","M",43,1 -"155",0.343196086622728,1,"L",0.509209500036284,"myself","F","L",62,0 -"156",0.0802498312003395,1,"L",0.0675408827139087,"both","M","H",47,0 -"157",-0.971535190489216,0,"M",0.177958037044503,"ex-partner","F","M",34,1 -"158",-0.840062062778022,1,"M",-1.20225639208792,"myself","F","M",48,0 -"159",0.343196086622728,1,"L",1.39254673468104,"ex-partner","F","H",50,1 -"160",-1.3659545736228,1,"L",0.0675408827139087,"ex-partner","M","L",42,0 -"161",-1.3659545736228,1,"L",0.785252385862769,"ex-partner","F","H",33,0 -"162",0.343196086622728,1,"L",-0.153293425947279,"myself","F","M",47,0 -"163",-1.3659545736228,0,"M",-0.374127734608467,"both","M","M",27,0 -"164",-0.051223296510855,1,"H",-0.705379197600249,"myself","F","M",36,0 -"165",-1.3659545736228,0,"L",2.38630112365638,"myself","M","M",54,0 -"166",0.343196086622728,0,"L",-0.0428762716166852,"ex-partner","F","M",50,0 -"167",-0.445642679644438,0,"L",0.122749459879206,"myself","M","L",39,1 -"168",1.39498110831228,0,"M",0.0675408827139087,"both","M","M",54,0 -"169",-0.445642679644438,1,"L",-0.594962043269655,"ex-partner","F","L",45,0 -"170",-0.051223296510855,1,"L",-0.208502003112576,"both","F","H",45,0 -"171",-0.840062062778022,0,"L",-0.484544888939061,"myself","F","M",52,0 -"172",-0.577115807355633,0,"M",-1.14704781492262,"ex-partner","F","H",47,0 -"173",1.1320348528899,0,"M",-0.594962043269655,"ex-partner","F","M",33,0 -"174",1.39498110831228,1,"L",-0.153293425947279,"ex-partner","F","M",57,0 -"175",-0.840062062778022,1,"M",0.343583768540394,"ex-partner","F","H",45,0 -"176",-0.840062062778022,1,"M",1.55817246617693,"both","M","H",32,0 -"177",-0.577115807355633,0,"L",0.177958037044503,"ex-partner","F","M",50,0 -"178",-0.708588935066827,1,"M",1.66858962050752,"both","M","H",50,0 -"179",-0.051223296510855,0,"M",0.730043808697472,"myself","F","H",31,1 -"180",-0.182696424222049,1,"L",-1.36788212358381,"myself","M","M",51,0 -"181",-1.3659545736228,1,"M",0.39879234570569,"myself","F","M",52,1 -"182",-0.708588935066827,0,"L",-0.760587774765546,"myself","M","M",51,1 -"183",0.737615469756312,1,"M",-0.484544888939061,"myself","F","M",47,0 -"184",0.211722958911534,0,"M",-1.36788212358381,"myself","F","H",62,0 -"185",-0.840062062778022,0,"L",-0.0980848487819821,"myself","F","H",53,0 -"186",-0.314169551933244,0,"L",-0.429336311773764,"ex-partner","M","M",45,0 -"187",0.606142342045117,1,"L",-0.484544888939061,"myself","F","M",38,0 -"188",-0.577115807355633,0,"L",-0.539753466104358,"ex-partner","F","M",54,0 -"189",0.606142342045117,0,"M",1.50296388901163,"myself","M","H",42,0 -"190",0.211722958911534,0,"H",-0.650170620434952,"ex-partner","M","M",51,1 -"191",-0.051223296510855,1,"H",0.509209500036284,"myself","F","M",43,1 -"192",-0.051223296510855,0,"M",-1.36788212358381,"both","F","H",57,0 -"193",0.869088597467506,1,"L",-1.03663066059203,"myself","F","H",59,1 -"194",-0.445642679644438,1,"M",-1.36788212358381,"myself","M","H",54,1 -"195",-0.445642679644438,1,"L",1.39254673468104,"myself","M","M",29,0 -"196",-0.708588935066827,0,"L",-1.36788212358381,"both","F","L",61,1 -"197",-0.051223296510855,1,"H",-0.705379197600249,"myself","F","M",43,0 -"198",-0.708588935066827,0,"L",0.785252385862769,"both","M","H",33,1 -"199",0.737615469756312,0,"L",1.55817246617693,"myself","M","H",47,0 -"200",1.52645423602348,0,"M",-0.484544888939061,"ex-partner","F","H",43,1 -"201",0.606142342045117,0,"M",0.840460963028066,"both","F","H",32,0 -"202",1.1320348528899,0,"H",-0.926213506261437,"myself","F","L",35,0 -"203",0.606142342045117,0,"H",0.454000922870987,"myself","F","M",45,1 -"204",1.39498110831228,1,"M",2.1102582378299,"ex-partner","F","H",51,1 -"205",0.343196086622728,1,"M",0.509209500036284,"both","F","H",43,0 -"206",-1.3659545736228,0,"M",0.343583768540394,"ex-partner","F","H",30,0 -"207",-0.708588935066827,0,"L",0.39879234570569,"both","F","H",25,0 -"208",0.737615469756312,0,"L",-0.594962043269655,"ex-partner","M","M",51,1 -"209",-1.3659545736228,0,"M",-0.429336311773764,"myself","F","H",40,1 -"210",-1.10300831820041,1,"L",-0.0980848487819821,"myself","M","M",44,1 -"211",-0.971535190489216,1,"L",-1.14704781492262,"myself","M","M",54,0 -"212",-0.577115807355633,0,"M",2.33109254649108,"ex-partner","M","M",43,0 -"213",-1.3659545736228,0,"L",-0.760587774765546,"myself","M","M",44,1 -"214",0.0802498312003395,1,"M",-0.926213506261437,"ex-partner","F","M",55,0 -"215",0.737615469756312,1,"L",-0.87100492909614,"ex-partner","M","M",43,0 -"216",-1.3659545736228,0,"L",-0.263710580277873,"both","F","M",33,0 -"217",-0.051223296510855,0,"L",1.77900677483811,"ex-partner","F","H",57,0 -"218",1.0005617251787,1,"L",0.343583768540394,"ex-partner","M","M",49,1 -"219",-1.3659545736228,1,"L",0.564418077201581,"myself","F","M",42,1 -"220",0.474669214333923,0,"H",-0.484544888939061,"both","F","M",50,0 -"221",-0.051223296510855,0,"M",-0.815796351930843,"myself","M","H",54,1 -"222",0.211722958911534,0,"L",0.840460963028066,"both","M","L",45,0 -"223",-0.708588935066827,0,"H",-0.263710580277873,"myself","F","M",37,1 -"224",0.474669214333923,0,"H",-0.594962043269655,"myself","F","H",37,0 -"225",1.52645423602348,1,"L",-0.484544888939061,"myself","F","M",22,0 -"226",1.0005617251787,1,"L",0.95087811735866,"myself","F","M",50,0 -"227",1.39498110831228,0,"L",-0.926213506261437,"both","M","M",52,1 -"228",-0.182696424222049,0,"M",1.11650384885455,"ex-partner","F","H",54,0 -"229",-1.3659545736228,0,"H",0.895669540193363,"myself","M","M",25,0 -"230",-1.23448144591161,1,"M",-1.36788212358381,"myself","F","H",57,0 -"231",1.26350798060109,1,"H",0.895669540193363,"myself","F","M",62,0 -"232",-1.3659545736228,1,"M",1.44775531184633,"ex-partner","F","M",47,0 -"233",1.39498110831228,0,"M",-1.36788212358381,"both","F","H",37,0 -"234",2.05234674686826,0,"L",-1.25746496925322,"ex-partner","F","H",41,0 -"235",0.737615469756312,0,"L",-0.539753466104358,"ex-partner","F","M",39,0 -"236",-1.3659545736228,0,"L",-0.815796351930843,"ex-partner","M","H",41,0 -"237",-0.971535190489216,1,"H",-0.594962043269655,"ex-partner","M","M",46,1 -"238",-1.3659545736228,0,"L",-1.25746496925322,"ex-partner","F","M",47,0 -"239",-1.3659545736228,1,"M",0.122749459879206,"ex-partner","F","H",39,1 -"240",-0.445642679644438,0,"M",-0.815796351930843,"ex-partner","M","M",48,1 -"241",0.343196086622728,1,"M",0.454000922870987,"both","F","H",34,1 -"242",-1.23448144591161,0,"M",-1.36788212358381,"myself","F","L",54,0 -"243",1.65792736373467,1,"H",-0.208502003112576,"ex-partner","F","H",62,1 -"244",1.0005617251787,1,"M",0.730043808697472,"both","F","H",54,0 -"245",-1.3659545736228,0,"M",-0.926213506261437,"both","F","H",33,0 -"246",-0.577115807355633,0,"L",0.0123323055486118,"myself","F","M",35,0 -"247",0.343196086622728,1,"H",-0.705379197600249,"both","M","M",44,0 -"248",1.0005617251787,1,"L",0.619626654366878,"ex-partner","M","M",50,1 -"249",1.52645423602348,1,"M",0.39879234570569,"myself","M","M",33,1 -"250",0.343196086622728,1,"L",1.94463250633401,"myself","F","M",51,0 -"251",2.31529300229065,0,"L",-0.926213506261437,"ex-partner","F","M",35,1 -"252",-0.051223296510855,1,"M",-0.153293425947279,"ex-partner","F","H",26,0 -"253",-0.314169551933244,0,"M",0.785252385862769,"both","F","M",41,1 -"254",-0.708588935066827,1,"H",-1.14704781492262,"myself","F","M",41,0 -"255",0.343196086622728,1,"H",0.343583768540394,"myself","M","H",36,0 -"256",-0.182696424222049,1,"L",-0.705379197600249,"ex-partner","F","M",45,0 -"257",0.211722958911534,0,"M",1.72379819767282,"ex-partner","F","H",40,0 -"258",0.343196086622728,0,"M",-1.09183923775733,"both","M","M",52,0 -"259",1.26350798060109,1,"L",-0.263710580277873,"ex-partner","M","M",54,1 -"260",-1.3659545736228,1,"L",0.840460963028066,"myself","M","L",45,0 -"261",0.0802498312003395,1,"M",-0.263710580277873,"myself","F","H",42,1 -"262",-0.708588935066827,1,"L",-0.650170620434952,"both","M","H",36,0 -"263",1.78940049144587,1,"M",0.343583768540394,"myself","F","H",45,1 -"264",1.26350798060109,0,"M",-1.09183923775733,"ex-partner","F","H",43,0 -"265",0.606142342045117,0,"L",0.895669540193363,"myself","F","M",44,1 -"266",-1.3659545736228,1,"H",0.454000922870987,"both","F","M",47,0 -"267",0.211722958911534,0,"L",-1.09183923775733,"ex-partner","M","H",63,1 -"268",-0.182696424222049,0,"M",0.454000922870987,"ex-partner","F","M",43,0 -"269",1.65792736373467,0,"M",-1.36788212358381,"myself","M","M",44,1 -"270",-1.3659545736228,1,"M",-0.926213506261437,"ex-partner","M","H",61,0 -"271",-1.3659545736228,0,"L",0.454000922870987,"both","M","M",26,0 -"272",-0.314169551933244,0,"L",0.785252385862769,"myself","M","M",36,1 -"273",-1.3659545736228,0,"M",-0.926213506261437,"ex-partner","F","M",51,0 -"274",-0.708588935066827,1,"M",-0.31891915744317,"ex-partner","M","M",47,0 -"275",-1.3659545736228,1,"L",0.0123323055486118,"ex-partner","M","H",48,0 -"276",-0.708588935066827,0,"M",1.72379819767282,"myself","M","H",34,0 -"277",0.343196086622728,1,"M",0.840460963028066,"ex-partner","F","M",42,0 -"278",-0.051223296510855,1,"L",-0.484544888939061,"both","F","M",50,1 -"279",-0.577115807355633,0,"M",-0.760587774765546,"myself","F","M",38,1 -"280",-0.051223296510855,0,"L",0.840460963028066,"ex-partner","M","H",58,1 -"281",-0.182696424222049,0,"M",-0.760587774765546,"myself","F","L",39,0 -"282",1.0005617251787,0,"L",-1.31267354641852,"both","M","M",40,0 -"283",-0.708588935066827,0,"L",1.77900677483811,"myself","F","M",42,1 -"284",0.0802498312003395,0,"L",1.94463250633401,"myself","M","H",51,1 -"285",-1.3659545736228,0,"H",-1.20225639208792,"myself","M","M",31,1 -"286",0.474669214333923,0,"H",0.454000922870987,"ex-partner","F","H",44,0 -"287",-0.840062062778022,1,"M",-0.0980848487819821,"both","M","M",38,1 -"288",0.869088597467506,0,"H",-0.981422083426734,"ex-partner","M","H",32,0 -"289",-1.3659545736228,0,"M",1.94463250633401,"myself","F","H",47,0 -"290",-1.3659545736228,1,"M",0.343583768540394,"myself","M","H",33,0 -"291",1.0005617251787,1,"M",0.2331666142098,"ex-partner","F","H",40,0 -"292",-0.971535190489216,0,"M",-0.926213506261437,"ex-partner","M","H",52,0 -"293",1.1320348528899,0,"L",0.509209500036284,"myself","F","H",57,1 -"294",0.606142342045117,1,"M",1.61338104334222,"ex-partner","M","M",43,0 -"295",-0.182696424222049,0,"M",-0.374127734608467,"ex-partner","M","H",37,0 -"296",0.606142342045117,1,"L",0.0675408827139087,"ex-partner","F","H",44,0 -"297",-0.314169551933244,1,"L",0.39879234570569,"myself","F","M",30,0 -"298",-0.840062062778022,1,"M",0.674835231532175,"myself","F","H",48,0 -"299",0.869088597467506,0,"L",-0.374127734608467,"myself","F","H",50,0 -"300",-0.708588935066827,0,"L",-1.36788212358381,"myself","F","H",45,0 -"301",1.39498110831228,1,"L",-1.03663066059203,"myself","F","M",37,0 -"302",-0.182696424222049,1,"M",-0.87100492909614,"both","F","H",43,0 -"303",-1.3659545736228,1,"H",0.840460963028066,"myself","M","H",56,0 -"304",-0.314169551933244,0,"M",-1.31267354641852,"myself","M","M",27,0 -"305",-1.10300831820041,0,"H",-1.14704781492262,"myself","M","L",30,1 -"306",-1.10300831820041,0,"L",-1.20225639208792,"myself","M","H",47,1 -"307",-1.3659545736228,1,"M",0.95087811735866,"myself","F","M",34,1 -"308",0.869088597467506,0,"M",-1.03663066059203,"myself","M","H",43,0 -"309",-0.577115807355633,0,"M",0.509209500036284,"myself","F","M",47,0 -"310",0.606142342045117,1,"H",-0.429336311773764,"myself","F","H",49,0 -"311",1.0005617251787,1,"H",-1.36788212358381,"myself","M","M",41,0 -"312",0.737615469756312,0,"M",-0.31891915744317,"both","F","M",49,1 -"313",0.343196086622728,1,"H",0.0675408827139087,"both","M","H",39,0 -"314",-0.708588935066827,1,"M",0.619626654366878,"myself","F","M",47,0 -"315",1.26350798060109,1,"L",0.288375191375097,"myself","F","M",28,0 -"316",-0.577115807355633,1,"M",-1.03663066059203,"myself","F","M",37,0 -"317",1.26350798060109,0,"L",-0.484544888939061,"ex-partner","F","M",47,1 -"318",1.39498110831228,0,"H",-0.0980848487819821,"myself","F","M",28,1 -"319",0.474669214333923,0,"L",-1.36788212358381,"ex-partner","F","H",28,0 -"320",0.343196086622728,0,"L",0.730043808697472,"ex-partner","M","M",26,0 -"321",1.39498110831228,1,"M",0.840460963028066,"ex-partner","F","H",28,1 -"322",-0.840062062778022,0,"H",1.06129527168925,"myself","M","M",40,1 -"323",1.39498110831228,1,"L",-0.429336311773764,"both","F","M",53,0 -"324",0.343196086622728,1,"H",-1.36788212358381,"both","F","M",36,0 -"325",1.1320348528899,1,"H",1.66858962050752,"myself","M","H",46,1 -"326",0.737615469756312,1,"L",-1.36788212358381,"myself","F","M",45,0 -"327",1.39498110831228,0,"L",0.619626654366878,"myself","F","M",47,0 -"328",0.737615469756312,0,"M",2.55192685515227,"ex-partner","M","M",37,0 -"329",-0.182696424222049,1,"L",0.674835231532175,"both","F","H",30,1 -"330",-0.445642679644438,1,"L",1.66858962050752,"both","M","M",41,1 -"331",-0.708588935066827,0,"L",1.17171242601985,"myself","F","M",55,1 -"332",-0.314169551933244,0,"H",-1.36788212358381,"myself","F","M",38,0 -"333",-0.314169551933244,0,"L",-0.429336311773764,"both","F","H",25,0 -"334",-0.708588935066827,1,"L",-0.0428762716166852,"ex-partner","M","M",49,1 -"335",-0.577115807355633,0,"M",-0.87100492909614,"myself","F","M",31,1 -"336",1.65792736373467,1,"L",-0.87100492909614,"ex-partner","F","H",58,0 -"337",0.343196086622728,0,"M",-0.374127734608467,"ex-partner","F","M",43,0 -"338",-0.182696424222049,0,"L",-0.926213506261437,"myself","M","M",45,1 -"339",-0.840062062778022,0,"M",-0.926213506261437,"myself","F","H",32,0 -"340",0.343196086622728,1,"H",0.177958037044503,"myself","F","H",33,0 -"341",-1.3659545736228,0,"L",-1.36788212358381,"ex-partner","M","M",39,0 -"342",2.05234674686826,0,"M",1.28212958035044,"myself","M","H",35,1 -"343",-1.3659545736228,1,"L",-0.0428762716166852,"myself","F","H",32,0 -"344",-0.840062062778022,0,"L",2.22067539216049,"both","F","H",45,0 -"345",1.52645423602348,1,"L",-1.25746496925322,"myself","F","H",46,1 -"346",1.0005617251787,0,"H",-1.36788212358381,"ex-partner","M","M",50,0 -"347",-1.23448144591161,1,"L",-1.36788212358381,"ex-partner","M","M",48,1 -"348",1.1320348528899,1,"L",0.2331666142098,"myself","F","H",68,1 -"349",-0.445642679644438,0,"M",0.895669540193363,"myself","F","M",41,0 -"350",-1.3659545736228,0,"H",-0.263710580277873,"myself","M","H",48,0 -"351",-0.182696424222049,0,"M",-0.87100492909614,"ex-partner","F","L",35,0 -"352",-1.3659545736228,0,"M",-0.0428762716166852,"ex-partner","M","M",30,0 -"353",-1.3659545736228,1,"M",0.674835231532175,"ex-partner","F","M",42,1 -"354",0.343196086622728,1,"H",-1.03663066059203,"ex-partner","M","M",46,0 -"355",-1.3659545736228,1,"M",0.674835231532175,"both","M","H",44,0 -"356",-0.314169551933244,0,"H",0.0675408827139087,"myself","M","H",33,0 -"357",-1.3659545736228,1,"M",-0.705379197600249,"ex-partner","M","H",48,0 -"358",0.0802498312003395,1,"M",2.27588396932579,"myself","F","H",55,1 -"359",-1.3659545736228,1,"M",-0.926213506261437,"myself","F","M",48,0 diff --git a/tests/testthat/data_files/MEDIATION/UPBdata3.csv b/tests/testthat/data_files/MEDIATION/UPBdata3.csv deleted file mode 100644 index c4c4b23b..00000000 --- a/tests/testthat/data_files/MEDIATION/UPBdata3.csv +++ /dev/null @@ -1,383 +0,0 @@ -"","att","attbin","attcat","negaff","initiator","gender","educ","age","UPB" -"1",1.39498110831228,0,"M",0.122749459879206,"myself","F","H",50,0 -"2",1.39498110831228,0,"M",0.343583768540394,"both","M","M",47,0 -"3",-1.3659545736228,0,"M",-1.03663066059203,"both","F","H",41,0 -"4",-1.3659545736228,0,"L",-1.25746496925322,"myself","F","M",47,0 -"5",0.211722958911534,0,"H",-0.87100492909614,"both","F","M",37,0 -"6",1.0005617251787,0,"H",-1.36788212358381,"myself","F","M",36,1 -"7",1.39498110831228,1,"M",-1.03663066059203,"ex-partner","F","H",37,0 -"8",-0.840062062778022,0,"M",-0.484544888939061,"myself","F","M",52,0 -"9",0.0802498312003395,1,"M",-0.208502003112576,"ex-partner","F","M",26,0 -"10",0.474669214333923,1,"L",0.122749459879206,"ex-partner","F","M",38,0 -"11",-0.182696424222049,1,"L",-1.36788212358381,"both","M","H",50,1 -"12",-1.3659545736228,0,"L",-0.429336311773764,"both","M","M",62,0 -"13",0.211722958911534,0,"M",-1.31267354641852,"myself","F","M",54,0 -"14",0.606142342045117,0,"L",0.2331666142098,"ex-partner","M","H",43,0 -"15",-1.3659545736228,1,"L",0.785252385862769,"myself","M","M",60,0 -"16",-0.182696424222049,1,"M",0.785252385862769,"ex-partner","F","H",35,1 -"17",0.0802498312003395,1,"L",0.895669540193363,"ex-partner","F","H",33,1 -"18",1.26350798060109,1,"L",-0.815796351930843,"ex-partner","M","H",41,1 -"19",1.1320348528899,1,"L",-0.263710580277873,"myself","F","M",30,0 -"20",-0.182696424222049,1,"M",-0.374127734608467,"myself","M","M",62,1 -"21",-1.3659545736228,0,"M",1.39254673468104,"ex-partner","M","M",37,0 -"22",0.606142342045117,0,"M",-0.594962043269655,"ex-partner","F","M",23,0 -"23",1.0005617251787,0,"L",1.9998410834993,"both","F","H",51,0 -"24",-0.971535190489216,1,"M",-0.705379197600249,"myself","F","H",61,0 -"25",0.869088597467506,1,"M",0.840460963028066,"ex-partner","M","H",62,1 -"26",0.737615469756312,0,"M",-1.09183923775733,"myself","F","H",26,0 -"27",0.737615469756312,0,"M",0.454000922870987,"myself","M","H",40,1 -"28",0.343196086622728,0,"L",1.55817246617693,"both","F","M",45,1 -"29",-0.840062062778022,1,"M",0.785252385862769,"ex-partner","M","M",41,0 -"30",1.52645423602348,1,"L",0.288375191375097,"myself","F","H",49,0 -"31",-0.840062062778022,0,"M",0.619626654366878,"myself","M","M",45,1 -"32",0.211722958911534,1,"H",-0.815796351930843,"ex-partner","F","H",54,1 -"33",-1.3659545736228,1,"H",0.674835231532175,"ex-partner","F","M",43,1 -"34",0.343196086622728,0,"M",-1.36788212358381,"myself","M","H",42,0 -"35",-1.3659545736228,1,"H",-0.484544888939061,"myself","F","L",37,1 -"36",-1.3659545736228,0,"L",0.288375191375097,"ex-partner","F","M",31,1 -"37",-1.3659545736228,1,"L",1.11650384885455,"myself","F","M",55,0 -"38",1.52645423602348,0,"M",-0.926213506261437,"ex-partner","M","H",47,0 -"39",-0.708588935066827,1,"L",1.77900677483811,"myself","M","H",27,1 -"40",0.869088597467506,0,"M",-1.25746496925322,"both","F","M",44,0 -"41",0.343196086622728,0,"L",1.55817246617693,"both","M","M",34,1 -"42",1.39498110831228,1,"L",-0.760587774765546,"both","M","H",43,0 -"43",1.0005617251787,0,"L",1.50296388901163,"myself","F","M",42,0 -"44",-0.314169551933244,1,"M",-0.484544888939061,"myself","M","M",56,0 -"45",0.606142342045117,1,"L",-0.263710580277873,"both","F","H",35,1 -"46",1.0005617251787,0,"H",-0.815796351930843,"myself","F","L",30,0 -"47",1.1320348528899,0,"M",-0.0428762716166852,"myself","F","H",33,1 -"48",-1.3659545736228,0,"H",-0.374127734608467,"myself","F","M",43,0 -"49",-0.971535190489216,1,"L",1.17171242601985,"myself","M","M",45,0 -"50",1.1320348528899,0,"L",0.840460963028066,"myself","F","H",47,0 -"51",0.211722958911534,0,"M",0.0675408827139087,"myself","F","M",56,0 -"52",-1.3659545736228,0,"L",-0.484544888939061,"myself","F","H",49,0 -"53",0.869088597467506,1,"M",0.674835231532175,"ex-partner","F","M",37,1 -"54",-0.577115807355633,1,"L",-1.20225639208792,"both","F","M",43,0 -"55",0.211722958911534,0,"L",-1.20225639208792,"myself","F","M",49,0 -"56",0.211722958911534,1,"M",0.840460963028066,"myself","M","M",28,0 -"57",-1.3659545736228,0,"L",0.730043808697472,"ex-partner","F","M",49,0 -"58",-0.708588935066827,0,"L",-0.0428762716166852,"myself","M","M",35,0 -"59",1.65792736373467,1,"L",-1.14704781492262,"ex-partner","F","M",40,1 -"60",-1.3659545736228,1,"M",-0.650170620434952,"ex-partner","F","H",22,0 -"61",1.39498110831228,1,"L",0.840460963028066,"ex-partner","M","H",43,0 -"62",-0.708588935066827,0,"H",1.83421535200341,"both","F","M",43,1 -"63",-1.10300831820041,0,"M",-0.0428762716166852,"ex-partner","F","M",45,0 -"64",-0.708588935066827,0,"L",-0.0428762716166852,"both","M","M",56,1 -"65",0.0802498312003395,0,"H",2.33109254649108,"both","M","L",41,1 -"66",-0.051223296510855,0,"M",0.840460963028066,"myself","M","H",54,1 -"67",1.65792736373467,1,"M",1.39254673468104,"myself","M","H",67,1 -"68",-0.445642679644438,0,"L",-1.36788212358381,"myself","M","H",33,0 -"69",-0.971535190489216,1,"H",0.343583768540394,"myself","F","M",50,0 -"70",1.26350798060109,0,"M",-0.705379197600249,"myself","F","M",41,1 -"71",1.39498110831228,1,"L",0.454000922870987,"myself","F","M",44,1 -"72",0.737615469756312,0,"L",-0.31891915744317,"both","F","M",46,0 -"73",-1.3659545736228,0,"H",0.730043808697472,"ex-partner","F","H",49,1 -"74",1.39498110831228,1,"L",-1.20225639208792,"myself","F","H",37,0 -"75",-0.051223296510855,1,"M",-0.0428762716166852,"myself","M","H",43,0 -"76",-0.577115807355633,0,"L",-0.263710580277873,"myself","F","H",30,0 -"77",1.1320348528899,0,"M",-0.0428762716166852,"ex-partner","F","H",26,0 -"78",-0.445642679644438,1,"M",-0.484544888939061,"myself","M","M",48,1 -"79",-1.3659545736228,0,"L",-0.0428762716166852,"ex-partner","F","M",28,0 -"80",1.39498110831228,0,"L",0.895669540193363,"myself","M","M",40,1 -"81",-1.3659545736228,0,"L",-0.705379197600249,"myself","F","H",56,0 -"82",0.0802498312003395,0,"M",-0.429336311773764,"ex-partner","M","H",32,1 -"83",-1.3659545736228,1,"M",-0.981422083426734,"myself","M","H",46,0 -"84",1.78940049144587,0,"L",-1.14704781492262,"myself","M","H",43,0 -"85",0.0802498312003395,0,"M",-1.25746496925322,"both","F","M",54,1 -"86",-1.3659545736228,1,"H",1.83421535200341,"ex-partner","M","M",43,1 -"87",-0.971535190489216,1,"M",2.22067539216049,"ex-partner","F","L",46,0 -"88",1.1320348528899,0,"L",0.177958037044503,"ex-partner","M","L",37,0 -"89",0.343196086622728,0,"L",2.27588396932579,"ex-partner","F","H",32,0 -"90",0.0802498312003395,0,"M",0.39879234570569,"ex-partner","F","M",46,1 -"91",-1.3659545736228,1,"M",-0.484544888939061,"ex-partner","M","M",48,1 -"92",0.737615469756312,1,"H",-0.484544888939061,"myself","M","M",43,0 -"93",-0.182696424222049,0,"L",-0.705379197600249,"ex-partner","F","H",43,1 -"94",0.737615469756312,1,"L",-0.705379197600249,"myself","F","M",49,0 -"95",0.606142342045117,1,"M",-0.0980848487819821,"ex-partner","M","H",31,0 -"96",0.606142342045117,1,"M",0.730043808697472,"both","M","H",40,0 -"97",-0.051223296510855,0,"L",-1.36788212358381,"both","M","H",48,1 -"98",1.1320348528899,1,"L",0.840460963028066,"both","F","M",30,0 -"99",-0.971535190489216,0,"L",-1.25746496925322,"myself","F","H",32,1 -"100",1.0005617251787,1,"H",-0.484544888939061,"myself","M","H",33,1 -"101",0.869088597467506,1,"L",0.619626654366878,"ex-partner","M","M",51,1 -"102",-0.051223296510855,1,"M",0.509209500036284,"ex-partner","M","L",45,0 -"103",-0.971535190489216,0,"L",-1.20225639208792,"both","F","M",48,1 -"104",2.05234674686826,1,"L",-0.31891915744317,"ex-partner","F","H",54,0 -"105",-1.3659545736228,1,"L",-0.429336311773764,"both","M","M",25,0 -"106",-0.051223296510855,1,"L",0.0675408827139087,"myself","F","L",31,0 -"107",-0.577115807355633,0,"L",-1.36788212358381,"ex-partner","M","M",54,0 -"108",1.0005617251787,1,"M",-0.815796351930843,"myself","M","H",47,0 -"109",0.0802498312003395,0,"L",-0.153293425947279,"ex-partner","M","M",40,1 -"110",-0.051223296510855,0,"H",0.177958037044503,"myself","F","M",44,1 -"111",-0.708588935066827,0,"H",0.0675408827139087,"ex-partner","M","L",49,0 -"112",0.343196086622728,1,"M",-0.705379197600249,"both","M","M",45,0 -"113",0.606142342045117,1,"M",-1.20225639208792,"myself","F","H",62,0 -"114",0.606142342045117,0,"L",1.28212958035044,"myself","M","M",50,0 -"115",-0.445642679644438,0,"L",0.895669540193363,"myself","F","L",42,0 -"116",-0.708588935066827,0,"L",0.619626654366878,"myself","F","L",47,0 -"117",-1.3659545736228,0,"M",1.50296388901163,"myself","M","H",57,0 -"118",-0.708588935066827,0,"L",-0.484544888939061,"myself","F","M",47,0 -"119",-1.3659545736228,1,"L",-0.484544888939061,"myself","F","H",57,0 -"120",-1.3659545736228,1,"L",0.343583768540394,"ex-partner","M","M",33,0 -"121",0.343196086622728,0,"M",-0.815796351930843,"ex-partner","F","M",41,1 -"122",-0.182696424222049,0,"H",-0.594962043269655,"myself","M","M",43,0 -"123",-0.840062062778022,1,"M",-0.926213506261437,"ex-partner","F","M",45,1 -"124",-1.3659545736228,1,"M",0.343583768540394,"ex-partner","F","M",50,1 -"125",-0.182696424222049,0,"L",-0.539753466104358,"myself","F","H",27,1 -"126",-0.051223296510855,0,"L",-0.539753466104358,"myself","F","H",42,0 -"127",-0.708588935066827,1,"M",1.50296388901163,"myself","F","M",34,0 -"128",2.05234674686826,0,"M",-0.31891915744317,"ex-partner","F","M",46,0 -"129",1.0005617251787,0,"M",-0.0980848487819821,"myself","M","M",37,1 -"130",0.606142342045117,0,"H",-0.0428762716166852,"myself","F","H",39,1 -"131",-0.314169551933244,1,"L",-1.36788212358381,"myself","F","M",48,1 -"132",0.474669214333923,1,"M",-0.31891915744317,"myself","M","M",40,1 -"133",-0.577115807355633,0,"H",0.288375191375097,"both","M","M",55,0 -"134",0.474669214333923,1,"M",0.343583768540394,"ex-partner","F","M",37,1 -"135",0.343196086622728,0,"M",1.66858962050752,"both","M","H",39,0 -"136",-0.182696424222049,1,"L",-1.03663066059203,"myself","F","H",49,0 -"137",0.0802498312003395,0,"M",1.61338104334222,"myself","F","H",52,0 -"138",-0.708588935066827,0,"L",-0.981422083426734,"myself","M","H",68,1 -"139",1.39498110831228,0,"L",0.177958037044503,"ex-partner","F","H",34,1 -"140",-1.3659545736228,0,"M",-0.0428762716166852,"ex-partner","M","M",39,0 -"141",-0.971535190489216,1,"M",-0.594962043269655,"myself","M","M",36,1 -"142",-1.3659545736228,1,"L",-0.87100492909614,"myself","F","H",28,0 -"143",-0.182696424222049,0,"M",0.0123323055486118,"ex-partner","F","H",42,1 -"144",-1.23448144591161,1,"H",1.55817246617693,"ex-partner","F","H",40,0 -"145",0.211722958911534,0,"L",1.28212958035044,"myself","M","M",34,0 -"146",-0.314169551933244,1,"L",-0.815796351930843,"myself","M","H",37,0 -"147",0.737615469756312,1,"L",1.44775531184633,"myself","M","M",57,1 -"148",0.0802498312003395,1,"L",1.66858962050752,"myself","M","H",46,0 -"149",2.57823925771303,0,"L",2.22067539216049,"ex-partner","M","H",58,1 -"150",1.26350798060109,0,"L",-0.484544888939061,"myself","F","H",62,0 -"151",-1.3659545736228,0,"H",0.509209500036284,"ex-partner","F","M",49,0 -"152",-1.3659545736228,1,"M",2.27588396932579,"ex-partner","M","M",29,1 -"153",-0.840062062778022,1,"L",0.0675408827139087,"ex-partner","M","H",52,1 -"154",-0.445642679644438,0,"M",-0.760587774765546,"myself","F","H",39,0 -"155",0.474669214333923,0,"M",1.88942392916871,"myself","M","H",43,1 -"156",1.1320348528899,1,"L",-0.926213506261437,"myself","M","M",49,0 -"157",0.343196086622728,0,"L",0.674835231532175,"ex-partner","M","L",26,0 -"158",-0.314169551933244,0,"H",1.39254673468104,"ex-partner","M","L",35,1 -"159",-1.3659545736228,1,"H",0.95087811735866,"myself","F","H",47,1 -"160",2.18381987457945,1,"M",1.22692100318514,"ex-partner","F","M",39,1 -"161",1.26350798060109,1,"M",-1.36788212358381,"ex-partner","F","M",51,0 -"162",0.343196086622728,0,"L",-0.760587774765546,"both","M","H",34,0 -"163",-1.3659545736228,0,"M",0.2331666142098,"myself","M","H",33,0 -"164",-0.840062062778022,1,"L",-0.0980848487819821,"both","F","L",35,0 -"165",-0.051223296510855,1,"L",-1.09183923775733,"myself","F","M",51,1 -"166",-1.3659545736228,0,"L",-0.926213506261437,"ex-partner","F","M",28,0 -"167",1.52645423602348,0,"M",0.895669540193363,"ex-partner","F","M",54,0 -"168",1.52645423602348,0,"L",0.122749459879206,"ex-partner","F","H",59,0 -"169",1.0005617251787,0,"L",1.17171242601985,"myself","F","M",42,0 -"170",-0.971535190489216,0,"H",-0.374127734608467,"myself","M","M",37,0 -"171",-1.3659545736228,0,"L",1.50296388901163,"myself","M","M",36,0 -"172",-1.23448144591161,0,"M",0.785252385862769,"myself","M","H",45,1 -"173",-0.445642679644438,1,"L",-1.09183923775733,"myself","M","M",34,0 -"174",-0.840062062778022,1,"M",-1.36788212358381,"myself","M","M",35,0 -"175",-1.3659545736228,0,"M",1.72379819767282,"ex-partner","F","H",48,1 -"176",0.869088597467506,0,"M",-0.0980848487819821,"myself","F","H",62,1 -"177",0.474669214333923,0,"M",-0.374127734608467,"ex-partner","F","M",63,1 -"178",1.26350798060109,1,"M",2.33109254649108,"myself","F","M",51,0 -"179",2.44676613000184,0,"L",-0.926213506261437,"ex-partner","F","M",25,0 -"180",-0.182696424222049,0,"L",-1.14704781492262,"ex-partner","F","M",51,0 -"181",0.474669214333923,0,"L",-0.760587774765546,"ex-partner","F","H",59,0 -"182",0.211722958911534,0,"L",-1.20225639208792,"ex-partner","F","M",47,0 -"183",1.65792736373467,0,"H",0.840460963028066,"myself","F","M",44,0 -"184",-1.3659545736228,1,"M",1.72379819767282,"myself","F","M",45,1 -"185",0.211722958911534,0,"M",1.06129527168925,"myself","M","M",41,0 -"186",-0.182696424222049,0,"L",-0.429336311773764,"myself","F","M",25,0 -"187",-0.708588935066827,1,"L",-0.208502003112576,"ex-partner","F","M",42,0 -"188",2.05234674686826,0,"L",0.0123323055486118,"both","M","H",35,1 -"189",1.0005617251787,1,"L",-1.36788212358381,"ex-partner","F","M",55,1 -"190",0.474669214333923,0,"H",-0.926213506261437,"both","F","H",42,0 -"191",1.52645423602348,0,"L",-1.36788212358381,"ex-partner","M","L",53,0 -"192",-0.708588935066827,1,"M",-1.03663066059203,"myself","F","H",56,1 -"193",-0.708588935066827,0,"M",-0.374127734608467,"myself","F","H",64,1 -"194",0.343196086622728,1,"M",0.509209500036284,"myself","M","H",44,1 -"195",0.869088597467506,1,"L",-0.0428762716166852,"myself","M","M",61,1 -"196",-0.314169551933244,1,"M",-1.36788212358381,"ex-partner","F","H",40,0 -"197",-0.708588935066827,0,"M",0.619626654366878,"ex-partner","M","M",26,0 -"198",-1.10300831820041,1,"M",1.94463250633401,"both","F","L",33,0 -"199",-0.314169551933244,1,"L",-1.36788212358381,"ex-partner","M","H",44,0 -"200",-0.182696424222049,1,"H",-1.36788212358381,"both","M","H",55,1 -"201",0.0802498312003395,1,"M",1.39254673468104,"myself","F","M",31,0 -"202",-1.3659545736228,1,"M",-0.429336311773764,"myself","M","M",48,0 -"203",0.869088597467506,0,"L",-0.208502003112576,"ex-partner","M","M",44,0 -"204",-0.708588935066827,0,"L",0.840460963028066,"ex-partner","M","H",35,0 -"205",0.474669214333923,1,"H",0.39879234570569,"myself","F","H",33,0 -"206",0.0802498312003395,0,"M",1.94463250633401,"ex-partner","F","M",49,0 -"207",0.737615469756312,1,"M",1.06129527168925,"myself","M","M",61,1 -"208",1.26350798060109,1,"M",-0.815796351930843,"myself","F","M",42,0 -"209",1.52645423602348,1,"M",0.0123323055486118,"ex-partner","F","M",59,0 -"210",1.26350798060109,0,"M",0.2331666142098,"both","M","H",53,0 -"211",0.343196086622728,0,"L",-1.36788212358381,"myself","F","H",39,0 -"212",-1.3659545736228,1,"M",1.72379819767282,"myself","F","L",41,0 -"213",-0.182696424222049,1,"H",3.04880404963994,"both","F","M",43,0 -"214",0.343196086622728,0,"L",-0.594962043269655,"ex-partner","M","M",47,1 -"215",0.343196086622728,1,"L",0.0675408827139087,"ex-partner","F","M",37,0 -"216",0.211722958911534,0,"H",-0.650170620434952,"myself","F","M",50,0 -"217",-1.10300831820041,0,"L",0.730043808697472,"ex-partner","F","H",47,0 -"218",1.0005617251787,0,"L",0.2331666142098,"myself","F","H",32,1 -"219",1.1320348528899,1,"H",1.44775531184633,"myself","M","M",38,1 -"220",0.737615469756312,1,"L",1.17171242601985,"ex-partner","F","H",45,0 -"221",0.606142342045117,0,"M",0.39879234570569,"both","F","L",44,1 -"222",0.869088597467506,1,"L",0.0675408827139087,"myself","F","H",61,0 -"223",0.474669214333923,0,"L",-1.36788212358381,"ex-partner","F","L",45,1 -"224",1.92087361915706,1,"M",2.44150970082168,"myself","F","M",33,0 -"225",-1.3659545736228,0,"L",0.454000922870987,"ex-partner","M","H",37,1 -"226",-1.3659545736228,1,"M",1.66858962050752,"ex-partner","F","H",46,1 -"227",-0.577115807355633,1,"M",-1.14704781492262,"myself","F","M",51,0 -"228",1.26350798060109,0,"H",0.619626654366878,"both","F","H",51,0 -"229",1.39498110831228,0,"H",-0.705379197600249,"myself","M","M",35,0 -"230",1.1320348528899,1,"L",-0.539753466104358,"myself","F","M",42,1 -"231",-1.3659545736228,1,"L",-0.705379197600249,"both","F","H",52,0 -"232",1.1320348528899,1,"L",-0.87100492909614,"myself","F","M",52,0 -"233",0.737615469756312,1,"M",0.509209500036284,"myself","F","M",51,1 -"234",-1.23448144591161,0,"M",0.730043808697472,"ex-partner","M","M",48,0 -"235",0.343196086622728,1,"L",-0.484544888939061,"myself","F","M",43,0 -"236",0.869088597467506,1,"H",0.895669540193363,"myself","F","M",44,1 -"237",-0.971535190489216,1,"M",1.72379819767282,"ex-partner","F","M",63,0 -"238",-1.3659545736228,0,"H",0.509209500036284,"both","M","H",48,1 -"239",0.606142342045117,1,"M",-1.36788212358381,"ex-partner","F","M",54,1 -"240",0.869088597467506,0,"H",-0.208502003112576,"ex-partner","F","M",48,1 -"241",0.211722958911534,0,"M",0.0675408827139087,"myself","F","H",50,0 -"242",0.211722958911534,0,"L",1.00608669452396,"ex-partner","F","M",44,0 -"243",0.737615469756312,1,"L",0.39879234570569,"myself","M","H",49,0 -"244",-0.445642679644438,0,"L",0.39879234570569,"both","F","M",40,0 -"245",-0.577115807355633,0,"M",-0.650170620434952,"myself","M","H",35,1 -"246",0.343196086622728,1,"M",-1.03663066059203,"both","F","M",47,0 -"247",-1.3659545736228,1,"L",0.454000922870987,"ex-partner","F","M",44,1 -"248",-1.3659545736228,1,"M",0.454000922870987,"myself","M","H",41,0 -"249",-0.971535190489216,1,"L",1.22692100318514,"ex-partner","M","M",47,1 -"250",1.92087361915706,0,"M",1.50296388901163,"ex-partner","F","H",28,0 -"251",-1.3659545736228,1,"L",-0.263710580277873,"ex-partner","F","M",37,0 -"252",-0.971535190489216,1,"L",-0.429336311773764,"myself","F","M",43,1 -"253",0.343196086622728,0,"M",-1.36788212358381,"myself","F","M",64,0 -"254",-0.314169551933244,0,"M",0.0675408827139087,"ex-partner","M","M",44,0 -"255",1.0005617251787,0,"M",0.343583768540394,"ex-partner","F","M",68,1 -"256",1.26350798060109,1,"L",-1.25746496925322,"ex-partner","M","M",50,0 -"257",1.1320348528899,1,"M",-0.153293425947279,"myself","F","H",37,0 -"258",1.0005617251787,1,"L",-1.36788212358381,"both","M","L",44,0 -"259",-0.051223296510855,0,"M",-0.484544888939061,"both","F","H",32,1 -"260",-0.182696424222049,0,"L",-1.03663066059203,"both","F","H",36,0 -"261",1.65792736373467,0,"H",-0.539753466104358,"myself","F","M",43,0 -"262",-0.051223296510855,1,"H",-0.926213506261437,"ex-partner","F","M",54,1 -"263",0.211722958911534,0,"H",0.454000922870987,"ex-partner","F","M",35,0 -"264",-0.314169551933244,0,"M",0.454000922870987,"myself","F","M",47,1 -"265",0.343196086622728,1,"L",-1.36788212358381,"myself","F","H",47,0 -"266",0.474669214333923,1,"L",-1.14704781492262,"myself","M","M",41,1 -"267",-1.3659545736228,0,"L",0.674835231532175,"ex-partner","F","M",48,0 -"268",-0.840062062778022,0,"L",-0.760587774765546,"myself","F","M",39,0 -"269",1.39498110831228,1,"M",-0.374127734608467,"ex-partner","M","M",57,0 -"270",1.39498110831228,0,"M",-1.03663066059203,"myself","M","M",26,0 -"271",-0.445642679644438,0,"H",1.55817246617693,"myself","M","M",48,1 -"272",-1.3659545736228,1,"L",-0.263710580277873,"myself","M","L",42,1 -"273",-0.971535190489216,1,"M",-0.926213506261437,"both","M","H",36,0 -"274",-1.3659545736228,1,"M",-1.09183923775733,"ex-partner","F","H",48,0 -"275",2.31529300229065,1,"M",-0.153293425947279,"ex-partner","M","M",50,1 -"276",-0.182696424222049,1,"H",0.122749459879206,"myself","F","H",40,0 -"277",-0.577115807355633,1,"M",-0.815796351930843,"myself","M","M",41,1 -"278",0.474669214333923,0,"L",-0.705379197600249,"ex-partner","F","M",39,0 -"279",-0.708588935066827,0,"L",0.564418077201581,"myself","M","H",47,0 -"280",-0.840062062778022,0,"M",1.77900677483811,"myself","F","M",39,0 -"281",0.737615469756312,0,"L",-0.263710580277873,"myself","M","M",41,1 -"282",0.211722958911534,0,"L",-1.36788212358381,"myself","M","M",32,0 -"283",-0.182696424222049,1,"L",1.11650384885455,"myself","F","M",46,0 -"284",-1.3659545736228,0,"L",-1.03663066059203,"ex-partner","M","H",28,0 -"285",-0.445642679644438,1,"L",1.94463250633401,"both","M","H",30,0 -"286",0.474669214333923,1,"M",-0.926213506261437,"myself","M","M",49,0 -"287",-0.840062062778022,0,"L",-0.153293425947279,"myself","F","H",52,1 -"288",-0.182696424222049,1,"L",1.33733815751574,"both","F","H",57,0 -"289",-0.840062062778022,0,"M",-0.815796351930843,"myself","M","M",37,0 -"290",1.65792736373467,1,"M",-0.429336311773764,"ex-partner","F","H",31,0 -"291",-0.708588935066827,1,"L",-0.87100492909614,"both","F","H",51,0 -"292",-0.708588935066827,0,"L",-0.484544888939061,"both","F","H",36,0 -"293",-0.577115807355633,0,"L",0.177958037044503,"myself","M","M",33,0 -"294",0.343196086622728,0,"L",-0.926213506261437,"ex-partner","F","M",49,0 -"295",1.0005617251787,1,"M",0.619626654366878,"myself","F","M",43,0 -"296",-0.971535190489216,1,"H",-0.429336311773764,"myself","F","H",33,1 -"297",1.1320348528899,1,"M",-0.926213506261437,"ex-partner","M","M",46,0 -"298",-0.314169551933244,1,"L",1.28212958035044,"ex-partner","F","M",51,0 -"299",-0.051223296510855,1,"M",-0.650170620434952,"myself","F","M",38,1 -"300",-1.3659545736228,0,"L",-0.0980848487819821,"both","F","H",40,0 -"301",0.474669214333923,1,"M",-1.09183923775733,"myself","F","M",53,1 -"302",1.65792736373467,1,"L",1.06129527168925,"myself","M","L",58,0 -"303",-1.3659545736228,1,"L",-1.36788212358381,"both","M","H",50,0 -"304",-1.3659545736228,1,"L",-1.36788212358381,"myself","M","M",50,0 -"305",0.343196086622728,0,"H",-0.0980848487819821,"myself","F","H",47,0 -"306",0.343196086622728,0,"M",0.177958037044503,"both","M","M",43,0 -"307",-0.182696424222049,1,"M",0.0675408827139087,"myself","F","M",45,0 -"308",-0.577115807355633,0,"L",0.619626654366878,"both","M","M",30,0 -"309",-1.10300831820041,0,"M",-0.815796351930843,"myself","M","M",31,1 -"310",-0.708588935066827,1,"M",0.840460963028066,"ex-partner","M","M",46,0 -"311",-0.051223296510855,0,"L",-0.0428762716166852,"ex-partner","M","M",33,0 -"312",-0.971535190489216,0,"L",-0.926213506261437,"both","M","M",38,1 -"313",-0.840062062778022,1,"L",-0.0428762716166852,"myself","F","M",37,1 -"314",-1.3659545736228,1,"L",-1.36788212358381,"both","M","H",32,0 -"315",0.869088597467506,0,"H",1.83421535200341,"both","M","M",35,1 -"316",-0.708588935066827,1,"L",-0.263710580277873,"both","F","M",40,0 -"317",-0.314169551933244,1,"H",0.785252385862769,"myself","F","M",28,1 -"318",-0.708588935066827,1,"L",2.55192685515227,"myself","F","H",47,0 -"319",0.343196086622728,1,"H",-0.31891915744317,"myself","F","M",54,0 -"320",0.343196086622728,1,"L",-0.926213506261437,"ex-partner","M","M",47,0 -"321",0.474669214333923,0,"M",2.33109254649108,"both","F","H",47,1 -"322",-0.051223296510855,1,"L",0.730043808697472,"myself","F","L",25,0 -"323",-0.051223296510855,0,"H",-0.0428762716166852,"both","F","M",50,0 -"324",-1.3659545736228,1,"L",-1.36788212358381,"myself","M","H",35,0 -"325",-0.445642679644438,0,"M",0.2331666142098,"myself","M","H",51,0 -"326",2.05234674686826,1,"H",0.674835231532175,"both","F","M",29,0 -"327",1.39498110831228,0,"L",0.454000922870987,"myself","F","H",32,1 -"328",-0.182696424222049,1,"L",0.619626654366878,"ex-partner","F","H",51,1 -"329",1.65792736373467,0,"M",0.730043808697472,"myself","M","M",55,1 -"330",1.26350798060109,0,"M",-0.87100492909614,"myself","M","M",38,1 -"331",-1.3659545736228,0,"L",0.177958037044503,"myself","F","M",48,1 -"332",-1.3659545736228,0,"L",0.0675408827139087,"myself","M","H",45,0 -"333",0.0802498312003395,0,"L",0.343583768540394,"myself","F","H",39,0 -"334",-0.051223296510855,1,"L",-0.87100492909614,"ex-partner","M","H",30,1 -"335",-1.3659545736228,1,"L",-0.484544888939061,"ex-partner","F","M",46,0 -"336",-0.051223296510855,1,"M",0.840460963028066,"myself","F","H",29,0 -"337",0.474669214333923,0,"L",0.454000922870987,"both","F","H",36,0 -"338",-1.3659545736228,1,"M",2.38630112365638,"myself","F","H",54,1 -"339",-0.051223296510855,1,"H",-1.25746496925322,"both","F","M",25,1 -"340",-0.708588935066827,1,"L",-0.594962043269655,"ex-partner","M","M",61,1 -"341",1.39498110831228,1,"M",-1.20225639208792,"myself","M","H",50,0 -"342",-0.314169551933244,1,"L",-0.0980848487819821,"myself","F","H",55,0 -"343",-1.3659545736228,0,"M",-1.03663066059203,"myself","M","M",42,1 -"344",-0.445642679644438,0,"M",-1.36788212358381,"myself","M","M",43,0 -"345",-0.182696424222049,0,"L",0.840460963028066,"myself","F","L",31,1 -"346",-1.3659545736228,0,"M",0.840460963028066,"myself","F","M",38,0 -"347",1.26350798060109,0,"L",-1.36788212358381,"myself","M","H",37,0 -"348",-0.577115807355633,1,"L",-0.374127734608467,"both","F","L",43,0 -"349",-0.051223296510855,1,"M",1.28212958035044,"both","F","H",50,0 -"350",-1.10300831820041,1,"H",1.55817246617693,"ex-partner","F","M",46,0 -"351",-0.051223296510855,1,"H",-0.208502003112576,"myself","M","H",30,1 -"352",0.737615469756312,0,"M",-0.0428762716166852,"both","M","M",26,0 -"353",1.1320348528899,0,"M",-1.36788212358381,"ex-partner","F","M",52,1 -"354",0.0802498312003395,1,"L",-0.0428762716166852,"ex-partner","F","M",46,0 -"355",-1.3659545736228,1,"M",-0.539753466104358,"myself","M","M",46,1 -"356",-1.3659545736228,0,"M",-0.484544888939061,"ex-partner","F","M",31,1 -"357",-1.3659545736228,0,"H",-1.36788212358381,"both","M","H",36,0 -"358",-0.840062062778022,1,"L",0.564418077201581,"ex-partner","M","M",26,1 -"359",-1.3659545736228,0,"M",-1.36788212358381,"myself","F","M",51,0 -"360",-0.708588935066827,0,"M",-0.153293425947279,"both","F","M",43,1 -"361",-1.3659545736228,0,"M",2.27588396932579,"ex-partner","F","M",43,0 -"362",1.0005617251787,0,"L",2.1102582378299,"myself","M","M",33,0 -"363",0.869088597467506,1,"L",-1.36788212358381,"both","F","H",38,1 -"364",-0.971535190489216,1,"M",-1.36788212358381,"myself","F","H",45,0 -"365",-0.314169551933244,1,"M",-1.31267354641852,"myself","M","M",39,0 -"366",1.65792736373467,1,"L",-0.926213506261437,"both","F","H",49,0 -"367",0.343196086622728,1,"L",0.2331666142098,"myself","M","L",58,0 -"368",0.0802498312003395,0,"L",-1.36788212358381,"ex-partner","F","H",54,1 -"369",1.1320348528899,1,"L",1.11650384885455,"myself","M","H",48,1 -"370",-1.3659545736228,0,"M",-1.36788212358381,"both","F","M",32,0 -"371",2.31529300229065,1,"L",-0.374127734608467,"myself","M","M",29,0 -"372",-0.840062062778022,0,"H",0.2331666142098,"both","F","L",35,1 -"373",1.0005617251787,1,"M",-0.705379197600249,"ex-partner","F","H",36,0 -"374",0.737615469756312,0,"M",-0.153293425947279,"both","F","M",54,0 -"375",-0.708588935066827,1,"L",0.95087811735866,"both","F","H",49,1 -"376",-0.577115807355633,0,"L",0.122749459879206,"myself","M","M",37,0 -"377",0.211722958911534,0,"M",-1.14704781492262,"ex-partner","M","M",45,1 -"378",1.39498110831228,0,"L",0.122749459879206,"ex-partner","F","H",38,1 -"379",-1.3659545736228,0,"H",-0.705379197600249,"myself","F","H",52,0 -"380",-1.3659545736228,1,"M",-1.14704781492262,"myself","F","H",57,0 -"381",-1.3659545736228,0,"L",0.509209500036284,"ex-partner","F","M",35,0 -"382",1.78940049144587,0,"L",-1.14704781492262,"myself","F","H",44,0 diff --git a/tests/testthat/data_files/MEDIATION/framing.csv b/tests/testthat/data_files/MEDIATION/framing.csv deleted file mode 100644 index 4a87497f..00000000 --- a/tests/testthat/data_files/MEDIATION/framing.csv +++ /dev/null @@ -1,266 +0,0 @@ -"","cond","anx","age","educ","gender","income","emo","p_harm","tone","eth","treat","english","immigr","anti_info","cong_mesg" -"1","3","a little anxious",45,"high school","male",13,7,6,0,1,0,"Oppose",4,0,1 -"2","4","somewhat anxious",73,"bachelor's degree or higher","male",16,6,3,0,0,0,"Favor",3,0,0 -"3","2","a little anxious",53,"some college","female",3,8,7,1,0,0,"Strongly Oppose",3,0,0 -"4","1","not anxious at all",45,"high school","male",14,9,8,1,1,1,"Strongly Oppose",4,0,1 -"5","3","somewhat anxious",55,"some college","female",12,5,5,0,1,0,"Strongly Oppose",2,0,0 -"6","1","a little anxious",85,"high school","female",3,5,6,1,1,1,"Strongly Oppose",4,0,0 -"7","1","a little anxious",58,"high school","female",10,10,8,1,1,1,"Oppose",4,0,0 -"8","2","a little anxious",53,"some college","male",9,8,7,1,0,0,"Favor",4,1,1 -"9","1","a little anxious",52,"some college","female",14,8,5,1,1,1,"Strongly Oppose",3,0,0 -"10","4","very anxious",42,"some college","male",15,3,2,0,0,0,"Oppose",2,0,0 -"11","4","a little anxious",38,"bachelor's degree or higher","female",9,11,8,0,0,0,"Strongly Oppose",4,1,1 -"12","4","very anxious",38,"high school","male",6,9,8,0,0,0,"Strongly Oppose",4,1,1 -"13","4","a little anxious",26,"bachelor's degree or higher","female",10,8,6,0,0,0,"Oppose",3,0,1 -"14","1","not anxious at all",52,"some college","male",11,10,8,1,1,1,"Strongly Oppose",4,0,1 -"15","1","very anxious",48,"some college","male",19,3,3,1,1,1,"Oppose",2,0,0 -"16","2","not anxious at all",62,"high school","female",10,12,8,1,0,0,"Strongly Oppose",4,1,1 -"17","1","not anxious at all",41,"less than high school","female",7,9,8,1,1,1,"Oppose",4,0,0 -"18","3","somewhat anxious",54,"high school","male",11,6,6,0,1,0,"Strongly Oppose",4,0,0 -"19","1","a little anxious",69,"high school","female",9,8,7,1,1,1,"Strongly Oppose",4,0,0 -"20","1","somewhat anxious",71,"less than high school","male",6,6,6,1,1,1,"Strongly Oppose",1,0,0 -"21","3","somewhat anxious",62,"some college","male",14,4,5,0,1,0,"Oppose",2,0,0 -"22","2","very anxious",41,"some college","male",13,3,6,1,0,0,"Strongly Oppose",3,0,0 -"23","3","a little anxious",60,"high school","female",11,7,7,0,1,0,"Strongly Oppose",4,0,1 -"24","4","somewhat anxious",62,"some college","male",17,6,8,0,0,0,"Oppose",4,0,1 -"25","4","somewhat anxious",31,"bachelor's degree or higher","male",13,7,5,0,0,0,"Strongly Oppose",4,0,0 -"26","3","somewhat anxious",50,"some college","female",13,4,2,0,1,0,"Strongly Oppose",2,0,0 -"27","3","a little anxious",48,"high school","male",7,9,5,0,1,0,"Strongly Oppose",4,0,1 -"28","2","somewhat anxious",29,"some college","male",10,6,4,1,0,0,"Strongly Favor",2,0,0 -"29","3","a little anxious",64,"high school","female",5,9,5,0,1,0,"Oppose",4,0,0 -"30","3","very anxious",65,"high school","female",12,4,6,0,1,0,"Strongly Oppose",4,0,1 -"31","4","not anxious at all",66,"less than high school","female",4,12,8,0,0,0,"Oppose",4,0,0 -"32","1","not anxious at all",68,"high school","female",9,11,8,1,1,1,"Strongly Oppose",4,0,1 -"33","4","somewhat anxious",43,"high school","female",15,6,6,0,0,0,"Favor",3,0,0 -"34","3","a little anxious",57,"bachelor's degree or higher","female",12,7,5,0,1,0,"Oppose",3,0,0 -"35","3","somewhat anxious",41,"high school","male",11,9,4,0,1,0,"Strongly Oppose",4,0,0 -"36","2","somewhat anxious",85,"bachelor's degree or higher","male",13,7,7,1,0,0,"Strongly Oppose",3,0,1 -"37","4","a little anxious",70,"bachelor's degree or higher","male",15,8,8,0,0,0,"Strongly Oppose",4,0,1 -"38","3","a little anxious",65,"bachelor's degree or higher","male",14,8,6,0,1,0,"Strongly Oppose",4,0,0 -"39","2","a little anxious",67,"less than high school","female",11,11,8,1,0,0,"Strongly Oppose",4,1,1 -"40","1","a little anxious",68,"some college","female",9,6,5,1,1,1,"Favor",2,0,0 -"41","2","somewhat anxious",64,"some college","male",13,5,5,1,0,0,"Strongly Oppose",2,0,0 -"42","1","a little anxious",37,"some college","male",13,10,8,1,1,1,"Strongly Oppose",4,0,1 -"43","3","not anxious at all",45,"high school","female",7,10,7,0,1,0,"Strongly Oppose",4,0,0 -"44","3","a little anxious",81,"less than high school","female",14,9,7,0,1,0,"Oppose",4,0,1 -"45","2","somewhat anxious",51,"high school","female",10,6,6,1,0,0,"Strongly Oppose",3,0,0 -"46","1","a little anxious",53,"some college","male",12,10,8,1,1,1,"Strongly Oppose",4,0,1 -"47","4","somewhat anxious",62,"high school","female",9,6,5,0,0,0,"Strongly Oppose",4,0,0 -"48","2","a little anxious",42,"less than high school","male",8,9,8,1,0,0,"Oppose",4,0,1 -"49","1","a little anxious",71,"some college","female",12,8,8,1,1,1,"Strongly Oppose",4,0,0 -"50","1","a little anxious",56,"high school","male",11,11,8,1,1,1,"Strongly Oppose",4,0,1 -"51","1","a little anxious",67,"less than high school","female",8,10,5,1,1,1,"Oppose",4,0,1 -"52","4","a little anxious",77,"some college","female",6,7,6,0,0,0,"Strongly Oppose",2,1,0 -"53","1","not anxious at all",24,"some college","female",15,11,7,1,1,1,"Strongly Oppose",4,1,1 -"54","4","a little anxious",42,"high school","male",3,7,5,0,0,0,"Oppose",2,0,0 -"55","3","very anxious",25,"bachelor's degree or higher","female",11,3,4,0,1,0,"Oppose",2,0,0 -"56","1","a little anxious",60,"high school","female",12,8,6,1,1,1,"Oppose",4,0,0 -"57","1","somewhat anxious",43,"some college","male",14,10,8,1,1,1,"Strongly Oppose",1,0,1 -"58","1","a little anxious",60,"some college","male",6,9,6,1,1,1,"Strongly Oppose",3,0,0 -"59","4","not anxious at all",31,"high school","male",11,11,7,0,0,0,"Strongly Oppose",4,1,0 -"60","2","somewhat anxious",47,"some college","female",13,7,6,1,0,0,"Favor",3,0,0 -"61","1","very anxious",32,"bachelor's degree or higher","female",10,3,2,1,1,1,"Favor",2,0,0 -"62","2","somewhat anxious",66,"some college","male",8,8,7,1,0,0,"Strongly Oppose",3,0,0 -"63","2","very anxious",44,"high school","female",15,6,8,1,0,0,"Strongly Oppose",4,0,0 -"64","2","somewhat anxious",46,"high school","male",17,6,4,1,0,0,"Strongly Oppose",3,0,0 -"65","4","very anxious",41,"high school","female",10,3,3,0,0,0,"Strongly Oppose",2,0,0 -"66","2","a little anxious",75,"high school","female",9,7,4,1,0,0,"Strongly Oppose",3,0,0 -"67","1","not anxious at all",53,"bachelor's degree or higher","male",10,12,8,1,1,1,"Strongly Oppose",4,0,1 -"68","3","very anxious",60,"bachelor's degree or higher","male",12,3,4,0,1,0,"Favor",2,0,0 -"69","3","very anxious",75,"high school","female",2,4,6,0,1,0,"Favor",2,0,0 -"70","2","not anxious at all",45,"high school","male",9,12,8,1,0,0,"Strongly Oppose",4,0,0 -"71","2","not anxious at all",69,"less than high school","female",5,12,8,1,0,0,"Strongly Oppose",4,0,1 -"72","4","somewhat anxious",67,"high school","female",15,6,4,0,0,0,"Strongly Oppose",3,0,0 -"73","4","somewhat anxious",20,"high school","male",9,5,5,0,0,0,"Oppose",2,0,0 -"74","1","somewhat anxious",43,"bachelor's degree or higher","male",16,6,4,1,1,1,"Strongly Oppose",2,0,0 -"75","4","a little anxious",32,"some college","male",10,9,8,0,0,0,"Strongly Oppose",4,0,0 -"76","3","somewhat anxious",39,"high school","male",12,5,4,0,1,0,"Favor",3,0,0 -"77","3","very anxious",53,"bachelor's degree or higher","female",13,4,3,0,1,0,"Favor",2,0,0 -"78","2","not anxious at all",57,"some college","female",2,12,8,1,0,0,"Strongly Oppose",4,1,0 -"79","4","a little anxious",62,"high school","female",7,8,7,0,0,0,"Strongly Oppose",3,1,1 -"80","2","a little anxious",69,"high school","female",7,9,8,1,0,0,"Strongly Oppose",4,0,0 -"81","2","somewhat anxious",44,"high school","female",13,7,6,1,0,0,"Oppose",4,0,0 -"82","1","not anxious at all",57,"high school","male",11,12,8,1,1,1,"Strongly Oppose",4,0,0 -"83","4","a little anxious",27,"some college","female",15,7,4,0,0,0,"Strongly Oppose",2,0,0 -"84","3","somewhat anxious",82,"bachelor's degree or higher","female",17,7,5,0,1,0,"Oppose",2,0,0 -"85","4","somewhat anxious",84,"high school","male",12,6,6,0,0,0,"Strongly Oppose",3,1,1 -"86","3","somewhat anxious",54,"some college","female",13,5,6,0,1,0,"Oppose",2,0,0 -"87","2","very anxious",36,"less than high school","male",11,4,6,1,0,0,"Oppose",4,0,0 -"88","1","not anxious at all",47,"some college","male",13,12,8,1,1,1,"Strongly Oppose",4,1,1 -"89","1","very anxious",28,"bachelor's degree or higher","female",12,3,6,1,1,1,"Strongly Oppose",4,0,0 -"90","2","very anxious",42,"high school","female",14,4,8,1,0,0,"Strongly Oppose",4,0,1 -"91","3","very anxious",60,"high school","male",6,7,8,0,1,0,"Strongly Oppose",4,0,0 -"92","1","very anxious",55,"bachelor's degree or higher","male",15,3,4,1,1,1,"Strongly Oppose",3,0,0 -"93","2","a little anxious",55,"high school","female",6,9,7,1,0,0,"Strongly Oppose",4,0,0 -"94","4","not anxious at all",61,"some college","male",12,12,8,0,0,0,"Strongly Oppose",4,1,1 -"95","3","somewhat anxious",84,"high school","female",11,5,2,0,1,0,"Favor",2,0,0 -"96","4","not anxious at all",45,"high school","female",3,10,8,0,0,0,"Oppose",1,0,1 -"97","1","a little anxious",67,"some college","male",7,8,8,1,1,1,"Oppose",3,0,0 -"98","2","not anxious at all",24,"some college","male",12,11,8,1,0,0,"Strongly Oppose",4,0,0 -"99","2","not anxious at all",64,"less than high school","male",11,10,7,1,0,0,"Strongly Oppose",4,1,1 -"100","1","a little anxious",72,"high school","female",7,10,3,1,1,1,"Strongly Oppose",4,0,0 -"101","2","not anxious at all",40,"high school","female",4,12,8,1,0,0,"Strongly Favor",1,0,1 -"102","4","not anxious at all",35,"bachelor's degree or higher","female",11,9,8,0,0,0,"Strongly Oppose",4,1,1 -"103","1","not anxious at all",69,"high school","female",8,12,8,1,1,1,"Oppose",4,0,1 -"104","1","a little anxious",30,"less than high school","female",6,11,7,1,1,1,"Oppose",4,0,0 -"105","2","a little anxious",45,"high school","female",7,8,8,1,0,0,"Strongly Oppose",3,0,0 -"106","4","very anxious",35,"some college","male",9,3,4,0,0,0,"Oppose",2,0,0 -"107","4","not anxious at all",47,"high school","male",11,10,8,0,0,0,"Oppose",3,1,1 -"108","4","a little anxious",53,"some college","male",11,5,4,0,0,0,"Strongly Oppose",2,0,0 -"109","3","a little anxious",75,"high school","male",4,9,6,0,1,0,"Oppose",2,0,0 -"110","1","somewhat anxious",70,"high school","female",13,8,6,1,1,1,"Favor",3,0,0 -"111","1","somewhat anxious",56,"high school","female",8,7,8,1,1,1,"Strongly Oppose",4,0,1 -"112","3","a little anxious",70,"less than high school","female",7,8,8,0,1,0,"Strongly Oppose",3,0,0 -"113","4","somewhat anxious",35,"bachelor's degree or higher","male",11,4,3,0,0,0,"Strongly Oppose",2,0,0 -"114","1","not anxious at all",54,"bachelor's degree or higher","female",11,12,6,1,1,1,"Strongly Oppose",4,0,0 -"115","2","somewhat anxious",76,"bachelor's degree or higher","male",12,5,6,1,0,0,"Strongly Oppose",2,0,0 -"116","1","a little anxious",65,"high school","female",13,9,6,1,1,1,"Strongly Oppose",4,1,1 -"117","2","somewhat anxious",22,"high school","male",12,5,4,1,0,0,"Oppose",2,0,0 -"118","3","somewhat anxious",28,"high school","male",13,8,8,0,1,0,"Strongly Oppose",4,0,1 -"119","4","very anxious",26,"bachelor's degree or higher","male",11,3,5,0,0,0,"Favor",3,0,0 -"120","1","somewhat anxious",67,"high school","male",13,5,6,1,1,1,"Strongly Oppose",4,0,0 -"121","4","very anxious",58,"high school","male",13,5,4,0,0,0,"Strongly Oppose",3,0,1 -"122","3","somewhat anxious",34,"some college","female",16,6,3,0,1,0,"Strongly Oppose",3,0,0 -"123","2","very anxious",29,"bachelor's degree or higher","female",1,5,6,1,0,0,"Oppose",2,0,0 -"124","3","a little anxious",61,"less than high school","male",13,10,6,0,1,0,"Oppose",4,0,1 -"125","4","not anxious at all",58,"some college","female",6,11,8,0,0,0,"Strongly Oppose",4,0,0 -"126","1","very anxious",46,"some college","female",10,5,4,1,1,1,"Oppose",2,0,0 -"127","3","not anxious at all",73,"less than high school","female",6,8,6,0,1,0,"Strongly Oppose",4,0,1 -"128","4","very anxious",23,"bachelor's degree or higher","male",1,3,3,0,0,0,"Strongly Oppose",1,0,0 -"129","3","very anxious",19,"high school","male",15,4,6,0,1,0,"Strongly Oppose",3,0,0 -"130","2","somewhat anxious",35,"some college","male",8,4,4,1,0,0,"Strongly Oppose",2,0,0 -"131","2","very anxious",29,"bachelor's degree or higher","male",19,4,5,1,0,0,"Strongly Oppose",3,0,0 -"132","2","very anxious",53,"bachelor's degree or higher","male",8,3,3,1,0,0,"Strongly Oppose",3,0,0 -"133","3","a little anxious",72,"bachelor's degree or higher","male",12,7,6,0,1,0,"Oppose",3,0,1 -"134","3","somewhat anxious",36,"bachelor's degree or higher","male",14,5,4,0,1,0,"Favor",1,0,0 -"135","1","not anxious at all",26,"less than high school","male",5,11,8,1,1,1,"Strongly Oppose",3,0,0 -"136","2","a little anxious",46,"bachelor's degree or higher","female",13,7,8,1,0,0,"Strongly Oppose",4,0,1 -"137","3","a little anxious",31,"high school","male",6,9,8,0,1,0,"Strongly Oppose",4,0,0 -"138","2","a little anxious",70,"high school","female",1,8,7,1,0,0,"Strongly Oppose",4,0,0 -"139","4","a little anxious",65,"bachelor's degree or higher","male",13,7,6,0,0,0,"Strongly Oppose",3,0,1 -"140","4","very anxious",69,"less than high school","female",1,4,4,0,0,0,"Oppose",2,0,0 -"141","4","very anxious",72,"bachelor's degree or higher","male",11,4,4,0,0,0,"Oppose",2,0,0 -"142","1","not anxious at all",71,"less than high school","female",13,12,8,1,1,1,"Strongly Oppose",4,1,1 -"143","2","very anxious",62,"some college","male",12,4,6,1,0,0,"Oppose",3,0,0 -"144","3","a little anxious",37,"bachelor's degree or higher","male",13,7,5,0,1,0,"Oppose",3,0,0 -"145","2","very anxious",36,"high school","female",5,3,6,1,0,0,"Oppose",3,0,0 -"146","4","somewhat anxious",47,"some college","female",9,4,4,0,0,0,"Favor",3,0,0 -"147","3","somewhat anxious",47,"bachelor's degree or higher","male",16,5,4,0,1,0,"Oppose",3,0,0 -"148","1","very anxious",28,"bachelor's degree or higher","male",4,3,3,1,1,1,"Oppose",3,0,0 -"149","2","somewhat anxious",34,"bachelor's degree or higher","female",11,5,6,1,0,0,"Oppose",2,0,0 -"150","2","very anxious",69,"bachelor's degree or higher","male",10,3,4,1,0,0,"Favor",2,0,0 -"151","3","a little anxious",47,"high school","male",12,10,8,0,1,0,"Oppose",3,0,1 -"152","1","not anxious at all",73,"high school","male",11,11,8,1,1,1,"Strongly Oppose",4,0,1 -"153","3","very anxious",63,"high school","female",10,3,3,0,1,0,"Strongly Oppose",2,0,0 -"154","2","somewhat anxious",33,"less than high school","male",1,7,4,1,0,0,"Strongly Oppose",2,0,0 -"155","1","somewhat anxious",42,"high school","female",6,7,4,1,1,1,"Oppose",2,0,0 -"156","3","somewhat anxious",43,"high school","female",7,5,6,0,1,0,"Strongly Oppose",4,1,1 -"157","4","very anxious",50,"bachelor's degree or higher","female",16,3,4,0,0,0,"Oppose",2,0,0 -"158","2","somewhat anxious",56,"bachelor's degree or higher","male",10,6,7,1,0,0,"Strongly Oppose",3,0,1 -"159","3","somewhat anxious",28,"some college","female",11,6,6,0,1,0,"Strongly Oppose",2,0,0 -"160","1","somewhat anxious",44,"some college","female",13,8,8,1,1,1,"Oppose",4,0,0 -"161","3","somewhat anxious",38,"bachelor's degree or higher","female",9,5,6,0,1,0,"Oppose",1,0,0 -"162","1","not anxious at all",34,"bachelor's degree or higher","female",14,11,7,1,1,1,"Strongly Oppose",2,0,0 -"163","2","very anxious",56,"some college","male",16,3,3,1,0,0,"Strongly Oppose",2,0,0 -"164","3","somewhat anxious",47,"bachelor's degree or higher","male",11,4,6,0,1,0,"Oppose",2,0,0 -"165","4","somewhat anxious",42,"bachelor's degree or higher","male",7,7,6,0,0,0,"Strongly Oppose",4,0,1 -"166","3","somewhat anxious",53,"some college","female",16,4,5,0,1,0,"Strongly Oppose",2,0,0 -"167","3","very anxious",38,"bachelor's degree or higher","female",11,4,4,0,1,0,"Strongly Favor",1,0,0 -"168","2","somewhat anxious",50,"bachelor's degree or higher","female",11,6,4,1,0,0,"Favor",3,0,0 -"169","3","a little anxious",21,"high school","male",15,8,7,0,1,0,"Strongly Oppose",3,0,1 -"170","4","somewhat anxious",25,"some college","male",18,5,6,0,0,0,"Strongly Oppose",3,0,0 -"171","3","very anxious",58,"high school","female",16,5,8,0,1,0,"Oppose",4,0,1 -"172","4","somewhat anxious",39,"some college","male",10,5,7,0,0,0,"Strongly Oppose",3,1,0 -"173","4","not anxious at all",26,"some college","female",7,12,8,0,0,0,"Strongly Oppose",4,0,0 -"174","4","somewhat anxious",61,"some college","female",8,8,6,0,0,0,"Strongly Oppose",4,0,1 -"175","1","somewhat anxious",29,"some college","female",11,5,4,1,1,1,"Oppose",1,0,0 -"176","3","not anxious at all",39,"some college","female",12,12,7,0,1,0,"Strongly Oppose",4,0,1 -"177","2","somewhat anxious",40,"bachelor's degree or higher","male",11,7,6,1,0,0,"Strongly Oppose",4,0,1 -"178","1","somewhat anxious",30,"bachelor's degree or higher","female",11,4,4,1,1,1,"Strongly Favor",2,0,0 -"179","2","very anxious",64,"bachelor's degree or higher","female",10,3,5,1,0,0,"Oppose",1,0,0 -"180","2","a little anxious",50,"less than high school","male",5,10,7,1,0,0,"Strongly Oppose",3,0,1 -"181","2","somewhat anxious",33,"bachelor's degree or higher","female",12,9,8,1,0,0,"Strongly Oppose",4,0,0 -"182","3","somewhat anxious",35,"high school","male",9,6,6,0,1,0,"Oppose",4,0,1 -"183","1","somewhat anxious",26,"bachelor's degree or higher","female",16,6,5,1,1,1,"Oppose",3,0,0 -"184","1","not anxious at all",44,"some college","male",16,10,8,1,1,1,"Strongly Oppose",4,0,0 -"185","1","somewhat anxious",44,"some college","male",13,6,6,1,1,1,"Oppose",4,0,1 -"186","1","not anxious at all",25,"some college","male",11,12,8,1,1,1,"Strongly Oppose",4,1,1 -"187","3","very anxious",44,"bachelor's degree or higher","male",17,3,4,0,1,0,"Oppose",1,0,0 -"188","2","a little anxious",51,"bachelor's degree or higher","female",17,9,8,1,0,0,"Strongly Oppose",4,1,1 -"189","2","very anxious",62,"bachelor's degree or higher","female",14,5,6,1,0,0,"Strongly Oppose",3,0,0 -"190","4","very anxious",55,"bachelor's degree or higher","female",18,3,8,0,0,0,"Strongly Oppose",4,0,1 -"191","3","somewhat anxious",43,"bachelor's degree or higher","male",13,5,6,0,1,0,"Strongly Oppose",3,0,1 -"192","4","very anxious",53,"bachelor's degree or higher","male",12,3,3,0,0,0,"Strongly Oppose",3,1,1 -"193","3","a little anxious",49,"some college","female",10,6,4,0,1,0,"Oppose",3,0,1 -"194","3","somewhat anxious",34,"some college","male",11,5,4,0,1,0,"Favor",2,0,0 -"195","4","not anxious at all",36,"high school","male",11,9,7,0,0,0,"Strongly Oppose",4,0,0 -"196","2","very anxious",31,"bachelor's degree or higher","male",11,3,3,1,0,0,"Strongly Oppose",3,0,1 -"197","4","somewhat anxious",57,"bachelor's degree or higher","female",15,5,5,0,0,0,"Strongly Oppose",2,0,0 -"198","2","somewhat anxious",18,"less than high school","female",16,6,6,1,0,0,"Oppose",1,0,0 -"199","3","somewhat anxious",37,"bachelor's degree or higher","female",12,5,6,0,1,0,"Strongly Oppose",3,0,0 -"200","3","very anxious",63,"bachelor's degree or higher","male",16,3,4,0,1,0,"Strongly Oppose",1,0,0 -"201","2","a little anxious",48,"bachelor's degree or higher","female",16,8,8,1,0,0,"Oppose",3,0,0 -"202","4","not anxious at all",32,"high school","male",13,12,8,0,0,0,"Strongly Oppose",4,0,1 -"203","2","a little anxious",28,"some college","female",9,7,5,1,0,0,"Oppose",2,0,0 -"204","4","somewhat anxious",45,"high school","female",13,6,5,0,0,0,"Favor",3,0,0 -"205","1","a little anxious",59,"some college","male",13,7,8,1,1,1,"Oppose",4,1,1 -"206","4","not anxious at all",82,"high school","female",10,11,8,0,0,0,"Strongly Oppose",3,1,0 -"207","2","very anxious",62,"bachelor's degree or higher","female",2,4,4,1,0,0,"Favor",2,0,0 -"208","1","very anxious",35,"bachelor's degree or higher","female",19,4,5,1,1,1,"Oppose",3,0,0 -"209","4","very anxious",47,"some college","female",15,4,5,0,0,0,"Oppose",1,0,1 -"210","3","not anxious at all",65,"some college","male",15,11,8,0,1,0,"Strongly Oppose",2,0,0 -"211","1","a little anxious",62,"high school","male",13,8,8,1,1,1,"Strongly Oppose",4,0,0 -"212","4","a little anxious",59,"bachelor's degree or higher","female",18,7,7,0,0,0,"Strongly Oppose",4,0,1 -"213","4","somewhat anxious",51,"bachelor's degree or higher","female",9,6,6,0,0,0,"Oppose",2,0,0 -"214","1","somewhat anxious",33,"high school","female",12,8,6,1,1,1,"Strongly Oppose",4,0,0 -"215","1","a little anxious",27,"some college","female",8,9,6,1,1,1,"Oppose",3,0,0 -"216","2","somewhat anxious",54,"bachelor's degree or higher","female",10,5,3,1,0,0,"Strongly Oppose",2,1,0 -"217","3","very anxious",58,"bachelor's degree or higher","male",5,3,2,0,1,0,"Favor",1,0,0 -"218","2","very anxious",20,"some college","male",3,3,3,1,0,0,"Strongly Favor",2,0,0 -"219","3","very anxious",47,"bachelor's degree or higher","male",5,3,3,0,1,0,"Oppose",3,0,0 -"220","2","a little anxious",29,"high school","male",12,10,7,1,0,0,"Oppose",4,1,1 -"221","3","not anxious at all",54,"high school","female",4,12,8,0,1,0,"Strongly Oppose",4,0,0 -"222","1","a little anxious",24,"bachelor's degree or higher","female",7,7,6,1,1,1,"Oppose",3,0,0 -"223","2","not anxious at all",47,"high school","female",10,12,8,1,0,0,"Strongly Oppose",4,1,1 -"224","3","a little anxious",25,"some college","female",11,7,3,0,1,0,"Oppose",2,0,0 -"225","4","somewhat anxious",28,"high school","male",10,5,6,0,0,0,"Oppose",3,0,0 -"226","2","somewhat anxious",57,"bachelor's degree or higher","male",16,7,6,1,0,0,"Strongly Favor",3,0,1 -"227","4","a little anxious",26,"high school","male",8,10,6,0,0,0,"Strongly Oppose",4,0,0 -"228","1","a little anxious",43,"high school","male",7,7,7,1,1,1,"Strongly Favor",3,0,1 -"229","4","somewhat anxious",35,"high school","male",12,6,6,0,0,0,"Strongly Oppose",4,0,1 -"230","4","a little anxious",29,"bachelor's degree or higher","female",11,7,5,0,0,0,"Oppose",2,0,0 -"231","2","very anxious",26,"some college","female",14,5,4,1,0,0,"Oppose",3,0,0 -"232","3","not anxious at all",18,"high school","female",15,12,8,0,1,0,"Strongly Oppose",4,0,0 -"233","4","very anxious",60,"bachelor's degree or higher","female",12,3,2,0,0,0,"Oppose",1,0,0 -"234","4","very anxious",42,"bachelor's degree or higher","female",15,3,3,0,0,0,"Strongly Oppose",2,0,0 -"235","1","a little anxious",29,"high school","female",15,10,8,1,1,1,"Strongly Oppose",4,0,1 -"236","3","somewhat anxious",57,"bachelor's degree or higher","female",10,5,4,0,1,0,"Favor",1,0,0 -"237","2","not anxious at all",53,"high school","female",14,10,8,1,0,0,"Strongly Oppose",4,0,1 -"238","3","very anxious",27,"some college","male",6,3,6,0,1,0,"Strongly Oppose",3,0,0 -"239","1","a little anxious",25,"bachelor's degree or higher","male",8,9,7,1,1,1,"Strongly Oppose",4,0,1 -"240","3","somewhat anxious",37,"some college","female",7,7,4,0,1,0,"Strongly Oppose",2,0,0 -"241","1","a little anxious",25,"some college","female",12,7,7,1,1,1,"Oppose",3,0,1 -"242","1","very anxious",38,"bachelor's degree or higher","female",13,4,3,1,1,1,"Strongly Oppose",3,0,0 -"243","1","somewhat anxious",39,"bachelor's degree or higher","female",15,5,5,1,1,1,"Strongly Oppose",3,0,0 -"244","1","somewhat anxious",26,"some college","male",7,7,6,1,1,1,"Strongly Oppose",4,0,1 -"245","4","very anxious",45,"bachelor's degree or higher","female",18,5,3,0,0,0,"Strongly Oppose",3,0,0 -"246","2","somewhat anxious",27,"some college","male",13,5,7,1,0,0,"Favor",4,0,0 -"247","3","very anxious",46,"high school","male",12,3,5,0,1,0,"Oppose",2,0,0 -"248","1","somewhat anxious",62,"high school","male",3,5,2,1,1,1,"Strongly Oppose",3,0,0 -"249","3","somewhat anxious",44,"high school","female",12,6,5,0,1,0,"Oppose",2,0,0 -"250","3","somewhat anxious",65,"bachelor's degree or higher","male",9,6,8,0,1,0,"Strongly Oppose",3,0,0 -"251","2","not anxious at all",34,"bachelor's degree or higher","male",8,12,7,1,0,0,"Oppose",3,0,0 -"252","4","somewhat anxious",66,"high school","female",11,7,8,0,0,0,"Oppose",3,1,1 -"253","3","very anxious",44,"high school","female",14,3,4,0,1,0,"Favor",2,0,0 -"254","1","a little anxious",34,"high school","male",13,7,5,1,1,1,"Oppose",3,0,1 -"255","4","a little anxious",43,"some college","male",10,11,8,0,0,0,"Strongly Oppose",4,0,0 -"256","2","a little anxious",30,"high school","male",9,8,7,1,0,0,"Strongly Oppose",4,0,0 -"257","1","not anxious at all",27,"some college","female",17,12,7,1,1,1,"Strongly Oppose",4,0,1 -"258","1","a little anxious",20,"high school","female",17,8,4,1,1,1,"Oppose",2,0,1 -"259","2","a little anxious",56,"high school","female",10,10,8,1,0,0,"Strongly Oppose",3,0,0 -"260","2","not anxious at all",42,"high school","male",12,10,7,1,0,0,"Oppose",4,0,1 -"261","3","somewhat anxious",44,"bachelor's degree or higher","male",17,7,6,0,1,0,"Oppose",1,0,0 -"262","4","somewhat anxious",28,"bachelor's degree or higher","female",14,6,6,0,0,0,"Strongly Oppose",1,0,1 -"263","2","very anxious",38,"bachelor's degree or higher","female",14,3,6,1,0,0,"Favor",2,0,0 -"264","1","somewhat anxious",29,"bachelor's degree or higher","male",10,9,7,1,1,1,"Strongly Oppose",4,0,1 -"265","4","very anxious",52,"some college","female",1,3,2,0,0,0,"Oppose",2,0,0 diff --git a/tests/testthat/data_files/MEDIATION/student.csv b/tests/testthat/data_files/MEDIATION/student.csv deleted file mode 100644 index 8fffcda9..00000000 --- a/tests/testthat/data_files/MEDIATION/student.csv +++ /dev/null @@ -1,9680 +0,0 @@ -"","fight","attachment","work","score","late","coed","smorale","gender","income","free","pared","catholic","SCH_ID" -"1",0,0,0,46,1,1,5,1,10,3,0,0,1 -"2",1,0,0,48,5,1,5,0,9,3,0,0,1 -"3",1,1,0,72,3,1,5,1,13,3,1,0,1 -"4",0,1,1,57,1,1,5,0,12,3,0,0,1 -"5",0,1,0,51,2,1,5,0,11,3,0,0,1 -"6",0,1,1,52,2,1,5,0,7,3,0,0,1 -"7",0,1,0,42,3,1,5,0,7,3,0,0,1 -"8",0,1,0,41,2,1,5,0,4,3,0,0,1 -"9",0,1,0,28,2,1,5,1,8,4,0,0,2 -"10",0,0,0,56,1,1,5,0,12,4,1,0,2 -"11",0,1,0,53,1,1,5,1,10,4,0,0,2 -"12",0,1,0,41,2,1,5,1,9,4,0,0,2 -"13",0,0,1,52,5,1,5,1,6,4,0,0,2 -"14",0,1,1,56,1,1,5,0,8,4,1,0,2 -"15",1,1,1,54,2,1,5,1,9,4,0,0,2 -"16",1,1,1,53,2,1,5,0,5,4,0,0,2 -"17",1,1,0,49,5,1,5,1,7,4,0,0,2 -"18",0,1,1,56,2,1,5,0,10,4,1,0,2 -"19",0,1,0,57,2,1,5,0,9,3,0,0,3 -"20",0,1,1,61,5,1,5,1,11,3,1,0,3 -"21",0,1,0,47,3,1,5,1,9,3,0,0,3 -"22",0,1,0,43,1,1,5,0,7,3,0,0,3 -"23",0,1,0,64,1,1,5,0,10,3,1,0,3 -"24",0,0,0,51,2,1,5,0,10,3,1,0,3 -"25",0,1,1,48,2,1,5,0,10,3,0,0,3 -"26",0,1,1,41,2,1,5,1,5,3,0,0,3 -"27",1,1,1,55,2,1,5,0,9,3,0,0,3 -"28",0,1,0,55,3,1,5,1,10,3,0,0,3 -"29",0,1,1,52,3,1,5,1,10,3,1,0,3 -"30",0,1,1,55,1,1,5,0,8,3,1,0,3 -"31",0,1,0,63,3,1,5,0,11,3,1,0,3 -"32",0,0,0,48,2,1,5,1,10,3,1,0,3 -"33",0,1,0,49,3,1,5,1,8,3,0,0,3 -"34",0,0,0,63,1,0,5,0,11,1,1,1,4 -"35",0,1,1,37,3,0,5,0,8,1,0,1,4 -"36",0,1,1,49,4,0,5,0,9,1,0,1,4 -"37",0,1,0,54,2,0,5,0,10,1,1,1,4 -"38",0,1,0,62,2,0,5,0,10,1,0,1,4 -"39",0,1,1,55,2,0,5,0,11,1,1,1,4 -"40",1,1,0,37,2,0,5,0,11,1,1,1,4 -"41",0,1,0,58,1,0,5,0,8,1,0,1,4 -"42",1,1,0,55,2,0,5,0,10,1,0,1,4 -"43",1,0,0,33,2,0,5,0,6,1,0,1,4 -"44",1,1,1,55,3,0,5,0,9,1,0,1,4 -"45",1,1,1,53,2,0,5,0,12,1,1,1,4 -"46",0,1,0,52,3,0,5,0,11,1,0,1,4 -"47",0,1,1,59,3,0,5,0,10,1,0,1,4 -"48",0,1,1,60,3,0,5,1,10,1,1,1,4 -"49",0,1,0,51,1,0,5,0,12,1,0,1,4 -"50",0,1,1,49,5,0,5,0,8,1,0,1,4 -"51",0,1,0,51,3,0,5,0,7,1,0,1,4 -"52",0,0,1,50,3,0,5,0,10,1,1,1,4 -"53",0,0,1,59,2,1,4,0,11,1,1,0,5 -"54",0,0,0,59,2,1,4,0,12,1,1,0,5 -"55",0,0,0,43,2,1,4,1,9,1,0,0,5 -"56",0,1,1,49,2,1,4,0,10,1,0,0,5 -"57",0,1,0,47,3,1,4,0,11,1,0,0,5 -"58",0,0,1,67,3,1,4,1,11,1,0,0,5 -"59",0,1,1,34,2,1,4,1,8,1,1,0,5 -"60",0,1,0,64,2,1,4,0,11,1,1,0,5 -"61",0,1,1,63,3,1,4,1,9,1,1,0,5 -"62",1,1,0,63,3,1,4,0,11,1,1,0,5 -"63",0,1,1,55,3,1,4,1,10,1,0,0,5 -"64",1,1,1,50,5,1,4,1,9,1,0,0,5 -"65",0,1,0,53,4,1,4,0,10,1,1,0,5 -"66",0,1,1,56,3,1,4,1,12,1,1,0,5 -"67",0,1,0,61,2,1,4,1,9,1,0,0,5 -"68",0,1,1,63,3,1,4,1,11,1,0,0,5 -"69",0,0,0,64,2,1,4,1,11,1,1,0,5 -"70",0,1,0,48,1,1,5,1,12,1,1,0,6 -"71",0,1,0,59,3,1,5,0,9,1,1,0,6 -"72",0,1,1,41,3,1,5,1,6,1,1,0,6 -"73",1,1,1,48,2,1,5,1,11,1,0,0,6 -"74",0,1,0,58,1,1,5,1,12,1,1,0,6 -"75",0,1,0,70,1,1,5,0,11,1,1,0,6 -"76",0,0,0,46,1,1,5,0,12,1,1,0,6 -"77",1,1,0,62,2,1,5,0,13,1,1,0,6 -"78",0,1,1,57,2,1,5,0,13,1,1,0,6 -"79",0,1,1,62,2,1,5,1,11,1,1,0,6 -"80",0,1,0,57,1,1,5,1,9,1,0,0,6 -"81",0,1,1,48,3,1,5,1,10,1,1,0,6 -"82",0,1,0,50,2,1,5,1,8,1,1,0,6 -"83",0,0,1,65,1,1,5,1,11,1,1,0,6 -"84",0,1,0,53,1,1,5,1,9,1,1,0,6 -"85",0,1,1,51,2,1,5,0,11,1,1,0,6 -"86",0,1,0,45,3,1,5,1,13,1,1,0,6 -"87",0,1,0,52,2,1,4,1,10,6,0,0,7 -"88",0,0,0,49,3,1,4,1,8,6,0,0,7 -"89",0,1,0,52,1,1,4,1,8,6,0,0,7 -"90",0,1,0,57,1,1,4,1,10,6,1,0,7 -"91",0,1,0,42,2,1,4,1,8,6,1,0,7 -"92",0,1,0,45,2,1,4,0,10,6,0,0,7 -"93",0,1,0,41,1,1,4,1,5,6,0,0,7 -"94",0,1,1,44,3,1,4,0,9,6,0,0,7 -"95",0,0,1,37,3,1,4,1,5,6,0,0,7 -"96",0,1,0,61,2,1,4,0,8,6,0,0,7 -"97",0,1,0,59,1,1,4,1,10,6,1,0,7 -"98",0,1,0,43,2,1,4,1,10,6,0,0,7 -"99",0,1,1,59,1,1,5,0,10,3,1,0,8 -"100",0,1,1,53,1,1,5,1,10,3,1,0,8 -"101",0,1,1,42,1,1,5,1,7,3,0,0,8 -"102",0,1,1,61,2,1,5,1,11,3,1,0,8 -"103",0,1,1,34,1,1,5,1,9,3,0,0,8 -"104",0,1,1,66,3,1,5,0,8,3,0,0,8 -"105",0,1,0,59,1,1,5,1,11,3,1,0,8 -"106",1,1,0,48,1,1,5,0,10,3,0,0,8 -"107",0,1,1,49,2,1,5,1,10,3,0,0,8 -"108",0,1,1,50,2,1,5,0,9,3,0,0,8 -"109",0,1,0,37,2,1,5,0,10,3,0,0,8 -"110",0,0,1,60,3,1,5,1,11,3,0,0,8 -"111",0,1,0,54,1,1,5,0,8,3,1,0,8 -"112",0,1,0,62,2,1,5,0,12,3,1,0,8 -"113",0,1,0,60,2,1,5,0,11,3,1,0,8 -"114",0,1,0,66,1,1,5,0,9,3,0,0,8 -"115",0,1,1,58,2,1,5,0,10,3,0,0,8 -"116",0,1,0,52,1,1,5,1,8,3,0,0,8 -"117",0,1,1,42,1,1,5,1,9,3,0,0,8 -"118",0,1,1,38,2,1,5,0,5,3,0,0,8 -"119",0,1,1,51,5,1,5,0,11,3,1,0,8 -"120",1,1,1,52,3,1,5,0,10,3,0,0,8 -"121",0,1,0,56,1,1,5,1,12,3,1,0,8 -"122",0,0,1,53,1,1,5,0,9,3,0,0,8 -"123",1,0,1,45,3,1,5,1,7,3,1,0,8 -"124",0,0,1,53,4,1,3,1,7,1,0,0,9 -"125",0,1,0,52,1,1,3,0,8,1,0,0,9 -"126",1,1,0,62,2,1,3,1,10,1,0,0,9 -"127",0,1,0,62,3,1,3,1,9,1,0,0,9 -"128",0,1,0,62,3,1,3,0,8,1,0,0,9 -"129",0,0,0,52,1,1,3,0,8,1,0,0,9 -"130",0,1,0,43,5,1,3,1,11,1,1,0,9 -"131",0,1,0,60,2,1,3,0,6,1,0,0,9 -"132",0,1,1,45,3,1,3,0,8,1,0,0,9 -"133",0,1,1,48,2,1,3,1,7,1,0,0,9 -"134",0,1,0,53,1,1,3,1,9,1,0,0,9 -"135",1,1,0,63,2,1,3,0,11,1,1,0,9 -"136",0,1,0,55,2,1,3,1,11,1,0,0,9 -"137",0,1,0,49,2,1,3,1,10,1,1,0,9 -"138",0,1,1,57,1,1,4,1,9,3,0,0,10 -"139",0,1,0,49,2,1,4,1,3,3,0,0,10 -"140",0,1,0,50,1,1,4,0,6,3,0,0,10 -"141",0,1,0,49,1,1,4,1,8,3,1,0,10 -"142",0,0,0,48,2,1,4,0,9,3,0,0,10 -"143",0,1,1,66,3,1,4,1,8,3,0,0,10 -"144",0,1,0,56,2,1,4,0,7,3,1,0,10 -"145",0,1,0,39,2,1,4,1,8,3,0,0,10 -"146",0,1,1,40,1,1,4,0,13,3,1,0,10 -"147",1,1,1,33,1,1,4,1,10,3,0,0,10 -"148",0,1,0,49,2,1,4,1,13,3,1,0,10 -"149",0,1,0,54,2,1,4,0,9,3,0,0,10 -"150",0,1,1,43,2,1,4,1,8,3,0,0,10 -"151",0,0,0,57,1,1,4,1,3,3,0,0,10 -"152",0,1,1,53,3,1,4,0,9,3,1,0,10 -"153",0,0,0,59,3,1,4,0,10,3,0,0,10 -"154",0,1,1,42,4,1,4,0,8,3,0,0,10 -"155",0,1,0,49,2,1,4,1,9,3,0,0,10 -"156",1,1,0,47,2,1,4,1,10,3,0,0,10 -"157",0,1,0,65,3,1,4,1,9,2,1,0,11 -"158",0,1,0,72,1,1,4,1,10,2,1,0,11 -"159",0,1,1,50,5,1,4,1,11,2,0,0,11 -"160",0,1,0,59,1,1,4,0,9,2,0,0,11 -"161",1,1,1,62,2,1,4,0,5,2,0,0,11 -"162",0,1,1,40,1,1,4,1,4,2,1,0,11 -"163",0,0,1,57,5,1,4,0,10,2,0,0,11 -"164",0,1,1,55,2,1,4,1,10,2,0,0,11 -"165",0,1,0,65,1,1,4,1,11,2,0,0,11 -"166",0,1,0,47,3,1,4,0,3,2,1,0,11 -"167",0,0,1,46,1,1,4,1,9,2,0,0,11 -"168",0,1,0,72,1,1,4,0,12,2,1,0,11 -"169",0,1,1,50,3,1,4,1,9,2,0,0,11 -"170",0,1,1,49,1,1,4,1,11,2,0,0,11 -"171",0,1,0,60,1,1,4,0,10,2,1,0,11 -"172",0,0,1,48,3,1,4,1,7,2,1,0,11 -"173",0,1,1,47,3,1,4,1,11,2,0,0,11 -"174",1,1,1,66,2,1,3,0,8,3,1,0,12 -"175",0,0,1,43,2,1,3,0,9,3,0,0,12 -"176",0,1,1,65,2,1,3,1,12,3,1,0,12 -"177",1,1,0,63,2,1,3,1,11,3,1,0,12 -"178",0,1,0,58,1,1,3,1,10,3,0,0,12 -"179",0,1,0,51,3,1,3,1,8,3,0,0,12 -"180",0,1,0,47,3,1,3,1,9,3,0,0,12 -"181",0,1,1,52,2,1,3,1,9,3,0,0,12 -"182",0,1,1,56,5,1,3,1,10,3,0,0,12 -"183",1,1,0,50,2,1,3,0,2,3,0,0,12 -"184",0,1,0,43,1,1,3,1,11,3,1,0,12 -"185",0,1,1,64,2,1,3,1,11,3,0,0,12 -"186",0,1,1,48,1,1,3,1,10,3,0,0,12 -"187",0,1,1,57,1,1,3,0,11,3,1,0,12 -"188",0,1,1,62,1,1,3,0,11,3,1,0,12 -"189",0,1,0,48,3,1,3,0,9,3,0,0,12 -"190",0,1,0,52,2,1,4,0,9,1,1,0,13 -"191",1,1,1,51,5,1,4,1,11,1,0,0,13 -"192",0,1,1,38,2,1,4,1,13,1,1,0,13 -"193",0,1,0,39,5,1,4,0,12,1,0,0,13 -"194",0,1,1,34,1,1,4,0,9,1,0,0,13 -"195",0,1,1,32,2,1,4,0,9,1,0,0,13 -"196",0,1,0,56,1,0,5,0,9,3,0,1,14 -"197",0,1,0,62,3,0,5,0,12,3,1,1,14 -"198",0,1,1,45,1,0,5,0,10,3,0,1,14 -"199",1,1,0,47,1,0,5,1,10,3,1,1,14 -"200",1,1,0,46,2,0,5,1,10,3,1,1,14 -"201",0,1,0,49,1,0,5,0,12,3,1,1,14 -"202",0,1,0,60,1,0,5,0,11,3,0,1,14 -"203",0,1,1,54,2,0,5,0,8,3,1,1,14 -"204",1,0,1,62,5,0,5,0,12,3,1,1,14 -"205",1,1,0,40,2,0,5,0,9,3,0,1,14 -"206",0,1,0,50,2,0,5,0,8,3,0,1,14 -"207",0,0,0,63,1,0,5,0,10,3,0,1,14 -"208",0,1,0,63,2,0,5,0,10,3,1,1,14 -"209",0,1,0,66,1,0,5,0,12,3,1,1,14 -"210",0,1,0,58,2,0,5,0,13,3,1,1,14 -"211",0,1,0,51,1,0,5,0,8,3,0,1,14 -"212",0,1,0,55,2,0,5,0,12,3,1,1,14 -"213",0,1,0,53,1,0,5,0,9,3,0,1,14 -"214",1,0,0,52,2,0,5,0,9,3,0,1,14 -"215",0,1,0,49,2,0,5,0,12,3,0,1,14 -"216",0,1,0,58,2,0,5,0,12,3,0,1,14 -"217",0,1,0,54,2,0,5,0,9,3,0,1,14 -"218",0,1,0,40,1,0,5,0,3,3,1,1,14 -"219",1,1,0,47,2,0,5,0,4,3,1,1,14 -"220",0,1,1,61,1,1,5,1,10,2,1,0,15 -"221",0,1,0,57,1,1,5,1,10,2,0,0,15 -"222",0,1,0,67,3,1,5,0,11,2,1,0,15 -"223",0,1,0,64,1,1,5,0,11,2,1,0,15 -"224",0,1,0,42,2,1,5,1,7,2,1,0,15 -"225",0,1,0,63,3,1,5,1,10,2,0,0,15 -"226",1,1,1,46,2,1,5,0,9,2,0,0,15 -"227",0,1,0,44,2,1,5,1,8,2,0,0,15 -"228",0,1,1,42,4,1,5,1,10,2,0,0,15 -"229",0,1,1,49,3,1,5,0,9,2,0,0,15 -"230",0,1,1,46,2,1,5,0,11,2,0,0,15 -"231",0,1,1,61,2,1,5,1,10,2,0,0,15 -"232",0,1,0,43,2,1,4,0,10,7,0,0,16 -"233",0,1,0,38,2,1,4,0,10,7,0,0,16 -"234",0,1,1,48,3,1,4,0,8,7,0,0,16 -"235",0,1,0,40,3,1,4,0,12,7,1,0,16 -"236",0,1,0,36,3,1,4,1,7,7,1,0,16 -"237",0,1,0,45,3,1,4,0,6,7,0,0,16 -"238",1,1,1,47,3,1,4,0,7,7,0,0,16 -"239",0,1,1,42,3,1,4,1,7,7,0,0,16 -"240",0,1,1,38,2,1,4,1,4,7,0,0,16 -"241",1,1,0,43,3,1,4,1,5,7,0,0,16 -"242",0,1,0,51,3,1,4,0,8,7,0,0,16 -"243",1,1,0,41,3,1,4,0,6,7,0,0,16 -"244",1,1,0,46,2,1,4,1,7,7,0,0,16 -"245",1,1,1,34,5,1,4,0,5,7,0,0,16 -"246",1,1,0,45,2,1,4,1,10,7,0,0,16 -"247",0,1,0,49,3,1,5,1,11,1,0,0,17 -"248",1,0,0,61,2,1,5,0,9,1,1,0,17 -"249",0,1,0,60,1,1,5,0,9,1,0,0,17 -"250",0,1,0,60,2,1,5,0,8,1,1,0,17 -"251",0,1,0,54,2,1,5,0,8,1,0,0,17 -"252",0,1,1,48,1,1,5,0,9,1,1,0,17 -"253",0,1,0,48,1,1,5,0,6,1,0,0,17 -"254",0,1,0,55,2,1,5,1,8,1,0,0,17 -"255",0,1,0,59,1,1,5,1,10,1,1,0,17 -"256",0,0,1,53,2,1,5,1,13,1,1,0,17 -"257",0,1,0,56,1,1,5,1,11,1,1,0,17 -"258",0,1,0,68,1,1,5,0,13,1,1,0,17 -"259",0,1,0,56,3,1,5,0,12,1,1,0,17 -"260",0,1,0,63,3,1,5,1,9,1,0,0,17 -"261",0,1,0,55,2,1,5,0,13,1,1,0,17 -"262",0,1,1,70,2,1,5,1,10,1,1,0,17 -"263",0,1,0,59,3,1,5,0,13,1,1,0,17 -"264",0,1,0,45,1,1,5,0,13,1,1,0,17 -"265",0,1,0,66,2,1,5,1,8,1,0,0,17 -"266",0,1,0,51,2,1,5,0,13,1,1,0,17 -"267",0,1,0,64,2,1,5,1,13,1,1,0,17 -"268",0,1,0,47,5,1,3,1,11,3,0,0,18 -"269",0,1,1,60,5,1,3,1,10,3,0,0,18 -"270",0,1,0,64,3,1,3,1,11,3,1,0,18 -"271",0,1,0,59,3,1,3,0,11,3,1,0,18 -"272",0,1,0,65,3,1,3,1,10,3,0,0,18 -"273",1,0,0,61,2,1,3,0,11,3,0,0,18 -"274",0,1,0,55,2,1,3,0,12,3,1,0,18 -"275",0,1,1,44,4,1,3,0,10,3,0,0,18 -"276",0,0,1,64,5,1,3,0,11,3,1,0,18 -"277",0,1,0,47,1,1,3,0,8,3,1,0,18 -"278",0,1,1,56,1,1,3,1,10,3,0,0,18 -"279",0,1,0,45,1,1,3,0,10,3,1,0,18 -"280",0,1,0,35,5,1,3,1,7,3,0,0,18 -"281",0,1,0,74,3,1,3,1,7,3,1,0,18 -"282",0,1,0,36,2,1,3,1,8,3,0,0,18 -"283",0,1,0,60,2,1,3,0,9,3,1,0,18 -"284",0,1,1,56,2,1,3,1,9,3,0,0,18 -"285",0,1,0,56,2,1,3,1,8,3,0,0,18 -"286",0,1,0,62,2,1,3,1,9,3,1,0,18 -"287",0,1,0,47,4,1,4,0,9,5,1,0,19 -"288",1,1,0,57,1,1,4,0,2,5,0,0,19 -"289",0,0,0,39,1,1,4,0,10,5,0,0,19 -"290",0,1,0,37,5,1,4,1,3,5,0,0,19 -"291",0,1,0,51,3,1,4,1,10,5,0,0,19 -"292",1,1,0,52,3,1,4,0,10,5,0,0,19 -"293",0,1,0,51,1,1,4,1,4,5,0,0,19 -"294",0,1,0,64,3,1,4,1,10,5,0,0,19 -"295",0,1,0,46,2,1,4,1,10,5,0,0,19 -"296",0,1,0,59,1,1,4,1,9,5,0,0,19 -"297",0,1,0,60,1,1,4,1,10,5,1,0,19 -"298",0,1,0,46,2,1,4,1,8,5,1,0,19 -"299",0,1,0,60,1,1,4,1,9,5,0,0,19 -"300",0,1,0,58,3,1,4,1,11,3,1,0,20 -"301",0,1,0,59,2,1,4,0,11,3,1,0,20 -"302",0,1,0,59,2,1,4,0,5,3,0,0,20 -"303",0,1,0,46,2,1,4,0,8,3,0,0,20 -"304",0,1,0,59,3,1,4,0,9,3,1,0,20 -"305",1,0,1,34,3,1,4,0,2,3,0,0,20 -"306",0,1,0,62,3,1,4,1,10,3,1,0,20 -"307",0,1,1,52,3,1,4,1,2,3,0,0,20 -"308",0,1,1,36,2,1,4,0,9,3,0,0,20 -"309",0,1,1,56,2,1,4,1,9,3,0,0,20 -"310",0,1,1,68,2,1,4,1,11,3,1,0,20 -"311",0,1,1,41,5,1,5,1,6,1,0,1,21 -"312",0,1,1,46,1,1,5,0,11,1,1,1,21 -"313",0,1,1,59,2,1,5,0,12,1,1,1,21 -"314",0,1,0,60,2,1,5,0,10,1,1,1,21 -"315",0,1,1,56,1,1,5,0,11,1,1,1,21 -"316",0,1,1,57,1,1,5,0,12,1,1,1,21 -"317",0,1,1,59,2,1,5,1,11,1,1,1,21 -"318",0,1,0,62,2,1,5,0,8,1,1,1,21 -"319",0,1,1,52,1,1,5,1,9,1,0,1,21 -"320",0,1,1,65,2,1,5,1,10,1,1,1,21 -"321",0,1,1,44,1,1,5,1,10,1,1,1,21 -"322",0,1,1,59,1,1,5,1,9,1,0,1,21 -"323",0,1,0,66,3,1,5,1,11,1,1,1,21 -"324",0,1,1,46,2,1,5,0,8,1,0,1,21 -"325",0,1,1,50,2,1,5,0,9,1,0,1,21 -"326",0,1,0,51,2,1,5,0,10,1,0,1,21 -"327",0,1,0,59,2,1,5,1,9,1,0,1,21 -"328",0,1,1,62,2,1,5,1,12,1,1,1,21 -"329",1,1,1,52,2,1,5,1,11,1,0,1,21 -"330",0,0,1,37,5,1,5,1,9,1,0,1,21 -"331",0,1,1,64,1,1,5,1,9,1,0,1,21 -"332",0,1,1,66,3,1,5,1,10,1,1,1,21 -"333",0,1,0,57,2,1,5,0,11,1,0,1,21 -"334",0,1,1,58,1,1,5,1,11,1,0,1,21 -"335",0,1,0,50,2,1,5,1,10,1,0,1,21 -"336",0,1,0,55,2,1,5,1,9,4,0,0,22 -"337",0,1,0,57,2,1,5,0,11,4,0,0,22 -"338",0,1,0,52,1,1,5,0,9,4,1,0,22 -"339",0,0,0,61,2,1,5,0,7,4,0,0,22 -"340",1,1,0,45,1,1,5,0,11,4,0,0,22 -"341",0,1,0,65,2,1,5,0,11,4,1,0,22 -"342",0,1,0,30,2,1,5,1,10,4,0,0,22 -"343",1,1,0,57,1,1,5,0,6,4,0,0,22 -"344",0,1,0,66,1,1,5,0,12,4,0,0,22 -"345",0,1,0,60,3,1,5,0,8,4,0,0,22 -"346",0,1,0,43,2,1,5,1,10,4,0,0,22 -"347",0,1,0,53,1,1,5,0,10,4,0,0,22 -"348",0,1,0,44,2,0,4,1,10,3,0,1,23 -"349",0,1,1,55,1,0,4,1,12,3,0,1,23 -"350",1,1,0,45,2,0,4,0,6,3,0,1,23 -"351",0,1,0,43,3,0,4,0,12,3,1,1,23 -"352",0,1,1,52,2,0,4,1,10,3,0,1,23 -"353",0,1,1,52,2,0,4,0,11,3,0,1,23 -"354",0,1,1,51,2,0,4,1,8,3,0,1,23 -"355",0,1,1,58,2,0,4,1,10,3,0,1,23 -"356",0,1,0,37,5,0,4,1,10,3,0,1,23 -"357",0,1,0,59,1,0,4,1,5,3,0,1,23 -"358",0,1,1,57,1,0,4,1,14,3,1,1,23 -"359",0,1,0,51,2,0,4,1,8,3,1,1,23 -"360",0,1,1,57,1,0,4,1,10,3,0,1,23 -"361",0,1,1,64,3,0,4,1,10,3,1,1,23 -"362",0,1,0,43,1,0,4,1,10,3,0,1,23 -"363",0,1,0,44,2,0,4,1,7,3,0,1,23 -"364",0,1,1,56,2,0,4,1,9,3,0,1,23 -"365",0,1,0,50,3,1,4,1,1,1,0,0,24 -"366",0,1,1,58,2,1,4,1,8,1,1,0,24 -"367",0,1,0,53,1,1,4,1,6,1,0,0,24 -"368",0,1,0,47,3,1,4,1,7,1,0,0,24 -"369",0,1,0,50,1,1,4,0,8,1,1,0,24 -"370",0,1,0,44,1,1,4,1,8,1,0,0,24 -"371",0,1,1,54,1,1,4,0,8,1,0,0,24 -"372",0,1,1,42,1,1,4,1,7,1,1,0,24 -"373",0,1,1,55,3,1,4,0,10,1,1,0,24 -"374",0,1,1,51,3,1,4,1,9,1,1,0,24 -"375",0,1,0,67,2,1,4,1,10,1,1,0,24 -"376",0,1,1,48,3,1,4,1,11,1,1,0,24 -"377",0,1,0,42,2,1,4,1,8,1,0,0,24 -"378",0,1,1,52,4,1,4,0,8,1,0,0,24 -"379",0,1,0,50,2,1,4,1,8,1,1,0,24 -"380",0,1,1,40,2,1,4,1,12,1,0,0,24 -"381",0,0,0,56,2,1,4,1,9,1,0,0,24 -"382",0,1,1,48,3,1,4,0,11,1,0,0,24 -"383",0,1,0,49,2,1,4,1,13,1,1,0,24 -"384",0,1,0,49,5,1,4,1,7,1,0,0,24 -"385",0,1,1,35,2,1,4,1,6,1,0,0,24 -"386",0,1,1,50,3,1,4,0,7,1,0,0,24 -"387",0,1,0,42,1,1,4,1,10,1,0,0,24 -"388",0,1,1,60,2,1,4,1,10,1,1,0,24 -"389",0,1,1,63,4,1,4,1,8,1,0,0,24 -"390",0,1,0,53,2,1,4,1,9,1,1,0,24 -"391",0,1,0,64,2,1,4,1,10,1,1,0,24 -"392",0,1,0,51,1,1,4,0,11,1,1,0,24 -"393",0,1,0,45,3,1,4,0,8,1,0,0,24 -"394",0,1,1,55,2,1,4,0,3,1,1,0,24 -"395",0,1,0,56,3,1,4,1,8,1,0,0,24 -"396",0,1,0,57,2,1,4,1,5,1,0,0,24 -"397",0,1,0,58,2,1,4,0,8,1,1,0,24 -"398",1,1,0,58,4,1,4,0,10,1,1,0,24 -"399",0,1,1,67,1,1,4,1,9,1,0,0,24 -"400",1,1,1,50,1,1,4,0,8,1,0,0,24 -"401",0,1,0,51,1,1,4,0,10,1,0,0,24 -"402",0,0,1,46,3,1,4,0,9,1,0,0,24 -"403",0,1,0,57,2,1,4,0,10,1,1,0,24 -"404",0,1,0,55,2,1,4,1,5,1,1,0,24 -"405",1,1,1,53,3,1,4,0,9,1,1,0,24 -"406",0,1,1,61,2,1,4,0,13,1,1,0,24 -"407",0,1,0,49,2,1,4,1,8,3,0,0,25 -"408",0,1,0,43,5,1,4,0,7,3,0,0,25 -"409",0,1,0,44,2,1,4,1,7,3,0,0,25 -"410",1,0,1,45,2,1,4,0,9,3,0,0,25 -"411",1,0,1,36,3,1,4,0,10,3,1,0,25 -"412",0,0,1,56,4,1,4,0,9,3,0,0,25 -"413",0,1,0,69,2,1,4,0,10,3,1,0,25 -"414",0,1,0,75,2,1,4,0,10,3,0,0,25 -"415",0,1,0,51,2,1,4,0,9,3,0,0,25 -"416",0,1,1,50,2,1,4,1,8,3,0,0,25 -"417",1,1,0,51,3,1,4,0,12,3,1,0,25 -"418",0,1,1,60,2,1,4,0,9,3,0,0,25 -"419",0,0,0,50,1,1,4,1,9,3,0,0,25 -"420",0,1,0,28,5,1,4,1,11,3,0,0,25 -"421",1,1,1,44,5,1,4,0,10,3,0,0,25 -"422",0,1,1,45,2,1,4,1,9,3,0,0,25 -"423",0,1,0,53,1,1,4,1,9,3,0,0,25 -"424",0,1,1,52,2,1,4,1,8,3,0,0,25 -"425",1,1,1,62,1,1,4,1,10,3,1,0,25 -"426",0,1,0,37,2,1,4,1,11,3,1,0,25 -"427",0,0,0,51,2,1,4,0,8,3,0,0,25 -"428",0,0,1,60,3,1,4,0,10,3,0,0,25 -"429",1,0,1,42,4,1,4,0,9,3,0,0,25 -"430",0,1,1,56,4,1,4,1,15,3,1,0,25 -"431",0,1,1,63,2,1,5,1,12,1,1,0,26 -"432",0,1,1,44,1,1,5,1,14,1,1,0,26 -"433",0,1,0,55,2,1,5,0,9,1,1,0,26 -"434",0,1,1,57,4,1,5,1,8,1,0,0,26 -"435",0,1,1,59,1,1,5,0,8,1,1,0,26 -"436",0,1,1,52,1,1,5,0,10,1,1,0,26 -"437",0,1,1,51,2,1,5,0,12,1,1,0,26 -"438",0,0,0,52,2,1,5,1,11,1,0,0,26 -"439",0,1,1,53,3,1,5,0,11,1,0,0,26 -"440",0,1,0,50,3,1,5,1,9,1,1,0,26 -"441",0,1,1,55,3,1,5,0,10,1,1,0,26 -"442",0,1,1,68,2,1,5,1,10,1,1,0,26 -"443",1,1,1,53,4,1,5,0,8,1,0,0,26 -"444",0,1,1,55,1,1,5,1,11,1,1,0,26 -"445",0,1,1,48,1,1,5,1,9,1,1,0,27 -"446",0,1,0,58,2,1,5,1,13,1,0,0,27 -"447",0,1,0,67,2,1,5,1,12,1,0,0,27 -"448",0,1,0,60,3,1,5,1,11,1,1,0,27 -"449",0,1,1,73,1,1,5,0,9,1,1,0,27 -"450",0,1,1,61,1,1,5,0,10,1,1,0,27 -"451",0,0,1,48,3,1,5,0,12,1,1,0,27 -"452",0,1,1,54,2,1,5,0,10,1,0,0,27 -"453",0,1,1,66,1,1,5,0,12,1,1,0,27 -"454",0,1,1,57,1,1,5,1,12,1,0,0,27 -"455",1,1,0,50,2,1,5,1,10,1,0,0,27 -"456",0,1,0,61,2,1,5,0,10,1,1,0,27 -"457",0,1,1,65,1,1,5,0,11,1,1,0,27 -"458",0,1,0,53,2,1,5,1,9,1,1,0,27 -"459",0,1,0,58,3,1,5,0,11,1,1,0,27 -"460",0,1,1,52,3,1,5,0,6,1,0,0,27 -"461",0,1,1,64,1,1,5,0,9,1,1,0,27 -"462",0,1,1,50,2,1,5,1,8,1,0,0,27 -"463",0,1,1,67,5,1,5,0,11,1,1,0,27 -"464",0,1,1,44,1,1,5,0,10,1,0,0,27 -"465",0,1,0,45,1,1,4,1,10,5,0,0,28 -"466",0,1,1,61,2,1,4,0,10,5,1,0,28 -"467",0,1,0,48,2,1,4,0,10,5,0,0,28 -"468",0,0,1,46,1,1,4,1,10,5,0,0,28 -"469",1,1,0,34,3,1,4,0,8,5,0,0,28 -"470",0,0,1,44,5,1,4,1,8,5,1,0,28 -"471",0,1,1,49,3,1,4,1,9,5,1,0,28 -"472",0,1,0,40,5,1,4,0,9,5,0,0,28 -"473",0,1,1,54,5,1,4,1,11,5,1,0,28 -"474",0,1,1,52,2,1,4,0,10,5,0,0,28 -"475",0,1,0,61,2,1,4,0,9,5,1,0,28 -"476",1,1,1,35,2,1,4,1,6,5,0,0,28 -"477",0,1,0,40,4,1,4,0,3,5,0,0,28 -"478",0,1,0,43,1,1,4,1,9,5,1,0,28 -"479",0,1,0,40,4,1,4,1,8,5,1,0,28 -"480",0,1,0,51,2,1,4,0,8,5,1,0,28 -"481",1,1,1,53,3,1,4,0,9,4,0,0,29 -"482",0,1,0,45,1,1,4,1,10,4,0,0,29 -"483",0,1,0,41,2,1,4,1,5,4,0,0,29 -"484",1,0,0,50,3,1,4,0,10,4,0,0,29 -"485",0,1,0,50,2,1,4,1,10,4,1,0,29 -"486",0,1,0,45,2,1,4,0,10,4,1,0,29 -"487",0,1,0,46,2,1,4,1,9,4,0,0,29 -"488",1,1,0,43,3,1,4,0,3,4,0,0,29 -"489",0,1,1,60,3,1,4,1,10,4,0,0,29 -"490",0,1,0,57,2,1,4,1,11,4,1,0,29 -"491",1,1,0,43,2,1,4,1,6,4,0,0,29 -"492",0,1,1,36,1,1,4,0,11,4,0,0,29 -"493",1,1,0,49,2,1,4,0,9,4,0,0,29 -"494",0,1,1,43,2,1,4,0,8,4,0,0,29 -"495",0,1,0,53,2,1,5,1,9,1,0,1,30 -"496",0,1,0,67,1,1,5,0,12,1,1,1,30 -"497",0,1,1,59,3,1,5,0,12,1,0,1,30 -"498",0,1,0,67,2,1,5,0,13,1,0,1,30 -"499",0,1,0,47,2,1,5,1,9,1,1,1,30 -"500",0,1,0,62,1,1,5,0,12,1,1,1,30 -"501",0,1,0,51,2,1,5,1,9,1,1,1,30 -"502",0,1,1,59,2,1,5,1,11,1,1,1,30 -"503",0,1,0,35,2,1,5,1,12,1,1,1,30 -"504",0,1,0,48,3,1,5,1,11,1,1,1,30 -"505",0,1,1,58,2,1,5,1,10,1,0,1,30 -"506",0,1,0,61,1,1,5,1,12,1,1,1,30 -"507",0,1,0,59,3,1,5,1,12,1,1,1,30 -"508",0,1,0,68,1,1,5,0,13,1,1,1,30 -"509",0,1,0,62,2,1,5,0,10,1,1,1,30 -"510",0,1,0,47,1,1,5,1,9,1,1,1,30 -"511",0,1,1,50,1,1,5,1,12,1,1,1,30 -"512",0,1,1,56,1,1,5,1,12,1,1,1,30 -"513",0,1,0,63,1,1,5,0,11,1,1,1,30 -"514",0,1,0,44,3,1,5,1,12,1,0,1,30 -"515",1,1,1,56,1,1,5,0,10,1,1,1,30 -"516",0,1,0,47,3,1,5,1,10,1,0,1,30 -"517",0,1,1,50,2,1,5,0,13,1,1,1,30 -"518",0,0,0,37,3,1,4,1,7,6,0,0,31 -"519",0,1,0,38,2,1,4,1,10,6,0,0,31 -"520",1,1,0,46,2,1,4,0,8,6,0,0,31 -"521",1,0,1,50,3,1,4,0,10,6,0,0,31 -"522",0,1,1,40,3,1,4,1,6,6,0,0,31 -"523",0,1,0,52,3,1,4,1,8,6,0,0,31 -"524",0,0,1,37,1,1,4,0,9,6,0,0,31 -"525",0,1,0,41,4,1,4,0,7,6,0,0,31 -"526",0,1,1,34,3,1,4,0,8,6,0,0,31 -"527",0,1,1,54,3,1,4,0,7,6,1,0,31 -"528",0,1,0,44,3,1,4,1,7,6,1,0,31 -"529",0,1,0,42,2,1,4,1,7,6,0,0,31 -"530",0,1,0,52,3,1,4,0,8,6,0,0,31 -"531",0,1,1,46,3,1,4,0,8,6,0,0,31 -"532",0,1,1,38,2,1,4,1,9,6,1,0,31 -"533",0,0,0,67,2,1,4,1,5,1,1,0,32 -"534",0,1,0,66,2,1,4,0,10,1,1,0,32 -"535",0,1,0,58,1,1,4,1,9,1,1,0,32 -"536",0,1,1,68,2,1,4,0,13,1,1,0,32 -"537",0,1,0,55,1,1,4,0,12,1,1,0,32 -"538",0,1,1,51,3,1,4,0,10,1,1,0,32 -"539",0,0,0,73,1,1,4,0,13,1,0,0,32 -"540",0,1,0,63,2,1,4,1,12,1,1,0,32 -"541",0,1,1,72,2,1,4,1,11,1,1,0,32 -"542",0,1,0,58,3,1,4,1,11,1,1,0,32 -"543",0,1,1,60,1,1,4,1,9,1,1,0,32 -"544",0,1,0,70,2,1,4,0,12,1,1,0,32 -"545",0,1,1,72,1,1,4,0,13,1,1,0,32 -"546",0,1,1,58,1,1,4,1,9,1,0,0,32 -"547",0,1,0,48,1,1,4,0,10,1,1,0,32 -"548",0,1,0,54,2,1,4,1,13,1,1,0,32 -"549",0,1,0,58,1,1,4,0,9,1,1,0,32 -"550",0,1,0,58,2,1,4,0,13,1,1,0,32 -"551",0,1,0,46,1,1,4,0,6,1,0,0,32 -"552",0,1,1,51,2,1,4,1,10,1,0,0,32 -"553",0,1,0,57,2,1,4,0,13,1,0,0,32 -"554",0,1,0,50,3,1,4,0,12,1,1,0,32 -"555",0,1,0,62,3,1,4,0,13,1,1,0,32 -"556",0,1,0,59,2,1,4,1,12,1,1,0,32 -"557",0,1,0,56,3,1,4,1,6,1,1,0,32 -"558",0,1,0,62,3,1,4,0,11,1,1,0,32 -"559",0,1,0,46,2,1,3,1,11,5,0,0,33 -"560",0,1,0,49,4,1,3,0,9,5,0,0,33 -"561",0,1,1,43,1,1,3,1,10,5,0,0,33 -"562",1,1,1,46,3,1,3,0,7,5,0,0,33 -"563",0,1,0,46,4,1,3,0,8,5,0,0,33 -"564",0,1,0,51,2,1,3,0,7,5,0,0,33 -"565",1,1,1,42,2,1,3,0,9,5,1,0,33 -"566",0,0,0,48,2,1,3,0,10,5,0,0,33 -"567",0,1,1,47,1,1,3,0,10,5,0,0,33 -"568",0,1,1,36,2,1,3,0,11,5,0,0,33 -"569",1,1,1,38,1,1,3,1,7,5,0,0,33 -"570",0,1,1,30,2,1,3,1,7,5,0,0,33 -"571",1,1,1,53,3,1,3,0,9,5,0,0,33 -"572",0,1,0,54,1,1,3,0,7,5,0,0,33 -"573",0,1,0,37,1,1,3,0,10,5,0,0,33 -"574",0,1,0,54,1,1,3,0,10,5,0,0,33 -"575",0,1,0,36,1,1,2,0,7,6,1,0,34 -"576",0,1,0,38,1,1,2,0,6,6,0,0,34 -"577",0,1,0,50,2,1,2,1,8,6,0,0,34 -"578",0,1,0,62,3,1,2,1,10,6,0,0,34 -"579",0,1,0,32,4,1,2,1,5,6,0,0,34 -"580",0,1,0,36,3,1,2,1,5,6,1,0,34 -"581",0,1,0,49,3,1,2,1,4,6,1,0,34 -"582",1,1,1,29,3,1,2,1,9,6,1,0,34 -"583",0,1,0,38,3,1,2,1,4,6,0,0,34 -"584",0,1,0,48,1,1,3,1,7,4,0,0,35 -"585",0,1,0,48,1,1,3,1,11,4,1,0,35 -"586",0,1,0,51,2,1,3,1,7,4,0,0,35 -"587",1,1,1,40,2,1,3,0,8,4,0,0,35 -"588",0,1,1,69,2,1,3,0,12,4,0,0,35 -"589",0,1,1,49,1,1,3,1,5,4,0,0,35 -"590",0,1,0,56,1,1,3,1,11,4,0,0,35 -"591",0,1,1,45,2,1,3,0,12,4,1,0,35 -"592",0,0,1,45,2,1,3,1,10,4,0,0,35 -"593",0,1,0,47,2,1,3,1,7,4,1,0,35 -"594",0,1,0,47,5,1,3,1,8,4,0,0,35 -"595",0,1,0,54,2,1,3,0,12,4,1,0,35 -"596",0,1,1,44,3,1,3,0,9,4,0,0,35 -"597",0,1,0,52,2,1,3,1,9,4,1,0,35 -"598",0,1,1,52,3,1,3,1,10,4,0,0,35 -"599",0,1,0,52,1,1,3,1,10,4,0,0,35 -"600",0,1,0,44,2,1,3,1,9,4,0,0,35 -"601",0,1,1,49,4,1,3,1,11,4,0,0,35 -"602",0,1,0,61,1,1,3,1,11,4,0,0,35 -"603",0,1,0,60,3,1,4,0,5,1,1,0,36 -"604",0,1,0,48,1,1,4,1,10,1,0,0,36 -"605",0,1,1,53,1,1,4,0,8,1,0,0,36 -"606",0,1,1,36,2,1,4,1,9,1,0,0,36 -"607",0,1,0,45,1,1,4,1,4,1,0,0,36 -"608",0,1,1,58,2,1,4,0,8,1,0,0,36 -"609",0,1,0,31,1,1,4,0,11,1,0,0,36 -"610",0,1,0,39,3,1,4,1,9,1,1,0,36 -"611",0,1,0,61,3,1,4,1,11,1,0,0,36 -"612",0,1,1,61,2,1,4,0,8,1,1,0,36 -"613",0,1,0,49,2,0,5,1,11,1,1,1,37 -"614",0,0,1,48,5,0,5,1,9,1,0,1,37 -"615",0,1,1,60,2,0,5,1,12,1,0,1,37 -"616",0,1,1,55,1,0,5,1,9,1,1,1,37 -"617",0,1,1,52,2,0,5,1,10,1,0,1,37 -"618",0,1,1,67,1,0,5,1,13,1,1,1,37 -"619",0,1,1,65,2,0,5,1,12,1,1,1,37 -"620",0,1,1,52,2,0,5,1,9,1,0,1,37 -"621",0,1,0,62,2,0,5,1,10,1,1,1,37 -"622",0,0,0,61,2,0,5,1,8,1,1,1,37 -"623",0,1,0,64,1,0,5,1,8,1,1,1,37 -"624",0,1,0,46,1,0,5,1,11,1,1,1,37 -"625",0,1,0,53,1,0,5,1,10,1,0,1,37 -"626",0,1,1,63,1,0,5,1,11,1,1,1,37 -"627",0,1,0,59,2,0,5,1,11,1,0,1,37 -"628",0,1,1,54,1,0,5,1,10,1,1,1,37 -"629",0,1,0,66,2,0,5,1,12,1,1,1,37 -"630",0,1,0,44,1,0,5,1,12,1,1,1,37 -"631",0,1,0,41,2,1,4,1,8,4,1,0,38 -"632",0,1,0,48,1,1,4,1,7,4,1,0,38 -"633",0,1,0,50,1,1,4,0,8,4,0,0,38 -"634",0,1,1,54,1,1,4,1,7,4,0,0,38 -"635",0,1,0,59,2,1,4,1,8,4,0,0,38 -"636",0,1,0,54,3,1,4,1,5,4,1,0,38 -"637",0,1,1,57,2,1,4,0,9,4,0,0,38 -"638",0,1,0,52,1,1,4,1,10,4,1,0,38 -"639",0,1,0,49,2,1,4,1,9,4,0,0,38 -"640",0,1,0,58,3,1,4,1,11,4,0,0,38 -"641",0,1,0,49,1,1,4,1,9,4,0,0,38 -"642",1,1,0,51,3,1,4,0,8,4,0,0,38 -"643",0,1,1,56,5,1,4,0,8,4,0,0,38 -"644",0,1,1,44,1,1,4,1,8,4,0,0,38 -"645",0,1,0,57,1,1,4,1,6,4,1,0,38 -"646",0,1,1,33,2,1,4,0,5,4,1,0,38 -"647",1,1,0,39,3,1,4,1,9,4,0,0,38 -"648",0,1,0,55,1,1,4,0,10,4,1,0,38 -"649",1,1,1,42,3,1,4,1,7,4,0,0,38 -"650",0,1,0,30,1,1,4,1,5,4,0,0,38 -"651",0,1,0,62,3,1,4,1,12,1,1,0,39 -"652",0,1,1,60,3,1,4,1,13,1,1,0,39 -"653",0,1,1,54,1,1,4,0,9,1,0,0,39 -"654",0,1,0,69,2,1,4,0,13,1,0,0,39 -"655",0,1,0,62,1,1,4,1,13,1,1,0,39 -"656",0,1,1,63,1,1,4,0,13,1,1,0,39 -"657",0,1,1,57,1,1,4,1,13,1,1,0,39 -"658",0,1,1,56,2,1,4,1,12,1,1,0,39 -"659",0,1,1,68,2,1,4,1,13,1,1,0,39 -"660",0,1,0,48,3,1,4,1,12,1,1,0,39 -"661",0,1,0,67,2,1,4,1,13,1,1,0,39 -"662",0,1,0,53,2,1,4,0,10,1,1,0,39 -"663",0,1,0,59,1,1,4,0,13,1,1,0,39 -"664",0,1,0,50,3,1,4,0,9,1,0,0,39 -"665",0,0,1,50,1,1,4,1,12,1,0,0,39 -"666",0,1,1,67,1,1,4,1,9,1,1,0,39 -"667",0,1,1,65,3,1,4,1,8,1,1,0,39 -"668",0,1,0,59,3,1,4,1,11,1,1,0,39 -"669",1,0,0,45,4,1,5,0,12,1,1,1,40 -"670",0,1,0,56,1,1,5,0,13,1,1,1,40 -"671",0,1,1,67,2,1,5,1,12,1,1,1,40 -"672",0,1,0,44,2,1,5,0,11,1,1,1,40 -"673",0,1,0,55,2,1,5,0,10,1,0,1,40 -"674",1,0,1,54,2,1,5,0,11,1,0,1,40 -"675",0,1,1,49,4,1,5,1,11,1,0,1,40 -"676",0,1,1,50,2,1,5,0,12,1,1,1,40 -"677",0,1,1,52,1,1,5,1,10,1,0,1,40 -"678",0,1,0,60,1,1,5,1,11,1,1,1,40 -"679",0,1,1,60,2,1,5,0,12,1,1,1,40 -"680",0,1,1,63,1,1,5,1,11,1,1,1,40 -"681",1,1,0,35,2,1,5,1,12,1,1,1,40 -"682",0,1,0,67,1,1,5,1,13,1,1,1,40 -"683",0,1,0,62,2,1,5,1,11,1,1,1,40 -"684",0,1,0,60,2,1,5,1,12,1,0,1,40 -"685",1,1,1,66,3,1,5,1,11,1,1,1,40 -"686",1,1,1,44,4,1,3,1,9,4,1,0,41 -"687",0,1,1,29,1,1,3,0,8,4,0,0,41 -"688",0,1,1,31,5,1,3,1,11,4,0,0,41 -"689",0,1,0,62,2,1,3,0,9,4,0,0,41 -"690",0,1,0,47,2,1,3,0,8,4,0,0,41 -"691",0,1,1,64,1,1,3,0,8,4,0,0,41 -"692",0,1,1,53,1,1,3,0,9,4,0,0,41 -"693",0,1,1,50,1,1,3,0,9,4,0,0,41 -"694",0,1,1,55,2,1,3,0,9,4,0,0,41 -"695",0,1,1,57,1,1,3,0,11,4,0,0,41 -"696",0,1,1,41,2,1,3,0,10,4,1,0,41 -"697",0,1,0,57,1,1,3,1,11,4,0,0,41 -"698",0,1,1,27,3,1,3,1,2,4,0,0,41 -"699",0,1,0,54,2,1,4,0,8,4,0,0,42 -"700",0,1,1,39,2,1,4,1,7,4,0,0,42 -"701",0,1,1,47,3,1,4,0,10,4,1,0,42 -"702",0,1,0,59,1,1,4,0,10,4,1,0,42 -"703",0,1,0,50,4,1,4,0,7,4,0,0,42 -"704",1,1,1,41,2,1,4,1,12,4,0,0,42 -"705",0,0,0,40,3,1,4,1,7,4,0,0,42 -"706",0,1,0,64,1,1,4,1,9,4,1,0,42 -"707",0,1,0,62,1,1,4,0,9,4,0,0,42 -"708",0,1,1,50,3,1,4,1,9,4,0,0,42 -"709",0,1,0,38,2,1,4,1,9,4,1,0,42 -"710",0,1,1,41,4,1,4,1,7,4,0,0,42 -"711",0,1,1,41,1,1,4,1,8,4,0,0,42 -"712",1,1,0,45,5,1,4,0,10,4,0,0,42 -"713",0,0,1,60,1,1,4,0,11,4,1,0,42 -"714",0,1,0,47,4,1,4,0,8,4,0,0,42 -"715",0,1,1,40,4,1,4,1,7,4,0,0,42 -"716",0,0,1,55,3,1,4,0,8,4,0,0,42 -"717",0,1,1,58,5,1,5,0,11,1,1,0,43 -"718",0,1,1,39,1,1,5,0,8,1,1,0,43 -"719",0,0,1,62,3,1,5,0,8,1,0,0,43 -"720",1,0,1,49,2,1,5,0,10,1,0,0,43 -"721",0,1,0,60,1,1,5,0,10,1,1,0,43 -"722",0,0,0,68,2,1,5,0,12,1,1,0,43 -"723",0,1,1,59,2,1,5,1,11,1,1,0,43 -"724",0,1,1,58,1,1,5,1,6,1,0,0,43 -"725",0,1,0,46,5,1,5,0,1,1,0,0,43 -"726",0,1,1,49,2,1,5,1,10,1,0,0,43 -"727",0,1,0,56,2,1,5,0,12,1,1,0,43 -"728",0,1,1,51,1,1,5,1,10,1,0,0,43 -"729",0,1,1,50,2,1,5,0,9,1,0,0,43 -"730",0,1,0,51,2,1,5,1,9,1,1,0,43 -"731",0,1,1,44,2,1,5,1,9,1,1,0,43 -"732",0,1,0,73,1,1,5,0,13,1,1,0,43 -"733",0,1,1,62,3,1,5,0,11,1,1,0,43 -"734",0,1,1,46,2,1,5,1,11,1,0,0,43 -"735",0,1,0,42,2,1,5,0,9,1,1,0,43 -"736",0,1,1,67,1,1,5,1,11,1,0,0,43 -"737",0,1,0,47,1,1,5,0,9,1,1,0,43 -"738",0,1,1,58,1,1,3,0,10,5,0,0,44 -"739",0,1,0,44,2,1,3,0,12,5,0,0,44 -"740",0,1,0,69,1,1,3,1,7,5,1,0,44 -"741",0,1,0,44,2,1,3,1,10,5,1,0,44 -"742",0,1,0,35,4,1,3,1,6,5,0,0,44 -"743",0,1,0,52,2,1,3,1,10,5,0,0,44 -"744",0,1,0,41,2,1,3,1,10,5,1,0,44 -"745",1,1,0,51,2,1,3,1,5,5,0,0,44 -"746",0,1,0,37,1,1,3,0,1,5,0,0,44 -"747",0,1,0,48,2,1,3,0,5,5,0,0,44 -"748",0,1,0,42,2,1,3,1,9,5,0,0,44 -"749",0,1,1,60,2,1,3,1,9,5,1,0,44 -"750",0,1,0,46,2,1,3,1,8,5,0,0,44 -"751",1,1,0,62,2,1,3,0,12,5,1,0,44 -"752",0,1,1,34,1,1,3,1,8,5,0,0,44 -"753",1,1,0,36,1,1,3,0,5,5,0,0,44 -"754",1,1,0,46,3,1,3,1,8,5,0,0,44 -"755",0,1,1,71,2,1,5,0,11,1,1,0,45 -"756",0,1,0,61,3,1,5,1,10,1,0,0,45 -"757",0,1,0,38,2,1,5,0,6,1,0,0,45 -"758",1,0,1,42,1,1,5,0,10,1,0,0,45 -"759",0,0,0,59,1,1,5,1,9,1,0,0,45 -"760",0,1,1,50,1,1,5,1,6,1,0,0,45 -"761",0,1,1,59,2,1,5,1,10,1,1,0,45 -"762",0,1,0,48,1,1,5,1,11,1,1,0,45 -"763",0,1,1,48,1,1,5,1,3,1,0,0,45 -"764",0,1,0,51,1,1,5,0,9,1,1,0,45 -"765",0,1,0,38,2,1,5,0,9,1,1,0,45 -"766",0,1,1,64,5,1,5,1,14,1,1,0,45 -"767",0,1,0,50,2,1,5,1,7,1,1,0,45 -"768",1,1,1,30,2,1,5,1,10,1,0,0,45 -"769",0,1,0,47,3,1,5,1,7,1,0,0,45 -"770",0,1,0,55,1,1,5,1,10,1,0,0,45 -"771",1,1,1,47,2,1,5,0,9,1,1,0,45 -"772",0,1,0,45,4,1,5,1,11,1,0,0,45 -"773",0,1,0,59,1,1,5,1,9,1,0,0,45 -"774",0,1,0,46,2,1,5,1,12,1,0,0,45 -"775",0,1,0,49,1,1,5,0,10,1,1,0,45 -"776",0,1,0,59,1,1,5,1,11,1,0,0,45 -"777",0,1,0,66,2,1,5,0,9,1,1,0,45 -"778",0,1,0,53,1,1,5,0,3,1,0,0,45 -"779",0,1,1,30,3,1,5,1,6,4,0,0,46 -"780",1,1,0,45,1,1,5,0,10,4,0,0,46 -"781",0,1,0,37,1,1,5,1,5,4,0,0,46 -"782",0,0,0,58,1,1,5,1,4,4,0,0,46 -"783",0,1,0,54,2,1,5,1,6,4,0,0,46 -"784",0,1,1,55,2,1,5,1,9,4,0,0,46 -"785",0,1,0,44,3,1,5,0,10,4,0,0,46 -"786",0,1,1,47,2,1,5,0,9,4,0,0,46 -"787",0,1,0,54,1,1,5,0,8,4,1,0,46 -"788",0,1,1,68,1,1,5,0,11,4,0,0,46 -"789",0,1,0,49,1,1,5,0,10,4,0,0,46 -"790",0,1,1,56,2,1,5,0,10,4,0,0,46 -"791",0,1,0,42,2,1,5,1,7,4,0,0,46 -"792",0,1,1,39,2,1,5,1,11,4,1,0,46 -"793",0,1,1,48,1,1,5,1,10,4,0,0,46 -"794",0,1,0,53,1,1,5,1,8,4,0,0,46 -"795",1,0,1,40,5,1,5,1,10,4,0,0,46 -"796",0,1,1,62,1,1,5,0,10,4,1,0,46 -"797",1,1,1,46,1,1,5,0,8,3,0,0,47 -"798",0,0,0,51,3,1,5,0,8,3,1,0,47 -"799",0,1,0,76,1,1,5,0,11,3,1,0,47 -"800",0,0,0,55,1,1,5,0,13,3,1,0,47 -"801",0,1,0,60,1,1,5,0,11,3,1,0,47 -"802",0,1,0,65,2,1,5,0,11,3,0,0,47 -"803",0,0,0,53,1,1,5,0,11,3,1,0,47 -"804",1,1,0,40,3,1,5,1,11,3,0,0,47 -"805",0,1,0,52,1,1,5,1,10,3,0,0,47 -"806",0,1,1,63,1,1,5,0,9,3,1,0,47 -"807",0,1,0,48,1,1,5,0,6,3,0,0,47 -"808",0,1,0,46,1,1,5,0,6,3,0,0,47 -"809",0,1,0,48,1,1,5,0,6,3,0,0,47 -"810",0,1,0,53,3,1,5,0,9,3,0,0,47 -"811",0,1,0,59,5,1,5,1,11,3,0,0,47 -"812",0,1,0,52,3,1,5,1,9,3,0,0,47 -"813",0,1,1,60,3,1,5,1,10,3,1,0,47 -"814",0,1,0,55,2,1,5,1,5,3,0,0,47 -"815",0,1,0,51,1,1,5,0,10,3,0,0,47 -"816",0,1,0,56,1,1,5,0,11,3,0,0,47 -"817",1,1,0,45,4,1,5,1,10,3,0,0,47 -"818",0,1,0,54,1,1,4,1,5,4,0,0,48 -"819",0,1,1,41,1,1,4,1,8,4,1,0,48 -"820",0,1,1,50,2,1,4,1,9,4,0,0,48 -"821",0,1,0,60,1,1,4,0,6,4,0,0,48 -"822",0,0,1,54,2,1,4,1,11,4,1,0,48 -"823",0,1,1,57,1,1,4,0,7,4,0,0,48 -"824",0,1,1,61,1,1,4,1,9,4,0,0,48 -"825",0,1,1,67,1,1,4,1,6,4,0,0,48 -"826",0,1,0,58,2,1,4,1,12,4,0,0,48 -"827",0,1,1,50,2,1,4,0,6,4,0,0,48 -"828",0,1,0,28,2,1,4,0,6,4,1,0,48 -"829",0,1,1,51,1,1,4,0,10,4,0,0,48 -"830",0,1,0,47,2,1,4,1,5,4,0,0,48 -"831",0,1,1,59,3,1,4,1,5,4,0,0,48 -"832",0,1,0,52,2,1,4,0,9,4,0,0,48 -"833",0,1,1,68,1,1,4,1,9,4,0,0,48 -"834",0,1,1,70,1,1,4,0,10,4,0,0,48 -"835",0,1,1,56,1,1,4,1,10,4,0,0,48 -"836",0,1,0,54,1,1,4,0,11,4,1,0,48 -"837",1,1,0,61,2,1,4,0,10,4,0,0,48 -"838",0,1,1,42,3,1,3,1,9,3,1,0,49 -"839",0,1,1,64,1,1,3,1,12,3,1,0,49 -"840",0,1,0,45,2,1,3,0,8,3,0,0,49 -"841",0,1,0,53,3,1,3,0,9,3,1,0,49 -"842",0,0,0,55,2,1,3,1,11,3,0,0,49 -"843",0,1,0,58,3,1,3,0,11,3,1,0,49 -"844",0,1,0,56,1,1,3,1,9,3,0,0,49 -"845",0,1,1,63,1,1,3,1,7,3,0,0,49 -"846",0,1,0,45,2,1,3,0,8,3,0,0,49 -"847",1,0,0,57,2,1,3,0,5,3,0,0,49 -"848",1,0,1,27,5,1,3,0,10,3,1,0,49 -"849",0,1,0,56,1,1,3,1,10,3,1,0,49 -"850",0,1,0,44,1,1,3,1,11,3,0,0,49 -"851",0,1,0,50,2,1,3,1,7,3,0,0,49 -"852",0,1,0,58,2,1,3,0,10,3,1,0,49 -"853",0,1,0,78,2,1,3,0,10,3,1,0,49 -"854",0,1,0,54,1,1,3,0,10,3,1,0,49 -"855",0,1,0,64,5,1,3,1,9,3,1,0,49 -"856",0,1,0,67,1,1,4,1,12,1,1,0,50 -"857",1,0,1,50,3,1,4,0,11,1,0,0,50 -"858",0,0,0,42,3,1,4,1,11,1,0,0,50 -"859",1,1,0,51,2,1,4,1,8,1,0,0,50 -"860",0,1,0,53,1,1,4,0,9,1,1,0,50 -"861",0,1,0,39,2,1,4,1,8,1,0,0,50 -"862",0,0,1,50,5,1,4,0,10,1,0,0,50 -"863",0,0,1,59,5,1,4,0,11,1,1,0,50 -"864",0,1,0,50,1,1,4,1,11,1,1,0,50 -"865",1,1,0,54,2,1,4,1,10,1,1,0,50 -"866",0,1,1,62,1,1,4,1,11,1,1,0,50 -"867",0,1,1,42,3,1,4,1,6,1,0,0,50 -"868",0,1,1,49,2,1,4,1,12,1,1,0,50 -"869",0,1,0,59,5,1,4,0,9,1,0,0,50 -"870",1,0,1,38,4,1,4,1,9,1,0,0,50 -"871",1,1,0,42,3,1,4,1,7,1,0,0,50 -"872",0,1,1,45,1,1,4,1,10,1,1,0,50 -"873",1,1,1,44,3,1,4,0,10,1,0,0,50 -"874",0,1,0,46,3,1,4,0,12,1,0,0,50 -"875",0,1,0,48,3,1,3,1,5,6,0,0,51 -"876",0,1,0,52,1,1,3,1,5,6,1,0,51 -"877",1,1,1,55,3,1,3,0,10,6,0,0,51 -"878",0,1,0,43,5,1,3,1,6,6,0,0,51 -"879",0,1,1,39,1,1,3,1,7,6,0,0,51 -"880",0,1,0,49,5,1,3,0,9,6,1,0,51 -"881",0,0,0,59,2,1,3,1,10,6,0,0,51 -"882",1,1,0,23,4,1,3,1,6,6,0,0,51 -"883",0,0,0,33,2,1,3,1,9,6,0,0,51 -"884",0,1,1,49,3,1,3,0,10,6,0,0,51 -"885",0,1,0,49,4,1,3,0,9,6,0,0,51 -"886",0,0,0,64,2,1,3,0,7,6,0,0,51 -"887",0,1,0,39,2,1,3,1,8,6,0,0,51 -"888",0,1,0,53,1,1,3,1,10,6,0,0,51 -"889",0,0,0,51,1,1,3,0,9,6,0,0,51 -"890",0,1,0,31,2,1,3,0,7,6,1,0,51 -"891",0,1,0,34,1,1,3,1,2,6,0,0,51 -"892",0,1,1,52,3,1,4,1,6,6,0,0,52 -"893",0,1,1,54,2,1,4,1,10,6,0,0,52 -"894",0,1,1,58,2,1,4,0,12,6,1,0,52 -"895",0,1,1,60,2,1,4,1,7,1,0,0,53 -"896",0,1,0,38,1,1,4,0,9,1,0,0,53 -"897",0,1,1,55,1,1,4,1,9,1,0,0,53 -"898",0,1,0,44,1,1,4,1,10,1,1,0,53 -"899",0,1,1,55,3,1,4,1,10,1,0,0,53 -"900",0,1,0,40,2,1,4,1,8,1,1,0,53 -"901",0,1,0,48,3,1,4,0,10,1,1,0,53 -"902",0,1,1,56,1,1,4,0,12,1,1,0,53 -"903",1,0,0,44,3,1,4,0,9,1,1,0,53 -"904",1,0,0,45,3,1,4,0,8,1,0,0,53 -"905",1,1,0,39,3,1,4,0,10,1,0,0,53 -"906",0,1,1,60,3,1,4,1,11,1,1,0,53 -"907",1,0,1,36,3,1,4,0,8,1,0,0,53 -"908",1,1,1,71,2,1,4,0,12,1,1,0,53 -"909",0,1,0,33,1,1,4,1,13,1,1,0,53 -"910",0,1,1,38,2,1,4,0,2,1,0,0,53 -"911",0,1,0,51,3,1,4,1,13,1,1,0,53 -"912",0,1,0,48,2,1,4,1,10,1,1,0,53 -"913",0,1,0,44,2,1,4,1,12,1,1,0,53 -"914",0,1,0,70,2,1,4,0,11,1,1,0,53 -"915",0,1,0,52,1,1,4,1,9,1,1,0,53 -"916",0,1,1,43,2,1,4,1,7,1,0,0,53 -"917",0,1,0,42,2,1,4,1,10,1,0,0,53 -"918",0,1,1,61,2,1,4,1,10,1,1,0,53 -"919",0,1,1,64,2,1,4,0,9,1,0,0,53 -"920",1,1,0,54,5,1,2,0,10,6,0,0,54 -"921",0,1,0,46,1,1,2,0,8,6,0,0,54 -"922",0,1,0,47,5,1,2,1,8,6,0,0,54 -"923",0,1,1,52,2,1,2,1,10,6,0,0,54 -"924",0,1,0,53,3,1,2,1,11,6,1,0,54 -"925",0,1,0,34,5,1,2,0,10,6,0,0,54 -"926",0,1,0,39,1,1,2,1,5,6,0,0,54 -"927",0,1,0,37,2,1,2,0,2,6,0,0,54 -"928",0,1,0,37,1,1,2,0,5,6,0,0,54 -"929",0,1,0,54,3,1,2,1,12,6,0,0,54 -"930",0,1,0,49,5,1,2,1,7,6,0,0,54 -"931",0,0,0,36,5,1,2,1,10,6,0,0,54 -"932",1,1,1,40,5,1,2,1,10,6,0,0,54 -"933",0,1,0,42,4,1,2,1,5,6,0,0,54 -"934",0,1,1,56,3,1,2,1,5,6,0,0,54 -"935",0,1,0,44,3,1,2,0,6,6,0,0,54 -"936",0,1,0,58,5,1,2,1,9,6,0,0,54 -"937",0,1,0,50,2,1,4,0,11,4,1,0,55 -"938",0,1,0,69,2,1,4,1,12,4,1,0,55 -"939",0,1,1,57,2,1,4,1,9,4,0,0,55 -"940",0,1,0,59,1,1,4,1,8,4,0,0,55 -"941",0,1,0,34,2,1,4,0,8,4,0,0,55 -"942",0,1,0,60,5,1,4,1,9,4,0,0,55 -"943",0,1,0,58,3,1,4,1,7,4,0,0,55 -"944",0,0,1,56,3,1,4,0,13,4,1,0,55 -"945",1,1,0,37,2,1,4,0,8,4,0,0,55 -"946",0,1,0,45,2,1,4,1,10,4,1,0,55 -"947",0,1,0,41,2,1,4,1,7,4,0,0,55 -"948",0,0,0,73,5,1,4,1,9,1,1,0,56 -"949",0,1,0,62,5,1,4,1,8,1,0,0,56 -"950",0,1,0,53,3,1,4,1,10,1,0,0,56 -"951",0,1,0,52,2,1,4,1,9,1,0,0,56 -"952",0,1,0,58,1,1,4,0,13,1,1,0,56 -"953",0,1,1,37,1,1,4,0,13,1,1,0,56 -"954",0,1,1,60,2,1,4,0,8,1,0,0,56 -"955",0,1,1,61,2,1,4,0,13,1,1,0,56 -"956",0,1,0,72,1,1,4,0,10,1,1,0,56 -"957",1,0,1,57,5,1,4,0,13,1,1,0,56 -"958",0,1,0,54,3,1,4,1,10,1,0,0,56 -"959",0,1,0,59,2,1,4,0,5,1,1,0,56 -"960",0,0,0,39,2,1,4,0,13,1,1,0,56 -"961",0,1,0,54,2,1,4,1,12,1,1,0,56 -"962",0,1,0,42,2,1,4,0,5,1,0,0,56 -"963",0,1,0,63,2,1,4,0,11,1,0,0,56 -"964",1,1,1,65,5,1,4,0,11,1,1,0,56 -"965",0,1,0,58,2,1,4,1,11,1,0,0,56 -"966",0,1,0,63,3,1,4,0,13,1,0,0,56 -"967",0,1,0,50,3,1,3,0,9,4,0,0,57 -"968",0,1,1,51,3,1,3,1,10,4,0,0,57 -"969",1,1,0,53,3,1,3,1,8,4,0,0,57 -"970",0,1,0,32,2,1,3,0,12,4,0,0,57 -"971",0,1,0,50,1,1,3,1,10,4,0,0,57 -"972",1,1,1,46,5,1,3,1,9,4,0,0,57 -"973",0,1,0,52,2,1,3,1,9,4,0,0,57 -"974",0,0,0,50,5,1,3,0,6,4,0,0,57 -"975",1,1,1,48,5,1,3,1,6,4,0,0,57 -"976",0,1,1,48,2,1,3,1,4,4,0,0,57 -"977",0,1,1,48,2,1,3,1,7,4,0,0,57 -"978",0,1,1,45,2,1,3,1,10,4,0,0,57 -"979",0,1,0,36,3,1,3,0,9,4,1,0,57 -"980",0,1,0,44,1,1,5,0,8,1,0,0,58 -"981",0,1,1,57,2,1,5,1,7,1,0,0,58 -"982",0,1,0,45,2,1,5,1,9,1,0,0,58 -"983",0,1,0,46,1,1,4,0,8,4,0,0,59 -"984",0,1,0,61,2,1,4,0,9,4,1,0,59 -"985",1,1,0,55,2,1,4,0,11,4,0,0,59 -"986",0,1,0,48,2,1,4,0,8,4,1,0,59 -"987",1,1,0,36,3,1,4,1,9,4,0,0,59 -"988",0,1,0,31,2,1,4,1,11,4,0,0,59 -"989",0,1,1,44,2,1,4,0,5,4,0,0,59 -"990",0,1,1,39,2,1,4,0,6,4,0,0,59 -"991",1,1,1,43,3,1,4,0,9,4,0,0,59 -"992",0,1,0,46,3,1,4,1,6,4,1,0,59 -"993",0,1,0,48,4,1,4,0,11,4,1,0,59 -"994",0,1,0,49,1,1,4,1,9,4,0,0,59 -"995",0,1,0,64,3,1,4,1,12,4,1,0,59 -"996",0,1,0,67,2,1,4,1,10,4,0,0,59 -"997",0,1,1,50,2,1,4,0,10,4,0,0,59 -"998",0,1,0,42,3,1,4,0,1,4,0,0,59 -"999",0,1,1,55,5,1,4,0,12,1,1,0,60 -"1000",1,0,1,52,3,1,4,1,11,1,1,0,60 -"1001",0,1,1,48,3,1,4,1,10,1,1,0,60 -"1002",0,0,1,57,2,1,4,0,11,1,1,0,60 -"1003",0,1,1,42,3,1,4,1,10,1,0,0,60 -"1004",0,1,1,54,2,1,4,1,12,1,1,0,60 -"1005",0,1,1,66,2,1,4,0,13,1,1,0,60 -"1006",0,1,1,51,3,1,4,0,12,1,1,0,60 -"1007",0,1,0,44,5,1,4,1,9,1,1,0,60 -"1008",1,1,1,59,1,1,4,0,13,1,1,0,60 -"1009",0,0,0,80,1,1,4,1,9,1,0,0,60 -"1010",0,1,0,58,2,1,4,1,12,1,1,0,60 -"1011",0,1,1,53,3,1,4,0,10,1,1,0,60 -"1012",1,1,1,44,5,1,4,1,9,1,1,0,60 -"1013",0,1,1,56,1,1,4,0,10,1,0,0,60 -"1014",0,1,0,52,4,1,4,0,10,1,1,0,60 -"1015",0,0,0,48,3,1,4,0,13,1,1,0,60 -"1016",0,1,1,63,2,1,4,1,9,1,1,0,60 -"1017",0,1,0,52,1,1,4,1,6,1,1,0,60 -"1018",0,1,0,58,1,1,4,1,11,1,0,0,60 -"1019",0,1,1,47,2,1,4,1,11,1,0,0,60 -"1020",0,1,1,45,2,1,4,1,12,1,1,0,60 -"1021",1,1,0,60,1,1,4,0,10,5,1,0,61 -"1022",0,0,0,54,5,1,4,0,10,5,0,0,61 -"1023",0,1,0,53,5,1,4,1,12,5,1,0,61 -"1024",0,1,0,51,3,1,4,1,10,5,0,0,61 -"1025",0,1,0,48,1,1,4,1,8,5,0,0,61 -"1026",0,0,0,38,5,1,4,0,6,5,0,0,61 -"1027",1,0,0,46,5,1,4,0,12,5,1,0,61 -"1028",0,1,0,49,2,1,4,0,5,5,1,0,61 -"1029",1,1,0,53,2,1,4,0,5,5,0,0,61 -"1030",0,1,1,38,2,1,4,1,8,5,1,0,61 -"1031",0,1,0,64,2,1,4,0,11,3,1,0,62 -"1032",0,1,0,47,2,1,4,0,7,3,0,0,62 -"1033",0,1,1,42,5,1,4,0,5,3,0,0,62 -"1034",0,1,0,56,1,1,4,1,4,3,1,0,62 -"1035",0,1,0,42,2,1,4,1,7,3,0,0,62 -"1036",0,1,1,42,2,1,4,1,9,3,0,0,62 -"1037",0,1,1,42,2,1,4,1,5,3,0,0,62 -"1038",0,1,0,55,3,1,4,1,5,3,1,0,62 -"1039",0,1,0,56,3,1,4,1,6,3,0,0,62 -"1040",0,0,1,33,3,1,4,1,7,3,0,0,62 -"1041",1,1,1,46,5,1,4,0,9,3,0,0,62 -"1042",0,1,1,60,1,1,4,0,9,3,0,0,62 -"1043",0,1,0,50,3,1,4,1,10,3,0,0,62 -"1044",0,1,0,40,2,1,5,1,8,2,0,0,63 -"1045",0,0,0,54,2,1,5,0,7,2,0,0,63 -"1046",0,0,0,58,2,1,5,0,11,2,0,0,63 -"1047",0,1,0,58,1,1,5,0,8,2,0,0,63 -"1048",0,1,1,42,1,1,5,0,9,2,0,0,63 -"1049",0,1,1,47,1,1,5,1,10,2,1,0,63 -"1050",0,1,0,54,1,1,5,1,12,2,1,0,63 -"1051",0,1,0,49,2,1,5,1,9,2,0,0,63 -"1052",0,1,1,51,1,1,5,0,10,2,1,0,63 -"1053",0,1,1,31,1,1,5,0,3,2,0,0,63 -"1054",0,1,0,64,2,1,5,0,11,2,0,0,63 -"1055",0,1,1,55,3,1,3,1,12,3,1,0,64 -"1056",0,1,0,45,3,1,3,0,10,3,1,0,64 -"1057",0,1,0,52,1,1,3,1,11,3,1,0,64 -"1058",0,1,1,55,3,1,3,0,10,3,0,0,64 -"1059",0,1,1,59,3,1,3,0,9,3,1,0,64 -"1060",0,1,0,46,1,1,3,1,12,3,0,0,64 -"1061",0,1,1,63,4,1,3,1,13,3,0,0,64 -"1062",0,1,1,59,1,1,3,0,11,3,1,0,64 -"1063",0,1,0,61,1,1,3,0,9,3,0,0,64 -"1064",0,1,0,44,1,1,3,0,11,3,1,0,64 -"1065",0,1,0,43,3,1,3,1,9,3,0,0,64 -"1066",1,1,0,44,3,1,3,0,10,3,1,0,64 -"1067",0,0,1,44,3,1,3,1,10,3,1,0,64 -"1068",0,1,0,42,2,1,3,1,10,3,0,0,64 -"1069",0,1,0,28,3,1,3,1,10,3,0,0,64 -"1070",0,1,1,55,1,1,4,1,8,6,0,0,65 -"1071",0,1,1,44,2,1,4,1,5,6,0,0,65 -"1072",0,1,0,49,5,1,4,0,9,6,0,0,65 -"1073",1,1,0,42,1,1,4,0,7,6,0,0,65 -"1074",0,1,1,53,2,1,4,0,7,6,0,0,65 -"1075",1,0,1,60,2,1,4,0,10,6,0,0,65 -"1076",0,1,1,51,1,1,4,1,8,6,0,0,65 -"1077",0,1,0,31,1,1,4,0,10,6,1,0,65 -"1078",0,1,0,40,2,1,4,1,10,6,1,0,65 -"1079",0,1,1,44,2,1,4,0,2,6,0,0,65 -"1080",0,1,0,62,2,1,4,1,10,6,1,0,65 -"1081",1,1,0,53,3,1,4,1,11,6,1,0,65 -"1082",0,1,0,57,1,1,4,0,10,6,0,0,65 -"1083",0,1,0,37,1,1,4,1,5,6,0,0,65 -"1084",0,1,1,54,3,1,4,0,5,6,0,0,65 -"1085",0,1,1,53,5,1,4,0,8,3,1,0,66 -"1086",0,1,1,63,1,1,4,0,7,3,0,0,66 -"1087",0,1,1,58,1,1,4,1,11,3,0,0,66 -"1088",0,1,1,49,2,1,4,0,9,3,0,0,66 -"1089",0,1,1,58,1,1,4,1,4,3,0,0,66 -"1090",0,1,0,54,3,1,4,0,10,3,0,0,66 -"1091",0,1,0,62,1,1,4,0,5,3,0,0,66 -"1092",0,1,0,37,2,1,4,0,9,3,0,0,66 -"1093",0,1,0,56,1,1,4,1,7,3,0,0,66 -"1094",0,1,0,50,1,1,4,0,6,3,0,0,66 -"1095",0,1,1,60,5,1,4,1,6,3,0,0,66 -"1096",0,1,1,47,3,1,5,0,10,4,1,0,67 -"1097",0,1,0,59,1,1,5,0,9,4,0,0,67 -"1098",0,1,0,58,1,1,5,0,6,4,0,0,67 -"1099",0,1,1,52,3,1,5,1,10,4,0,0,67 -"1100",0,1,1,47,3,1,5,0,9,4,0,0,67 -"1101",0,1,0,46,5,1,5,1,9,4,1,0,67 -"1102",0,1,1,57,2,1,5,1,10,4,1,0,67 -"1103",0,1,0,49,1,1,5,0,10,4,1,0,67 -"1104",1,1,0,40,5,1,5,0,8,4,0,0,67 -"1105",0,1,0,43,2,1,5,1,6,4,0,0,67 -"1106",0,1,1,46,1,1,5,1,3,4,0,0,67 -"1107",0,1,0,56,2,1,5,1,11,4,1,0,67 -"1108",0,1,1,57,1,1,5,0,5,4,0,0,67 -"1109",0,1,1,49,2,1,5,0,10,4,0,0,67 -"1110",0,1,0,47,5,0,5,0,12,1,0,1,68 -"1111",0,1,0,45,4,0,5,0,10,1,0,1,68 -"1112",0,1,1,51,5,0,5,0,11,1,1,1,68 -"1113",0,1,0,43,1,0,5,0,12,1,1,1,68 -"1114",0,0,0,43,2,0,5,0,8,1,0,1,68 -"1115",0,1,0,58,2,0,5,0,11,1,1,1,68 -"1116",0,1,0,45,1,0,5,0,10,1,0,1,68 -"1117",0,0,0,62,3,0,5,0,11,1,0,1,68 -"1118",0,0,0,63,3,0,5,0,10,1,1,1,68 -"1119",0,1,1,46,1,0,5,0,10,1,0,1,68 -"1120",0,1,1,70,1,0,5,0,11,1,0,1,68 -"1121",0,1,1,57,1,0,5,0,10,1,0,1,68 -"1122",0,1,0,49,1,0,5,0,7,1,0,1,68 -"1123",0,0,0,55,2,0,5,0,10,1,0,1,68 -"1124",0,1,0,48,1,0,5,0,10,1,0,1,68 -"1125",0,1,1,41,2,0,5,0,10,1,0,1,68 -"1126",1,0,1,63,4,1,4,0,12,1,1,0,69 -"1127",0,1,0,56,2,1,4,1,11,1,1,0,69 -"1128",1,0,1,55,5,1,4,1,12,1,1,0,69 -"1129",0,1,0,56,2,1,4,0,10,1,0,0,69 -"1130",0,1,1,53,3,1,4,1,12,1,1,0,69 -"1131",0,1,0,59,2,1,4,1,13,1,1,0,69 -"1132",0,0,0,50,3,1,4,0,11,1,1,0,69 -"1133",0,0,0,54,3,1,4,1,12,1,1,0,69 -"1134",0,1,0,57,2,1,4,1,10,1,1,0,69 -"1135",0,1,0,54,2,1,4,1,9,1,1,0,69 -"1136",0,1,0,51,2,1,4,1,10,1,1,0,69 -"1137",1,1,0,52,1,1,4,0,13,1,1,0,69 -"1138",0,1,0,48,5,1,4,1,9,1,0,0,69 -"1139",1,1,1,29,5,1,4,0,12,1,1,0,69 -"1140",0,0,0,55,1,1,4,1,10,1,1,0,69 -"1141",0,1,1,53,3,1,4,1,8,1,1,0,69 -"1142",0,1,1,59,1,1,4,0,10,1,0,0,69 -"1143",0,1,0,54,2,1,4,1,10,1,0,0,69 -"1144",0,1,0,52,3,1,3,0,9,3,0,0,70 -"1145",0,1,1,35,3,1,3,1,10,3,0,0,70 -"1146",0,1,1,25,3,1,3,0,8,3,1,0,70 -"1147",0,1,0,35,3,1,3,0,8,3,1,0,70 -"1148",1,1,0,41,4,1,3,1,8,3,0,0,70 -"1149",0,1,0,48,3,1,3,0,3,3,0,0,70 -"1150",0,1,0,41,5,1,3,0,10,3,0,0,70 -"1151",0,0,0,30,2,1,3,0,11,3,0,0,70 -"1152",0,1,0,40,5,1,3,1,6,3,0,0,70 -"1153",0,1,0,31,3,1,3,1,9,3,0,0,70 -"1154",0,1,0,39,3,1,3,0,10,3,0,0,70 -"1155",1,1,0,31,2,1,3,0,10,3,0,0,70 -"1156",0,1,0,46,3,1,3,1,9,3,0,0,70 -"1157",0,1,0,55,1,1,3,0,9,3,0,0,70 -"1158",1,0,1,58,3,1,3,0,11,3,0,0,70 -"1159",0,1,0,55,1,1,3,1,11,3,0,0,70 -"1160",0,0,0,50,3,1,3,0,11,3,1,0,70 -"1161",1,1,0,40,4,1,3,1,8,3,0,0,70 -"1162",0,1,0,40,2,1,3,0,9,3,1,0,70 -"1163",0,1,1,52,3,1,3,1,9,3,0,0,70 -"1164",0,1,0,36,2,1,3,1,8,3,0,0,70 -"1165",1,1,0,50,5,1,3,1,8,3,0,0,70 -"1166",0,1,0,43,2,1,4,1,9,5,0,0,71 -"1167",0,1,1,56,1,1,4,0,9,5,1,0,71 -"1168",0,1,1,57,2,1,4,1,4,5,0,0,71 -"1169",0,1,1,48,2,1,4,1,7,5,0,0,71 -"1170",0,1,1,44,1,1,4,1,3,5,0,0,71 -"1171",1,0,0,51,3,1,4,0,5,5,0,0,71 -"1172",0,1,1,53,1,1,4,0,9,5,0,0,71 -"1173",0,1,0,52,3,1,4,1,8,5,0,0,71 -"1174",1,1,1,38,3,1,4,1,10,5,0,0,71 -"1175",0,1,0,61,1,1,4,0,8,5,0,0,71 -"1176",0,1,0,59,1,1,4,0,10,5,0,0,71 -"1177",0,1,1,57,2,1,4,1,10,5,0,0,71 -"1178",0,1,0,54,5,1,4,1,10,5,1,0,71 -"1179",0,1,0,52,1,1,4,1,9,5,0,0,71 -"1180",0,1,1,27,3,1,4,1,10,5,1,0,71 -"1181",1,0,0,47,2,1,4,0,10,5,0,0,71 -"1182",1,0,0,41,4,1,4,0,8,5,0,0,71 -"1183",0,1,1,40,2,1,4,1,7,2,0,0,72 -"1184",0,1,0,49,2,1,4,1,10,2,0,0,72 -"1185",1,1,1,25,3,1,4,1,9,2,0,0,72 -"1186",1,1,1,46,3,1,4,0,8,2,0,0,72 -"1187",0,1,0,48,2,1,4,0,5,2,0,0,72 -"1188",0,1,0,41,4,1,4,1,7,2,0,0,72 -"1189",1,1,1,28,1,1,4,1,3,2,1,0,72 -"1190",0,1,1,48,1,1,4,1,10,2,0,0,72 -"1191",0,1,1,46,2,1,4,1,11,2,0,0,72 -"1192",0,0,1,39,2,1,4,1,9,2,0,0,72 -"1193",0,1,1,40,1,1,4,1,8,2,0,0,72 -"1194",0,1,1,38,1,1,4,1,6,2,1,0,72 -"1195",0,1,1,42,2,1,4,0,11,3,0,0,73 -"1196",0,1,0,69,1,1,4,0,9,3,1,0,73 -"1197",0,1,0,64,2,1,4,0,11,3,1,0,73 -"1198",0,1,0,54,1,1,4,1,5,3,0,0,73 -"1199",0,1,0,44,2,1,4,1,8,3,0,0,73 -"1200",0,1,1,52,3,1,4,0,8,3,0,0,73 -"1201",0,1,0,59,3,1,4,0,8,3,1,0,73 -"1202",0,1,0,52,2,1,4,1,8,3,0,0,73 -"1203",0,1,0,47,3,1,4,1,9,3,1,0,73 -"1204",0,0,1,38,5,1,4,1,6,3,1,0,73 -"1205",0,1,0,30,3,1,4,1,8,3,0,0,73 -"1206",0,1,0,64,5,1,4,1,10,3,1,0,73 -"1207",0,1,1,38,3,1,4,1,8,3,1,0,73 -"1208",0,0,0,45,3,1,4,0,6,3,0,0,73 -"1209",0,1,0,42,2,1,4,1,10,3,0,0,73 -"1210",1,1,1,59,1,1,4,0,10,1,0,0,74 -"1211",0,1,1,60,2,1,4,1,10,1,0,0,74 -"1212",0,1,1,56,1,1,4,1,9,1,1,0,74 -"1213",1,0,1,56,3,1,4,0,13,1,0,0,74 -"1214",1,0,1,48,3,1,4,0,11,1,0,0,74 -"1215",0,1,0,59,2,1,4,1,11,1,1,0,74 -"1216",0,1,1,59,2,1,4,0,11,1,1,0,74 -"1217",0,1,1,49,3,1,4,0,9,1,0,0,74 -"1218",0,1,1,65,2,1,4,1,10,1,1,0,74 -"1219",0,1,0,62,1,1,4,1,13,1,0,0,74 -"1220",0,1,0,50,1,1,4,1,11,1,1,0,74 -"1221",0,1,0,58,2,1,4,1,10,1,1,0,74 -"1222",0,1,0,52,2,1,4,1,13,1,1,0,74 -"1223",0,0,1,68,1,1,4,0,10,1,1,0,74 -"1224",0,1,0,54,2,1,4,1,10,1,0,0,74 -"1225",0,0,0,48,3,1,4,1,10,1,0,0,74 -"1226",0,1,0,38,1,1,4,0,11,1,0,0,74 -"1227",0,1,1,48,1,1,4,1,10,1,1,0,74 -"1228",0,1,1,61,1,1,4,0,11,1,0,0,74 -"1229",1,1,1,65,4,1,4,0,9,1,0,0,74 -"1230",0,1,1,56,2,1,4,1,11,1,1,0,74 -"1231",0,0,1,45,2,1,4,1,10,1,1,0,75 -"1232",0,1,0,46,2,1,4,0,9,1,0,0,75 -"1233",0,0,0,49,3,1,4,1,5,1,0,0,75 -"1234",0,1,0,58,2,1,4,1,7,1,0,0,75 -"1235",0,1,1,49,1,1,4,1,6,1,0,0,75 -"1236",0,1,1,48,4,1,4,1,9,1,0,0,75 -"1237",0,1,0,46,1,1,4,1,12,1,1,0,75 -"1238",0,1,0,39,2,1,4,1,9,6,0,0,76 -"1239",0,1,1,47,2,1,4,1,4,6,1,0,76 -"1240",1,1,1,43,2,1,4,0,9,6,0,0,76 -"1241",0,1,1,47,2,1,4,0,7,6,0,0,76 -"1242",0,1,0,46,1,1,4,1,2,6,0,0,76 -"1243",0,1,1,54,2,1,4,0,8,6,0,0,76 -"1244",1,1,0,35,1,1,4,0,6,6,0,0,76 -"1245",0,0,0,44,1,1,4,1,6,6,0,0,76 -"1246",0,1,0,58,2,1,4,0,10,6,0,0,76 -"1247",0,1,0,45,2,1,4,1,7,6,0,0,76 -"1248",0,1,1,41,5,1,4,0,10,6,0,0,76 -"1249",0,1,0,37,2,1,4,1,11,6,0,0,76 -"1250",0,1,1,72,1,1,4,1,10,6,1,0,76 -"1251",0,1,0,50,1,1,4,0,5,6,0,0,76 -"1252",1,1,0,41,3,1,4,0,9,6,0,0,76 -"1253",0,1,1,53,3,1,4,1,7,5,0,0,77 -"1254",0,1,0,61,2,1,4,1,6,5,1,0,77 -"1255",0,1,1,37,3,1,4,1,8,5,0,0,77 -"1256",0,1,0,61,2,1,4,1,10,5,1,0,77 -"1257",0,1,1,38,2,1,4,1,5,5,1,0,77 -"1258",0,1,1,35,5,1,4,0,7,5,0,0,77 -"1259",0,1,1,43,3,1,4,0,13,5,1,0,77 -"1260",0,1,1,41,3,1,4,0,1,5,1,0,77 -"1261",0,1,0,42,3,1,4,0,12,5,1,0,77 -"1262",0,1,0,37,2,1,4,1,8,5,1,0,77 -"1263",0,1,0,51,2,1,4,0,12,5,1,0,77 -"1264",0,1,0,41,2,1,4,1,10,5,1,0,77 -"1265",0,1,0,56,2,1,4,1,10,5,0,0,77 -"1266",0,1,1,42,2,1,4,1,13,5,1,0,77 -"1267",0,1,1,50,5,1,4,0,11,5,1,0,77 -"1268",1,1,1,56,3,1,4,0,9,5,0,0,77 -"1269",0,1,0,37,2,1,4,1,9,5,0,0,77 -"1270",0,1,0,49,3,1,4,0,11,5,0,0,77 -"1271",0,1,1,41,2,1,4,1,11,5,1,0,77 -"1272",0,1,0,62,5,1,4,1,7,5,1,0,77 -"1273",1,1,0,33,3,1,4,1,7,5,1,0,77 -"1274",0,1,1,43,2,1,4,1,10,2,1,0,78 -"1275",0,1,0,65,2,1,4,1,8,2,1,0,78 -"1276",1,1,0,51,4,1,4,1,10,2,1,0,78 -"1277",0,1,1,58,2,1,4,0,12,2,1,0,78 -"1278",0,1,1,55,1,1,4,1,11,2,0,0,78 -"1279",1,1,0,48,4,1,4,0,12,2,1,0,78 -"1280",0,1,0,58,2,1,4,1,12,2,1,0,78 -"1281",0,1,0,64,1,1,4,0,11,2,1,0,78 -"1282",0,1,0,54,2,1,4,0,11,2,1,0,78 -"1283",0,1,1,75,1,1,4,0,5,2,1,0,78 -"1284",0,1,0,71,1,1,4,0,10,2,1,0,78 -"1285",1,1,1,43,5,1,4,1,9,2,1,0,78 -"1286",0,1,0,58,1,1,4,0,12,2,1,0,78 -"1287",0,1,1,53,3,1,4,1,11,2,1,0,78 -"1288",0,1,1,55,1,1,4,1,11,2,1,0,78 -"1289",0,1,0,60,2,1,4,0,12,1,1,1,79 -"1290",0,1,0,43,4,1,4,0,4,1,0,1,79 -"1291",0,1,0,47,3,1,4,0,10,1,1,1,79 -"1292",0,1,0,53,2,1,4,1,12,1,1,1,79 -"1293",0,1,1,69,3,1,4,0,12,1,1,1,79 -"1294",1,1,1,64,5,1,4,0,10,1,1,1,79 -"1295",0,1,0,62,1,1,4,1,8,1,0,1,79 -"1296",0,1,0,42,2,1,4,0,13,1,0,1,79 -"1297",0,1,1,70,2,1,4,0,12,1,1,1,79 -"1298",0,1,1,42,2,1,4,1,10,1,1,1,79 -"1299",0,1,0,66,2,1,4,0,13,1,1,1,79 -"1300",0,1,0,56,3,1,4,1,12,1,1,1,79 -"1301",0,1,1,45,2,1,4,1,9,1,0,1,79 -"1302",0,1,0,59,2,1,4,0,12,1,1,1,79 -"1303",0,1,1,75,2,1,4,0,13,1,1,1,79 -"1304",0,1,0,39,2,1,4,0,11,1,1,1,79 -"1305",0,1,1,43,3,1,4,1,11,1,1,1,79 -"1306",0,1,1,53,2,1,4,1,13,1,1,1,79 -"1307",0,1,0,63,2,1,4,1,11,1,1,1,79 -"1308",0,1,1,55,3,1,4,0,10,1,0,1,79 -"1309",0,1,0,80,1,1,4,1,12,1,1,1,79 -"1310",0,0,0,40,2,1,4,0,6,1,0,1,79 -"1311",0,1,1,52,1,1,4,1,11,1,1,1,79 -"1312",0,1,0,40,3,1,4,0,12,1,1,1,79 -"1313",0,1,1,55,3,1,4,1,11,1,1,1,79 -"1314",0,1,1,65,3,1,4,0,10,1,0,1,79 -"1315",0,1,0,44,1,1,4,1,11,1,1,1,79 -"1316",0,1,1,52,2,1,4,1,10,1,1,1,79 -"1317",1,1,0,58,3,1,4,0,10,2,1,0,80 -"1318",0,0,0,64,3,1,4,0,11,2,1,0,80 -"1319",1,0,0,48,2,1,4,0,9,2,0,0,80 -"1320",0,1,0,60,2,1,4,0,12,2,1,0,80 -"1321",0,1,0,53,2,1,4,1,8,2,0,0,80 -"1322",1,0,0,50,2,1,4,0,8,2,1,0,80 -"1323",0,1,1,60,2,1,4,0,12,2,1,0,80 -"1324",0,1,0,35,3,1,4,1,10,2,1,0,80 -"1325",1,0,1,60,2,1,4,0,7,2,1,0,80 -"1326",0,1,0,65,1,1,4,1,7,2,0,0,80 -"1327",0,1,0,66,3,1,4,0,10,2,1,0,80 -"1328",0,1,0,56,1,1,4,1,10,2,0,0,80 -"1329",0,0,1,53,5,1,4,1,9,2,0,0,80 -"1330",0,1,0,51,2,1,4,1,10,1,0,1,81 -"1331",0,1,0,54,2,1,4,0,12,1,1,1,81 -"1332",0,1,0,67,2,1,4,0,9,1,1,1,81 -"1333",0,1,1,51,3,1,4,1,13,1,1,1,81 -"1334",0,1,0,60,4,1,4,1,11,1,1,1,81 -"1335",1,1,0,59,1,1,4,0,7,1,0,1,81 -"1336",0,1,1,54,2,1,4,0,12,1,1,1,81 -"1337",0,1,0,51,3,1,4,1,8,1,0,1,81 -"1338",0,1,1,53,2,1,4,0,11,1,0,1,81 -"1339",0,1,1,56,3,1,4,0,10,1,1,1,81 -"1340",1,1,0,59,2,1,4,0,11,1,1,1,81 -"1341",0,1,0,42,1,1,4,1,8,1,1,1,81 -"1342",0,1,0,52,4,1,4,1,11,1,1,1,81 -"1343",0,1,1,47,2,1,4,1,5,1,0,1,81 -"1344",0,1,0,48,2,1,4,0,7,1,1,1,81 -"1345",0,1,1,46,3,1,4,1,13,1,1,1,81 -"1346",0,0,1,49,3,1,4,1,13,1,1,1,81 -"1347",0,1,0,40,4,1,4,1,12,1,1,1,81 -"1348",0,0,0,56,2,1,4,1,4,5,0,0,82 -"1349",0,1,0,63,1,1,4,0,10,5,1,0,82 -"1350",0,1,1,65,2,1,4,1,11,5,0,0,82 -"1351",0,1,0,50,1,1,4,0,3,5,0,0,82 -"1352",0,1,0,61,1,1,4,0,8,5,0,0,82 -"1353",0,1,0,62,1,1,4,1,10,5,0,0,82 -"1354",0,1,1,55,1,1,4,1,9,5,0,0,82 -"1355",0,1,1,55,4,1,4,0,6,5,0,0,82 -"1356",1,1,0,59,1,1,4,0,10,5,1,0,82 -"1357",1,1,0,31,2,1,4,1,11,5,1,0,82 -"1358",0,1,0,61,2,1,4,1,10,5,0,0,82 -"1359",1,1,1,48,3,1,4,1,5,5,0,0,82 -"1360",1,1,0,47,1,1,4,1,3,5,0,0,82 -"1361",0,1,0,64,2,1,4,0,12,5,0,0,82 -"1362",0,1,0,58,3,1,4,0,12,4,1,0,83 -"1363",0,1,1,58,1,1,4,1,12,4,1,0,83 -"1364",0,1,0,63,3,1,4,0,12,4,1,0,83 -"1365",0,1,1,51,3,1,4,1,10,4,1,0,83 -"1366",0,1,0,77,3,1,4,0,11,4,1,0,83 -"1367",0,1,0,55,2,1,4,1,12,4,1,0,83 -"1368",0,1,0,55,2,1,4,1,7,4,0,0,83 -"1369",0,1,0,44,3,1,4,0,9,4,0,0,83 -"1370",0,1,0,70,2,1,4,0,10,4,1,0,83 -"1371",0,1,0,56,3,1,4,1,10,4,0,0,83 -"1372",0,1,0,59,1,1,4,1,11,4,1,0,83 -"1373",0,1,0,63,1,1,4,1,8,4,1,0,83 -"1374",0,1,0,52,1,1,4,1,8,4,1,0,83 -"1375",0,1,0,38,3,1,4,1,9,4,0,0,83 -"1376",0,1,0,61,3,1,4,0,11,4,1,0,83 -"1377",0,1,0,60,3,1,4,1,10,4,0,0,83 -"1378",1,1,0,52,2,1,4,0,6,4,0,0,83 -"1379",0,1,1,61,3,1,4,1,9,4,1,0,83 -"1380",0,1,0,51,3,1,4,1,8,4,1,0,83 -"1381",0,1,0,74,1,1,4,0,12,4,1,0,83 -"1382",0,1,0,54,2,1,4,1,12,4,1,0,83 -"1383",0,1,0,60,3,1,4,1,9,4,0,0,83 -"1384",0,1,0,68,2,1,4,0,12,4,1,0,83 -"1385",0,1,0,63,1,0,4,0,11,1,1,1,84 -"1386",0,1,0,58,3,0,4,0,10,1,1,1,84 -"1387",1,1,0,52,2,0,4,0,12,1,1,1,84 -"1388",0,1,1,72,3,0,4,0,12,1,1,1,84 -"1389",0,1,1,58,2,0,4,0,12,1,1,1,84 -"1390",0,1,0,59,1,0,4,0,10,1,1,1,84 -"1391",0,1,0,65,1,0,4,0,12,1,1,1,84 -"1392",0,1,0,74,1,0,4,0,10,1,1,1,84 -"1393",0,1,0,60,1,0,4,0,12,1,1,1,84 -"1394",0,1,1,61,2,0,4,0,12,1,1,1,84 -"1395",0,1,0,57,2,0,4,0,11,1,0,1,84 -"1396",0,1,0,69,1,0,4,0,13,1,1,1,84 -"1397",0,1,0,58,2,0,4,0,9,1,1,1,84 -"1398",0,1,0,66,2,0,4,0,12,1,1,1,84 -"1399",0,1,0,48,3,1,4,1,12,5,0,0,85 -"1400",0,1,0,53,2,1,4,1,8,5,0,0,85 -"1401",0,1,0,47,3,1,4,1,9,5,0,0,85 -"1402",0,1,0,49,2,1,4,1,12,5,1,0,85 -"1403",1,1,0,37,2,1,4,1,9,5,0,0,85 -"1404",1,1,1,46,3,1,4,1,9,5,0,0,85 -"1405",0,1,0,37,2,1,4,1,8,5,0,0,85 -"1406",0,1,0,61,5,1,4,0,9,5,0,0,85 -"1407",0,1,0,40,4,1,4,0,5,5,1,0,85 -"1408",0,1,0,72,2,1,4,0,9,5,0,0,85 -"1409",0,1,0,49,5,1,4,0,8,5,0,0,85 -"1410",0,1,1,36,5,1,4,1,9,5,0,0,85 -"1411",0,0,1,38,2,1,4,1,10,5,0,0,86 -"1412",0,0,0,55,2,1,4,0,7,5,0,0,86 -"1413",0,1,0,45,2,1,4,1,8,5,0,0,86 -"1414",0,1,0,52,2,1,4,0,10,5,0,0,86 -"1415",0,1,0,45,1,1,4,1,8,5,0,0,86 -"1416",0,1,1,49,2,1,4,1,9,5,0,0,86 -"1417",1,1,1,43,1,1,4,0,7,5,1,0,86 -"1418",0,1,0,49,2,1,4,1,4,5,0,0,86 -"1419",0,1,1,48,2,1,4,1,7,5,0,0,86 -"1420",1,0,1,52,3,1,4,0,10,5,1,0,86 -"1421",0,1,0,67,2,1,4,1,9,5,0,0,86 -"1422",0,1,0,60,3,1,4,0,11,5,1,0,86 -"1423",0,1,1,49,2,1,4,0,6,5,0,0,86 -"1424",0,1,0,47,3,1,4,0,10,5,0,0,86 -"1425",0,1,1,59,2,1,4,1,9,3,0,0,87 -"1426",1,1,0,62,3,1,4,0,5,3,0,0,87 -"1427",0,1,1,53,1,1,4,0,9,3,0,0,87 -"1428",0,1,0,57,3,1,4,0,13,3,0,0,87 -"1429",0,1,0,54,2,1,4,1,9,3,1,0,87 -"1430",0,1,0,53,1,1,4,1,9,3,1,0,87 -"1431",0,1,0,51,2,1,4,1,10,3,0,0,87 -"1432",0,1,0,36,4,1,4,1,7,3,0,0,87 -"1433",0,1,1,56,2,1,4,1,8,3,0,0,87 -"1434",0,1,0,53,2,1,4,0,8,3,1,0,87 -"1435",0,1,1,71,2,1,4,1,11,3,0,0,87 -"1436",0,1,0,63,4,1,4,1,9,3,0,0,87 -"1437",1,1,0,39,1,1,4,1,8,3,0,0,87 -"1438",0,1,0,56,2,1,4,1,11,3,1,0,87 -"1439",1,0,0,50,1,1,4,0,10,3,0,0,87 -"1440",0,1,0,60,1,1,4,1,9,3,0,0,87 -"1441",0,1,0,54,1,1,4,0,9,3,0,0,87 -"1442",0,1,1,59,2,1,4,1,8,3,0,0,87 -"1443",0,1,0,58,2,1,4,1,9,3,1,0,87 -"1444",0,1,0,48,3,1,4,0,9,3,0,0,87 -"1445",0,1,0,50,3,1,4,1,9,3,0,0,87 -"1446",0,1,0,49,1,1,4,1,8,3,0,0,87 -"1447",0,1,0,47,2,1,4,1,9,3,0,0,87 -"1448",0,1,1,65,1,1,4,0,10,3,1,0,87 -"1449",1,1,0,50,2,1,4,0,10,1,1,0,88 -"1450",0,1,1,53,2,1,4,1,8,1,0,0,88 -"1451",0,1,0,59,2,1,4,0,11,1,0,0,88 -"1452",0,1,0,50,2,1,4,0,12,1,1,0,88 -"1453",0,1,0,61,3,1,4,1,12,1,0,0,88 -"1454",0,1,0,63,3,1,4,1,11,1,1,0,88 -"1455",0,1,1,47,1,1,4,0,10,1,0,0,88 -"1456",0,1,0,68,1,1,4,1,8,1,1,0,88 -"1457",0,1,1,74,2,1,4,1,11,1,1,0,88 -"1458",1,0,0,43,2,1,4,0,10,1,0,0,88 -"1459",0,1,0,57,2,1,4,0,11,1,1,0,88 -"1460",0,1,1,56,3,1,4,1,12,1,0,0,88 -"1461",0,1,0,54,2,1,4,0,11,1,0,0,88 -"1462",0,1,1,50,2,1,4,1,11,1,1,0,88 -"1463",0,1,1,45,2,1,4,0,12,1,1,0,88 -"1464",0,1,0,54,3,1,4,1,7,1,0,0,88 -"1465",0,1,1,32,3,1,4,1,9,1,1,0,88 -"1466",0,1,0,40,2,1,4,1,9,1,1,0,88 -"1467",0,1,0,52,3,1,4,1,10,1,1,0,88 -"1468",0,1,0,59,3,1,4,0,7,1,1,0,88 -"1469",0,0,0,41,3,1,4,0,9,1,1,0,88 -"1470",0,1,0,57,2,1,4,1,11,1,1,0,88 -"1471",0,0,1,43,3,1,4,0,9,1,1,0,88 -"1472",1,1,1,48,3,1,4,0,11,1,1,0,88 -"1473",0,0,1,52,2,1,4,0,10,1,0,0,88 -"1474",0,1,0,55,5,1,4,1,11,1,1,0,88 -"1475",0,1,1,80,2,1,3,0,12,2,1,0,89 -"1476",0,0,1,33,5,1,3,0,11,2,0,0,89 -"1477",0,1,1,65,2,1,3,1,10,2,0,0,89 -"1478",0,1,1,57,2,1,3,0,9,2,0,0,89 -"1479",0,1,0,37,3,1,3,0,10,2,0,0,89 -"1480",0,1,0,51,1,1,3,1,10,2,1,0,89 -"1481",0,1,1,37,5,1,3,1,9,2,0,0,89 -"1482",0,1,0,57,1,1,3,0,11,2,0,0,89 -"1483",0,1,1,45,4,1,3,1,10,2,0,0,89 -"1484",0,1,1,59,1,1,3,0,9,2,0,0,89 -"1485",0,1,0,61,5,1,3,0,9,2,0,0,89 -"1486",0,1,1,61,1,1,3,1,14,2,1,0,89 -"1487",0,0,1,47,3,1,3,0,7,2,1,0,89 -"1488",0,1,0,67,2,1,3,0,10,2,0,0,89 -"1489",0,1,0,44,5,1,3,1,10,2,1,0,89 -"1490",0,1,0,54,1,1,3,0,8,2,1,0,89 -"1491",0,1,0,42,2,1,5,1,8,5,0,0,90 -"1492",0,1,1,52,2,1,5,0,10,5,0,0,90 -"1493",0,1,0,75,2,1,5,0,10,5,0,0,90 -"1494",0,0,1,34,1,1,5,1,10,5,1,0,90 -"1495",0,1,1,45,1,1,5,0,10,5,0,0,90 -"1496",0,1,0,46,2,1,5,1,10,5,1,0,90 -"1497",0,1,0,52,2,1,5,0,13,5,1,0,90 -"1498",0,1,0,42,1,1,5,1,9,5,1,0,90 -"1499",0,1,1,48,2,1,5,1,8,5,0,0,90 -"1500",0,1,0,51,4,1,5,1,7,5,0,0,90 -"1501",1,1,0,46,5,1,5,1,8,5,0,0,90 -"1502",1,1,1,47,2,1,5,0,10,5,0,0,90 -"1503",1,1,0,37,2,1,5,0,7,5,0,0,90 -"1504",0,1,0,50,2,1,5,0,10,5,1,0,90 -"1505",0,1,0,38,3,1,5,0,9,5,0,0,90 -"1506",0,1,0,56,2,1,5,0,11,5,0,0,90 -"1507",0,1,1,41,5,1,5,1,9,5,1,0,90 -"1508",0,1,0,41,1,1,5,0,7,5,0,0,90 -"1509",0,1,1,49,2,1,5,0,12,5,1,0,90 -"1510",0,1,0,62,1,1,5,0,9,5,0,0,90 -"1511",0,1,0,38,1,1,5,0,8,5,0,0,90 -"1512",0,1,0,55,1,1,5,1,3,5,0,0,90 -"1513",0,1,1,61,1,1,5,1,10,5,0,0,90 -"1514",1,0,0,50,4,1,4,1,8,1,0,0,91 -"1515",0,1,1,48,5,1,4,1,12,1,1,0,91 -"1516",0,1,0,57,2,1,4,1,1,1,0,0,91 -"1517",0,1,1,36,3,1,4,0,11,1,0,0,91 -"1518",0,1,0,51,2,1,4,0,10,1,1,0,91 -"1519",0,1,1,56,2,1,4,0,12,1,0,0,91 -"1520",0,1,1,50,2,1,4,1,9,1,0,0,91 -"1521",1,1,0,31,3,1,4,0,5,1,0,0,91 -"1522",0,1,1,58,1,1,4,0,12,1,1,0,91 -"1523",0,0,0,57,3,1,4,1,9,1,1,0,91 -"1524",0,1,1,59,2,1,4,0,8,1,0,0,91 -"1525",0,0,0,56,3,1,4,0,10,1,0,0,91 -"1526",1,1,1,48,3,1,4,1,11,1,1,0,91 -"1527",0,1,1,53,2,1,3,1,11,3,0,0,92 -"1528",0,1,1,49,2,1,3,1,9,3,0,0,92 -"1529",0,0,0,39,3,1,3,1,4,3,0,0,92 -"1530",0,1,1,55,3,1,3,1,6,3,0,0,92 -"1531",1,1,0,53,5,1,3,1,7,3,1,0,92 -"1532",0,1,0,43,2,1,3,0,11,3,1,0,92 -"1533",0,1,0,63,1,1,3,1,12,3,1,0,92 -"1534",0,1,1,39,3,1,3,1,9,3,0,0,92 -"1535",0,1,1,37,1,1,3,1,6,3,1,0,92 -"1536",1,1,1,56,4,1,3,0,11,3,1,0,92 -"1537",0,1,0,40,3,1,3,1,4,3,1,0,92 -"1538",1,1,0,40,4,1,3,0,8,3,0,0,92 -"1539",1,1,0,29,3,1,3,0,7,3,0,0,92 -"1540",0,1,1,28,4,1,3,1,3,3,0,0,92 -"1541",1,1,0,40,2,1,3,0,9,3,0,0,92 -"1542",0,1,1,29,4,1,3,1,10,3,0,0,92 -"1543",0,1,1,47,3,1,3,1,9,3,0,0,92 -"1544",0,0,1,50,5,1,3,0,3,3,0,0,92 -"1545",0,1,1,44,1,1,3,1,11,3,1,0,92 -"1546",0,1,0,32,1,1,3,0,8,3,0,0,92 -"1547",1,1,0,43,3,1,3,0,7,3,1,0,92 -"1548",0,1,1,53,2,1,3,0,10,3,0,0,92 -"1549",0,1,0,46,4,1,3,1,9,3,0,0,92 -"1550",0,1,1,41,1,1,3,1,7,3,0,0,92 -"1551",0,1,0,51,3,1,3,0,7,3,0,0,92 -"1552",0,1,0,66,1,1,4,0,12,1,1,0,93 -"1553",0,0,1,67,5,1,4,1,13,1,1,0,93 -"1554",0,0,1,59,4,1,4,1,11,1,0,0,93 -"1555",1,1,0,61,2,1,4,0,12,1,1,0,93 -"1556",1,1,0,55,2,1,4,0,10,1,0,0,93 -"1557",0,1,0,57,3,1,4,0,9,1,1,0,93 -"1558",0,1,1,62,3,1,4,1,12,1,0,0,93 -"1559",0,0,0,56,2,1,4,0,6,1,0,0,93 -"1560",0,1,1,74,1,1,4,0,10,1,1,0,93 -"1561",1,1,0,59,1,1,4,0,7,1,0,0,93 -"1562",0,1,1,59,3,1,4,1,12,1,1,0,93 -"1563",0,1,0,41,3,1,4,1,11,1,0,0,93 -"1564",0,1,0,59,3,1,4,1,11,1,1,0,93 -"1565",0,1,0,49,2,1,4,1,11,1,1,0,93 -"1566",0,1,1,61,5,1,4,1,10,1,1,0,93 -"1567",0,1,0,39,2,1,4,1,12,1,1,0,93 -"1568",0,1,1,51,4,1,4,1,7,1,1,0,93 -"1569",0,0,0,57,3,1,4,0,11,1,1,0,93 -"1570",0,0,0,67,4,1,4,0,8,1,0,0,93 -"1571",0,1,1,48,1,1,4,1,5,1,0,0,93 -"1572",0,1,1,45,4,1,4,1,10,1,0,0,93 -"1573",1,1,1,69,3,1,4,0,10,1,0,0,93 -"1574",0,1,1,71,2,1,4,0,13,1,1,0,94 -"1575",0,1,0,63,3,1,4,1,12,1,1,0,94 -"1576",0,0,0,61,5,1,4,0,9,1,0,0,94 -"1577",0,1,1,59,3,1,4,0,8,1,0,0,94 -"1578",0,1,0,50,1,1,4,1,12,1,1,0,94 -"1579",0,1,1,57,2,1,4,1,11,1,0,0,94 -"1580",0,1,1,67,3,1,4,0,10,1,1,0,94 -"1581",0,1,1,66,2,1,4,0,12,1,1,0,94 -"1582",0,1,1,82,2,1,4,0,11,1,1,0,94 -"1583",0,1,1,61,3,1,4,0,10,1,1,0,94 -"1584",0,1,1,44,5,1,4,1,10,1,1,0,95 -"1585",0,1,0,48,5,1,4,0,13,1,0,0,95 -"1586",0,1,0,45,5,1,4,1,8,1,0,0,95 -"1587",0,1,0,56,2,1,4,0,7,1,0,0,95 -"1588",0,1,0,50,1,1,4,0,10,1,1,0,95 -"1589",0,1,1,66,2,1,4,1,12,1,1,0,95 -"1590",0,0,0,46,5,1,4,1,10,1,0,0,95 -"1591",0,1,0,55,1,1,4,0,4,1,0,0,95 -"1592",0,1,0,45,4,1,4,1,2,1,0,0,95 -"1593",0,1,0,68,4,1,4,0,12,1,1,0,95 -"1594",0,1,0,50,1,1,4,0,11,1,1,0,95 -"1595",0,1,1,48,3,1,4,0,10,1,1,0,95 -"1596",0,1,0,56,3,1,4,0,12,1,1,0,95 -"1597",0,1,1,46,2,1,3,0,4,6,0,0,96 -"1598",0,0,0,47,3,1,3,0,9,6,0,0,96 -"1599",0,1,0,58,4,1,3,1,11,6,0,0,96 -"1600",1,1,0,39,2,1,3,1,3,6,0,0,96 -"1601",1,1,1,25,2,1,3,1,2,6,0,0,96 -"1602",0,1,0,65,3,1,3,1,12,6,1,0,96 -"1603",1,0,0,35,5,1,3,0,10,6,0,0,96 -"1604",0,1,1,43,2,1,3,1,8,6,0,0,96 -"1605",0,1,0,38,3,1,3,1,9,6,1,0,96 -"1606",0,1,0,47,5,1,3,1,9,6,1,0,96 -"1607",0,1,0,50,5,1,3,0,8,6,0,0,96 -"1608",0,0,1,47,3,1,3,0,6,6,1,0,96 -"1609",0,1,1,61,1,1,3,1,9,6,1,0,96 -"1610",0,1,0,49,2,1,3,1,3,6,0,0,96 -"1611",0,1,1,54,3,1,3,1,10,6,0,0,96 -"1612",0,0,1,42,2,1,3,0,10,6,0,0,96 -"1613",0,0,1,48,4,1,3,1,5,6,0,0,96 -"1614",0,0,0,42,3,1,3,0,10,6,0,0,96 -"1615",1,1,0,45,3,1,3,1,9,6,0,0,96 -"1616",0,1,1,45,3,1,4,1,6,3,0,0,97 -"1617",0,1,0,58,3,1,4,1,11,3,1,0,97 -"1618",0,1,1,50,1,1,4,1,10,3,0,0,97 -"1619",0,0,0,59,2,1,4,1,9,3,0,0,97 -"1620",0,1,0,61,1,1,4,1,10,3,1,0,97 -"1621",0,1,1,57,2,1,4,1,9,3,0,0,97 -"1622",0,1,0,38,3,1,4,0,8,3,0,0,97 -"1623",0,0,1,38,4,1,4,1,10,3,1,0,97 -"1624",0,1,1,28,2,1,4,0,10,3,0,0,97 -"1625",0,1,0,49,2,1,4,1,9,3,0,0,97 -"1626",0,1,1,59,1,1,4,0,8,3,1,0,97 -"1627",0,1,1,46,1,1,4,1,7,3,0,0,97 -"1628",0,0,1,39,2,1,4,1,3,3,0,0,97 -"1629",0,1,0,65,4,1,4,0,12,3,1,0,97 -"1630",0,1,1,67,5,1,4,0,7,3,1,0,97 -"1631",0,1,1,52,2,1,4,1,11,3,1,0,97 -"1632",0,1,1,58,4,1,4,1,10,3,0,0,97 -"1633",0,1,0,58,1,1,4,1,12,3,1,0,97 -"1634",1,1,0,48,2,1,4,1,10,3,0,0,97 -"1635",0,0,1,48,5,1,4,1,7,3,0,0,97 -"1636",1,0,1,48,5,1,4,1,8,3,0,0,97 -"1637",0,0,1,59,2,1,4,1,9,3,1,0,97 -"1638",1,1,1,49,2,1,4,0,7,3,0,0,97 -"1639",0,1,0,25,4,1,4,1,5,3,1,0,97 -"1640",0,1,0,60,1,1,4,1,10,3,1,0,97 -"1641",0,1,1,52,2,1,4,1,6,3,0,0,97 -"1642",0,1,0,63,2,1,4,1,9,3,0,0,97 -"1643",0,1,1,37,2,1,4,1,9,3,0,0,97 -"1644",0,1,0,40,5,1,4,0,10,3,0,0,97 -"1645",0,1,0,42,3,1,4,1,8,1,0,0,98 -"1646",0,1,1,58,3,1,4,1,13,1,1,0,98 -"1647",0,1,1,63,4,1,4,0,3,1,1,0,98 -"1648",0,1,0,48,1,1,4,0,8,1,0,0,98 -"1649",0,1,0,57,3,1,4,0,11,1,1,0,98 -"1650",0,1,0,57,1,1,4,0,12,1,1,0,98 -"1651",0,1,0,33,1,1,4,0,9,1,1,0,98 -"1652",0,0,1,51,3,1,4,0,13,1,1,0,98 -"1653",0,1,1,56,3,1,4,0,7,1,0,0,98 -"1654",0,0,0,50,2,1,4,1,11,1,1,0,98 -"1655",0,1,1,62,1,1,4,1,12,1,1,0,98 -"1656",0,0,1,56,3,1,4,0,10,1,1,0,98 -"1657",0,0,0,66,3,1,4,0,8,1,1,0,98 -"1658",0,1,0,55,3,1,4,0,8,1,0,0,98 -"1659",0,1,1,58,2,1,4,1,13,1,1,0,98 -"1660",1,1,0,80,2,1,4,0,12,1,1,0,98 -"1661",1,0,1,60,4,1,4,0,11,1,0,0,98 -"1662",0,1,0,53,3,1,4,1,12,1,1,0,98 -"1663",0,0,0,52,3,1,4,0,12,1,1,0,98 -"1664",1,1,1,62,3,1,4,0,12,1,1,0,98 -"1665",0,0,1,56,4,1,4,1,12,1,0,0,98 -"1666",0,1,0,51,2,1,4,1,12,1,0,0,98 -"1667",0,1,0,60,1,1,4,0,11,1,1,0,98 -"1668",0,1,1,52,1,1,4,0,11,5,0,0,99 -"1669",0,1,1,40,3,1,4,1,7,5,0,0,99 -"1670",0,1,0,61,2,1,4,1,8,5,0,0,99 -"1671",0,1,0,68,2,1,4,0,10,5,1,0,99 -"1672",0,1,1,50,3,1,4,1,8,5,0,0,99 -"1673",0,1,0,55,1,1,4,1,9,5,1,0,99 -"1674",0,1,0,59,3,1,4,1,9,5,1,0,99 -"1675",0,1,0,45,2,1,4,1,9,5,0,0,99 -"1676",0,1,1,51,1,1,4,1,10,5,1,0,99 -"1677",0,0,0,58,4,1,4,1,10,5,0,0,99 -"1678",0,1,1,41,4,1,4,1,4,5,1,0,99 -"1679",0,1,0,41,1,1,4,1,5,5,0,0,99 -"1680",0,1,1,49,3,1,4,1,10,5,1,0,99 -"1681",0,1,1,51,2,1,4,0,10,5,1,0,99 -"1682",1,1,0,48,1,1,4,0,12,5,0,0,99 -"1683",0,1,1,55,1,1,4,1,7,5,0,0,99 -"1684",0,1,0,53,3,1,4,0,8,5,1,0,99 -"1685",0,1,0,62,2,1,4,1,12,5,1,0,99 -"1686",1,1,1,52,1,1,4,1,10,5,0,0,99 -"1687",0,1,1,43,2,1,4,1,10,5,0,0,99 -"1688",0,1,1,58,1,1,4,1,7,5,1,0,99 -"1689",0,1,0,42,2,1,4,1,10,5,0,0,99 -"1690",0,1,0,49,4,1,4,0,9,5,1,0,99 -"1691",1,0,0,46,2,1,4,0,8,5,0,0,99 -"1692",0,1,0,55,2,1,4,1,7,5,0,0,99 -"1693",0,1,0,50,1,1,5,1,6,4,1,0,100 -"1694",0,1,1,65,3,1,5,0,10,4,1,0,100 -"1695",1,1,1,54,2,1,5,0,5,4,1,0,100 -"1696",0,1,1,50,3,1,5,0,8,4,0,0,100 -"1697",0,1,1,58,3,1,5,0,14,4,1,0,100 -"1698",0,1,0,62,1,1,5,0,10,4,1,0,100 -"1699",0,1,0,58,1,1,5,0,10,4,1,0,100 -"1700",0,1,1,69,1,1,5,0,9,4,0,0,100 -"1701",0,1,0,50,2,1,5,1,10,4,1,0,100 -"1702",0,1,0,66,2,1,5,1,12,4,1,0,100 -"1703",0,1,1,49,5,1,5,1,9,4,0,0,100 -"1704",0,1,0,72,1,1,5,0,9,4,0,0,100 -"1705",0,1,1,59,3,1,5,0,10,4,0,0,100 -"1706",0,0,0,48,3,1,5,1,12,4,0,0,100 -"1707",1,1,1,63,1,1,5,0,9,4,1,0,100 -"1708",0,1,0,59,1,1,5,0,11,4,1,0,100 -"1709",0,1,0,55,1,1,5,0,6,4,1,0,100 -"1710",0,1,0,60,2,1,5,1,13,4,1,0,100 -"1711",1,1,0,57,3,1,5,0,8,4,0,0,100 -"1712",0,1,1,44,4,1,5,0,9,4,0,0,100 -"1713",0,0,1,53,2,1,5,0,10,4,1,0,100 -"1714",0,1,0,44,1,1,4,0,9,6,0,0,101 -"1715",1,1,0,38,1,1,4,0,6,6,0,0,101 -"1716",1,1,0,50,2,1,4,0,9,6,0,0,101 -"1717",0,1,0,41,2,1,4,0,10,6,0,0,101 -"1718",1,0,1,43,5,1,4,0,7,6,0,0,101 -"1719",0,1,1,55,2,1,4,0,7,1,0,0,102 -"1720",0,1,0,62,4,1,4,1,9,1,0,0,102 -"1721",0,1,1,62,3,1,4,1,11,1,1,0,102 -"1722",0,1,1,60,2,1,4,1,11,1,1,0,102 -"1723",0,1,1,61,2,1,4,0,9,1,0,0,102 -"1724",0,1,1,51,1,1,4,1,9,1,1,0,102 -"1725",0,1,0,64,1,1,4,0,10,1,0,0,102 -"1726",0,1,0,53,2,1,4,1,11,1,0,0,102 -"1727",0,1,1,46,1,1,4,1,8,1,1,0,102 -"1728",1,1,1,38,1,1,4,1,7,1,0,0,102 -"1729",0,1,1,66,1,1,4,1,8,1,0,0,102 -"1730",0,1,1,62,2,1,4,1,10,1,1,0,102 -"1731",0,1,0,51,2,1,4,1,10,1,0,0,102 -"1732",0,1,0,64,3,1,4,1,12,1,1,0,102 -"1733",0,1,0,66,1,1,4,1,11,1,0,0,102 -"1734",0,1,0,45,1,1,4,0,10,1,0,0,102 -"1735",0,1,1,45,2,1,4,0,9,1,1,0,102 -"1736",1,1,1,59,2,1,4,0,11,1,0,0,102 -"1737",1,1,0,71,1,1,4,0,10,1,1,0,102 -"1738",1,1,1,46,1,1,4,0,12,1,0,0,102 -"1739",0,1,0,53,3,1,4,0,16,1,0,0,102 -"1740",1,1,1,29,5,1,4,0,9,1,0,0,102 -"1741",1,0,0,46,1,1,4,0,11,1,1,0,102 -"1742",0,1,0,60,1,1,4,0,9,1,0,0,102 -"1743",1,1,0,40,2,1,4,0,8,1,0,0,102 -"1744",0,0,1,54,3,1,4,0,6,1,0,0,102 -"1745",0,1,1,61,3,1,4,1,8,1,0,0,102 -"1746",0,1,0,62,3,1,4,0,9,1,0,0,102 -"1747",1,1,0,51,1,1,4,0,11,1,1,0,102 -"1748",0,1,0,53,2,1,5,0,11,1,1,0,103 -"1749",0,1,0,82,2,1,5,0,10,1,1,0,103 -"1750",0,0,0,63,4,1,5,1,11,1,0,0,103 -"1751",0,1,1,50,3,1,5,1,12,1,1,0,103 -"1752",0,1,0,54,2,1,5,1,7,1,1,0,103 -"1753",0,1,0,70,1,1,5,0,1,1,0,0,103 -"1754",0,1,0,64,3,1,5,1,12,1,1,0,103 -"1755",0,1,0,60,1,1,5,1,10,1,1,0,103 -"1756",0,1,0,65,3,1,5,1,10,1,1,0,103 -"1757",0,1,0,38,5,1,5,0,5,1,0,0,103 -"1758",0,0,0,63,4,1,5,1,12,1,1,0,103 -"1759",0,0,1,56,3,1,5,1,10,1,0,0,103 -"1760",0,0,1,54,3,1,5,1,8,1,1,0,103 -"1761",1,1,0,78,2,1,5,0,9,1,1,0,103 -"1762",0,1,0,63,3,1,5,0,7,1,0,0,103 -"1763",0,1,1,62,2,1,5,1,12,1,1,0,103 -"1764",1,0,0,50,5,1,5,0,9,1,1,0,103 -"1765",0,1,0,64,1,1,5,1,9,1,0,0,103 -"1766",0,1,1,62,2,1,5,1,13,1,1,0,103 -"1767",0,1,0,59,3,1,5,1,10,1,1,0,103 -"1768",0,1,0,73,2,1,5,1,9,1,1,0,103 -"1769",0,1,1,48,2,1,4,1,10,2,0,0,104 -"1770",0,1,0,57,2,1,4,1,9,2,0,0,104 -"1771",1,1,0,43,3,1,4,0,11,2,0,0,104 -"1772",0,1,1,45,4,1,4,0,2,2,0,0,104 -"1773",0,1,0,55,1,1,4,1,10,2,1,0,104 -"1774",0,1,0,61,1,1,4,0,10,2,1,0,104 -"1775",0,1,0,64,1,1,4,0,11,2,1,0,104 -"1776",0,0,1,58,5,1,4,0,13,2,1,0,104 -"1777",0,1,1,50,2,1,4,1,8,2,0,0,104 -"1778",1,0,0,55,1,1,4,0,9,2,0,0,104 -"1779",0,1,0,45,1,1,4,1,10,2,1,0,104 -"1780",0,1,1,60,1,1,4,1,6,2,0,0,104 -"1781",0,1,1,57,2,1,4,1,12,2,1,0,104 -"1782",0,1,0,46,1,1,4,1,8,2,1,0,104 -"1783",0,1,1,52,3,1,4,0,10,2,0,0,104 -"1784",1,1,0,40,5,1,4,1,9,2,0,0,104 -"1785",0,1,1,39,2,1,4,1,8,2,0,0,104 -"1786",0,0,0,50,2,1,4,1,10,2,1,0,104 -"1787",0,1,0,50,2,1,4,1,6,2,0,0,104 -"1788",0,1,0,55,2,1,2,0,10,6,0,0,105 -"1789",0,1,0,38,4,1,2,0,8,6,1,0,105 -"1790",0,1,0,55,2,1,2,1,5,6,0,0,105 -"1791",0,1,0,35,2,1,2,0,7,6,0,0,105 -"1792",0,1,0,33,3,1,2,1,10,6,0,0,105 -"1793",1,0,1,26,2,1,2,1,10,6,0,0,105 -"1794",0,1,0,52,2,1,2,0,7,6,0,0,105 -"1795",0,1,1,54,3,1,2,0,7,6,0,0,105 -"1796",1,1,0,40,4,1,2,1,5,6,0,0,105 -"1797",0,1,0,33,5,1,5,1,9,3,1,0,106 -"1798",0,1,1,61,2,1,5,0,8,3,1,0,106 -"1799",1,1,0,33,3,1,5,0,9,3,1,0,106 -"1800",0,1,0,53,2,1,5,0,10,3,1,0,106 -"1801",0,1,0,49,1,1,5,0,8,3,0,0,106 -"1802",0,1,1,63,1,1,5,1,10,3,0,0,106 -"1803",0,1,1,48,1,1,5,1,9,3,0,0,106 -"1804",0,1,0,64,3,1,5,1,11,3,1,0,106 -"1805",0,1,1,42,3,1,5,1,9,3,0,0,106 -"1806",0,1,0,46,2,1,5,0,3,3,0,0,106 -"1807",0,1,0,73,2,1,5,0,8,3,0,0,106 -"1808",0,1,0,51,2,1,5,1,10,3,0,0,106 -"1809",0,1,1,56,2,1,5,0,12,3,1,0,106 -"1810",0,1,0,55,2,1,4,1,9,4,1,0,107 -"1811",0,1,0,51,2,1,4,0,10,4,1,0,107 -"1812",0,1,0,66,1,1,4,0,8,4,0,0,107 -"1813",0,0,1,56,3,1,4,0,9,4,0,0,107 -"1814",0,1,1,50,1,1,4,0,9,4,0,0,107 -"1815",0,1,0,49,3,1,4,0,11,4,1,0,107 -"1816",0,0,1,48,3,1,4,0,9,4,0,0,107 -"1817",0,1,0,54,1,1,4,0,3,4,0,0,107 -"1818",0,1,0,51,1,1,4,1,10,4,0,0,107 -"1819",0,1,0,54,2,1,4,1,10,4,0,0,107 -"1820",0,1,1,45,1,1,4,0,9,4,0,0,107 -"1821",0,1,0,48,1,1,4,0,8,4,0,0,107 -"1822",0,1,0,53,1,1,4,1,4,4,0,0,107 -"1823",0,1,0,46,2,1,4,0,11,4,1,0,107 -"1824",0,1,0,59,1,1,4,0,8,4,0,0,107 -"1825",0,1,0,48,3,1,4,1,4,4,0,0,107 -"1826",0,1,0,50,2,1,4,1,10,4,0,0,107 -"1827",0,1,1,50,2,1,4,1,9,4,0,0,107 -"1828",0,1,1,62,1,1,4,0,9,4,0,0,108 -"1829",0,1,1,40,3,1,4,0,9,4,1,0,108 -"1830",0,1,0,44,2,1,4,1,5,4,0,0,108 -"1831",0,1,1,58,3,1,4,1,11,4,0,0,108 -"1832",0,1,1,65,2,1,4,1,10,4,0,0,108 -"1833",0,1,0,66,1,1,4,0,12,4,0,0,108 -"1834",1,1,0,57,2,1,4,1,10,4,0,0,108 -"1835",0,0,0,50,2,1,4,0,9,4,0,0,108 -"1836",0,1,0,51,2,1,4,0,9,4,1,0,108 -"1837",0,1,0,54,1,1,4,1,10,4,1,0,108 -"1838",0,1,0,47,2,1,4,1,10,4,0,0,108 -"1839",0,1,1,34,3,1,4,1,10,4,1,0,108 -"1840",0,1,1,38,2,1,4,1,4,4,0,0,108 -"1841",0,1,0,41,1,1,4,0,10,4,1,0,108 -"1842",0,1,0,54,3,1,4,1,12,4,0,0,108 -"1843",0,1,1,49,2,1,4,1,11,4,1,0,108 -"1844",0,1,1,58,5,1,4,0,12,4,1,0,108 -"1845",0,1,0,34,2,1,4,0,11,4,1,0,108 -"1846",0,1,0,47,1,1,4,0,11,4,0,0,108 -"1847",0,1,0,48,2,1,4,0,11,4,1,0,108 -"1848",1,1,0,26,2,1,4,1,8,4,0,0,108 -"1849",0,1,0,53,3,1,4,0,10,2,0,0,109 -"1850",0,1,1,58,2,1,4,0,12,2,1,0,109 -"1851",0,0,1,57,2,1,4,0,9,2,0,0,109 -"1852",0,1,0,56,2,1,4,1,8,2,1,0,109 -"1853",0,1,1,61,3,1,4,0,7,2,0,0,109 -"1854",0,0,1,60,2,1,4,0,12,2,0,0,109 -"1855",0,1,0,51,2,1,4,0,11,2,0,0,109 -"1856",1,1,0,40,4,1,4,0,9,2,0,0,109 -"1857",0,1,1,60,2,1,4,1,12,2,1,0,109 -"1858",0,1,1,49,2,1,4,0,9,2,0,0,109 -"1859",0,1,1,60,3,1,4,1,8,2,1,0,109 -"1860",0,1,0,29,2,1,4,1,13,2,1,0,109 -"1861",0,1,0,51,1,1,4,0,9,2,0,0,109 -"1862",0,1,1,70,2,1,4,1,12,2,1,0,109 -"1863",0,1,1,43,3,1,4,1,8,2,1,0,109 -"1864",1,0,0,19,5,1,5,0,11,1,1,0,110 -"1865",0,1,0,70,2,1,5,1,12,1,1,0,110 -"1866",0,1,0,48,2,1,5,1,9,1,1,0,110 -"1867",0,1,0,45,2,1,5,1,13,1,1,0,110 -"1868",0,1,1,55,1,1,5,1,9,1,0,0,110 -"1869",0,1,0,56,1,1,5,1,11,1,1,0,110 -"1870",0,1,1,61,2,1,5,1,10,1,1,0,110 -"1871",0,0,1,35,1,1,5,0,7,1,0,0,110 -"1872",0,1,1,55,2,1,5,0,12,1,1,0,110 -"1873",0,1,0,64,2,1,5,0,12,1,1,0,110 -"1874",0,1,0,69,2,1,5,1,13,1,1,0,110 -"1875",0,1,0,60,2,1,5,1,12,1,1,0,110 -"1876",0,1,1,48,3,1,5,1,11,1,1,0,110 -"1877",0,1,1,46,3,1,5,1,9,1,1,0,110 -"1878",0,1,1,41,2,1,5,0,8,1,1,0,110 -"1879",1,1,1,60,2,1,5,0,11,1,1,0,110 -"1880",0,0,0,57,1,1,5,0,10,1,1,0,110 -"1881",0,1,0,64,1,1,5,0,8,1,1,0,110 -"1882",0,1,0,54,1,1,5,1,7,2,1,0,111 -"1883",0,1,0,50,1,1,5,1,12,2,1,0,111 -"1884",0,1,0,66,1,1,5,1,8,2,1,0,111 -"1885",0,1,0,67,1,1,5,0,8,2,1,0,111 -"1886",1,1,0,57,1,1,5,1,7,2,0,0,111 -"1887",0,1,0,53,1,1,5,1,10,2,0,0,111 -"1888",0,1,0,41,1,1,5,0,6,2,1,0,111 -"1889",0,1,0,56,1,0,3,0,10,1,1,1,112 -"1890",0,1,0,50,1,0,3,0,1,1,1,1,112 -"1891",0,1,0,72,1,0,3,1,12,1,0,1,112 -"1892",0,1,0,67,2,0,3,0,12,1,1,1,112 -"1893",0,1,1,60,1,0,3,0,11,1,0,1,112 -"1894",0,1,1,66,1,0,3,0,13,1,0,1,112 -"1895",0,1,0,64,1,0,3,0,11,1,0,1,112 -"1896",0,1,0,52,1,0,3,0,12,1,1,1,112 -"1897",0,1,0,62,1,0,3,0,11,1,1,1,112 -"1898",0,1,1,47,2,0,3,0,9,1,0,1,112 -"1899",0,1,0,65,3,0,3,0,10,1,1,1,112 -"1900",0,1,0,51,1,0,3,0,12,1,1,1,112 -"1901",0,1,0,49,1,0,3,0,12,1,0,1,112 -"1902",0,1,0,53,2,0,3,0,12,1,1,1,112 -"1903",0,1,0,52,1,1,3,0,8,4,1,0,113 -"1904",0,1,0,48,1,1,3,1,10,4,0,0,113 -"1905",0,1,0,49,1,1,3,0,10,4,0,0,113 -"1906",0,1,0,63,2,1,3,0,12,4,1,0,113 -"1907",0,1,0,62,2,1,3,1,9,4,0,0,113 -"1908",0,1,1,65,2,1,3,0,11,4,1,0,113 -"1909",0,1,0,43,1,1,3,1,8,4,1,0,113 -"1910",0,1,0,44,2,1,3,1,9,4,1,0,113 -"1911",1,0,1,45,5,1,3,0,10,4,0,0,113 -"1912",0,1,0,46,2,1,3,1,8,4,1,0,113 -"1913",1,0,1,55,3,1,3,0,7,4,0,0,113 -"1914",0,1,0,54,4,1,3,1,11,4,1,0,113 -"1915",0,1,1,34,3,1,4,1,8,6,0,0,114 -"1916",0,1,0,57,2,1,4,1,8,6,1,0,114 -"1917",0,1,1,50,2,1,4,1,8,6,0,0,114 -"1918",0,1,0,28,3,1,4,0,3,6,0,0,114 -"1919",0,1,0,48,3,1,4,1,9,6,0,0,114 -"1920",0,1,0,66,1,1,4,0,4,6,0,0,114 -"1921",0,1,1,60,1,1,4,0,8,6,0,0,114 -"1922",0,1,0,59,2,1,4,1,9,6,0,0,114 -"1923",0,1,0,43,2,1,4,0,9,6,0,0,114 -"1924",1,1,0,44,2,1,4,0,8,6,0,0,114 -"1925",0,1,0,48,3,1,4,1,8,6,1,0,114 -"1926",0,1,1,43,2,1,4,1,9,6,0,0,114 -"1927",0,1,0,39,4,1,3,1,6,5,0,0,115 -"1928",0,1,1,38,1,1,3,0,9,5,0,0,115 -"1929",0,1,0,55,3,1,3,0,9,5,0,0,115 -"1930",1,1,1,43,1,1,3,0,7,5,0,0,115 -"1931",0,1,1,43,5,1,3,0,8,5,1,0,115 -"1932",0,1,1,45,2,1,3,0,11,5,0,0,115 -"1933",0,1,0,40,1,1,3,1,7,5,0,0,115 -"1934",1,0,0,45,5,1,3,0,10,5,0,0,115 -"1935",0,0,1,56,3,1,3,1,9,1,0,0,116 -"1936",0,1,0,53,3,1,3,0,8,1,0,0,116 -"1937",0,1,1,56,2,1,3,1,10,1,0,0,116 -"1938",0,1,1,51,2,1,3,1,10,1,1,0,116 -"1939",0,1,0,46,2,1,3,0,7,1,0,0,116 -"1940",0,1,0,55,1,1,3,1,10,1,0,0,116 -"1941",0,1,0,54,1,1,3,1,8,1,1,0,116 -"1942",0,0,1,57,1,1,3,1,9,1,1,0,116 -"1943",0,1,0,60,1,1,3,1,9,1,1,0,116 -"1944",0,1,0,57,2,1,3,0,9,1,1,0,116 -"1945",0,1,0,64,2,1,3,0,10,1,1,0,116 -"1946",0,1,1,60,2,1,3,1,12,1,1,0,116 -"1947",0,1,1,44,3,1,4,1,7,1,0,0,117 -"1948",0,1,1,46,3,1,4,0,9,1,1,0,117 -"1949",0,1,0,39,2,1,4,1,10,1,0,0,117 -"1950",0,1,0,61,1,1,4,1,10,1,1,0,117 -"1951",0,1,0,65,2,1,4,1,12,1,1,0,117 -"1952",1,1,1,42,5,1,4,0,8,1,0,0,117 -"1953",0,1,1,56,1,1,4,1,8,1,1,0,117 -"1954",0,1,0,65,2,1,4,0,8,1,1,0,117 -"1955",0,1,0,52,2,1,4,1,11,1,0,0,117 -"1956",0,1,0,47,2,1,4,1,9,1,1,0,117 -"1957",0,1,1,53,1,1,4,1,10,1,1,0,117 -"1958",0,1,0,60,1,1,4,0,9,1,0,0,117 -"1959",0,1,0,58,1,0,5,0,11,1,1,1,118 -"1960",0,1,0,40,5,0,5,0,3,1,1,1,118 -"1961",0,1,0,56,4,0,5,0,7,1,0,1,118 -"1962",0,1,1,44,3,0,5,0,9,1,0,1,118 -"1963",0,1,0,53,1,0,5,1,9,1,0,1,118 -"1964",0,0,1,53,5,0,5,0,9,1,0,1,118 -"1965",1,0,0,60,5,0,5,0,13,1,1,1,118 -"1966",0,1,0,50,1,0,5,1,11,1,1,1,118 -"1967",0,1,0,48,3,0,5,0,9,1,1,1,118 -"1968",0,1,0,56,2,0,5,0,10,1,1,1,118 -"1969",0,1,0,48,3,0,5,1,9,1,0,1,118 -"1970",0,0,1,45,2,1,3,1,9,5,0,0,119 -"1971",0,0,0,50,4,1,3,0,10,5,1,0,119 -"1972",0,0,0,37,2,1,3,0,11,5,1,0,119 -"1973",0,1,0,51,3,1,3,0,9,5,0,0,119 -"1974",1,1,0,59,2,1,3,0,9,5,1,0,119 -"1975",0,1,1,47,1,1,3,1,6,5,0,0,119 -"1976",0,1,0,55,3,1,3,1,12,5,1,0,119 -"1977",0,1,1,49,3,1,3,1,7,5,1,0,119 -"1978",0,0,1,61,3,1,3,1,12,5,1,0,119 -"1979",0,1,0,27,2,1,3,0,9,5,0,0,119 -"1980",1,1,1,46,3,1,3,0,7,5,1,0,119 -"1981",1,0,1,32,5,1,3,1,6,5,0,0,119 -"1982",0,1,0,51,1,1,3,0,10,5,1,0,119 -"1983",0,1,0,61,1,1,3,1,10,5,1,0,119 -"1984",0,1,1,59,5,1,5,1,10,4,1,0,120 -"1985",0,1,1,50,5,1,5,1,9,4,1,0,120 -"1986",1,1,1,63,2,1,5,0,11,4,1,0,120 -"1987",0,1,1,44,2,1,5,1,9,4,0,0,120 -"1988",0,1,0,53,3,1,5,0,8,4,0,0,120 -"1989",0,1,1,63,1,1,5,1,7,4,1,0,120 -"1990",0,1,1,56,3,1,5,1,10,4,1,0,120 -"1991",0,1,1,59,3,1,5,1,10,4,0,0,120 -"1992",0,1,0,45,3,1,5,1,8,4,0,0,120 -"1993",0,1,1,49,2,1,5,1,8,4,0,0,120 -"1994",1,1,0,49,2,1,5,0,13,4,1,0,120 -"1995",0,1,1,39,1,1,5,1,9,4,0,0,120 -"1996",1,1,1,50,3,1,5,0,7,4,1,0,120 -"1997",0,1,1,58,3,1,5,1,9,4,1,0,120 -"1998",0,1,0,55,1,1,5,1,9,4,0,0,120 -"1999",0,1,1,49,3,1,5,1,11,4,1,0,120 -"2000",0,1,1,47,4,1,5,1,10,4,0,0,120 -"2001",0,1,0,39,1,1,5,1,10,4,0,0,120 -"2002",0,1,1,43,2,1,5,1,13,4,0,0,120 -"2003",0,1,0,70,2,1,5,0,12,4,1,0,120 -"2004",0,1,0,61,1,1,5,0,12,4,1,0,120 -"2005",0,1,1,51,1,1,5,0,9,4,1,0,120 -"2006",0,0,0,52,1,1,5,0,10,4,1,0,120 -"2007",0,1,1,46,3,1,5,0,10,4,1,0,120 -"2008",0,1,1,39,2,1,5,0,10,4,0,0,120 -"2009",0,1,1,53,5,1,5,0,10,4,0,0,120 -"2010",0,1,1,49,3,1,2,0,10,3,1,0,121 -"2011",0,0,1,24,5,1,2,0,10,3,0,0,121 -"2012",0,1,0,45,3,1,2,0,8,3,0,0,121 -"2013",0,0,1,43,4,1,2,0,10,3,1,0,121 -"2014",0,1,0,60,3,1,2,1,12,3,0,0,121 -"2015",0,1,1,59,2,1,2,1,11,3,1,0,121 -"2016",0,1,0,43,2,1,2,0,7,3,0,0,121 -"2017",0,1,0,28,2,1,2,0,10,3,0,0,121 -"2018",0,1,0,44,4,1,2,1,9,3,0,0,121 -"2019",0,1,0,54,3,1,2,0,10,3,1,0,121 -"2020",0,1,0,50,2,1,2,1,6,3,0,0,121 -"2021",0,1,0,46,3,1,2,1,9,3,0,0,121 -"2022",0,1,0,39,4,1,2,0,7,3,1,0,121 -"2023",0,1,0,65,1,1,2,0,9,3,1,0,121 -"2024",1,1,1,63,1,1,2,0,10,3,1,0,121 -"2025",0,1,0,42,3,1,2,1,9,3,0,0,121 -"2026",0,1,0,66,1,1,2,1,14,3,1,0,121 -"2027",0,1,0,55,1,1,2,1,9,3,1,0,121 -"2028",0,1,0,49,2,1,2,1,9,3,0,0,121 -"2029",0,1,0,42,2,1,2,1,9,3,1,0,121 -"2030",0,1,0,45,2,1,2,0,10,3,0,0,121 -"2031",0,1,1,66,1,1,2,1,10,3,1,0,121 -"2032",0,1,0,53,1,1,4,0,11,7,1,0,122 -"2033",0,1,0,43,2,1,4,0,8,7,0,0,122 -"2034",0,1,0,55,3,1,4,1,9,7,0,0,122 -"2035",0,1,1,47,1,1,4,1,8,7,0,0,122 -"2036",1,1,0,36,3,1,4,0,4,7,0,0,122 -"2037",0,1,0,40,2,1,4,1,5,7,0,0,122 -"2038",0,1,1,48,1,1,4,0,2,7,0,0,122 -"2039",0,1,0,43,1,1,4,1,5,7,0,0,122 -"2040",0,1,0,44,2,1,4,0,5,7,0,0,122 -"2041",1,1,0,30,3,1,4,0,7,7,0,0,122 -"2042",0,1,0,53,5,1,5,0,9,4,0,0,123 -"2043",0,1,0,40,5,1,5,1,10,4,1,0,123 -"2044",0,1,0,62,5,1,5,1,9,4,1,0,123 -"2045",0,1,0,38,2,1,5,1,9,4,0,0,123 -"2046",0,0,0,47,1,1,5,0,9,4,0,0,123 -"2047",1,1,0,38,3,1,5,0,6,4,0,0,123 -"2048",1,0,0,51,2,1,5,0,11,4,1,0,123 -"2049",0,1,0,49,1,1,5,1,2,4,0,0,123 -"2050",0,1,1,51,2,1,5,0,8,4,0,0,123 -"2051",1,1,0,39,4,1,5,1,10,4,0,0,123 -"2052",0,0,0,47,3,1,5,0,8,4,0,0,123 -"2053",0,1,0,40,2,1,5,1,9,4,0,0,123 -"2054",0,1,0,45,2,1,5,1,11,4,0,0,123 -"2055",0,0,0,53,1,1,5,1,5,4,0,0,123 -"2056",0,1,1,52,2,1,5,1,9,4,0,0,123 -"2057",0,1,1,57,1,1,5,1,8,4,0,0,123 -"2058",1,0,0,32,2,1,5,0,3,4,0,0,123 -"2059",1,1,0,44,1,1,5,0,6,4,0,0,123 -"2060",0,1,0,46,2,1,5,1,5,4,0,0,123 -"2061",0,1,0,41,3,1,5,1,6,4,0,0,123 -"2062",0,1,1,51,1,1,3,0,10,4,1,0,124 -"2063",0,1,0,70,2,1,3,1,10,4,0,0,124 -"2064",0,0,1,45,3,1,3,1,6,4,0,0,124 -"2065",1,0,0,61,5,1,3,0,8,4,0,0,124 -"2066",0,1,0,37,2,1,3,1,7,4,0,0,124 -"2067",0,1,0,37,3,1,3,1,4,4,0,0,124 -"2068",0,1,0,51,2,1,3,0,10,4,1,0,124 -"2069",0,1,0,37,2,1,3,0,7,4,0,0,124 -"2070",0,1,0,57,2,1,3,0,9,4,0,0,124 -"2071",1,1,1,51,3,1,3,0,9,4,0,0,124 -"2072",0,1,0,59,3,1,3,0,11,4,1,0,124 -"2073",0,1,0,59,3,1,3,1,12,4,1,0,124 -"2074",0,1,0,47,2,1,3,0,11,4,1,0,124 -"2075",0,1,0,50,1,1,3,0,7,4,0,0,124 -"2076",0,1,1,59,1,1,3,1,11,4,1,0,124 -"2077",0,1,1,36,2,1,3,0,10,4,0,0,124 -"2078",0,1,0,57,2,1,3,0,10,4,0,0,124 -"2079",0,1,0,53,2,1,3,1,10,4,0,0,124 -"2080",1,1,0,40,2,1,3,0,9,4,1,0,124 -"2081",0,1,0,53,3,1,3,0,6,4,0,0,124 -"2082",0,0,1,25,3,1,4,1,8,5,0,0,125 -"2083",0,1,0,42,2,1,4,0,10,5,0,0,125 -"2084",1,1,0,53,3,1,4,0,9,5,0,0,125 -"2085",0,1,0,36,3,1,4,1,11,5,1,0,125 -"2086",0,1,0,46,5,1,4,0,5,5,0,0,125 -"2087",0,1,0,50,2,1,4,0,8,5,1,0,125 -"2088",0,1,1,49,1,1,4,1,9,5,1,0,125 -"2089",0,1,1,59,2,1,4,1,8,5,0,0,125 -"2090",0,1,0,48,1,1,4,1,8,5,0,0,125 -"2091",0,1,0,44,3,1,4,1,6,5,1,0,125 -"2092",0,1,0,51,2,1,4,1,11,5,0,0,125 -"2093",0,1,0,63,1,1,4,1,9,5,0,0,125 -"2094",0,1,1,45,1,1,5,0,13,1,1,0,126 -"2095",0,1,0,52,3,1,5,0,12,1,1,0,126 -"2096",0,1,0,60,2,1,5,1,12,1,1,0,126 -"2097",0,1,1,53,5,1,5,0,12,1,1,0,126 -"2098",0,1,0,51,3,1,5,1,12,1,1,0,126 -"2099",0,0,1,49,4,1,5,1,10,1,1,0,126 -"2100",0,1,0,58,2,1,5,1,12,1,1,0,126 -"2101",1,0,0,49,5,1,5,0,12,1,1,0,126 -"2102",1,1,0,41,4,1,5,1,9,1,1,0,126 -"2103",0,1,1,60,1,1,5,0,11,1,1,0,126 -"2104",0,1,0,62,2,1,5,1,9,1,1,0,126 -"2105",0,1,0,61,2,1,5,1,11,1,1,0,126 -"2106",0,1,1,64,2,1,5,0,12,1,1,0,126 -"2107",1,1,1,70,2,1,5,0,12,1,1,0,126 -"2108",0,1,0,64,2,1,5,0,9,1,1,0,126 -"2109",0,1,0,59,1,1,5,1,11,1,1,0,126 -"2110",1,1,1,52,3,1,5,0,10,1,1,0,126 -"2111",0,1,1,58,1,1,5,0,11,1,1,0,126 -"2112",0,1,0,57,3,1,5,0,13,1,1,0,126 -"2113",0,1,0,55,2,1,5,0,12,1,1,0,126 -"2114",1,1,1,64,3,1,5,0,10,1,1,0,126 -"2115",0,1,0,61,2,1,5,0,11,1,1,0,126 -"2116",0,1,0,57,2,1,5,0,4,1,1,0,126 -"2117",0,0,0,52,2,1,5,0,13,1,1,0,126 -"2118",0,1,1,59,3,1,4,1,10,3,1,0,127 -"2119",1,1,1,64,2,1,4,0,12,3,1,0,127 -"2120",0,1,1,60,2,1,4,0,13,3,0,0,127 -"2121",0,1,0,56,3,1,4,0,10,3,0,0,127 -"2122",0,1,1,74,2,1,4,0,8,3,0,0,127 -"2123",0,1,0,60,2,1,4,1,11,3,1,0,127 -"2124",0,1,1,71,2,1,4,1,11,3,1,0,127 -"2125",0,1,0,61,1,1,4,0,11,3,1,0,127 -"2126",0,1,0,60,1,1,4,1,13,3,1,0,127 -"2127",0,1,0,72,3,1,4,1,10,3,0,0,127 -"2128",0,1,0,76,2,1,4,1,11,3,1,0,127 -"2129",0,1,0,60,2,1,5,1,8,1,1,0,128 -"2130",1,1,1,61,2,1,5,0,11,1,1,0,128 -"2131",1,1,0,69,2,1,5,0,12,1,1,0,128 -"2132",0,1,0,60,2,1,5,1,9,1,1,0,128 -"2133",0,1,0,74,2,1,5,0,13,1,1,0,128 -"2134",0,1,0,61,4,1,5,0,10,1,1,0,128 -"2135",0,0,0,57,3,1,5,1,12,1,1,0,128 -"2136",0,0,0,55,3,1,5,0,13,1,1,0,128 -"2137",0,1,0,62,2,1,5,0,12,1,1,0,128 -"2138",0,1,1,69,2,1,5,1,12,1,1,0,128 -"2139",0,1,0,56,1,1,5,0,12,1,1,0,128 -"2140",0,1,0,49,3,1,5,1,12,1,1,0,128 -"2141",1,1,1,57,3,1,5,0,6,1,1,0,128 -"2142",0,0,0,69,2,1,5,0,12,1,1,0,128 -"2143",0,1,1,62,2,1,5,1,13,1,1,0,128 -"2144",0,1,0,74,2,1,5,1,13,1,1,0,128 -"2145",0,1,0,56,2,1,5,1,13,1,1,0,128 -"2146",0,1,1,70,3,1,5,0,13,1,1,0,128 -"2147",0,1,0,70,4,1,5,1,12,1,1,0,128 -"2148",0,1,1,65,1,1,5,0,12,1,1,0,128 -"2149",0,1,0,42,3,1,3,1,10,5,1,0,129 -"2150",1,0,1,55,1,1,3,0,8,5,1,0,129 -"2151",0,1,0,44,1,1,3,0,3,5,0,0,129 -"2152",0,1,0,61,1,1,3,1,10,5,1,0,129 -"2153",0,1,0,49,1,1,3,0,8,5,0,0,129 -"2154",0,1,0,65,2,1,3,1,9,5,0,0,129 -"2155",0,1,0,43,1,1,3,1,7,5,0,0,129 -"2156",0,1,0,43,2,1,3,1,7,5,0,0,129 -"2157",0,0,0,54,1,1,3,1,10,5,1,0,129 -"2158",0,1,0,48,1,1,3,0,6,5,0,0,129 -"2159",0,1,0,63,2,1,3,1,9,5,0,0,129 -"2160",0,1,0,63,1,1,3,1,10,5,0,0,129 -"2161",1,1,1,43,3,1,3,0,9,5,0,0,129 -"2162",0,1,1,52,1,1,3,1,9,5,0,0,129 -"2163",0,1,1,65,1,1,3,1,11,5,1,0,129 -"2164",0,1,1,46,1,1,3,1,9,5,0,0,129 -"2165",0,0,1,52,2,1,3,0,8,5,0,0,129 -"2166",0,1,0,30,1,1,3,1,5,5,0,0,129 -"2167",0,1,0,56,1,1,3,0,11,5,0,0,129 -"2168",0,1,0,51,3,1,3,1,9,5,0,0,129 -"2169",0,1,0,35,2,1,3,1,8,5,0,0,129 -"2170",1,0,0,47,5,1,3,0,8,5,0,0,129 -"2171",0,1,0,37,1,1,4,1,7,5,0,0,130 -"2172",0,1,0,32,3,1,4,1,8,5,1,0,130 -"2173",1,1,0,42,5,1,4,1,6,5,1,0,130 -"2174",1,0,1,30,3,1,4,0,12,5,1,0,130 -"2175",0,1,0,46,3,1,4,0,2,5,0,0,130 -"2176",0,1,1,36,2,1,4,1,6,5,0,0,130 -"2177",0,1,0,53,3,1,4,0,5,5,0,0,130 -"2178",0,0,1,41,5,1,4,1,5,5,0,0,130 -"2179",0,1,1,40,5,1,4,0,10,5,1,0,130 -"2180",0,0,0,46,4,1,4,0,10,5,0,0,130 -"2181",0,0,0,54,4,1,4,1,12,5,1,0,130 -"2182",0,1,0,63,3,1,4,0,8,5,0,0,130 -"2183",0,1,1,49,1,1,4,0,7,5,0,0,130 -"2184",0,1,0,46,4,1,4,0,9,5,1,0,130 -"2185",0,1,1,43,4,1,4,1,8,5,0,0,130 -"2186",0,1,0,50,2,1,4,0,8,5,0,0,130 -"2187",0,1,1,39,4,1,4,1,9,5,0,0,130 -"2188",0,1,1,44,2,1,4,0,3,5,0,0,130 -"2189",0,1,0,50,1,1,4,1,5,5,0,0,130 -"2190",0,0,1,50,4,1,4,1,9,5,1,0,130 -"2191",0,1,1,33,2,1,4,0,3,5,0,0,130 -"2192",0,1,1,48,1,1,4,0,7,5,0,0,130 -"2193",1,1,0,35,2,1,4,0,6,5,0,0,130 -"2194",0,1,0,41,2,1,4,1,2,5,1,0,130 -"2195",0,1,0,38,3,1,4,0,5,5,0,0,130 -"2196",0,1,0,56,2,1,4,0,10,5,1,0,130 -"2197",0,1,0,42,3,1,4,1,9,5,0,0,130 -"2198",0,1,1,58,2,0,4,1,12,1,1,1,131 -"2199",1,1,0,52,3,0,4,0,12,1,1,1,131 -"2200",0,1,0,70,1,0,4,0,11,1,0,1,131 -"2201",0,1,0,55,2,0,4,0,11,1,0,1,131 -"2202",0,1,0,62,1,0,4,0,5,1,0,1,131 -"2203",0,1,1,51,3,0,4,0,10,1,0,1,131 -"2204",0,1,1,53,1,0,4,0,11,1,0,1,131 -"2205",0,1,1,45,2,0,4,0,11,1,0,1,131 -"2206",0,1,1,53,2,0,4,0,11,1,0,1,131 -"2207",0,1,0,51,1,0,4,0,11,1,0,1,131 -"2208",0,1,0,54,3,0,4,0,12,1,1,1,131 -"2209",0,1,0,50,2,0,4,0,12,1,0,1,131 -"2210",0,1,0,33,1,0,4,0,9,1,1,1,131 -"2211",0,1,0,51,2,0,4,0,12,1,1,1,131 -"2212",0,0,0,54,2,0,4,1,11,1,0,1,131 -"2213",0,1,0,53,3,0,4,0,9,1,0,1,131 -"2214",0,1,0,36,2,0,4,0,8,1,1,1,131 -"2215",0,1,1,41,1,0,4,0,12,1,1,1,131 -"2216",0,1,1,45,1,0,4,0,11,1,0,1,131 -"2217",0,1,0,51,2,0,4,0,10,1,1,1,131 -"2218",0,1,1,52,1,0,4,0,12,1,1,1,131 -"2219",0,0,0,48,5,0,4,0,11,1,1,1,131 -"2220",0,1,0,72,3,0,4,1,9,1,1,1,131 -"2221",0,1,0,45,2,1,3,1,11,3,1,0,132 -"2222",0,1,1,63,1,1,3,1,8,3,0,0,132 -"2223",1,1,1,49,3,1,3,1,9,3,0,0,132 -"2224",1,1,1,47,1,1,3,1,10,3,0,0,132 -"2225",0,1,1,52,1,1,3,0,10,3,0,0,132 -"2226",0,1,0,66,1,1,3,0,11,3,0,0,132 -"2227",0,1,0,70,1,1,3,0,10,3,0,0,132 -"2228",1,0,1,36,1,1,3,0,9,3,0,0,132 -"2229",0,1,0,50,1,1,3,1,8,3,0,0,132 -"2230",0,1,1,66,3,1,3,0,9,3,1,0,132 -"2231",0,1,0,54,2,1,3,0,8,3,1,0,132 -"2232",0,0,0,43,3,1,3,0,12,3,1,0,132 -"2233",0,1,1,59,2,1,3,0,11,3,0,0,132 -"2234",1,1,1,48,2,1,3,0,10,3,1,0,132 -"2235",0,1,1,61,1,1,3,0,10,3,1,0,132 -"2236",0,1,1,51,1,1,3,1,10,3,0,0,132 -"2237",0,1,1,46,1,1,3,0,12,3,0,0,132 -"2238",1,1,1,43,2,1,3,0,6,3,0,0,132 -"2239",0,1,0,48,2,1,3,1,9,3,0,0,132 -"2240",0,1,0,56,1,1,4,1,9,5,0,0,133 -"2241",0,1,0,52,1,1,4,1,11,5,0,0,133 -"2242",1,1,0,32,2,1,4,0,6,5,0,0,133 -"2243",0,1,1,60,2,1,4,1,9,5,0,0,133 -"2244",0,1,0,41,1,1,4,1,7,5,0,0,133 -"2245",0,1,0,57,3,1,4,1,9,5,0,0,133 -"2246",0,0,0,38,3,1,4,0,8,5,0,0,133 -"2247",1,1,1,55,2,1,4,0,10,5,0,0,133 -"2248",0,1,0,48,2,1,4,1,9,5,0,0,133 -"2249",0,1,0,52,3,1,4,1,10,5,0,0,133 -"2250",1,1,1,37,3,1,4,1,9,5,0,0,133 -"2251",0,0,0,55,2,1,4,0,9,5,0,0,133 -"2252",1,1,0,48,2,1,4,1,6,5,0,0,133 -"2253",1,0,1,53,2,1,4,0,10,5,0,0,133 -"2254",0,1,0,57,3,1,4,0,10,5,1,0,133 -"2255",0,1,1,44,1,1,4,1,6,5,0,0,133 -"2256",0,1,1,47,3,1,4,1,5,5,0,0,133 -"2257",0,1,0,52,2,1,4,0,9,5,0,0,133 -"2258",0,1,0,54,2,1,4,1,12,5,1,0,133 -"2259",0,1,1,50,3,1,4,1,11,1,0,0,134 -"2260",0,1,1,60,2,1,4,0,12,1,0,0,134 -"2261",0,1,0,70,1,1,4,0,12,1,1,0,134 -"2262",0,1,1,46,3,1,4,0,8,1,1,0,134 -"2263",0,1,1,56,2,1,4,0,11,1,1,0,134 -"2264",1,0,1,53,4,1,4,0,8,1,1,0,134 -"2265",1,0,1,54,3,1,4,0,13,1,1,0,134 -"2266",0,1,1,63,3,1,4,1,10,1,0,0,134 -"2267",0,1,1,54,5,1,4,1,11,1,0,0,134 -"2268",0,1,0,72,1,1,4,0,10,1,1,0,134 -"2269",0,1,1,58,2,1,4,1,9,1,1,0,134 -"2270",0,1,0,52,2,1,4,1,10,1,1,0,134 -"2271",0,1,1,72,3,1,4,1,8,1,0,0,134 -"2272",0,0,0,44,2,1,4,0,10,1,0,1,135 -"2273",0,1,0,45,2,1,4,0,11,1,1,1,135 -"2274",0,1,1,55,1,1,4,1,10,1,0,1,135 -"2275",0,1,1,46,2,1,4,1,10,1,0,1,135 -"2276",0,1,1,51,2,1,4,1,9,1,0,1,135 -"2277",0,1,1,63,2,1,4,0,11,1,1,1,135 -"2278",0,1,1,67,3,1,4,0,12,1,1,1,135 -"2279",0,1,0,49,2,1,4,1,12,1,0,1,135 -"2280",1,1,1,48,4,1,4,1,9,1,0,1,135 -"2281",0,1,1,53,2,1,4,1,13,1,0,1,135 -"2282",0,1,1,48,1,1,4,0,13,1,0,1,135 -"2283",0,1,1,57,3,1,4,1,11,1,1,1,135 -"2284",0,1,0,61,1,1,4,0,8,1,0,1,135 -"2285",0,0,1,59,1,1,4,0,11,1,1,1,135 -"2286",0,1,0,49,2,1,4,1,10,1,1,1,135 -"2287",0,1,1,53,1,1,4,0,11,1,1,1,135 -"2288",0,1,1,49,3,1,4,0,13,1,1,1,135 -"2289",0,1,0,73,1,1,4,0,11,1,1,1,135 -"2290",0,0,1,54,3,1,4,1,9,4,0,0,136 -"2291",1,0,1,60,1,1,4,0,10,4,1,0,136 -"2292",1,1,1,47,1,1,4,0,5,4,0,0,136 -"2293",1,1,1,39,3,1,4,0,5,4,1,0,136 -"2294",0,1,1,47,3,1,4,1,9,4,0,0,136 -"2295",0,1,1,45,3,1,4,0,5,4,0,0,136 -"2296",0,1,0,52,2,1,4,0,9,4,1,0,136 -"2297",1,0,1,53,2,1,4,1,4,4,0,0,136 -"2298",0,0,0,63,2,1,4,0,8,4,0,0,136 -"2299",0,1,1,58,1,1,4,0,14,4,1,0,136 -"2300",0,1,0,38,2,1,4,1,3,4,0,0,136 -"2301",0,1,0,49,3,1,4,1,6,4,0,0,136 -"2302",0,1,1,52,3,1,4,0,12,4,1,0,136 -"2303",1,1,1,57,2,1,4,0,10,4,1,0,136 -"2304",1,1,1,51,1,1,4,0,9,4,1,0,136 -"2305",1,1,0,50,3,1,4,1,8,4,0,0,136 -"2306",0,1,1,38,2,1,4,1,4,4,0,0,136 -"2307",0,1,0,61,3,1,3,1,10,4,0,0,137 -"2308",0,1,0,43,3,1,3,1,8,4,0,0,137 -"2309",0,1,0,52,3,1,3,1,10,4,0,0,137 -"2310",0,1,0,49,3,1,3,1,13,4,1,0,137 -"2311",1,1,1,50,3,1,3,1,9,4,0,0,137 -"2312",0,1,0,44,3,1,3,1,8,4,0,0,137 -"2313",1,1,1,44,3,1,3,1,8,4,0,0,137 -"2314",0,1,0,48,2,1,3,0,6,4,0,0,137 -"2315",0,0,1,46,3,1,3,0,8,4,0,0,137 -"2316",0,1,1,44,2,1,3,1,9,4,0,0,137 -"2317",0,1,0,58,2,1,3,1,10,4,1,0,137 -"2318",0,1,1,48,3,1,3,0,9,4,0,0,137 -"2319",0,1,0,66,1,1,4,1,10,3,1,0,138 -"2320",1,1,0,55,5,1,4,0,10,3,0,0,138 -"2321",0,1,0,49,1,1,4,1,9,3,0,0,138 -"2322",0,1,0,52,1,1,4,1,11,3,0,0,138 -"2323",1,1,0,57,3,1,4,0,10,3,0,0,138 -"2324",0,1,1,61,4,1,4,1,9,3,0,0,138 -"2325",0,0,1,54,1,1,4,0,10,3,0,0,138 -"2326",0,1,1,54,2,1,4,1,8,3,0,0,138 -"2327",0,1,1,67,2,1,4,1,10,3,0,0,138 -"2328",0,1,0,54,1,1,4,1,12,3,0,0,138 -"2329",0,1,1,48,2,1,4,0,11,3,0,0,138 -"2330",1,0,1,50,5,1,4,0,11,3,1,0,138 -"2331",0,1,0,54,3,1,4,0,10,3,0,0,138 -"2332",0,1,1,61,1,1,4,1,10,3,0,0,138 -"2333",0,0,0,65,2,1,4,1,9,3,0,0,138 -"2334",1,0,1,62,3,1,4,0,10,3,1,0,138 -"2335",0,1,1,66,2,1,4,1,8,3,0,0,138 -"2336",0,1,1,53,1,1,4,1,10,3,1,0,138 -"2337",0,1,1,54,2,1,4,1,8,3,0,0,138 -"2338",0,0,0,55,1,1,4,0,6,3,0,0,138 -"2339",0,1,0,59,1,1,4,1,12,3,1,0,138 -"2340",0,0,1,62,1,1,4,0,11,3,1,0,138 -"2341",0,1,1,66,1,1,4,1,10,3,1,0,138 -"2342",0,1,0,61,2,1,4,1,10,3,1,0,138 -"2343",0,0,0,45,3,1,4,0,10,3,1,0,138 -"2344",0,0,0,29,5,1,4,0,9,3,1,0,138 -"2345",0,1,0,56,2,1,4,0,11,3,1,0,138 -"2346",0,1,0,49,1,1,4,0,7,6,0,0,139 -"2347",0,1,0,52,2,1,4,1,6,6,0,0,139 -"2348",0,1,0,55,1,1,4,1,10,6,1,0,139 -"2349",0,1,0,50,1,1,4,1,11,6,1,0,139 -"2350",0,1,1,51,3,1,4,1,8,6,0,0,139 -"2351",0,1,0,44,1,1,4,0,9,6,0,0,139 -"2352",0,1,0,50,2,1,4,1,8,6,0,0,139 -"2353",1,1,0,49,1,1,4,1,5,6,0,0,139 -"2354",0,1,1,48,2,1,4,1,11,6,1,0,139 -"2355",0,1,0,45,3,1,4,1,7,6,1,0,139 -"2356",0,1,0,68,1,1,4,0,11,6,0,0,139 -"2357",0,0,0,58,4,1,4,0,7,6,0,0,139 -"2358",0,1,1,47,2,1,4,0,11,6,0,0,139 -"2359",0,1,1,50,3,1,4,1,3,6,0,0,139 -"2360",0,1,1,56,2,1,4,0,10,3,1,0,140 -"2361",0,1,0,39,1,1,4,0,9,3,0,0,140 -"2362",0,1,1,66,2,1,4,0,13,3,1,0,140 -"2363",0,1,0,34,1,1,4,0,8,3,0,0,140 -"2364",0,1,0,43,1,1,4,0,10,3,1,0,140 -"2365",0,1,1,33,3,1,4,0,4,3,0,0,140 -"2366",0,1,1,49,2,1,4,1,5,3,0,0,140 -"2367",0,1,0,59,1,1,4,1,9,3,0,0,140 -"2368",1,1,0,38,2,1,4,0,8,3,0,0,140 -"2369",1,1,0,30,2,1,4,0,8,3,0,0,140 -"2370",0,1,0,47,2,1,4,0,10,3,0,0,140 -"2371",0,1,0,56,1,1,4,1,9,3,0,0,140 -"2372",1,1,0,57,3,1,4,0,10,3,1,0,140 -"2373",0,1,0,45,1,1,4,1,9,3,0,0,140 -"2374",0,1,0,40,2,1,4,0,10,3,0,0,140 -"2375",0,1,0,58,2,1,4,1,9,3,0,0,140 -"2376",0,1,1,40,1,1,4,1,10,3,0,0,140 -"2377",0,1,1,50,2,1,4,0,10,3,0,0,140 -"2378",0,0,1,45,2,1,4,1,8,3,0,0,140 -"2379",0,1,1,53,1,1,4,0,10,3,1,0,140 -"2380",0,1,0,40,3,1,4,1,6,3,0,0,140 -"2381",0,1,0,61,3,1,4,1,9,3,1,0,140 -"2382",0,0,0,35,3,1,4,1,7,3,0,0,140 -"2383",0,1,0,41,2,1,4,0,9,3,0,0,140 -"2384",0,1,0,47,2,1,4,1,8,2,0,0,141 -"2385",1,1,0,39,3,1,4,0,6,2,0,0,141 -"2386",0,1,0,62,5,1,4,0,11,2,1,0,141 -"2387",0,1,1,47,4,1,4,0,10,2,1,0,141 -"2388",0,1,0,44,4,1,4,0,10,2,0,0,141 -"2389",0,1,0,48,2,1,4,0,11,2,1,0,141 -"2390",0,0,1,47,5,1,4,0,5,2,1,0,141 -"2391",1,1,0,41,1,1,4,0,6,2,0,0,141 -"2392",0,1,0,57,2,1,4,0,9,2,0,0,141 -"2393",0,1,0,49,2,1,4,1,8,2,1,0,141 -"2394",0,1,0,51,2,1,4,0,12,2,0,0,141 -"2395",0,0,0,43,3,1,4,1,9,2,1,0,141 -"2396",0,1,1,39,3,1,4,1,8,2,1,0,141 -"2397",0,1,0,50,2,1,4,1,5,2,0,0,141 -"2398",0,1,1,50,3,1,4,0,10,2,1,0,141 -"2399",0,1,0,50,5,1,4,0,10,2,1,0,141 -"2400",0,1,0,49,3,1,4,0,11,2,1,0,141 -"2401",0,1,0,53,2,1,4,1,13,2,1,0,141 -"2402",0,1,0,58,1,1,4,1,9,2,1,0,141 -"2403",1,0,0,59,1,1,4,0,12,2,1,0,141 -"2404",0,0,0,46,3,1,4,0,12,2,1,0,141 -"2405",0,1,0,51,3,1,4,1,10,2,0,0,141 -"2406",0,1,0,56,1,1,4,0,7,2,1,0,141 -"2407",0,1,0,45,2,1,4,1,5,2,1,0,141 -"2408",0,1,0,59,1,1,4,0,10,2,0,0,141 -"2409",0,0,0,52,2,1,4,1,10,2,1,0,141 -"2410",0,1,0,43,2,1,4,0,8,2,1,0,141 -"2411",1,1,0,48,3,1,4,0,7,2,1,0,141 -"2412",0,0,0,57,1,1,4,1,4,2,1,0,141 -"2413",0,1,1,47,2,1,4,0,7,1,0,0,142 -"2414",0,1,0,37,5,1,4,0,4,1,0,0,142 -"2415",0,1,0,30,3,1,4,0,9,1,1,0,142 -"2416",0,1,1,45,2,1,4,0,11,1,0,0,142 -"2417",1,1,1,42,3,1,4,1,8,1,0,0,142 -"2418",0,0,0,47,2,1,4,0,10,1,1,0,142 -"2419",0,1,0,60,4,1,4,1,8,1,0,0,142 -"2420",0,1,1,33,5,1,4,0,2,1,1,0,142 -"2421",1,1,1,36,4,1,4,1,9,1,0,0,142 -"2422",0,1,0,59,2,1,4,0,10,1,0,0,142 -"2423",0,1,0,50,2,1,4,1,7,1,0,0,142 -"2424",0,1,0,57,2,1,4,1,7,1,1,0,142 -"2425",0,1,0,44,2,1,4,1,12,1,1,0,142 -"2426",0,1,0,62,2,1,4,0,5,1,0,0,142 -"2427",1,1,0,41,3,1,4,0,14,1,1,0,142 -"2428",0,1,0,46,4,1,4,1,5,4,0,0,143 -"2429",0,1,1,62,1,1,4,0,8,4,1,0,143 -"2430",0,1,1,45,2,1,4,0,9,4,0,0,143 -"2431",1,1,1,45,3,1,4,0,10,4,0,0,143 -"2432",1,1,1,56,5,1,4,0,10,4,0,0,143 -"2433",0,1,0,64,3,1,4,0,5,4,0,0,143 -"2434",0,1,0,45,3,1,4,1,12,4,0,0,143 -"2435",0,1,0,48,4,1,4,1,9,4,0,0,143 -"2436",0,1,1,50,2,1,4,0,10,4,1,0,143 -"2437",0,1,0,54,1,1,4,0,6,4,1,0,143 -"2438",0,1,0,46,2,1,4,1,9,4,1,0,143 -"2439",0,1,1,36,3,1,4,1,8,4,0,0,143 -"2440",0,1,1,53,3,1,4,0,7,3,0,0,144 -"2441",0,1,0,56,1,1,4,1,11,3,1,0,144 -"2442",0,1,0,72,3,1,4,1,11,3,1,0,144 -"2443",0,1,1,50,1,1,4,1,13,3,1,0,144 -"2444",1,0,1,55,5,1,4,1,9,3,1,0,144 -"2445",0,1,0,62,4,1,4,0,12,3,1,0,144 -"2446",0,1,0,28,1,1,4,1,7,3,0,0,144 -"2447",0,1,0,47,2,1,4,1,11,3,0,0,144 -"2448",0,1,1,66,3,1,4,0,11,3,1,0,144 -"2449",0,1,1,36,2,1,4,1,9,3,1,0,144 -"2450",0,1,1,32,5,1,4,0,7,3,0,0,144 -"2451",0,0,1,53,5,1,4,0,11,3,0,0,144 -"2452",0,1,0,50,2,1,4,0,12,3,1,0,144 -"2453",1,0,1,48,3,1,4,0,8,3,0,0,144 -"2454",0,0,0,47,1,1,4,1,9,3,1,0,144 -"2455",0,1,0,51,2,1,4,1,9,3,0,0,144 -"2456",0,1,1,47,5,1,4,0,10,3,1,0,144 -"2457",0,1,1,63,3,1,4,1,11,3,1,0,144 -"2458",0,1,1,58,3,1,4,1,13,3,1,0,144 -"2459",0,1,0,49,1,1,4,0,10,3,1,0,144 -"2460",0,1,0,48,1,1,4,1,12,2,1,0,145 -"2461",1,1,0,56,2,1,4,0,11,2,1,0,145 -"2462",0,1,0,60,3,1,4,1,10,2,0,0,145 -"2463",0,1,1,63,3,1,4,1,11,2,0,0,145 -"2464",0,1,1,62,1,1,4,1,12,2,1,0,145 -"2465",0,1,1,50,2,1,4,1,13,2,0,0,145 -"2466",0,1,0,57,1,1,4,0,12,2,0,0,145 -"2467",0,1,1,53,2,1,4,1,11,2,1,0,145 -"2468",0,1,1,60,3,1,4,1,10,2,0,0,145 -"2469",0,1,1,43,2,1,4,0,10,2,1,0,145 -"2470",0,1,1,60,4,1,4,1,10,2,1,0,145 -"2471",1,1,1,51,4,1,4,0,12,2,1,0,145 -"2472",0,1,1,65,1,1,4,1,11,2,0,0,145 -"2473",0,1,0,48,2,1,4,0,8,2,0,0,145 -"2474",0,1,1,53,1,1,4,0,12,2,1,0,145 -"2475",0,1,1,62,1,1,4,1,11,2,1,0,145 -"2476",0,1,1,60,2,1,4,1,12,2,1,0,145 -"2477",0,1,0,46,2,1,5,1,8,6,0,0,146 -"2478",0,1,0,52,3,1,5,1,10,6,0,0,146 -"2479",1,1,1,49,2,1,5,0,5,6,0,0,146 -"2480",0,1,0,55,1,1,5,1,10,6,0,0,146 -"2481",0,1,1,39,2,1,5,1,10,6,0,0,146 -"2482",0,1,0,48,1,1,5,0,10,6,0,0,146 -"2483",0,0,0,45,2,1,5,0,5,6,0,0,146 -"2484",0,1,0,47,2,1,5,1,3,6,0,0,146 -"2485",1,1,0,45,3,1,5,1,9,6,0,0,146 -"2486",0,1,1,52,1,1,5,1,9,6,0,0,146 -"2487",0,0,0,57,3,1,5,1,5,6,1,0,146 -"2488",0,1,0,53,1,1,5,1,6,6,0,0,146 -"2489",0,1,1,59,1,1,5,0,8,6,0,0,146 -"2490",0,1,1,56,1,1,4,0,12,2,1,0,147 -"2491",0,1,1,56,1,1,4,0,11,2,1,0,147 -"2492",0,0,0,61,2,1,4,0,10,2,1,0,147 -"2493",0,1,0,63,1,1,4,1,12,2,1,0,147 -"2494",0,1,1,48,1,1,4,0,7,2,0,0,147 -"2495",0,1,1,47,2,1,4,0,10,2,0,0,147 -"2496",0,0,0,62,1,1,4,0,11,2,1,0,147 -"2497",0,1,1,58,1,1,4,1,13,2,1,0,147 -"2498",0,1,1,55,3,1,4,1,10,2,1,0,147 -"2499",0,1,1,43,3,1,4,0,9,2,0,0,147 -"2500",0,1,0,64,1,1,4,1,8,2,0,0,147 -"2501",0,1,0,62,2,1,4,1,9,2,0,0,147 -"2502",0,0,0,43,5,1,4,0,9,2,0,0,147 -"2503",0,1,0,51,1,1,4,0,7,2,1,0,147 -"2504",0,1,1,51,3,1,4,1,11,2,0,0,147 -"2505",0,1,0,66,2,1,4,1,9,2,1,0,147 -"2506",0,1,0,61,3,1,4,0,12,2,1,0,147 -"2507",0,0,0,69,1,1,4,0,13,2,1,0,147 -"2508",0,1,1,48,1,1,4,0,11,2,1,0,147 -"2509",0,1,0,59,1,1,4,0,10,2,0,0,147 -"2510",0,1,0,57,1,1,4,1,11,2,0,0,147 -"2511",0,1,0,49,5,1,4,1,7,3,0,0,148 -"2512",0,1,0,55,2,1,4,0,10,3,0,0,148 -"2513",0,1,0,48,3,1,4,0,10,3,0,0,148 -"2514",0,1,0,54,2,1,4,0,9,3,0,0,148 -"2515",1,1,0,45,2,1,4,0,5,3,0,0,148 -"2516",0,1,1,48,4,1,4,1,7,3,0,0,148 -"2517",0,1,0,65,1,1,4,1,8,3,0,0,148 -"2518",0,1,0,50,1,1,4,0,10,3,1,0,148 -"2519",0,1,0,46,3,1,4,0,10,3,0,0,148 -"2520",0,1,0,46,2,1,4,1,9,3,0,0,148 -"2521",0,0,0,52,5,1,4,0,9,3,0,0,148 -"2522",0,1,1,45,2,1,4,0,7,3,0,0,148 -"2523",1,1,1,44,2,1,4,0,5,3,0,0,148 -"2524",0,1,0,55,1,1,4,1,9,3,0,0,148 -"2525",0,1,1,29,3,1,4,0,10,3,1,0,148 -"2526",0,1,0,49,2,1,4,1,9,3,1,0,148 -"2527",0,1,0,60,1,1,4,1,10,3,1,0,148 -"2528",0,0,1,58,2,1,4,1,12,3,1,0,148 -"2529",0,1,1,64,3,1,3,1,8,3,1,0,149 -"2530",0,1,0,27,2,1,3,1,6,3,0,0,149 -"2531",0,0,0,36,5,1,3,1,10,3,0,0,149 -"2532",0,1,0,50,3,1,3,0,10,3,1,0,149 -"2533",1,0,0,46,3,1,3,0,9,3,0,0,149 -"2534",0,1,0,45,2,1,3,1,10,3,0,0,149 -"2535",1,1,1,37,3,1,3,0,5,3,0,0,149 -"2536",0,0,0,52,5,1,3,0,9,3,0,0,149 -"2537",0,1,0,38,5,1,3,0,7,3,0,0,149 -"2538",0,1,0,55,2,1,3,1,11,3,1,0,149 -"2539",0,1,0,50,1,1,3,0,10,3,0,0,149 -"2540",0,1,1,66,2,1,4,0,9,4,1,0,150 -"2541",1,1,0,50,5,1,4,1,8,4,0,0,150 -"2542",0,1,1,62,2,1,4,1,10,4,0,0,150 -"2543",0,1,0,34,5,1,4,0,8,4,1,0,150 -"2544",1,1,1,59,3,1,4,1,6,4,0,0,150 -"2545",0,1,1,49,2,1,4,1,9,4,1,0,150 -"2546",0,0,0,36,1,1,4,1,6,4,0,0,150 -"2547",0,1,1,44,3,1,4,1,4,4,0,0,150 -"2548",0,1,1,53,3,1,4,0,11,4,1,0,150 -"2549",0,1,0,65,3,1,4,0,11,4,0,0,150 -"2550",0,0,0,54,3,1,4,0,10,4,0,0,150 -"2551",0,1,1,44,4,1,4,0,10,4,1,0,150 -"2552",0,1,0,53,2,1,4,0,11,4,0,0,150 -"2553",0,1,0,34,5,1,4,0,2,4,0,0,150 -"2554",0,1,0,55,5,1,4,0,11,4,0,0,150 -"2555",0,1,0,45,1,1,4,1,10,4,0,0,150 -"2556",0,1,0,64,3,1,4,1,11,4,1,0,150 -"2557",0,1,0,63,4,1,4,1,11,4,0,0,150 -"2558",0,1,1,38,3,1,4,0,8,4,0,0,150 -"2559",0,1,1,68,2,1,4,0,10,2,1,0,151 -"2560",0,1,1,42,2,1,4,0,12,2,0,0,151 -"2561",0,1,0,53,2,1,4,1,7,2,1,0,151 -"2562",0,1,0,73,4,1,4,1,11,2,1,0,151 -"2563",0,1,1,42,2,1,4,1,11,2,1,0,151 -"2564",0,1,0,55,3,1,4,0,13,2,1,0,151 -"2565",0,1,0,55,3,1,4,0,9,2,0,0,151 -"2566",0,1,1,63,2,1,4,1,13,2,1,0,151 -"2567",0,1,0,65,4,1,4,1,7,2,1,0,151 -"2568",0,1,1,64,2,1,4,1,12,2,1,0,151 -"2569",0,1,0,74,2,1,4,0,12,2,1,0,151 -"2570",0,1,1,44,4,1,4,0,12,2,1,0,151 -"2571",0,1,0,60,2,1,4,1,8,2,1,0,151 -"2572",0,1,1,35,4,1,4,1,7,2,0,0,151 -"2573",0,0,0,52,2,1,4,1,12,2,1,0,151 -"2574",0,1,1,60,3,1,4,1,12,2,1,0,151 -"2575",0,1,1,71,3,1,4,0,11,2,1,0,151 -"2576",0,1,0,72,4,1,4,1,12,2,1,0,151 -"2577",0,1,1,51,2,1,4,0,12,2,1,0,151 -"2578",0,1,0,55,3,1,4,0,10,2,0,0,151 -"2579",0,1,0,78,2,1,4,0,12,1,1,0,152 -"2580",0,1,0,64,1,1,5,0,12,1,1,0,153 -"2581",0,1,0,52,3,1,5,1,9,1,0,0,153 -"2582",0,1,1,59,2,1,5,1,8,1,0,0,153 -"2583",0,1,0,46,2,1,5,1,5,1,0,0,153 -"2584",0,1,1,72,1,1,5,1,10,1,1,0,153 -"2585",0,1,1,62,2,1,5,0,12,1,1,0,153 -"2586",0,1,0,53,5,1,5,1,12,1,1,0,153 -"2587",0,1,0,55,2,1,5,1,8,1,1,0,153 -"2588",0,0,0,50,3,1,5,0,12,1,1,0,153 -"2589",0,1,0,42,3,1,5,0,12,1,1,0,153 -"2590",0,1,0,61,1,1,5,0,13,1,1,0,153 -"2591",0,0,0,56,1,1,5,0,12,1,1,0,153 -"2592",0,1,0,65,2,1,5,1,11,1,1,0,153 -"2593",0,1,1,67,1,1,4,1,11,2,1,0,154 -"2594",0,1,0,44,2,1,4,1,8,2,0,0,154 -"2595",0,1,1,70,1,1,4,0,9,2,1,0,154 -"2596",0,1,0,51,2,1,4,0,8,2,0,0,154 -"2597",0,0,1,68,5,1,4,1,9,2,1,0,154 -"2598",0,1,1,67,3,1,4,0,10,2,1,0,154 -"2599",0,1,0,50,3,1,4,0,10,2,1,0,154 -"2600",0,0,1,52,3,1,4,0,10,2,1,0,154 -"2601",0,1,0,47,2,1,4,1,9,2,1,0,154 -"2602",0,1,0,65,1,1,4,0,12,2,1,0,154 -"2603",0,0,1,59,1,1,4,0,11,2,1,0,154 -"2604",1,1,0,42,5,1,4,1,6,2,0,0,154 -"2605",0,1,0,56,4,1,4,0,11,2,1,0,154 -"2606",0,0,1,53,3,1,4,0,11,2,1,0,154 -"2607",0,1,0,56,3,1,4,1,9,2,1,0,154 -"2608",0,1,1,61,2,1,4,1,10,2,0,0,154 -"2609",0,1,1,53,3,1,4,1,11,2,1,0,154 -"2610",0,1,1,64,1,1,4,0,12,2,1,0,154 -"2611",0,1,0,60,1,1,4,0,9,2,1,0,154 -"2612",0,1,1,50,3,1,4,1,10,3,0,0,155 -"2613",0,1,1,54,1,1,4,0,11,3,0,0,155 -"2614",0,1,0,55,2,1,4,0,9,3,0,0,155 -"2615",0,1,1,55,1,1,4,1,9,3,0,0,155 -"2616",1,1,1,58,1,1,4,0,9,3,1,0,155 -"2617",0,1,0,63,3,1,4,1,11,3,1,0,155 -"2618",0,1,0,61,2,1,4,1,10,3,0,0,155 -"2619",0,1,1,46,1,1,4,1,9,3,0,0,155 -"2620",0,1,0,61,2,1,4,1,11,3,0,0,155 -"2621",0,1,1,54,3,1,4,1,11,3,0,0,155 -"2622",0,1,0,49,3,1,4,1,7,3,0,0,155 -"2623",0,0,0,52,2,1,4,0,9,3,0,0,155 -"2624",0,1,0,47,1,1,4,1,10,3,0,0,155 -"2625",0,1,1,58,3,1,4,0,8,3,0,0,155 -"2626",0,1,0,50,4,1,4,0,8,3,0,0,155 -"2627",0,1,1,50,2,0,5,1,9,1,0,1,156 -"2628",0,1,1,50,1,0,5,1,12,1,1,1,156 -"2629",0,1,0,49,3,0,5,1,10,1,1,1,156 -"2630",0,1,1,51,1,0,5,1,9,1,0,1,156 -"2631",0,1,0,54,2,0,5,1,12,1,1,1,156 -"2632",0,1,0,47,1,0,5,1,11,1,0,1,156 -"2633",0,1,1,54,1,0,5,1,10,1,1,1,156 -"2634",0,1,0,49,2,0,5,1,12,1,1,1,156 -"2635",0,1,0,63,2,0,5,0,7,1,1,1,156 -"2636",0,1,1,57,2,0,5,1,12,1,1,1,156 -"2637",0,1,0,65,1,0,5,1,13,1,1,1,156 -"2638",0,1,1,59,1,0,5,1,10,1,1,1,156 -"2639",0,1,1,51,2,0,5,1,10,1,1,1,156 -"2640",0,1,0,46,1,0,5,1,9,1,0,1,156 -"2641",0,1,0,42,2,0,5,1,11,1,0,1,156 -"2642",0,1,1,67,1,0,5,0,10,1,1,1,156 -"2643",0,1,1,53,2,0,5,1,11,1,1,1,156 -"2644",0,1,1,50,1,0,5,1,9,1,0,1,156 -"2645",0,1,1,46,3,0,5,0,10,1,0,1,156 -"2646",0,1,0,62,3,0,5,1,12,1,1,1,156 -"2647",0,1,0,62,1,0,5,1,10,1,0,1,156 -"2648",0,1,0,51,1,0,5,1,11,1,0,1,156 -"2649",0,1,0,37,2,1,4,1,10,2,0,0,157 -"2650",0,1,1,67,2,1,4,0,8,2,0,0,157 -"2651",0,0,1,46,5,1,4,0,5,2,0,0,157 -"2652",1,1,1,36,2,1,4,1,11,2,1,0,157 -"2653",0,1,0,47,1,1,4,1,7,2,0,0,157 -"2654",0,1,0,54,2,1,4,0,3,2,0,0,157 -"2655",1,1,1,34,5,1,4,0,10,2,0,0,157 -"2656",0,1,0,52,1,1,4,1,9,2,1,0,157 -"2657",0,0,1,55,2,1,4,0,8,2,0,0,157 -"2658",1,0,1,53,1,1,4,0,10,2,0,0,157 -"2659",0,1,0,55,1,1,4,1,9,2,0,0,157 -"2660",0,1,1,53,2,1,4,0,13,2,0,0,157 -"2661",0,1,0,54,1,1,4,1,10,2,1,0,157 -"2662",0,1,0,65,1,1,4,0,10,2,0,0,157 -"2663",0,1,0,64,2,1,4,1,10,2,1,0,157 -"2664",0,1,1,53,3,1,4,1,9,2,1,0,157 -"2665",0,1,0,46,3,1,4,1,5,2,0,0,157 -"2666",1,0,1,51,3,1,4,0,10,2,0,0,157 -"2667",0,1,1,40,3,1,4,1,2,2,0,0,157 -"2668",0,1,0,59,1,1,4,1,8,2,0,0,157 -"2669",0,0,1,46,2,1,4,0,9,2,0,0,157 -"2670",0,1,0,33,1,1,3,1,13,3,0,0,158 -"2671",0,1,0,47,2,1,3,1,4,3,0,0,158 -"2672",0,1,0,49,1,1,3,1,7,3,0,0,158 -"2673",0,1,0,37,3,1,3,1,6,3,0,0,158 -"2674",0,1,0,44,3,1,3,1,10,3,0,0,158 -"2675",0,1,0,37,2,1,3,1,10,3,0,0,158 -"2676",0,1,1,56,2,1,3,0,11,3,0,0,158 -"2677",0,1,1,45,2,1,3,1,6,3,0,0,158 -"2678",0,1,0,48,1,1,3,0,5,3,0,0,158 -"2679",1,1,0,46,2,1,3,0,4,3,0,0,158 -"2680",0,1,1,48,4,1,3,1,8,3,0,0,158 -"2681",0,1,0,57,2,1,3,0,8,3,0,0,158 -"2682",0,1,1,50,4,1,3,1,4,3,0,0,158 -"2683",0,1,1,53,1,1,3,1,5,3,1,0,158 -"2684",0,1,0,33,2,1,3,0,9,3,0,0,158 -"2685",0,1,0,43,2,1,3,1,11,3,0,0,158 -"2686",1,0,0,36,1,1,3,1,8,3,1,0,158 -"2687",1,1,0,58,2,1,3,0,9,3,0,0,158 -"2688",0,1,1,41,2,1,3,1,10,3,0,0,158 -"2689",0,1,1,48,2,1,3,1,9,3,1,0,158 -"2690",0,1,1,34,2,1,3,1,11,3,1,0,158 -"2691",0,1,0,49,1,1,3,1,9,3,0,0,158 -"2692",0,1,1,64,3,1,3,0,12,3,1,0,158 -"2693",0,1,0,22,2,1,3,1,6,3,0,0,158 -"2694",0,0,0,54,1,1,3,0,10,3,0,0,158 -"2695",0,0,1,46,1,1,3,1,9,3,0,0,158 -"2696",0,1,1,39,2,1,3,0,7,3,1,0,158 -"2697",0,1,0,73,1,1,5,1,10,5,0,0,159 -"2698",0,1,0,42,1,1,5,0,8,5,0,0,159 -"2699",0,1,0,63,2,1,5,1,9,5,1,0,159 -"2700",1,1,0,45,2,1,5,0,5,5,0,0,159 -"2701",0,1,0,44,1,1,5,1,4,5,0,0,159 -"2702",0,1,0,61,4,1,5,1,11,5,0,0,159 -"2703",0,1,0,30,2,1,5,1,7,5,0,0,159 -"2704",0,1,1,53,3,1,5,1,12,5,0,0,159 -"2705",0,1,0,56,2,1,5,0,12,5,1,0,159 -"2706",0,1,0,52,2,1,5,1,10,5,0,0,159 -"2707",0,1,1,53,1,1,5,1,8,5,0,0,159 -"2708",0,1,0,43,2,1,5,1,3,5,0,0,159 -"2709",0,1,1,53,3,1,5,1,7,5,0,0,159 -"2710",0,1,1,50,2,1,5,1,5,5,0,0,159 -"2711",0,1,0,45,2,1,5,0,5,5,0,0,159 -"2712",0,1,1,36,3,1,5,1,6,5,0,0,159 -"2713",0,1,0,40,2,1,5,1,7,5,0,0,159 -"2714",0,1,1,26,2,1,5,1,9,5,0,0,159 -"2715",1,1,0,35,2,1,2,1,10,7,0,0,160 -"2716",0,1,0,49,4,1,2,0,7,7,0,0,160 -"2717",0,1,0,49,3,1,2,0,11,7,0,0,160 -"2718",0,1,0,36,2,1,2,0,12,7,1,0,160 -"2719",0,1,1,57,2,1,2,0,6,7,1,0,160 -"2720",0,1,0,48,1,1,2,0,7,7,0,0,160 -"2721",0,1,0,41,2,1,2,1,6,7,0,0,160 -"2722",0,1,1,43,3,1,2,1,5,7,1,0,160 -"2723",0,1,0,51,4,1,2,0,8,7,0,0,160 -"2724",0,1,1,36,1,1,2,1,3,7,0,0,160 -"2725",0,1,1,34,5,1,2,0,11,7,0,0,160 -"2726",1,1,1,32,2,1,2,1,4,7,0,0,160 -"2727",0,1,0,71,2,1,5,0,12,4,1,0,161 -"2728",0,1,0,59,1,1,5,0,8,4,0,0,161 -"2729",0,1,0,37,1,1,5,1,4,4,0,0,161 -"2730",0,1,0,53,1,1,5,0,7,4,1,0,161 -"2731",0,1,0,47,5,1,5,1,7,4,0,0,161 -"2732",1,0,0,55,2,1,5,0,7,4,0,0,161 -"2733",0,1,0,53,2,1,5,1,3,4,0,0,161 -"2734",0,1,0,43,2,1,5,1,3,4,0,0,161 -"2735",0,1,0,49,2,1,5,1,1,4,0,0,161 -"2736",0,1,0,55,5,1,5,1,8,4,0,0,161 -"2737",0,1,1,51,5,1,5,1,9,4,0,0,161 -"2738",0,1,0,56,2,1,5,0,8,4,0,0,161 -"2739",0,1,0,40,2,1,5,1,6,4,0,0,161 -"2740",0,1,1,44,2,1,5,1,8,4,0,0,161 -"2741",0,1,0,39,1,1,5,0,4,4,0,0,161 -"2742",0,1,0,42,4,1,5,0,9,4,0,0,161 -"2743",0,1,0,70,1,1,5,0,10,4,0,0,161 -"2744",0,1,0,42,2,1,5,0,9,4,0,0,161 -"2745",0,1,0,41,3,1,4,1,9,3,0,0,162 -"2746",0,1,1,50,2,1,4,0,10,3,0,0,162 -"2747",0,1,1,47,1,1,4,1,10,3,0,0,162 -"2748",0,1,0,59,3,1,4,0,7,3,0,0,162 -"2749",0,1,1,60,1,1,4,1,8,3,0,0,162 -"2750",1,0,1,50,5,1,4,0,9,3,0,0,162 -"2751",0,1,0,58,2,1,4,1,9,3,0,0,162 -"2752",0,1,0,57,1,1,4,0,11,3,0,0,162 -"2753",0,1,0,47,2,1,4,0,8,3,0,0,162 -"2754",0,1,0,53,1,1,4,1,10,3,1,0,162 -"2755",0,1,0,62,1,1,4,1,9,3,1,0,162 -"2756",0,1,0,44,4,1,4,1,8,3,0,0,162 -"2757",0,1,0,52,1,1,4,1,13,3,1,0,162 -"2758",0,1,1,57,5,1,4,1,10,3,0,0,162 -"2759",0,1,1,60,2,1,4,0,12,3,1,0,162 -"2760",0,1,0,50,1,1,4,0,6,3,0,0,162 -"2761",0,1,1,45,1,1,4,1,10,3,0,0,162 -"2762",0,0,0,47,4,1,4,0,10,3,0,0,162 -"2763",1,0,1,61,2,1,4,0,9,3,0,0,162 -"2764",0,1,0,50,1,1,4,0,9,3,0,0,162 -"2765",0,1,1,60,2,1,4,0,12,3,0,0,162 -"2766",0,1,1,65,4,1,4,0,8,3,1,0,162 -"2767",0,1,0,45,2,1,4,0,10,3,0,0,162 -"2768",0,1,0,48,1,1,5,1,8,1,1,1,163 -"2769",0,1,0,61,1,1,5,0,11,1,1,1,163 -"2770",0,1,0,66,1,1,5,0,11,1,1,1,163 -"2771",0,0,1,53,5,1,5,1,9,1,1,1,163 -"2772",0,1,0,67,1,1,5,0,11,1,1,1,163 -"2773",0,1,0,56,2,1,5,1,13,1,1,1,163 -"2774",0,1,0,69,2,1,5,1,13,1,1,1,163 -"2775",0,1,1,66,5,1,5,0,8,1,1,1,163 -"2776",0,1,1,58,1,1,5,0,11,1,0,1,163 -"2777",0,1,1,60,4,1,5,0,7,1,0,1,163 -"2778",0,1,0,56,1,1,5,0,11,1,1,1,163 -"2779",0,1,1,58,2,1,5,1,10,1,0,1,163 -"2780",0,1,0,56,2,1,5,0,12,1,1,1,163 -"2781",0,1,1,51,2,1,5,1,10,1,0,1,163 -"2782",0,1,0,56,1,1,5,1,10,1,0,1,163 -"2783",0,1,0,46,2,1,3,0,8,3,0,0,164 -"2784",0,1,0,65,2,1,3,1,9,3,0,0,164 -"2785",1,1,0,65,4,1,3,0,10,3,0,0,164 -"2786",1,1,0,42,5,1,3,0,6,3,0,0,164 -"2787",0,1,0,55,5,1,3,0,11,3,1,0,164 -"2788",1,1,1,54,4,1,3,0,10,3,0,0,164 -"2789",1,1,0,43,4,1,3,1,10,3,1,0,164 -"2790",0,1,0,64,3,1,3,1,9,3,1,0,164 -"2791",0,1,0,53,3,1,3,1,12,3,1,0,164 -"2792",0,1,1,43,2,1,3,0,6,3,0,0,164 -"2793",0,1,0,62,2,1,3,0,12,3,1,0,164 -"2794",0,1,0,62,3,1,3,1,11,3,1,0,164 -"2795",0,1,1,45,1,1,3,1,11,3,1,0,164 -"2796",0,1,0,64,1,1,3,0,10,3,1,0,164 -"2797",1,0,1,60,3,1,3,0,6,3,0,0,164 -"2798",0,1,1,49,3,1,3,0,6,3,0,0,164 -"2799",0,0,0,37,4,1,3,1,10,3,0,0,164 -"2800",0,1,0,61,3,1,3,1,12,3,0,0,164 -"2801",1,1,0,56,1,1,3,0,9,3,1,0,164 -"2802",0,1,0,53,1,1,3,0,9,3,0,0,164 -"2803",1,1,0,32,4,1,3,0,5,3,0,0,164 -"2804",0,1,0,33,4,1,3,1,10,3,0,0,164 -"2805",1,1,1,59,3,1,3,1,13,3,1,0,164 -"2806",0,1,1,46,3,1,3,1,9,3,0,0,164 -"2807",0,1,0,40,3,1,3,1,7,3,0,0,164 -"2808",0,1,0,60,5,1,3,0,8,3,0,0,164 -"2809",0,1,0,54,1,1,3,0,5,4,0,0,165 -"2810",0,1,0,36,1,1,3,1,9,4,0,0,165 -"2811",0,1,1,55,2,1,3,0,10,4,1,0,165 -"2812",0,1,1,54,3,1,3,1,9,4,0,0,165 -"2813",0,0,1,60,2,1,3,1,12,4,1,0,165 -"2814",0,1,1,64,2,1,3,0,13,4,1,0,165 -"2815",0,1,1,52,2,1,3,0,10,4,0,0,165 -"2816",0,1,1,56,2,1,3,0,9,4,0,0,165 -"2817",1,1,0,64,2,1,3,0,9,4,0,0,165 -"2818",0,1,0,37,1,1,3,1,10,4,1,0,165 -"2819",0,1,0,58,2,1,3,0,13,4,1,0,165 -"2820",0,1,0,52,1,1,3,0,12,4,0,0,165 -"2821",1,1,1,41,2,1,3,0,4,4,0,0,165 -"2822",0,1,1,61,1,1,3,1,10,4,1,0,165 -"2823",0,1,1,50,1,1,3,0,13,4,0,0,165 -"2824",0,1,0,63,2,1,3,0,11,4,1,0,165 -"2825",0,1,0,66,1,1,3,0,10,4,1,0,165 -"2826",0,1,1,57,1,1,4,1,13,1,1,1,166 -"2827",0,1,0,56,2,1,4,1,12,1,1,1,166 -"2828",0,1,1,61,2,1,4,1,11,1,1,1,166 -"2829",0,1,1,50,3,1,4,1,10,1,1,1,166 -"2830",0,1,0,58,1,1,4,0,12,1,1,1,166 -"2831",0,1,0,65,1,1,4,1,11,1,1,1,166 -"2832",0,1,0,66,2,1,4,0,12,1,1,1,166 -"2833",0,1,0,62,2,1,4,1,10,1,1,1,166 -"2834",0,1,1,50,2,1,4,1,12,1,1,1,166 -"2835",0,1,0,65,3,1,4,0,11,1,1,1,166 -"2836",0,1,0,57,3,1,4,0,12,1,1,1,166 -"2837",0,1,0,55,5,1,3,1,10,1,0,0,167 -"2838",0,1,1,54,5,1,3,1,10,1,1,0,167 -"2839",0,1,0,49,2,1,3,1,8,1,1,0,167 -"2840",0,0,1,43,5,1,3,0,8,1,1,0,167 -"2841",0,0,1,39,4,1,3,1,8,1,0,0,167 -"2842",0,1,0,38,5,1,3,1,9,1,0,0,167 -"2843",0,0,0,46,5,1,3,1,12,1,1,0,167 -"2844",0,1,0,51,1,1,3,1,7,1,1,0,167 -"2845",0,1,0,33,2,1,4,1,11,3,0,0,168 -"2846",0,1,0,46,1,1,4,1,7,3,0,0,168 -"2847",0,1,1,62,3,1,4,1,11,3,1,0,168 -"2848",0,1,0,58,3,1,4,0,9,3,0,0,168 -"2849",0,1,1,38,3,1,4,1,9,3,0,0,168 -"2850",0,1,0,56,2,1,4,0,10,3,1,0,168 -"2851",0,1,0,59,2,1,4,0,9,3,1,0,168 -"2852",0,1,1,50,2,1,4,0,11,3,1,0,168 -"2853",0,1,0,44,4,1,4,1,8,3,0,0,168 -"2854",1,1,0,53,2,1,4,1,5,3,0,0,168 -"2855",1,1,0,55,5,1,4,1,11,3,1,0,168 -"2856",0,1,1,41,5,1,4,0,9,3,0,0,168 -"2857",0,1,1,63,3,1,4,0,10,3,1,0,168 -"2858",1,1,1,71,1,1,4,0,7,1,1,0,169 -"2859",0,1,1,42,4,1,4,0,10,1,1,0,169 -"2860",0,1,1,50,1,1,4,1,9,1,0,0,169 -"2861",0,1,0,67,3,1,4,1,7,1,1,0,169 -"2862",1,1,1,61,5,1,4,0,11,1,1,0,169 -"2863",0,1,1,68,2,1,4,1,12,1,0,0,169 -"2864",0,1,1,57,1,1,4,0,9,1,1,0,169 -"2865",0,1,1,59,2,1,4,0,9,1,0,0,169 -"2866",1,0,0,45,4,1,4,0,9,1,0,0,169 -"2867",0,1,1,58,2,1,4,1,10,1,0,0,169 -"2868",1,0,1,64,5,1,4,0,7,1,0,0,169 -"2869",0,0,1,48,3,1,4,1,10,1,0,0,169 -"2870",1,1,0,48,2,1,4,0,1,1,0,0,169 -"2871",0,0,0,65,2,1,4,1,9,1,0,0,169 -"2872",1,0,1,51,5,1,4,0,10,1,0,0,169 -"2873",0,1,1,63,1,1,4,1,7,1,0,0,169 -"2874",1,0,1,45,5,1,4,0,6,1,0,0,169 -"2875",1,1,0,49,1,1,4,0,3,1,0,0,169 -"2876",1,0,1,48,2,1,4,0,6,1,0,0,169 -"2877",0,1,0,49,3,1,4,1,9,6,0,0,170 -"2878",0,1,0,41,2,1,4,0,12,6,0,0,170 -"2879",0,1,0,45,3,1,4,0,5,6,0,0,170 -"2880",1,0,0,40,2,1,4,0,8,6,0,0,170 -"2881",1,1,1,42,3,1,4,1,10,6,0,0,170 -"2882",0,1,0,41,3,1,4,1,9,6,1,0,170 -"2883",0,1,1,40,3,1,4,1,2,6,0,0,170 -"2884",0,1,1,47,3,1,4,1,5,6,0,0,170 -"2885",1,1,0,38,2,1,4,0,8,6,0,0,170 -"2886",0,1,1,35,3,1,4,1,9,6,1,0,170 -"2887",1,1,1,49,3,1,4,0,9,6,1,0,170 -"2888",1,1,0,39,5,1,4,1,10,6,0,0,170 -"2889",0,1,1,30,3,1,4,0,7,6,0,0,170 -"2890",0,1,0,58,2,1,4,0,10,6,0,0,170 -"2891",0,1,0,40,2,1,4,0,4,6,1,0,170 -"2892",0,1,1,66,3,1,4,0,10,6,1,0,170 -"2893",0,1,0,57,1,1,4,1,10,6,0,0,170 -"2894",0,1,0,35,3,1,4,1,6,5,1,0,171 -"2895",0,1,0,53,3,1,4,0,6,5,0,0,171 -"2896",0,1,0,44,5,1,4,0,11,5,1,0,171 -"2897",0,1,0,49,2,1,4,0,12,1,1,1,172 -"2898",0,1,0,69,1,1,4,1,11,1,1,1,172 -"2899",0,1,0,43,3,1,4,0,11,1,1,1,172 -"2900",1,1,0,49,3,1,4,0,10,1,0,1,172 -"2901",0,1,0,64,1,1,4,1,13,1,1,1,172 -"2902",0,1,1,55,1,1,4,1,10,1,1,1,172 -"2903",0,1,0,76,1,1,4,0,12,1,1,1,172 -"2904",0,1,0,48,2,1,4,1,10,1,0,1,172 -"2905",0,1,1,75,3,1,4,1,12,1,1,1,172 -"2906",0,1,0,70,1,1,4,1,11,1,1,1,172 -"2907",0,1,0,64,2,1,4,1,12,1,1,1,172 -"2908",0,1,0,58,2,1,4,0,12,1,1,1,172 -"2909",0,1,0,53,2,1,4,1,13,1,0,1,172 -"2910",0,1,0,78,1,1,4,0,13,1,1,1,172 -"2911",0,1,0,54,3,1,4,0,11,1,0,1,172 -"2912",0,1,1,54,1,1,4,1,11,1,1,1,172 -"2913",1,1,0,52,2,1,4,1,11,1,0,1,172 -"2914",0,1,1,50,1,1,4,0,12,1,0,1,172 -"2915",0,1,0,48,1,1,4,1,13,1,0,1,172 -"2916",0,1,0,57,2,1,4,0,8,1,0,1,172 -"2917",0,1,0,53,2,1,4,1,12,1,1,1,172 -"2918",1,1,0,60,1,1,4,0,13,1,1,1,172 -"2919",0,1,1,54,2,1,4,0,11,1,1,1,172 -"2920",0,1,0,62,2,1,5,1,12,1,1,0,173 -"2921",0,1,1,77,2,1,5,1,10,1,1,0,173 -"2922",0,1,0,41,2,1,5,0,11,1,1,0,173 -"2923",0,1,0,66,3,1,5,0,11,1,0,0,173 -"2924",0,0,0,35,5,1,5,0,6,1,0,0,173 -"2925",0,1,0,61,3,1,5,1,12,1,1,0,173 -"2926",0,0,0,32,4,1,5,0,11,1,0,0,173 -"2927",0,1,0,61,3,1,5,0,9,1,1,0,173 -"2928",0,1,0,59,5,1,5,1,9,1,0,0,173 -"2929",0,1,1,69,2,1,5,0,11,1,1,0,173 -"2930",0,1,1,49,1,1,5,0,11,1,0,0,173 -"2931",0,0,1,54,3,1,5,1,12,1,0,0,173 -"2932",0,1,0,69,1,1,5,0,13,1,1,0,173 -"2933",0,1,1,60,2,1,5,1,13,1,0,0,173 -"2934",0,1,0,54,2,1,5,0,13,1,1,0,173 -"2935",0,1,0,56,1,1,5,0,12,1,1,0,173 -"2936",0,1,0,54,5,1,5,1,7,1,0,0,173 -"2937",0,1,0,49,2,1,5,0,9,1,1,0,173 -"2938",0,1,0,58,1,1,5,1,11,1,0,0,173 -"2939",0,1,0,62,1,1,5,1,10,1,1,0,173 -"2940",0,1,0,44,3,1,2,0,10,3,0,0,174 -"2941",0,1,0,40,4,1,2,0,7,3,1,0,174 -"2942",0,1,1,49,1,1,2,0,9,3,0,0,174 -"2943",0,1,0,48,2,1,2,1,10,3,0,0,174 -"2944",0,1,0,51,3,1,2,0,9,3,0,0,174 -"2945",1,1,0,57,5,1,2,0,4,3,0,0,174 -"2946",0,1,0,64,1,1,2,1,8,3,0,0,174 -"2947",1,1,0,50,3,1,2,0,10,3,1,0,174 -"2948",0,1,0,48,5,1,2,1,10,3,0,0,174 -"2949",0,1,0,51,4,1,2,1,5,3,0,0,174 -"2950",1,1,0,60,1,1,2,0,10,3,1,0,174 -"2951",0,1,0,59,1,1,2,0,12,3,1,0,174 -"2952",0,1,0,54,3,1,2,0,7,3,1,0,174 -"2953",0,1,0,53,3,1,2,1,3,3,0,0,174 -"2954",0,1,0,48,3,1,2,0,3,3,1,0,174 -"2955",1,1,1,60,5,1,2,0,13,3,1,0,174 -"2956",0,1,0,48,2,1,2,0,11,3,0,0,174 -"2957",0,1,0,58,3,1,2,1,11,3,1,0,174 -"2958",0,1,0,49,1,1,2,0,9,3,0,0,174 -"2959",0,1,0,61,2,1,4,1,13,1,1,0,175 -"2960",0,1,0,68,1,1,4,0,12,1,1,0,175 -"2961",0,0,0,62,3,1,4,0,13,1,0,0,175 -"2962",0,1,0,60,2,1,4,1,13,1,1,0,175 -"2963",0,1,0,76,2,1,4,1,12,1,1,0,175 -"2964",0,1,0,58,2,1,4,1,13,1,1,0,175 -"2965",0,1,1,66,1,1,4,1,13,1,1,0,175 -"2966",0,1,0,56,1,1,4,1,11,1,1,0,175 -"2967",0,1,0,45,2,1,4,0,8,1,1,0,175 -"2968",0,1,0,65,1,1,4,1,13,1,1,0,175 -"2969",0,1,0,61,1,1,4,1,12,1,1,0,175 -"2970",0,1,0,61,1,1,4,0,10,1,1,0,175 -"2971",0,1,0,61,2,1,4,1,12,1,1,0,175 -"2972",0,1,0,58,3,1,4,0,13,1,0,0,175 -"2973",0,1,0,70,1,1,4,1,13,1,1,0,175 -"2974",0,1,0,65,3,1,4,0,13,1,1,0,175 -"2975",0,1,1,52,1,1,4,1,12,1,1,0,175 -"2976",0,1,0,77,1,1,4,0,12,1,1,0,175 -"2977",0,0,0,57,2,1,4,0,13,1,1,0,175 -"2978",0,1,0,46,3,1,4,0,7,1,0,0,175 -"2979",0,1,0,70,2,1,4,0,13,1,1,0,175 -"2980",0,1,0,56,1,1,4,1,12,1,1,0,175 -"2981",0,1,1,69,2,1,4,0,13,1,1,0,175 -"2982",0,1,0,62,1,1,4,1,13,1,1,0,175 -"2983",0,1,1,63,2,1,4,1,12,1,1,0,175 -"2984",0,1,0,55,3,1,4,1,12,1,1,0,175 -"2985",0,1,1,57,2,1,4,1,13,1,1,0,175 -"2986",0,1,0,65,1,1,4,0,10,1,1,0,175 -"2987",0,1,0,57,1,1,4,1,10,1,0,0,175 -"2988",0,1,0,60,2,1,4,1,12,1,1,0,175 -"2989",0,1,0,71,3,1,4,0,10,1,1,0,175 -"2990",1,0,0,59,1,1,4,0,12,1,1,0,175 -"2991",0,1,0,83,1,1,4,0,14,1,1,0,175 -"2992",0,1,0,68,3,1,4,1,12,1,1,0,175 -"2993",1,1,0,52,2,1,4,0,13,1,1,0,175 -"2994",0,1,0,60,1,1,4,0,11,1,1,0,175 -"2995",0,0,0,50,3,1,4,1,13,1,1,0,175 -"2996",0,1,0,61,3,1,4,1,12,1,1,0,175 -"2997",0,1,1,64,3,1,4,1,12,1,1,0,175 -"2998",0,1,0,56,2,1,4,0,13,1,1,0,175 -"2999",0,1,0,56,2,1,4,0,12,1,1,0,175 -"3000",0,1,0,62,2,1,4,1,13,1,1,0,175 -"3001",0,1,0,76,1,1,4,0,13,1,1,0,175 -"3002",0,0,0,57,1,1,4,0,13,1,1,0,175 -"3003",0,1,1,51,1,1,5,0,10,3,0,0,176 -"3004",0,1,0,62,1,1,5,1,12,3,0,0,176 -"3005",0,1,1,49,3,1,5,0,6,3,0,0,176 -"3006",0,0,1,49,2,1,5,0,8,3,1,0,176 -"3007",0,1,1,58,2,1,5,0,12,3,1,0,176 -"3008",0,1,0,40,5,1,5,0,11,3,0,0,176 -"3009",0,1,0,52,1,1,5,0,10,3,0,0,176 -"3010",0,1,0,46,5,1,5,1,12,3,1,0,176 -"3011",0,1,0,36,2,1,5,0,8,3,0,0,176 -"3012",0,1,0,61,2,1,5,1,12,3,1,0,176 -"3013",0,0,0,53,2,1,5,0,12,3,1,0,176 -"3014",0,1,0,54,1,1,5,1,10,3,1,0,176 -"3015",0,1,1,61,2,1,5,0,13,3,1,0,176 -"3016",0,1,1,45,4,1,5,0,11,3,1,0,176 -"3017",0,1,0,51,2,1,5,0,7,3,0,0,176 -"3018",0,1,0,78,1,1,5,0,13,3,1,0,176 -"3019",0,1,0,61,2,1,5,1,11,3,1,0,176 -"3020",0,1,1,56,2,1,4,0,8,5,0,0,177 -"3021",0,1,0,78,1,1,4,1,11,5,0,0,177 -"3022",0,1,0,49,1,1,4,1,8,5,0,0,177 -"3023",0,0,0,51,4,1,4,1,10,5,0,0,177 -"3024",0,1,0,38,1,1,4,1,10,5,0,0,177 -"3025",0,1,0,51,3,1,4,0,8,5,1,0,177 -"3026",0,1,1,45,3,1,4,1,3,5,0,0,177 -"3027",1,1,1,41,3,1,4,1,5,5,0,0,177 -"3028",0,1,0,54,2,1,4,1,10,5,1,0,177 -"3029",0,1,1,65,1,1,4,1,9,5,0,0,177 -"3030",0,1,1,51,2,1,4,1,10,5,1,0,177 -"3031",0,1,1,53,1,1,3,1,9,3,1,0,178 -"3032",0,1,0,52,2,1,3,1,11,3,1,0,178 -"3033",0,1,0,56,3,1,3,0,10,3,1,0,178 -"3034",0,1,0,46,3,1,3,1,9,3,0,0,178 -"3035",0,1,1,46,3,1,3,1,10,3,1,0,178 -"3036",0,1,1,47,2,1,3,1,8,3,1,0,178 -"3037",0,1,0,48,5,1,3,1,12,3,0,0,178 -"3038",0,1,1,59,1,1,3,0,5,3,0,0,178 -"3039",0,1,0,64,1,1,3,0,9,3,0,0,178 -"3040",0,1,0,45,1,1,3,1,10,3,1,0,178 -"3041",0,1,1,58,3,1,3,1,9,3,0,0,178 -"3042",0,1,0,54,1,1,3,1,9,3,0,0,178 -"3043",1,0,0,65,2,1,3,0,9,3,0,0,178 -"3044",1,0,1,31,3,1,3,0,9,3,0,0,178 -"3045",0,1,0,60,1,1,3,1,9,3,1,0,178 -"3046",0,0,1,59,4,1,3,1,12,3,1,0,178 -"3047",0,0,1,41,3,1,5,1,11,1,0,0,179 -"3048",0,1,1,61,1,1,5,1,11,1,1,0,179 -"3049",0,1,1,45,3,1,5,0,12,1,1,0,179 -"3050",0,1,0,52,2,1,5,1,10,1,1,0,179 -"3051",0,1,0,67,1,1,5,0,9,1,1,0,179 -"3052",0,1,1,67,1,1,5,1,12,1,1,0,179 -"3053",0,1,0,56,2,1,5,0,11,1,0,0,179 -"3054",0,1,1,53,1,1,5,0,9,1,1,0,179 -"3055",0,1,0,50,3,1,5,1,11,1,1,0,179 -"3056",0,1,1,56,2,1,5,1,11,1,1,0,179 -"3057",0,0,1,50,5,1,5,1,11,1,1,0,179 -"3058",0,1,1,58,1,1,5,0,12,1,1,0,179 -"3059",0,1,1,73,3,1,5,0,10,1,1,0,179 -"3060",0,1,1,67,1,1,5,0,9,1,0,0,179 -"3061",0,1,0,60,4,1,5,0,11,1,1,0,179 -"3062",0,1,1,60,5,1,4,1,10,1,1,1,180 -"3063",0,1,0,56,2,1,4,0,11,1,1,1,180 -"3064",0,1,0,44,3,1,4,1,12,1,1,1,180 -"3065",0,1,0,64,4,1,4,0,11,1,1,1,180 -"3066",0,1,0,47,2,1,4,0,4,1,0,1,180 -"3067",0,1,1,59,1,1,4,1,11,1,1,1,180 -"3068",1,1,0,61,1,1,4,0,12,1,1,1,180 -"3069",0,1,0,70,2,1,4,0,10,1,1,1,180 -"3070",1,0,0,53,4,1,4,0,12,1,1,1,180 -"3071",0,1,0,61,2,1,4,1,12,1,1,1,180 -"3072",0,0,1,45,2,1,4,0,10,1,0,1,180 -"3073",0,1,1,65,2,1,4,0,11,1,1,1,180 -"3074",0,1,1,58,3,1,4,1,11,1,1,1,180 -"3075",0,1,0,62,5,1,4,0,11,1,1,1,180 -"3076",0,0,0,64,5,1,4,1,12,1,1,1,180 -"3077",0,1,0,64,2,1,4,1,12,1,1,1,180 -"3078",0,1,0,66,1,1,4,0,10,1,1,1,180 -"3079",0,1,0,59,2,1,4,1,9,1,0,1,180 -"3080",0,1,1,59,2,1,4,1,10,1,1,1,180 -"3081",0,1,0,51,2,1,4,1,10,1,0,1,180 -"3082",1,0,1,56,5,1,4,0,11,1,0,1,180 -"3083",0,1,1,53,1,1,4,1,10,1,0,1,180 -"3084",0,0,0,44,2,1,4,1,9,1,0,1,180 -"3085",0,1,1,60,1,1,4,0,9,1,0,1,180 -"3086",0,1,0,75,2,1,4,1,11,1,1,1,180 -"3087",0,1,0,62,4,1,4,1,12,1,0,1,180 -"3088",0,1,0,70,2,1,4,0,12,1,0,1,180 -"3089",0,1,0,67,1,1,4,0,9,1,0,1,180 -"3090",1,1,1,29,3,1,4,0,9,1,0,0,181 -"3091",0,0,0,55,2,1,4,0,4,1,0,0,181 -"3092",0,1,1,53,2,1,4,1,12,1,1,0,181 -"3093",1,1,0,33,2,1,4,1,9,1,0,0,181 -"3094",0,1,1,50,2,1,4,0,9,1,0,0,181 -"3095",1,1,0,49,2,1,4,1,2,1,0,0,181 -"3096",0,1,0,62,1,1,4,1,12,1,0,0,181 -"3097",0,0,0,72,2,1,4,0,10,1,1,0,181 -"3098",0,1,0,46,5,1,4,1,7,1,0,0,181 -"3099",0,1,0,50,2,1,4,1,10,1,1,0,181 -"3100",1,1,1,37,5,1,4,0,7,1,0,0,181 -"3101",0,1,0,60,2,1,4,0,11,1,0,0,181 -"3102",0,1,1,38,2,1,4,0,8,1,0,0,181 -"3103",1,1,0,29,2,1,4,1,1,1,1,0,181 -"3104",0,0,0,54,4,1,4,1,9,1,0,0,181 -"3105",0,1,0,51,1,1,4,0,11,1,0,0,181 -"3106",0,1,1,57,2,1,4,0,8,1,0,0,181 -"3107",1,1,1,42,2,1,4,1,10,1,1,0,181 -"3108",0,1,0,51,3,1,4,0,12,1,1,0,181 -"3109",0,0,0,51,1,1,4,0,11,1,1,0,181 -"3110",0,0,1,61,2,1,4,0,9,1,0,0,181 -"3111",0,1,0,57,5,1,4,1,10,1,1,0,181 -"3112",0,1,0,59,2,1,4,0,9,1,0,0,181 -"3113",0,1,1,34,1,1,4,1,8,1,0,0,181 -"3114",0,1,0,56,2,1,5,0,10,3,0,0,182 -"3115",0,0,1,61,2,1,5,0,10,3,1,0,182 -"3116",0,1,0,60,2,1,5,1,7,3,0,0,182 -"3117",0,1,0,61,3,1,5,0,9,3,0,0,182 -"3118",0,1,0,52,1,1,5,1,9,3,0,0,182 -"3119",0,1,1,53,5,1,5,1,10,3,0,0,182 -"3120",0,1,1,67,1,1,5,1,10,3,1,0,182 -"3121",0,1,0,43,2,1,5,0,11,3,0,0,182 -"3122",0,1,0,51,3,1,5,1,8,3,0,0,182 -"3123",1,0,1,56,1,1,5,0,10,3,1,0,182 -"3124",0,1,0,42,1,1,5,1,10,3,1,0,182 -"3125",0,1,0,66,3,1,2,0,9,3,0,0,183 -"3126",0,1,0,50,1,1,2,1,6,3,0,0,183 -"3127",0,0,1,51,2,1,2,0,9,3,0,0,183 -"3128",0,1,1,56,5,1,2,0,12,3,0,0,183 -"3129",0,1,0,54,2,1,2,1,10,3,1,0,183 -"3130",0,1,1,48,5,1,2,1,7,3,0,0,183 -"3131",0,1,0,45,5,1,2,0,9,3,0,0,183 -"3132",0,1,0,44,5,1,2,1,7,3,0,0,183 -"3133",0,1,0,56,5,1,2,0,9,3,0,0,183 -"3134",0,1,1,48,5,1,2,1,10,3,0,0,183 -"3135",0,1,0,35,1,1,2,0,9,3,0,0,183 -"3136",1,1,0,61,3,1,2,0,10,3,0,0,183 -"3137",0,1,0,45,1,1,2,1,12,3,0,0,183 -"3138",0,1,0,55,2,1,2,1,8,3,1,0,183 -"3139",0,1,0,48,3,1,2,0,7,3,1,0,183 -"3140",0,1,0,67,2,1,2,0,5,3,0,0,183 -"3141",0,1,0,62,5,1,2,1,10,3,0,0,183 -"3142",0,1,1,49,2,1,4,1,10,4,0,1,184 -"3143",0,1,0,66,2,1,4,0,11,4,1,1,184 -"3144",0,1,0,61,1,1,4,0,10,4,0,1,184 -"3145",0,1,0,49,2,1,4,0,13,4,0,1,184 -"3146",0,1,0,56,5,1,4,0,8,4,1,1,184 -"3147",0,1,0,65,1,1,4,0,10,4,1,1,184 -"3148",0,1,1,45,5,1,4,1,9,4,0,1,184 -"3149",0,1,0,44,1,1,4,1,14,4,0,1,184 -"3150",0,1,1,57,2,1,4,1,7,4,1,1,184 -"3151",0,1,0,50,2,1,4,0,9,4,0,1,184 -"3152",0,1,0,56,1,1,4,0,10,4,0,1,184 -"3153",0,1,0,61,1,1,4,0,10,4,1,1,184 -"3154",0,0,0,57,3,1,4,0,10,4,1,1,184 -"3155",0,1,1,69,2,1,4,0,9,4,1,1,184 -"3156",0,1,1,69,1,1,4,1,11,4,0,1,184 -"3157",1,0,0,59,2,1,4,0,9,4,0,1,184 -"3158",0,1,1,46,2,1,4,1,10,4,0,1,184 -"3159",0,1,1,47,2,1,4,1,11,4,0,1,184 -"3160",0,1,0,45,1,1,4,1,9,4,0,1,184 -"3161",0,1,0,49,2,1,4,0,9,4,1,1,184 -"3162",0,0,0,47,1,0,4,0,12,1,1,1,185 -"3163",0,1,1,57,1,0,4,0,12,1,1,1,185 -"3164",0,0,1,57,1,0,4,0,11,1,1,1,185 -"3165",1,1,0,54,1,0,4,0,12,1,0,1,185 -"3166",0,1,0,61,1,0,4,0,13,1,0,1,185 -"3167",0,1,0,48,2,0,4,0,12,1,1,1,185 -"3168",0,0,1,56,1,0,4,0,10,1,1,1,185 -"3169",0,1,0,58,1,0,4,0,12,1,1,1,185 -"3170",1,1,1,52,3,0,4,0,12,1,1,1,185 -"3171",0,1,1,61,2,0,4,0,10,1,1,1,185 -"3172",0,0,1,54,2,0,4,0,9,1,1,1,185 -"3173",0,1,0,55,1,0,4,0,11,1,1,1,185 -"3174",1,1,1,64,1,0,4,0,13,1,1,1,185 -"3175",0,1,1,59,2,0,5,0,11,1,1,1,186 -"3176",0,1,0,67,3,0,5,0,12,1,1,1,186 -"3177",0,1,0,68,1,0,5,0,12,1,1,1,186 -"3178",0,1,1,63,2,0,5,1,10,1,1,1,186 -"3179",0,1,1,65,1,0,5,0,12,1,1,1,186 -"3180",0,1,0,65,1,0,5,0,13,1,1,1,186 -"3181",0,1,0,59,1,0,5,1,13,1,0,1,186 -"3182",0,1,1,54,1,0,5,1,12,1,1,1,186 -"3183",0,1,0,72,2,0,5,0,11,1,1,1,186 -"3184",0,1,0,54,1,0,5,0,9,1,0,1,186 -"3185",0,1,0,49,3,0,5,0,11,1,0,1,186 -"3186",0,1,1,68,2,0,5,0,11,1,1,1,186 -"3187",0,1,1,69,3,0,5,1,7,1,0,1,186 -"3188",0,0,0,58,1,0,5,0,12,1,1,1,186 -"3189",0,1,1,54,2,0,5,0,11,1,0,1,186 -"3190",0,1,0,62,1,0,5,0,12,1,1,1,186 -"3191",1,1,0,63,2,0,5,0,10,1,1,1,186 -"3192",0,1,0,52,3,0,5,0,8,1,1,0,187 -"3193",0,1,1,59,2,0,5,1,12,1,1,0,187 -"3194",0,1,0,55,2,0,5,1,9,1,0,0,187 -"3195",0,1,0,58,2,0,5,1,9,1,1,0,187 -"3196",0,1,1,60,2,0,5,1,13,1,1,0,187 -"3197",0,1,1,54,2,0,5,1,13,1,1,0,187 -"3198",1,0,1,60,3,0,5,1,13,1,1,0,187 -"3199",0,1,1,66,3,0,5,1,12,1,1,0,187 -"3200",0,1,0,54,2,0,5,1,12,1,1,0,187 -"3201",0,1,1,57,2,0,5,1,9,1,1,0,187 -"3202",0,1,1,55,2,0,5,1,9,1,1,0,187 -"3203",0,1,1,71,3,0,5,1,13,1,1,0,187 -"3204",0,1,0,59,1,0,5,1,13,1,1,0,187 -"3205",0,1,1,62,3,0,5,1,13,1,0,0,187 -"3206",0,1,0,70,1,0,5,1,13,1,1,0,187 -"3207",0,1,1,59,1,0,5,1,11,1,0,0,187 -"3208",1,1,0,54,2,0,5,1,12,1,1,0,187 -"3209",0,1,1,49,1,0,5,1,13,1,1,0,187 -"3210",0,1,0,65,2,0,5,1,13,1,1,0,187 -"3211",0,1,1,43,3,1,3,1,8,1,0,0,188 -"3212",0,1,1,59,3,1,3,1,11,1,1,0,188 -"3213",0,1,1,55,2,1,3,0,11,1,1,0,188 -"3214",0,1,1,45,3,1,3,0,9,1,0,0,188 -"3215",0,1,0,57,1,1,3,0,9,1,0,0,188 -"3216",0,1,0,69,3,1,3,0,10,1,1,0,188 -"3217",0,1,1,48,3,1,3,1,7,1,0,0,188 -"3218",1,1,1,38,1,1,3,0,8,1,0,0,188 -"3219",0,1,0,62,3,1,3,0,10,1,1,0,188 -"3220",0,1,1,60,2,1,3,0,8,1,0,0,188 -"3221",0,0,1,42,5,1,3,1,4,1,0,0,188 -"3222",0,1,0,58,1,1,3,0,11,1,0,0,188 -"3223",0,1,0,52,4,1,3,1,8,1,1,0,188 -"3224",0,1,0,54,1,1,3,0,11,1,1,0,188 -"3225",0,0,0,54,3,1,3,1,10,1,1,0,188 -"3226",0,1,0,67,1,1,3,1,10,1,1,0,188 -"3227",0,1,1,50,4,1,3,1,9,1,0,0,188 -"3228",0,1,0,71,1,1,3,0,9,1,0,0,188 -"3229",0,1,1,67,1,1,3,0,12,1,1,0,188 -"3230",0,1,0,49,1,1,3,0,7,1,0,0,188 -"3231",0,1,1,53,3,1,3,1,11,1,1,0,188 -"3232",0,1,0,65,1,1,3,0,12,1,1,0,188 -"3233",0,1,0,41,2,1,3,1,9,1,0,0,188 -"3234",0,1,1,51,5,1,4,1,6,3,0,0,189 -"3235",0,1,1,47,2,1,4,1,10,3,1,0,189 -"3236",0,1,1,53,3,1,4,1,7,3,0,0,189 -"3237",0,1,0,66,2,1,4,0,11,3,1,0,189 -"3238",0,1,0,61,2,1,4,1,9,3,0,0,189 -"3239",0,1,0,52,3,1,4,1,12,3,1,0,189 -"3240",0,1,0,59,1,1,4,0,8,3,0,0,189 -"3241",0,1,0,51,1,1,4,1,10,3,1,0,189 -"3242",1,1,0,33,2,1,4,0,12,3,1,0,189 -"3243",0,1,0,41,1,1,4,1,7,3,0,0,189 -"3244",0,1,0,40,1,1,4,0,10,3,1,0,189 -"3245",0,1,0,46,1,1,4,0,8,3,0,0,189 -"3246",0,1,0,53,2,1,3,1,8,1,0,0,190 -"3247",0,1,1,43,1,1,3,1,10,1,0,0,190 -"3248",1,1,0,61,2,1,3,0,7,1,1,0,190 -"3249",0,1,0,59,1,1,3,1,11,1,0,0,190 -"3250",0,1,1,51,1,1,3,0,9,1,0,0,190 -"3251",0,1,0,53,2,1,3,0,10,1,0,0,190 -"3252",1,1,0,41,2,1,3,0,9,1,0,0,190 -"3253",0,1,0,59,3,1,3,0,9,1,0,0,190 -"3254",0,1,0,65,1,1,3,0,9,1,0,0,190 -"3255",0,1,0,47,3,1,3,1,6,1,0,0,190 -"3256",0,0,0,38,2,1,3,0,9,1,0,0,190 -"3257",0,1,1,63,1,1,3,0,11,1,1,0,190 -"3258",0,1,0,43,2,1,3,1,6,1,0,0,190 -"3259",0,1,0,47,2,1,3,1,8,1,0,0,190 -"3260",0,1,1,58,1,1,3,0,10,1,0,0,190 -"3261",0,0,0,64,3,1,3,0,9,1,0,0,190 -"3262",0,1,0,65,2,1,3,0,10,1,0,0,190 -"3263",0,1,1,48,3,1,3,0,10,1,0,0,190 -"3264",0,1,0,71,3,1,5,1,12,2,1,0,191 -"3265",0,1,0,73,3,1,5,1,12,2,1,0,191 -"3266",1,0,0,68,5,1,5,0,9,2,1,0,191 -"3267",0,1,0,69,1,1,5,1,9,2,1,0,191 -"3268",0,1,1,73,2,1,5,0,13,2,1,0,191 -"3269",0,1,0,60,5,1,5,1,12,2,1,0,191 -"3270",0,1,0,62,4,1,5,1,10,2,1,0,191 -"3271",0,1,0,79,2,1,5,1,6,2,1,0,191 -"3272",0,1,0,68,1,1,5,1,12,2,1,0,191 -"3273",0,1,0,59,2,1,5,1,11,2,0,0,191 -"3274",0,1,0,78,5,1,5,1,13,2,1,0,191 -"3275",0,1,0,62,3,1,5,1,9,2,1,0,191 -"3276",0,1,0,54,1,1,5,1,12,2,1,0,191 -"3277",0,1,0,59,2,1,5,1,11,2,0,0,191 -"3278",0,1,0,60,2,1,5,1,10,2,0,0,191 -"3279",0,1,0,77,2,1,5,1,11,2,1,0,191 -"3280",0,1,0,78,2,1,5,0,11,2,1,0,191 -"3281",0,1,1,66,3,1,5,1,6,2,0,0,191 -"3282",0,1,0,61,3,1,5,1,12,2,1,0,191 -"3283",1,0,1,62,2,1,5,1,11,2,0,0,191 -"3284",0,1,1,78,2,1,5,1,3,2,1,0,191 -"3285",0,0,0,67,2,1,5,1,9,2,1,0,191 -"3286",0,1,0,66,1,1,5,0,8,2,1,0,191 -"3287",0,1,0,60,2,1,5,1,11,2,1,0,191 -"3288",0,1,1,72,3,1,5,1,9,2,1,0,191 -"3289",0,1,0,62,2,1,5,1,14,2,1,0,191 -"3290",0,1,1,49,4,1,4,1,11,4,1,0,192 -"3291",1,0,0,49,5,1,4,0,12,4,1,0,192 -"3292",0,1,1,57,3,1,4,0,10,4,1,0,192 -"3293",0,1,0,58,5,1,4,1,11,4,1,0,192 -"3294",0,1,0,53,2,1,4,1,11,4,1,0,192 -"3295",0,1,0,38,1,1,4,0,12,4,1,0,192 -"3296",0,0,1,44,2,1,5,1,3,5,0,0,193 -"3297",0,1,0,34,3,1,5,1,9,5,0,0,193 -"3298",0,1,0,41,2,1,5,1,11,5,1,0,193 -"3299",0,1,0,48,1,1,5,1,9,5,1,0,193 -"3300",0,1,1,39,2,1,5,1,8,5,0,0,193 -"3301",0,1,0,46,1,1,5,0,8,5,1,0,193 -"3302",0,1,0,53,2,1,5,0,11,5,0,0,193 -"3303",1,0,0,55,4,1,5,0,9,5,1,0,193 -"3304",0,1,0,35,2,1,5,0,6,5,0,0,193 -"3305",0,1,1,56,2,1,5,0,10,5,1,0,193 -"3306",0,1,0,45,2,1,5,1,8,5,0,0,193 -"3307",0,1,1,61,1,1,5,0,9,5,0,0,193 -"3308",1,1,1,50,2,1,5,1,9,5,0,0,193 -"3309",0,1,1,51,2,1,5,1,10,5,0,0,193 -"3310",0,1,0,49,4,1,5,1,10,5,1,0,193 -"3311",1,1,0,29,4,1,5,0,10,5,0,0,193 -"3312",0,1,0,50,1,1,4,1,10,4,0,0,194 -"3313",0,1,1,50,2,1,4,1,8,4,1,0,194 -"3314",0,0,0,50,4,1,4,0,8,4,1,0,194 -"3315",1,1,0,48,3,1,4,0,12,4,1,0,194 -"3316",0,1,1,62,2,1,4,1,4,4,0,0,194 -"3317",0,1,0,67,2,1,4,1,12,4,1,0,194 -"3318",0,1,1,62,3,1,4,1,10,4,1,0,194 -"3319",0,1,1,53,1,1,4,1,9,4,1,0,194 -"3320",0,1,1,58,2,1,4,0,9,4,1,0,194 -"3321",0,1,0,71,3,1,4,0,13,4,1,0,194 -"3322",0,1,0,66,1,1,5,1,6,1,0,0,195 -"3323",0,1,1,66,2,1,5,1,10,1,1,0,195 -"3324",0,1,0,71,3,1,5,1,10,1,0,0,195 -"3325",0,1,0,55,2,1,5,0,10,1,0,0,195 -"3326",0,1,0,62,2,1,5,0,10,1,0,0,195 -"3327",0,1,0,69,2,1,5,0,11,1,1,0,195 -"3328",0,1,0,51,1,1,5,1,7,1,1,0,195 -"3329",0,1,0,63,2,1,5,1,8,1,0,0,195 -"3330",0,1,1,58,3,1,5,1,5,1,0,0,195 -"3331",0,0,0,61,4,1,5,1,7,1,1,0,195 -"3332",0,1,0,67,5,1,5,1,6,1,0,0,195 -"3333",0,0,0,68,3,1,5,1,11,1,1,0,195 -"3334",0,0,1,74,1,1,5,0,12,1,1,0,195 -"3335",0,0,0,70,5,1,5,0,8,1,0,0,195 -"3336",0,0,0,64,2,1,5,0,11,1,1,0,195 -"3337",0,1,0,70,2,1,5,0,10,1,1,0,195 -"3338",0,1,0,57,2,1,5,1,10,1,1,0,195 -"3339",0,1,0,59,2,1,4,1,12,3,1,0,196 -"3340",0,1,1,55,3,1,4,1,11,3,0,0,196 -"3341",0,1,1,56,1,1,4,0,11,3,1,0,196 -"3342",0,1,1,69,3,1,4,1,12,3,1,0,196 -"3343",0,1,0,64,3,1,4,1,11,3,0,0,196 -"3344",0,1,1,46,3,1,4,0,5,3,0,0,196 -"3345",0,1,0,68,1,1,4,1,11,3,1,0,196 -"3346",0,1,1,63,1,1,4,0,13,3,1,0,196 -"3347",0,1,1,61,1,1,4,0,7,3,1,0,196 -"3348",0,0,0,60,5,1,4,0,8,3,0,0,196 -"3349",0,1,0,51,2,1,4,1,9,3,1,0,196 -"3350",0,1,0,54,3,1,4,0,8,3,0,0,196 -"3351",0,1,1,56,2,1,4,0,9,3,0,0,196 -"3352",0,1,0,38,1,1,4,1,12,3,1,0,196 -"3353",0,1,1,56,1,1,4,1,13,3,1,0,196 -"3354",0,1,1,37,5,1,4,1,9,3,0,0,196 -"3355",0,1,0,51,2,1,4,1,9,3,1,0,196 -"3356",0,1,1,70,1,1,4,1,8,3,0,0,196 -"3357",0,1,0,41,5,1,4,0,13,3,0,0,196 -"3358",0,1,0,72,5,1,4,0,10,3,1,0,196 -"3359",0,1,0,57,3,1,4,1,10,3,1,0,196 -"3360",0,1,1,51,2,1,5,1,4,7,0,0,197 -"3361",0,1,1,47,2,1,5,0,5,7,0,0,197 -"3362",0,1,0,51,1,1,5,1,5,7,0,0,197 -"3363",0,1,0,51,4,1,5,0,9,7,0,0,197 -"3364",0,1,0,40,3,1,5,1,6,7,0,0,197 -"3365",1,1,1,42,5,1,5,1,8,7,0,0,197 -"3366",0,1,0,55,3,1,5,1,10,7,0,0,197 -"3367",0,1,0,47,2,1,5,0,5,7,1,0,197 -"3368",0,1,0,43,1,1,5,0,9,7,0,0,197 -"3369",0,1,0,40,2,1,5,0,9,7,0,0,197 -"3370",0,1,1,54,1,1,5,0,8,7,0,0,197 -"3371",0,1,1,39,3,1,5,0,9,7,0,0,197 -"3372",0,1,0,62,3,1,5,1,10,7,0,0,197 -"3373",0,0,1,34,2,1,5,0,10,7,1,0,197 -"3374",0,1,0,60,1,1,5,1,10,7,0,0,197 -"3375",0,1,1,59,3,1,5,1,8,7,0,0,197 -"3376",0,1,0,54,2,1,4,0,11,1,1,1,198 -"3377",1,1,0,65,2,1,4,0,9,1,1,1,198 -"3378",0,1,0,58,1,1,4,1,12,1,1,1,198 -"3379",0,1,0,56,2,1,4,1,13,1,1,1,198 -"3380",0,1,0,69,2,1,4,1,11,1,1,1,198 -"3381",0,0,0,52,4,1,4,1,12,1,1,1,198 -"3382",0,1,0,58,2,1,4,0,12,1,1,1,198 -"3383",0,1,1,53,2,1,4,1,12,1,1,1,198 -"3384",0,1,0,52,2,1,4,0,11,1,1,1,198 -"3385",0,0,0,56,2,1,4,1,12,1,0,1,198 -"3386",0,1,0,67,1,1,4,1,11,1,1,1,198 -"3387",0,1,0,60,3,1,4,0,12,1,1,1,198 -"3388",0,1,1,69,3,1,4,0,12,1,1,1,198 -"3389",1,0,0,45,5,1,4,0,12,1,1,1,198 -"3390",1,1,1,42,2,1,4,0,11,1,0,1,198 -"3391",0,1,0,72,1,1,4,0,11,1,1,1,198 -"3392",0,1,1,74,3,1,4,0,8,1,1,1,198 -"3393",0,1,0,62,2,1,4,1,13,1,0,1,198 -"3394",0,1,0,54,2,1,4,1,7,1,1,1,198 -"3395",0,0,1,49,2,1,5,0,13,1,1,1,199 -"3396",0,1,0,54,2,1,5,1,10,1,1,1,199 -"3397",0,1,1,50,1,1,5,1,9,1,0,1,199 -"3398",0,1,0,58,2,1,5,0,12,1,1,1,199 -"3399",0,1,0,55,2,1,5,0,12,1,1,1,199 -"3400",1,1,0,51,3,1,5,0,10,1,1,1,199 -"3401",0,1,1,48,3,1,5,1,9,1,1,1,199 -"3402",0,1,0,60,3,1,5,1,13,1,1,1,199 -"3403",1,1,1,41,3,1,5,0,10,1,0,1,199 -"3404",0,1,1,48,2,1,5,0,12,1,1,1,199 -"3405",0,1,0,59,3,1,5,0,11,1,1,1,199 -"3406",0,1,0,42,2,1,5,1,12,1,1,1,199 -"3407",0,1,0,57,1,1,5,1,12,1,1,1,199 -"3408",0,1,0,44,3,1,5,1,7,1,0,1,199 -"3409",0,1,0,49,2,1,5,0,11,1,1,1,199 -"3410",0,1,1,44,2,1,4,0,8,5,0,0,200 -"3411",1,1,0,33,5,1,4,0,8,5,0,0,200 -"3412",0,1,0,42,2,1,4,1,9,5,0,0,200 -"3413",0,1,0,43,2,1,4,0,9,5,0,0,200 -"3414",1,1,1,40,2,1,4,0,9,5,0,0,200 -"3415",1,0,0,47,5,1,4,0,6,5,0,0,200 -"3416",0,1,0,45,1,1,4,1,8,5,0,0,200 -"3417",0,1,0,33,1,1,4,0,8,5,0,0,200 -"3418",0,1,0,28,2,1,4,1,9,5,0,0,200 -"3419",0,1,1,32,4,1,4,1,7,5,1,0,200 -"3420",0,1,1,39,3,1,4,1,6,5,0,0,200 -"3421",0,0,1,48,3,1,4,0,9,5,0,0,200 -"3422",0,0,0,51,3,1,4,1,9,5,0,0,200 -"3423",0,1,0,44,4,1,4,1,6,5,0,0,200 -"3424",0,1,0,42,3,1,4,1,5,5,0,0,200 -"3425",0,1,0,41,1,1,4,0,5,5,0,0,200 -"3426",0,1,1,39,2,1,4,0,8,5,0,0,200 -"3427",0,1,0,48,3,1,4,1,5,5,0,0,200 -"3428",0,1,0,42,2,1,4,1,10,5,0,0,200 -"3429",0,1,0,45,2,1,5,0,10,1,0,0,201 -"3430",0,1,0,58,2,1,5,1,10,1,1,0,201 -"3431",0,1,0,55,4,1,5,1,10,1,1,0,201 -"3432",0,1,0,51,3,1,5,1,12,1,1,0,201 -"3433",0,1,1,44,4,1,5,1,9,1,0,0,201 -"3434",0,1,0,46,3,1,5,0,10,1,1,0,201 -"3435",0,0,1,63,5,1,5,0,10,1,1,0,201 -"3436",0,1,0,45,2,1,5,1,12,1,1,0,201 -"3437",0,1,0,60,2,1,5,0,11,1,1,0,201 -"3438",0,1,0,49,1,1,5,1,10,1,1,0,201 -"3439",0,0,1,52,2,1,5,1,8,1,1,0,201 -"3440",0,1,1,52,2,1,5,1,10,1,1,0,201 -"3441",0,1,0,46,2,1,5,1,10,1,1,0,201 -"3442",0,1,0,57,3,1,5,0,11,1,1,0,201 -"3443",0,1,0,47,3,1,5,1,12,1,0,0,201 -"3444",0,1,0,37,2,1,5,1,9,1,1,0,201 -"3445",0,1,0,48,1,1,5,1,10,1,0,0,201 -"3446",0,1,1,47,4,1,5,1,8,1,0,0,201 -"3447",0,1,1,67,4,1,5,0,5,1,0,0,201 -"3448",0,1,1,58,5,1,5,0,8,1,1,0,201 -"3449",0,1,1,59,1,1,5,1,6,1,0,0,201 -"3450",0,1,0,59,2,1,5,1,8,1,1,0,201 -"3451",1,1,1,61,3,1,5,0,7,6,0,0,202 -"3452",1,1,0,43,5,1,5,0,8,6,0,0,202 -"3453",1,1,0,53,1,1,5,0,10,6,0,0,202 -"3454",0,1,1,43,3,1,5,1,5,6,0,0,202 -"3455",0,1,1,62,1,1,5,0,11,6,1,0,202 -"3456",0,0,1,44,4,1,5,1,9,6,0,0,202 -"3457",0,1,0,54,3,1,5,0,8,6,0,0,202 -"3458",0,1,0,44,3,1,5,1,7,6,0,0,202 -"3459",0,1,0,80,3,1,5,0,12,6,1,0,202 -"3460",1,1,0,52,3,1,5,0,2,6,0,0,202 -"3461",0,0,0,63,2,1,5,0,8,6,0,0,202 -"3462",0,1,0,56,1,1,5,0,9,6,1,0,202 -"3463",0,1,0,43,1,1,5,0,5,6,0,0,202 -"3464",0,1,1,49,2,1,5,1,10,6,0,0,202 -"3465",0,1,1,42,5,1,5,1,8,6,0,0,202 -"3466",0,1,0,61,2,1,5,1,9,6,1,0,202 -"3467",0,1,0,58,2,1,5,1,10,6,1,0,202 -"3468",0,1,0,59,5,1,5,0,11,1,1,0,203 -"3469",0,1,0,59,2,1,5,0,12,1,1,0,203 -"3470",0,1,0,59,3,1,5,1,12,1,1,0,203 -"3471",0,1,0,53,3,1,5,0,10,1,1,0,203 -"3472",0,1,0,60,2,1,5,0,10,1,1,0,203 -"3473",0,0,0,57,3,1,5,1,11,1,1,0,203 -"3474",0,0,0,42,1,1,5,1,9,1,0,0,203 -"3475",0,0,0,54,1,1,5,0,10,1,1,0,203 -"3476",0,1,1,43,3,1,5,1,12,1,1,0,203 -"3477",0,1,1,42,2,1,5,1,10,1,1,0,203 -"3478",0,1,1,49,3,1,4,1,11,1,1,0,204 -"3479",0,1,0,37,2,1,4,1,9,1,0,0,204 -"3480",1,1,1,51,3,1,4,0,8,1,0,0,204 -"3481",0,1,0,58,2,1,5,1,10,1,1,1,205 -"3482",0,1,1,54,2,1,5,1,9,1,0,1,205 -"3483",0,1,0,62,2,1,5,1,10,1,1,1,205 -"3484",0,1,1,39,2,1,5,0,10,1,1,1,205 -"3485",0,1,1,60,2,1,5,1,12,1,1,1,205 -"3486",0,1,0,55,5,1,5,0,10,1,1,1,205 -"3487",0,0,0,39,2,1,5,0,11,1,0,1,205 -"3488",0,1,0,54,1,1,5,0,10,1,0,1,205 -"3489",0,1,1,45,3,1,5,1,10,1,1,1,205 -"3490",0,1,1,49,2,1,4,1,9,5,0,0,206 -"3491",0,1,0,63,1,1,4,1,9,5,0,0,206 -"3492",0,1,0,46,2,1,4,1,8,5,0,0,206 -"3493",0,1,0,49,2,1,4,0,8,5,0,0,206 -"3494",0,1,1,32,3,1,4,1,6,5,0,0,206 -"3495",1,1,1,45,2,1,4,0,12,5,0,0,206 -"3496",0,1,0,55,2,1,4,1,11,5,0,0,206 -"3497",0,1,0,57,1,1,4,1,9,5,1,0,206 -"3498",0,1,0,60,1,1,4,1,8,5,1,0,206 -"3499",0,1,0,48,1,1,4,0,9,5,1,0,206 -"3500",0,1,1,49,1,1,4,1,9,5,1,0,206 -"3501",0,1,0,61,2,1,4,0,8,5,0,0,206 -"3502",0,1,1,44,2,1,4,1,9,5,0,0,206 -"3503",0,1,0,61,1,1,4,1,5,5,0,0,206 -"3504",0,1,1,57,1,1,4,0,9,5,1,0,206 -"3505",0,1,1,38,2,1,4,0,6,5,0,0,206 -"3506",0,1,0,40,2,1,4,1,10,5,0,0,206 -"3507",0,1,0,39,2,1,4,1,8,5,0,0,206 -"3508",0,1,1,57,1,1,4,1,9,5,1,0,206 -"3509",0,1,0,69,1,1,4,0,9,5,1,0,206 -"3510",0,1,0,56,2,1,4,1,8,5,0,0,206 -"3511",0,1,0,46,1,1,4,1,6,5,0,0,206 -"3512",0,1,0,59,1,1,3,0,12,1,1,0,207 -"3513",0,1,1,73,5,1,3,0,12,1,1,0,207 -"3514",1,1,1,40,5,1,3,0,11,1,0,0,207 -"3515",1,1,0,58,4,1,3,0,8,1,0,0,207 -"3516",0,1,1,64,1,1,3,0,8,1,0,0,207 -"3517",1,1,0,53,2,1,3,0,12,1,1,0,207 -"3518",0,1,1,55,3,1,3,1,5,1,0,0,207 -"3519",0,1,0,61,2,1,3,0,11,1,1,0,207 -"3520",0,1,1,76,3,1,3,0,9,1,0,0,207 -"3521",0,1,0,47,4,1,3,1,11,1,0,0,207 -"3522",1,0,1,64,3,1,3,0,12,1,1,0,207 -"3523",0,1,0,41,2,1,3,1,11,1,0,0,207 -"3524",0,0,0,52,1,1,5,0,10,1,0,1,208 -"3525",0,1,1,64,1,1,5,1,11,1,0,1,208 -"3526",0,1,0,64,1,1,5,1,8,1,0,1,208 -"3527",0,1,1,59,2,1,5,1,11,1,1,1,208 -"3528",0,1,0,59,3,1,5,1,10,1,0,1,208 -"3529",0,1,1,60,2,1,5,1,9,1,1,1,208 -"3530",0,1,0,52,2,1,5,0,9,1,0,1,208 -"3531",0,1,0,68,1,1,5,1,11,1,1,1,208 -"3532",0,1,0,50,3,1,5,1,12,1,1,1,208 -"3533",0,1,1,45,5,1,5,0,6,1,1,1,208 -"3534",0,1,1,46,2,1,5,0,11,1,1,1,208 -"3535",0,1,1,53,1,1,5,1,9,1,0,1,208 -"3536",0,1,0,56,1,1,5,0,8,1,0,1,208 -"3537",0,1,0,68,2,1,5,0,11,1,1,1,208 -"3538",0,1,1,48,2,1,5,0,9,1,0,1,208 -"3539",0,1,0,63,3,1,5,0,10,1,0,1,208 -"3540",1,1,1,49,3,1,5,0,10,1,0,1,208 -"3541",0,1,0,53,1,1,5,1,10,1,1,1,208 -"3542",0,0,0,33,2,1,4,0,8,5,0,0,209 -"3543",1,1,1,41,2,1,4,0,9,5,1,0,209 -"3544",0,1,0,66,2,1,4,1,7,5,1,0,209 -"3545",0,1,0,31,2,1,4,1,5,5,1,0,209 -"3546",0,1,1,46,2,1,4,0,9,5,0,0,209 -"3547",0,1,0,51,2,1,4,0,6,5,1,0,209 -"3548",0,1,1,39,3,1,4,1,9,5,1,0,209 -"3549",1,0,0,51,5,1,4,1,6,5,0,0,209 -"3550",0,0,0,34,1,1,4,0,9,5,0,0,209 -"3551",0,1,0,47,2,1,4,1,8,5,0,0,209 -"3552",0,1,0,38,2,1,4,1,7,5,0,0,209 -"3553",1,1,1,40,1,1,4,0,9,5,0,0,209 -"3554",0,1,1,38,1,1,4,1,2,5,1,0,209 -"3555",0,1,1,30,2,1,4,1,8,5,0,0,209 -"3556",0,1,1,44,2,1,4,1,9,5,1,0,209 -"3557",0,1,0,39,2,1,4,0,11,5,1,0,209 -"3558",0,1,0,45,1,1,4,0,6,5,0,0,209 -"3559",0,1,1,29,3,1,4,0,11,5,1,0,209 -"3560",0,1,0,41,2,1,4,1,10,5,1,0,209 -"3561",0,1,0,54,4,1,4,0,12,1,1,1,210 -"3562",0,1,1,67,2,1,4,1,9,1,1,1,210 -"3563",0,1,1,52,2,1,4,0,12,1,1,1,210 -"3564",0,1,1,60,3,1,4,1,12,1,1,1,210 -"3565",0,1,1,57,5,1,4,0,10,1,1,1,210 -"3566",0,1,0,50,2,1,4,0,12,1,1,1,210 -"3567",0,1,1,52,2,1,4,0,11,1,0,1,210 -"3568",0,1,0,46,1,1,4,0,8,1,1,1,210 -"3569",0,1,1,46,2,1,4,1,11,1,1,1,210 -"3570",0,1,0,64,2,1,4,1,12,1,0,1,210 -"3571",0,1,1,54,1,1,4,1,8,1,1,1,210 -"3572",0,1,0,55,3,1,4,1,12,1,1,1,210 -"3573",0,1,0,61,2,1,4,1,12,1,1,1,210 -"3574",0,1,0,61,2,1,4,1,9,1,1,1,210 -"3575",0,1,0,56,2,1,4,0,10,1,0,1,210 -"3576",0,1,0,56,2,1,4,0,7,1,1,1,210 -"3577",0,0,0,64,4,1,4,0,12,1,1,1,210 -"3578",0,1,1,59,2,1,4,1,10,1,1,1,210 -"3579",0,1,1,65,5,1,4,0,10,1,1,0,211 -"3580",0,1,0,47,2,1,4,1,10,1,1,0,211 -"3581",0,1,1,61,1,1,4,1,9,1,0,0,211 -"3582",0,0,0,59,2,1,4,0,12,1,0,0,211 -"3583",0,1,0,61,1,1,4,1,13,1,1,0,211 -"3584",0,1,0,44,2,1,4,0,11,1,0,0,211 -"3585",0,1,1,57,1,1,4,0,11,1,1,0,211 -"3586",0,1,0,77,1,1,4,0,16,1,1,0,211 -"3587",0,1,1,52,2,1,4,0,12,1,0,0,211 -"3588",1,0,1,47,5,1,4,0,8,1,0,0,211 -"3589",0,1,1,52,1,1,4,1,10,1,0,0,211 -"3590",0,1,0,67,2,1,4,1,10,1,0,0,211 -"3591",0,1,0,61,2,1,4,1,13,1,1,0,211 -"3592",0,1,0,64,2,1,4,0,12,1,1,0,211 -"3593",0,1,1,42,5,1,4,0,8,1,1,0,211 -"3594",0,1,0,69,2,1,4,0,13,1,1,0,211 -"3595",0,0,1,49,3,1,4,1,12,1,0,0,211 -"3596",0,1,0,68,1,1,4,1,11,1,1,0,211 -"3597",0,1,1,32,2,1,4,1,11,1,1,0,211 -"3598",0,1,1,60,2,0,4,0,10,1,1,1,212 -"3599",0,1,1,68,3,0,4,0,11,1,1,1,212 -"3600",0,1,1,60,1,0,4,0,12,1,1,1,212 -"3601",0,0,0,60,2,0,4,0,11,1,0,1,212 -"3602",0,1,0,60,2,0,4,1,12,1,1,1,212 -"3603",0,1,1,56,2,0,4,0,12,1,0,1,212 -"3604",0,0,0,63,2,0,4,0,10,1,0,1,212 -"3605",0,1,1,53,2,0,4,0,11,1,0,1,212 -"3606",0,1,0,62,2,0,4,0,14,1,1,1,212 -"3607",0,1,0,67,2,0,4,0,11,1,1,1,212 -"3608",0,1,0,57,1,0,4,0,10,1,0,1,212 -"3609",0,1,1,60,2,0,4,0,10,1,1,1,212 -"3610",0,1,1,58,1,0,4,0,14,1,1,1,212 -"3611",1,0,1,60,2,0,4,0,10,1,0,1,212 -"3612",0,1,1,56,1,0,4,0,12,1,1,1,212 -"3613",0,1,0,64,5,0,4,0,13,1,1,1,212 -"3614",0,1,0,39,2,1,3,1,8,5,1,0,213 -"3615",0,1,0,57,2,1,3,1,10,5,1,0,213 -"3616",0,1,1,47,2,1,3,1,5,5,0,0,213 -"3617",0,1,0,45,3,1,3,1,11,5,1,0,213 -"3618",0,1,1,44,5,1,3,1,9,5,0,0,213 -"3619",0,1,1,45,2,1,3,1,5,5,0,0,213 -"3620",0,1,0,35,3,1,3,0,12,5,0,0,213 -"3621",0,1,1,54,1,1,3,1,7,5,0,0,213 -"3622",0,1,0,54,1,1,3,0,9,5,0,0,213 -"3623",1,1,1,54,2,1,3,0,9,5,0,0,213 -"3624",0,1,0,55,1,1,3,1,8,5,0,0,213 -"3625",0,1,0,58,2,1,3,0,7,5,1,0,213 -"3626",0,1,1,56,1,1,3,0,7,5,0,0,213 -"3627",0,1,0,36,3,1,3,0,9,5,0,0,213 -"3628",0,1,1,41,1,1,3,0,10,5,1,0,213 -"3629",0,1,0,60,1,1,3,0,5,5,0,0,213 -"3630",1,1,1,39,4,1,3,0,3,5,0,0,213 -"3631",1,1,0,45,5,1,3,0,10,5,0,0,213 -"3632",0,1,0,55,2,1,3,1,9,5,0,0,213 -"3633",0,1,0,46,3,1,4,1,6,6,0,0,214 -"3634",0,1,0,58,2,1,4,1,9,6,1,0,214 -"3635",0,0,0,52,4,1,4,0,9,6,0,0,214 -"3636",0,1,0,60,3,1,4,1,7,6,1,0,214 -"3637",0,1,0,58,1,1,4,1,7,6,0,0,214 -"3638",0,1,0,35,5,1,4,1,6,6,0,0,214 -"3639",0,1,1,41,4,1,4,1,4,6,0,0,214 -"3640",0,1,0,61,1,1,4,1,12,6,1,0,214 -"3641",0,1,1,29,2,1,4,0,9,6,1,0,214 -"3642",0,1,0,53,2,1,4,0,8,6,0,0,214 -"3643",1,0,1,50,4,1,4,0,6,6,0,0,214 -"3644",0,1,0,58,2,1,4,1,10,6,1,0,214 -"3645",0,1,0,50,3,1,4,1,8,6,0,0,214 -"3646",0,1,1,45,1,1,4,1,8,6,1,0,214 -"3647",0,1,0,44,1,1,4,1,10,6,1,0,214 -"3648",0,1,1,61,1,1,4,0,8,6,1,0,214 -"3649",1,1,1,64,1,1,4,0,9,1,0,1,215 -"3650",0,1,1,50,3,1,4,1,10,1,0,1,215 -"3651",0,0,0,62,2,1,4,0,11,1,1,1,215 -"3652",0,1,1,62,3,1,4,0,11,1,0,1,215 -"3653",0,1,1,65,2,1,4,0,11,1,1,1,215 -"3654",0,1,0,62,5,1,4,1,11,1,1,1,215 -"3655",0,1,0,52,1,1,4,1,11,1,1,1,215 -"3656",0,1,0,56,2,1,4,1,9,1,1,1,215 -"3657",0,1,0,40,2,1,4,1,10,1,0,1,215 -"3658",0,1,0,62,1,1,4,1,12,1,1,1,215 -"3659",0,1,1,58,1,1,4,1,13,1,1,1,215 -"3660",0,1,0,53,3,1,4,1,7,1,0,1,215 -"3661",0,1,0,55,1,1,4,1,11,1,1,1,215 -"3662",0,1,0,49,1,1,4,0,8,1,0,1,215 -"3663",0,1,0,58,2,1,4,1,6,1,0,1,215 -"3664",0,0,1,66,1,1,4,0,12,1,1,1,215 -"3665",0,1,0,48,2,1,4,1,10,1,0,1,215 -"3666",0,1,1,65,3,1,4,1,10,1,1,1,215 -"3667",0,1,0,47,1,1,4,1,10,1,0,1,215 -"3668",0,1,0,39,4,1,5,0,10,1,1,0,216 -"3669",0,1,1,60,1,1,5,1,9,1,0,0,216 -"3670",0,1,0,60,1,1,5,0,11,1,0,0,216 -"3671",0,1,1,45,2,1,5,1,8,1,0,0,216 -"3672",0,1,1,65,1,1,5,1,11,1,1,0,216 -"3673",0,1,0,64,1,1,5,0,11,1,0,0,216 -"3674",0,1,0,51,2,1,5,1,10,1,1,0,216 -"3675",0,1,1,62,1,1,5,1,10,1,1,0,216 -"3676",0,1,1,61,2,1,5,1,11,1,1,0,216 -"3677",0,1,1,48,4,1,5,1,9,1,1,0,216 -"3678",0,1,0,60,2,1,5,1,11,1,1,0,216 -"3679",0,1,1,64,2,1,5,0,8,1,1,0,216 -"3680",0,1,1,53,1,1,5,0,12,1,1,0,216 -"3681",0,0,0,37,3,1,5,1,9,1,1,0,216 -"3682",0,1,0,58,3,1,5,0,8,1,0,0,216 -"3683",0,1,0,45,2,1,5,1,6,1,0,0,216 -"3684",0,1,1,57,3,1,5,1,10,1,0,0,216 -"3685",0,1,0,60,4,1,5,0,6,1,0,0,216 -"3686",0,1,1,54,2,1,5,1,12,1,1,0,216 -"3687",0,1,1,53,1,1,5,0,11,1,0,0,216 -"3688",0,1,0,69,3,1,5,0,11,1,1,1,217 -"3689",0,1,0,59,2,1,5,1,11,1,0,1,217 -"3690",0,0,0,54,2,1,5,1,12,1,1,1,217 -"3691",0,1,0,65,1,1,5,1,13,1,1,1,217 -"3692",0,1,0,54,3,1,5,1,13,1,1,1,217 -"3693",0,1,0,54,1,1,5,1,12,1,1,1,217 -"3694",0,1,0,53,2,1,5,1,13,1,1,1,217 -"3695",0,1,1,56,4,1,5,1,12,1,0,1,217 -"3696",0,1,0,66,2,1,5,1,12,1,0,1,217 -"3697",0,1,0,52,2,1,5,1,11,1,1,1,217 -"3698",0,1,0,48,2,1,5,0,9,1,0,1,217 -"3699",0,1,0,59,1,1,5,1,12,1,1,1,217 -"3700",0,1,1,58,2,1,5,0,12,1,1,1,217 -"3701",0,1,1,45,3,1,5,0,13,1,1,1,217 -"3702",0,1,0,57,5,1,5,0,11,1,1,1,217 -"3703",0,1,0,63,1,1,5,1,13,1,1,1,217 -"3704",0,1,0,61,1,1,5,1,11,1,1,1,217 -"3705",0,0,0,62,1,1,5,0,9,1,0,1,217 -"3706",0,1,1,55,1,1,5,0,10,1,1,1,217 -"3707",0,1,1,64,2,0,4,1,11,1,1,1,218 -"3708",0,1,0,64,3,0,4,1,10,1,1,1,218 -"3709",0,1,1,49,3,0,4,1,11,1,1,1,218 -"3710",0,1,0,58,2,0,4,1,12,1,1,1,218 -"3711",0,1,0,52,2,0,4,1,11,1,0,1,218 -"3712",0,1,0,56,2,0,4,1,13,1,1,1,218 -"3713",1,1,1,53,2,0,4,1,13,1,1,1,218 -"3714",0,1,0,62,3,0,4,1,13,1,1,1,218 -"3715",0,1,0,53,1,0,4,1,12,1,1,1,218 -"3716",0,1,0,47,3,0,4,1,12,1,1,1,218 -"3717",0,1,0,71,3,0,4,1,10,1,1,1,218 -"3718",0,1,1,57,2,0,4,1,13,1,1,1,218 -"3719",1,1,0,58,1,0,4,1,9,1,0,1,218 -"3720",0,1,0,69,2,0,4,1,10,1,1,1,218 -"3721",0,1,0,69,3,0,4,0,12,1,1,1,218 -"3722",0,1,0,45,2,0,4,1,11,1,1,1,218 -"3723",0,1,0,57,3,0,4,1,12,1,1,1,218 -"3724",0,1,0,64,2,0,4,1,12,1,1,1,218 -"3725",0,1,1,59,3,0,4,1,13,1,1,1,218 -"3726",0,1,0,59,2,0,4,1,8,1,1,1,218 -"3727",0,1,0,62,5,0,4,1,9,1,1,1,218 -"3728",0,1,1,51,1,0,4,1,13,1,1,1,218 -"3729",0,1,1,54,2,0,4,1,12,1,1,1,218 -"3730",0,1,1,61,2,0,5,0,13,1,0,1,219 -"3731",0,1,0,46,3,0,5,0,10,1,1,1,219 -"3732",1,1,1,72,1,0,5,0,13,1,1,1,219 -"3733",0,1,1,52,1,0,5,0,11,1,0,1,219 -"3734",0,1,1,54,2,0,5,0,10,1,1,1,219 -"3735",1,1,0,45,2,0,5,0,12,1,1,1,219 -"3736",0,1,0,59,1,0,5,0,11,1,0,1,219 -"3737",1,1,1,56,1,0,5,0,12,1,1,1,219 -"3738",0,1,0,63,2,0,5,0,10,1,0,1,219 -"3739",0,1,1,55,1,0,5,0,12,1,0,1,219 -"3740",0,1,1,48,2,0,5,0,8,1,1,1,219 -"3741",0,1,0,60,1,0,5,0,9,1,1,1,219 -"3742",0,1,1,59,1,0,5,0,12,1,0,1,219 -"3743",1,0,0,46,4,0,5,0,11,1,1,1,219 -"3744",0,1,0,52,1,0,5,0,10,1,1,1,219 -"3745",0,1,1,52,1,0,5,0,10,1,1,1,219 -"3746",0,1,0,47,1,0,5,0,11,1,1,1,219 -"3747",0,1,0,62,1,0,5,0,11,1,1,1,219 -"3748",1,1,1,71,5,0,5,0,13,1,1,1,219 -"3749",0,1,1,65,2,0,5,0,12,1,0,1,219 -"3750",0,1,1,55,2,0,5,0,12,1,1,1,219 -"3751",0,1,0,48,5,1,3,0,2,7,0,0,220 -"3752",0,1,1,46,2,1,3,0,8,7,1,0,220 -"3753",0,1,1,36,2,1,3,1,5,7,1,0,220 -"3754",0,0,1,35,4,1,3,0,6,7,0,0,220 -"3755",0,1,1,33,5,1,3,1,9,7,0,0,220 -"3756",1,1,1,34,3,1,3,0,7,7,0,0,220 -"3757",0,1,0,51,1,1,3,0,11,7,0,0,220 -"3758",0,0,1,30,3,1,3,0,3,7,0,0,220 -"3759",1,1,0,47,3,1,3,0,5,7,0,0,220 -"3760",0,1,1,38,5,1,3,0,10,7,0,0,220 -"3761",1,1,0,33,5,1,3,1,5,7,0,0,220 -"3762",0,0,1,32,2,1,3,0,6,7,0,0,220 -"3763",0,1,0,39,2,1,3,1,8,7,0,0,220 -"3764",0,1,0,59,2,1,4,1,9,1,1,0,221 -"3765",0,1,0,48,3,1,4,1,12,1,1,0,221 -"3766",0,1,1,56,2,1,4,1,7,1,0,0,221 -"3767",0,1,0,49,1,1,4,1,9,1,0,0,221 -"3768",0,1,0,68,1,1,4,0,11,1,1,0,221 -"3769",0,0,0,50,4,1,4,0,11,1,0,0,221 -"3770",0,1,0,58,2,1,4,0,13,1,1,0,221 -"3771",0,1,0,57,3,1,4,0,11,1,0,1,222 -"3772",0,0,1,51,3,1,4,1,12,1,1,1,222 -"3773",0,1,0,45,2,1,4,1,10,1,1,1,222 -"3774",0,1,0,47,2,1,4,1,11,1,0,1,222 -"3775",0,1,0,60,1,1,4,1,12,1,1,1,222 -"3776",0,1,1,53,2,1,4,1,10,1,1,1,222 -"3777",0,1,0,61,1,1,4,1,10,1,0,1,222 -"3778",0,1,1,48,3,1,4,1,12,1,1,1,222 -"3779",0,1,0,60,2,1,4,1,11,1,0,1,222 -"3780",0,1,0,55,2,1,4,1,12,1,1,1,222 -"3781",0,1,1,52,2,1,4,1,12,1,1,1,222 -"3782",0,1,1,60,1,1,4,1,10,1,1,1,222 -"3783",0,1,1,52,1,1,4,1,7,1,0,1,222 -"3784",1,0,1,57,4,1,4,1,9,1,1,1,222 -"3785",0,1,1,59,2,1,4,1,8,1,1,1,222 -"3786",0,1,1,61,2,1,4,1,10,1,1,1,222 -"3787",0,1,0,59,3,1,4,1,12,1,1,1,222 -"3788",0,1,0,49,2,1,4,1,11,1,1,1,222 -"3789",0,1,0,64,2,1,4,0,8,1,0,1,222 -"3790",0,1,0,43,2,1,3,0,11,3,1,0,223 -"3791",0,1,1,49,3,1,3,1,7,3,1,0,223 -"3792",0,1,1,47,2,1,3,0,10,3,0,0,223 -"3793",0,0,0,36,5,1,3,1,9,3,0,0,223 -"3794",0,1,0,35,2,1,3,1,12,3,1,0,223 -"3795",0,1,1,45,2,1,3,0,9,3,0,0,223 -"3796",0,1,0,60,2,1,3,1,10,3,1,0,223 -"3797",1,1,1,59,2,1,3,0,11,3,0,0,223 -"3798",0,1,0,59,1,1,3,1,10,3,0,0,223 -"3799",0,1,1,52,4,1,3,1,10,3,0,0,223 -"3800",0,1,1,56,3,1,3,1,11,3,0,0,223 -"3801",0,1,1,51,1,1,3,1,9,3,0,0,223 -"3802",0,1,1,53,1,1,3,0,10,3,0,0,223 -"3803",0,1,0,44,2,1,3,1,6,4,0,0,224 -"3804",0,1,1,48,2,1,3,1,4,4,0,0,224 -"3805",0,1,1,42,2,1,3,0,7,4,0,0,224 -"3806",0,1,0,51,1,1,3,1,10,4,0,0,224 -"3807",0,1,0,48,3,1,3,1,7,4,0,0,224 -"3808",0,0,1,48,1,1,3,0,9,4,0,0,224 -"3809",0,1,0,71,1,1,3,1,9,4,0,0,224 -"3810",0,1,0,58,2,1,3,0,9,4,0,0,224 -"3811",0,1,1,61,1,1,3,1,9,4,0,0,224 -"3812",0,1,0,49,2,1,3,1,5,4,0,0,224 -"3813",0,1,0,61,1,1,3,1,10,4,1,0,224 -"3814",0,1,0,43,2,1,3,1,9,4,0,0,224 -"3815",0,1,1,58,3,1,5,1,10,3,1,0,225 -"3816",0,1,0,54,2,1,5,1,11,3,0,0,225 -"3817",0,1,0,44,2,1,5,1,9,3,0,0,225 -"3818",0,1,0,40,1,1,5,1,11,3,1,0,225 -"3819",0,1,0,49,1,1,5,1,7,3,1,0,225 -"3820",0,1,1,56,2,1,5,0,10,3,0,0,225 -"3821",0,1,0,49,2,1,5,1,13,3,0,0,225 -"3822",0,1,0,38,1,1,5,1,10,3,1,0,225 -"3823",0,1,0,48,2,1,5,0,10,3,0,0,225 -"3824",0,1,1,69,2,1,5,1,6,3,0,0,225 -"3825",0,1,1,57,1,1,5,1,10,3,0,0,225 -"3826",0,1,1,52,2,1,5,0,11,3,0,0,225 -"3827",1,1,1,44,4,1,5,0,9,3,0,0,225 -"3828",0,1,1,56,3,1,5,1,9,3,0,0,225 -"3829",0,1,0,52,2,1,5,1,9,3,0,0,225 -"3830",0,0,0,46,4,1,4,0,13,1,1,0,226 -"3831",0,1,0,43,5,1,4,1,8,1,0,0,226 -"3832",0,1,0,62,2,1,4,0,9,1,0,0,226 -"3833",0,1,0,59,2,1,4,0,12,1,0,0,226 -"3834",0,0,0,76,3,1,4,0,9,1,0,0,226 -"3835",0,1,0,59,3,1,4,1,10,1,1,0,226 -"3836",0,1,0,52,3,1,4,1,11,1,1,0,226 -"3837",0,1,0,55,3,1,4,0,10,1,1,0,226 -"3838",0,1,1,52,2,1,4,0,10,1,0,0,226 -"3839",0,1,0,62,3,1,4,1,11,1,1,0,226 -"3840",1,1,1,60,3,1,4,0,12,1,1,0,226 -"3841",0,1,0,57,3,1,4,1,10,1,0,0,226 -"3842",0,1,0,52,2,1,4,1,10,1,0,0,226 -"3843",0,1,0,54,1,1,4,0,11,1,0,0,226 -"3844",0,1,0,61,2,1,4,0,11,1,1,0,226 -"3845",0,1,1,61,3,1,4,0,10,1,1,0,226 -"3846",0,1,0,57,2,1,4,0,10,1,0,0,226 -"3847",0,1,0,40,2,1,4,1,13,1,1,0,226 -"3848",0,1,0,48,2,1,4,1,9,1,0,0,226 -"3849",0,1,1,58,1,1,4,0,11,1,0,0,226 -"3850",0,1,0,63,2,1,4,0,10,1,1,0,226 -"3851",0,1,0,58,3,1,4,1,11,1,1,0,226 -"3852",0,1,0,54,1,1,4,1,10,1,1,0,226 -"3853",1,1,1,68,1,1,4,0,11,1,0,0,226 -"3854",0,0,1,59,3,1,4,1,12,1,1,0,226 -"3855",0,1,0,53,3,1,4,1,9,1,1,0,226 -"3856",0,1,0,48,3,1,4,1,12,1,1,0,226 -"3857",0,1,1,60,2,1,4,1,10,1,0,0,226 -"3858",0,1,0,50,2,1,4,0,10,1,1,0,226 -"3859",0,1,1,60,2,1,4,1,11,1,1,0,226 -"3860",1,1,0,69,2,1,4,0,11,1,0,0,226 -"3861",0,1,0,52,2,1,4,0,11,1,1,0,226 -"3862",0,1,0,54,3,1,4,0,12,1,1,0,226 -"3863",0,1,1,47,3,1,4,1,11,1,1,0,226 -"3864",0,1,0,37,2,1,4,0,8,3,0,0,227 -"3865",0,1,0,64,4,1,4,0,12,3,0,0,227 -"3866",1,1,1,42,2,1,4,0,11,3,1,0,227 -"3867",0,1,1,54,3,1,4,0,3,3,0,0,227 -"3868",0,1,1,50,3,1,4,1,5,3,0,0,227 -"3869",0,1,1,60,3,1,4,0,9,3,0,0,227 -"3870",0,1,0,58,1,1,4,1,12,3,1,0,227 -"3871",1,0,1,58,5,1,4,0,11,3,1,0,227 -"3872",1,1,0,45,1,1,4,1,7,3,1,0,227 -"3873",1,1,0,40,5,1,4,1,10,6,0,0,228 -"3874",0,1,0,48,3,1,4,0,10,6,1,0,228 -"3875",0,1,0,47,3,1,4,0,6,6,0,0,228 -"3876",0,1,1,55,2,1,4,1,9,6,1,0,228 -"3877",0,1,1,31,2,1,4,1,6,6,1,0,228 -"3878",0,1,1,48,3,1,4,0,7,6,0,0,228 -"3879",0,1,1,50,5,1,4,1,7,6,0,0,228 -"3880",0,1,0,30,2,1,4,1,10,6,0,0,228 -"3881",0,1,0,40,2,1,4,1,13,6,0,0,228 -"3882",0,1,0,71,2,1,4,0,3,5,0,0,229 -"3883",0,1,0,69,3,1,4,1,11,5,0,0,229 -"3884",0,1,0,50,2,1,4,1,9,5,1,0,229 -"3885",1,1,1,54,5,1,4,1,8,5,1,0,229 -"3886",1,1,0,56,3,1,4,1,7,5,0,0,229 -"3887",0,1,0,45,5,1,4,1,5,5,1,0,229 -"3888",0,1,1,46,2,1,4,0,3,5,0,0,229 -"3889",0,1,0,51,3,1,4,1,2,5,0,0,229 -"3890",1,1,0,60,1,1,4,0,8,5,1,0,229 -"3891",0,1,0,23,3,1,4,1,5,5,0,0,229 -"3892",0,0,0,48,3,1,4,0,9,5,1,0,229 -"3893",0,1,0,46,2,1,4,1,6,5,0,0,229 -"3894",0,1,0,47,5,1,4,1,9,5,0,0,229 -"3895",0,1,1,45,4,1,4,0,4,5,0,0,229 -"3896",0,1,0,42,5,1,4,1,9,5,1,0,229 -"3897",1,1,1,49,2,1,4,0,8,5,0,0,229 -"3898",0,1,1,43,2,1,4,0,4,5,0,0,229 -"3899",0,1,0,49,3,1,5,1,9,2,1,0,230 -"3900",0,1,0,57,1,1,5,1,12,2,1,0,230 -"3901",0,1,1,50,1,1,5,0,12,2,1,0,230 -"3902",0,1,0,59,2,1,5,1,12,2,1,0,230 -"3903",0,1,1,48,1,1,5,0,5,2,0,0,230 -"3904",0,0,1,57,2,1,5,1,11,2,1,0,230 -"3905",0,1,0,27,5,1,5,1,5,2,0,0,230 -"3906",0,1,0,66,2,1,5,0,13,2,1,0,230 -"3907",0,1,0,56,1,1,5,0,8,2,1,0,230 -"3908",0,1,1,61,1,1,5,0,11,2,1,0,230 -"3909",0,1,1,55,3,1,5,1,11,2,1,0,230 -"3910",0,1,1,80,1,1,5,0,11,2,1,0,230 -"3911",0,1,0,49,2,1,5,1,7,2,0,0,230 -"3912",0,1,1,55,5,1,4,1,13,2,1,0,231 -"3913",0,1,1,49,1,1,4,0,7,2,1,0,231 -"3914",0,1,0,55,5,1,4,1,13,2,1,0,231 -"3915",0,1,0,57,1,1,4,0,9,2,1,0,231 -"3916",1,1,1,37,2,1,4,1,9,2,0,0,231 -"3917",0,1,0,53,1,1,4,1,12,2,1,0,231 -"3918",0,1,1,58,3,1,4,0,11,2,1,0,231 -"3919",0,1,1,61,2,1,4,0,10,2,1,0,231 -"3920",0,1,0,46,5,1,4,0,11,2,0,0,231 -"3921",1,1,0,44,4,1,4,0,9,2,1,0,231 -"3922",0,1,1,66,3,1,4,1,12,2,1,0,231 -"3923",0,1,0,51,4,1,4,0,11,2,1,0,231 -"3924",0,1,0,49,1,1,4,0,10,2,1,0,231 -"3925",0,1,1,38,2,1,4,0,12,2,1,0,231 -"3926",1,1,0,41,3,1,4,1,12,2,1,0,231 -"3927",0,1,0,55,2,1,4,0,8,4,0,0,232 -"3928",0,1,0,48,2,1,4,0,8,4,0,0,232 -"3929",0,1,0,55,2,1,4,1,8,4,1,0,232 -"3930",1,1,0,48,2,1,4,0,11,4,0,0,232 -"3931",0,1,0,49,1,1,4,1,11,4,0,0,232 -"3932",0,1,0,32,1,1,4,1,11,4,0,0,232 -"3933",0,1,0,55,1,1,4,1,9,4,0,0,232 -"3934",0,1,0,42,1,1,4,1,8,4,0,0,232 -"3935",0,1,0,54,1,1,4,0,7,4,0,0,232 -"3936",0,1,1,46,3,1,4,1,9,4,0,0,232 -"3937",1,1,0,46,2,1,4,0,2,4,0,0,232 -"3938",0,1,1,72,1,1,4,1,9,4,1,0,232 -"3939",0,1,0,60,1,1,4,1,10,4,1,0,232 -"3940",0,1,1,49,2,1,4,1,5,4,0,0,232 -"3941",0,1,1,64,2,1,4,1,9,4,0,0,232 -"3942",0,1,0,49,1,1,4,1,9,4,0,0,232 -"3943",0,1,1,54,2,1,5,1,7,1,0,0,233 -"3944",0,1,0,45,1,1,5,0,7,1,0,0,233 -"3945",0,1,0,71,3,1,5,1,12,1,1,0,233 -"3946",0,1,1,64,3,1,5,0,11,1,1,0,233 -"3947",0,1,0,65,3,1,5,1,12,1,1,0,233 -"3948",0,1,0,66,3,1,5,0,13,1,1,0,233 -"3949",0,1,0,57,4,1,5,0,13,1,1,0,233 -"3950",0,1,0,57,2,1,5,0,13,1,1,0,233 -"3951",0,1,0,54,2,1,5,1,8,1,1,0,233 -"3952",1,1,0,58,2,1,5,0,12,1,1,0,233 -"3953",0,1,0,64,1,1,5,1,12,1,1,0,233 -"3954",0,1,0,63,2,1,5,1,12,1,1,0,233 -"3955",0,1,0,64,3,1,5,1,12,1,1,0,233 -"3956",0,1,1,48,2,1,5,1,9,1,0,0,233 -"3957",0,1,1,62,2,1,5,1,13,1,0,0,233 -"3958",0,1,0,60,1,1,5,0,16,1,1,0,233 -"3959",0,1,0,63,2,1,5,1,12,1,1,0,233 -"3960",0,1,0,52,2,1,5,0,12,1,1,0,233 -"3961",0,1,0,62,1,1,5,1,11,1,1,0,233 -"3962",0,1,0,47,3,1,5,1,8,1,1,0,233 -"3963",0,1,1,54,1,1,5,0,12,1,1,0,233 -"3964",0,1,1,69,2,1,5,1,9,1,1,0,233 -"3965",0,1,0,55,1,1,5,1,1,1,0,0,233 -"3966",0,1,1,65,4,1,5,1,10,1,1,0,233 -"3967",0,1,1,62,1,1,5,1,11,4,0,0,234 -"3968",0,1,0,54,5,1,5,1,10,4,0,0,234 -"3969",1,0,0,40,2,1,5,0,7,4,0,0,234 -"3970",0,0,0,59,5,1,5,0,9,4,0,0,234 -"3971",0,1,0,56,1,1,5,1,9,4,0,0,234 -"3972",0,1,0,51,4,1,5,1,7,4,0,0,234 -"3973",0,1,0,47,2,1,5,1,9,4,0,0,234 -"3974",0,1,0,61,5,1,5,1,9,4,1,0,234 -"3975",0,1,0,47,1,1,5,1,7,4,0,0,234 -"3976",0,1,1,45,4,1,5,0,10,4,0,0,234 -"3977",0,1,1,43,4,1,5,1,9,4,0,0,234 -"3978",1,1,1,47,3,1,5,1,8,4,0,0,234 -"3979",0,1,0,40,3,1,5,0,10,4,0,0,234 -"3980",0,1,0,50,2,1,5,1,11,4,1,0,234 -"3981",0,1,1,54,4,1,5,1,7,4,0,0,234 -"3982",0,1,0,44,4,1,5,1,11,4,1,0,234 -"3983",0,1,0,69,1,1,4,0,1,5,0,0,235 -"3984",0,1,1,37,3,1,4,0,5,5,1,0,235 -"3985",1,1,1,30,4,1,4,1,9,5,1,0,235 -"3986",0,1,1,67,3,1,4,0,9,5,0,0,235 -"3987",1,0,0,50,5,1,4,1,5,5,0,0,235 -"3988",0,1,1,43,5,1,4,1,8,5,0,0,235 -"3989",0,0,1,42,4,1,4,1,9,5,0,0,235 -"3990",0,1,0,50,3,1,4,1,7,5,1,0,235 -"3991",0,1,0,49,2,1,4,1,11,2,1,0,236 -"3992",0,1,1,40,1,1,4,1,10,2,0,0,236 -"3993",0,1,1,47,1,1,4,1,9,2,0,0,236 -"3994",0,1,0,69,1,1,4,0,11,2,0,0,236 -"3995",1,1,0,45,3,1,4,1,8,2,1,0,236 -"3996",1,1,1,55,2,1,4,0,9,2,1,0,236 -"3997",0,1,1,48,1,1,4,0,10,2,0,0,236 -"3998",0,1,0,57,1,1,4,1,11,2,1,0,236 -"3999",0,1,0,61,1,1,4,1,10,2,1,0,236 -"4000",0,1,1,48,1,1,4,0,12,2,1,0,236 -"4001",0,1,0,72,1,1,4,1,10,2,0,0,236 -"4002",0,1,0,62,1,1,4,1,9,2,0,0,236 -"4003",1,1,1,65,2,1,4,0,9,2,0,0,236 -"4004",0,1,1,49,1,1,4,1,8,2,0,0,236 -"4005",0,1,1,57,3,1,4,0,10,2,0,0,236 -"4006",0,1,1,30,2,1,4,1,10,2,0,0,236 -"4007",0,1,0,52,1,1,4,0,11,2,0,0,236 -"4008",0,1,1,47,1,1,4,1,9,2,0,0,236 -"4009",1,1,0,66,2,1,4,0,10,2,1,0,236 -"4010",0,1,1,46,1,1,4,1,8,2,0,0,236 -"4011",0,1,0,61,1,1,4,1,10,2,0,0,236 -"4012",0,1,0,48,2,1,4,1,8,2,0,0,236 -"4013",0,1,1,38,1,1,4,1,7,2,1,0,236 -"4014",0,1,1,47,3,1,4,1,12,2,0,0,236 -"4015",0,1,1,54,2,1,4,1,10,2,0,0,236 -"4016",0,1,1,48,3,1,4,0,12,1,0,0,237 -"4017",0,1,0,58,2,1,4,1,7,1,1,0,237 -"4018",1,1,0,43,2,1,4,1,8,1,0,0,237 -"4019",0,1,0,40,2,1,4,1,6,1,0,0,237 -"4020",0,1,0,61,2,1,4,0,9,1,0,0,237 -"4021",0,0,0,62,1,1,4,0,10,1,1,0,237 -"4022",0,1,0,59,3,1,4,1,12,1,1,0,237 -"4023",0,1,0,56,2,1,4,0,12,1,0,0,237 -"4024",1,1,1,40,2,1,4,0,11,1,0,0,237 -"4025",0,1,0,25,3,1,4,1,10,1,0,0,237 -"4026",0,1,0,62,2,1,4,0,10,1,0,0,237 -"4027",0,1,0,44,2,1,4,1,7,1,1,0,237 -"4028",0,1,0,36,2,1,4,0,7,1,1,0,237 -"4029",1,1,0,54,4,1,4,0,10,1,0,0,237 -"4030",0,1,1,51,1,1,4,0,12,1,0,0,237 -"4031",0,1,0,56,2,1,4,1,9,1,1,0,237 -"4032",0,1,0,64,2,1,4,0,10,1,0,0,237 -"4033",0,1,0,57,2,1,4,1,8,1,1,0,237 -"4034",0,1,1,46,5,1,4,0,6,1,0,0,237 -"4035",0,1,0,56,3,1,4,0,10,1,1,0,237 -"4036",0,1,1,51,2,1,4,0,7,1,0,0,237 -"4037",0,1,0,56,2,1,4,0,11,1,0,0,237 -"4038",0,1,0,60,4,1,4,0,10,1,0,0,237 -"4039",0,1,0,52,2,1,4,0,10,1,0,0,237 -"4040",0,1,1,55,2,1,4,1,11,4,1,0,238 -"4041",0,1,1,64,2,1,4,1,9,4,1,0,238 -"4042",0,1,1,49,2,1,4,0,10,4,1,0,238 -"4043",1,1,1,55,2,1,4,0,12,4,1,0,238 -"4044",0,1,1,67,2,1,4,0,12,4,0,0,238 -"4045",0,1,1,55,1,1,4,0,12,4,1,0,238 -"4046",0,1,1,60,1,1,4,0,10,4,1,0,238 -"4047",0,1,1,58,2,1,4,0,12,4,1,0,238 -"4048",0,1,0,52,3,1,4,0,13,4,0,0,238 -"4049",0,1,1,47,2,1,4,1,9,4,0,0,238 -"4050",0,1,0,59,5,1,4,1,11,4,1,0,238 -"4051",0,1,1,52,1,1,4,0,5,4,0,0,238 -"4052",0,0,0,59,2,1,4,0,10,4,1,0,238 -"4053",0,1,1,60,1,1,4,1,10,4,1,0,238 -"4054",0,1,1,47,2,1,4,0,9,4,0,0,238 -"4055",0,1,1,39,3,1,4,1,10,4,0,0,238 -"4056",0,1,1,56,2,1,4,1,10,4,0,0,238 -"4057",0,1,0,61,2,1,5,0,11,5,0,0,239 -"4058",0,1,1,48,5,1,5,0,11,5,1,0,239 -"4059",0,1,0,55,2,1,5,1,10,5,1,0,239 -"4060",0,0,0,44,3,1,5,1,9,5,0,0,239 -"4061",0,1,0,51,2,1,5,0,2,5,0,0,239 -"4062",0,1,1,47,2,1,5,0,9,5,0,0,239 -"4063",0,1,0,50,3,1,5,1,8,5,0,0,239 -"4064",0,1,1,41,3,1,5,0,10,5,0,0,239 -"4065",0,1,0,57,3,1,5,0,12,5,1,0,239 -"4066",0,1,0,24,3,1,5,1,7,5,0,0,239 -"4067",0,1,0,36,2,1,5,1,8,5,0,0,239 -"4068",0,1,0,64,1,1,5,0,6,5,0,0,239 -"4069",0,1,0,46,3,1,5,1,8,5,0,0,239 -"4070",0,1,1,46,2,1,5,0,10,5,1,0,239 -"4071",1,1,1,41,1,1,5,0,11,5,1,0,239 -"4072",0,1,1,37,2,1,5,0,5,5,0,0,239 -"4073",0,0,0,62,3,1,4,1,11,1,0,0,240 -"4074",0,1,0,68,1,1,4,0,12,1,1,0,240 -"4075",0,1,1,54,1,1,4,1,12,1,0,0,240 -"4076",0,1,1,56,5,1,4,1,8,1,0,0,240 -"4077",0,1,0,68,2,1,4,1,10,1,1,0,240 -"4078",0,1,1,55,3,1,4,1,10,1,1,0,240 -"4079",0,0,1,47,4,1,4,0,8,1,0,0,240 -"4080",0,1,0,65,1,1,4,0,9,1,1,0,240 -"4081",0,1,0,55,3,1,4,1,10,1,0,0,240 -"4082",0,1,0,53,1,1,4,1,12,1,1,0,240 -"4083",0,1,1,60,2,1,4,0,10,1,1,0,240 -"4084",0,1,0,55,2,1,4,1,11,1,1,0,240 -"4085",0,1,0,60,3,1,4,0,12,1,1,0,240 -"4086",0,1,0,63,3,1,4,1,11,1,1,0,240 -"4087",0,1,0,65,1,1,4,1,10,1,1,0,240 -"4088",0,0,0,41,5,1,4,0,8,1,0,0,240 -"4089",0,1,0,72,2,1,4,0,10,1,1,0,240 -"4090",0,1,0,58,2,1,4,0,10,1,0,0,240 -"4091",0,1,1,60,3,1,4,1,10,1,1,0,240 -"4092",0,1,1,45,2,1,4,0,10,5,1,0,241 -"4093",0,1,1,49,2,1,4,1,10,5,0,0,241 -"4094",0,1,0,49,2,1,4,0,12,5,1,0,241 -"4095",0,1,1,49,1,1,4,1,8,5,0,0,241 -"4096",0,1,0,65,1,1,4,0,7,5,0,0,241 -"4097",1,0,0,34,2,1,4,1,2,5,0,0,241 -"4098",1,1,1,40,5,1,4,0,7,5,0,0,241 -"4099",1,1,1,36,5,1,4,0,6,5,0,0,241 -"4100",0,1,0,54,1,1,4,1,9,5,0,0,241 -"4101",0,0,1,53,1,1,4,0,9,5,0,0,241 -"4102",0,1,0,57,2,1,4,1,9,5,0,0,241 -"4103",1,1,0,36,1,1,4,1,10,5,1,0,241 -"4104",1,1,0,42,1,1,4,0,9,5,0,0,241 -"4105",0,1,0,62,2,1,4,1,9,5,0,0,241 -"4106",1,1,0,58,1,1,4,0,11,5,0,0,241 -"4107",0,1,1,33,1,1,4,0,9,5,0,0,241 -"4108",0,1,1,64,2,1,4,1,11,5,1,0,241 -"4109",1,1,0,40,3,1,4,0,10,5,0,0,241 -"4110",0,1,0,41,5,1,4,0,5,5,0,0,241 -"4111",1,1,0,35,2,1,4,0,7,5,0,0,241 -"4112",1,0,0,47,3,1,4,1,6,5,0,0,241 -"4113",0,1,0,56,1,1,4,0,4,5,0,0,241 -"4114",0,1,0,45,1,1,4,0,10,3,1,0,242 -"4115",0,1,0,51,1,1,4,1,10,3,0,0,242 -"4116",0,1,1,48,2,1,4,1,12,3,1,0,242 -"4117",0,1,0,67,2,1,4,0,11,3,0,0,242 -"4118",0,1,1,42,3,1,4,0,6,3,0,0,242 -"4119",0,1,0,55,1,1,4,1,12,3,1,0,242 -"4120",0,1,1,56,3,1,4,0,10,3,0,0,242 -"4121",0,1,1,56,1,1,4,1,8,3,0,0,242 -"4122",0,1,0,23,3,1,4,1,10,3,1,0,242 -"4123",1,1,0,35,2,1,4,0,6,3,0,0,242 -"4124",1,1,0,48,2,1,4,1,13,3,1,0,242 -"4125",0,1,0,42,3,1,4,1,11,3,1,0,242 -"4126",0,1,0,53,1,1,4,1,12,3,0,0,242 -"4127",0,1,1,58,2,1,4,0,8,3,0,0,242 -"4128",0,1,0,58,2,1,4,0,11,3,1,0,242 -"4129",0,1,1,41,2,1,4,1,9,3,1,0,242 -"4130",0,1,0,54,1,1,4,1,8,3,0,0,242 -"4131",0,1,0,46,1,1,4,1,6,3,0,0,242 -"4132",0,1,0,54,2,1,5,1,9,5,1,0,243 -"4133",0,1,0,61,2,1,5,0,11,5,1,0,243 -"4134",0,1,0,45,2,1,5,0,8,5,0,0,243 -"4135",0,1,0,56,1,1,5,0,8,5,0,0,243 -"4136",0,1,1,49,3,1,5,1,9,5,1,0,243 -"4137",0,1,0,58,2,1,5,1,4,5,0,0,243 -"4138",0,0,0,27,2,1,5,1,2,5,0,0,243 -"4139",0,1,0,56,2,1,5,1,8,5,0,0,243 -"4140",0,1,0,61,3,1,5,1,11,5,1,0,243 -"4141",0,1,1,65,1,1,5,1,8,5,0,0,243 -"4142",0,1,1,61,2,1,5,1,9,5,0,0,243 -"4143",0,1,0,46,2,1,5,0,9,5,0,0,243 -"4144",0,1,1,46,3,1,5,0,4,5,0,0,243 -"4145",1,1,0,55,3,1,5,0,8,5,0,0,243 -"4146",0,1,1,46,1,1,5,1,9,5,0,0,243 -"4147",1,0,0,36,4,1,5,1,9,5,0,0,243 -"4148",1,1,1,53,2,1,5,0,11,5,0,0,243 -"4149",0,1,1,56,2,1,5,1,11,5,1,0,243 -"4150",0,1,0,48,1,1,5,0,11,5,0,0,243 -"4151",1,1,0,54,3,1,5,1,5,5,0,0,243 -"4152",0,0,0,62,2,1,5,0,14,5,1,0,243 -"4153",0,1,0,45,1,1,5,1,6,5,1,0,243 -"4154",1,1,1,40,3,1,5,0,4,5,0,0,243 -"4155",0,1,1,32,2,1,5,0,5,5,1,0,243 -"4156",0,1,0,50,1,1,5,1,7,5,0,0,243 -"4157",1,1,0,45,3,1,5,1,10,5,0,0,243 -"4158",0,1,1,44,2,1,5,1,10,5,0,0,243 -"4159",0,1,0,43,3,1,5,1,7,6,0,0,244 -"4160",0,1,0,35,2,1,5,1,7,6,0,0,244 -"4161",0,1,0,49,3,1,5,1,8,6,0,0,244 -"4162",1,1,1,52,1,1,5,1,9,6,0,0,244 -"4163",0,1,1,53,1,1,5,1,10,6,0,0,244 -"4164",1,1,1,45,1,1,5,0,9,6,0,0,244 -"4165",0,1,1,56,1,1,5,1,9,6,0,0,244 -"4166",0,1,1,57,1,1,5,1,12,6,1,0,244 -"4167",0,1,1,58,1,1,5,0,7,6,0,0,244 -"4168",0,1,1,50,2,1,5,0,9,6,0,0,244 -"4169",0,1,1,59,2,1,5,1,8,6,1,0,244 -"4170",0,0,1,58,4,1,5,0,7,6,0,0,244 -"4171",0,1,0,55,1,1,5,1,9,6,0,0,244 -"4172",0,1,1,44,1,1,5,1,10,6,1,0,244 -"4173",0,1,0,51,1,1,5,0,6,6,1,0,244 -"4174",0,0,1,54,2,1,5,0,8,6,1,0,244 -"4175",0,1,0,37,2,1,5,1,9,6,0,0,244 -"4176",0,1,1,49,3,1,5,1,8,6,0,0,244 -"4177",0,1,1,55,2,1,5,1,7,6,0,0,244 -"4178",0,1,0,53,2,1,5,1,8,6,0,0,244 -"4179",0,1,1,53,1,1,5,0,11,6,0,0,244 -"4180",0,1,0,40,3,1,5,1,6,6,0,0,244 -"4181",0,0,0,38,1,1,5,1,8,6,0,0,244 -"4182",0,1,0,47,2,1,5,0,5,6,0,0,244 -"4183",1,1,1,46,1,1,5,0,6,6,0,0,244 -"4184",0,1,1,48,1,1,4,1,10,1,1,0,245 -"4185",0,1,0,44,2,1,4,0,5,1,0,0,245 -"4186",1,1,0,51,5,1,4,0,9,1,0,0,245 -"4187",0,1,1,47,3,1,4,1,11,1,0,0,245 -"4188",1,1,0,31,4,1,4,1,10,1,1,0,245 -"4189",0,1,0,64,1,1,4,0,9,1,1,0,245 -"4190",0,1,1,63,4,1,4,1,10,1,0,0,245 -"4191",0,0,1,37,2,1,4,0,8,1,0,0,245 -"4192",0,1,0,60,1,1,4,1,7,1,0,0,245 -"4193",1,1,0,55,2,1,4,0,10,1,1,0,245 -"4194",0,0,0,55,2,1,4,0,6,1,0,1,246 -"4195",0,1,0,55,2,1,4,1,6,1,1,1,246 -"4196",0,1,0,53,1,1,4,1,11,1,1,1,246 -"4197",0,1,1,53,3,1,4,1,11,1,1,1,246 -"4198",0,1,0,58,4,1,4,1,10,1,1,1,246 -"4199",0,1,1,55,3,1,4,1,11,1,1,1,246 -"4200",1,1,1,47,2,1,4,0,10,1,1,1,246 -"4201",0,0,0,56,3,1,4,0,10,1,0,1,246 -"4202",1,1,1,67,1,1,4,0,11,1,1,1,246 -"4203",0,1,0,60,4,1,4,0,11,1,0,1,246 -"4204",0,1,1,50,3,1,4,1,9,1,0,1,246 -"4205",0,1,0,61,1,1,4,1,5,1,0,1,246 -"4206",0,0,1,58,5,1,4,0,10,1,1,1,246 -"4207",0,1,0,53,2,1,4,1,10,1,1,1,246 -"4208",0,1,0,61,2,1,4,0,12,1,0,1,246 -"4209",0,1,0,48,4,1,4,1,12,1,1,1,246 -"4210",0,1,1,48,2,1,4,1,11,1,1,1,246 -"4211",0,1,0,61,4,1,4,1,6,1,1,1,246 -"4212",0,1,1,42,2,1,4,0,10,1,0,1,246 -"4213",0,1,1,40,1,1,4,0,12,1,0,1,246 -"4214",0,1,1,55,2,1,4,0,9,1,0,1,246 -"4215",0,0,0,52,2,0,5,1,12,1,1,1,247 -"4216",0,1,0,51,1,0,5,0,10,1,0,1,247 -"4217",0,1,0,71,1,0,5,1,11,1,1,1,247 -"4218",0,1,0,55,1,0,5,1,12,1,1,1,247 -"4219",0,1,0,55,2,0,5,1,9,1,1,1,247 -"4220",0,0,1,61,3,0,5,1,12,1,0,1,247 -"4221",0,1,0,47,2,0,5,1,13,1,1,1,247 -"4222",0,1,1,59,1,0,5,1,7,1,1,1,247 -"4223",0,1,0,68,1,0,5,1,10,1,1,1,247 -"4224",0,0,0,63,2,0,5,1,12,1,1,1,247 -"4225",0,1,0,53,2,0,5,1,11,1,0,1,247 -"4226",0,1,0,47,1,0,5,1,9,1,0,1,247 -"4227",0,1,0,56,3,0,5,1,11,1,1,1,247 -"4228",0,1,1,49,1,0,5,0,11,1,0,1,247 -"4229",0,1,1,61,3,0,5,1,10,1,0,1,247 -"4230",1,1,0,62,5,1,3,0,6,6,0,0,248 -"4231",1,1,1,48,5,1,3,0,7,6,0,0,248 -"4232",0,1,1,34,5,1,3,0,8,6,0,0,248 -"4233",0,1,0,36,3,1,3,1,6,6,0,0,248 -"4234",0,1,0,45,1,1,3,1,4,6,0,0,248 -"4235",1,1,1,37,3,1,3,1,9,6,1,0,248 -"4236",1,1,0,45,5,1,3,0,8,6,0,0,248 -"4237",0,1,0,67,4,1,3,0,7,6,0,0,248 -"4238",0,1,1,45,2,1,3,1,6,6,0,0,248 -"4239",0,1,1,53,2,1,3,0,8,6,0,0,248 -"4240",0,1,0,42,4,1,3,1,9,6,0,0,248 -"4241",1,1,0,44,4,1,3,0,4,6,0,0,248 -"4242",0,1,0,53,1,1,3,0,8,6,0,0,248 -"4243",0,1,0,51,1,1,3,0,11,6,0,0,248 -"4244",0,1,0,59,1,1,3,1,6,6,0,0,248 -"4245",0,1,0,49,1,1,2,1,8,7,0,0,249 -"4246",1,1,1,64,3,1,2,0,7,7,0,0,249 -"4247",1,1,0,39,3,1,2,0,9,7,0,0,249 -"4248",1,1,0,25,2,1,2,1,11,7,0,0,249 -"4249",0,1,0,32,2,1,2,1,12,7,0,0,249 -"4250",0,0,1,36,2,1,2,0,10,7,0,0,249 -"4251",1,1,1,32,5,1,2,1,6,7,0,0,249 -"4252",0,1,1,56,3,1,2,1,8,7,0,0,249 -"4253",0,1,0,35,3,1,2,0,8,7,0,0,249 -"4254",1,1,1,47,4,1,2,1,3,7,0,0,249 -"4255",0,1,0,46,3,1,2,1,8,7,0,0,249 -"4256",0,1,0,47,1,1,2,0,8,7,1,0,249 -"4257",0,1,1,38,5,1,2,0,9,7,0,0,249 -"4258",0,1,0,45,1,1,2,1,6,7,0,0,249 -"4259",0,1,1,40,2,1,2,1,9,7,0,0,249 -"4260",0,1,0,50,2,1,2,1,9,7,0,0,249 -"4261",1,1,1,44,1,1,2,0,8,7,0,0,249 -"4262",0,1,0,69,1,1,4,1,10,3,1,1,250 -"4263",0,1,0,56,1,1,4,0,9,3,0,1,250 -"4264",1,1,1,54,1,1,4,0,10,3,1,1,250 -"4265",0,1,0,67,2,1,4,1,11,3,1,1,250 -"4266",0,1,1,51,2,1,4,1,11,3,1,1,250 -"4267",0,1,0,58,1,1,4,1,9,3,0,1,250 -"4268",0,1,0,61,2,1,4,1,14,3,1,1,250 -"4269",0,1,0,52,2,1,4,0,10,3,1,1,250 -"4270",0,1,1,58,2,1,4,0,12,3,1,1,250 -"4271",1,1,0,56,1,1,4,0,10,3,0,1,250 -"4272",0,1,0,62,3,1,4,1,6,3,0,1,250 -"4273",0,1,1,45,1,1,4,1,12,3,0,1,250 -"4274",0,1,0,52,1,1,4,1,10,3,1,1,250 -"4275",0,1,1,62,2,1,4,1,12,3,1,1,250 -"4276",0,1,0,61,2,1,4,0,10,3,1,1,250 -"4277",0,1,1,37,5,1,4,1,10,5,0,0,251 -"4278",0,1,0,49,2,1,4,0,8,5,1,0,251 -"4279",0,0,0,46,1,1,4,1,5,5,0,0,251 -"4280",0,1,0,40,3,1,4,0,10,5,0,0,251 -"4281",0,1,0,33,1,1,4,0,5,5,1,0,251 -"4282",0,1,0,38,3,1,4,1,9,5,0,0,251 -"4283",0,1,1,33,1,1,4,0,7,5,0,0,251 -"4284",0,1,0,42,3,1,4,1,9,5,0,0,251 -"4285",1,1,0,45,2,1,4,0,9,5,0,0,251 -"4286",0,0,0,40,5,1,4,1,3,5,0,0,251 -"4287",0,0,1,38,5,1,4,0,8,5,1,0,251 -"4288",0,1,0,43,3,1,4,0,7,5,0,0,251 -"4289",0,1,0,47,3,1,4,0,5,5,0,0,251 -"4290",1,1,0,41,2,1,4,1,9,5,0,0,251 -"4291",1,1,1,49,3,1,4,1,11,5,1,0,251 -"4292",0,1,0,46,2,1,4,1,9,5,1,0,252 -"4293",1,1,0,53,1,1,4,0,13,5,0,0,252 -"4294",0,1,0,44,2,1,4,1,10,5,1,0,252 -"4295",1,1,1,47,3,1,4,0,13,5,1,0,252 -"4296",0,1,1,55,2,1,4,0,9,5,0,0,252 -"4297",0,1,0,57,3,1,4,0,6,5,0,0,252 -"4298",0,1,0,56,2,0,3,0,13,1,1,1,253 -"4299",0,1,0,67,1,0,3,0,11,1,1,1,253 -"4300",0,1,0,52,3,0,3,0,8,1,1,1,253 -"4301",0,1,0,57,3,0,3,0,9,1,0,1,253 -"4302",0,1,0,59,1,0,3,0,9,1,0,1,253 -"4303",1,1,0,41,2,0,3,0,4,1,0,1,253 -"4304",1,1,0,49,1,0,3,0,5,1,0,1,253 -"4305",1,1,1,46,5,0,3,0,2,1,0,1,253 -"4306",0,0,0,54,1,0,3,0,12,1,1,1,253 -"4307",0,1,0,50,2,0,3,0,11,1,0,1,253 -"4308",0,1,0,46,2,0,3,0,11,1,0,1,253 -"4309",0,1,0,51,2,0,3,0,10,1,0,1,253 -"4310",1,1,1,63,2,0,3,0,10,1,1,1,253 -"4311",1,1,0,43,2,0,3,0,9,1,0,1,253 -"4312",0,1,0,57,3,0,3,0,11,1,0,1,253 -"4313",0,1,0,56,3,0,3,0,8,1,1,1,253 -"4314",1,1,1,50,3,1,5,0,12,1,1,0,254 -"4315",0,1,1,53,2,1,5,0,11,1,0,0,254 -"4316",0,1,0,61,1,1,5,0,10,1,1,0,254 -"4317",0,1,1,63,5,1,5,1,12,1,1,0,254 -"4318",0,0,0,69,1,1,5,0,13,1,1,0,254 -"4319",0,0,0,69,1,1,5,1,10,1,1,0,254 -"4320",0,1,0,51,2,1,5,1,9,1,1,0,254 -"4321",0,1,0,61,2,1,5,1,12,1,1,0,254 -"4322",0,1,0,63,2,1,5,0,11,1,1,0,254 -"4323",0,1,0,53,2,1,5,1,8,1,1,0,254 -"4324",0,1,0,57,1,1,5,0,11,1,1,0,254 -"4325",0,1,0,56,1,1,5,0,11,1,1,0,254 -"4326",0,1,0,66,2,1,5,0,12,1,1,0,254 -"4327",0,1,1,38,2,1,4,1,11,1,1,0,255 -"4328",0,0,1,58,3,1,4,0,11,1,0,0,255 -"4329",0,1,1,48,1,1,4,0,9,1,0,0,255 -"4330",0,1,0,73,2,1,4,0,12,1,0,0,255 -"4331",0,1,1,46,1,1,4,1,11,1,0,0,255 -"4332",0,1,1,36,2,1,4,1,10,1,0,0,255 -"4333",0,1,1,48,2,1,4,1,11,1,1,0,255 -"4334",0,1,1,55,3,1,4,1,8,1,0,0,255 -"4335",0,1,1,59,2,1,4,0,10,1,1,0,255 -"4336",1,0,1,39,5,1,4,0,4,1,0,0,255 -"4337",0,1,0,44,2,1,4,0,10,1,1,0,255 -"4338",0,1,1,58,2,1,4,1,11,1,1,0,255 -"4339",0,1,0,63,1,1,4,0,10,1,0,0,255 -"4340",0,1,0,52,1,1,4,0,11,1,1,0,255 -"4341",1,1,1,49,2,1,4,0,7,1,0,0,255 -"4342",0,0,1,64,2,1,4,0,9,1,0,0,255 -"4343",0,1,0,58,2,1,4,0,10,1,1,0,255 -"4344",0,1,0,46,2,1,4,1,7,1,1,0,255 -"4345",0,1,0,63,3,1,4,0,15,1,1,0,255 -"4346",0,1,0,52,2,1,4,0,7,1,0,0,255 -"4347",1,0,1,66,5,1,4,1,12,1,0,0,255 -"4348",0,1,0,49,2,1,3,1,10,7,0,0,256 -"4349",0,1,0,41,2,1,3,0,9,7,0,0,256 -"4350",0,1,1,41,2,1,3,1,8,7,0,0,256 -"4351",0,1,0,38,3,1,3,1,10,7,0,0,256 -"4352",0,1,1,32,4,1,3,1,4,7,1,0,256 -"4353",1,0,1,37,5,1,3,1,10,7,0,0,256 -"4354",0,1,0,37,1,1,3,1,7,7,0,0,256 -"4355",1,1,0,32,4,1,3,0,10,7,0,0,256 -"4356",0,1,0,36,2,1,3,0,4,7,0,0,256 -"4357",0,1,0,61,1,1,5,1,12,1,1,0,257 -"4358",0,1,1,60,2,1,5,1,12,1,1,0,257 -"4359",0,1,0,57,2,1,5,1,11,1,0,0,257 -"4360",0,1,1,58,2,1,5,1,11,1,1,0,257 -"4361",0,0,1,43,2,1,5,0,9,1,0,0,257 -"4362",0,1,0,45,2,1,5,0,10,1,0,0,257 -"4363",0,1,0,45,3,1,5,0,9,1,1,0,257 -"4364",0,1,1,49,2,1,5,0,7,1,0,0,257 -"4365",0,1,0,61,1,1,5,0,10,1,1,0,257 -"4366",0,1,1,43,2,1,2,1,8,6,0,0,258 -"4367",0,1,1,45,2,1,2,1,7,6,0,0,258 -"4368",1,1,0,51,3,1,2,1,11,6,0,0,258 -"4369",0,1,0,48,1,1,2,1,9,6,0,0,258 -"4370",0,0,0,54,3,1,2,1,9,6,0,0,258 -"4371",0,1,1,42,3,1,2,1,5,6,0,0,258 -"4372",0,1,0,36,5,1,2,1,8,6,0,0,258 -"4373",0,1,1,41,2,1,2,1,1,6,0,0,258 -"4374",0,1,0,47,3,1,2,1,9,6,0,0,258 -"4375",0,1,0,29,5,1,2,0,10,6,1,0,258 -"4376",0,1,1,21,2,1,2,1,1,6,0,0,258 -"4377",1,1,1,40,5,1,2,0,9,6,0,0,258 -"4378",0,1,0,40,2,1,2,1,6,6,0,0,258 -"4379",1,1,0,46,2,1,2,0,10,6,0,0,258 -"4380",0,1,0,51,4,1,2,1,6,6,0,0,258 -"4381",0,1,0,56,2,1,2,1,9,6,0,0,258 -"4382",0,1,0,55,2,1,2,0,10,6,1,0,258 -"4383",0,1,0,53,2,1,3,0,9,1,0,0,259 -"4384",0,1,0,43,3,1,3,1,8,1,0,0,259 -"4385",0,1,0,53,2,1,3,1,11,1,1,0,259 -"4386",0,1,1,52,1,1,5,0,8,1,1,1,260 -"4387",0,1,1,51,2,1,5,1,10,1,1,1,260 -"4388",0,1,0,48,1,1,5,0,9,1,1,1,260 -"4389",0,1,1,60,1,1,5,1,10,1,1,1,260 -"4390",0,1,0,51,2,1,5,1,12,1,1,1,260 -"4391",0,1,1,58,3,1,5,0,10,1,1,1,260 -"4392",0,1,0,52,2,1,5,0,9,1,1,1,260 -"4393",0,0,1,44,2,1,5,1,7,1,0,1,260 -"4394",0,0,1,51,2,1,5,1,10,1,0,1,260 -"4395",0,1,1,47,2,1,5,0,11,1,1,1,260 -"4396",0,1,1,66,2,1,5,1,13,1,1,1,260 -"4397",0,1,0,58,3,1,5,0,10,1,1,1,260 -"4398",0,1,1,60,3,1,5,0,12,1,0,1,260 -"4399",0,1,0,63,2,1,5,0,12,1,1,1,260 -"4400",0,1,1,45,3,1,5,1,11,1,0,1,260 -"4401",0,1,0,44,3,1,3,1,11,1,1,1,261 -"4402",0,1,1,51,2,1,3,1,11,1,1,1,261 -"4403",0,1,0,43,1,1,3,0,10,1,1,1,261 -"4404",0,1,1,56,2,1,3,1,6,1,0,1,261 -"4405",0,1,1,37,2,1,3,1,8,1,0,1,261 -"4406",0,1,1,55,3,1,3,1,11,1,1,1,261 -"4407",1,1,1,50,4,1,3,0,5,1,0,1,261 -"4408",1,1,0,48,1,1,3,1,10,1,1,1,261 -"4409",0,1,1,56,5,1,3,0,8,1,1,1,261 -"4410",0,1,0,61,3,1,3,0,11,1,1,1,261 -"4411",0,1,0,38,4,1,3,0,11,1,1,1,261 -"4412",0,1,1,52,2,1,3,0,8,1,1,1,261 -"4413",1,1,1,36,3,1,3,1,8,1,0,1,261 -"4414",0,1,1,45,3,1,3,1,11,1,0,1,261 -"4415",0,1,1,35,3,1,3,1,9,1,0,1,261 -"4416",1,1,0,46,1,1,3,0,5,1,0,1,261 -"4417",0,1,1,39,1,1,3,1,1,1,0,1,261 -"4418",1,1,1,51,3,1,3,0,12,1,1,1,261 -"4419",0,1,1,65,1,1,5,0,10,1,0,0,262 -"4420",0,1,0,65,2,1,5,0,10,1,0,0,262 -"4421",1,1,0,31,2,1,5,0,8,1,0,0,262 -"4422",0,1,0,85,3,1,5,0,12,1,1,0,262 -"4423",0,1,1,56,2,1,5,1,12,1,0,0,262 -"4424",0,1,1,53,5,1,5,1,12,1,0,0,262 -"4425",0,1,1,44,3,1,5,0,9,1,0,0,262 -"4426",0,1,0,62,1,1,5,0,12,1,1,0,262 -"4427",0,1,0,48,1,1,5,1,11,1,1,0,262 -"4428",0,1,0,68,3,1,5,1,12,1,1,0,262 -"4429",0,1,0,57,1,1,5,1,11,1,1,0,262 -"4430",0,1,1,72,2,1,5,0,9,1,0,0,262 -"4431",0,1,1,58,1,1,5,0,8,1,1,0,262 -"4432",0,1,0,64,2,1,5,1,13,1,1,0,262 -"4433",0,1,0,61,2,1,5,0,11,1,0,0,262 -"4434",0,1,1,69,3,1,5,0,9,1,1,0,262 -"4435",0,1,1,55,2,1,5,1,12,1,1,0,262 -"4436",0,1,0,61,1,1,5,1,9,1,0,0,262 -"4437",1,1,0,37,2,1,5,0,9,1,0,0,262 -"4438",0,1,1,53,4,1,5,1,11,1,1,0,262 -"4439",0,1,0,58,3,1,5,0,10,1,0,0,262 -"4440",0,1,1,49,2,1,5,1,11,1,1,0,262 -"4441",0,1,1,59,2,1,5,1,10,1,0,0,262 -"4442",1,1,1,40,5,1,5,0,8,1,1,0,262 -"4443",0,1,1,43,2,1,5,1,10,1,0,0,262 -"4444",0,1,0,51,2,1,5,0,11,1,1,0,262 -"4445",0,0,0,57,2,1,5,0,8,1,0,0,262 -"4446",0,0,0,52,2,1,5,0,11,1,1,0,262 -"4447",0,1,1,53,2,1,5,1,9,3,0,0,263 -"4448",0,1,0,31,1,1,5,1,10,3,1,0,263 -"4449",0,0,0,60,3,1,5,0,10,3,1,0,263 -"4450",1,1,0,65,2,1,5,0,7,3,0,0,263 -"4451",1,0,1,52,2,1,5,0,9,3,1,0,263 -"4452",0,1,0,41,3,1,5,0,1,3,0,0,263 -"4453",0,0,1,54,2,1,5,1,8,3,1,0,263 -"4454",0,1,1,49,1,1,5,1,9,3,1,0,263 -"4455",0,1,1,59,1,1,5,1,8,3,0,0,263 -"4456",0,1,0,44,3,1,5,1,7,3,0,0,263 -"4457",0,1,1,36,2,1,5,1,5,3,0,0,263 -"4458",0,1,0,46,2,1,5,1,9,3,1,0,263 -"4459",0,1,1,58,1,1,5,1,10,3,0,0,263 -"4460",0,1,1,56,2,1,5,1,9,3,0,0,263 -"4461",0,1,0,59,1,1,5,0,10,3,1,0,263 -"4462",0,1,0,61,3,1,5,0,10,3,0,0,263 -"4463",0,1,1,54,2,1,5,0,11,3,0,0,263 -"4464",0,1,0,54,1,1,5,0,9,3,0,0,263 -"4465",0,1,0,45,3,1,5,1,8,3,0,0,263 -"4466",0,1,0,52,3,1,5,0,8,3,0,0,263 -"4467",0,1,0,52,1,1,5,0,7,3,0,0,263 -"4468",0,1,1,49,1,1,5,0,9,3,0,0,263 -"4469",0,1,0,67,2,1,5,1,10,3,0,0,263 -"4470",0,1,0,57,1,1,5,1,9,3,0,0,263 -"4471",0,1,0,39,1,1,4,0,8,3,0,0,264 -"4472",0,1,0,53,2,1,4,1,10,3,1,0,264 -"4473",0,1,1,62,3,1,4,0,11,3,1,0,264 -"4474",1,1,0,67,1,1,4,0,12,3,1,0,264 -"4475",0,0,1,62,3,1,4,0,9,3,0,0,264 -"4476",0,1,1,51,1,1,4,1,9,3,0,0,264 -"4477",0,1,0,59,2,1,4,1,9,3,0,0,264 -"4478",0,1,0,47,2,1,4,1,9,3,0,0,264 -"4479",0,1,0,36,2,1,4,0,10,3,0,0,264 -"4480",0,1,0,70,1,1,4,0,10,3,0,0,264 -"4481",0,0,1,55,1,1,4,0,10,3,1,0,264 -"4482",0,1,0,50,2,1,4,1,10,3,0,0,264 -"4483",0,1,1,57,3,1,4,1,11,3,1,0,264 -"4484",0,0,0,58,2,1,5,0,10,1,1,1,265 -"4485",0,1,1,50,3,1,5,1,10,1,0,1,265 -"4486",0,1,0,46,4,1,5,0,10,1,1,1,265 -"4487",0,0,0,65,2,1,5,0,11,1,1,1,265 -"4488",0,1,0,59,3,1,5,0,7,1,0,1,265 -"4489",0,1,1,41,2,1,5,1,13,1,0,1,265 -"4490",0,1,1,46,3,1,5,1,10,1,0,1,265 -"4491",0,1,1,52,2,1,5,0,8,1,0,1,265 -"4492",0,1,0,39,3,1,5,1,8,1,0,1,265 -"4493",0,1,1,41,2,1,5,1,4,1,1,1,265 -"4494",0,1,1,36,2,1,5,1,9,1,0,1,265 -"4495",0,1,1,52,2,1,5,0,10,1,1,1,265 -"4496",0,1,0,41,4,1,5,0,12,1,0,1,265 -"4497",0,1,0,53,1,1,5,1,8,1,0,1,265 -"4498",0,1,0,65,5,1,5,1,9,1,0,1,265 -"4499",0,1,0,47,1,1,5,1,10,1,1,1,265 -"4500",0,0,1,38,3,1,5,1,9,1,1,1,265 -"4501",1,1,1,48,2,1,5,0,10,1,0,1,265 -"4502",0,1,1,60,5,1,5,0,10,1,1,1,265 -"4503",0,1,1,54,2,1,5,1,9,1,1,1,265 -"4504",0,1,1,37,5,1,4,1,6,6,1,0,266 -"4505",0,1,0,39,5,1,4,1,8,6,1,0,266 -"4506",1,1,1,40,3,1,4,0,8,6,1,0,266 -"4507",0,1,0,47,5,1,4,0,4,6,0,0,266 -"4508",0,1,0,38,3,1,4,1,6,6,0,0,266 -"4509",0,1,1,26,3,1,4,1,7,6,0,0,266 -"4510",0,1,0,33,2,1,4,1,9,6,0,0,266 -"4511",0,1,0,36,3,1,4,1,8,6,0,0,266 -"4512",1,1,1,45,3,1,4,0,9,6,1,0,266 -"4513",0,1,0,40,2,1,4,1,11,6,0,0,267 -"4514",0,1,0,33,2,1,4,0,4,6,0,0,267 -"4515",0,1,1,50,3,1,4,1,9,6,0,0,267 -"4516",0,0,0,41,2,1,4,1,8,6,0,0,267 -"4517",1,1,0,26,3,1,4,0,4,6,1,0,267 -"4518",0,1,1,37,3,1,4,1,9,6,0,0,267 -"4519",1,1,0,43,2,1,4,0,3,6,0,0,267 -"4520",0,1,0,40,1,1,4,0,12,6,1,0,267 -"4521",0,1,0,52,2,1,4,1,8,6,0,0,267 -"4522",0,1,0,47,3,1,4,0,9,6,0,0,267 -"4523",1,1,0,45,3,1,4,1,10,6,1,0,267 -"4524",1,1,1,34,3,1,4,0,5,6,0,0,267 -"4525",0,1,1,45,1,1,5,1,12,1,1,0,268 -"4526",0,1,0,68,1,1,5,0,9,1,0,0,268 -"4527",0,1,0,58,1,1,5,0,11,1,1,0,268 -"4528",0,1,0,52,1,1,5,1,8,1,0,0,268 -"4529",0,1,1,54,2,1,5,1,12,1,0,0,268 -"4530",1,0,1,60,2,1,5,0,5,1,1,0,268 -"4531",0,1,0,75,2,1,5,0,9,1,0,0,268 -"4532",0,1,0,65,2,1,5,1,12,1,0,0,268 -"4533",0,1,1,45,1,1,5,1,11,1,1,0,268 -"4534",0,1,0,79,1,1,5,0,11,1,1,0,268 -"4535",0,1,1,55,1,1,5,0,8,1,0,0,268 -"4536",0,1,0,63,1,1,5,1,12,1,0,0,268 -"4537",0,1,1,61,2,1,5,1,10,1,1,0,268 -"4538",0,1,1,40,2,1,5,0,11,1,0,0,268 -"4539",0,1,0,68,1,1,5,1,11,1,0,0,268 -"4540",1,1,0,61,1,1,5,0,9,1,0,0,268 -"4541",0,1,0,49,1,1,5,0,9,1,0,0,268 -"4542",0,1,0,52,2,1,5,1,11,1,0,0,268 -"4543",0,1,0,62,1,1,5,1,9,2,0,0,269 -"4544",0,0,0,62,3,1,5,0,9,2,0,0,269 -"4545",0,0,0,52,3,1,5,0,9,2,0,0,269 -"4546",0,1,1,56,2,1,5,0,9,2,1,0,269 -"4547",0,1,1,58,2,1,5,1,7,2,0,0,269 -"4548",1,0,0,54,1,1,5,0,11,2,0,0,269 -"4549",0,0,0,65,1,1,5,0,12,2,1,0,269 -"4550",0,1,0,65,2,1,5,1,11,2,1,0,269 -"4551",0,1,0,63,3,1,5,0,11,2,1,0,269 -"4552",0,1,1,60,1,1,5,0,9,2,0,0,269 -"4553",0,1,1,59,2,1,5,1,11,2,0,0,269 -"4554",0,1,1,76,1,1,5,0,11,2,1,0,269 -"4555",1,1,1,52,2,1,5,1,10,2,1,0,269 -"4556",0,1,0,63,2,1,5,0,8,2,0,0,269 -"4557",0,1,0,62,1,1,5,0,10,2,0,0,269 -"4558",0,1,1,64,1,1,5,0,10,2,0,0,269 -"4559",0,1,0,57,1,1,5,1,11,2,1,0,269 -"4560",0,1,0,34,1,1,5,1,3,2,0,0,269 -"4561",0,1,0,59,2,1,5,0,10,2,0,0,269 -"4562",1,1,1,48,2,1,5,0,11,2,0,0,269 -"4563",1,1,1,32,4,1,5,1,7,2,0,0,269 -"4564",1,1,1,44,1,1,5,1,8,2,1,0,269 -"4565",0,1,0,51,1,1,4,1,5,7,0,0,270 -"4566",0,0,0,43,3,1,4,0,2,7,0,0,270 -"4567",0,1,0,46,3,1,4,1,8,7,0,0,270 -"4568",0,1,0,47,1,1,4,0,10,7,0,0,270 -"4569",0,1,1,51,1,1,4,1,9,7,1,0,270 -"4570",1,0,1,47,2,1,4,0,9,7,0,0,270 -"4571",0,1,0,49,1,1,4,0,9,7,1,0,270 -"4572",0,1,1,49,1,1,4,1,9,7,0,0,270 -"4573",1,0,0,39,4,1,4,0,7,7,0,0,270 -"4574",0,1,1,30,2,1,4,1,11,7,0,0,270 -"4575",0,0,0,45,2,1,4,0,12,7,0,0,270 -"4576",0,1,1,41,1,1,4,1,8,7,0,0,270 -"4577",0,1,0,39,3,1,4,1,4,7,0,0,270 -"4578",0,1,0,33,4,1,4,1,1,6,0,0,271 -"4579",0,1,0,49,1,1,4,0,3,6,1,0,271 -"4580",0,1,0,29,1,1,4,0,5,6,1,0,271 -"4581",0,1,0,49,2,1,4,0,8,6,1,0,271 -"4582",0,1,0,44,3,1,4,0,6,6,1,0,271 -"4583",0,1,1,55,3,1,4,1,7,6,0,0,271 -"4584",0,1,1,45,2,1,4,0,2,6,1,0,271 -"4585",0,1,0,54,2,1,4,1,10,6,0,0,271 -"4586",0,1,0,53,2,1,4,1,9,6,0,0,271 -"4587",0,1,0,55,5,1,4,0,6,6,0,0,271 -"4588",0,1,1,45,1,1,4,1,5,6,0,0,271 -"4589",1,1,0,36,3,1,4,1,3,6,0,0,271 -"4590",1,1,0,50,1,1,4,1,3,6,0,0,271 -"4591",0,1,1,58,2,1,4,1,10,6,0,0,271 -"4592",0,1,0,43,1,1,4,0,12,6,1,0,271 -"4593",0,1,0,52,4,1,4,1,6,6,0,0,271 -"4594",0,1,0,59,1,1,4,0,10,6,1,0,271 -"4595",0,1,0,43,3,1,4,1,7,6,0,0,271 -"4596",0,1,1,41,1,1,4,1,5,6,0,0,271 -"4597",0,1,0,55,2,1,4,0,1,6,0,0,271 -"4598",0,1,0,43,3,1,4,1,9,6,0,0,271 -"4599",1,1,0,45,5,1,4,0,8,6,0,0,271 -"4600",0,1,0,44,1,1,4,1,4,6,0,0,271 -"4601",0,0,0,41,1,1,4,1,6,6,0,0,271 -"4602",0,1,0,56,2,1,3,0,11,3,0,0,272 -"4603",0,1,0,51,5,1,3,0,5,3,1,0,272 -"4604",0,1,0,34,4,1,3,1,6,3,1,0,272 -"4605",0,1,1,39,3,1,3,1,6,3,0,0,272 -"4606",1,1,1,31,4,1,3,0,8,3,0,0,272 -"4607",0,1,0,36,4,1,3,1,8,3,1,0,272 -"4608",0,1,1,52,4,1,3,0,11,3,0,0,272 -"4609",0,1,0,33,2,1,3,1,10,3,0,0,272 -"4610",0,1,1,48,5,1,3,0,9,3,0,0,272 -"4611",0,1,0,33,1,1,3,0,7,3,0,0,272 -"4612",0,1,0,41,2,1,3,0,10,3,0,0,272 -"4613",1,1,0,41,5,1,3,0,8,3,1,0,272 -"4614",0,1,0,61,2,1,3,1,12,3,0,0,272 -"4615",0,1,1,37,5,1,3,1,12,3,0,0,272 -"4616",0,1,0,46,3,1,3,0,10,3,1,0,272 -"4617",0,1,0,25,2,1,3,1,8,3,1,0,272 -"4618",0,1,0,51,1,1,3,0,10,3,1,0,272 -"4619",0,1,1,23,3,1,3,1,8,3,0,0,272 -"4620",1,1,1,50,4,1,3,1,9,3,0,0,272 -"4621",0,1,0,38,2,1,3,0,8,3,0,0,272 -"4622",0,1,1,34,2,1,3,0,5,3,1,0,272 -"4623",0,0,1,46,5,1,3,1,11,3,0,0,272 -"4624",0,1,0,36,4,1,3,1,11,3,0,0,272 -"4625",0,1,0,42,5,1,3,0,11,3,1,0,272 -"4626",0,1,0,47,1,1,4,1,8,4,0,0,273 -"4627",0,1,0,57,5,1,4,0,10,4,1,0,273 -"4628",0,1,0,40,3,1,4,0,3,4,0,0,273 -"4629",0,1,0,34,3,1,4,1,2,4,0,0,273 -"4630",1,0,1,32,2,1,4,1,10,4,0,0,273 -"4631",0,1,0,56,3,1,4,1,10,4,0,0,273 -"4632",1,1,1,33,5,1,4,0,2,4,1,0,273 -"4633",0,1,1,46,1,1,4,1,6,4,0,0,273 -"4634",0,1,0,48,4,1,4,0,8,4,0,0,273 -"4635",0,1,0,60,3,1,4,1,12,4,1,0,273 -"4636",0,0,1,31,3,1,4,0,9,4,0,0,273 -"4637",0,1,0,43,2,1,4,1,1,4,0,0,273 -"4638",0,0,0,36,3,1,4,0,10,5,1,0,274 -"4639",1,0,1,50,5,1,4,0,6,5,0,0,274 -"4640",0,1,0,44,1,1,4,0,5,5,0,0,274 -"4641",0,1,0,37,3,1,4,0,4,5,0,0,274 -"4642",0,0,0,54,2,1,4,0,9,5,0,0,274 -"4643",0,0,0,59,2,1,4,1,9,5,1,0,274 -"4644",1,0,0,32,1,1,4,0,11,5,0,0,274 -"4645",0,1,0,53,2,1,4,0,7,5,0,0,274 -"4646",0,1,0,46,3,1,4,1,5,5,0,0,274 -"4647",0,1,1,54,3,1,4,0,3,5,0,0,274 -"4648",0,1,0,50,1,1,4,0,11,5,0,0,274 -"4649",0,1,1,34,2,1,4,1,6,5,0,0,274 -"4650",0,1,1,56,3,1,4,0,9,5,0,0,274 -"4651",0,1,0,52,2,1,4,1,11,5,1,0,274 -"4652",0,1,0,42,3,1,4,0,8,5,0,0,274 -"4653",0,1,1,70,2,1,4,1,11,5,1,0,274 -"4654",0,0,0,68,2,1,4,0,8,5,0,0,274 -"4655",0,1,0,54,3,1,4,0,12,5,0,0,274 -"4656",1,1,0,47,2,1,4,0,5,5,0,0,274 -"4657",0,1,0,49,2,1,4,1,9,7,1,0,275 -"4658",0,1,0,49,1,1,4,0,8,7,0,0,275 -"4659",1,1,1,50,1,1,4,0,9,7,0,0,275 -"4660",1,1,1,39,3,1,4,0,1,7,0,0,275 -"4661",0,0,1,48,1,1,4,0,8,7,0,0,275 -"4662",0,1,0,57,2,1,4,1,9,7,0,0,275 -"4663",0,1,0,37,2,1,4,1,8,7,0,0,275 -"4664",0,1,1,28,3,1,4,1,9,7,0,0,275 -"4665",0,1,0,58,1,1,4,1,9,7,1,0,275 -"4666",0,1,1,46,2,1,4,1,6,7,0,0,275 -"4667",0,1,1,53,2,1,4,1,9,7,0,0,275 -"4668",0,1,0,42,3,1,4,1,10,7,1,0,275 -"4669",0,1,0,38,1,1,4,1,10,7,0,0,275 -"4670",0,1,0,45,2,1,4,1,6,7,0,0,275 -"4671",1,1,1,63,3,1,4,0,9,7,0,0,275 -"4672",1,1,0,57,1,1,4,1,4,7,0,0,275 -"4673",0,1,0,51,3,0,5,0,12,1,1,1,276 -"4674",0,1,0,49,3,0,5,1,11,1,1,1,276 -"4675",0,1,0,50,2,0,5,0,12,1,1,1,276 -"4676",0,1,0,57,3,0,5,1,9,1,0,1,276 -"4677",0,1,1,55,2,0,5,1,11,1,1,1,276 -"4678",1,1,1,41,5,0,5,1,10,1,0,1,276 -"4679",0,1,0,66,2,0,5,1,12,1,1,1,276 -"4680",0,1,1,50,1,0,5,1,13,1,1,1,276 -"4681",0,1,0,46,2,0,5,1,11,1,1,1,276 -"4682",0,1,1,50,2,0,5,1,12,1,1,1,276 -"4683",0,1,0,75,3,0,5,1,11,1,1,1,276 -"4684",0,1,0,59,2,0,5,1,9,1,1,1,276 -"4685",0,1,1,54,1,0,5,1,10,1,1,1,276 -"4686",0,1,0,42,2,0,5,1,11,1,0,1,276 -"4687",0,1,0,52,1,0,5,1,11,1,0,1,276 -"4688",0,1,1,50,2,0,5,1,13,1,1,1,276 -"4689",0,1,0,41,2,0,5,1,8,1,1,1,276 -"4690",0,1,0,53,3,0,5,1,10,1,0,1,276 -"4691",0,1,0,65,3,0,5,1,10,1,1,1,276 -"4692",0,1,0,45,1,0,5,0,11,1,1,1,276 -"4693",0,1,1,51,1,0,5,1,11,1,1,1,276 -"4694",0,1,1,64,1,0,5,1,12,1,1,1,276 -"4695",0,0,0,57,2,0,5,1,9,1,1,1,276 -"4696",0,1,1,49,4,0,5,1,12,1,1,1,276 -"4697",1,1,1,58,2,0,5,1,12,1,1,1,276 -"4698",0,1,0,42,2,0,5,1,11,1,1,1,276 -"4699",0,1,1,60,3,0,5,1,9,1,1,1,276 -"4700",0,1,0,76,1,1,5,1,12,3,1,0,277 -"4701",0,1,1,52,1,1,5,1,13,3,1,0,277 -"4702",0,1,1,66,3,1,5,0,10,3,1,0,277 -"4703",0,1,1,62,1,1,5,0,9,3,0,0,277 -"4704",0,0,1,64,5,1,4,1,13,1,1,0,278 -"4705",0,1,1,57,5,1,4,1,12,1,0,0,278 -"4706",1,0,1,48,4,1,4,0,10,1,1,0,278 -"4707",0,1,0,52,1,1,4,1,8,1,0,0,278 -"4708",0,1,1,73,2,1,4,0,9,1,1,0,278 -"4709",0,0,0,49,4,1,4,1,13,1,1,0,278 -"4710",0,1,1,57,2,1,4,1,12,1,1,0,278 -"4711",1,0,0,38,5,1,4,1,9,1,1,0,278 -"4712",0,1,1,63,2,1,4,1,11,1,1,0,278 -"4713",0,1,1,67,2,1,4,1,12,1,1,0,278 -"4714",1,0,0,26,3,1,4,0,8,5,0,0,279 -"4715",1,1,1,45,1,1,4,0,6,5,0,0,279 -"4716",0,1,1,47,2,1,4,1,3,5,1,0,279 -"4717",0,1,0,49,2,1,4,0,10,5,0,0,279 -"4718",0,1,0,60,4,1,4,0,10,5,0,0,279 -"4719",0,1,1,46,2,1,4,0,5,5,0,0,279 -"4720",0,1,0,63,3,1,4,1,10,5,1,0,279 -"4721",0,1,0,50,1,1,4,0,9,5,0,0,279 -"4722",0,1,0,53,2,1,4,0,8,5,0,0,279 -"4723",0,1,1,58,2,1,4,1,8,5,1,0,279 -"4724",0,1,0,39,3,1,4,0,8,5,0,0,279 -"4725",0,1,1,51,2,1,4,1,5,5,0,0,279 -"4726",0,1,1,59,1,1,4,1,12,5,1,0,279 -"4727",0,1,1,47,2,1,4,1,6,5,0,0,279 -"4728",0,1,0,56,1,1,4,1,13,1,1,0,280 -"4729",0,1,1,62,2,1,4,1,9,1,1,0,280 -"4730",0,0,0,73,3,1,4,0,10,1,1,0,280 -"4731",0,1,1,57,4,1,4,1,10,1,1,0,280 -"4732",0,1,0,66,2,1,4,1,10,1,1,0,280 -"4733",0,0,0,62,2,1,4,1,12,1,1,0,280 -"4734",0,1,1,71,1,1,4,0,13,1,1,0,280 -"4735",0,1,0,44,2,1,4,1,13,1,1,0,280 -"4736",1,1,0,72,4,1,4,0,13,1,1,0,280 -"4737",0,1,1,59,1,1,4,1,12,1,1,0,280 -"4738",0,1,1,60,2,1,4,1,12,1,1,0,280 -"4739",0,1,0,46,2,1,4,0,6,1,0,0,280 -"4740",0,1,1,53,2,1,4,0,12,1,1,0,280 -"4741",0,1,1,76,3,1,4,1,13,1,1,0,280 -"4742",0,1,1,66,2,1,4,1,13,1,1,0,280 -"4743",0,1,0,62,1,1,4,0,13,1,1,0,280 -"4744",0,1,0,69,2,1,4,0,12,1,1,0,280 -"4745",0,1,0,75,2,1,4,0,13,1,0,0,280 -"4746",0,1,0,50,1,1,5,0,12,1,1,1,281 -"4747",0,0,0,57,3,1,5,0,11,1,1,1,281 -"4748",0,1,1,41,2,1,5,1,11,1,0,1,281 -"4749",0,1,1,57,3,1,5,1,10,1,0,1,281 -"4750",0,1,1,41,3,1,5,0,13,1,1,1,281 -"4751",0,1,0,60,3,1,5,0,13,1,1,1,281 -"4752",0,1,0,63,2,1,5,1,12,1,0,1,281 -"4753",0,1,1,57,2,1,5,0,11,1,1,1,281 -"4754",0,1,0,59,2,1,5,1,9,1,0,1,281 -"4755",0,0,0,57,4,1,5,1,11,1,0,1,281 -"4756",0,1,0,70,1,1,5,0,12,1,1,1,281 -"4757",0,1,0,55,2,1,5,1,8,1,0,1,281 -"4758",1,1,0,43,3,1,5,0,11,1,1,1,281 -"4759",0,1,0,58,1,1,5,1,10,1,1,1,281 -"4760",0,1,1,65,1,1,5,0,12,1,1,1,281 -"4761",0,1,0,49,2,1,5,1,10,1,1,1,281 -"4762",0,1,0,50,1,1,5,0,11,1,1,1,281 -"4763",0,0,1,60,3,1,5,0,13,1,1,1,281 -"4764",1,1,1,56,5,1,5,1,12,1,1,1,281 -"4765",0,1,1,65,3,1,5,0,12,1,1,1,281 -"4766",0,1,0,53,2,1,5,0,12,1,1,1,281 -"4767",0,1,1,67,2,1,5,1,12,1,1,1,281 -"4768",0,1,1,55,2,1,5,0,9,1,0,1,281 -"4769",0,1,0,59,3,1,4,1,9,6,0,0,282 -"4770",1,1,0,44,5,1,4,0,5,6,0,0,282 -"4771",0,1,1,33,2,1,4,0,5,6,1,0,282 -"4772",0,1,0,40,2,1,4,0,9,6,0,0,282 -"4773",0,1,0,52,2,1,4,1,2,6,0,0,282 -"4774",0,1,0,38,2,1,4,1,3,6,0,0,282 -"4775",0,1,1,43,2,1,4,1,7,6,0,0,282 -"4776",0,1,1,50,2,1,4,1,8,6,0,0,282 -"4777",0,1,0,40,3,1,4,0,5,6,1,0,282 -"4778",0,1,0,51,2,1,4,1,6,6,1,0,282 -"4779",0,1,1,43,3,1,4,1,9,6,0,0,282 -"4780",0,1,0,51,2,1,4,1,10,6,0,0,282 -"4781",0,1,0,57,2,1,4,0,12,6,0,0,282 -"4782",0,1,1,32,2,1,4,1,4,6,0,0,282 -"4783",0,1,0,59,1,1,4,1,3,6,0,0,282 -"4784",1,0,1,35,2,1,4,1,8,6,0,0,282 -"4785",0,1,0,47,2,1,4,0,7,6,0,0,282 -"4786",0,1,1,42,1,1,4,0,10,6,0,0,282 -"4787",0,1,1,56,2,1,3,1,10,6,0,0,283 -"4788",0,1,0,49,4,1,3,0,10,6,1,0,283 -"4789",0,1,1,53,3,1,3,1,11,6,0,0,283 -"4790",0,1,0,47,1,1,3,1,10,6,1,0,283 -"4791",0,1,1,55,2,1,3,0,10,6,0,0,283 -"4792",0,1,1,44,1,1,3,1,5,6,0,0,283 -"4793",0,0,0,39,2,1,3,0,7,6,1,0,283 -"4794",0,1,1,47,2,1,3,1,10,6,1,0,283 -"4795",0,1,0,54,3,1,3,1,7,6,0,0,283 -"4796",0,1,1,58,2,1,3,1,8,6,0,0,283 -"4797",0,1,0,54,1,1,3,0,9,6,0,0,283 -"4798",0,1,1,63,3,1,3,1,11,6,0,0,283 -"4799",0,1,0,32,1,1,3,1,4,6,0,0,283 -"4800",0,1,0,58,1,1,3,0,8,6,0,0,283 -"4801",0,1,0,60,1,0,5,1,9,1,0,1,284 -"4802",0,1,1,55,1,0,5,1,12,1,1,1,284 -"4803",0,1,0,66,1,0,5,1,10,1,1,1,284 -"4804",0,1,1,52,3,0,5,1,12,1,1,1,284 -"4805",0,1,1,58,1,0,5,1,9,1,0,1,284 -"4806",0,1,0,63,4,0,5,1,9,1,1,1,284 -"4807",0,1,0,52,1,0,5,1,7,1,1,1,284 -"4808",0,1,1,51,3,0,5,1,10,1,1,1,284 -"4809",0,1,0,65,2,0,5,1,12,1,1,1,284 -"4810",0,1,0,54,1,0,5,1,9,1,0,1,284 -"4811",0,1,0,55,1,0,5,1,10,1,0,1,284 -"4812",0,1,1,45,1,0,5,1,12,1,1,1,284 -"4813",0,1,0,32,1,0,5,1,10,1,0,1,284 -"4814",0,1,0,56,1,0,5,1,10,1,0,1,284 -"4815",0,1,1,51,3,0,5,0,11,1,1,1,284 -"4816",0,1,1,48,1,0,5,1,10,1,0,1,284 -"4817",0,1,1,60,2,0,5,1,11,1,0,1,284 -"4818",0,1,0,52,2,0,5,1,15,1,1,1,284 -"4819",0,1,1,57,1,0,5,1,10,1,1,1,284 -"4820",0,1,0,57,1,0,5,1,6,1,1,1,284 -"4821",0,1,1,51,1,0,5,1,8,1,1,1,284 -"4822",0,1,0,48,1,0,5,1,6,1,0,1,284 -"4823",0,1,0,56,2,0,5,1,10,1,1,1,284 -"4824",0,1,0,63,2,1,5,1,7,5,0,0,285 -"4825",0,1,0,59,1,1,5,0,8,5,0,0,285 -"4826",0,1,0,53,1,1,5,0,9,5,0,0,285 -"4827",0,1,0,53,2,1,5,1,5,5,0,0,285 -"4828",0,1,1,56,1,1,5,1,6,5,1,0,285 -"4829",0,1,0,60,3,1,5,1,11,5,1,0,285 -"4830",0,1,0,61,4,1,5,0,2,5,1,0,285 -"4831",0,1,0,62,3,1,5,1,9,5,0,0,285 -"4832",0,1,0,54,2,1,5,1,8,5,0,0,285 -"4833",0,0,0,64,1,1,5,0,11,5,1,0,285 -"4834",0,1,1,56,1,1,5,1,9,5,1,0,285 -"4835",0,1,0,60,1,1,5,1,9,5,1,0,285 -"4836",0,1,0,64,1,1,5,0,10,5,1,0,285 -"4837",0,1,0,45,1,1,5,1,9,5,1,0,285 -"4838",0,1,1,53,3,1,5,1,10,5,0,0,285 -"4839",0,1,0,58,2,1,5,0,10,5,0,0,285 -"4840",0,1,0,58,1,1,5,0,13,5,0,0,285 -"4841",0,1,1,53,5,1,5,1,10,5,0,0,285 -"4842",0,1,1,60,1,1,5,1,9,5,0,0,285 -"4843",0,1,0,62,2,1,5,1,9,5,0,0,285 -"4844",1,1,1,44,2,1,5,0,10,5,1,0,285 -"4845",0,1,0,52,1,1,5,1,4,5,1,0,285 -"4846",0,1,0,54,1,1,5,0,8,5,0,0,285 -"4847",0,1,0,55,3,1,5,1,7,5,0,0,285 -"4848",0,1,0,42,2,1,5,1,11,5,1,0,285 -"4849",1,1,0,50,1,1,5,0,8,5,1,0,285 -"4850",0,1,0,49,5,1,5,1,11,5,1,0,285 -"4851",0,1,0,46,1,1,5,0,10,5,0,0,285 -"4852",0,1,1,53,2,1,5,0,8,5,0,0,285 -"4853",0,1,0,52,2,1,5,0,6,5,0,0,285 -"4854",1,0,0,64,3,1,4,0,11,2,0,0,286 -"4855",0,1,1,54,1,1,4,0,9,2,0,0,286 -"4856",0,1,0,57,2,1,4,1,8,2,0,0,286 -"4857",0,1,0,68,1,1,4,0,10,2,0,0,286 -"4858",0,0,0,64,2,1,4,0,8,2,0,0,286 -"4859",0,1,0,60,3,1,4,0,12,2,1,0,286 -"4860",0,1,0,49,1,1,4,1,8,2,0,0,286 -"4861",0,0,1,66,1,1,4,0,12,2,1,0,286 -"4862",0,1,1,60,1,1,4,1,9,2,1,0,286 -"4863",1,1,1,55,4,1,4,1,9,2,0,0,286 -"4864",1,1,0,56,2,1,4,0,9,2,0,0,286 -"4865",0,1,0,62,3,1,4,1,12,2,1,0,286 -"4866",0,1,1,65,3,1,4,0,9,2,0,0,286 -"4867",0,1,0,48,2,1,4,1,12,2,0,0,286 -"4868",0,1,0,62,1,1,4,1,11,2,1,0,286 -"4869",0,1,0,66,2,1,4,1,13,2,1,0,286 -"4870",0,0,1,58,3,1,4,1,12,2,1,0,286 -"4871",0,1,0,47,1,1,4,0,9,2,0,0,286 -"4872",0,1,0,63,1,1,4,1,11,2,1,0,286 -"4873",1,0,0,38,3,1,4,0,12,2,0,0,286 -"4874",1,0,1,51,2,1,4,0,10,2,0,0,286 -"4875",0,1,1,72,2,1,4,0,11,2,1,0,286 -"4876",0,1,0,63,2,1,4,1,10,2,1,0,286 -"4877",0,1,0,54,3,1,4,0,12,2,1,0,286 -"4878",0,1,0,57,2,1,5,0,10,6,0,0,287 -"4879",0,1,0,71,1,1,5,0,8,6,1,0,287 -"4880",0,1,0,62,3,1,5,1,12,6,1,0,287 -"4881",0,1,0,70,3,1,5,0,9,6,1,0,287 -"4882",0,1,0,40,2,1,5,0,9,6,0,0,287 -"4883",0,1,0,51,5,1,5,1,9,6,0,0,287 -"4884",0,1,0,31,3,1,5,1,5,6,0,0,287 -"4885",0,1,1,72,2,1,5,1,10,6,1,0,287 -"4886",0,1,0,65,1,1,5,0,11,6,1,0,287 -"4887",0,1,0,58,3,1,5,1,9,6,1,0,287 -"4888",0,1,1,48,1,1,5,1,9,6,0,0,287 -"4889",0,1,1,62,4,1,5,1,9,6,0,0,287 -"4890",0,1,0,56,3,1,5,1,10,6,0,0,287 -"4891",1,1,1,51,2,1,5,0,11,6,1,0,287 -"4892",0,1,0,58,1,1,5,1,10,6,1,0,287 -"4893",0,0,1,47,3,1,5,1,9,3,0,0,288 -"4894",0,1,0,59,3,1,5,0,11,3,1,0,288 -"4895",0,1,1,41,2,1,5,1,10,3,1,0,288 -"4896",0,1,0,35,2,1,5,0,9,3,0,0,288 -"4897",1,1,0,48,2,1,5,0,9,3,0,0,288 -"4898",0,1,0,59,2,1,5,0,11,3,0,0,288 -"4899",0,1,1,52,1,1,5,1,6,3,1,0,288 -"4900",0,1,1,40,3,1,5,0,11,3,1,0,288 -"4901",0,1,0,38,2,1,5,1,9,3,1,0,288 -"4902",0,1,0,62,2,1,5,1,11,3,1,0,288 -"4903",0,1,1,57,1,1,5,0,10,3,1,0,288 -"4904",0,1,1,49,2,1,5,1,7,3,0,0,288 -"4905",0,1,0,59,2,1,5,0,11,3,1,0,288 -"4906",0,0,1,37,1,1,5,1,12,3,1,0,288 -"4907",1,1,0,53,2,1,5,1,8,3,0,0,288 -"4908",0,1,0,30,3,1,5,1,12,3,1,0,288 -"4909",1,1,1,32,1,1,5,0,7,3,0,0,288 -"4910",0,1,1,32,3,1,5,1,5,3,0,0,288 -"4911",0,1,1,46,2,1,4,1,11,4,0,0,289 -"4912",0,1,0,55,1,1,4,0,10,4,0,0,289 -"4913",0,1,0,60,1,1,4,0,3,4,1,0,289 -"4914",1,0,0,41,2,1,4,0,5,4,0,0,289 -"4915",0,1,0,49,3,1,4,1,3,4,0,0,289 -"4916",0,1,0,52,2,1,4,1,6,4,0,0,289 -"4917",0,1,0,32,3,1,4,1,1,4,0,0,289 -"4918",0,0,0,56,3,1,4,0,8,4,1,0,289 -"4919",0,1,0,66,5,1,4,1,10,4,1,0,289 -"4920",0,1,0,41,2,1,4,0,9,4,1,0,289 -"4921",0,1,0,47,4,1,4,1,9,4,0,0,289 -"4922",0,1,0,57,2,1,4,0,7,4,0,0,289 -"4923",0,1,0,73,3,1,4,1,11,4,0,0,289 -"4924",0,1,1,53,5,1,4,0,4,4,0,0,289 -"4925",0,1,0,52,3,1,4,0,8,4,0,0,289 -"4926",0,1,0,50,2,1,4,0,10,4,0,0,289 -"4927",0,1,0,63,5,1,4,0,8,4,0,0,289 -"4928",0,1,1,62,3,1,4,1,8,4,0,0,289 -"4929",0,1,0,57,2,1,4,1,10,4,0,0,289 -"4930",1,1,0,60,1,1,4,0,10,4,0,0,289 -"4931",1,1,0,57,5,1,4,0,8,4,0,0,289 -"4932",0,1,1,45,2,1,4,1,10,4,0,0,289 -"4933",0,1,0,42,2,1,4,1,9,6,0,0,290 -"4934",0,1,0,57,3,1,4,0,6,6,0,0,290 -"4935",0,1,1,58,2,1,4,0,10,6,0,0,290 -"4936",0,1,0,58,1,1,4,1,5,6,1,0,290 -"4937",0,1,1,47,2,1,4,0,9,6,0,0,290 -"4938",0,1,0,29,1,1,4,1,9,6,1,0,290 -"4939",0,1,0,40,2,1,4,1,9,6,0,0,290 -"4940",0,0,0,41,5,1,4,0,8,6,0,0,290 -"4941",0,1,0,50,1,1,5,1,11,1,0,0,291 -"4942",0,1,0,42,1,1,5,1,7,1,0,0,291 -"4943",0,1,0,46,2,1,5,0,7,1,0,0,291 -"4944",0,1,1,58,3,1,5,0,12,1,1,0,292 -"4945",0,1,0,63,5,1,5,1,10,1,1,0,292 -"4946",0,1,1,50,2,1,5,1,10,1,1,0,292 -"4947",1,0,1,66,5,1,5,0,10,1,1,0,292 -"4948",0,1,1,45,3,1,5,1,12,1,0,0,292 -"4949",0,1,1,59,1,1,5,0,9,1,1,0,292 -"4950",1,1,1,54,5,1,5,0,10,1,1,0,292 -"4951",0,1,0,55,1,1,5,1,9,1,0,0,292 -"4952",0,1,1,49,5,1,5,0,9,1,1,0,292 -"4953",0,0,1,47,3,1,5,1,11,1,1,0,292 -"4954",0,0,1,65,3,1,5,0,10,1,1,0,292 -"4955",0,0,1,44,1,1,5,1,9,1,0,0,292 -"4956",1,0,1,47,1,1,5,0,10,1,0,0,292 -"4957",0,1,0,58,3,1,5,1,11,1,1,0,292 -"4958",0,1,1,56,2,1,5,1,6,1,1,0,292 -"4959",0,1,1,51,2,1,5,0,10,1,1,0,292 -"4960",0,1,1,70,1,1,5,1,12,1,1,0,292 -"4961",0,1,1,62,3,1,5,0,12,1,1,0,292 -"4962",0,1,0,59,1,1,5,1,10,1,1,0,292 -"4963",0,1,0,64,1,1,5,0,6,1,0,0,292 -"4964",1,1,1,74,1,1,5,0,12,1,1,0,292 -"4965",0,1,1,43,2,1,5,1,12,1,1,0,292 -"4966",0,1,0,58,1,1,3,0,10,4,0,0,293 -"4967",1,1,0,44,2,1,3,1,10,4,1,0,293 -"4968",0,1,0,52,3,1,3,1,10,4,1,0,293 -"4969",0,1,1,58,1,1,3,0,11,4,0,0,293 -"4970",0,1,1,39,3,1,3,1,7,4,0,0,293 -"4971",0,1,0,51,3,1,3,0,5,4,1,0,293 -"4972",0,1,1,41,4,1,3,1,7,4,0,0,293 -"4973",0,1,1,55,4,1,3,1,9,4,0,0,293 -"4974",0,1,0,63,1,1,3,1,9,4,0,0,293 -"4975",0,1,1,65,1,1,3,1,6,4,0,0,293 -"4976",0,1,0,59,1,1,3,0,10,4,0,0,293 -"4977",1,0,1,59,5,1,3,0,11,4,1,0,293 -"4978",0,1,0,49,4,1,3,0,11,4,0,0,293 -"4979",0,1,1,45,4,1,3,1,12,4,0,0,293 -"4980",0,1,0,71,1,1,3,1,10,4,1,0,293 -"4981",0,1,0,64,2,1,3,1,11,4,1,0,293 -"4982",0,1,1,39,2,1,3,0,8,4,1,0,293 -"4983",0,1,0,36,2,1,3,1,5,4,0,0,293 -"4984",1,1,1,41,5,1,3,0,9,4,0,0,293 -"4985",0,1,0,44,3,1,3,1,11,4,1,0,293 -"4986",1,1,1,51,3,1,3,1,11,4,0,0,293 -"4987",0,1,0,60,2,1,3,1,9,4,0,0,293 -"4988",0,1,1,50,1,0,5,1,10,4,0,0,294 -"4989",0,0,1,51,5,0,5,1,10,4,0,0,294 -"4990",0,1,1,56,1,0,5,1,7,4,0,0,294 -"4991",0,1,0,38,4,0,5,1,5,4,0,0,294 -"4992",0,1,0,44,2,0,5,1,7,4,1,0,294 -"4993",0,1,0,44,2,0,5,1,2,4,1,0,294 -"4994",0,0,1,53,4,0,5,1,9,4,0,0,294 -"4995",1,1,1,59,5,0,5,1,11,4,1,0,294 -"4996",1,1,0,52,3,0,5,1,9,4,0,0,294 -"4997",0,1,1,44,2,0,5,1,10,4,0,0,294 -"4998",0,1,1,43,2,0,5,1,4,4,0,0,294 -"4999",0,1,0,34,2,0,5,1,7,4,0,0,294 -"5000",0,1,0,40,1,0,5,1,9,4,1,0,294 -"5001",0,1,0,57,3,0,5,1,8,4,0,0,294 -"5002",0,0,0,48,5,1,3,1,10,7,0,0,295 -"5003",0,1,0,33,1,1,3,0,7,7,0,0,295 -"5004",0,1,0,36,1,1,4,1,5,7,1,0,296 -"5005",0,1,0,39,1,1,4,1,6,7,0,0,296 -"5006",0,1,0,43,2,1,4,1,4,7,0,0,296 -"5007",0,1,0,26,1,1,4,1,4,7,0,0,296 -"5008",1,1,1,24,1,1,4,0,5,7,0,0,296 -"5009",0,1,1,57,1,1,4,0,9,7,0,0,296 -"5010",0,1,0,55,1,1,4,1,9,7,1,0,296 -"5011",0,1,0,41,1,1,4,1,6,7,1,0,296 -"5012",0,1,1,39,2,1,4,0,4,7,0,0,296 -"5013",0,1,1,48,2,1,4,1,8,7,0,0,296 -"5014",1,1,0,41,2,1,4,0,7,7,0,0,296 -"5015",0,0,0,51,3,1,4,0,10,7,0,0,296 -"5016",0,1,0,41,3,1,4,0,6,7,1,0,296 -"5017",0,1,0,42,1,1,4,1,5,7,0,0,296 -"5018",0,1,0,48,3,1,4,0,10,7,0,0,296 -"5019",0,0,1,23,2,1,4,0,7,7,0,0,296 -"5020",0,0,0,42,5,1,4,0,2,7,0,0,296 -"5021",0,1,1,42,3,1,4,0,3,7,0,0,296 -"5022",1,1,0,39,3,1,4,0,8,7,0,0,296 -"5023",0,1,0,35,1,1,4,0,8,7,0,0,296 -"5024",0,1,1,57,2,1,4,0,7,7,0,0,296 -"5025",0,1,0,52,1,1,4,0,7,7,0,0,296 -"5026",0,1,0,60,3,1,4,1,6,6,1,0,297 -"5027",0,1,0,39,3,1,4,1,5,6,0,0,297 -"5028",0,1,0,43,3,1,4,1,7,6,0,0,297 -"5029",0,1,0,27,1,1,4,1,5,6,1,0,297 -"5030",0,1,0,54,5,1,4,0,10,6,1,0,297 -"5031",1,0,1,38,3,1,4,0,11,6,1,0,297 -"5032",0,1,0,32,2,1,4,1,10,6,1,0,297 -"5033",0,1,0,60,5,1,4,1,7,6,0,0,297 -"5034",0,1,0,51,1,1,4,1,10,6,1,0,297 -"5035",0,1,0,36,5,1,4,1,9,6,0,0,297 -"5036",0,1,0,44,2,1,4,0,11,6,0,0,297 -"5037",0,1,0,35,3,1,4,0,9,6,0,0,297 -"5038",0,1,0,41,1,1,4,1,8,6,0,0,297 -"5039",0,1,0,56,3,1,4,0,10,6,0,0,297 -"5040",0,1,0,44,3,1,4,1,6,6,0,0,297 -"5041",0,1,0,39,5,1,4,1,10,6,0,0,297 -"5042",0,1,0,32,2,1,4,1,9,6,0,0,297 -"5043",0,1,0,41,2,1,4,0,8,6,0,0,297 -"5044",0,1,0,59,1,1,5,1,12,1,0,1,298 -"5045",0,0,1,48,1,1,5,1,13,1,1,1,298 -"5046",0,1,0,57,3,1,5,1,11,1,1,1,298 -"5047",0,1,0,62,2,1,5,0,10,1,0,1,298 -"5048",0,1,0,54,1,1,5,1,11,1,0,1,298 -"5049",0,1,0,44,1,1,5,1,10,1,0,1,298 -"5050",0,1,1,64,1,1,5,0,11,1,0,1,298 -"5051",0,1,1,52,2,1,5,1,11,1,1,1,298 -"5052",0,1,1,57,2,1,5,0,8,1,0,1,298 -"5053",0,1,0,58,2,1,5,1,12,1,0,1,298 -"5054",0,1,1,64,1,1,5,1,12,1,1,1,298 -"5055",0,1,0,53,2,1,5,1,9,1,1,1,298 -"5056",0,1,0,62,1,1,5,0,11,1,1,1,298 -"5057",1,1,0,37,3,1,3,1,8,3,0,0,299 -"5058",0,1,0,26,2,1,3,0,8,3,0,0,299 -"5059",0,1,0,60,4,1,3,0,10,3,1,0,299 -"5060",0,1,0,52,3,1,3,0,7,3,0,0,299 -"5061",1,0,0,31,4,1,3,1,10,3,0,0,299 -"5062",0,0,0,48,2,1,3,0,6,3,0,0,299 -"5063",1,1,0,47,2,1,3,0,7,3,0,0,299 -"5064",0,1,0,62,1,1,3,0,8,3,0,0,299 -"5065",1,0,0,55,4,1,3,1,10,3,0,0,299 -"5066",0,1,0,47,2,1,3,1,10,3,0,0,299 -"5067",0,1,0,50,1,1,3,0,8,3,1,0,299 -"5068",0,1,0,50,4,1,3,0,9,3,0,0,299 -"5069",0,1,1,35,3,1,3,0,8,3,0,0,299 -"5070",0,1,0,52,2,1,3,0,9,3,0,0,299 -"5071",0,1,0,62,1,1,3,0,7,3,0,0,299 -"5072",0,1,0,55,2,1,3,0,9,3,0,0,299 -"5073",0,1,1,35,1,1,3,1,12,3,0,0,299 -"5074",0,1,1,57,1,1,3,1,8,3,0,0,299 -"5075",0,1,0,53,3,1,3,1,10,3,1,0,299 -"5076",0,0,0,39,3,1,3,1,8,3,0,0,299 -"5077",0,1,0,58,3,1,3,1,11,3,1,0,299 -"5078",0,1,0,37,2,1,3,0,9,3,0,0,299 -"5079",0,1,0,42,1,1,3,0,12,3,0,0,299 -"5080",0,1,0,54,1,1,3,0,10,3,0,0,299 -"5081",1,1,0,44,3,1,3,0,7,3,0,0,299 -"5082",0,1,0,65,2,1,5,0,9,4,0,0,300 -"5083",0,1,0,41,2,1,5,1,7,4,0,0,300 -"5084",0,1,1,46,1,1,5,0,5,4,0,0,300 -"5085",0,0,0,66,4,1,5,0,10,4,1,0,300 -"5086",0,1,0,29,2,1,5,0,10,4,0,0,300 -"5087",0,1,0,53,2,1,5,1,10,4,1,0,300 -"5088",0,1,0,47,3,1,5,1,8,4,0,0,300 -"5089",0,1,1,65,2,1,5,0,6,4,1,0,300 -"5090",1,1,0,47,2,1,5,0,11,4,0,0,300 -"5091",0,1,1,39,2,1,5,0,6,4,0,0,300 -"5092",0,1,0,47,1,1,5,1,8,4,0,0,300 -"5093",0,1,0,48,4,1,5,1,7,4,0,0,300 -"5094",0,1,0,55,4,1,5,0,10,4,0,0,300 -"5095",1,1,0,49,3,1,3,1,9,1,1,0,301 -"5096",0,1,1,53,2,1,3,0,9,1,0,0,301 -"5097",1,1,0,53,1,1,4,0,10,2,1,0,302 -"5098",0,1,1,40,2,1,4,0,10,2,0,0,302 -"5099",0,0,0,54,5,1,4,0,11,2,1,0,302 -"5100",0,1,0,40,2,1,4,0,11,2,0,0,302 -"5101",0,1,1,53,4,1,4,0,9,2,0,0,302 -"5102",0,1,1,62,2,1,4,0,11,2,1,0,302 -"5103",0,0,0,49,4,1,4,0,11,2,0,0,302 -"5104",0,1,0,65,2,1,4,1,12,2,1,0,302 -"5105",0,1,1,41,3,1,4,1,9,2,0,0,302 -"5106",0,1,0,44,1,1,4,0,5,2,0,0,302 -"5107",0,1,0,54,2,1,4,0,10,2,1,0,302 -"5108",0,1,1,67,1,1,4,1,9,2,1,0,302 -"5109",0,1,0,47,3,1,4,1,9,2,0,0,302 -"5110",0,1,1,51,1,1,4,0,7,2,0,0,302 -"5111",0,1,0,61,2,1,4,1,11,2,0,0,302 -"5112",0,1,1,47,1,1,3,1,10,3,0,0,303 -"5113",0,1,1,49,2,1,3,1,10,3,0,0,303 -"5114",0,1,1,69,2,1,3,1,9,3,0,0,303 -"5115",0,1,0,62,2,1,3,1,10,3,0,0,303 -"5116",0,1,0,48,1,1,3,0,11,3,1,0,303 -"5117",0,1,0,48,1,1,3,1,11,3,0,0,303 -"5118",0,1,0,56,2,1,3,1,9,3,1,0,303 -"5119",0,0,1,44,4,1,3,0,9,3,0,0,303 -"5120",0,1,0,69,2,1,3,1,11,3,1,0,303 -"5121",0,1,1,51,2,1,3,0,11,3,1,0,303 -"5122",0,1,0,49,3,1,3,1,11,3,1,0,303 -"5123",0,1,0,56,1,1,3,1,7,3,0,0,303 -"5124",0,1,0,56,1,1,3,0,10,3,0,0,303 -"5125",0,1,0,51,2,1,3,1,9,3,0,0,303 -"5126",0,1,0,50,2,1,3,1,4,3,0,0,303 -"5127",0,1,0,54,2,1,3,0,10,3,0,0,303 -"5128",0,1,1,50,3,1,3,0,9,3,1,0,303 -"5129",0,1,0,66,3,1,3,1,12,3,1,0,303 -"5130",0,1,0,35,2,1,3,1,9,3,1,0,303 -"5131",0,1,0,71,1,1,3,1,10,3,1,0,303 -"5132",0,1,1,56,1,1,4,1,11,2,1,0,304 -"5133",0,1,1,44,4,1,4,0,11,2,1,0,304 -"5134",0,1,0,41,2,1,4,1,9,2,0,0,304 -"5135",0,1,0,55,2,1,4,1,8,2,0,0,304 -"5136",0,1,0,56,1,1,4,1,10,2,1,0,304 -"5137",0,1,0,44,2,1,4,0,10,2,0,0,304 -"5138",1,1,1,61,4,1,4,0,12,2,1,0,304 -"5139",0,1,1,43,2,1,4,1,11,2,1,0,304 -"5140",0,1,0,54,2,1,4,0,7,2,0,0,304 -"5141",0,1,0,65,3,1,4,0,11,2,1,0,304 -"5142",0,1,1,51,1,1,4,1,10,2,0,0,304 -"5143",0,1,0,44,1,1,4,1,12,2,0,0,304 -"5144",0,1,1,56,2,1,4,0,9,5,1,0,305 -"5145",1,1,1,68,5,1,4,1,10,5,1,0,305 -"5146",0,1,0,59,2,1,4,0,7,5,0,0,305 -"5147",0,1,1,50,2,1,4,1,3,5,0,0,305 -"5148",0,1,0,56,1,1,4,1,7,5,0,0,305 -"5149",0,1,0,65,1,1,4,0,8,5,1,0,305 -"5150",0,1,1,31,2,1,4,1,9,5,0,0,305 -"5151",0,1,1,48,5,1,4,0,9,5,0,0,305 -"5152",0,1,0,41,2,1,4,1,7,5,1,0,305 -"5153",0,0,0,62,4,1,4,0,10,5,1,0,305 -"5154",0,1,0,40,3,1,4,0,8,5,0,0,305 -"5155",0,1,0,45,2,1,4,1,10,5,1,0,305 -"5156",0,1,1,47,2,1,4,0,8,5,0,0,305 -"5157",0,1,0,59,2,1,4,0,6,5,1,0,305 -"5158",0,1,1,54,2,1,4,1,13,5,1,0,305 -"5159",0,1,0,52,1,1,4,1,9,5,0,0,305 -"5160",0,1,0,55,2,1,4,0,10,5,1,0,305 -"5161",0,1,0,37,5,1,4,1,8,5,0,0,305 -"5162",0,1,0,50,5,1,4,1,9,5,0,0,305 -"5163",0,1,0,31,2,1,4,1,6,5,0,0,305 -"5164",0,1,0,67,2,1,3,1,10,5,0,0,306 -"5165",0,0,0,59,2,1,3,0,5,5,0,0,306 -"5166",0,1,1,48,2,1,3,1,5,5,0,0,306 -"5167",0,1,1,52,1,1,3,1,10,5,0,0,306 -"5168",0,1,0,40,4,1,3,1,7,5,0,0,306 -"5169",0,1,0,57,1,1,3,1,9,5,0,0,306 -"5170",0,1,1,64,1,1,3,0,10,5,0,0,306 -"5171",0,1,0,61,1,1,3,1,10,5,1,0,306 -"5172",0,1,1,52,3,1,3,1,9,5,1,0,306 -"5173",0,1,1,50,2,1,3,0,9,5,0,0,306 -"5174",0,1,1,41,2,1,3,1,9,5,0,0,306 -"5175",0,0,0,34,2,1,3,1,8,5,0,0,306 -"5176",1,1,1,32,1,1,3,0,5,5,0,0,306 -"5177",0,1,0,58,1,1,3,1,10,5,0,0,306 -"5178",0,1,0,53,1,1,3,0,10,5,0,0,306 -"5179",0,1,1,45,3,1,3,0,9,5,0,0,306 -"5180",0,1,0,53,2,1,4,1,9,4,0,0,307 -"5181",0,1,1,42,2,1,4,0,11,4,1,0,307 -"5182",0,1,0,62,1,1,4,1,11,4,1,0,307 -"5183",0,1,1,62,1,1,4,1,8,4,1,0,307 -"5184",0,1,0,60,2,1,4,0,11,4,1,0,307 -"5185",1,1,0,64,2,1,4,0,10,4,0,0,307 -"5186",0,1,0,67,2,1,4,0,12,4,1,0,307 -"5187",0,0,0,52,2,1,4,1,12,4,0,0,307 -"5188",0,1,1,43,2,1,4,1,12,4,1,0,307 -"5189",0,1,0,50,2,1,4,1,11,4,0,0,307 -"5190",0,1,1,53,1,1,4,1,11,4,1,0,307 -"5191",0,1,1,76,1,1,4,1,12,4,1,0,307 -"5192",0,0,1,50,1,1,4,0,10,4,0,0,307 -"5193",0,1,0,46,1,1,4,1,10,4,0,0,307 -"5194",0,1,1,49,1,1,4,0,12,4,0,0,307 -"5195",0,1,0,66,1,1,4,1,12,4,1,0,307 -"5196",0,1,1,36,1,1,4,0,12,4,1,0,307 -"5197",0,0,0,49,1,1,4,1,7,4,1,0,307 -"5198",0,1,0,60,2,1,4,0,12,4,0,0,307 -"5199",0,1,1,47,3,1,4,0,10,4,1,0,307 -"5200",0,0,1,54,2,1,4,1,6,4,0,0,307 -"5201",0,0,1,52,5,1,3,1,7,4,1,0,308 -"5202",0,1,0,57,2,1,3,1,12,4,1,0,308 -"5203",0,1,0,48,1,1,3,1,9,4,0,0,308 -"5204",0,1,1,48,2,1,3,0,10,4,0,0,308 -"5205",0,0,0,59,3,1,3,1,12,4,1,0,308 -"5206",0,1,0,37,3,1,3,1,8,4,0,0,308 -"5207",0,1,0,60,3,1,3,1,12,4,1,0,308 -"5208",0,1,0,47,5,1,3,1,9,4,0,0,308 -"5209",0,1,0,50,3,1,3,1,11,4,1,0,308 -"5210",1,1,1,42,1,1,3,0,8,4,1,0,308 -"5211",0,1,1,44,2,1,3,1,9,4,0,0,308 -"5212",0,1,0,47,1,1,3,1,10,4,0,0,308 -"5213",0,1,1,47,1,1,3,0,9,4,0,0,308 -"5214",0,1,1,56,1,1,3,0,7,4,0,0,308 -"5215",0,1,1,49,2,1,3,0,10,4,0,0,308 -"5216",0,1,0,50,4,1,3,0,9,4,0,0,308 -"5217",0,1,0,42,3,1,3,1,9,4,0,0,308 -"5218",0,1,1,65,3,1,3,0,9,4,0,0,308 -"5219",0,1,0,45,4,1,3,1,8,4,0,0,308 -"5220",0,1,0,51,1,1,3,1,10,4,0,0,308 -"5221",0,1,1,41,1,1,3,1,11,4,0,0,308 -"5222",0,1,0,61,2,1,5,1,10,3,1,0,309 -"5223",0,1,0,48,3,1,5,0,9,3,1,0,309 -"5224",0,1,0,45,2,1,5,1,11,3,1,0,309 -"5225",1,1,1,61,2,1,5,1,11,3,0,0,309 -"5226",0,1,1,66,1,1,5,1,10,3,1,0,309 -"5227",0,1,0,65,3,1,5,0,12,3,1,0,309 -"5228",0,1,0,49,1,1,5,0,11,3,1,0,309 -"5229",0,1,0,60,3,1,5,1,12,3,0,0,309 -"5230",0,1,1,50,2,1,5,0,8,3,0,0,309 -"5231",0,1,1,44,2,1,5,1,11,3,0,0,309 -"5232",0,1,1,51,2,1,5,0,8,3,1,0,309 -"5233",0,1,1,62,1,1,5,1,7,3,1,0,309 -"5234",0,1,0,63,2,1,5,0,10,3,1,0,309 -"5235",0,1,0,62,2,1,5,0,10,3,1,0,309 -"5236",1,0,0,50,1,1,5,1,11,3,0,0,309 -"5237",0,1,1,40,3,1,5,1,10,3,0,0,309 -"5238",0,1,0,52,3,1,5,1,7,3,0,0,309 -"5239",0,1,0,42,5,1,5,1,9,3,0,0,309 -"5240",0,1,1,58,3,1,5,1,8,3,0,0,309 -"5241",0,1,0,54,1,1,4,1,9,4,0,0,310 -"5242",0,1,0,63,4,1,4,0,10,4,0,0,310 -"5243",0,1,0,59,2,1,4,1,12,4,1,0,310 -"5244",0,1,0,47,2,1,4,1,10,4,1,0,310 -"5245",1,1,0,51,2,1,4,1,11,4,1,0,310 -"5246",0,1,1,67,1,1,4,0,9,4,0,0,310 -"5247",0,1,1,66,2,1,4,0,12,4,1,0,310 -"5248",1,1,1,49,3,1,4,0,8,4,1,0,310 -"5249",0,1,1,62,1,1,4,0,9,4,0,0,310 -"5250",1,1,0,53,3,1,4,0,4,4,0,0,310 -"5251",0,1,1,46,2,1,4,0,7,4,0,0,310 -"5252",0,1,0,72,2,1,4,1,13,4,0,0,310 -"5253",0,1,1,40,2,1,4,1,10,4,0,0,310 -"5254",1,1,0,49,5,1,4,0,10,4,0,0,310 -"5255",1,0,1,45,1,1,4,0,10,4,1,0,310 -"5256",0,1,0,48,1,1,4,1,9,4,0,0,310 -"5257",0,1,1,52,1,1,4,0,9,4,0,0,310 -"5258",1,1,0,54,2,1,5,1,9,4,0,0,311 -"5259",0,1,0,52,3,1,5,0,8,4,0,0,311 -"5260",0,1,0,45,2,1,5,1,8,4,1,0,311 -"5261",0,1,1,54,2,1,5,1,9,4,0,0,311 -"5262",1,1,1,40,2,1,5,0,10,4,0,0,311 -"5263",1,1,0,56,5,1,5,1,10,4,1,0,311 -"5264",0,1,0,76,3,1,5,1,7,4,0,0,311 -"5265",0,0,1,57,2,1,5,0,8,4,1,0,311 -"5266",0,1,1,43,2,1,5,1,3,4,0,0,311 -"5267",0,1,0,57,3,1,5,0,12,4,1,0,311 -"5268",0,1,0,67,1,1,5,0,10,4,1,0,311 -"5269",0,1,0,51,4,1,5,1,9,4,0,0,311 -"5270",0,1,0,51,4,1,5,1,10,4,0,0,311 -"5271",0,1,1,43,5,1,5,1,9,4,1,0,311 -"5272",0,1,0,48,2,1,5,0,12,4,1,0,311 -"5273",0,1,0,49,3,1,5,0,9,4,0,0,311 -"5274",0,1,0,42,2,1,5,0,9,4,0,0,311 -"5275",0,0,1,48,4,1,5,1,11,4,1,0,311 -"5276",0,1,0,44,2,1,5,1,6,4,0,0,311 -"5277",1,1,0,48,2,1,5,1,10,4,1,0,311 -"5278",1,1,1,37,5,1,5,0,11,4,0,0,311 -"5279",0,1,0,23,3,1,4,0,12,1,0,0,312 -"5280",0,1,1,53,1,1,4,0,6,1,1,0,312 -"5281",1,0,0,38,1,1,4,1,3,1,0,0,312 -"5282",0,1,1,52,1,1,4,1,9,1,1,0,312 -"5283",0,1,0,52,1,1,4,1,11,1,1,0,312 -"5284",1,1,1,37,2,1,4,1,9,1,1,0,312 -"5285",0,1,1,44,2,1,4,0,8,1,0,0,312 -"5286",0,1,0,58,1,1,4,1,7,1,0,0,312 -"5287",0,1,0,37,3,1,4,1,10,1,0,0,312 -"5288",0,1,0,52,2,1,4,1,10,1,1,0,312 -"5289",0,1,0,60,1,1,4,1,7,1,1,0,312 -"5290",0,1,0,53,2,1,4,1,13,1,1,0,312 -"5291",0,1,0,39,4,1,4,1,12,1,1,0,312 -"5292",1,1,1,55,5,1,4,0,4,1,1,0,312 -"5293",0,1,0,61,1,1,4,0,9,1,0,0,312 -"5294",0,1,1,44,2,1,4,0,5,1,1,0,312 -"5295",0,1,1,44,1,1,4,1,8,1,0,0,312 -"5296",1,1,1,42,4,1,4,0,10,1,0,0,312 -"5297",0,1,1,55,2,1,4,0,11,4,0,0,313 -"5298",1,1,0,41,2,1,4,0,10,4,0,0,313 -"5299",0,1,0,53,3,1,4,1,10,4,1,0,313 -"5300",0,1,0,46,1,1,4,0,10,4,1,0,313 -"5301",0,1,0,20,2,1,4,1,9,4,0,0,313 -"5302",0,1,1,33,1,1,4,1,9,4,0,0,313 -"5303",0,1,1,33,2,1,4,1,10,4,0,0,313 -"5304",0,1,0,46,2,1,4,0,9,4,1,0,313 -"5305",0,0,0,48,1,1,4,0,9,4,1,0,313 -"5306",0,0,1,45,2,1,4,0,10,4,1,0,313 -"5307",0,1,0,48,1,1,4,0,13,4,1,0,313 -"5308",0,1,0,51,3,1,4,0,10,4,0,0,313 -"5309",0,1,0,55,3,1,4,0,11,4,0,0,313 -"5310",0,1,0,44,2,1,4,1,10,4,1,0,313 -"5311",0,1,0,49,2,1,4,0,9,4,1,0,313 -"5312",0,1,0,43,3,1,4,0,9,4,0,0,313 -"5313",0,1,1,69,3,1,4,1,12,4,1,0,313 -"5314",0,1,0,45,3,1,4,1,10,4,0,0,313 -"5315",0,1,0,44,2,1,4,0,7,4,0,0,313 -"5316",0,1,1,29,5,1,4,0,7,4,0,0,313 -"5317",0,1,0,22,2,1,4,1,8,4,0,0,313 -"5318",0,1,0,58,3,1,4,1,10,4,1,0,313 -"5319",0,1,0,30,3,1,5,0,12,1,0,0,314 -"5320",1,1,0,37,3,1,5,0,11,1,1,0,314 -"5321",1,0,1,42,5,1,5,0,9,1,1,0,314 -"5322",0,1,0,62,3,1,5,1,11,1,0,0,314 -"5323",0,1,0,46,3,1,5,0,9,1,1,0,314 -"5324",0,1,0,47,1,1,5,0,10,3,1,0,315 -"5325",0,1,0,50,2,1,5,1,10,3,0,0,315 -"5326",0,1,1,43,2,1,5,0,10,3,0,0,315 -"5327",0,0,0,28,3,1,5,0,8,3,0,0,315 -"5328",0,1,0,52,2,1,5,0,10,3,0,0,315 -"5329",1,1,1,47,1,1,5,0,12,3,0,0,315 -"5330",0,1,0,49,1,1,5,0,9,3,1,0,315 -"5331",1,1,1,44,2,1,5,0,8,3,0,0,315 -"5332",0,1,1,36,2,1,5,1,9,3,0,0,315 -"5333",0,1,0,35,2,1,5,1,4,3,0,0,315 -"5334",0,1,0,65,1,1,5,1,9,3,1,0,315 -"5335",0,1,0,48,1,1,5,0,5,3,0,0,315 -"5336",0,1,0,46,2,1,5,1,12,3,1,0,315 -"5337",0,1,0,55,3,1,5,0,9,3,0,0,315 -"5338",0,1,0,50,2,1,5,1,12,3,1,0,315 -"5339",0,1,0,37,2,1,5,1,3,3,0,0,315 -"5340",0,1,0,33,2,1,5,1,5,3,0,0,315 -"5341",1,0,0,36,5,1,5,1,9,3,0,0,315 -"5342",1,0,1,49,5,1,5,0,5,3,0,0,315 -"5343",0,1,0,44,1,1,5,0,11,3,0,0,315 -"5344",0,1,1,56,5,1,5,1,12,3,0,0,315 -"5345",0,1,1,52,2,1,4,0,8,5,0,0,316 -"5346",1,1,0,50,3,1,4,1,8,5,1,0,316 -"5347",0,1,0,55,1,1,4,1,5,5,0,0,316 -"5348",0,1,1,48,3,1,4,0,10,5,0,0,316 -"5349",0,1,0,40,2,1,4,0,8,5,0,0,316 -"5350",0,0,0,47,1,1,4,0,7,5,1,0,316 -"5351",0,1,0,51,2,1,4,0,9,5,0,0,316 -"5352",0,1,0,34,1,1,4,1,10,5,0,0,316 -"5353",0,1,1,53,2,1,4,0,10,5,1,0,316 -"5354",0,1,0,67,5,1,4,0,8,5,0,0,316 -"5355",0,1,1,67,1,1,4,0,11,5,1,0,316 -"5356",0,1,1,47,1,1,4,1,9,5,0,0,316 -"5357",0,1,1,62,2,1,4,0,11,5,0,0,316 -"5358",0,1,0,64,2,1,4,0,10,2,1,0,317 -"5359",0,0,0,61,3,1,4,0,8,2,0,0,317 -"5360",0,1,1,62,3,1,4,1,7,2,0,0,317 -"5361",0,1,1,58,2,1,4,1,9,2,1,0,317 -"5362",0,1,1,55,2,1,4,1,9,2,0,0,317 -"5363",0,1,0,47,2,1,4,1,10,2,1,0,317 -"5364",0,1,1,52,2,1,4,0,12,2,1,0,317 -"5365",0,1,0,55,2,1,4,1,10,2,0,0,317 -"5366",0,1,1,60,5,1,4,1,11,2,1,0,317 -"5367",0,1,0,54,2,1,4,1,8,2,0,0,317 -"5368",1,1,1,59,2,1,4,0,9,2,1,0,317 -"5369",0,0,1,54,3,1,4,1,9,2,0,0,317 -"5370",0,1,1,54,4,1,4,0,10,2,1,0,317 -"5371",0,0,1,50,3,1,4,1,13,2,1,0,317 -"5372",0,1,1,51,3,1,4,0,5,2,0,0,317 -"5373",0,1,0,47,1,1,4,1,9,2,1,0,317 -"5374",0,1,0,72,2,1,4,0,12,2,1,0,317 -"5375",1,1,1,55,1,1,4,0,10,2,0,0,317 -"5376",0,1,0,32,2,1,4,1,7,2,0,0,317 -"5377",0,1,0,62,2,1,4,1,9,2,0,0,317 -"5378",0,1,0,60,4,1,4,1,9,2,1,0,317 -"5379",0,0,1,52,2,1,4,0,9,2,0,0,317 -"5380",0,1,0,30,5,1,4,1,9,7,0,0,318 -"5381",0,1,0,24,3,1,4,1,7,7,0,0,318 -"5382",0,1,0,62,2,1,4,1,9,3,0,0,319 -"5383",0,1,1,50,2,1,4,0,4,3,0,0,319 -"5384",0,0,0,41,2,1,4,1,11,3,1,0,319 -"5385",0,1,1,34,1,1,4,0,10,3,1,0,319 -"5386",1,0,0,62,5,1,4,0,9,3,0,0,319 -"5387",0,1,1,50,1,1,4,1,9,3,0,0,319 -"5388",0,1,0,34,1,1,4,0,8,3,0,0,319 -"5389",0,1,0,35,2,1,4,1,12,3,1,0,319 -"5390",0,1,1,58,1,1,4,0,10,3,0,0,319 -"5391",0,1,1,40,1,1,4,1,6,3,0,0,319 -"5392",1,0,1,45,3,1,4,0,5,3,0,0,319 -"5393",0,1,1,58,2,1,4,0,8,3,1,0,319 -"5394",0,1,1,47,3,1,4,0,9,3,0,0,319 -"5395",0,1,0,38,3,1,4,0,7,3,0,0,319 -"5396",0,1,1,59,2,1,4,0,6,3,0,0,319 -"5397",1,1,0,35,2,1,4,1,8,3,0,0,319 -"5398",0,1,1,38,2,1,4,0,12,3,1,0,319 -"5399",1,0,1,42,5,1,4,0,10,3,1,0,319 -"5400",0,1,1,55,3,1,4,1,9,3,0,0,319 -"5401",0,1,1,51,1,1,4,0,7,3,0,0,319 -"5402",0,1,1,56,1,1,4,0,10,3,1,0,319 -"5403",1,1,0,46,4,1,4,1,10,3,1,0,319 -"5404",0,1,0,40,2,1,4,0,10,3,0,0,319 -"5405",0,1,1,53,3,1,4,0,12,3,0,0,319 -"5406",0,0,1,34,5,1,4,0,9,3,0,0,319 -"5407",0,1,1,43,2,1,4,1,12,3,0,0,319 -"5408",0,1,1,43,3,1,4,1,8,3,0,0,319 -"5409",0,1,0,47,2,1,4,0,5,2,0,0,320 -"5410",0,1,0,62,1,1,4,0,10,2,1,0,320 -"5411",0,1,0,49,3,1,4,0,7,2,1,0,320 -"5412",0,1,0,59,3,1,4,1,10,2,1,0,320 -"5413",0,1,1,29,4,1,4,0,10,2,0,0,320 -"5414",1,1,0,38,1,1,4,0,7,2,0,0,320 -"5415",0,0,0,47,3,1,4,1,12,2,0,0,320 -"5416",1,1,0,30,1,1,4,1,6,2,0,0,320 -"5417",1,1,0,52,1,1,4,0,11,2,0,0,320 -"5418",0,0,0,53,1,1,4,1,8,2,0,0,320 -"5419",0,1,0,55,1,1,4,1,10,2,0,0,320 -"5420",0,1,1,43,2,1,4,1,8,2,0,0,320 -"5421",0,1,1,44,2,1,4,1,12,2,1,0,320 -"5422",0,1,0,49,3,1,4,0,7,2,0,0,320 -"5423",0,1,0,62,1,1,4,0,12,2,0,0,320 -"5424",0,1,0,57,2,1,4,1,10,2,0,0,320 -"5425",0,1,1,57,1,1,4,0,12,2,0,0,320 -"5426",0,1,0,56,1,1,4,0,10,2,1,0,320 -"5427",0,1,0,59,3,1,4,0,7,2,0,0,320 -"5428",0,1,0,71,2,1,4,0,9,2,1,0,320 -"5429",0,1,0,39,1,1,4,0,1,2,0,0,320 -"5430",0,1,0,63,1,1,4,0,9,2,1,0,320 -"5431",0,1,1,54,1,1,4,0,9,2,1,0,320 -"5432",0,1,0,36,3,1,4,1,4,2,0,0,321 -"5433",1,1,1,41,5,1,4,0,9,2,0,0,321 -"5434",0,1,0,37,5,1,4,0,9,2,0,0,321 -"5435",0,1,0,60,2,1,4,0,6,2,0,0,321 -"5436",0,1,0,44,5,1,4,0,9,2,0,0,321 -"5437",0,1,1,32,5,1,4,0,8,2,0,0,321 -"5438",0,1,0,66,1,1,4,0,11,2,1,0,321 -"5439",0,1,0,59,4,1,4,1,11,2,1,0,321 -"5440",1,1,0,30,3,1,4,1,6,2,0,0,321 -"5441",0,1,0,50,2,1,4,1,6,2,0,0,321 -"5442",0,1,0,55,2,1,4,1,10,2,0,0,321 -"5443",0,1,0,45,4,1,4,0,9,2,0,0,321 -"5444",0,1,1,50,5,1,4,1,10,2,1,0,321 -"5445",0,1,1,51,2,1,4,1,11,2,0,0,321 -"5446",0,1,0,34,3,1,4,1,9,2,0,0,321 -"5447",0,1,0,55,3,1,4,1,8,2,0,0,321 -"5448",1,1,0,59,3,1,4,0,8,2,0,0,321 -"5449",1,0,0,48,5,1,4,0,10,2,0,0,321 -"5450",0,1,0,56,2,1,4,0,10,2,0,0,321 -"5451",0,1,1,50,3,1,4,1,8,2,0,0,321 -"5452",0,1,1,50,2,1,4,0,12,2,0,0,321 -"5453",0,1,0,32,2,1,4,0,4,2,0,0,321 -"5454",0,0,0,43,5,1,4,1,2,2,0,0,321 -"5455",0,1,0,37,5,1,4,1,7,2,1,0,321 -"5456",0,1,1,45,5,1,4,1,13,2,1,1,322 -"5457",0,1,0,58,2,1,4,0,15,2,1,1,322 -"5458",0,1,0,38,1,1,4,1,11,2,1,1,322 -"5459",0,1,1,51,2,1,4,1,12,2,1,1,322 -"5460",0,1,0,65,2,1,4,1,10,2,1,1,322 -"5461",0,0,0,58,2,1,4,0,12,2,1,1,322 -"5462",0,1,0,67,2,1,4,1,9,2,1,1,322 -"5463",0,0,0,49,2,1,4,1,15,2,1,1,322 -"5464",0,1,0,71,1,1,4,0,11,2,1,1,322 -"5465",0,1,0,53,3,1,4,0,10,2,0,1,322 -"5466",0,0,1,57,1,1,4,0,11,2,0,1,322 -"5467",0,1,0,52,2,1,4,0,9,2,1,1,322 -"5468",0,1,0,57,2,1,4,0,8,2,0,1,322 -"5469",0,1,0,56,2,1,4,0,9,2,1,1,322 -"5470",0,1,1,49,2,1,4,1,12,2,1,1,322 -"5471",0,1,1,56,2,1,4,0,11,2,1,1,322 -"5472",0,1,0,47,2,1,4,0,11,2,1,1,322 -"5473",0,1,0,59,2,1,4,0,10,3,1,0,323 -"5474",0,1,0,60,3,1,4,0,10,3,1,0,323 -"5475",0,1,1,54,1,1,4,0,8,3,1,0,323 -"5476",0,1,0,51,4,1,4,1,10,3,1,0,323 -"5477",0,1,1,59,4,1,4,1,11,3,1,0,323 -"5478",0,1,0,43,3,1,4,1,13,3,1,0,323 -"5479",0,1,0,55,1,1,4,1,9,3,1,0,323 -"5480",0,1,1,52,2,1,4,1,11,3,0,0,323 -"5481",0,1,1,64,3,1,4,0,11,3,1,0,323 -"5482",0,1,0,60,2,1,4,1,12,3,0,0,323 -"5483",0,0,1,58,3,1,4,0,8,3,1,0,323 -"5484",1,0,0,42,2,1,4,0,9,3,1,0,323 -"5485",0,1,0,73,2,1,4,1,11,3,1,0,323 -"5486",0,1,0,53,3,1,4,1,9,3,1,0,323 -"5487",0,1,0,65,1,1,4,1,11,3,1,0,323 -"5488",0,1,0,59,2,1,4,0,9,7,0,0,324 -"5489",0,1,0,47,2,1,4,1,6,7,0,0,324 -"5490",0,1,1,49,3,1,4,0,8,7,0,0,324 -"5491",0,1,0,52,2,1,4,1,8,7,1,0,324 -"5492",0,1,1,49,5,1,4,0,12,7,1,0,324 -"5493",0,1,0,69,2,1,4,0,7,7,1,0,324 -"5494",0,1,0,56,1,1,4,0,1,7,0,0,324 -"5495",0,1,0,46,2,1,4,0,8,7,0,0,324 -"5496",0,1,0,59,3,1,4,1,7,7,1,0,324 -"5497",0,1,0,55,2,1,4,1,6,7,0,0,324 -"5498",0,1,0,54,4,1,4,1,10,7,1,0,324 -"5499",0,1,0,51,2,1,4,1,9,7,1,0,324 -"5500",0,1,0,71,2,1,4,0,9,7,1,0,324 -"5501",0,1,0,45,1,1,4,1,7,7,0,0,324 -"5502",0,1,0,49,3,1,4,1,14,7,1,0,324 -"5503",0,1,0,61,2,1,4,0,8,7,0,0,324 -"5504",0,1,0,48,4,1,4,1,6,7,0,0,324 -"5505",0,1,0,60,2,1,4,0,6,7,0,0,324 -"5506",0,1,1,57,1,1,4,0,8,7,0,0,324 -"5507",0,0,0,62,5,1,4,0,12,7,1,0,324 -"5508",0,1,0,61,5,1,4,1,5,7,0,0,324 -"5509",0,1,0,48,2,1,4,1,7,7,1,0,324 -"5510",0,1,1,49,1,1,4,0,10,4,0,0,325 -"5511",0,1,1,58,3,1,4,1,11,4,0,0,325 -"5512",0,1,0,47,1,1,4,1,12,4,1,0,325 -"5513",0,1,1,40,1,1,4,1,4,4,0,0,325 -"5514",0,0,0,57,1,1,4,0,11,4,1,0,325 -"5515",0,1,1,59,1,1,4,1,8,4,0,0,325 -"5516",0,1,1,58,2,1,4,1,10,4,0,0,325 -"5517",0,0,1,51,3,1,4,0,9,4,0,0,325 -"5518",0,1,1,44,3,1,4,0,9,4,0,0,325 -"5519",0,1,1,42,2,1,4,1,8,4,0,0,325 -"5520",1,1,1,25,2,1,4,1,9,4,0,0,325 -"5521",0,1,1,47,2,1,4,1,5,4,0,0,325 -"5522",0,1,0,48,2,1,4,0,9,4,1,0,325 -"5523",0,1,1,67,4,1,4,0,12,1,1,0,326 -"5524",0,1,1,67,5,1,4,1,9,1,1,0,326 -"5525",0,1,0,35,2,1,4,1,11,1,0,0,326 -"5526",0,1,1,72,3,1,4,0,11,1,1,0,326 -"5527",0,1,0,58,2,1,4,1,13,1,1,0,326 -"5528",0,1,0,40,4,1,4,0,12,1,1,0,326 -"5529",0,1,0,70,2,1,4,0,12,1,1,0,326 -"5530",0,0,0,48,2,1,4,0,9,1,1,0,326 -"5531",1,0,0,75,3,1,4,0,12,1,1,0,326 -"5532",0,1,1,59,2,1,4,0,13,1,1,0,326 -"5533",0,0,0,69,3,1,4,0,13,1,1,0,326 -"5534",0,1,0,66,1,1,4,1,10,1,0,0,326 -"5535",0,1,0,63,2,1,4,0,9,1,0,0,326 -"5536",0,1,0,67,3,1,4,0,13,1,1,0,326 -"5537",0,1,0,68,2,1,4,0,12,1,1,0,326 -"5538",0,1,0,65,1,1,4,1,10,1,1,0,326 -"5539",0,0,1,57,4,1,4,0,11,1,1,0,326 -"5540",0,1,0,53,2,1,4,1,10,1,0,0,326 -"5541",0,1,1,73,5,1,4,0,12,1,1,0,326 -"5542",0,1,0,71,1,1,4,0,10,1,1,0,326 -"5543",0,1,1,61,2,1,4,0,12,1,1,0,326 -"5544",0,1,0,69,3,1,4,0,10,1,1,0,326 -"5545",0,1,0,62,5,1,4,1,10,1,1,0,326 -"5546",0,0,1,50,5,1,4,0,10,1,1,0,326 -"5547",0,0,1,68,5,1,4,1,13,1,1,0,326 -"5548",0,1,1,68,2,1,4,0,12,1,1,0,326 -"5549",0,1,1,62,2,1,4,1,12,1,1,0,326 -"5550",0,1,1,59,3,1,4,1,11,1,1,0,326 -"5551",0,1,0,61,5,1,4,1,10,1,0,0,327 -"5552",0,1,1,57,2,1,4,1,10,1,1,0,327 -"5553",0,1,0,58,5,1,4,1,12,1,1,0,327 -"5554",1,1,0,59,3,1,4,0,10,1,1,0,327 -"5555",0,1,0,61,3,1,4,0,12,1,1,0,327 -"5556",0,1,0,40,4,1,4,1,12,1,0,0,327 -"5557",0,1,1,60,2,1,4,0,13,1,1,0,327 -"5558",1,1,0,49,3,1,4,1,11,1,1,0,327 -"5559",0,1,0,51,1,1,4,1,10,1,1,0,327 -"5560",0,1,0,50,3,1,4,1,13,1,1,0,327 -"5561",0,1,0,46,4,1,4,0,8,1,0,0,327 -"5562",1,1,0,49,5,1,4,0,11,1,1,0,327 -"5563",0,1,1,48,1,1,4,0,11,1,1,0,327 -"5564",0,1,0,54,3,1,4,0,11,1,1,0,327 -"5565",0,1,0,39,1,1,4,0,13,1,0,0,327 -"5566",0,1,0,51,2,1,4,0,13,1,1,0,327 -"5567",0,1,1,60,2,1,4,0,12,1,1,0,327 -"5568",0,1,0,42,2,1,4,1,10,1,0,0,327 -"5569",0,1,0,36,2,0,3,1,9,1,0,1,328 -"5570",0,1,0,33,3,0,3,1,10,1,0,1,328 -"5571",0,1,0,63,1,0,3,1,11,1,1,1,328 -"5572",1,1,0,38,2,0,3,1,8,1,0,1,328 -"5573",0,1,0,64,3,0,3,1,11,1,0,1,328 -"5574",0,1,0,55,1,0,3,0,3,1,0,1,328 -"5575",0,1,0,56,1,0,3,1,11,1,0,1,328 -"5576",0,1,0,50,2,0,3,1,11,1,1,1,328 -"5577",0,1,0,44,1,0,3,1,11,1,0,1,328 -"5578",1,1,0,46,1,0,3,1,11,1,0,1,328 -"5579",0,1,1,52,1,0,3,1,11,1,0,1,328 -"5580",0,0,0,57,2,0,3,1,11,1,0,1,328 -"5581",0,1,0,56,2,0,3,1,11,1,0,1,328 -"5582",0,1,1,62,3,0,3,1,9,1,0,1,328 -"5583",0,1,0,56,3,0,3,1,7,1,0,1,328 -"5584",0,1,0,59,3,0,3,1,6,1,0,1,328 -"5585",0,1,0,47,2,0,3,1,10,1,0,1,328 -"5586",0,1,0,51,1,0,3,1,4,1,1,1,328 -"5587",0,1,0,61,1,0,3,1,10,1,0,1,328 -"5588",0,1,0,53,2,1,4,1,10,2,1,0,329 -"5589",0,1,1,36,3,1,4,1,9,2,0,0,329 -"5590",0,0,1,41,2,1,4,0,9,2,0,0,329 -"5591",0,1,0,43,1,1,4,0,10,2,0,0,329 -"5592",0,1,0,72,3,1,4,1,11,2,0,0,329 -"5593",1,0,1,43,3,1,4,0,8,2,0,0,329 -"5594",0,1,0,48,2,1,4,1,9,2,0,0,329 -"5595",0,1,0,56,2,1,4,1,10,2,0,0,329 -"5596",0,1,1,45,2,1,4,0,11,2,1,0,329 -"5597",0,1,0,69,1,1,4,1,10,2,0,0,329 -"5598",0,1,0,42,2,1,4,1,10,2,0,0,329 -"5599",0,1,0,53,2,1,4,0,10,2,0,0,329 -"5600",0,1,0,49,1,1,4,1,6,2,1,0,329 -"5601",1,0,0,53,2,1,4,0,8,2,0,0,329 -"5602",0,1,0,68,1,1,4,0,10,2,1,0,329 -"5603",0,1,0,61,3,1,4,1,7,2,0,0,329 -"5604",0,1,1,40,1,1,4,0,8,2,1,0,329 -"5605",0,1,1,69,3,1,4,0,12,2,1,0,329 -"5606",0,1,0,53,3,1,4,1,10,2,0,0,329 -"5607",0,1,0,44,1,1,4,1,9,2,1,0,329 -"5608",0,1,1,53,1,1,4,1,10,2,0,0,329 -"5609",1,1,0,38,4,1,5,0,8,6,0,0,330 -"5610",1,1,0,30,3,1,5,0,5,6,0,0,330 -"5611",0,1,1,53,1,1,5,0,13,6,0,0,330 -"5612",0,1,0,51,2,1,5,0,7,6,0,0,330 -"5613",0,1,1,36,4,1,5,0,11,6,1,0,330 -"5614",0,1,0,56,2,1,5,0,9,6,1,0,330 -"5615",0,1,0,50,2,1,5,1,10,6,1,0,330 -"5616",1,0,1,38,3,1,5,1,7,6,1,0,330 -"5617",0,1,1,52,4,1,5,1,9,6,0,0,330 -"5618",0,1,0,28,1,1,5,1,8,6,0,0,330 -"5619",0,1,1,32,3,1,4,1,10,6,0,0,331 -"5620",0,1,0,52,3,1,4,1,9,6,0,0,331 -"5621",0,1,0,26,3,1,4,0,6,6,0,0,331 -"5622",0,0,0,61,2,1,4,0,9,1,0,0,332 -"5623",0,1,0,53,1,1,4,0,11,1,1,0,332 -"5624",0,1,1,53,1,1,4,1,11,1,1,0,332 -"5625",0,1,1,59,5,1,4,0,13,1,0,0,332 -"5626",0,1,0,50,4,1,4,1,10,1,1,0,332 -"5627",0,1,0,58,2,1,4,1,12,1,1,0,332 -"5628",0,1,1,54,2,1,4,1,10,1,1,0,332 -"5629",0,1,1,40,2,1,4,0,11,1,0,0,332 -"5630",1,0,0,56,3,1,4,0,12,1,1,0,332 -"5631",0,1,0,46,4,1,4,1,9,1,0,0,332 -"5632",0,1,1,66,2,1,4,0,11,1,1,0,332 -"5633",0,1,0,43,2,1,4,1,12,1,1,0,332 -"5634",0,1,0,59,2,1,4,0,12,1,1,0,332 -"5635",0,1,0,48,3,1,4,0,8,1,1,0,332 -"5636",0,1,0,51,2,1,4,1,12,1,1,0,332 -"5637",1,1,0,45,2,1,4,0,9,1,1,0,332 -"5638",0,1,0,56,1,1,4,1,12,1,1,0,332 -"5639",0,1,1,60,1,1,4,0,12,1,0,0,332 -"5640",0,0,0,48,1,1,4,1,9,1,1,0,332 -"5641",0,1,1,47,2,1,4,0,10,1,1,0,332 -"5642",0,1,0,58,2,1,4,0,12,1,1,0,332 -"5643",0,1,0,52,1,1,4,1,12,1,1,0,332 -"5644",0,1,1,59,3,1,4,0,2,1,0,0,332 -"5645",0,1,1,49,2,1,4,1,9,5,0,0,333 -"5646",0,1,1,63,2,1,4,1,12,5,0,0,333 -"5647",0,1,1,46,2,1,4,1,10,5,0,0,333 -"5648",0,0,1,51,5,1,4,1,10,5,1,0,333 -"5649",0,1,0,68,3,1,4,1,9,5,1,0,333 -"5650",0,1,1,51,2,1,4,0,8,5,0,0,333 -"5651",0,1,1,47,1,1,4,1,10,5,1,0,333 -"5652",0,1,0,56,1,1,4,0,9,5,1,0,333 -"5653",0,1,1,41,2,1,4,0,12,5,0,0,333 -"5654",0,1,1,64,3,1,4,1,9,5,0,0,333 -"5655",0,1,0,52,5,1,4,1,11,5,0,0,333 -"5656",0,1,0,35,2,1,4,0,11,5,1,0,333 -"5657",0,1,1,59,1,1,4,1,9,5,0,0,333 -"5658",0,1,0,54,2,1,4,1,6,5,0,0,333 -"5659",0,1,1,38,3,1,4,1,10,5,0,0,333 -"5660",0,0,0,49,5,1,4,1,5,5,0,0,333 -"5661",0,1,1,57,2,1,4,1,6,5,0,0,333 -"5662",0,1,0,33,1,1,4,0,9,5,1,0,333 -"5663",0,1,0,46,3,1,4,1,9,5,0,0,333 -"5664",0,1,0,71,2,1,4,1,13,1,1,0,334 -"5665",0,1,0,68,5,1,4,1,12,1,1,0,334 -"5666",0,1,0,61,1,1,4,1,11,1,1,0,334 -"5667",0,1,0,58,1,1,4,1,10,1,0,0,334 -"5668",0,1,0,72,4,1,4,0,11,1,1,0,334 -"5669",0,1,0,59,2,1,4,0,9,1,1,0,334 -"5670",1,1,1,62,3,1,4,0,11,1,0,0,334 -"5671",1,0,1,56,3,1,4,0,9,1,1,0,334 -"5672",0,1,0,67,3,1,4,1,9,1,0,0,334 -"5673",0,1,0,69,2,1,4,0,12,1,1,0,334 -"5674",0,0,0,68,2,1,4,1,10,1,1,0,334 -"5675",0,1,0,64,5,1,4,1,1,1,1,0,334 -"5676",0,1,0,67,2,1,4,0,11,1,1,0,334 -"5677",0,1,0,72,2,1,4,0,9,1,1,0,334 -"5678",0,1,1,69,5,1,4,0,12,1,1,0,334 -"5679",0,1,0,58,2,1,4,1,12,1,1,0,334 -"5680",0,1,1,57,2,1,4,1,10,1,1,0,334 -"5681",0,1,0,58,1,1,4,1,13,1,1,0,334 -"5682",0,1,0,58,1,1,4,1,8,1,0,0,334 -"5683",0,1,1,46,3,1,5,0,11,5,0,0,335 -"5684",0,1,0,56,1,1,5,1,11,5,0,0,335 -"5685",0,1,0,46,1,1,5,0,10,5,1,0,335 -"5686",0,1,0,55,5,1,5,1,10,5,1,0,335 -"5687",0,1,0,49,1,1,5,0,10,5,0,0,335 -"5688",0,1,0,57,3,1,5,1,12,5,1,0,335 -"5689",0,1,0,54,1,1,5,0,11,5,1,0,335 -"5690",0,1,1,49,2,1,5,1,8,5,1,0,335 -"5691",0,1,0,46,3,1,5,0,7,5,0,0,335 -"5692",0,1,0,54,3,1,5,1,8,5,0,0,335 -"5693",0,1,0,44,2,1,5,1,11,5,1,0,335 -"5694",0,1,1,61,4,1,5,0,9,5,0,0,335 -"5695",0,1,1,55,1,1,5,1,8,5,0,0,335 -"5696",1,1,1,45,2,1,5,0,10,5,1,0,335 -"5697",0,1,0,46,3,1,5,1,10,5,1,0,335 -"5698",0,1,0,62,5,1,5,1,11,5,1,0,335 -"5699",0,0,0,54,2,1,5,1,9,5,0,0,335 -"5700",0,0,1,53,3,1,5,1,4,5,0,0,335 -"5701",0,0,0,46,2,1,5,0,8,5,0,0,335 -"5702",0,0,0,61,2,1,5,0,9,5,0,0,335 -"5703",1,0,0,50,5,1,4,0,5,3,0,0,336 -"5704",1,1,0,46,1,1,4,0,10,3,1,0,336 -"5705",0,1,0,52,3,1,4,1,9,3,0,0,336 -"5706",0,1,1,49,3,1,4,1,12,3,1,0,336 -"5707",1,1,0,44,3,1,4,0,9,3,0,0,336 -"5708",0,1,1,38,2,1,4,1,6,3,0,0,336 -"5709",0,1,1,58,5,1,4,1,10,3,1,0,336 -"5710",0,1,1,53,1,1,4,0,10,3,0,0,336 -"5711",1,1,0,49,2,1,4,0,10,3,1,0,336 -"5712",0,1,0,42,3,1,4,0,7,3,0,0,336 -"5713",0,1,0,50,3,1,4,1,10,3,1,0,336 -"5714",0,1,0,63,1,1,4,1,10,3,1,0,336 -"5715",0,1,0,49,2,0,2,1,10,1,1,0,337 -"5716",1,1,1,48,3,0,2,1,12,1,1,0,337 -"5717",0,1,0,52,3,0,2,1,9,1,1,0,337 -"5718",0,1,0,52,1,0,2,1,10,1,1,0,337 -"5719",0,1,0,52,1,0,2,1,9,1,1,0,337 -"5720",0,1,1,54,2,0,2,1,11,1,1,0,337 -"5721",0,1,0,65,2,0,2,1,11,1,1,0,337 -"5722",0,1,0,59,1,0,2,1,8,1,1,0,337 -"5723",0,1,0,52,2,0,2,1,8,1,1,0,337 -"5724",0,0,0,53,3,0,2,1,9,1,1,0,337 -"5725",0,1,0,60,2,0,2,1,9,1,1,0,337 -"5726",0,0,0,49,3,1,4,1,5,7,0,0,338 -"5727",1,1,1,47,2,1,4,0,6,7,0,0,338 -"5728",0,1,0,54,1,1,4,1,8,7,0,0,338 -"5729",0,1,0,59,2,1,4,0,9,7,1,0,338 -"5730",0,1,0,42,1,1,4,0,9,7,1,0,338 -"5731",0,1,0,44,5,1,4,1,5,7,0,0,338 -"5732",0,1,0,51,2,1,4,1,9,7,0,0,338 -"5733",0,1,0,42,2,1,4,0,6,7,0,0,338 -"5734",1,1,0,59,1,1,4,0,5,7,1,0,338 -"5735",0,1,0,49,2,1,4,1,8,7,0,0,338 -"5736",0,1,0,64,1,1,4,0,11,7,1,0,338 -"5737",0,1,0,69,2,1,4,0,7,7,0,0,338 -"5738",0,1,0,46,1,1,4,1,4,7,0,0,338 -"5739",0,1,0,59,2,1,4,1,4,7,0,0,338 -"5740",0,1,0,48,1,1,4,0,8,7,0,0,338 -"5741",0,1,0,56,2,1,4,0,10,7,1,0,338 -"5742",0,1,0,46,2,1,4,1,9,7,1,0,338 -"5743",0,1,0,69,4,1,4,1,12,3,1,0,339 -"5744",1,1,1,54,3,1,4,0,11,3,0,0,339 -"5745",0,1,1,41,3,1,4,0,5,3,0,0,339 -"5746",0,1,0,71,3,1,4,1,12,3,1,0,339 -"5747",0,1,0,59,3,1,4,1,10,3,1,0,339 -"5748",0,1,0,59,2,1,4,0,10,3,0,0,339 -"5749",0,1,0,75,1,1,4,0,11,3,0,0,339 -"5750",0,1,0,38,2,1,3,1,10,3,0,0,340 -"5751",0,1,0,61,3,1,3,1,13,3,1,0,340 -"5752",0,1,1,58,1,1,3,0,7,3,0,0,340 -"5753",0,1,0,43,5,1,3,1,12,3,1,0,340 -"5754",0,1,0,42,2,1,3,1,8,3,0,0,340 -"5755",0,0,0,56,2,1,3,1,9,3,0,0,340 -"5756",1,1,0,42,1,1,3,0,9,3,0,0,340 -"5757",0,1,0,36,2,1,3,1,6,3,0,0,340 -"5758",1,1,1,43,1,1,3,1,10,3,0,0,340 -"5759",1,0,0,43,3,1,3,0,7,3,0,0,340 -"5760",0,1,1,44,2,1,3,1,7,3,0,0,340 -"5761",1,1,1,48,2,1,3,0,9,3,0,0,340 -"5762",0,1,1,67,3,1,3,1,9,3,0,0,340 -"5763",1,0,1,47,2,1,3,1,10,3,0,0,340 -"5764",0,1,1,62,3,1,3,0,10,3,1,0,340 -"5765",0,1,1,54,2,1,3,1,11,3,1,0,340 -"5766",1,1,0,44,2,1,3,0,9,3,0,0,340 -"5767",0,1,1,41,4,1,3,1,10,3,0,0,340 -"5768",0,1,0,80,2,1,3,0,8,3,1,0,340 -"5769",1,1,1,48,3,1,3,0,11,3,0,0,340 -"5770",0,1,0,61,1,1,5,1,10,1,0,1,341 -"5771",0,1,1,53,4,1,5,0,10,1,1,1,341 -"5772",0,1,0,55,2,1,5,1,13,1,1,1,341 -"5773",0,1,1,57,3,1,5,0,12,1,0,1,341 -"5774",1,0,0,57,2,1,5,0,12,1,1,1,341 -"5775",0,1,0,57,3,1,5,1,10,1,1,1,341 -"5776",0,1,0,63,2,1,5,0,13,1,1,1,341 -"5777",0,1,0,69,3,1,5,1,12,1,1,1,341 -"5778",0,1,1,67,2,1,5,1,6,1,1,1,341 -"5779",0,1,0,53,4,1,5,0,10,1,1,1,341 -"5780",1,1,0,62,1,1,5,0,9,1,0,1,341 -"5781",0,1,0,67,2,1,5,0,11,1,1,1,341 -"5782",0,1,0,64,2,1,4,0,8,5,1,0,342 -"5783",0,1,0,33,2,1,4,1,5,5,0,0,342 -"5784",0,1,0,50,1,1,4,0,8,5,1,0,342 -"5785",0,1,0,63,2,1,4,1,11,5,1,0,342 -"5786",0,1,1,54,2,1,4,1,10,5,0,0,342 -"5787",1,1,0,34,4,1,4,1,10,5,0,0,342 -"5788",0,1,0,63,2,1,4,0,12,5,1,0,342 -"5789",0,1,0,63,4,1,4,0,9,5,0,0,342 -"5790",0,1,0,64,2,1,4,0,11,5,1,0,342 -"5791",0,1,0,52,3,1,4,1,4,5,1,0,342 -"5792",0,1,0,47,2,1,4,0,7,5,0,0,342 -"5793",0,1,0,50,2,1,4,0,8,5,0,0,342 -"5794",0,1,1,64,2,1,4,1,10,5,1,0,342 -"5795",0,1,0,46,2,1,4,0,10,5,0,0,342 -"5796",0,1,0,59,1,1,4,0,10,5,0,0,342 -"5797",0,1,0,54,1,1,4,0,10,5,0,0,342 -"5798",0,1,1,55,3,1,4,1,10,5,1,0,342 -"5799",0,1,1,70,2,1,5,0,9,1,1,0,343 -"5800",1,0,1,41,5,1,5,1,9,1,0,0,343 -"5801",0,1,1,54,3,1,5,1,10,1,0,0,343 -"5802",0,1,0,56,3,1,5,1,10,1,0,0,343 -"5803",0,1,1,66,1,1,5,0,11,1,1,0,343 -"5804",0,1,0,62,3,1,3,1,11,3,1,0,344 -"5805",0,1,0,51,3,1,3,1,9,3,0,0,344 -"5806",0,1,0,47,5,1,3,1,6,3,0,0,344 -"5807",1,1,0,50,3,1,3,0,6,3,1,0,344 -"5808",0,1,0,43,3,1,3,1,6,3,0,0,344 -"5809",0,1,1,61,4,1,3,1,12,3,1,0,344 -"5810",0,1,1,64,5,1,3,0,12,3,1,0,344 -"5811",0,1,1,39,3,1,3,1,9,3,0,0,344 -"5812",0,0,1,47,3,1,3,1,11,3,0,0,344 -"5813",1,1,0,58,2,1,3,0,6,3,0,0,344 -"5814",0,1,1,57,1,1,3,1,10,3,1,0,344 -"5815",0,1,1,57,3,1,3,1,10,3,1,0,344 -"5816",0,1,1,49,5,1,3,0,10,3,1,0,344 -"5817",0,1,0,59,2,1,3,0,10,3,0,0,344 -"5818",0,1,0,74,2,1,3,0,7,3,1,0,344 -"5819",0,1,1,51,2,1,3,1,10,3,0,0,344 -"5820",0,1,0,65,2,1,3,1,9,3,1,0,344 -"5821",0,1,0,61,2,1,3,0,10,3,0,0,344 -"5822",0,1,1,52,3,1,4,1,10,5,0,0,345 -"5823",0,1,0,58,3,1,4,1,11,5,0,0,345 -"5824",0,0,0,41,2,1,4,1,10,5,0,0,345 -"5825",0,1,0,45,2,1,4,1,2,5,0,0,345 -"5826",0,1,0,41,2,1,4,1,6,5,0,0,345 -"5827",0,1,0,35,5,1,4,0,9,5,0,0,345 -"5828",0,1,0,51,5,1,4,0,10,5,1,0,345 -"5829",0,1,0,66,1,1,4,0,10,5,0,0,345 -"5830",0,1,0,46,1,1,4,0,3,5,0,0,345 -"5831",0,1,0,57,2,1,4,0,9,5,0,0,345 -"5832",0,1,0,48,1,1,4,1,8,5,0,0,345 -"5833",1,1,1,39,2,1,4,1,5,5,0,0,345 -"5834",0,1,0,65,2,1,4,0,8,5,0,0,345 -"5835",0,0,0,56,2,1,4,0,12,5,1,0,345 -"5836",1,1,1,49,3,1,4,1,8,5,1,0,345 -"5837",0,1,0,59,2,1,4,1,6,5,0,0,345 -"5838",0,0,0,43,2,1,4,0,7,5,0,0,345 -"5839",0,1,0,58,3,1,4,1,11,5,1,0,345 -"5840",0,1,0,46,3,1,4,0,4,5,0,0,345 -"5841",0,1,0,48,3,1,4,0,5,5,0,0,345 -"5842",0,1,1,49,3,1,4,1,8,5,0,0,345 -"5843",0,1,1,54,2,1,4,1,10,5,1,0,345 -"5844",0,0,0,71,1,1,4,0,11,5,0,0,345 -"5845",0,1,1,60,2,1,4,0,9,5,0,0,345 -"5846",0,1,0,48,2,1,4,1,10,5,0,0,345 -"5847",0,1,0,40,1,1,4,0,3,5,0,0,345 -"5848",0,1,0,46,2,0,4,1,10,4,1,1,346 -"5849",0,1,0,44,1,0,4,1,6,4,1,1,346 -"5850",0,1,1,41,2,0,4,1,8,4,0,1,346 -"5851",1,1,0,38,2,0,4,1,7,4,1,1,346 -"5852",0,0,1,48,1,0,4,1,6,4,0,1,346 -"5853",0,1,0,33,3,0,4,1,4,4,0,1,346 -"5854",0,1,1,43,2,0,4,1,8,4,1,1,346 -"5855",1,1,0,54,1,0,4,1,13,4,0,1,346 -"5856",0,1,1,51,1,0,4,1,6,4,0,1,346 -"5857",0,1,0,44,1,0,4,1,11,4,1,1,346 -"5858",0,0,1,38,2,1,4,0,10,3,0,0,347 -"5859",0,1,1,64,1,1,4,1,10,3,0,0,347 -"5860",0,1,1,50,3,1,4,0,11,3,1,0,347 -"5861",1,0,1,51,2,1,4,0,9,3,0,0,347 -"5862",0,1,0,64,1,1,4,1,9,3,0,0,347 -"5863",0,1,0,65,2,1,4,1,9,3,0,0,347 -"5864",0,1,1,53,1,1,4,0,7,3,0,0,347 -"5865",0,1,0,55,1,1,4,0,8,3,0,0,347 -"5866",0,1,1,63,3,1,4,1,9,3,0,0,347 -"5867",0,1,0,36,5,1,4,0,9,3,0,0,347 -"5868",1,1,1,36,3,1,4,0,6,3,0,0,347 -"5869",0,1,1,53,4,1,4,1,10,3,1,0,347 -"5870",0,1,1,46,2,1,4,1,9,3,0,0,347 -"5871",0,1,1,65,2,1,4,0,11,3,1,0,347 -"5872",0,1,1,47,2,1,4,0,8,3,0,0,347 -"5873",0,1,0,49,3,1,4,1,9,3,0,0,347 -"5874",0,1,1,61,2,1,4,1,8,3,0,0,347 -"5875",0,1,0,57,2,1,4,0,10,3,0,0,347 -"5876",0,1,1,63,2,1,4,0,9,3,0,0,347 -"5877",0,1,0,54,4,1,4,1,10,3,0,0,347 -"5878",0,1,1,44,3,1,4,0,9,3,0,0,347 -"5879",1,1,0,40,2,1,4,0,9,3,1,0,347 -"5880",0,1,1,39,1,1,4,1,10,3,0,0,347 -"5881",0,1,1,44,2,1,4,0,10,3,0,0,347 -"5882",0,1,0,42,2,1,4,0,9,3,0,0,347 -"5883",0,1,1,53,3,1,4,1,9,3,0,0,347 -"5884",0,0,1,58,1,1,4,0,6,3,0,0,347 -"5885",0,0,1,34,3,1,4,1,4,3,1,0,347 -"5886",0,1,1,52,2,1,4,1,10,1,0,0,348 -"5887",0,0,1,46,2,1,4,0,10,1,0,0,348 -"5888",0,1,1,37,2,1,4,1,9,1,0,0,348 -"5889",1,0,0,51,2,1,4,0,10,1,0,0,348 -"5890",0,1,0,50,1,1,4,1,10,1,1,0,348 -"5891",0,1,1,48,2,1,4,0,11,1,0,0,348 -"5892",0,1,0,39,3,1,4,0,6,1,0,0,348 -"5893",0,1,0,43,1,1,4,1,11,1,0,0,348 -"5894",0,1,1,42,2,1,4,1,12,1,1,0,348 -"5895",0,0,0,60,2,1,4,0,8,1,0,0,348 -"5896",0,0,0,52,2,1,4,1,11,1,1,0,348 -"5897",0,1,1,50,2,1,4,1,8,1,0,0,348 -"5898",0,1,0,58,1,1,4,1,7,1,0,0,348 -"5899",0,0,0,50,3,1,4,0,9,1,0,0,348 -"5900",0,1,1,60,1,1,4,1,9,1,0,0,348 -"5901",0,1,0,33,3,1,4,0,7,1,0,0,348 -"5902",0,1,0,64,5,1,5,0,7,4,1,0,349 -"5903",0,1,0,75,1,1,5,0,9,4,0,0,349 -"5904",0,1,0,48,3,1,5,0,3,4,1,0,349 -"5905",1,1,0,43,2,1,5,1,9,4,1,0,349 -"5906",0,1,1,54,1,1,5,0,10,4,0,0,349 -"5907",0,1,0,38,5,1,5,1,10,4,0,0,349 -"5908",0,1,0,44,2,1,5,0,10,4,1,0,349 -"5909",0,1,1,60,3,1,5,0,11,4,0,0,349 -"5910",0,1,0,54,3,1,5,1,10,4,1,0,349 -"5911",1,1,0,44,2,1,5,0,9,5,0,0,350 -"5912",0,1,0,50,4,1,5,1,7,5,0,0,350 -"5913",0,1,0,53,2,1,5,1,8,5,0,0,350 -"5914",0,0,0,52,1,1,5,1,9,5,0,0,350 -"5915",0,1,1,40,2,1,5,1,8,5,0,0,350 -"5916",0,1,0,59,4,1,5,1,11,5,1,0,350 -"5917",0,1,0,51,2,1,5,1,8,5,0,0,350 -"5918",1,0,0,33,3,1,5,0,12,5,0,0,350 -"5919",0,1,0,56,2,1,5,1,6,5,0,0,350 -"5920",0,1,0,45,1,1,5,1,11,5,0,0,350 -"5921",0,1,0,53,2,1,5,0,5,5,1,0,350 -"5922",0,1,0,43,5,1,5,1,7,5,0,0,350 -"5923",0,1,0,54,3,1,5,1,10,5,1,0,350 -"5924",0,1,0,63,1,1,5,1,9,5,0,0,350 -"5925",0,1,0,38,1,1,5,1,6,5,1,0,350 -"5926",1,0,1,42,4,1,5,1,8,5,0,0,350 -"5927",0,1,0,51,5,1,3,1,12,5,1,0,351 -"5928",0,1,0,58,2,1,3,1,10,5,0,0,351 -"5929",0,1,0,37,3,1,3,1,13,5,0,0,351 -"5930",0,0,0,39,5,1,3,1,8,5,0,0,351 -"5931",0,1,0,47,5,1,3,0,8,5,0,0,351 -"5932",0,1,0,51,3,1,3,0,11,5,1,0,351 -"5933",0,0,1,60,3,1,3,0,12,5,1,0,351 -"5934",0,1,1,67,2,1,3,0,11,5,0,0,351 -"5935",0,1,1,47,5,1,3,0,10,5,0,0,351 -"5936",0,1,0,71,3,1,3,1,11,5,1,0,351 -"5937",0,1,0,53,2,1,3,0,13,5,0,0,351 -"5938",1,1,0,57,4,1,3,0,9,5,0,0,351 -"5939",0,1,0,57,3,1,3,1,9,5,1,0,351 -"5940",0,1,1,61,3,1,3,1,11,5,1,0,351 -"5941",0,0,1,47,1,1,3,0,8,5,0,0,351 -"5942",0,1,0,77,1,1,3,1,10,5,1,0,351 -"5943",0,1,0,68,2,1,3,1,6,5,0,0,351 -"5944",1,1,0,46,3,1,3,0,10,5,0,0,351 -"5945",0,1,0,68,3,1,3,1,11,5,0,0,351 -"5946",0,1,0,72,2,1,4,0,10,5,1,0,352 -"5947",0,1,0,56,3,1,4,1,8,5,0,0,352 -"5948",0,1,0,47,1,1,4,0,11,5,0,0,352 -"5949",0,1,0,61,3,1,4,0,10,5,1,0,352 -"5950",0,0,0,47,1,1,4,1,9,5,0,0,352 -"5951",0,1,0,52,1,1,4,0,3,5,0,0,352 -"5952",0,1,0,55,1,1,4,0,10,5,0,0,352 -"5953",0,0,0,62,1,1,4,0,9,5,0,0,352 -"5954",0,0,1,33,2,1,4,1,8,5,0,0,352 -"5955",0,1,0,72,1,1,4,0,13,5,1,0,352 -"5956",1,0,0,53,1,1,4,1,11,5,1,0,352 -"5957",0,0,0,33,2,1,4,1,7,5,0,0,352 -"5958",0,1,1,37,2,1,4,1,9,5,0,0,352 -"5959",0,1,0,56,2,1,4,1,11,5,0,0,352 -"5960",0,1,1,47,1,1,5,1,6,1,1,0,353 -"5961",0,1,1,35,2,1,5,1,6,1,0,0,353 -"5962",0,1,0,34,2,1,5,1,5,1,1,0,353 -"5963",0,1,0,59,3,1,3,0,8,6,1,0,354 -"5964",0,1,0,62,2,1,3,1,9,6,0,0,354 -"5965",0,1,0,49,2,1,3,1,8,6,0,0,354 -"5966",0,1,0,47,1,1,3,1,7,6,0,0,354 -"5967",0,1,0,54,2,1,3,1,12,6,1,0,354 -"5968",0,1,1,58,1,1,3,0,9,6,1,0,354 -"5969",1,1,1,39,1,1,3,0,8,6,0,0,354 -"5970",0,1,1,59,2,1,3,1,9,6,0,0,354 -"5971",0,1,1,66,1,1,3,1,9,6,0,0,354 -"5972",0,1,0,51,1,1,3,1,10,6,1,0,354 -"5973",0,1,0,39,1,1,3,1,8,6,0,0,354 -"5974",0,1,0,50,2,1,5,0,10,4,1,0,355 -"5975",0,1,1,51,1,1,5,1,8,4,0,0,355 -"5976",0,1,0,41,3,1,5,0,7,4,0,0,355 -"5977",0,1,1,63,2,1,5,1,11,4,1,0,355 -"5978",0,1,0,60,2,1,5,0,10,4,1,0,355 -"5979",0,1,0,57,1,1,5,1,6,4,0,0,355 -"5980",0,1,1,45,2,1,5,0,6,4,0,0,355 -"5981",0,1,0,51,1,1,5,1,12,4,0,0,355 -"5982",0,1,0,38,2,1,5,0,7,4,0,0,355 -"5983",0,1,0,33,2,1,5,0,3,4,0,0,355 -"5984",0,1,1,53,3,1,5,1,8,4,0,0,355 -"5985",0,1,0,57,2,1,5,1,9,4,0,0,355 -"5986",0,1,0,56,2,1,5,0,9,4,0,0,355 -"5987",1,1,1,32,2,1,5,0,3,4,0,0,355 -"5988",0,1,0,50,1,1,5,1,10,4,0,0,355 -"5989",1,1,0,39,1,1,5,0,12,4,1,0,355 -"5990",0,1,0,45,2,1,5,1,9,4,0,0,355 -"5991",0,1,0,51,2,1,5,0,3,4,0,0,355 -"5992",0,1,0,54,1,1,5,0,12,4,0,0,355 -"5993",0,1,1,49,1,1,5,1,10,4,1,0,355 -"5994",0,1,0,55,2,1,5,1,10,4,0,0,355 -"5995",0,1,0,35,1,1,5,1,7,4,0,0,355 -"5996",0,1,0,47,2,1,5,1,5,4,0,0,355 -"5997",1,1,0,52,5,1,5,0,7,4,0,0,355 -"5998",0,1,0,47,1,1,5,1,11,1,1,0,356 -"5999",0,1,0,50,1,1,5,0,9,1,1,0,356 -"6000",0,0,0,46,1,1,5,0,13,1,1,0,356 -"6001",1,1,0,53,4,1,5,1,12,1,1,0,356 -"6002",0,1,1,44,4,1,5,1,10,1,1,0,356 -"6003",1,1,0,40,3,1,5,0,12,1,0,0,356 -"6004",0,1,0,74,3,1,5,0,12,1,1,0,356 -"6005",0,1,1,64,3,1,5,1,11,1,1,0,356 -"6006",0,1,0,47,1,1,5,0,11,1,0,0,356 -"6007",0,1,1,35,1,1,5,1,7,1,1,0,356 -"6008",0,1,1,54,1,1,5,1,10,1,0,0,356 -"6009",0,0,1,48,5,1,5,0,12,1,1,0,356 -"6010",0,0,0,75,2,1,5,0,12,1,1,0,356 -"6011",0,1,0,58,1,1,5,1,12,1,1,0,356 -"6012",0,1,1,49,1,1,5,0,11,1,1,0,356 -"6013",1,0,0,72,3,1,5,0,13,1,1,0,356 -"6014",0,0,0,51,1,1,5,1,10,1,0,0,356 -"6015",0,1,0,58,2,1,5,1,11,1,1,0,356 -"6016",0,1,1,53,2,1,5,1,11,1,1,0,356 -"6017",0,1,1,45,2,1,5,1,9,1,0,0,356 -"6018",0,1,0,48,3,1,5,0,10,1,1,0,356 -"6019",0,1,0,50,2,1,5,1,10,1,1,0,356 -"6020",0,1,0,57,1,1,5,1,12,1,1,0,356 -"6021",0,1,1,57,1,1,5,0,10,1,1,0,356 -"6022",0,1,0,43,1,1,5,1,10,1,0,0,356 -"6023",0,1,0,61,1,1,5,0,12,1,1,0,356 -"6024",0,0,0,49,1,1,5,0,11,1,1,0,356 -"6025",1,1,0,50,1,1,5,0,10,1,1,0,356 -"6026",0,1,0,59,1,1,5,0,10,1,1,0,356 -"6027",0,1,0,50,3,1,5,0,12,1,1,0,356 -"6028",0,1,0,54,1,1,5,1,11,1,1,0,356 -"6029",0,1,0,63,3,1,5,1,11,1,0,0,356 -"6030",0,1,0,56,5,1,5,0,9,1,1,0,356 -"6031",0,1,0,52,1,1,5,1,13,1,1,0,356 -"6032",0,1,0,55,1,1,5,1,10,1,0,0,356 -"6033",0,0,0,50,2,1,5,0,7,1,0,0,356 -"6034",0,1,0,42,2,1,4,1,9,5,0,0,357 -"6035",0,1,0,56,1,1,4,1,10,5,0,0,357 -"6036",0,1,0,53,1,1,4,0,9,5,0,0,357 -"6037",0,1,0,53,3,1,4,1,11,5,1,0,357 -"6038",0,1,0,46,3,1,4,1,6,5,0,0,357 -"6039",1,0,0,43,1,1,4,1,8,5,0,0,357 -"6040",0,1,0,58,1,1,4,0,13,5,1,0,357 -"6041",0,1,0,53,1,1,4,0,12,5,1,0,357 -"6042",0,1,1,49,2,1,4,1,8,5,0,0,357 -"6043",0,1,0,50,3,1,4,1,7,5,0,0,357 -"6044",0,1,0,60,2,1,4,1,8,5,0,0,357 -"6045",1,1,0,43,3,1,4,1,8,5,0,0,357 -"6046",0,1,0,51,2,1,4,1,10,5,0,0,357 -"6047",0,0,0,57,2,1,4,1,9,5,1,0,357 -"6048",0,1,0,51,2,1,4,1,6,5,0,0,357 -"6049",0,0,1,58,2,1,4,0,12,5,1,0,357 -"6050",0,1,0,56,4,1,4,1,11,1,0,0,358 -"6051",0,1,1,51,2,1,4,0,11,1,1,0,358 -"6052",0,0,0,55,2,1,4,1,5,1,0,0,358 -"6053",0,1,1,64,3,1,4,1,13,1,1,0,358 -"6054",0,1,0,57,3,1,4,1,11,1,0,0,358 -"6055",0,1,0,52,2,1,4,0,8,1,1,0,358 -"6056",0,0,0,60,5,1,4,1,13,1,1,0,358 -"6057",1,0,0,51,2,1,4,0,12,1,1,0,358 -"6058",1,1,0,41,2,1,4,0,10,1,0,0,358 -"6059",0,1,0,58,2,1,4,0,12,1,1,0,358 -"6060",0,1,0,57,4,1,4,0,12,1,1,0,358 -"6061",0,1,0,55,4,1,4,0,9,1,0,0,358 -"6062",0,1,0,66,2,1,4,1,12,1,1,0,358 -"6063",0,1,1,55,1,1,4,0,12,1,1,0,358 -"6064",0,1,0,65,3,1,4,1,12,1,1,0,358 -"6065",1,1,0,50,3,1,4,0,10,1,1,0,358 -"6066",0,1,0,43,2,1,4,0,12,1,1,0,358 -"6067",0,1,1,60,2,1,4,0,11,1,1,0,358 -"6068",1,0,0,64,4,1,4,0,10,1,0,0,358 -"6069",0,1,0,61,5,1,4,0,12,1,1,0,358 -"6070",0,1,1,45,2,1,4,0,11,1,0,0,358 -"6071",1,0,1,59,3,1,4,1,9,1,0,0,358 -"6072",0,1,0,59,2,1,4,1,9,1,1,0,358 -"6073",0,1,1,49,3,1,3,0,9,4,0,0,359 -"6074",0,1,0,45,2,1,3,0,9,4,1,0,359 -"6075",0,1,1,62,2,1,3,1,10,4,1,0,359 -"6076",0,0,0,40,5,1,3,1,10,4,1,0,359 -"6077",1,1,0,52,3,1,3,0,8,4,1,0,359 -"6078",0,1,1,38,2,1,3,0,10,4,0,0,359 -"6079",0,1,1,63,3,1,3,1,11,4,0,0,359 -"6080",0,1,1,45,1,1,3,0,11,4,0,0,359 -"6081",0,1,0,58,1,1,3,0,7,4,0,0,359 -"6082",0,0,1,50,1,1,3,0,12,4,0,0,359 -"6083",0,1,0,62,2,1,3,1,10,4,0,0,359 -"6084",0,1,0,45,3,1,3,1,10,4,0,0,359 -"6085",0,1,1,62,1,1,3,1,7,4,0,0,359 -"6086",0,0,0,59,2,1,3,0,9,4,0,0,359 -"6087",0,1,0,44,3,1,3,0,6,4,1,0,359 -"6088",1,1,0,55,3,1,3,0,11,4,1,0,360 -"6089",1,0,1,53,1,1,3,1,4,4,0,0,360 -"6090",0,1,1,24,2,1,3,1,7,4,0,0,360 -"6091",0,1,1,42,1,1,3,1,9,4,0,0,360 -"6092",1,0,0,51,5,1,3,0,4,4,0,0,360 -"6093",0,1,0,31,1,1,3,1,6,4,0,0,360 -"6094",0,0,0,37,1,1,3,0,7,4,0,0,360 -"6095",0,1,1,58,2,1,3,0,9,4,0,0,360 -"6096",0,1,1,40,3,1,3,1,6,4,0,0,360 -"6097",0,1,1,60,2,1,3,1,7,4,0,0,360 -"6098",0,1,1,37,1,1,3,1,10,4,1,0,360 -"6099",1,1,1,56,1,1,3,1,9,4,0,0,360 -"6100",1,1,1,55,2,1,3,0,11,4,1,0,360 -"6101",0,1,1,45,3,1,3,0,10,4,0,0,360 -"6102",1,0,0,29,4,1,3,0,8,4,0,0,360 -"6103",0,1,0,59,2,1,3,0,12,4,0,0,360 -"6104",0,1,1,51,2,1,3,1,8,4,0,0,360 -"6105",0,1,1,64,3,1,3,0,9,4,0,0,360 -"6106",1,1,1,62,2,1,3,0,9,4,1,0,360 -"6107",0,1,1,50,2,1,3,1,9,4,0,0,360 -"6108",0,1,1,61,1,1,3,0,9,4,0,0,360 -"6109",0,1,0,60,1,1,3,1,11,4,0,0,360 -"6110",0,1,1,47,2,1,3,0,11,4,0,0,360 -"6111",0,0,1,38,2,1,3,0,10,4,0,0,360 -"6112",0,1,0,38,1,1,3,1,11,4,0,0,360 -"6113",0,0,1,64,2,1,3,0,7,4,1,0,360 -"6114",0,1,0,56,1,1,3,0,11,4,0,0,360 -"6115",0,1,1,50,3,1,3,0,8,4,0,0,360 -"6116",0,1,0,47,1,1,3,1,9,4,0,0,360 -"6117",0,1,0,46,2,1,3,1,10,4,0,0,360 -"6118",1,1,1,49,3,1,3,0,10,4,0,0,360 -"6119",0,0,0,49,1,1,3,0,6,4,0,0,360 -"6120",0,1,0,43,3,1,4,1,12,2,0,0,361 -"6121",0,1,0,44,3,1,4,1,8,2,0,0,361 -"6122",0,0,0,41,3,1,4,1,8,2,0,0,361 -"6123",0,1,0,50,2,1,4,1,12,2,1,0,361 -"6124",1,1,1,51,3,1,4,0,12,2,1,0,361 -"6125",0,1,0,54,1,1,4,1,12,2,1,0,361 -"6126",0,0,1,32,5,1,4,1,5,2,0,0,361 -"6127",0,1,1,53,3,1,4,1,10,2,1,0,361 -"6128",0,1,0,63,2,1,4,1,12,2,1,0,361 -"6129",0,1,0,57,1,1,4,0,9,2,0,0,361 -"6130",0,1,0,41,3,1,4,0,12,2,1,0,361 -"6131",0,1,0,56,5,1,4,1,10,2,1,0,361 -"6132",0,1,0,46,2,1,4,1,7,2,1,0,361 -"6133",0,1,0,44,2,1,4,1,10,1,0,0,362 -"6134",0,1,0,48,2,1,4,0,3,1,0,0,362 -"6135",0,1,1,40,2,1,4,1,9,1,0,0,362 -"6136",0,1,0,45,2,1,4,1,11,1,0,0,362 -"6137",0,1,0,42,2,1,4,1,5,1,0,0,362 -"6138",0,0,0,52,3,1,4,0,7,1,0,0,362 -"6139",0,1,0,54,3,1,4,1,8,1,0,0,362 -"6140",1,1,1,50,3,1,4,1,10,1,0,0,362 -"6141",0,0,0,54,2,1,4,0,11,1,0,0,362 -"6142",0,1,0,54,2,1,4,1,13,1,1,0,362 -"6143",0,1,1,50,2,1,4,0,9,1,0,0,362 -"6144",0,1,0,50,1,1,4,1,11,1,1,0,362 -"6145",0,1,0,60,2,1,4,0,9,1,0,0,362 -"6146",1,1,1,29,2,1,4,0,5,1,0,0,362 -"6147",0,1,0,70,2,1,4,0,10,1,1,0,362 -"6148",0,1,0,52,1,1,4,1,10,1,0,0,362 -"6149",0,1,0,60,2,1,4,1,8,1,0,0,362 -"6150",1,1,1,56,2,1,4,0,7,1,0,0,362 -"6151",1,1,0,53,3,1,4,0,8,1,1,0,362 -"6152",0,1,0,67,3,1,4,0,11,1,1,0,362 -"6153",0,1,0,57,5,1,4,1,6,1,0,0,362 -"6154",0,1,1,62,1,1,4,1,12,1,1,0,363 -"6155",0,0,1,55,3,1,4,0,9,1,0,0,363 -"6156",0,1,0,67,2,1,4,1,10,1,0,0,363 -"6157",0,1,0,53,3,1,4,1,8,1,0,0,363 -"6158",0,1,1,50,3,1,4,0,9,1,0,0,363 -"6159",1,1,1,42,2,1,4,1,10,1,0,0,363 -"6160",0,1,0,38,2,1,4,1,8,1,0,0,363 -"6161",0,1,0,50,2,1,4,1,10,1,1,0,363 -"6162",0,1,0,49,2,1,4,1,12,1,0,0,363 -"6163",0,1,0,55,1,1,4,0,9,1,1,0,363 -"6164",0,1,0,47,2,1,4,1,10,1,1,0,363 -"6165",0,1,0,59,1,1,4,0,6,1,0,0,363 -"6166",0,1,0,44,1,1,4,1,3,1,0,0,363 -"6167",0,0,1,44,5,1,4,1,12,1,1,0,363 -"6168",0,1,1,60,1,1,4,1,12,1,1,0,363 -"6169",1,1,0,53,1,1,4,0,10,1,0,0,363 -"6170",0,0,0,39,3,1,4,1,10,1,0,0,363 -"6171",0,1,0,55,1,1,5,0,5,1,0,1,364 -"6172",0,1,0,69,2,1,5,0,12,1,1,1,364 -"6173",1,1,0,57,2,1,5,1,8,1,0,1,364 -"6174",1,0,1,49,5,1,5,1,10,1,0,1,364 -"6175",0,1,1,48,3,1,5,0,6,1,0,1,364 -"6176",0,1,0,71,2,1,5,0,10,1,1,1,364 -"6177",0,1,0,57,1,1,5,1,11,1,1,1,364 -"6178",0,1,0,75,1,1,5,1,11,1,1,1,364 -"6179",0,1,1,66,1,1,5,0,11,1,1,1,364 -"6180",0,1,1,57,1,1,5,0,12,1,1,1,364 -"6181",1,1,1,47,2,1,5,1,7,1,1,1,364 -"6182",0,1,1,65,2,1,5,1,14,1,1,1,364 -"6183",0,1,0,56,2,1,5,0,13,1,0,1,364 -"6184",1,1,1,44,4,1,5,1,8,1,0,1,364 -"6185",0,1,1,57,2,1,5,0,10,1,0,1,364 -"6186",0,1,0,40,1,1,5,1,13,1,0,0,365 -"6187",0,1,0,57,2,1,5,1,9,1,1,0,365 -"6188",0,1,0,55,2,1,5,1,9,1,1,0,365 -"6189",0,1,1,51,1,1,5,0,9,1,0,0,365 -"6190",1,1,0,62,2,1,5,0,10,1,0,0,365 -"6191",1,0,0,36,2,1,5,1,2,1,0,0,365 -"6192",0,1,0,64,3,1,5,1,10,1,1,0,365 -"6193",0,1,1,46,3,1,5,1,11,1,0,0,365 -"6194",0,1,1,53,1,1,5,1,13,1,1,0,365 -"6195",0,1,0,49,3,1,5,1,13,1,1,0,365 -"6196",0,1,0,66,1,1,5,1,10,1,1,0,365 -"6197",0,1,0,59,2,1,5,0,10,1,1,0,365 -"6198",0,1,1,42,1,1,5,0,9,1,0,0,365 -"6199",0,1,1,49,1,1,5,0,11,1,0,0,365 -"6200",0,0,0,60,1,1,5,0,12,1,1,0,365 -"6201",1,0,1,45,3,1,5,0,10,1,0,0,365 -"6202",0,1,0,54,3,1,5,1,11,1,0,0,365 -"6203",0,0,0,53,4,1,5,1,12,1,1,0,365 -"6204",0,1,0,53,1,1,5,1,11,1,0,0,365 -"6205",0,1,0,45,1,1,5,1,10,1,1,0,365 -"6206",0,1,1,51,1,1,5,0,9,1,0,0,365 -"6207",1,1,0,54,2,1,4,0,8,3,0,0,366 -"6208",0,0,0,38,2,1,4,0,9,3,0,0,366 -"6209",0,1,0,42,2,1,4,1,9,3,0,0,366 -"6210",0,0,0,68,4,1,4,0,10,3,0,0,366 -"6211",1,0,0,49,4,1,4,0,9,3,1,0,366 -"6212",1,0,1,42,3,1,4,0,11,3,0,0,366 -"6213",0,1,0,37,1,1,4,1,10,3,1,0,366 -"6214",0,1,0,65,3,1,4,0,11,3,1,0,366 -"6215",1,1,1,43,1,1,4,0,10,3,0,0,366 -"6216",0,0,0,39,1,1,4,1,12,3,0,0,366 -"6217",1,1,1,69,5,1,4,0,12,3,1,0,366 -"6218",0,1,0,48,5,1,4,0,7,3,1,0,366 -"6219",0,0,0,45,4,1,4,1,9,3,1,0,366 -"6220",0,1,0,56,3,1,3,1,12,5,1,0,367 -"6221",0,0,0,51,2,1,3,1,9,5,0,0,367 -"6222",0,1,0,42,1,1,3,1,10,5,0,0,367 -"6223",0,1,1,55,1,1,3,1,11,5,0,0,367 -"6224",0,1,1,52,1,1,3,1,4,5,0,0,367 -"6225",0,1,0,58,3,1,3,0,11,5,1,0,367 -"6226",0,1,1,65,2,1,3,1,12,5,1,0,367 -"6227",0,1,1,32,2,1,3,0,9,5,1,0,367 -"6228",0,1,1,40,2,1,3,1,3,5,1,0,367 -"6229",0,1,0,41,3,1,3,1,8,5,0,0,367 -"6230",0,1,0,30,2,1,3,0,7,5,0,0,367 -"6231",0,1,0,48,3,1,3,0,4,5,0,0,367 -"6232",0,1,0,58,2,1,3,0,11,5,1,0,367 -"6233",0,1,0,54,2,1,3,1,8,5,1,0,367 -"6234",1,1,0,35,3,1,3,1,5,5,0,0,367 -"6235",1,1,1,61,5,1,3,0,7,5,1,0,367 -"6236",0,1,0,52,2,1,3,1,6,5,0,0,367 -"6237",0,1,0,54,2,1,4,0,8,4,1,0,368 -"6238",0,1,0,48,2,1,4,1,8,4,1,0,368 -"6239",0,1,0,71,1,1,4,0,9,4,0,0,368 -"6240",0,0,0,39,3,1,4,1,8,4,0,0,368 -"6241",0,1,1,41,2,1,4,1,6,4,0,0,368 -"6242",0,1,0,48,1,1,4,1,9,4,0,0,368 -"6243",1,1,0,55,5,1,4,0,12,4,1,0,368 -"6244",0,0,1,50,1,1,4,0,9,4,0,0,368 -"6245",0,1,0,64,2,1,4,0,10,4,1,0,368 -"6246",0,1,0,60,2,1,4,0,8,4,0,0,368 -"6247",0,1,1,42,2,1,4,1,8,4,0,0,368 -"6248",0,1,1,45,1,1,4,0,8,4,0,0,368 -"6249",0,1,0,44,1,1,4,1,10,4,0,0,368 -"6250",0,1,1,61,5,1,4,0,9,4,0,0,368 -"6251",0,1,0,47,2,1,4,0,9,4,0,0,368 -"6252",1,1,0,38,2,1,4,0,4,4,0,0,368 -"6253",0,0,0,51,2,1,4,0,9,4,0,0,368 -"6254",1,1,1,34,1,1,4,1,3,4,1,0,368 -"6255",0,1,0,53,1,1,4,1,9,4,1,0,368 -"6256",0,0,0,45,5,1,2,0,7,7,0,0,369 -"6257",0,1,0,33,2,1,2,1,6,7,0,0,369 -"6258",0,1,0,30,3,1,2,0,3,7,0,0,369 -"6259",0,1,1,49,2,1,2,1,6,7,0,0,369 -"6260",0,1,0,44,1,1,2,0,5,7,0,0,369 -"6261",1,1,1,43,2,1,2,0,10,7,0,0,369 -"6262",0,1,0,43,2,1,2,0,11,7,1,0,369 -"6263",0,1,0,42,3,1,2,1,4,7,0,0,369 -"6264",0,1,0,46,1,1,2,1,6,7,1,0,369 -"6265",0,1,0,32,2,1,2,1,6,7,0,0,369 -"6266",0,1,0,43,2,1,2,0,3,7,0,0,369 -"6267",0,1,1,38,2,1,2,1,4,7,0,0,369 -"6268",1,1,1,42,2,1,2,1,4,7,1,0,369 -"6269",0,0,0,35,2,1,2,0,7,7,0,0,369 -"6270",0,0,0,58,1,1,5,0,9,2,0,0,370 -"6271",0,1,1,47,1,1,5,1,11,2,1,0,370 -"6272",0,1,0,57,2,1,5,0,4,2,0,0,370 -"6273",0,1,0,32,1,1,5,0,10,2,1,0,370 -"6274",0,1,1,53,1,1,5,0,3,2,0,0,370 -"6275",0,0,0,62,2,1,5,0,6,2,0,0,370 -"6276",0,1,1,46,2,1,5,1,10,2,0,0,370 -"6277",0,0,0,60,1,1,5,0,8,2,0,0,370 -"6278",1,0,1,35,3,1,5,0,9,2,0,0,370 -"6279",0,1,0,72,2,1,5,0,10,2,0,0,370 -"6280",0,0,1,40,1,1,5,1,10,2,0,0,370 -"6281",1,1,0,56,2,1,5,0,10,2,0,0,370 -"6282",0,1,0,57,1,1,5,0,10,2,1,0,370 -"6283",0,1,0,51,2,1,5,1,11,2,0,0,370 -"6284",0,0,1,53,2,1,5,0,12,2,1,0,370 -"6285",0,1,0,58,2,1,5,1,11,2,0,0,370 -"6286",0,1,1,72,2,1,5,0,12,2,1,0,370 -"6287",0,1,1,74,3,1,4,1,12,4,1,0,371 -"6288",0,1,0,48,1,1,4,0,11,4,1,0,371 -"6289",0,0,0,49,2,1,4,0,2,4,0,0,371 -"6290",0,0,1,54,2,1,4,0,10,4,0,0,371 -"6291",0,1,1,47,4,1,4,0,9,4,0,0,371 -"6292",0,1,0,66,3,1,4,0,11,4,1,0,371 -"6293",1,1,1,59,1,1,4,1,11,4,1,0,371 -"6294",0,1,1,45,1,1,4,1,9,4,0,0,371 -"6295",0,1,0,54,5,1,4,1,9,4,0,0,371 -"6296",0,1,0,43,2,1,4,0,10,4,1,0,371 -"6297",0,1,0,62,3,1,4,1,13,4,0,0,371 -"6298",1,1,0,40,1,1,4,1,11,4,1,0,371 -"6299",0,0,1,65,3,1,4,0,11,4,1,0,371 -"6300",0,1,1,44,1,1,4,1,12,4,1,0,371 -"6301",0,1,1,60,2,1,4,1,11,4,1,0,371 -"6302",0,1,1,48,2,1,4,1,9,4,0,0,371 -"6303",0,1,1,61,5,1,4,1,8,4,1,0,371 -"6304",0,1,1,46,3,1,4,1,10,4,1,0,371 -"6305",0,0,1,30,4,1,4,0,12,4,1,0,371 -"6306",1,1,1,56,3,1,3,0,5,4,1,0,372 -"6307",0,1,1,53,4,1,3,0,10,4,0,0,372 -"6308",0,1,1,56,5,1,3,0,8,4,0,0,372 -"6309",0,1,0,57,2,1,3,1,11,4,0,0,372 -"6310",0,1,1,46,2,1,3,1,11,4,0,0,372 -"6311",0,1,1,41,2,1,3,1,8,4,1,0,372 -"6312",0,1,1,51,3,1,3,1,8,4,1,0,372 -"6313",0,1,1,68,3,1,3,0,8,4,1,0,372 -"6314",0,0,1,60,1,1,3,0,8,4,1,0,372 -"6315",0,1,0,69,3,1,3,0,11,4,1,0,372 -"6316",1,0,1,41,3,1,3,0,8,4,1,0,372 -"6317",0,1,1,47,5,1,3,1,10,4,1,0,372 -"6318",0,1,1,56,3,1,3,1,8,4,0,0,372 -"6319",0,1,1,71,1,1,3,0,11,4,1,0,372 -"6320",0,1,1,61,2,1,3,0,11,4,1,0,372 -"6321",0,1,1,69,1,1,3,1,9,4,1,0,372 -"6322",0,1,1,47,3,1,3,1,11,4,0,0,372 -"6323",1,1,1,31,3,1,3,1,4,4,0,0,372 -"6324",0,1,0,50,1,1,3,1,11,5,0,0,373 -"6325",1,0,1,45,5,1,3,0,2,5,0,0,373 -"6326",0,1,1,52,2,1,3,1,10,5,1,0,373 -"6327",0,1,0,56,1,1,3,1,10,5,1,0,373 -"6328",0,1,0,44,5,1,3,0,8,5,0,0,373 -"6329",1,0,1,37,4,1,3,1,10,5,0,0,373 -"6330",0,1,0,53,2,1,3,1,7,5,0,0,373 -"6331",0,1,1,57,1,1,3,0,9,5,0,0,373 -"6332",0,1,1,41,4,1,3,1,6,5,0,0,373 -"6333",0,1,1,62,2,1,3,0,10,5,1,0,373 -"6334",0,1,0,53,2,1,3,0,8,5,0,0,373 -"6335",1,1,0,35,5,1,3,1,12,5,1,0,373 -"6336",0,1,0,52,1,1,3,0,9,5,0,0,373 -"6337",1,1,0,41,5,1,3,0,9,5,0,0,373 -"6338",0,0,0,44,4,1,3,0,7,5,0,0,373 -"6339",0,1,0,37,1,1,3,0,9,5,0,0,373 -"6340",0,0,0,44,5,1,3,1,8,5,0,0,373 -"6341",0,1,0,51,1,1,3,1,3,5,0,0,373 -"6342",0,0,0,44,2,1,3,1,8,5,0,0,373 -"6343",0,1,1,45,1,1,3,1,5,5,0,0,373 -"6344",0,0,1,41,5,1,4,0,2,4,1,0,374 -"6345",1,1,0,48,2,1,4,0,2,4,0,0,374 -"6346",0,1,0,46,3,1,4,0,10,4,1,0,374 -"6347",0,1,1,47,2,1,4,1,11,4,1,0,374 -"6348",1,1,0,49,3,1,4,1,5,4,0,0,374 -"6349",0,1,1,50,2,1,4,0,10,4,0,0,374 -"6350",0,1,0,43,2,1,4,0,8,4,0,0,374 -"6351",0,1,1,53,4,1,4,1,11,4,0,0,374 -"6352",0,1,0,38,2,1,4,1,7,4,0,0,374 -"6353",0,1,1,50,3,1,4,1,12,4,1,0,374 -"6354",0,1,1,54,1,1,4,1,10,4,0,0,374 -"6355",0,1,1,56,2,1,4,1,2,4,0,0,374 -"6356",0,1,0,41,2,1,4,1,7,4,0,0,374 -"6357",0,1,0,56,3,1,4,1,8,4,0,0,374 -"6358",0,1,0,69,1,1,4,0,5,4,0,0,374 -"6359",0,1,0,51,3,1,4,1,10,4,1,0,374 -"6360",0,1,0,42,3,1,4,0,9,4,0,0,374 -"6361",0,1,1,47,1,1,4,1,7,4,0,0,374 -"6362",0,0,1,43,5,1,4,1,9,4,0,0,374 -"6363",0,1,0,49,3,1,4,1,10,4,0,0,374 -"6364",0,1,1,52,3,1,4,1,6,4,0,0,374 -"6365",1,1,1,38,3,1,4,0,9,4,0,0,374 -"6366",0,1,0,60,1,1,5,0,8,1,0,1,375 -"6367",0,1,1,51,2,1,5,1,12,1,1,1,375 -"6368",0,1,1,54,2,1,5,1,12,1,1,1,375 -"6369",0,1,1,60,2,1,5,0,9,1,1,1,375 -"6370",0,1,0,59,2,1,5,0,11,1,1,1,375 -"6371",0,1,0,56,3,1,5,1,12,1,1,1,375 -"6372",0,1,1,53,1,1,5,0,12,1,0,1,375 -"6373",0,1,0,50,2,1,5,0,8,1,0,1,375 -"6374",0,0,1,58,3,1,5,0,10,1,1,1,375 -"6375",0,1,1,54,1,1,5,1,11,1,1,1,375 -"6376",0,1,1,52,2,1,5,1,12,1,1,1,375 -"6377",1,0,0,62,2,1,5,0,8,1,1,1,375 -"6378",0,1,1,55,1,1,5,0,8,1,1,1,375 -"6379",0,1,0,63,1,1,5,1,10,1,1,1,375 -"6380",0,1,0,55,3,1,5,0,12,1,1,1,375 -"6381",0,1,0,62,1,1,5,0,11,1,1,1,375 -"6382",0,1,1,49,2,1,5,0,10,1,0,1,375 -"6383",0,1,1,57,2,1,5,0,12,1,0,1,375 -"6384",0,1,0,53,2,1,5,0,16,1,1,1,375 -"6385",0,1,0,64,1,1,5,1,10,1,0,1,375 -"6386",0,1,0,57,1,1,5,0,8,1,1,1,375 -"6387",0,1,0,69,2,1,5,0,13,1,1,1,375 -"6388",0,1,0,48,2,1,5,1,12,1,1,1,375 -"6389",0,1,0,55,2,1,5,1,12,1,1,1,375 -"6390",0,1,0,47,2,1,5,0,11,1,1,1,375 -"6391",0,1,1,64,2,1,4,1,12,4,1,0,376 -"6392",0,1,0,58,1,1,4,0,11,4,1,0,376 -"6393",0,1,0,61,4,1,4,0,9,4,0,0,376 -"6394",0,1,1,51,3,1,4,1,10,4,1,0,376 -"6395",0,1,0,52,2,1,4,0,4,4,1,0,376 -"6396",0,1,1,54,2,1,4,1,11,4,0,0,376 -"6397",0,1,0,64,1,1,4,1,9,4,0,0,376 -"6398",0,0,1,55,1,1,4,0,11,4,0,0,376 -"6399",0,0,1,61,1,1,4,0,9,4,1,0,376 -"6400",1,1,0,72,1,1,4,0,12,4,1,0,376 -"6401",0,1,1,55,1,1,4,0,12,4,1,0,376 -"6402",0,1,0,49,1,1,3,0,10,4,0,0,377 -"6403",0,1,0,59,2,1,3,0,12,4,1,0,377 -"6404",1,1,0,60,1,1,3,1,9,4,1,0,377 -"6405",0,1,1,41,2,1,3,1,10,4,1,0,377 -"6406",0,1,0,50,2,1,3,0,9,4,0,0,377 -"6407",0,1,0,44,2,1,3,0,10,4,0,0,377 -"6408",0,1,0,45,1,1,3,0,10,4,1,0,377 -"6409",0,0,0,49,2,1,3,1,10,4,0,0,377 -"6410",0,1,0,42,2,1,3,1,12,4,1,0,377 -"6411",0,1,0,53,2,1,3,1,9,4,0,0,377 -"6412",1,1,1,48,2,1,3,0,9,4,0,0,377 -"6413",0,1,0,59,2,1,3,1,11,4,0,0,377 -"6414",0,1,0,42,2,1,3,0,9,4,1,0,377 -"6415",1,1,1,48,2,1,3,0,10,4,1,0,377 -"6416",0,1,1,64,3,1,5,0,10,1,1,0,378 -"6417",0,1,0,60,1,1,5,0,12,1,1,0,378 -"6418",0,1,0,71,2,1,5,0,12,1,1,0,378 -"6419",0,1,1,58,2,1,5,1,10,1,1,0,378 -"6420",0,1,0,62,3,1,5,1,8,1,1,0,378 -"6421",0,1,1,75,2,1,5,0,15,1,1,0,378 -"6422",0,1,0,61,2,1,5,1,10,1,1,0,378 -"6423",0,1,0,74,1,1,5,0,9,1,1,0,378 -"6424",0,1,0,56,2,1,5,1,12,1,1,0,378 -"6425",0,1,1,46,2,1,5,0,12,1,1,0,378 -"6426",0,1,1,60,1,1,5,1,12,1,1,0,378 -"6427",0,0,1,67,5,1,5,0,13,1,1,0,378 -"6428",0,0,0,54,2,1,5,0,12,1,1,0,378 -"6429",0,1,0,75,3,1,5,0,12,1,1,0,378 -"6430",0,1,0,55,2,1,5,1,11,1,1,0,378 -"6431",0,1,0,51,1,1,5,0,10,5,0,0,379 -"6432",0,1,0,41,2,1,5,0,8,5,0,0,379 -"6433",0,1,1,53,2,1,5,1,7,5,1,0,379 -"6434",0,1,1,48,5,1,5,1,11,5,1,0,379 -"6435",0,1,0,39,1,1,5,0,3,5,0,0,379 -"6436",1,1,0,41,2,1,5,0,5,5,0,0,379 -"6437",0,1,0,47,1,1,5,1,11,5,1,0,379 -"6438",0,1,1,37,2,1,5,0,10,5,0,0,379 -"6439",0,1,0,53,3,1,5,1,10,5,1,0,379 -"6440",1,0,0,50,1,1,5,0,4,5,0,0,379 -"6441",0,1,1,53,1,1,5,1,13,5,1,0,379 -"6442",0,1,1,53,2,1,5,0,10,5,0,0,379 -"6443",0,1,0,33,1,1,5,1,7,5,0,0,379 -"6444",0,1,0,53,1,1,5,0,6,5,0,0,379 -"6445",0,1,1,54,5,1,5,1,3,5,0,0,379 -"6446",0,1,0,46,2,1,5,1,10,5,0,0,379 -"6447",0,1,0,66,2,1,5,0,10,5,0,0,379 -"6448",0,1,0,50,1,1,5,1,9,5,1,0,380 -"6449",0,1,1,37,2,1,5,1,10,5,1,0,380 -"6450",0,1,0,64,1,1,5,1,13,5,1,0,380 -"6451",1,1,0,45,3,1,5,0,7,5,0,0,380 -"6452",0,1,0,42,1,1,5,1,3,5,1,0,380 -"6453",0,1,0,29,2,1,5,1,7,5,0,0,380 -"6454",0,1,0,63,1,1,5,0,1,5,1,0,380 -"6455",0,1,0,60,2,1,5,0,8,5,0,0,380 -"6456",1,1,0,48,3,1,5,0,11,5,0,0,380 -"6457",0,1,0,74,2,1,5,0,8,5,0,0,380 -"6458",0,1,0,47,1,1,5,0,10,5,1,0,380 -"6459",0,1,0,44,3,1,5,0,3,5,0,0,380 -"6460",0,0,1,46,5,1,5,1,13,5,1,0,380 -"6461",0,1,0,48,3,1,5,0,5,5,1,0,380 -"6462",0,0,0,39,3,1,5,0,3,5,0,0,380 -"6463",0,1,0,43,5,1,5,1,4,5,0,0,380 -"6464",1,1,0,57,2,0,3,1,10,1,1,0,381 -"6465",0,1,0,38,1,0,3,0,12,1,1,0,381 -"6466",1,0,0,47,5,0,3,1,10,1,1,0,381 -"6467",0,1,1,59,2,0,3,0,12,1,1,0,381 -"6468",0,1,0,53,3,0,3,1,9,1,1,0,381 -"6469",0,1,0,52,3,0,3,0,8,1,1,0,381 -"6470",0,1,0,46,1,1,5,0,10,1,0,0,382 -"6471",0,1,1,61,2,1,5,1,10,1,1,0,382 -"6472",0,1,0,70,2,1,5,0,11,1,1,0,382 -"6473",0,1,0,54,2,1,5,1,12,1,1,0,382 -"6474",1,1,1,61,5,1,5,1,13,1,1,0,382 -"6475",0,1,0,64,3,1,5,0,11,1,1,0,382 -"6476",0,1,0,72,1,1,5,0,12,1,1,0,382 -"6477",0,1,1,58,2,1,5,1,12,1,1,0,382 -"6478",0,1,0,68,2,1,5,0,13,1,1,0,382 -"6479",0,1,0,73,1,1,5,0,13,1,1,0,382 -"6480",0,1,0,51,2,1,5,0,13,1,1,0,382 -"6481",0,0,0,61,3,1,5,1,9,1,0,0,382 -"6482",0,1,0,58,1,1,5,0,12,1,1,0,382 -"6483",0,1,0,66,1,1,5,0,12,1,1,0,382 -"6484",0,1,0,61,2,1,5,0,8,1,1,0,382 -"6485",0,1,0,60,1,1,5,1,13,1,1,0,382 -"6486",0,1,0,72,1,1,5,0,13,1,1,0,382 -"6487",0,1,0,50,2,1,5,1,9,1,1,0,382 -"6488",0,1,0,69,3,1,5,0,12,1,1,0,382 -"6489",1,0,0,30,1,1,4,0,11,6,1,0,383 -"6490",0,1,1,43,2,1,4,0,9,6,0,0,383 -"6491",0,1,0,53,2,1,4,0,7,6,0,0,383 -"6492",0,1,0,53,1,1,4,1,7,6,0,0,383 -"6493",1,1,0,36,2,1,4,1,2,6,0,0,383 -"6494",0,1,0,55,1,1,4,0,8,6,0,0,383 -"6495",0,0,1,42,1,1,4,1,10,6,0,0,383 -"6496",1,1,1,36,5,1,4,1,8,6,0,0,383 -"6497",0,1,0,50,2,1,4,1,8,6,0,0,383 -"6498",0,1,1,45,2,1,4,1,9,6,0,0,383 -"6499",1,0,0,44,3,1,4,0,8,6,0,0,383 -"6500",0,1,0,46,2,1,4,0,9,6,0,0,383 -"6501",0,1,0,43,1,1,4,1,6,6,1,0,383 -"6502",0,0,1,48,2,1,4,0,9,3,1,0,384 -"6503",0,1,1,45,2,1,4,1,6,3,0,0,384 -"6504",0,1,0,61,2,1,4,0,5,3,0,0,384 -"6505",0,0,1,62,3,1,4,0,10,3,0,0,384 -"6506",0,1,0,48,2,1,4,1,1,3,0,0,384 -"6507",0,1,0,42,2,1,4,1,7,3,0,0,384 -"6508",0,1,0,65,2,1,4,1,12,3,1,0,384 -"6509",0,1,0,66,4,1,4,1,10,3,0,0,384 -"6510",0,1,1,47,1,1,4,1,13,3,1,0,384 -"6511",0,1,0,61,2,1,4,1,10,3,0,0,384 -"6512",0,1,1,47,3,1,4,1,11,3,1,0,384 -"6513",0,1,0,75,3,1,4,0,9,3,1,0,384 -"6514",0,1,1,46,3,1,4,1,8,3,0,0,384 -"6515",0,1,1,47,2,1,4,0,9,3,0,0,384 -"6516",0,1,1,41,3,1,5,0,9,1,0,0,385 -"6517",0,1,1,62,3,1,5,0,12,1,1,0,385 -"6518",0,1,0,42,5,1,5,1,11,1,1,0,385 -"6519",0,1,0,59,2,1,5,0,10,1,0,0,385 -"6520",0,0,0,58,2,1,5,0,12,1,1,0,385 -"6521",0,1,1,50,2,1,5,1,12,1,1,0,385 -"6522",0,1,0,61,2,1,5,0,1,1,0,0,385 -"6523",0,1,0,62,1,1,5,0,11,1,1,0,385 -"6524",0,1,1,69,2,1,5,0,9,1,1,0,385 -"6525",0,1,0,57,2,1,5,1,8,1,0,0,385 -"6526",0,1,1,61,3,1,5,1,12,1,1,0,385 -"6527",0,1,1,58,1,1,5,0,11,1,1,0,385 -"6528",1,1,0,69,3,1,5,0,12,1,1,0,385 -"6529",0,1,0,65,1,1,5,1,12,1,1,0,385 -"6530",0,1,0,60,3,1,5,0,11,1,1,0,385 -"6531",0,1,1,64,2,1,4,1,10,1,1,1,386 -"6532",0,1,1,69,3,1,4,0,13,1,1,1,386 -"6533",0,1,0,63,2,1,4,1,9,1,0,1,386 -"6534",0,1,0,72,1,1,4,0,11,1,1,1,386 -"6535",0,1,1,67,2,1,4,1,13,1,1,1,386 -"6536",0,1,1,64,1,1,4,1,9,1,0,1,386 -"6537",0,1,0,48,2,1,4,1,12,1,1,1,386 -"6538",0,1,1,68,2,1,4,1,12,1,1,1,386 -"6539",0,1,1,54,3,1,4,1,11,1,0,1,386 -"6540",0,1,0,52,2,1,4,1,10,1,0,1,386 -"6541",0,1,0,63,2,1,4,1,11,1,1,1,386 -"6542",0,1,0,57,2,1,4,1,9,1,1,1,386 -"6543",0,0,1,54,2,1,4,0,10,1,1,1,386 -"6544",0,1,0,59,2,1,4,0,10,1,0,1,386 -"6545",0,0,0,55,2,1,4,1,10,1,1,1,386 -"6546",0,0,1,59,3,1,4,0,11,1,0,1,386 -"6547",0,1,0,64,1,1,4,0,9,1,1,1,386 -"6548",0,1,0,49,2,1,4,1,7,7,0,0,387 -"6549",0,1,0,50,2,1,4,1,5,7,0,0,387 -"6550",0,1,0,40,3,1,4,0,9,7,0,0,387 -"6551",1,0,0,33,3,1,4,0,6,7,1,0,387 -"6552",0,1,0,57,5,1,4,1,10,7,1,0,387 -"6553",0,1,0,63,2,1,4,1,9,7,1,0,387 -"6554",0,1,0,50,2,1,4,1,8,7,1,0,387 -"6555",0,1,0,56,3,1,4,1,10,7,0,0,387 -"6556",0,1,0,59,1,1,4,1,5,7,0,0,387 -"6557",0,1,0,51,3,1,4,1,9,7,1,0,387 -"6558",0,1,0,55,3,1,4,0,5,7,0,0,387 -"6559",0,1,0,48,3,1,4,1,9,7,0,0,387 -"6560",0,1,0,59,2,1,4,1,11,7,1,0,387 -"6561",0,1,0,53,3,1,4,1,11,7,0,0,387 -"6562",0,1,0,56,3,1,4,0,6,7,0,0,387 -"6563",0,1,0,50,2,1,4,1,11,7,0,0,387 -"6564",0,1,1,59,2,1,4,1,11,7,1,0,387 -"6565",0,1,0,40,3,1,4,1,7,7,0,0,387 -"6566",0,1,0,43,4,1,4,0,7,7,0,0,387 -"6567",0,1,1,38,2,1,4,1,8,7,0,0,387 -"6568",0,1,0,55,2,1,4,1,8,7,1,0,387 -"6569",0,1,0,30,1,1,4,1,6,7,0,0,387 -"6570",0,1,1,48,2,1,4,1,6,7,0,0,387 -"6571",0,1,1,55,2,1,4,1,6,7,0,0,387 -"6572",0,1,0,46,2,1,3,1,7,7,0,0,388 -"6573",0,1,0,27,3,1,3,1,6,7,0,0,388 -"6574",1,1,0,43,1,1,3,0,6,7,0,0,388 -"6575",0,1,0,54,1,1,3,0,11,7,0,0,388 -"6576",0,1,1,40,4,1,3,1,5,7,0,0,388 -"6577",0,1,0,43,3,1,3,0,7,7,0,0,388 -"6578",1,1,0,33,3,1,3,1,6,7,1,0,388 -"6579",0,1,0,49,3,1,3,1,5,7,0,0,388 -"6580",0,1,1,51,3,1,3,0,9,7,0,0,388 -"6581",0,1,1,34,3,1,3,0,4,7,1,0,388 -"6582",1,1,1,41,2,1,3,1,3,7,0,0,388 -"6583",0,1,1,43,2,1,3,0,7,7,0,0,388 -"6584",1,0,1,56,5,1,4,0,10,4,0,0,389 -"6585",0,1,1,45,2,1,4,0,11,4,1,0,389 -"6586",0,1,0,66,4,1,4,0,5,4,0,0,389 -"6587",0,1,0,70,1,1,4,1,6,4,1,0,389 -"6588",1,0,0,37,4,1,4,0,6,4,0,0,389 -"6589",0,1,1,48,2,1,4,0,9,4,0,0,389 -"6590",0,1,0,61,3,1,4,1,12,4,1,0,389 -"6591",1,1,0,51,2,1,4,0,5,4,1,0,389 -"6592",1,0,0,27,2,1,4,0,13,4,0,0,389 -"6593",0,1,0,68,1,1,4,1,10,4,1,0,389 -"6594",0,0,0,70,2,1,4,0,8,4,1,0,389 -"6595",0,1,0,57,2,1,4,1,10,4,0,0,389 -"6596",0,1,0,60,2,1,4,0,9,4,0,0,389 -"6597",0,1,1,55,2,1,4,0,9,4,0,0,389 -"6598",0,1,1,67,1,1,4,1,11,4,1,0,389 -"6599",1,0,0,58,3,1,4,0,5,4,1,0,389 -"6600",1,1,1,40,4,1,4,0,7,4,0,0,389 -"6601",0,1,0,44,1,1,4,1,10,4,0,0,389 -"6602",0,1,1,36,1,1,4,1,10,4,1,0,389 -"6603",0,1,0,71,1,1,4,0,9,4,1,0,389 -"6604",0,0,0,47,3,1,4,0,11,4,1,0,389 -"6605",0,1,1,71,2,1,4,1,10,4,1,0,389 -"6606",0,1,0,47,5,1,4,1,8,6,0,0,390 -"6607",1,0,0,77,1,1,4,0,12,6,1,0,390 -"6608",1,1,0,54,3,1,4,1,8,6,1,0,390 -"6609",0,1,0,55,4,1,4,0,8,6,0,0,390 -"6610",0,1,0,47,2,1,4,1,10,6,0,0,390 -"6611",0,1,1,59,2,1,4,1,9,6,0,0,390 -"6612",0,1,0,57,4,1,4,1,12,6,1,0,390 -"6613",0,1,0,66,2,1,4,1,8,6,1,0,390 -"6614",0,1,1,51,5,1,4,1,8,6,1,0,390 -"6615",0,1,0,59,1,1,4,0,8,6,1,0,390 -"6616",0,1,0,47,5,1,4,0,6,6,0,0,390 -"6617",1,1,0,63,2,1,4,0,10,6,1,0,390 -"6618",0,1,0,52,2,1,4,0,11,6,1,0,390 -"6619",1,1,0,53,2,1,4,0,9,6,1,0,390 -"6620",0,1,0,54,2,1,4,0,6,6,0,0,390 -"6621",0,1,0,46,1,1,4,1,4,6,0,0,390 -"6622",0,1,0,62,2,1,4,1,9,6,1,0,390 -"6623",1,1,1,41,2,1,4,0,5,6,1,0,390 -"6624",0,1,0,51,5,1,4,0,7,6,0,0,390 -"6625",0,1,0,64,1,1,5,0,12,4,1,0,391 -"6626",0,1,0,36,1,1,5,1,10,4,0,0,391 -"6627",0,1,0,52,2,1,5,1,4,4,0,0,391 -"6628",0,1,0,55,2,1,5,0,9,4,0,0,391 -"6629",0,1,0,62,2,1,5,0,10,4,0,0,391 -"6630",0,1,0,58,1,1,5,0,10,4,1,0,391 -"6631",0,1,0,64,3,1,5,0,12,4,1,0,391 -"6632",1,1,1,55,2,1,5,0,9,4,0,0,391 -"6633",0,1,0,51,2,1,5,0,10,4,0,0,391 -"6634",0,1,0,56,3,1,5,1,12,4,0,0,391 -"6635",1,1,1,41,3,1,5,0,10,4,0,0,391 -"6636",0,1,0,36,2,1,5,1,8,4,0,0,391 -"6637",0,1,0,50,2,1,5,0,10,4,0,0,391 -"6638",0,1,1,52,1,1,5,1,7,4,1,0,391 -"6639",0,1,0,60,1,1,5,1,3,4,0,0,391 -"6640",0,1,1,52,1,1,5,1,10,4,0,0,391 -"6641",0,1,0,42,2,1,3,0,2,6,0,0,392 -"6642",0,1,0,45,3,1,3,0,8,6,0,0,392 -"6643",0,1,0,47,3,1,3,0,6,6,0,0,392 -"6644",0,1,0,46,2,1,3,0,10,6,0,0,392 -"6645",0,1,0,42,1,1,3,1,9,6,0,0,392 -"6646",0,1,1,47,2,1,3,1,12,6,1,0,392 -"6647",1,0,1,32,5,1,3,0,11,6,1,0,392 -"6648",1,1,0,38,3,1,3,0,2,6,0,0,392 -"6649",0,1,1,62,1,1,3,1,5,6,0,0,392 -"6650",0,1,0,44,1,1,3,1,10,6,0,0,392 -"6651",0,0,0,47,1,1,3,1,9,6,0,0,392 -"6652",0,1,0,48,3,1,3,1,3,6,0,0,392 -"6653",0,1,1,46,2,1,3,0,8,6,0,0,392 -"6654",0,1,0,32,2,1,3,1,7,6,0,0,392 -"6655",0,1,0,54,2,1,3,0,10,6,1,0,392 -"6656",0,1,0,52,4,1,3,0,9,6,0,0,392 -"6657",0,1,0,48,2,1,3,1,8,6,0,0,392 -"6658",0,1,0,59,2,1,4,0,12,1,1,0,393 -"6659",0,1,0,68,3,1,4,0,13,1,1,0,393 -"6660",0,1,0,62,3,1,4,1,12,1,1,0,393 -"6661",0,1,1,58,2,1,4,1,8,1,0,0,393 -"6662",1,1,0,61,3,1,4,0,8,1,1,0,393 -"6663",0,0,0,57,2,1,4,0,13,1,0,0,393 -"6664",0,1,0,59,1,1,4,0,12,1,1,0,393 -"6665",0,1,1,53,2,1,4,1,11,1,1,0,393 -"6666",0,1,1,63,1,1,4,0,12,1,0,0,393 -"6667",0,1,0,78,1,1,4,0,13,1,1,0,393 -"6668",0,1,0,57,4,1,4,0,10,1,1,0,393 -"6669",0,1,0,62,1,1,4,1,11,1,1,0,393 -"6670",0,1,1,42,1,1,4,0,12,1,1,0,393 -"6671",0,0,0,59,2,1,4,0,11,1,1,0,393 -"6672",0,1,1,63,1,1,4,1,10,1,1,0,393 -"6673",0,1,0,64,2,1,4,0,13,1,1,0,393 -"6674",0,1,1,56,2,1,5,0,8,1,0,0,394 -"6675",0,0,0,42,2,1,5,0,9,1,0,0,394 -"6676",0,1,1,47,2,1,5,0,8,1,0,0,394 -"6677",0,1,0,41,2,1,5,1,9,1,0,0,394 -"6678",0,1,0,35,3,1,5,1,11,1,0,0,394 -"6679",0,1,0,49,3,1,5,0,10,1,0,0,394 -"6680",0,1,0,41,1,1,5,0,9,1,1,0,394 -"6681",0,1,1,52,2,1,3,1,13,1,1,0,395 -"6682",0,1,0,60,3,1,3,1,10,1,1,0,395 -"6683",1,1,0,57,1,1,3,0,13,1,1,0,395 -"6684",0,0,0,62,3,1,3,0,10,1,0,0,395 -"6685",0,1,0,53,2,1,3,0,6,1,0,0,395 -"6686",0,1,0,53,1,1,3,0,12,1,0,0,395 -"6687",0,1,0,37,1,1,3,1,10,1,0,0,395 -"6688",0,1,0,57,5,1,3,1,12,1,1,0,395 -"6689",0,1,0,46,2,1,3,0,11,1,1,0,395 -"6690",0,1,0,60,2,1,3,1,12,1,0,0,395 -"6691",0,1,0,52,2,1,3,0,13,1,1,0,395 -"6692",1,1,1,49,3,1,3,1,12,1,1,0,395 -"6693",0,1,0,58,4,1,3,0,10,1,1,0,395 -"6694",0,1,0,58,3,1,3,0,8,1,0,0,395 -"6695",0,1,0,54,4,1,3,1,12,1,1,0,395 -"6696",0,1,0,57,2,1,3,1,10,1,1,0,395 -"6697",0,1,0,48,2,1,3,1,8,1,0,0,395 -"6698",0,1,0,59,3,1,3,1,7,1,0,0,395 -"6699",0,1,1,34,3,1,3,0,8,6,1,0,396 -"6700",0,1,0,54,1,1,3,0,8,6,0,0,396 -"6701",0,1,0,51,3,1,3,0,9,6,0,0,396 -"6702",1,0,0,50,5,1,3,1,9,6,1,0,396 -"6703",0,1,0,46,1,1,3,1,10,6,0,0,396 -"6704",0,1,0,68,1,1,3,0,11,6,1,0,396 -"6705",1,1,0,29,1,1,3,0,7,6,0,0,396 -"6706",0,1,1,37,2,1,3,1,10,6,0,0,396 -"6707",0,1,0,47,2,1,3,0,4,6,0,0,396 -"6708",1,0,0,41,5,1,3,1,8,6,0,0,396 -"6709",0,1,1,47,2,1,3,1,7,6,0,0,396 -"6710",1,1,0,46,2,1,3,0,9,6,1,0,396 -"6711",0,1,0,48,1,1,3,1,9,6,0,0,396 -"6712",0,1,0,46,5,1,3,1,7,6,0,0,396 -"6713",0,1,0,51,2,1,3,0,5,6,0,0,396 -"6714",0,0,1,48,3,1,3,0,4,6,0,0,396 -"6715",0,1,0,51,3,1,4,1,11,2,0,0,397 -"6716",0,1,1,51,2,1,4,0,5,2,0,0,397 -"6717",0,0,1,53,1,1,4,1,11,2,0,0,397 -"6718",0,1,0,23,2,1,4,0,5,2,1,0,397 -"6719",0,0,1,49,5,1,4,0,2,2,0,0,397 -"6720",0,1,1,53,3,1,4,1,10,2,0,0,397 -"6721",0,1,1,53,2,1,4,1,9,2,1,0,397 -"6722",0,1,0,55,2,1,4,0,7,2,0,0,397 -"6723",0,1,1,59,2,1,4,1,8,2,0,0,397 -"6724",0,1,0,60,3,1,4,0,11,2,1,0,397 -"6725",0,1,0,55,1,1,4,1,9,2,0,0,397 -"6726",0,1,0,49,2,1,4,0,11,2,0,0,397 -"6727",0,1,1,51,2,1,4,1,10,2,0,0,397 -"6728",0,1,0,47,2,1,4,1,8,2,0,0,397 -"6729",0,1,0,68,1,1,4,0,9,2,1,0,397 -"6730",0,1,1,52,2,1,4,1,9,2,0,0,397 -"6731",1,1,1,55,1,1,4,1,9,2,1,0,397 -"6732",0,1,0,49,1,1,4,1,10,2,0,0,397 -"6733",1,0,1,50,3,1,4,1,10,2,0,0,397 -"6734",0,1,0,52,1,1,4,1,9,2,0,0,397 -"6735",1,1,1,46,3,1,4,0,8,2,0,0,397 -"6736",0,1,0,50,3,1,4,1,8,5,1,0,398 -"6737",0,1,0,60,1,1,4,0,9,5,1,0,398 -"6738",0,1,0,53,3,1,4,1,9,5,0,0,398 -"6739",0,1,0,48,3,1,4,1,8,5,0,0,398 -"6740",0,1,0,53,2,1,4,1,8,5,0,0,398 -"6741",0,0,1,56,3,1,4,0,9,5,1,0,398 -"6742",0,1,0,37,2,1,4,1,10,5,1,0,398 -"6743",0,1,1,66,3,1,4,0,11,5,1,0,398 -"6744",0,1,0,49,2,1,4,0,9,5,0,0,398 -"6745",0,1,0,58,3,1,4,0,6,5,0,0,398 -"6746",0,1,0,56,2,1,4,1,4,5,0,0,398 -"6747",0,0,0,31,2,1,4,1,6,5,0,0,398 -"6748",0,1,0,37,2,0,4,1,10,1,1,1,399 -"6749",0,1,0,59,2,0,4,0,8,1,0,1,399 -"6750",1,0,1,56,2,0,4,0,10,1,0,1,399 -"6751",1,1,0,43,5,0,4,0,9,1,0,1,399 -"6752",1,0,0,38,3,0,4,0,4,1,0,1,399 -"6753",0,1,0,46,2,0,4,0,12,1,0,1,399 -"6754",1,0,1,36,2,0,4,0,10,1,0,1,399 -"6755",0,1,0,40,2,0,4,0,12,1,0,1,399 -"6756",0,1,0,48,1,0,4,0,6,1,0,1,399 -"6757",0,1,0,51,5,0,4,0,11,1,0,1,399 -"6758",0,1,1,50,2,0,4,0,5,1,0,1,399 -"6759",0,1,0,52,3,0,4,0,5,1,0,1,399 -"6760",0,1,0,53,3,0,4,1,9,1,0,1,399 -"6761",0,1,1,30,3,0,4,0,8,1,0,1,399 -"6762",1,1,0,49,2,0,4,0,3,1,0,1,399 -"6763",0,1,0,53,1,0,4,0,11,1,0,1,399 -"6764",0,1,0,36,1,0,4,0,8,1,1,1,399 -"6765",0,1,0,38,2,0,4,1,10,1,0,1,399 -"6766",0,1,1,55,2,0,4,0,10,1,1,1,399 -"6767",0,1,1,49,3,0,4,0,10,1,0,1,399 -"6768",1,1,1,33,2,0,4,0,6,1,0,1,399 -"6769",0,0,0,55,5,0,4,0,9,1,1,1,399 -"6770",0,1,1,46,3,0,4,0,10,1,0,1,399 -"6771",0,1,0,45,2,1,3,1,10,2,0,0,400 -"6772",0,1,0,75,2,1,3,0,10,2,1,0,400 -"6773",0,1,1,52,3,1,3,1,12,2,0,0,400 -"6774",0,1,1,45,3,1,3,1,8,2,0,0,400 -"6775",0,0,1,43,3,1,3,1,3,2,0,0,400 -"6776",0,1,0,58,1,1,3,1,10,2,1,0,400 -"6777",0,1,0,30,1,1,3,0,9,2,1,0,400 -"6778",0,1,1,61,1,1,3,1,11,2,1,0,400 -"6779",1,1,1,49,1,1,3,0,9,2,0,0,400 -"6780",0,1,0,42,2,1,3,1,5,2,0,0,400 -"6781",1,1,1,61,1,1,3,0,9,2,0,0,400 -"6782",0,1,0,36,1,1,3,1,4,2,0,0,400 -"6783",0,1,1,61,3,1,3,0,11,2,0,0,400 -"6784",0,1,1,36,3,1,3,1,8,2,0,0,400 -"6785",0,1,1,50,3,1,5,1,10,3,1,0,401 -"6786",0,0,0,53,3,1,5,1,10,3,0,0,401 -"6787",0,1,0,63,1,1,5,1,11,3,0,0,401 -"6788",0,1,1,56,1,1,5,1,12,3,0,0,401 -"6789",0,1,1,55,3,1,5,1,6,3,0,0,401 -"6790",0,1,0,59,3,1,5,1,12,3,1,0,401 -"6791",0,1,1,59,2,1,5,0,11,3,0,0,401 -"6792",0,1,0,58,2,1,5,0,9,3,0,0,401 -"6793",0,1,1,53,3,1,5,0,10,3,0,0,401 -"6794",0,1,1,58,1,1,5,0,11,3,0,0,401 -"6795",0,1,0,57,1,1,5,0,10,3,0,0,401 -"6796",1,1,0,45,5,1,5,1,7,3,0,0,401 -"6797",0,1,1,48,1,1,5,1,10,3,0,0,401 -"6798",0,1,1,67,2,1,5,1,12,3,1,0,401 -"6799",0,1,1,62,1,1,4,1,12,3,1,0,402 -"6800",1,1,0,58,5,1,4,0,12,3,1,0,402 -"6801",0,1,1,52,2,1,4,1,13,3,1,0,402 -"6802",1,0,0,45,1,1,4,1,11,3,1,0,402 -"6803",0,1,0,49,1,1,4,1,11,3,1,0,402 -"6804",0,1,0,57,2,1,4,0,13,3,1,0,402 -"6805",0,1,0,57,2,1,4,1,12,3,1,0,402 -"6806",0,0,0,35,3,1,5,1,8,6,0,0,403 -"6807",0,1,0,38,2,1,5,0,9,6,0,0,403 -"6808",0,0,0,43,5,1,5,1,10,6,0,0,403 -"6809",0,1,1,53,4,1,5,1,9,6,0,0,403 -"6810",0,1,1,46,3,1,5,0,10,6,0,0,403 -"6811",0,1,0,51,3,1,5,1,13,6,0,0,403 -"6812",0,0,0,49,3,1,5,0,7,6,0,0,403 -"6813",0,1,0,51,3,1,5,0,8,6,0,0,403 -"6814",0,1,0,63,3,1,5,1,11,6,0,0,403 -"6815",0,1,0,58,2,1,5,0,10,6,0,0,403 -"6816",0,1,0,44,2,1,5,1,10,6,0,0,403 -"6817",0,1,1,48,2,1,5,1,9,6,0,0,403 -"6818",1,1,1,33,4,1,5,0,8,6,0,0,403 -"6819",0,1,1,56,3,1,5,0,10,6,0,0,403 -"6820",1,1,0,55,2,1,5,0,8,6,1,0,403 -"6821",0,1,0,57,1,1,4,0,12,1,1,1,404 -"6822",0,1,0,59,2,1,4,1,11,1,1,1,404 -"6823",0,1,1,68,2,1,4,1,12,1,1,1,404 -"6824",0,0,1,63,3,1,4,1,15,1,1,1,404 -"6825",0,1,1,57,2,1,4,1,13,1,1,1,404 -"6826",0,1,1,52,2,1,4,0,11,1,1,1,404 -"6827",0,1,1,48,5,1,4,1,13,1,1,1,404 -"6828",0,1,0,59,2,1,4,1,10,1,1,1,404 -"6829",0,1,0,46,2,1,4,0,10,1,1,1,404 -"6830",0,1,1,60,3,1,4,0,11,1,1,1,404 -"6831",0,1,0,52,2,1,4,0,13,1,1,1,404 -"6832",0,1,0,66,2,1,4,0,13,1,1,1,404 -"6833",0,1,0,61,2,1,4,0,12,1,1,1,404 -"6834",0,1,0,60,2,1,4,1,12,1,1,1,404 -"6835",0,1,1,71,3,1,4,1,9,1,0,1,404 -"6836",0,1,1,65,2,1,4,0,11,1,1,1,404 -"6837",0,1,0,69,3,0,4,0,13,1,1,1,405 -"6838",0,1,0,68,1,0,4,0,12,1,1,1,405 -"6839",0,1,0,56,3,0,4,0,7,1,1,1,405 -"6840",0,1,0,65,2,0,4,0,11,1,0,1,405 -"6841",0,1,0,62,1,0,4,0,12,1,1,1,405 -"6842",0,1,0,53,1,0,4,0,12,1,1,1,405 -"6843",0,1,0,63,2,0,4,0,13,1,1,1,405 -"6844",0,1,0,51,1,0,4,0,9,1,0,1,405 -"6845",1,1,1,65,1,0,4,0,13,1,1,1,405 -"6846",0,0,0,58,3,0,4,0,12,1,1,1,405 -"6847",0,1,0,56,1,0,4,0,10,1,1,1,405 -"6848",0,1,1,47,1,0,4,0,9,1,1,1,405 -"6849",1,1,0,49,2,0,4,0,12,1,1,1,405 -"6850",0,1,0,68,3,0,4,1,11,1,1,1,405 -"6851",0,1,0,64,1,0,4,0,11,1,1,1,405 -"6852",0,1,1,58,1,0,4,0,8,1,1,1,405 -"6853",0,1,1,66,1,0,4,0,11,1,1,1,405 -"6854",0,0,0,61,1,0,4,0,12,1,1,1,405 -"6855",0,1,0,66,1,0,4,0,12,1,1,1,405 -"6856",0,1,0,57,1,0,4,0,12,1,1,1,405 -"6857",0,1,0,40,1,0,4,0,10,1,0,1,405 -"6858",0,1,0,56,1,0,4,0,12,1,1,1,405 -"6859",0,1,0,60,2,0,4,0,11,1,1,1,405 -"6860",0,1,0,49,1,0,4,0,10,1,1,1,405 -"6861",0,1,0,58,1,0,4,0,12,1,1,1,405 -"6862",0,1,0,63,1,0,4,0,12,1,1,1,405 -"6863",1,0,0,69,1,1,4,0,9,6,1,0,406 -"6864",0,0,1,45,2,1,4,1,9,6,0,0,406 -"6865",0,1,0,39,1,1,4,1,9,6,0,0,406 -"6866",0,1,0,41,2,1,4,1,8,6,0,0,406 -"6867",0,1,0,44,1,1,4,1,9,6,0,0,406 -"6868",0,1,0,24,2,1,4,1,4,6,0,0,406 -"6869",0,1,1,50,2,1,4,1,9,6,1,0,406 -"6870",0,1,0,53,3,1,4,1,8,6,0,0,406 -"6871",0,1,0,48,5,1,4,1,9,6,0,0,406 -"6872",0,1,0,58,1,1,4,0,12,1,1,1,407 -"6873",1,1,0,45,2,1,4,0,12,1,0,1,407 -"6874",0,1,0,58,2,1,4,1,12,1,0,1,407 -"6875",0,1,0,61,3,1,4,0,7,1,0,1,407 -"6876",0,1,1,52,2,1,4,1,5,1,0,1,407 -"6877",0,1,0,52,2,1,4,0,9,1,0,1,407 -"6878",0,1,0,67,1,1,4,0,11,1,1,1,407 -"6879",0,1,1,58,1,1,4,1,10,1,0,1,407 -"6880",0,1,0,41,2,1,4,1,12,1,1,1,407 -"6881",0,1,1,60,2,1,4,1,11,1,1,1,407 -"6882",0,1,0,65,2,1,4,0,11,1,0,1,407 -"6883",0,1,1,66,2,1,4,1,12,1,1,1,407 -"6884",1,1,0,61,1,1,4,0,9,1,1,1,407 -"6885",0,1,0,65,2,1,4,1,12,1,1,1,407 -"6886",0,1,0,28,1,1,3,0,9,2,0,0,408 -"6887",0,1,0,52,2,1,3,0,9,2,1,0,408 -"6888",0,1,0,53,1,1,3,1,8,2,0,0,408 -"6889",0,1,1,42,2,1,3,1,11,2,1,0,408 -"6890",0,1,1,66,2,1,3,0,12,2,1,0,408 -"6891",0,1,1,62,2,1,3,0,13,2,1,0,408 -"6892",0,1,0,55,1,1,3,1,9,2,0,0,408 -"6893",0,1,0,67,2,1,3,0,13,2,1,0,408 -"6894",0,1,1,62,5,1,3,0,10,2,0,0,408 -"6895",1,1,0,53,2,1,3,1,10,2,0,0,408 -"6896",0,1,1,61,1,1,3,1,10,2,1,0,408 -"6897",0,0,0,36,1,1,3,0,13,2,1,0,408 -"6898",0,1,1,57,1,1,3,1,10,2,0,0,408 -"6899",0,1,1,47,1,1,3,1,12,2,1,0,408 -"6900",0,1,1,53,2,1,3,1,11,2,1,0,408 -"6901",0,1,0,57,2,1,4,0,9,5,0,0,409 -"6902",0,1,0,55,2,1,4,0,9,5,0,0,409 -"6903",1,1,0,56,1,1,4,0,9,5,0,0,409 -"6904",0,1,1,52,5,1,4,1,9,5,0,0,409 -"6905",1,1,1,61,2,1,4,0,8,5,0,0,409 -"6906",0,1,0,53,3,1,4,0,11,5,1,0,409 -"6907",0,0,0,42,2,1,4,0,10,5,1,0,409 -"6908",1,1,1,64,3,1,4,0,9,5,1,0,409 -"6909",1,1,1,58,2,1,4,1,9,5,1,0,409 -"6910",0,1,0,59,2,1,4,1,9,5,1,0,409 -"6911",0,1,0,41,2,1,4,1,9,5,0,0,409 -"6912",0,1,1,40,1,1,4,1,9,5,0,0,409 -"6913",0,1,1,48,1,1,4,1,12,5,1,0,409 -"6914",0,1,0,44,3,1,4,1,10,5,0,0,409 -"6915",0,1,0,34,1,1,4,1,10,5,1,0,409 -"6916",1,1,0,37,5,1,4,0,11,5,1,0,409 -"6917",0,1,0,45,4,1,4,0,6,5,0,0,409 -"6918",0,1,0,60,2,1,4,0,10,5,1,0,409 -"6919",0,1,0,48,5,1,4,1,5,5,1,0,409 -"6920",0,1,0,55,4,1,4,0,11,5,1,0,409 -"6921",1,1,0,38,1,1,4,0,3,6,0,0,410 -"6922",1,1,0,48,2,1,4,0,7,6,0,0,410 -"6923",0,1,0,43,2,1,4,1,5,6,1,0,410 -"6924",0,1,0,44,3,1,4,0,9,6,0,0,410 -"6925",0,0,0,46,1,1,4,1,10,6,0,0,410 -"6926",0,1,0,52,2,1,4,1,11,6,0,0,410 -"6927",1,1,1,31,2,1,4,1,6,5,0,0,411 -"6928",0,1,1,59,2,1,4,0,11,5,1,0,411 -"6929",0,1,1,55,2,1,4,0,9,5,0,0,411 -"6930",0,1,0,35,2,1,4,1,7,5,0,0,411 -"6931",0,1,0,36,1,1,4,0,8,5,0,0,411 -"6932",0,1,0,46,2,1,4,0,11,5,0,0,411 -"6933",0,1,1,47,1,1,4,1,4,5,0,0,411 -"6934",0,1,0,47,3,1,4,0,11,5,0,0,411 -"6935",0,0,0,46,2,1,4,1,7,5,0,0,411 -"6936",0,1,0,66,1,1,4,0,10,5,0,0,411 -"6937",1,1,0,42,3,1,4,0,9,5,0,0,411 -"6938",0,1,1,44,3,1,4,1,5,5,0,0,411 -"6939",0,1,0,54,1,1,4,0,9,5,0,0,411 -"6940",0,0,1,39,1,1,4,0,6,5,0,0,411 -"6941",0,1,0,46,1,1,4,0,10,5,0,0,411 -"6942",0,1,0,42,1,1,4,1,9,5,0,0,411 -"6943",0,1,1,65,1,1,4,1,9,5,0,0,411 -"6944",0,1,1,53,3,1,4,0,11,4,0,0,412 -"6945",0,1,1,55,1,1,4,1,12,4,1,0,412 -"6946",1,1,1,24,2,1,4,0,6,4,0,0,412 -"6947",0,1,1,48,2,1,4,0,11,4,0,0,412 -"6948",0,1,0,58,2,1,4,1,8,4,0,0,412 -"6949",0,1,0,60,2,1,4,1,9,4,0,0,412 -"6950",0,1,0,48,1,1,4,0,9,4,0,0,412 -"6951",0,1,1,44,3,1,4,1,10,4,0,0,412 -"6952",1,1,1,47,2,1,4,0,11,1,1,0,413 -"6953",0,1,1,44,2,1,4,1,10,1,0,0,413 -"6954",0,0,0,47,2,1,4,0,11,1,0,0,413 -"6955",1,1,1,63,3,1,4,0,11,1,0,0,413 -"6956",0,1,0,67,2,1,4,0,9,1,1,0,413 -"6957",0,1,0,57,2,1,4,1,10,1,0,0,413 -"6958",0,1,0,44,1,1,4,1,6,1,0,0,413 -"6959",0,1,0,71,1,1,4,0,12,1,1,0,413 -"6960",0,1,1,54,1,1,4,0,10,1,1,0,413 -"6961",0,1,0,46,2,1,4,1,10,1,1,0,413 -"6962",0,1,1,57,2,1,3,1,13,5,1,0,414 -"6963",1,1,0,55,4,1,3,1,6,5,1,0,414 -"6964",0,1,0,47,2,1,3,0,8,5,0,0,414 -"6965",0,1,0,38,1,1,3,1,10,5,0,0,414 -"6966",0,1,0,54,2,1,3,0,10,5,0,0,414 -"6967",0,1,0,37,3,1,3,0,7,5,0,0,414 -"6968",0,1,1,43,3,1,3,0,9,5,1,0,414 -"6969",0,1,0,53,2,1,3,1,9,5,1,0,414 -"6970",0,1,0,49,2,1,3,1,8,5,1,0,414 -"6971",1,1,1,37,3,1,3,0,6,5,0,0,414 -"6972",0,1,0,52,1,1,3,1,10,5,1,0,414 -"6973",0,1,0,42,1,1,3,1,6,5,0,0,414 -"6974",0,1,0,35,1,1,3,0,7,5,0,0,414 -"6975",0,1,1,59,1,1,3,1,10,5,1,0,414 -"6976",0,1,1,61,2,1,3,0,7,5,0,0,414 -"6977",0,1,0,51,5,1,3,1,6,5,0,0,414 -"6978",0,1,0,48,1,1,3,0,8,5,0,0,414 -"6979",0,1,0,49,1,1,3,1,11,5,1,0,414 -"6980",0,1,0,54,4,1,4,1,13,1,1,1,415 -"6981",0,1,0,60,2,1,4,0,11,1,1,1,415 -"6982",0,1,1,57,1,1,4,1,13,1,1,1,415 -"6983",1,1,1,56,1,1,4,0,13,1,1,1,415 -"6984",0,1,0,59,1,1,4,0,12,1,1,1,415 -"6985",0,1,0,63,2,1,4,1,10,1,1,1,415 -"6986",0,1,0,61,2,1,4,1,11,1,0,1,415 -"6987",0,1,0,44,2,1,4,0,13,1,1,1,415 -"6988",0,1,1,64,2,1,4,0,13,1,1,1,415 -"6989",0,1,0,55,1,1,4,0,9,1,0,1,415 -"6990",0,1,1,43,2,1,4,0,10,1,0,1,415 -"6991",0,0,0,54,3,1,4,0,12,1,1,1,415 -"6992",0,1,0,57,1,1,4,1,10,1,0,1,415 -"6993",0,1,0,72,2,1,4,0,11,1,1,1,415 -"6994",0,1,0,56,1,1,4,0,12,1,1,1,415 -"6995",0,1,0,63,2,1,4,1,13,1,1,1,415 -"6996",0,1,0,62,2,1,4,1,12,1,1,1,415 -"6997",0,1,0,46,3,1,5,1,10,1,1,0,416 -"6998",0,0,0,57,1,1,5,0,9,1,0,0,416 -"6999",0,1,0,56,1,1,5,0,10,1,1,0,416 -"7000",0,1,0,66,1,1,5,1,10,1,1,0,416 -"7001",0,1,0,61,2,1,5,1,10,1,1,0,416 -"7002",0,1,1,61,2,1,5,0,11,1,1,0,416 -"7003",0,1,1,54,1,1,5,1,10,1,1,0,416 -"7004",0,1,1,53,2,1,5,1,10,1,0,0,416 -"7005",0,1,0,63,1,1,5,1,7,1,1,0,416 -"7006",0,1,1,62,2,1,5,1,10,1,0,0,416 -"7007",0,1,0,51,1,1,5,0,12,1,1,0,416 -"7008",1,1,0,53,1,1,5,0,10,1,1,0,416 -"7009",0,1,0,50,2,1,5,1,5,1,1,0,416 -"7010",1,1,0,55,2,1,5,0,8,1,0,0,416 -"7011",0,1,0,49,1,1,5,1,12,1,1,0,416 -"7012",1,1,0,56,3,1,5,0,9,2,0,0,417 -"7013",0,1,0,54,2,1,5,0,9,2,0,0,417 -"7014",0,1,0,60,2,1,5,0,10,2,0,0,417 -"7015",0,1,0,57,1,1,5,1,10,2,1,0,417 -"7016",0,1,0,50,2,1,5,0,10,2,0,0,417 -"7017",0,0,1,61,1,1,5,1,9,2,0,0,417 -"7018",0,1,0,54,2,1,5,0,12,2,0,0,417 -"7019",0,1,1,42,3,1,5,1,11,2,0,0,417 -"7020",0,0,0,58,2,1,5,1,11,2,0,0,417 -"7021",0,1,1,69,2,1,5,0,9,2,1,0,417 -"7022",1,1,1,36,2,1,5,0,9,2,0,0,417 -"7023",0,1,1,56,4,1,5,0,10,2,0,0,417 -"7024",0,1,0,50,1,1,5,0,7,2,0,0,417 -"7025",0,1,0,57,2,1,5,1,8,2,0,0,417 -"7026",0,1,1,58,3,1,5,1,12,2,1,0,417 -"7027",0,1,1,64,1,1,4,1,9,1,1,0,418 -"7028",0,1,0,69,2,1,4,1,10,1,1,0,418 -"7029",0,1,0,41,1,1,4,1,12,1,1,0,418 -"7030",0,1,1,51,1,1,4,0,10,1,1,0,418 -"7031",0,1,1,55,3,1,4,0,12,1,1,0,418 -"7032",0,1,1,61,2,1,4,1,10,1,1,0,418 -"7033",0,0,1,56,3,1,4,1,10,1,1,0,418 -"7034",0,1,0,69,1,1,4,1,12,1,1,0,418 -"7035",0,1,1,49,1,1,4,0,12,1,0,0,418 -"7036",0,1,0,46,3,1,4,1,12,1,0,0,418 -"7037",0,1,0,64,1,1,4,0,10,1,0,0,418 -"7038",0,0,0,67,2,1,4,1,9,1,0,0,419 -"7039",0,1,1,54,2,1,4,1,9,1,0,0,419 -"7040",0,0,0,50,2,1,4,0,12,1,1,0,419 -"7041",0,1,1,65,1,1,4,1,9,1,0,0,419 -"7042",0,1,0,47,1,1,4,0,10,1,1,0,419 -"7043",0,1,0,57,2,1,4,1,9,1,1,0,419 -"7044",0,1,1,61,2,1,4,1,10,1,1,0,419 -"7045",1,1,1,59,1,1,4,0,10,1,0,0,419 -"7046",0,1,1,46,2,1,4,1,6,1,0,0,419 -"7047",0,1,0,40,3,1,4,1,12,1,1,0,419 -"7048",0,1,0,46,1,1,4,1,10,1,0,0,419 -"7049",0,1,0,62,2,1,4,0,10,1,0,0,419 -"7050",0,1,1,60,3,1,4,0,10,1,0,0,419 -"7051",0,0,0,66,2,1,4,0,10,1,1,0,419 -"7052",0,1,0,41,2,1,4,1,10,1,0,0,419 -"7053",0,1,0,53,2,1,4,0,8,1,0,0,419 -"7054",1,0,1,48,2,1,4,1,8,1,0,0,419 -"7055",0,1,1,52,1,1,4,1,10,1,0,0,419 -"7056",0,1,0,56,1,1,4,0,10,1,1,0,419 -"7057",0,1,1,51,1,1,4,1,5,1,1,0,419 -"7058",0,1,1,51,3,1,4,0,9,1,0,0,419 -"7059",0,1,1,59,1,1,4,0,10,1,0,0,419 -"7060",1,1,0,56,2,1,4,0,9,1,0,0,419 -"7061",0,1,1,64,3,1,4,0,10,2,1,0,420 -"7062",0,1,0,65,1,1,4,1,10,2,0,0,420 -"7063",0,1,0,75,2,1,4,0,12,2,1,0,420 -"7064",0,1,1,57,4,1,4,1,10,2,1,0,420 -"7065",0,1,1,48,2,1,4,0,12,2,0,0,420 -"7066",0,1,1,52,2,1,4,1,11,2,1,0,420 -"7067",0,1,1,51,1,1,4,0,12,2,0,0,420 -"7068",0,1,1,72,2,1,4,0,9,2,1,0,420 -"7069",0,1,1,46,2,1,4,0,8,2,0,0,420 -"7070",0,1,0,62,2,1,4,0,11,2,1,0,420 -"7071",0,1,1,56,5,1,4,1,10,2,1,0,420 -"7072",0,1,0,63,2,1,4,0,10,2,0,0,420 -"7073",0,1,0,59,1,1,4,1,13,2,0,0,420 -"7074",0,1,1,64,1,1,4,1,8,2,1,0,420 -"7075",0,1,1,55,1,1,4,1,12,2,1,0,420 -"7076",0,1,0,78,1,0,4,0,13,1,1,1,421 -"7077",0,1,0,68,2,0,4,0,9,1,1,1,421 -"7078",0,1,0,70,1,0,4,0,10,1,1,1,421 -"7079",0,1,0,51,1,0,4,0,13,1,1,1,421 -"7080",0,1,1,65,1,0,4,0,11,1,1,1,421 -"7081",0,1,0,57,4,0,4,0,11,1,0,1,421 -"7082",0,1,0,55,2,0,4,0,13,1,0,1,421 -"7083",0,1,1,50,2,0,4,0,13,1,1,1,421 -"7084",0,1,0,59,2,0,4,0,10,1,1,1,421 -"7085",0,1,0,59,1,0,4,0,11,1,1,1,421 -"7086",1,0,0,63,2,0,4,0,11,1,1,1,421 -"7087",0,1,1,59,2,0,4,0,13,1,1,1,421 -"7088",0,1,0,46,2,1,3,0,13,1,1,0,422 -"7089",0,0,0,74,2,1,3,0,10,1,1,0,422 -"7090",0,1,1,64,3,1,3,0,10,1,1,0,422 -"7091",0,1,1,51,2,1,3,1,12,1,1,0,422 -"7092",0,1,1,64,1,1,3,0,10,1,1,0,422 -"7093",0,0,1,78,4,1,3,0,11,1,1,0,422 -"7094",0,1,0,62,1,1,3,1,12,1,1,0,422 -"7095",0,1,0,46,2,1,3,1,5,1,1,0,422 -"7096",0,1,1,62,2,1,3,1,10,1,0,0,422 -"7097",0,1,0,65,2,1,3,1,12,1,1,0,422 -"7098",1,0,0,54,1,1,3,1,10,1,0,0,422 -"7099",0,0,0,60,1,1,3,0,14,1,0,0,422 -"7100",0,1,0,64,1,1,3,1,10,1,1,0,422 -"7101",0,1,0,52,1,1,3,1,9,1,0,0,422 -"7102",0,1,1,65,3,1,3,0,10,1,1,0,422 -"7103",0,1,1,58,2,1,3,0,11,1,1,0,422 -"7104",0,1,0,43,1,1,3,1,11,1,0,0,422 -"7105",0,0,0,52,2,1,3,1,9,1,1,0,422 -"7106",0,1,1,39,4,1,4,1,12,7,1,0,423 -"7107",1,1,0,35,4,1,4,1,5,7,1,0,423 -"7108",0,1,1,38,5,1,4,1,8,7,0,0,423 -"7109",0,1,0,43,2,1,4,1,4,7,0,0,423 -"7110",0,1,1,31,3,1,4,0,11,7,0,0,423 -"7111",0,1,0,55,3,1,4,0,8,7,0,0,423 -"7112",0,1,0,40,3,1,4,0,8,7,0,0,423 -"7113",0,1,0,44,2,1,4,0,8,7,0,0,423 -"7114",0,1,0,33,2,1,4,1,9,7,1,0,423 -"7115",0,1,1,32,3,1,4,0,13,7,0,0,423 -"7116",0,1,0,33,4,1,4,1,9,7,0,0,423 -"7117",0,1,0,51,1,1,4,1,3,7,0,0,423 -"7118",0,1,0,37,3,1,4,1,5,7,0,0,423 -"7119",0,1,1,49,3,1,4,1,6,7,0,0,423 -"7120",0,1,0,62,2,1,4,1,7,7,0,0,423 -"7121",0,1,1,60,2,1,2,1,10,3,1,0,424 -"7122",0,1,1,59,5,1,2,1,10,3,0,0,424 -"7123",0,1,1,70,1,1,2,0,8,3,0,0,424 -"7124",1,0,0,53,1,1,2,0,10,3,0,0,424 -"7125",0,1,1,29,3,1,2,1,12,3,1,0,424 -"7126",0,1,0,69,2,1,2,0,9,3,0,0,424 -"7127",0,1,1,57,3,1,2,0,10,3,0,0,424 -"7128",0,1,0,60,1,1,2,0,10,3,1,0,424 -"7129",0,1,1,51,3,1,2,0,7,3,0,0,424 -"7130",0,1,1,67,1,1,2,1,8,3,0,0,424 -"7131",0,1,0,61,3,1,2,1,8,3,0,0,424 -"7132",0,1,0,64,1,1,2,0,8,3,0,0,424 -"7133",0,1,0,58,5,1,2,1,12,3,1,0,424 -"7134",0,1,0,47,4,1,2,0,11,3,0,0,424 -"7135",0,1,1,46,1,1,2,1,10,3,1,0,424 -"7136",1,1,0,53,3,1,2,0,11,3,1,0,424 -"7137",0,1,0,59,1,1,2,1,8,3,0,0,424 -"7138",0,1,0,52,1,1,2,1,9,3,0,0,424 -"7139",0,1,0,33,3,1,2,1,6,3,0,0,424 -"7140",0,1,0,39,5,1,2,0,6,3,0,0,424 -"7141",1,0,0,38,5,1,2,0,9,3,1,0,424 -"7142",0,1,0,43,5,1,3,1,7,6,0,0,425 -"7143",0,1,0,44,2,1,3,1,8,6,0,0,425 -"7144",0,1,0,56,2,1,3,0,5,6,1,0,425 -"7145",0,1,0,25,2,1,3,1,7,6,1,0,425 -"7146",0,1,0,55,3,1,3,1,6,6,0,0,425 -"7147",0,1,0,53,2,1,3,1,8,6,0,0,425 -"7148",1,1,0,39,5,1,3,1,9,6,1,0,425 -"7149",0,1,1,34,2,1,3,0,4,6,0,0,425 -"7150",0,0,0,59,5,1,3,0,11,6,1,0,425 -"7151",0,1,0,64,1,1,3,0,8,6,1,0,425 -"7152",0,1,0,55,2,1,3,0,6,6,0,0,425 -"7153",0,1,0,66,1,1,3,1,9,6,1,0,425 -"7154",0,1,1,43,1,1,3,0,11,6,0,0,425 -"7155",0,1,0,64,1,1,3,1,7,6,0,0,425 -"7156",0,1,0,32,1,1,3,1,6,6,0,0,425 -"7157",1,1,0,39,2,1,3,0,5,6,0,0,425 -"7158",0,0,0,49,2,1,3,1,10,6,0,0,425 -"7159",0,1,0,43,3,1,3,0,9,6,0,0,425 -"7160",0,1,1,55,1,1,3,1,9,6,0,0,425 -"7161",0,1,0,57,4,1,3,1,6,6,0,0,425 -"7162",0,1,0,39,2,1,3,0,9,6,1,0,425 -"7163",0,1,0,56,1,1,3,1,8,6,0,0,425 -"7164",0,1,1,59,2,1,4,1,5,5,0,0,426 -"7165",0,1,1,46,1,1,4,1,7,5,0,0,426 -"7166",0,1,1,51,2,1,4,0,10,5,0,0,426 -"7167",0,1,1,57,2,1,4,1,9,5,1,0,426 -"7168",0,1,0,59,3,1,4,1,9,5,0,0,426 -"7169",0,1,0,62,3,1,4,0,8,5,0,0,426 -"7170",1,1,0,63,2,1,4,0,8,5,1,0,426 -"7171",0,1,1,48,4,1,4,0,9,5,0,0,426 -"7172",0,1,1,51,2,1,4,1,8,5,0,0,426 -"7173",1,1,0,49,3,1,4,0,8,5,0,0,426 -"7174",1,1,1,46,5,1,4,0,6,5,0,0,426 -"7175",0,1,0,49,2,1,4,0,7,5,0,0,426 -"7176",0,0,0,45,4,1,4,0,8,5,0,0,426 -"7177",1,1,1,44,3,1,4,0,11,5,0,0,426 -"7178",0,1,1,35,2,1,4,1,6,5,1,0,426 -"7179",0,0,0,31,1,1,4,0,10,5,0,0,426 -"7180",1,1,0,46,2,1,3,1,9,5,0,0,427 -"7181",0,1,1,35,2,1,3,0,6,5,0,0,427 -"7182",0,1,0,31,3,1,3,0,9,5,1,0,427 -"7183",0,1,0,50,2,1,3,1,8,5,1,0,427 -"7184",0,1,0,30,2,1,3,1,9,5,0,0,427 -"7185",0,1,0,45,2,1,3,1,8,5,0,0,427 -"7186",0,1,1,36,2,1,3,1,6,5,0,0,427 -"7187",0,0,0,42,1,1,3,1,11,5,1,0,427 -"7188",0,1,0,53,3,1,3,1,8,5,0,0,427 -"7189",0,1,0,59,2,1,3,1,9,5,1,0,427 -"7190",0,1,0,53,3,1,3,0,9,5,0,0,427 -"7191",0,1,0,43,3,1,3,0,10,5,0,0,427 -"7192",0,1,0,46,2,1,3,1,2,5,0,0,427 -"7193",0,1,0,54,2,1,3,0,8,5,0,0,427 -"7194",0,1,0,55,1,1,3,1,6,5,1,0,427 -"7195",0,1,0,48,3,1,3,0,10,5,1,0,427 -"7196",0,1,0,41,1,1,3,1,8,5,1,0,427 -"7197",0,1,0,48,5,1,3,0,9,5,0,0,427 -"7198",0,1,1,40,3,1,3,1,6,5,0,0,427 -"7199",1,1,0,33,3,1,3,0,8,5,1,0,427 -"7200",1,1,1,49,2,1,3,0,6,5,0,0,427 -"7201",0,1,0,55,2,1,4,1,11,1,1,0,428 -"7202",0,1,0,44,4,1,4,0,11,1,1,0,428 -"7203",0,1,1,40,3,1,4,1,11,1,1,0,428 -"7204",0,1,0,60,2,1,4,1,12,1,1,0,428 -"7205",0,1,0,50,3,1,4,1,9,1,1,0,428 -"7206",0,1,1,45,3,1,4,1,13,1,1,0,428 -"7207",0,1,0,39,2,1,4,1,10,1,0,0,428 -"7208",0,0,0,49,5,1,4,1,12,1,1,0,428 -"7209",0,1,1,54,2,1,4,0,13,1,1,0,428 -"7210",0,1,0,64,2,1,4,1,10,1,1,0,428 -"7211",0,1,0,42,3,1,4,1,8,1,1,0,428 -"7212",0,1,1,69,1,1,4,0,10,1,1,0,428 -"7213",0,1,0,56,2,1,4,0,6,1,0,0,428 -"7214",0,1,0,53,1,1,4,1,13,1,1,0,428 -"7215",0,1,0,64,2,1,4,1,10,1,0,0,428 -"7216",0,1,0,47,2,1,4,0,12,1,1,0,428 -"7217",0,1,0,53,2,1,4,1,10,1,0,0,428 -"7218",0,1,1,49,3,1,4,1,12,1,1,0,428 -"7219",1,1,0,40,5,1,4,1,3,3,0,0,429 -"7220",1,0,1,45,3,1,4,0,13,3,1,0,429 -"7221",0,1,0,49,2,1,4,1,7,3,1,0,429 -"7222",0,1,1,24,3,1,4,1,8,3,0,0,429 -"7223",0,1,1,46,1,1,4,0,9,3,1,0,429 -"7224",0,1,1,48,2,1,4,0,9,3,0,0,429 -"7225",0,1,0,69,2,1,4,0,9,3,0,0,429 -"7226",0,1,1,38,2,1,4,0,9,3,1,0,429 -"7227",0,1,0,38,2,1,4,0,9,3,0,0,429 -"7228",0,1,0,47,2,1,4,0,10,3,0,0,429 -"7229",1,0,0,37,3,1,4,0,8,3,0,0,429 -"7230",0,1,0,52,2,1,4,0,8,3,0,0,429 -"7231",0,0,0,43,1,1,4,0,11,3,0,0,429 -"7232",0,1,0,44,3,1,4,1,7,3,0,0,429 -"7233",0,1,1,47,1,1,4,1,9,3,1,0,429 -"7234",0,1,0,43,3,1,4,0,5,3,0,0,429 -"7235",1,1,0,46,3,1,4,1,12,3,0,0,429 -"7236",0,1,0,26,2,1,4,1,5,3,0,0,429 -"7237",0,1,1,62,3,1,3,1,11,4,0,0,430 -"7238",0,1,1,58,2,1,3,0,7,4,1,0,430 -"7239",0,0,0,55,2,1,3,0,9,4,0,0,430 -"7240",0,0,0,57,3,1,3,0,9,4,1,0,430 -"7241",0,1,1,55,3,1,3,1,10,4,0,0,430 -"7242",0,1,1,53,2,1,3,1,12,4,0,0,430 -"7243",0,1,0,60,1,1,3,0,7,4,0,0,430 -"7244",0,1,0,39,3,1,3,1,9,4,0,0,430 -"7245",0,1,1,53,1,1,3,0,6,4,0,0,430 -"7246",0,1,1,56,2,1,3,1,10,4,1,0,430 -"7247",0,0,1,43,3,1,3,1,10,4,1,0,430 -"7248",0,1,1,48,2,1,3,1,11,4,0,0,430 -"7249",0,1,1,41,2,1,3,1,9,4,1,0,430 -"7250",0,1,1,53,1,1,3,0,7,4,1,0,430 -"7251",0,1,0,62,2,1,3,0,8,4,0,0,430 -"7252",0,1,1,55,3,1,3,1,4,4,0,0,430 -"7253",0,1,0,45,4,1,3,1,9,4,0,0,430 -"7254",1,1,1,57,2,1,3,0,6,4,0,0,430 -"7255",0,1,0,52,2,1,3,1,10,4,0,0,430 -"7256",1,0,0,48,1,1,3,0,8,4,0,0,430 -"7257",0,1,0,49,2,1,3,1,9,4,0,0,430 -"7258",0,1,0,47,1,1,3,0,10,4,1,0,430 -"7259",0,1,0,50,1,1,4,0,10,1,0,0,431 -"7260",1,0,1,60,5,1,4,0,12,1,1,0,431 -"7261",0,0,1,48,2,1,4,0,9,1,0,0,431 -"7262",0,1,1,53,3,1,4,1,7,1,1,0,431 -"7263",0,1,0,38,2,1,4,0,5,1,0,0,431 -"7264",0,1,1,62,2,1,4,0,12,1,1,0,431 -"7265",0,1,0,45,3,1,4,1,8,1,1,0,431 -"7266",1,0,1,33,2,1,4,1,10,1,0,0,431 -"7267",0,1,1,47,2,1,4,0,12,1,0,0,431 -"7268",1,1,0,62,1,1,4,0,9,1,0,0,431 -"7269",0,1,1,60,2,1,4,0,11,1,1,0,431 -"7270",0,1,0,58,1,1,4,1,10,1,0,0,431 -"7271",0,1,0,59,1,1,4,0,11,1,1,0,431 -"7272",0,1,0,42,1,1,4,1,9,1,0,0,431 -"7273",0,1,0,50,2,1,4,1,10,1,1,0,431 -"7274",0,1,0,50,3,1,4,1,13,1,1,0,431 -"7275",0,1,0,56,2,1,4,0,7,5,0,0,432 -"7276",1,1,0,40,2,1,4,0,5,5,0,0,432 -"7277",0,1,0,43,2,1,4,1,6,5,0,0,432 -"7278",0,1,0,52,1,1,4,1,8,5,0,0,432 -"7279",0,1,1,53,2,1,4,1,3,5,0,0,432 -"7280",0,1,0,49,1,1,4,0,9,5,0,0,432 -"7281",0,1,0,45,4,1,4,1,4,5,0,0,432 -"7282",0,1,1,43,1,1,4,0,9,5,0,0,432 -"7283",0,1,0,37,1,1,4,1,10,5,1,0,432 -"7284",0,1,0,49,1,1,4,0,9,5,0,0,432 -"7285",0,1,1,59,1,1,4,1,9,5,1,0,432 -"7286",0,1,1,46,2,1,4,1,9,5,0,0,432 -"7287",1,1,1,51,2,1,4,0,5,5,0,0,432 -"7288",0,1,0,50,1,1,4,1,6,5,0,0,432 -"7289",0,1,0,48,2,1,4,0,10,5,0,0,432 -"7290",0,0,1,39,1,1,4,0,10,5,0,0,432 -"7291",0,1,1,60,1,1,4,1,10,3,0,0,433 -"7292",0,1,1,57,2,1,4,1,10,3,1,0,433 -"7293",0,1,1,41,3,1,4,0,12,3,1,0,433 -"7294",1,1,0,37,3,1,4,0,8,3,0,0,433 -"7295",0,1,1,73,2,1,4,0,9,3,1,0,433 -"7296",0,1,0,66,2,1,4,1,12,3,1,0,433 -"7297",0,1,1,58,2,1,4,0,11,3,0,0,433 -"7298",0,1,1,50,1,1,4,1,5,3,0,0,433 -"7299",0,1,1,65,1,1,4,1,9,3,1,0,433 -"7300",1,0,0,41,5,1,4,0,12,3,0,0,433 -"7301",0,1,1,60,4,1,4,0,9,3,0,0,433 -"7302",0,1,0,70,3,1,4,1,12,3,1,0,433 -"7303",0,1,0,42,1,1,4,1,12,3,0,0,433 -"7304",0,1,0,57,2,1,4,1,11,3,1,0,433 -"7305",0,1,1,55,1,1,4,0,12,3,0,0,433 -"7306",1,0,1,41,5,1,4,0,11,3,0,0,433 -"7307",0,1,0,45,2,1,4,0,11,3,1,0,433 -"7308",1,1,1,36,2,1,4,0,11,3,0,0,433 -"7309",0,1,0,41,1,1,4,0,11,3,0,0,433 -"7310",0,1,1,57,1,1,4,1,12,3,1,0,433 -"7311",0,1,1,34,2,1,4,1,10,3,0,0,433 -"7312",0,1,1,55,2,1,4,1,12,3,0,0,433 -"7313",0,1,1,46,3,1,5,1,12,2,1,0,434 -"7314",0,1,0,24,3,1,5,0,12,2,1,0,434 -"7315",1,0,0,48,2,1,5,0,11,2,1,0,434 -"7316",1,1,1,78,2,1,5,0,8,2,1,0,434 -"7317",0,1,1,48,2,1,5,1,13,2,1,0,434 -"7318",1,1,1,62,5,1,5,0,7,2,1,0,434 -"7319",0,1,0,41,3,1,5,1,12,2,0,0,434 -"7320",0,1,0,48,4,1,5,0,13,2,1,0,434 -"7321",0,1,0,46,2,1,5,1,7,2,1,0,434 -"7322",0,1,1,57,2,1,5,0,12,2,0,0,434 -"7323",0,0,0,50,1,1,5,1,10,2,0,0,434 -"7324",0,1,0,59,5,1,5,1,10,2,0,0,434 -"7325",0,1,0,59,1,1,4,0,10,3,0,1,435 -"7326",0,1,0,72,2,1,4,0,12,3,1,1,435 -"7327",0,1,0,58,1,1,4,0,10,3,0,1,435 -"7328",0,1,0,58,1,1,4,0,10,3,0,1,435 -"7329",0,1,0,65,1,1,4,0,12,3,1,1,435 -"7330",0,1,0,51,3,1,4,1,13,3,1,1,435 -"7331",0,1,0,47,3,1,4,1,9,3,0,1,435 -"7332",0,1,1,61,4,1,4,0,8,3,0,1,435 -"7333",0,1,1,57,1,1,4,0,12,3,1,1,435 -"7334",0,1,1,52,3,1,4,1,11,3,1,1,435 -"7335",0,1,0,53,1,1,4,0,12,3,1,1,435 -"7336",0,1,1,56,3,1,4,1,9,3,0,1,435 -"7337",0,1,1,46,2,1,4,1,8,3,1,1,435 -"7338",0,1,0,51,2,1,4,0,12,3,1,1,435 -"7339",0,1,0,46,1,1,4,0,8,3,1,1,435 -"7340",0,1,0,41,2,1,3,1,10,7,0,0,436 -"7341",0,1,0,42,2,1,3,1,8,7,0,0,436 -"7342",0,1,1,37,1,1,3,0,2,7,0,0,436 -"7343",1,1,0,39,2,1,3,1,4,7,0,0,436 -"7344",0,1,0,34,5,1,3,1,5,7,0,0,436 -"7345",1,1,1,34,2,1,3,1,4,7,0,0,436 -"7346",1,1,0,31,3,1,3,0,8,7,0,0,436 -"7347",0,1,0,43,1,1,3,0,6,7,0,0,436 -"7348",0,1,0,36,3,1,3,1,5,7,0,0,436 -"7349",1,1,0,43,2,1,3,0,1,7,1,0,436 -"7350",0,1,0,45,3,1,3,1,8,7,0,0,436 -"7351",0,1,1,32,4,1,3,1,5,7,0,0,436 -"7352",1,1,0,39,3,1,3,0,7,7,0,0,436 -"7353",0,1,0,37,2,1,3,1,3,7,0,0,437 -"7354",0,1,0,45,3,1,3,0,6,7,0,0,437 -"7355",0,1,1,41,1,1,3,0,10,7,1,0,437 -"7356",0,1,1,44,3,1,3,1,9,7,0,0,437 -"7357",0,1,0,49,3,1,3,0,9,7,0,0,437 -"7358",0,0,0,35,2,1,3,0,6,7,0,0,437 -"7359",0,1,0,39,1,1,3,1,8,7,1,0,437 -"7360",0,0,0,40,1,1,3,1,9,7,0,0,437 -"7361",0,1,1,44,1,1,3,1,6,7,0,0,437 -"7362",0,1,0,34,5,1,3,1,6,7,0,0,437 -"7363",1,1,0,43,5,1,3,1,3,7,0,0,437 -"7364",0,1,0,43,3,1,3,1,10,7,1,0,437 -"7365",0,1,0,39,1,1,3,0,7,7,1,0,437 -"7366",0,1,0,43,5,1,3,1,7,7,1,0,437 -"7367",0,0,0,42,2,1,3,0,12,7,1,0,437 -"7368",0,1,0,42,3,1,3,1,5,7,0,0,437 -"7369",0,1,0,40,2,1,3,1,6,7,0,0,437 -"7370",0,1,0,65,1,1,2,1,10,5,0,0,438 -"7371",1,1,1,44,2,1,2,0,10,5,0,0,438 -"7372",0,0,0,40,1,1,2,1,5,5,0,0,438 -"7373",0,1,1,55,2,1,2,1,8,5,0,0,438 -"7374",0,1,1,47,1,1,2,0,10,5,0,0,438 -"7375",1,0,1,37,5,1,2,0,9,5,0,0,438 -"7376",0,1,0,52,3,1,2,0,6,5,0,0,438 -"7377",0,1,1,59,1,1,2,1,12,5,1,0,438 -"7378",0,1,0,49,3,1,2,1,8,5,0,0,438 -"7379",0,1,0,31,1,1,2,1,5,5,0,0,438 -"7380",0,1,0,45,3,1,2,1,10,5,1,0,438 -"7381",0,1,1,55,1,1,2,1,9,5,0,0,438 -"7382",1,1,0,47,5,1,2,0,7,5,0,0,438 -"7383",0,0,1,47,5,1,2,0,10,5,1,0,438 -"7384",0,1,0,53,2,1,2,1,9,5,0,0,438 -"7385",0,1,1,34,3,1,2,0,7,5,0,0,438 -"7386",0,0,0,52,3,1,5,0,9,1,1,0,439 -"7387",0,1,0,61,2,1,5,1,10,1,1,0,439 -"7388",0,1,0,49,3,1,5,1,5,1,0,0,439 -"7389",0,1,0,59,1,1,5,0,12,1,1,0,439 -"7390",0,1,0,66,2,1,5,1,12,1,1,0,439 -"7391",0,1,1,54,2,1,5,0,12,1,1,0,439 -"7392",0,1,1,65,2,1,5,1,11,1,1,0,439 -"7393",0,1,0,64,3,1,5,0,11,1,1,0,439 -"7394",0,1,0,51,4,1,5,0,10,1,1,0,439 -"7395",0,1,0,52,2,1,5,1,10,1,1,0,439 -"7396",0,1,0,62,1,1,5,0,11,1,1,0,439 -"7397",0,1,0,62,2,1,5,0,11,1,1,0,439 -"7398",0,1,0,50,1,1,5,1,8,1,1,0,439 -"7399",0,1,0,59,1,1,5,1,12,1,0,0,439 -"7400",1,0,1,49,3,1,5,1,10,1,0,0,439 -"7401",0,1,0,54,1,1,5,1,11,1,1,0,439 -"7402",0,1,0,49,2,1,5,1,11,1,0,0,439 -"7403",0,1,0,45,2,1,4,1,6,5,0,0,440 -"7404",1,1,1,66,1,1,4,0,9,5,1,0,440 -"7405",0,0,0,49,5,1,4,0,2,5,0,0,440 -"7406",0,1,0,48,2,1,4,1,6,5,0,0,440 -"7407",0,1,0,48,2,1,4,1,9,5,1,0,440 -"7408",0,1,1,47,2,1,4,1,7,5,0,0,440 -"7409",0,1,0,61,1,1,4,0,8,5,0,0,440 -"7410",0,1,0,54,2,1,4,1,7,5,0,0,440 -"7411",0,0,0,68,4,1,4,0,10,5,1,0,440 -"7412",0,1,0,32,2,1,4,0,11,5,0,0,440 -"7413",0,1,0,57,2,1,4,0,13,5,1,0,440 -"7414",0,1,1,50,1,1,5,0,10,1,0,1,441 -"7415",0,1,0,70,1,1,5,0,11,1,1,1,441 -"7416",0,1,0,45,1,1,5,0,9,1,1,1,441 -"7417",0,1,1,41,3,1,5,1,11,1,0,1,441 -"7418",0,1,0,62,1,1,5,0,10,1,0,1,441 -"7419",0,1,0,63,1,1,5,1,9,1,0,1,441 -"7420",0,1,1,70,1,1,5,0,9,1,1,1,441 -"7421",0,1,1,52,1,1,5,1,9,1,0,1,441 -"7422",0,1,1,55,1,1,5,0,11,1,0,1,441 -"7423",0,1,0,57,3,1,5,1,11,1,0,1,441 -"7424",0,1,0,58,1,1,5,0,9,1,0,1,441 -"7425",0,1,1,52,1,1,5,1,10,1,0,1,441 -"7426",0,1,1,60,1,1,5,1,9,1,1,1,441 -"7427",0,1,1,53,2,1,5,1,9,1,1,1,441 -"7428",0,1,0,49,1,1,5,1,6,1,1,1,441 -"7429",0,1,0,57,1,1,5,1,13,1,1,1,441 -"7430",0,1,0,55,1,1,5,0,10,1,0,1,441 -"7431",0,1,1,42,1,1,5,1,10,1,0,1,441 -"7432",0,0,0,42,2,1,5,0,9,1,1,1,441 -"7433",0,1,0,47,2,1,5,1,6,1,0,1,441 -"7434",0,1,1,48,1,1,5,1,9,1,0,1,441 -"7435",0,1,0,48,1,1,5,1,9,1,0,1,441 -"7436",0,0,1,49,2,1,5,0,10,1,1,1,441 -"7437",1,0,0,42,2,1,5,0,7,1,0,1,441 -"7438",0,1,0,54,1,1,4,0,12,7,1,0,442 -"7439",0,0,0,52,3,1,4,0,8,7,0,0,442 -"7440",0,1,1,47,3,1,4,1,10,7,1,0,442 -"7441",0,1,0,48,1,1,4,1,9,7,0,0,442 -"7442",0,1,1,58,2,1,4,0,2,7,0,0,442 -"7443",0,1,0,31,1,1,4,1,13,7,0,0,442 -"7444",1,1,1,46,2,1,4,0,9,7,0,0,442 -"7445",0,1,0,52,2,1,4,1,6,7,0,0,442 -"7446",0,1,0,51,3,1,4,1,10,7,0,0,442 -"7447",0,1,0,62,1,1,4,1,9,7,0,0,442 -"7448",1,0,1,25,3,1,4,0,11,7,0,0,442 -"7449",0,1,1,39,2,1,4,1,11,7,1,0,442 -"7450",0,1,0,50,2,1,4,0,10,7,1,0,442 -"7451",1,0,0,43,5,1,4,1,9,7,0,0,442 -"7452",1,1,0,36,2,1,4,1,4,7,0,0,442 -"7453",0,1,0,46,2,1,5,0,12,1,1,0,443 -"7454",0,1,0,61,1,1,5,1,9,1,1,0,443 -"7455",0,1,0,39,1,1,5,0,12,1,1,0,443 -"7456",1,1,1,60,1,1,5,0,8,1,1,0,443 -"7457",0,1,0,62,1,1,5,1,9,1,1,0,443 -"7458",0,0,1,47,1,1,5,0,11,1,1,0,443 -"7459",0,1,0,68,3,1,5,0,11,1,1,0,443 -"7460",0,1,0,60,1,1,5,1,9,1,1,0,443 -"7461",0,1,0,61,2,1,5,1,13,1,1,0,443 -"7462",0,0,0,51,2,1,5,0,12,1,1,0,443 -"7463",1,1,1,46,3,1,5,0,8,1,0,0,443 -"7464",0,1,0,68,5,1,5,1,10,1,1,0,443 -"7465",0,1,0,43,3,1,5,1,8,1,0,0,443 -"7466",0,1,1,64,2,1,5,1,12,1,1,0,443 -"7467",0,1,0,64,2,1,5,1,12,1,1,0,443 -"7468",1,1,0,54,5,1,5,0,12,1,1,0,443 -"7469",0,1,0,48,1,1,5,0,11,1,1,0,443 -"7470",0,1,0,64,2,1,5,0,10,1,1,0,443 -"7471",0,1,0,68,2,1,5,0,10,1,1,0,443 -"7472",0,1,1,49,2,1,5,0,10,1,1,0,443 -"7473",0,1,1,72,2,1,5,0,12,1,1,0,443 -"7474",0,1,1,45,5,1,5,1,4,1,0,0,443 -"7475",0,1,1,43,2,1,5,0,9,1,1,0,443 -"7476",0,1,1,52,3,1,5,1,12,1,1,0,443 -"7477",0,1,0,67,2,1,5,1,11,1,1,0,443 -"7478",0,1,1,64,2,1,5,0,8,1,1,0,443 -"7479",0,1,0,48,2,1,5,1,12,1,1,0,443 -"7480",0,0,0,58,2,1,5,1,12,1,1,0,443 -"7481",0,1,0,51,3,1,3,0,8,3,0,0,444 -"7482",0,1,1,47,3,1,3,1,10,3,1,0,444 -"7483",0,1,1,51,2,1,3,0,11,3,0,0,444 -"7484",0,0,1,41,2,1,3,1,3,3,0,0,444 -"7485",0,1,0,34,3,1,3,1,7,3,0,0,444 -"7486",0,0,1,60,2,1,3,1,10,3,0,0,444 -"7487",0,1,1,46,4,1,3,1,6,3,0,0,444 -"7488",0,1,1,44,2,1,3,1,8,3,0,0,444 -"7489",1,1,1,48,2,1,3,1,12,3,0,0,444 -"7490",0,1,0,53,2,1,3,0,7,3,0,0,444 -"7491",0,1,1,46,2,1,3,1,10,3,0,0,444 -"7492",0,1,1,65,2,1,3,0,9,3,0,0,444 -"7493",0,1,1,41,2,1,3,1,10,3,0,0,444 -"7494",1,0,1,41,2,1,3,0,7,3,0,0,444 -"7495",0,1,0,47,2,1,3,1,9,3,0,0,444 -"7496",0,1,0,50,3,1,4,0,10,5,1,0,445 -"7497",0,1,0,60,3,1,4,1,10,5,1,0,445 -"7498",0,1,0,65,3,1,4,1,11,5,0,0,445 -"7499",0,1,0,57,3,1,4,1,7,5,0,0,445 -"7500",0,1,0,61,3,1,4,1,9,5,0,0,445 -"7501",1,1,1,62,1,1,4,0,8,5,0,0,445 -"7502",0,1,1,53,5,1,4,0,8,5,0,0,445 -"7503",0,1,0,61,1,1,4,0,5,5,1,0,445 -"7504",0,1,0,56,5,1,4,0,2,5,1,0,445 -"7505",0,1,0,49,1,1,4,0,5,5,0,0,445 -"7506",0,1,0,66,1,1,4,0,9,5,0,0,445 -"7507",0,1,1,48,4,1,4,0,8,5,0,0,445 -"7508",0,1,0,45,5,1,4,1,9,5,0,0,445 -"7509",0,1,0,59,2,1,4,0,8,5,0,0,445 -"7510",0,1,0,52,3,1,4,1,8,5,0,0,445 -"7511",0,1,0,52,5,1,4,1,9,5,1,0,445 -"7512",1,1,0,52,5,1,4,0,5,5,0,0,445 -"7513",0,1,0,50,1,1,4,1,12,5,1,0,445 -"7514",0,1,0,52,4,1,4,0,7,5,0,0,445 -"7515",0,1,1,52,2,1,3,1,5,4,0,0,446 -"7516",0,1,1,45,2,1,3,1,11,4,1,0,446 -"7517",0,1,1,48,4,1,3,0,10,4,0,0,446 -"7518",0,1,0,30,1,1,3,1,8,4,0,0,446 -"7519",0,1,1,62,1,1,3,0,8,4,0,0,446 -"7520",0,1,0,56,5,1,3,0,11,4,1,0,446 -"7521",1,1,0,54,5,1,3,1,8,4,0,0,446 -"7522",0,1,1,55,2,1,3,0,9,4,1,0,446 -"7523",0,0,1,60,4,1,3,1,10,4,0,0,446 -"7524",0,1,0,60,3,1,3,1,7,4,0,0,446 -"7525",0,1,0,62,5,1,3,0,10,4,1,0,446 -"7526",0,1,1,63,3,1,3,1,10,4,0,0,446 -"7527",0,0,1,45,3,1,3,1,10,4,0,0,446 -"7528",0,1,0,60,2,1,3,1,7,4,0,0,446 -"7529",0,1,0,54,3,1,3,1,13,4,1,0,446 -"7530",0,1,1,51,1,1,3,0,9,4,0,0,446 -"7531",0,1,1,51,1,1,3,0,3,4,0,0,446 -"7532",0,1,0,58,2,1,3,1,11,4,0,0,446 -"7533",0,1,0,55,3,1,3,0,13,4,1,0,446 -"7534",0,0,1,54,2,1,3,0,11,2,1,0,447 -"7535",0,1,1,46,2,1,3,1,4,2,0,0,447 -"7536",0,1,0,53,1,1,3,1,8,2,0,0,447 -"7537",0,1,1,53,2,1,3,0,9,2,0,0,447 -"7538",0,1,0,68,1,1,3,0,11,2,1,0,447 -"7539",0,1,0,49,1,1,3,0,10,2,1,0,447 -"7540",0,1,1,46,3,1,3,0,11,2,0,0,447 -"7541",0,1,1,30,2,1,3,1,9,2,1,0,447 -"7542",0,1,0,50,2,1,3,1,10,2,0,0,447 -"7543",0,1,0,48,1,1,3,1,8,2,0,0,447 -"7544",0,0,1,58,1,1,3,0,9,2,0,0,447 -"7545",0,1,0,58,2,1,3,1,10,2,0,0,447 -"7546",0,1,1,58,1,1,3,0,7,2,0,0,447 -"7547",0,1,1,59,2,1,3,0,10,2,1,0,447 -"7548",0,1,0,60,2,1,3,1,13,2,0,0,447 -"7549",0,1,1,48,2,1,3,1,5,2,0,0,447 -"7550",0,1,1,44,1,1,3,1,10,2,0,0,447 -"7551",0,1,0,43,1,1,3,1,6,2,0,0,447 -"7552",0,1,1,54,2,1,3,0,6,2,0,0,447 -"7553",0,1,0,50,2,1,3,1,9,2,0,0,447 -"7554",0,1,0,54,2,1,5,1,10,1,1,0,448 -"7555",0,1,1,59,1,1,5,0,8,1,1,0,448 -"7556",0,1,0,61,1,1,5,1,8,1,0,0,448 -"7557",0,1,1,61,1,1,5,1,12,1,1,0,448 -"7558",0,1,0,70,1,1,5,0,12,1,1,0,448 -"7559",0,1,1,45,3,1,5,1,9,1,1,0,448 -"7560",0,1,1,39,2,1,5,0,11,1,0,0,448 -"7561",0,1,1,57,1,1,5,1,12,1,1,0,448 -"7562",1,1,0,54,3,1,5,0,12,1,1,0,448 -"7563",1,1,0,64,1,1,5,0,9,1,0,0,448 -"7564",0,1,0,52,3,1,5,1,11,1,1,0,448 -"7565",0,1,1,61,2,1,5,0,10,1,0,0,448 -"7566",0,1,1,64,2,1,5,1,11,1,1,0,448 -"7567",0,0,1,61,1,1,5,1,10,1,1,0,448 -"7568",0,1,1,56,2,1,5,0,9,1,0,0,448 -"7569",0,0,1,52,2,1,5,1,9,1,0,0,448 -"7570",0,1,0,52,1,1,5,1,11,1,0,0,448 -"7571",0,1,1,63,2,1,5,1,10,1,0,0,448 -"7572",0,1,1,61,5,1,5,0,12,1,1,0,448 -"7573",0,1,0,52,1,1,5,1,10,1,1,0,448 -"7574",0,1,1,47,2,1,5,1,12,1,1,0,448 -"7575",0,1,1,69,1,1,5,0,11,1,1,0,448 -"7576",0,1,1,57,1,1,5,0,10,1,0,0,448 -"7577",1,1,1,44,3,1,5,1,10,1,1,0,448 -"7578",1,0,1,51,2,1,5,1,11,1,0,0,448 -"7579",1,1,1,56,4,1,5,0,12,1,0,0,448 -"7580",0,1,0,61,2,1,5,0,11,1,0,0,448 -"7581",1,0,0,40,2,1,5,0,9,1,0,0,448 -"7582",1,0,0,59,5,1,5,1,9,1,1,0,448 -"7583",1,0,1,58,3,1,5,0,10,1,0,0,448 -"7584",0,1,0,38,3,1,5,1,8,1,0,0,449 -"7585",0,1,1,52,3,1,5,1,7,1,1,0,449 -"7586",0,1,0,53,1,1,5,0,8,1,0,0,449 -"7587",0,0,0,50,3,1,5,1,7,1,0,0,449 -"7588",0,1,0,63,2,1,5,1,10,1,0,0,449 -"7589",0,1,1,56,2,1,5,1,10,1,0,0,449 -"7590",0,1,0,54,4,1,5,1,12,1,1,0,449 -"7591",0,1,0,57,4,1,5,1,8,1,1,0,449 -"7592",0,1,0,64,1,1,5,0,12,1,1,0,449 -"7593",0,1,1,50,1,1,5,1,11,1,1,0,449 -"7594",0,1,0,42,2,1,5,0,13,1,1,0,449 -"7595",0,1,0,60,2,1,5,1,8,1,0,0,449 -"7596",0,1,0,70,1,1,5,0,10,1,1,0,449 -"7597",0,1,1,60,2,1,5,0,11,1,0,0,449 -"7598",0,0,0,46,2,1,5,0,8,1,1,0,449 -"7599",0,1,0,62,2,1,5,1,11,1,1,0,449 -"7600",0,1,0,56,1,1,5,1,9,1,0,0,449 -"7601",0,1,0,63,4,1,5,1,12,1,1,0,449 -"7602",0,1,0,62,2,1,5,1,13,1,1,0,449 -"7603",0,1,0,49,2,1,5,1,10,1,1,0,449 -"7604",0,1,0,50,2,1,5,0,10,1,0,0,449 -"7605",0,1,1,42,1,1,5,1,9,1,0,0,449 -"7606",0,1,0,64,2,1,5,0,12,1,1,0,449 -"7607",0,1,1,45,1,1,5,1,9,1,0,0,449 -"7608",1,0,0,33,2,1,5,1,9,1,0,0,449 -"7609",0,1,1,56,2,1,5,0,5,1,0,0,449 -"7610",0,0,1,57,2,1,5,1,9,1,0,0,449 -"7611",0,1,0,58,1,1,5,0,11,1,0,0,449 -"7612",0,1,0,58,2,1,2,1,8,1,0,0,450 -"7613",0,1,0,42,4,1,2,1,9,1,1,0,450 -"7614",0,0,0,42,1,1,2,0,9,1,0,0,450 -"7615",0,1,0,41,3,1,2,0,5,1,0,0,450 -"7616",0,1,1,78,2,1,2,1,13,1,1,0,450 -"7617",0,1,1,45,2,1,2,1,10,1,1,0,450 -"7618",0,0,0,60,3,1,2,1,11,1,0,0,450 -"7619",0,1,0,55,4,1,2,1,8,1,1,0,450 -"7620",0,1,0,70,1,1,2,0,10,1,1,0,450 -"7621",0,1,0,53,3,1,2,1,10,1,1,0,450 -"7622",0,1,1,43,2,1,2,1,11,1,1,0,450 -"7623",0,1,0,60,4,1,2,1,11,1,1,0,450 -"7624",0,1,0,52,2,1,2,0,8,1,0,0,450 -"7625",0,1,0,71,2,1,2,1,13,1,1,0,450 -"7626",0,1,0,66,1,1,2,0,11,1,1,0,450 -"7627",0,1,0,69,1,1,2,0,11,1,1,0,450 -"7628",0,1,1,67,2,1,2,0,12,1,1,0,450 -"7629",0,1,0,45,2,1,2,0,10,1,1,0,450 -"7630",0,1,1,59,2,1,4,1,9,2,1,1,451 -"7631",0,1,1,34,1,1,4,1,10,2,1,1,451 -"7632",0,1,1,57,1,1,4,1,11,2,0,1,451 -"7633",0,1,0,62,2,1,4,0,12,2,1,1,451 -"7634",0,1,1,44,1,1,4,1,8,2,1,1,451 -"7635",0,1,0,60,3,1,4,1,12,2,0,1,451 -"7636",0,1,0,58,2,1,4,1,10,2,1,1,451 -"7637",0,1,0,44,3,1,4,0,9,2,0,1,451 -"7638",0,1,1,41,2,1,4,0,11,2,1,1,451 -"7639",0,0,0,58,1,1,4,0,12,2,1,1,451 -"7640",1,1,0,38,3,1,4,0,8,2,0,1,451 -"7641",0,1,1,57,3,1,4,1,10,2,1,1,451 -"7642",0,1,0,62,1,1,4,1,10,2,0,1,451 -"7643",0,0,1,56,3,1,4,0,12,2,1,1,451 -"7644",0,1,0,44,1,1,4,1,10,2,0,1,451 -"7645",0,1,0,60,2,1,4,1,9,2,1,1,451 -"7646",0,1,1,49,1,1,4,1,9,2,0,1,451 -"7647",0,1,1,45,1,1,4,1,6,2,0,1,451 -"7648",1,1,0,28,3,1,4,0,9,2,1,1,451 -"7649",0,1,1,46,2,1,4,1,9,2,0,1,451 -"7650",0,1,1,55,3,1,4,0,11,2,1,1,451 -"7651",0,1,1,54,2,1,4,1,10,2,0,1,451 -"7652",0,1,1,61,2,1,4,0,10,2,1,1,451 -"7653",0,1,0,68,1,1,4,1,10,2,1,1,451 -"7654",0,0,1,31,2,1,4,0,12,2,1,1,451 -"7655",1,1,0,49,4,1,4,1,8,4,0,0,452 -"7656",0,1,0,57,1,1,4,1,10,4,1,0,452 -"7657",0,0,0,38,1,1,4,0,10,4,0,0,452 -"7658",0,1,0,55,2,1,4,1,5,4,0,0,452 -"7659",0,1,0,52,2,1,4,0,10,4,0,0,452 -"7660",0,1,1,56,1,1,4,0,10,4,1,0,452 -"7661",0,1,0,60,1,1,4,0,11,4,1,0,452 -"7662",0,1,0,62,1,1,4,0,11,4,0,0,452 -"7663",0,1,0,50,3,1,4,1,11,4,0,0,452 -"7664",1,0,0,48,3,1,4,0,10,4,0,0,452 -"7665",0,1,0,55,3,1,4,1,10,4,1,0,452 -"7666",0,1,1,45,1,1,4,0,8,4,0,0,452 -"7667",0,1,1,48,3,1,4,1,11,4,0,0,452 -"7668",0,1,0,51,2,1,4,1,8,4,0,0,452 -"7669",0,1,0,61,2,1,4,1,10,4,1,0,452 -"7670",1,1,1,52,1,1,4,1,11,4,0,0,452 -"7671",0,1,0,63,2,1,4,1,9,4,1,0,452 -"7672",0,1,0,28,2,1,4,1,10,4,0,0,452 -"7673",0,1,0,36,1,1,4,1,8,4,0,0,452 -"7674",1,1,1,51,2,1,3,0,3,2,0,0,453 -"7675",0,1,0,59,2,1,3,1,12,2,1,0,453 -"7676",0,1,1,70,2,1,3,1,9,2,0,0,453 -"7677",0,1,1,55,1,1,3,0,12,2,1,0,453 -"7678",0,1,1,68,2,1,3,0,8,2,0,0,453 -"7679",0,1,0,41,2,1,3,1,10,2,1,0,453 -"7680",0,1,0,69,1,1,3,1,11,2,0,0,453 -"7681",0,1,1,54,3,1,3,1,7,2,0,0,453 -"7682",0,1,0,45,2,1,3,1,8,2,0,0,453 -"7683",0,0,0,51,3,1,3,1,5,5,0,0,454 -"7684",0,1,1,57,2,1,3,1,9,5,0,0,454 -"7685",0,1,1,52,3,1,3,0,8,5,0,0,454 -"7686",0,0,0,55,3,1,3,0,10,5,1,0,454 -"7687",0,0,1,51,1,1,3,1,3,5,0,0,454 -"7688",0,1,1,51,2,1,3,0,5,5,0,0,454 -"7689",0,1,0,63,2,1,3,0,9,5,1,0,454 -"7690",0,1,0,46,2,1,3,0,7,5,0,0,454 -"7691",0,0,0,51,2,1,3,0,8,5,0,0,454 -"7692",0,1,1,62,3,1,4,0,12,2,1,0,455 -"7693",0,1,1,58,3,1,4,0,12,2,1,0,455 -"7694",0,1,0,72,2,1,4,0,10,2,1,0,455 -"7695",0,1,0,49,2,1,4,1,12,2,1,0,455 -"7696",0,1,0,60,2,1,4,1,8,2,0,0,455 -"7697",1,1,1,33,3,1,4,1,10,2,1,0,455 -"7698",0,1,0,47,1,1,4,1,8,2,0,0,455 -"7699",0,1,0,51,3,1,4,1,10,2,0,0,455 -"7700",0,0,0,52,3,1,4,0,6,2,1,0,455 -"7701",0,1,1,61,3,1,4,1,12,2,1,0,455 -"7702",0,1,1,40,1,1,4,0,6,2,0,0,455 -"7703",0,1,0,45,3,1,4,1,8,2,0,0,455 -"7704",0,1,1,65,3,1,4,0,10,2,0,0,455 -"7705",0,1,0,70,2,1,4,1,12,2,1,0,455 -"7706",1,0,0,57,1,1,4,0,11,2,1,0,455 -"7707",1,1,1,64,2,1,4,0,8,2,1,0,455 -"7708",0,1,1,60,2,1,3,0,11,1,0,1,456 -"7709",0,1,0,54,1,1,3,0,8,1,0,1,456 -"7710",0,1,1,48,2,1,3,1,5,1,1,1,456 -"7711",0,1,0,51,2,1,3,1,10,1,0,1,456 -"7712",0,1,0,52,2,1,3,1,10,1,0,1,456 -"7713",0,1,1,52,1,1,3,0,11,1,1,1,456 -"7714",0,1,1,57,1,1,3,0,11,1,0,1,456 -"7715",0,1,0,47,2,1,3,1,9,1,0,1,456 -"7716",0,1,1,56,2,1,3,0,10,1,0,1,456 -"7717",1,0,1,49,2,1,3,0,11,1,0,1,456 -"7718",0,1,0,40,2,1,3,0,10,1,0,1,456 -"7719",0,1,1,42,1,1,3,1,9,1,1,1,456 -"7720",0,1,0,49,3,1,3,0,9,1,0,1,456 -"7721",0,1,1,50,2,1,3,1,8,1,0,1,456 -"7722",0,1,1,54,3,1,3,1,11,1,1,1,456 -"7723",0,1,0,48,1,1,3,1,13,1,0,1,456 -"7724",0,1,0,55,2,1,3,0,10,1,0,1,456 -"7725",0,0,0,48,5,1,3,1,10,1,0,1,456 -"7726",1,1,0,54,3,1,3,0,11,1,1,1,456 -"7727",0,1,1,63,5,1,3,0,11,1,1,1,456 -"7728",0,1,1,62,2,1,5,0,11,3,1,0,457 -"7729",0,1,0,50,1,1,5,1,10,3,0,0,457 -"7730",0,1,1,37,1,1,5,0,9,3,0,0,457 -"7731",0,1,1,48,1,1,5,1,10,3,0,0,457 -"7732",0,1,1,37,3,1,5,1,8,3,0,0,457 -"7733",0,1,1,53,1,1,5,1,7,3,0,0,457 -"7734",0,1,0,52,2,1,5,1,10,3,0,0,457 -"7735",0,0,1,47,3,1,5,0,8,3,0,0,457 -"7736",0,1,1,52,1,1,5,1,11,3,0,0,457 -"7737",0,1,0,56,2,1,5,0,11,3,0,0,457 -"7738",0,1,0,61,3,1,5,1,12,3,1,0,457 -"7739",0,1,0,60,1,1,5,0,12,3,1,0,457 -"7740",1,1,1,51,5,1,5,0,9,3,0,0,457 -"7741",0,0,0,35,1,1,5,1,12,3,1,0,457 -"7742",0,0,1,64,2,1,5,0,9,3,1,0,457 -"7743",0,1,0,64,3,1,5,1,10,3,1,0,457 -"7744",0,1,1,47,3,1,5,1,9,3,1,0,457 -"7745",1,1,1,57,3,1,5,0,10,3,0,0,457 -"7746",1,0,0,46,3,1,5,0,11,3,0,0,457 -"7747",1,1,1,52,1,1,5,0,10,3,0,0,457 -"7748",0,1,0,55,1,1,5,0,12,3,1,0,457 -"7749",0,1,1,41,2,1,5,0,9,3,0,0,457 -"7750",0,1,1,61,3,1,5,1,13,6,1,1,458 -"7751",1,1,0,42,3,1,5,0,10,6,0,1,458 -"7752",0,1,0,47,2,1,5,1,11,6,0,1,458 -"7753",0,0,1,40,3,1,5,1,12,6,0,1,458 -"7754",0,1,0,58,2,1,5,0,8,6,1,1,458 -"7755",0,1,0,60,1,1,5,1,11,6,1,1,458 -"7756",0,1,0,58,3,1,5,1,12,6,1,1,458 -"7757",0,1,0,51,2,1,5,1,12,6,1,1,458 -"7758",0,1,1,54,4,1,5,1,10,6,0,1,458 -"7759",0,1,1,61,1,1,5,0,9,6,0,1,458 -"7760",0,0,0,58,1,1,5,1,11,6,1,1,458 -"7761",0,1,1,62,1,1,5,0,12,6,1,1,458 -"7762",0,1,1,52,3,1,5,1,11,6,0,1,458 -"7763",0,1,0,64,1,1,5,0,13,6,1,1,458 -"7764",1,1,0,51,3,1,5,0,10,6,1,1,458 -"7765",1,0,0,43,3,1,5,0,11,6,0,1,458 -"7766",0,1,1,60,3,1,5,1,9,6,1,1,458 -"7767",0,1,0,59,3,1,5,0,10,2,0,0,459 -"7768",0,1,0,50,1,1,5,0,9,2,0,0,459 -"7769",0,1,0,45,2,1,5,1,10,2,0,0,459 -"7770",1,1,0,57,3,1,5,0,10,2,0,0,459 -"7771",0,1,0,39,1,1,5,0,10,2,1,0,459 -"7772",0,1,0,54,2,1,5,0,9,2,0,0,459 -"7773",0,1,0,56,2,1,5,1,12,2,1,0,459 -"7774",0,1,0,46,2,1,5,1,12,2,1,0,459 -"7775",0,1,1,57,1,1,5,0,9,2,0,0,459 -"7776",0,1,0,56,3,1,5,1,9,2,1,0,459 -"7777",0,1,0,50,1,1,5,0,8,2,0,0,459 -"7778",0,1,1,40,2,1,5,1,10,2,0,0,459 -"7779",0,1,1,38,2,1,5,1,7,2,1,0,459 -"7780",1,1,1,63,5,1,5,0,6,2,0,0,459 -"7781",0,1,0,56,1,1,5,1,11,2,0,0,459 -"7782",0,0,0,47,5,1,5,0,7,2,0,0,459 -"7783",0,1,1,46,2,1,5,0,10,2,1,0,459 -"7784",0,1,1,58,2,1,5,1,14,2,1,0,459 -"7785",0,1,0,52,1,1,5,1,11,2,0,0,459 -"7786",0,1,1,72,2,1,5,0,10,2,1,0,459 -"7787",1,1,1,49,3,1,5,0,7,2,0,0,459 -"7788",0,1,0,55,3,1,4,0,11,3,1,1,460 -"7789",0,1,0,53,3,1,4,0,8,3,1,1,460 -"7790",0,1,0,58,2,1,4,0,8,3,0,1,460 -"7791",0,1,0,59,1,1,4,1,10,3,1,1,460 -"7792",0,1,0,58,5,1,4,1,13,3,1,1,460 -"7793",0,1,1,58,4,1,4,1,12,3,1,1,460 -"7794",1,0,1,61,3,1,4,0,9,3,1,1,460 -"7795",0,1,1,54,1,1,4,1,11,3,1,1,460 -"7796",0,1,1,59,2,1,4,1,10,3,1,1,460 -"7797",0,1,0,40,2,1,4,1,10,3,0,1,460 -"7798",1,0,1,65,5,1,4,0,13,3,1,1,460 -"7799",0,1,0,61,5,1,4,1,11,3,1,1,460 -"7800",0,1,0,47,3,1,4,1,9,3,0,1,460 -"7801",0,1,0,55,4,1,4,0,8,3,0,1,460 -"7802",0,1,1,56,3,1,4,0,10,3,1,1,460 -"7803",0,1,1,59,3,1,4,1,10,3,0,1,460 -"7804",0,1,1,56,3,1,4,0,12,3,1,1,460 -"7805",1,1,0,50,1,1,4,1,11,3,1,1,460 -"7806",0,1,0,42,3,1,4,1,11,2,0,0,461 -"7807",0,1,0,65,3,1,4,1,10,2,0,0,461 -"7808",1,0,0,47,5,1,4,0,9,2,1,0,461 -"7809",0,1,1,60,2,1,4,0,10,2,0,0,461 -"7810",0,1,1,49,1,1,4,0,12,2,1,0,461 -"7811",1,1,0,53,1,1,4,1,9,2,0,0,461 -"7812",0,1,0,64,2,1,4,0,12,2,1,0,461 -"7813",1,0,1,31,2,1,4,0,8,2,1,0,461 -"7814",0,1,1,61,3,1,4,0,9,2,0,0,461 -"7815",1,0,0,37,2,1,4,0,4,2,0,0,461 -"7816",1,1,1,43,2,1,4,0,2,2,0,0,461 -"7817",0,1,0,62,2,1,4,0,11,2,1,0,461 -"7818",0,1,0,53,1,1,4,1,9,2,0,0,461 -"7819",0,1,1,49,2,1,4,1,10,2,0,0,461 -"7820",0,1,0,45,1,1,4,0,10,2,0,0,461 -"7821",0,1,1,50,2,1,4,0,12,2,1,0,461 -"7822",0,1,0,60,2,1,4,1,12,2,1,0,461 -"7823",0,1,0,61,2,1,4,1,8,2,0,0,461 -"7824",1,0,0,32,3,1,4,1,7,2,0,0,461 -"7825",0,1,0,56,1,1,4,0,6,2,0,0,461 -"7826",0,0,0,48,2,1,4,1,9,2,0,0,461 -"7827",0,1,0,50,1,1,4,0,9,2,1,0,461 -"7828",0,0,0,38,2,1,4,0,12,2,1,0,461 -"7829",0,1,0,51,1,1,4,1,5,2,0,0,461 -"7830",1,1,0,52,2,1,4,1,9,2,0,0,461 -"7831",0,1,1,45,1,1,4,1,9,2,0,0,461 -"7832",0,1,0,55,1,1,4,1,10,2,1,0,461 -"7833",0,1,1,53,1,1,4,1,10,2,1,0,461 -"7834",0,1,1,52,1,1,4,1,8,2,0,0,461 -"7835",0,1,0,58,2,1,4,0,8,2,0,0,461 -"7836",1,0,1,40,1,1,4,1,9,2,0,0,461 -"7837",0,1,1,57,2,1,4,1,6,2,0,0,461 -"7838",0,1,1,46,2,1,2,1,8,7,0,0,462 -"7839",0,1,0,48,2,1,2,1,2,7,0,0,462 -"7840",0,1,0,37,2,1,2,1,10,7,0,0,462 -"7841",0,1,1,41,2,1,2,1,5,7,1,0,462 -"7842",0,1,1,31,2,1,2,1,12,7,1,0,462 -"7843",1,0,1,34,5,1,2,0,4,7,0,0,462 -"7844",1,1,0,44,2,1,2,1,8,7,0,0,462 -"7845",1,1,1,47,1,1,2,0,2,7,1,0,462 -"7846",1,0,0,45,5,1,2,0,3,7,0,0,462 -"7847",0,1,0,39,3,1,2,0,9,7,0,0,462 -"7848",0,0,0,46,2,1,3,1,10,1,0,0,463 -"7849",0,1,1,52,1,1,3,1,10,1,0,0,463 -"7850",0,1,1,41,1,1,3,1,11,1,1,0,463 -"7851",0,1,0,48,1,1,3,1,11,1,1,0,463 -"7852",0,1,0,57,1,1,3,0,10,1,1,0,463 -"7853",0,1,0,43,2,1,3,0,10,1,0,0,463 -"7854",1,1,1,55,3,1,3,0,10,1,0,0,463 -"7855",0,1,0,58,3,1,3,1,10,1,1,0,463 -"7856",0,1,0,61,2,1,3,1,11,1,1,0,463 -"7857",0,1,0,48,2,1,3,0,11,1,0,0,463 -"7858",0,1,1,57,2,1,3,0,10,1,0,0,463 -"7859",0,0,0,67,2,1,3,0,12,1,1,0,463 -"7860",0,1,0,51,5,1,3,0,7,1,0,0,464 -"7861",0,1,0,59,1,1,3,1,11,1,1,0,464 -"7862",0,1,1,56,1,1,3,0,8,1,0,0,464 -"7863",0,0,0,49,2,1,3,1,7,1,0,0,464 -"7864",0,1,0,53,4,1,3,1,16,1,0,0,464 -"7865",0,1,0,46,3,1,3,1,8,1,0,0,464 -"7866",0,1,1,62,2,1,3,0,10,1,0,0,464 -"7867",0,1,0,67,3,1,3,0,10,1,0,0,464 -"7868",0,1,0,58,1,1,3,1,12,1,1,0,464 -"7869",0,1,1,60,1,1,3,0,11,1,0,0,464 -"7870",1,1,1,55,4,1,3,0,10,1,0,0,464 -"7871",0,1,0,62,2,1,3,1,9,1,0,0,464 -"7872",0,1,1,68,2,1,3,0,10,1,0,0,464 -"7873",0,1,0,50,3,1,3,1,9,1,1,0,464 -"7874",0,1,1,48,2,1,3,1,9,1,1,0,464 -"7875",0,1,1,51,2,1,3,0,10,1,0,0,464 -"7876",0,1,1,56,1,1,3,0,9,1,0,0,464 -"7877",0,1,1,62,2,1,3,0,9,1,0,0,464 -"7878",0,1,0,49,1,1,3,1,10,1,0,0,464 -"7879",1,0,1,45,3,1,3,0,12,1,0,0,464 -"7880",0,0,1,48,5,1,3,1,12,1,1,0,464 -"7881",0,1,1,45,3,1,3,1,7,1,0,0,464 -"7882",0,1,0,57,2,1,3,0,11,1,1,0,464 -"7883",0,0,0,45,4,1,3,1,11,1,1,0,464 -"7884",1,1,1,62,2,1,3,0,9,1,0,0,464 -"7885",0,1,0,55,2,1,5,1,10,3,1,0,465 -"7886",0,1,1,57,2,1,5,1,5,3,1,0,465 -"7887",0,1,1,53,1,1,5,1,10,3,0,0,465 -"7888",0,1,0,47,1,1,5,0,10,3,0,0,465 -"7889",1,1,1,61,1,1,5,1,10,3,1,0,465 -"7890",0,1,1,56,4,1,5,1,9,3,1,0,465 -"7891",1,0,0,59,3,1,5,0,10,3,0,0,465 -"7892",1,1,1,31,3,1,5,1,9,3,0,0,465 -"7893",1,0,1,52,2,1,5,1,7,3,0,0,465 -"7894",0,1,1,58,1,1,5,1,8,3,0,0,465 -"7895",0,0,1,42,1,1,5,1,10,3,0,0,465 -"7896",0,1,0,53,2,1,4,1,11,5,0,0,466 -"7897",0,1,0,46,3,1,4,1,7,5,0,0,466 -"7898",0,1,0,55,1,1,4,1,8,5,0,0,466 -"7899",0,1,1,39,2,1,4,0,8,5,0,0,466 -"7900",0,1,0,49,1,1,4,1,6,5,0,0,466 -"7901",0,1,0,25,1,1,4,0,10,5,0,0,466 -"7902",0,1,1,53,1,1,4,1,8,5,0,0,466 -"7903",0,1,0,44,4,1,4,1,9,5,1,0,466 -"7904",0,1,0,45,1,1,4,0,11,5,1,0,466 -"7905",0,1,1,49,1,1,4,0,3,5,0,0,466 -"7906",0,1,0,52,2,1,4,1,8,5,0,0,466 -"7907",0,1,0,80,3,1,5,0,10,6,1,0,467 -"7908",0,1,0,66,2,1,5,1,11,6,1,0,467 -"7909",0,1,0,33,5,1,5,1,7,6,0,0,467 -"7910",0,1,1,60,1,1,5,0,12,6,0,0,467 -"7911",0,1,1,42,4,1,4,1,9,1,0,0,468 -"7912",0,1,0,62,3,1,4,0,9,1,1,0,468 -"7913",0,1,0,54,2,1,4,1,12,1,1,0,468 -"7914",0,1,1,40,2,1,4,1,10,1,0,0,468 -"7915",1,1,0,45,5,1,4,0,8,1,0,0,468 -"7916",0,1,0,58,2,1,4,1,10,1,0,0,468 -"7917",0,0,1,64,3,1,4,1,10,1,0,0,468 -"7918",0,1,0,49,1,1,4,0,10,1,1,0,468 -"7919",0,1,1,55,3,1,4,0,10,1,1,0,468 -"7920",1,1,0,48,3,1,4,1,11,1,0,0,468 -"7921",0,1,0,56,2,1,4,1,11,1,0,0,468 -"7922",0,1,1,56,2,1,4,1,12,1,0,0,468 -"7923",0,1,1,58,1,1,4,1,9,1,1,0,468 -"7924",0,1,0,59,2,1,4,0,12,1,0,0,468 -"7925",0,1,1,56,1,1,4,1,11,1,0,0,468 -"7926",0,1,0,43,2,1,4,1,8,1,0,0,468 -"7927",0,1,0,58,2,1,4,1,7,1,0,0,469 -"7928",0,1,1,55,1,1,4,1,9,1,1,0,469 -"7929",0,1,0,54,1,1,4,0,9,1,1,0,469 -"7930",0,1,0,66,3,1,4,0,11,1,1,0,469 -"7931",0,1,0,37,1,1,4,0,12,1,0,0,469 -"7932",1,1,1,42,1,1,4,0,6,1,0,0,469 -"7933",0,1,1,62,2,1,4,1,9,1,1,0,469 -"7934",0,1,1,68,1,1,4,0,10,1,0,0,469 -"7935",0,1,0,47,3,1,4,0,9,1,0,0,469 -"7936",0,1,1,50,2,1,4,1,10,1,0,0,469 -"7937",0,1,0,63,1,1,4,0,9,1,1,0,469 -"7938",0,1,0,54,3,1,4,1,9,1,0,0,469 -"7939",0,1,1,49,1,1,4,0,10,1,0,0,469 -"7940",0,1,0,42,1,1,4,1,12,1,1,0,469 -"7941",0,1,0,47,2,1,4,1,11,1,0,0,469 -"7942",0,1,1,45,2,1,4,0,13,1,0,0,469 -"7943",1,0,1,60,2,1,4,0,11,1,0,0,469 -"7944",0,1,0,44,1,1,4,1,11,1,1,0,469 -"7945",0,1,0,46,1,1,4,0,9,1,1,0,469 -"7946",0,1,0,53,1,1,4,1,9,1,0,0,469 -"7947",0,0,0,61,2,1,4,1,11,1,0,0,469 -"7948",0,1,1,62,5,1,4,1,13,1,1,0,469 -"7949",0,1,1,51,2,1,4,0,12,1,1,0,469 -"7950",0,1,0,48,3,1,4,0,8,1,0,0,469 -"7951",0,1,0,57,2,1,4,1,10,1,0,0,469 -"7952",0,1,1,58,2,1,4,0,10,1,0,0,469 -"7953",0,1,0,65,2,1,4,0,8,5,0,0,470 -"7954",0,1,1,46,1,1,4,0,5,5,0,0,470 -"7955",0,1,1,53,1,1,4,1,10,5,1,0,470 -"7956",0,1,1,62,1,1,4,1,9,5,1,0,470 -"7957",0,1,1,53,1,1,4,1,8,5,0,0,470 -"7958",1,1,0,45,3,1,4,1,7,5,0,0,470 -"7959",0,1,1,49,1,1,4,1,9,5,0,0,470 -"7960",0,1,1,59,3,1,4,0,10,5,1,0,470 -"7961",0,1,0,50,2,1,4,0,11,5,0,0,470 -"7962",0,0,1,54,5,1,4,1,11,5,0,0,470 -"7963",1,1,0,47,2,1,4,0,10,5,0,0,470 -"7964",0,1,1,66,2,1,4,1,9,1,1,1,471 -"7965",0,1,0,71,1,1,4,0,12,1,1,1,471 -"7966",0,1,0,60,2,1,4,0,11,1,1,1,471 -"7967",0,0,1,50,1,1,4,0,10,1,0,1,471 -"7968",0,1,1,45,2,1,4,0,12,1,1,1,471 -"7969",0,1,0,56,3,1,4,0,12,1,1,1,471 -"7970",0,1,0,57,1,1,4,1,9,1,0,1,471 -"7971",0,1,0,57,1,1,4,1,11,1,1,1,471 -"7972",0,0,1,53,2,1,4,0,10,1,0,1,471 -"7973",0,1,1,56,1,1,4,1,11,1,0,1,471 -"7974",0,1,0,57,1,1,4,1,11,1,0,1,471 -"7975",0,1,0,44,4,1,4,1,12,1,1,1,471 -"7976",0,1,0,54,1,1,4,1,10,1,1,1,471 -"7977",0,1,0,35,2,1,4,1,10,1,1,1,471 -"7978",1,0,1,50,2,1,4,0,9,1,0,1,471 -"7979",0,1,1,55,2,1,4,1,11,1,1,1,471 -"7980",0,1,0,59,3,1,5,1,8,2,0,0,472 -"7981",0,0,0,50,3,1,5,1,12,2,1,0,472 -"7982",0,1,0,48,1,1,5,0,12,2,1,0,472 -"7983",0,1,0,63,2,1,5,1,12,2,0,0,472 -"7984",0,1,0,54,1,1,5,0,11,2,0,0,472 -"7985",1,1,0,55,2,1,5,0,7,2,0,0,472 -"7986",0,1,0,44,2,1,5,1,9,2,0,0,472 -"7987",0,1,1,46,3,1,5,1,7,2,0,0,472 -"7988",0,1,1,48,2,1,5,0,9,2,0,0,472 -"7989",0,1,0,58,1,1,5,1,12,2,1,0,472 -"7990",0,1,0,50,1,1,5,1,10,2,1,0,472 -"7991",0,0,1,54,2,1,5,0,8,2,0,0,472 -"7992",0,1,1,45,3,1,5,1,9,2,0,0,472 -"7993",1,1,0,48,1,1,5,0,10,2,0,0,472 -"7994",0,1,0,33,2,1,5,1,5,2,0,0,472 -"7995",0,1,0,55,4,1,5,1,11,2,0,0,472 -"7996",0,0,0,53,2,1,5,0,10,2,1,0,472 -"7997",0,1,1,44,2,1,5,1,10,2,1,0,472 -"7998",0,1,1,53,3,1,5,0,8,2,0,0,472 -"7999",0,1,0,42,1,1,2,0,8,5,0,0,473 -"8000",0,1,0,54,3,1,2,0,8,5,0,0,473 -"8001",0,1,0,30,2,1,2,1,5,5,0,0,473 -"8002",1,0,1,41,3,1,2,0,8,5,0,0,473 -"8003",0,1,0,37,2,1,2,1,9,5,0,0,473 -"8004",0,1,0,45,2,1,2,0,9,5,1,0,473 -"8005",0,1,0,32,2,1,2,0,10,5,0,0,473 -"8006",0,1,0,32,3,1,2,0,6,5,0,0,473 -"8007",0,1,0,46,2,1,2,0,7,5,0,0,473 -"8008",1,1,0,48,1,1,2,0,8,5,0,0,473 -"8009",0,1,0,32,2,1,2,0,5,5,0,0,473 -"8010",1,1,1,41,4,1,2,1,8,5,0,0,473 -"8011",0,1,0,35,2,1,2,0,6,5,0,0,473 -"8012",0,1,0,39,1,1,2,0,10,5,0,0,473 -"8013",0,1,0,48,1,1,2,0,8,5,0,0,473 -"8014",0,1,0,38,3,1,2,0,8,5,0,0,473 -"8015",1,1,1,45,2,1,2,1,7,5,0,0,473 -"8016",0,1,0,49,2,1,2,0,5,5,1,0,473 -"8017",1,1,0,33,2,1,2,0,8,5,1,0,473 -"8018",0,1,0,38,2,1,2,0,6,5,0,0,473 -"8019",0,1,0,40,2,1,2,1,9,5,0,0,473 -"8020",1,1,0,52,2,1,2,0,10,5,0,0,473 -"8021",0,1,0,57,2,1,2,1,7,5,0,0,473 -"8022",0,1,1,58,1,1,2,0,12,5,0,0,473 -"8023",0,1,1,27,2,1,2,1,5,5,0,0,473 -"8024",1,1,0,34,5,1,2,0,2,5,0,0,473 -"8025",0,1,0,36,1,1,2,0,8,5,0,0,473 -"8026",0,1,0,39,2,1,2,0,7,5,1,0,473 -"8027",0,1,0,51,2,1,2,0,6,5,0,0,473 -"8028",0,1,0,63,3,1,2,1,10,5,1,0,473 -"8029",0,1,0,40,1,1,3,0,9,5,0,0,474 -"8030",0,1,0,47,1,1,3,0,7,5,0,0,474 -"8031",0,1,1,41,1,1,3,1,4,5,0,0,474 -"8032",1,1,0,58,3,1,3,0,7,5,0,0,474 -"8033",0,1,0,56,3,1,3,1,9,5,0,0,474 -"8034",0,1,0,60,2,1,3,0,8,5,0,0,474 -"8035",0,0,0,51,3,1,3,0,12,5,0,0,474 -"8036",0,1,0,52,2,1,3,1,4,5,0,0,474 -"8037",0,1,0,35,2,1,3,1,8,5,0,0,474 -"8038",0,1,0,52,4,1,3,1,3,5,0,0,474 -"8039",1,1,1,40,3,1,3,0,10,5,0,0,474 -"8040",0,1,0,47,3,1,3,1,8,5,0,0,474 -"8041",0,1,1,49,1,0,5,0,13,1,1,1,475 -"8042",0,1,0,56,1,0,5,0,12,1,0,1,475 -"8043",0,1,1,62,3,0,5,0,12,1,1,1,475 -"8044",0,1,0,59,1,0,5,0,11,1,1,1,475 -"8045",0,0,0,53,2,0,5,0,10,1,1,1,475 -"8046",0,1,1,57,1,0,5,0,10,1,1,1,475 -"8047",0,1,0,57,1,0,5,1,13,1,1,1,475 -"8048",0,1,1,63,1,0,5,0,12,1,1,1,475 -"8049",0,1,0,55,1,0,5,0,13,1,1,1,475 -"8050",0,1,1,55,1,0,5,0,12,1,1,1,475 -"8051",0,1,0,75,1,0,5,0,11,1,1,1,475 -"8052",0,1,0,66,5,0,5,0,12,1,1,1,475 -"8053",0,1,1,44,1,0,5,0,9,1,1,1,475 -"8054",0,1,1,69,2,0,5,0,9,1,1,1,475 -"8055",0,1,0,59,2,0,5,0,11,1,1,1,475 -"8056",0,1,1,52,3,0,5,0,12,1,1,1,475 -"8057",1,0,0,60,1,0,5,0,8,1,0,1,475 -"8058",0,0,1,57,1,0,5,0,12,1,1,1,475 -"8059",0,1,1,61,1,0,5,0,10,1,0,1,475 -"8060",0,1,1,51,2,0,5,0,12,1,0,1,475 -"8061",0,1,1,59,1,0,5,0,12,1,1,1,475 -"8062",0,1,0,52,1,0,5,0,13,1,1,1,475 -"8063",0,1,1,48,1,1,4,0,10,2,0,0,476 -"8064",0,1,0,52,1,1,4,0,10,2,0,0,476 -"8065",0,1,1,58,2,1,4,1,7,2,0,0,476 -"8066",0,1,0,69,1,1,4,0,11,2,1,0,476 -"8067",0,1,0,69,2,1,4,1,12,2,1,0,476 -"8068",0,1,0,43,5,1,4,1,10,2,0,0,476 -"8069",0,0,1,55,1,1,4,0,11,2,0,0,476 -"8070",0,0,0,60,1,1,4,1,9,2,1,0,476 -"8071",0,0,1,45,2,1,4,1,8,2,0,0,476 -"8072",0,1,1,56,1,1,4,0,11,2,1,0,476 -"8073",0,1,1,44,5,1,4,0,12,2,1,0,476 -"8074",0,1,1,50,1,1,4,0,10,2,1,0,476 -"8075",0,1,1,72,2,1,4,0,13,2,0,0,476 -"8076",0,1,0,51,2,1,4,1,9,2,0,0,476 -"8077",0,1,0,53,2,1,4,0,10,2,0,0,476 -"8078",0,1,1,49,2,1,4,1,11,2,1,0,476 -"8079",1,1,1,53,2,1,4,0,11,2,1,0,476 -"8080",0,1,0,49,1,1,4,1,11,2,1,0,476 -"8081",0,1,1,52,2,1,4,0,10,2,1,0,476 -"8082",0,1,0,35,2,1,4,1,7,7,0,0,477 -"8083",0,1,0,36,2,1,4,1,7,7,0,0,477 -"8084",0,1,0,46,4,1,4,1,8,7,0,0,477 -"8085",0,1,0,38,5,1,4,0,8,7,0,0,477 -"8086",0,1,0,41,2,1,4,1,5,7,0,0,477 -"8087",0,1,0,52,3,1,4,0,5,7,0,0,477 -"8088",0,1,0,46,2,1,4,1,9,7,0,0,477 -"8089",1,1,0,52,4,1,4,0,5,7,0,0,477 -"8090",0,1,0,25,1,1,4,0,6,7,0,0,477 -"8091",0,0,0,45,2,1,4,1,8,7,0,0,477 -"8092",0,1,0,40,4,1,4,0,6,7,0,0,477 -"8093",0,1,1,35,2,1,4,1,7,7,0,0,477 -"8094",0,1,0,48,2,1,4,1,8,7,0,0,477 -"8095",0,1,1,28,3,1,4,1,5,7,0,0,477 -"8096",0,1,0,49,2,1,4,0,6,7,1,0,477 -"8097",0,1,0,31,1,1,4,1,2,7,0,0,477 -"8098",0,1,1,29,3,1,4,1,9,7,0,0,477 -"8099",0,1,0,35,5,1,4,1,8,7,1,0,477 -"8100",0,1,0,56,2,1,4,1,7,7,0,0,477 -"8101",0,1,1,42,5,1,4,1,11,5,0,0,478 -"8102",0,1,1,36,2,1,4,1,8,5,0,0,478 -"8103",0,1,0,68,3,1,4,0,9,5,1,0,478 -"8104",1,1,0,44,1,1,4,0,10,5,1,0,478 -"8105",0,1,0,60,5,1,4,1,6,5,0,0,478 -"8106",0,1,1,50,2,1,4,0,8,5,0,0,478 -"8107",0,1,0,67,4,1,4,0,6,5,0,0,478 -"8108",0,1,0,46,5,1,4,1,6,5,1,0,478 -"8109",0,1,1,56,4,1,4,0,6,5,0,0,478 -"8110",0,0,1,49,1,1,4,0,4,5,0,0,478 -"8111",0,1,0,38,3,1,4,0,11,5,0,0,478 -"8112",1,0,1,54,3,1,4,0,5,5,0,0,478 -"8113",0,1,0,64,3,1,4,0,3,5,0,0,478 -"8114",0,1,0,46,2,1,4,0,7,5,0,0,478 -"8115",0,1,0,49,2,1,4,0,5,5,0,0,478 -"8116",0,0,1,36,1,1,4,0,11,5,0,0,478 -"8117",1,1,0,53,3,1,4,0,5,5,0,0,478 -"8118",1,0,1,51,3,1,4,0,6,5,0,0,478 -"8119",0,1,0,43,5,1,4,0,8,3,0,0,479 -"8120",0,1,0,46,1,1,4,1,10,3,0,0,479 -"8121",0,1,0,52,3,1,4,1,10,3,0,0,479 -"8122",0,1,0,50,3,1,4,1,10,3,0,0,479 -"8123",0,1,0,54,1,1,4,0,8,3,0,0,479 -"8124",0,1,0,53,2,1,4,1,9,3,0,0,479 -"8125",0,1,0,70,1,1,4,1,9,3,1,0,479 -"8126",0,1,0,51,2,1,4,1,10,3,1,0,479 -"8127",0,1,1,38,3,1,4,1,8,3,0,0,479 -"8128",0,1,0,58,1,1,4,0,7,3,0,0,479 -"8129",0,1,1,56,1,1,4,0,12,3,1,0,479 -"8130",0,1,1,43,1,1,4,0,13,3,1,0,479 -"8131",0,1,0,54,1,1,4,1,10,3,0,0,479 -"8132",0,1,1,42,1,1,4,0,11,3,0,0,479 -"8133",0,1,1,62,2,1,4,1,11,3,1,0,479 -"8134",0,1,1,55,1,1,4,0,9,3,0,0,479 -"8135",1,1,0,54,3,1,4,0,8,3,1,0,479 -"8136",0,1,0,37,1,1,4,1,3,3,0,0,479 -"8137",0,1,0,48,1,1,4,0,10,3,0,0,479 -"8138",1,1,1,43,2,1,4,1,9,3,0,0,479 -"8139",0,1,1,51,4,1,4,1,5,3,0,0,479 -"8140",0,0,1,46,4,1,4,1,7,3,0,0,479 -"8141",0,1,0,44,1,1,4,1,10,3,0,0,479 -"8142",0,1,0,63,1,1,3,0,9,2,1,0,480 -"8143",0,1,1,51,1,1,3,1,10,2,0,0,480 -"8144",0,1,0,62,2,1,3,0,10,2,0,0,480 -"8145",0,0,1,50,2,1,3,1,10,2,1,0,480 -"8146",0,1,1,44,2,1,3,1,11,2,0,0,480 -"8147",0,1,1,60,3,1,3,1,8,2,0,0,480 -"8148",1,0,1,39,3,1,3,1,12,2,0,0,480 -"8149",0,1,1,48,2,1,3,0,10,2,0,0,480 -"8150",0,1,1,54,1,1,3,0,11,2,0,0,480 -"8151",0,1,0,61,2,1,3,1,12,2,1,0,480 -"8152",0,0,0,45,4,1,3,1,10,2,0,0,480 -"8153",0,1,0,53,1,1,3,1,7,2,1,0,480 -"8154",1,0,1,46,5,1,3,0,9,2,0,0,480 -"8155",0,0,0,55,3,1,3,0,10,2,0,0,480 -"8156",0,1,0,58,2,1,3,1,7,2,0,0,480 -"8157",1,1,1,40,2,1,3,0,10,2,0,0,480 -"8158",0,0,0,48,3,1,3,1,8,2,0,0,480 -"8159",0,1,0,46,2,1,3,0,12,2,0,0,480 -"8160",0,0,0,54,5,1,3,1,5,2,0,0,480 -"8161",1,1,1,59,3,1,3,0,10,2,0,0,480 -"8162",0,1,1,61,2,1,3,0,9,2,0,0,480 -"8163",0,1,0,55,3,1,4,1,11,3,1,0,481 -"8164",0,1,0,61,3,1,4,0,12,3,1,0,481 -"8165",0,0,1,62,5,1,4,0,10,3,1,0,481 -"8166",0,1,1,68,2,1,4,1,7,3,1,0,481 -"8167",0,1,1,63,1,1,4,1,5,3,0,0,481 -"8168",0,1,0,80,3,1,4,1,8,3,1,0,481 -"8169",0,1,0,54,5,1,4,1,6,3,0,0,481 -"8170",0,1,0,62,1,1,4,1,12,3,1,0,481 -"8171",0,1,1,51,5,1,4,0,3,3,0,0,481 -"8172",0,0,0,62,3,1,4,0,9,3,1,0,481 -"8173",0,1,0,62,1,1,4,1,8,5,1,0,482 -"8174",0,1,1,54,2,1,4,1,9,5,1,0,482 -"8175",0,1,0,57,1,1,4,1,9,5,1,0,482 -"8176",0,1,0,45,2,1,4,0,7,5,0,0,482 -"8177",0,1,0,49,3,1,4,1,9,5,0,0,482 -"8178",0,1,0,45,2,1,4,1,9,5,0,0,482 -"8179",1,1,1,59,3,1,4,1,8,5,0,0,482 -"8180",0,1,1,60,1,1,4,1,9,5,1,0,482 -"8181",0,1,1,66,1,1,4,1,9,5,1,0,482 -"8182",1,1,1,53,2,1,4,0,4,5,0,0,482 -"8183",1,1,1,49,2,1,4,0,9,5,0,0,482 -"8184",0,1,1,64,1,1,4,1,9,5,1,0,482 -"8185",0,1,1,60,1,1,4,0,11,5,1,0,482 -"8186",0,1,1,48,1,1,4,1,11,5,0,0,482 -"8187",0,1,0,47,1,1,4,0,5,5,0,0,482 -"8188",0,1,0,53,1,1,4,1,10,5,1,0,482 -"8189",1,1,1,48,2,1,4,0,5,5,0,0,482 -"8190",0,1,1,38,1,1,4,1,9,5,0,0,482 -"8191",0,1,0,59,1,1,4,1,9,5,0,0,482 -"8192",0,1,1,59,1,1,4,1,10,5,0,0,482 -"8193",0,0,0,46,2,1,4,0,10,5,1,0,482 -"8194",0,1,1,44,2,1,5,1,9,4,0,0,483 -"8195",0,1,0,58,3,1,5,0,9,4,0,0,483 -"8196",0,1,1,40,4,1,5,1,8,4,0,0,483 -"8197",0,1,0,53,5,1,5,0,7,4,0,0,483 -"8198",0,1,1,59,1,1,5,0,9,4,1,0,483 -"8199",0,1,0,48,3,1,5,1,12,4,0,0,483 -"8200",0,1,1,59,3,1,5,1,10,4,0,0,483 -"8201",0,1,0,51,4,1,5,0,11,4,0,0,483 -"8202",0,1,0,62,1,1,5,0,6,4,0,0,483 -"8203",0,1,0,53,2,1,5,0,5,4,1,0,483 -"8204",0,1,0,49,2,1,5,1,8,4,1,0,483 -"8205",0,1,0,57,1,1,5,1,11,4,1,0,483 -"8206",0,1,0,46,2,1,5,0,7,4,0,0,483 -"8207",0,1,1,65,3,1,5,1,7,4,0,0,483 -"8208",0,1,1,53,2,1,5,1,8,4,0,0,483 -"8209",0,1,0,45,2,1,5,1,11,4,1,0,483 -"8210",0,1,1,62,2,1,5,0,10,4,1,0,483 -"8211",0,1,0,46,3,1,5,1,13,4,0,0,483 -"8212",1,1,1,49,2,1,5,1,10,4,0,0,483 -"8213",0,1,1,41,5,1,5,1,3,4,0,0,483 -"8214",0,1,0,49,2,1,5,1,12,4,0,0,483 -"8215",0,1,1,57,1,1,4,1,9,2,1,0,484 -"8216",0,0,0,48,2,1,4,1,9,2,0,0,484 -"8217",0,1,1,57,3,1,4,1,10,2,1,0,484 -"8218",0,1,0,49,2,1,4,0,11,2,1,0,484 -"8219",0,1,1,50,2,1,4,1,8,2,1,0,484 -"8220",0,1,0,59,1,1,4,1,9,2,0,0,484 -"8221",0,1,0,48,4,1,4,1,8,2,0,0,484 -"8222",0,1,1,43,2,1,4,1,11,2,0,0,484 -"8223",0,1,0,34,2,1,4,1,8,2,0,0,484 -"8224",0,1,0,53,1,1,4,1,10,2,1,0,484 -"8225",0,1,0,54,1,1,4,1,12,2,1,0,484 -"8226",0,1,0,64,1,1,4,0,9,2,0,0,484 -"8227",0,1,0,65,1,1,4,0,8,2,1,0,484 -"8228",0,0,1,61,3,1,4,1,11,2,0,0,484 -"8229",0,1,0,60,2,1,4,0,9,2,0,0,484 -"8230",0,0,0,62,3,1,4,0,9,2,0,0,484 -"8231",0,1,1,48,3,1,4,1,5,4,1,0,485 -"8232",0,1,1,40,2,1,4,1,6,4,0,0,485 -"8233",0,1,0,46,2,1,4,1,10,4,0,0,485 -"8234",0,0,0,50,3,1,4,0,8,4,0,0,485 -"8235",0,1,0,44,2,1,4,0,10,4,0,0,485 -"8236",0,1,0,56,2,1,4,0,10,4,0,0,485 -"8237",0,1,0,45,1,1,4,0,7,4,0,0,485 -"8238",0,1,1,49,2,1,4,1,10,4,0,0,485 -"8239",0,0,0,52,2,1,4,0,12,4,0,0,485 -"8240",0,1,0,57,3,1,4,1,5,4,0,0,485 -"8241",0,1,0,29,1,1,4,1,2,4,1,0,485 -"8242",0,1,0,49,1,1,4,1,9,4,0,0,485 -"8243",1,0,1,45,3,1,4,0,6,4,1,0,485 -"8244",0,1,0,35,2,1,4,0,2,4,0,0,485 -"8245",0,1,1,41,2,1,4,0,10,4,0,0,485 -"8246",1,1,0,50,2,1,4,1,8,4,0,0,485 -"8247",0,1,0,64,2,1,4,1,12,4,1,0,485 -"8248",0,1,1,46,3,1,4,1,5,4,0,0,485 -"8249",0,1,0,54,3,1,4,1,7,4,1,0,485 -"8250",0,1,0,39,2,1,4,0,9,4,0,0,485 -"8251",0,1,1,42,1,1,4,0,9,4,1,0,485 -"8252",1,1,1,39,3,1,4,0,9,4,0,0,485 -"8253",0,1,0,50,2,1,5,0,10,1,0,1,486 -"8254",0,1,0,63,3,1,5,1,11,1,0,1,486 -"8255",1,1,0,52,5,1,5,0,9,1,1,1,486 -"8256",0,1,0,48,2,1,5,0,10,1,1,1,486 -"8257",0,1,1,70,1,1,5,0,13,1,1,1,486 -"8258",0,1,0,49,3,1,5,0,10,1,1,1,486 -"8259",0,1,0,44,3,1,5,0,10,1,1,1,486 -"8260",0,1,0,59,2,1,5,1,6,1,0,1,486 -"8261",0,1,0,60,3,1,5,1,9,1,0,1,486 -"8262",0,1,0,48,2,1,5,1,11,1,0,1,486 -"8263",0,1,1,56,1,1,5,1,9,1,0,1,486 -"8264",0,1,0,43,3,1,5,1,10,1,1,1,486 -"8265",0,1,1,73,2,1,5,0,12,1,1,1,486 -"8266",0,1,0,54,3,1,5,0,13,1,1,1,486 -"8267",0,1,0,46,3,1,5,1,10,1,1,1,486 -"8268",1,1,0,66,2,1,3,0,9,1,0,0,487 -"8269",0,1,1,72,1,1,3,0,10,1,0,0,487 -"8270",0,1,0,55,2,1,3,0,9,1,0,0,487 -"8271",1,1,0,71,2,1,3,0,11,1,1,0,487 -"8272",0,1,0,69,3,1,3,0,10,1,1,0,487 -"8273",0,1,0,59,2,1,3,0,12,1,0,0,487 -"8274",0,1,0,36,5,1,3,0,11,7,0,0,488 -"8275",0,1,0,51,2,1,3,0,10,7,1,0,488 -"8276",0,1,0,46,3,1,3,0,10,7,0,0,488 -"8277",0,1,0,53,5,1,3,1,6,7,0,0,488 -"8278",0,1,0,47,4,1,3,0,8,7,0,0,488 -"8279",0,1,0,56,5,1,3,1,11,7,1,0,488 -"8280",0,1,0,42,3,1,3,1,7,7,0,0,488 -"8281",1,1,1,41,2,1,3,0,2,7,0,0,488 -"8282",0,1,1,39,4,1,3,1,9,7,0,0,488 -"8283",0,1,0,39,3,1,3,1,7,7,0,0,488 -"8284",0,1,0,44,5,1,3,0,10,7,0,0,488 -"8285",0,1,1,43,1,1,3,0,7,7,0,0,488 -"8286",1,1,0,52,1,1,4,0,9,5,0,0,489 -"8287",0,1,1,39,2,1,4,1,9,5,0,0,489 -"8288",0,1,1,48,3,1,4,1,10,5,0,0,489 -"8289",1,1,0,51,2,1,4,0,9,5,0,0,489 -"8290",0,1,1,60,1,1,4,0,6,5,0,0,489 -"8291",1,1,1,42,1,1,4,0,5,5,0,0,489 -"8292",1,0,1,41,5,1,4,1,2,5,0,0,489 -"8293",0,1,0,46,2,1,4,0,9,5,1,0,489 -"8294",0,1,0,38,3,1,4,1,10,5,0,0,489 -"8295",0,1,0,45,2,1,4,1,7,5,0,0,489 -"8296",0,1,1,60,2,1,4,0,9,5,0,0,489 -"8297",0,1,0,46,1,1,4,1,3,5,0,0,489 -"8298",0,0,1,40,5,1,4,1,7,5,0,0,489 -"8299",0,1,0,40,1,1,4,0,9,5,0,0,489 -"8300",0,1,0,44,1,1,4,1,8,5,0,0,489 -"8301",0,1,0,43,2,1,4,0,10,5,0,0,489 -"8302",1,0,0,50,2,1,4,0,7,5,0,0,489 -"8303",0,1,0,48,3,1,4,1,6,5,1,0,489 -"8304",0,1,0,59,2,1,4,1,9,5,0,0,489 -"8305",1,1,1,40,1,1,4,0,6,5,0,0,489 -"8306",0,1,1,49,1,1,4,0,10,5,0,0,489 -"8307",0,1,1,62,1,1,4,1,9,5,0,0,489 -"8308",0,1,0,61,2,0,3,0,13,1,0,0,490 -"8309",1,1,1,60,1,0,3,0,12,1,1,0,490 -"8310",0,0,1,48,1,0,3,0,7,1,0,0,490 -"8311",0,1,0,49,1,0,3,0,12,1,1,0,490 -"8312",0,1,0,49,1,0,3,1,12,1,1,0,490 -"8313",1,1,0,49,1,0,3,0,4,1,0,0,490 -"8314",0,1,0,46,2,0,3,0,11,1,0,0,490 -"8315",0,1,0,51,1,0,3,0,10,1,0,0,490 -"8316",0,0,0,58,1,0,3,0,13,1,1,0,490 -"8317",1,1,1,54,1,0,3,0,11,1,1,0,490 -"8318",1,1,0,69,2,0,3,0,9,1,0,0,490 -"8319",0,1,1,53,2,1,4,0,8,6,1,1,491 -"8320",0,1,0,54,1,1,4,0,8,6,0,1,491 -"8321",0,1,0,41,2,1,4,0,10,6,0,1,491 -"8322",0,1,0,47,5,1,4,0,10,6,0,1,491 -"8323",0,1,0,43,1,1,4,1,8,6,0,1,491 -"8324",0,1,0,46,3,1,4,1,8,6,1,1,491 -"8325",0,1,0,55,2,1,4,1,7,6,0,1,491 -"8326",0,1,0,44,3,1,4,0,7,6,0,1,491 -"8327",0,1,0,55,2,1,4,1,5,6,0,1,491 -"8328",0,1,1,41,2,1,4,0,6,6,0,1,491 -"8329",0,1,1,48,1,1,4,0,7,6,0,1,491 -"8330",0,1,0,53,1,1,4,1,5,6,0,1,491 -"8331",0,1,0,44,1,1,4,0,11,6,0,1,491 -"8332",1,1,0,41,2,1,4,1,4,6,0,1,491 -"8333",0,1,1,42,1,1,4,0,2,6,0,1,491 -"8334",1,0,1,47,3,1,5,0,9,3,0,0,492 -"8335",0,1,0,60,1,1,5,0,12,3,0,0,492 -"8336",0,1,0,57,2,1,5,0,10,3,0,0,492 -"8337",0,1,0,42,2,1,5,0,12,3,1,0,492 -"8338",0,1,0,48,2,1,5,1,11,3,0,0,492 -"8339",0,1,1,51,5,1,5,1,10,3,0,0,492 -"8340",0,1,0,55,1,1,5,1,12,3,1,0,492 -"8341",0,1,1,51,1,1,5,1,9,3,0,0,492 -"8342",0,1,1,60,2,1,5,1,10,3,0,0,492 -"8343",0,1,1,56,5,1,5,1,10,3,1,0,492 -"8344",0,1,1,61,1,1,5,1,9,3,0,0,492 -"8345",0,1,0,61,2,1,5,0,8,3,0,0,492 -"8346",1,1,1,30,3,1,5,0,10,3,0,0,492 -"8347",1,0,1,31,3,1,5,0,2,3,0,0,492 -"8348",0,0,0,53,1,1,5,0,9,3,0,0,492 -"8349",0,1,0,42,1,1,5,1,9,3,0,0,492 -"8350",0,1,1,61,2,1,5,1,9,3,0,0,492 -"8351",0,1,0,40,1,1,5,1,9,3,0,0,492 -"8352",0,0,1,47,4,1,5,0,8,3,1,0,492 -"8353",0,1,1,50,2,1,5,1,11,3,1,0,492 -"8354",0,1,1,46,3,1,3,1,9,4,1,0,493 -"8355",0,1,1,58,4,1,3,1,9,4,0,0,493 -"8356",1,0,1,53,2,1,3,0,7,4,0,0,493 -"8357",0,1,1,53,2,1,3,1,8,4,0,0,493 -"8358",0,1,1,42,2,1,3,0,7,4,0,0,493 -"8359",0,0,1,38,2,1,3,0,9,4,0,0,493 -"8360",0,1,0,65,1,1,3,1,9,4,1,0,493 -"8361",0,1,1,53,2,1,3,1,9,4,0,0,493 -"8362",0,1,1,47,3,1,3,0,9,4,0,0,493 -"8363",0,1,1,50,3,1,3,1,8,4,0,0,493 -"8364",1,1,1,46,3,1,3,0,6,4,0,0,493 -"8365",1,1,1,61,1,1,3,0,8,4,0,0,493 -"8366",0,1,0,42,3,1,3,1,4,4,0,0,493 -"8367",0,1,0,55,1,1,3,1,8,4,0,0,493 -"8368",0,1,1,54,1,1,3,1,9,4,0,0,493 -"8369",0,0,1,53,5,1,3,0,9,4,0,0,493 -"8370",0,1,1,45,2,1,3,1,11,4,0,0,493 -"8371",0,1,1,60,2,1,3,1,8,4,0,0,493 -"8372",0,0,0,60,3,1,3,0,9,4,1,0,493 -"8373",0,1,1,37,2,1,3,0,7,4,0,0,493 -"8374",0,1,1,38,1,1,3,1,9,4,0,0,493 -"8375",0,1,0,51,2,1,3,1,10,4,0,0,493 -"8376",0,1,1,58,1,1,3,1,9,4,1,0,493 -"8377",1,1,1,42,2,1,3,1,8,4,0,0,493 -"8378",0,1,1,49,2,1,3,0,8,4,1,0,493 -"8379",0,1,1,48,1,1,3,1,9,4,0,0,493 -"8380",1,1,1,46,2,1,3,0,10,4,0,0,493 -"8381",0,1,1,39,4,1,4,1,8,6,0,0,494 -"8382",1,1,0,44,1,1,4,1,8,6,0,0,494 -"8383",1,1,0,44,1,1,4,1,6,6,0,0,494 -"8384",0,1,0,60,2,1,4,1,9,6,0,0,494 -"8385",0,0,0,51,2,1,4,1,8,6,0,0,494 -"8386",0,1,0,39,2,1,4,0,3,6,0,0,494 -"8387",0,1,0,40,3,1,4,0,9,6,1,0,494 -"8388",0,1,0,32,2,1,4,0,5,6,0,0,494 -"8389",0,1,0,25,3,1,4,0,5,6,0,0,494 -"8390",0,1,0,47,3,1,4,0,6,6,0,0,494 -"8391",0,1,0,56,1,1,4,0,6,6,0,0,494 -"8392",0,1,0,54,3,1,4,0,9,6,0,0,494 -"8393",0,1,0,34,3,1,4,0,7,6,0,0,494 -"8394",0,1,0,49,1,1,4,0,8,6,0,0,494 -"8395",0,1,0,46,1,1,4,1,7,6,0,0,494 -"8396",1,1,1,59,3,1,4,0,11,1,0,1,495 -"8397",1,1,0,53,1,1,4,0,12,1,0,1,495 -"8398",0,1,0,46,1,1,4,1,11,1,1,1,495 -"8399",0,1,1,56,1,1,4,0,12,1,1,1,495 -"8400",0,1,0,47,5,1,4,1,10,1,1,1,495 -"8401",0,1,0,73,1,1,4,0,12,1,1,1,495 -"8402",0,0,0,38,1,1,4,1,11,1,0,1,495 -"8403",0,1,0,46,2,1,4,1,11,1,1,1,495 -"8404",0,1,0,46,2,1,4,0,11,1,1,1,495 -"8405",1,1,0,61,3,1,4,0,13,1,1,1,495 -"8406",0,1,1,57,5,1,4,0,8,1,0,1,495 -"8407",1,1,0,68,2,1,4,0,12,1,1,1,495 -"8408",1,0,0,53,3,1,4,0,12,1,0,1,495 -"8409",0,1,0,39,2,1,4,1,13,1,1,1,495 -"8410",0,0,0,47,1,1,4,0,11,1,1,1,495 -"8411",0,0,1,67,2,1,4,1,10,1,1,1,495 -"8412",0,1,0,76,5,1,4,0,9,1,1,1,495 -"8413",0,1,1,52,2,1,4,0,10,1,0,1,495 -"8414",0,1,0,65,2,1,4,1,11,1,1,1,495 -"8415",0,1,0,41,4,1,4,0,9,1,1,1,495 -"8416",0,0,0,61,2,1,4,0,13,1,1,1,495 -"8417",0,1,0,56,2,1,4,0,10,3,1,0,496 -"8418",1,1,0,54,3,1,4,0,10,3,0,0,496 -"8419",1,1,0,52,1,1,4,1,7,3,1,0,496 -"8420",0,1,1,51,1,1,4,0,8,3,1,0,496 -"8421",0,1,1,56,2,1,4,1,11,3,0,0,496 -"8422",0,1,0,51,2,1,4,1,12,3,0,0,496 -"8423",0,0,1,53,3,1,4,1,7,3,0,0,496 -"8424",0,1,1,52,2,1,4,1,8,3,0,0,496 -"8425",0,0,1,59,2,1,4,0,10,3,1,0,496 -"8426",0,1,1,61,4,1,5,0,10,2,1,0,497 -"8427",0,1,0,63,5,1,5,1,10,2,1,0,497 -"8428",0,1,1,69,3,1,5,0,9,2,1,0,497 -"8429",1,1,0,58,5,1,5,0,9,2,0,0,497 -"8430",0,1,0,57,5,1,5,1,12,2,1,0,497 -"8431",0,1,1,60,2,1,5,1,10,2,0,0,497 -"8432",0,1,1,63,2,1,5,1,12,2,0,0,497 -"8433",0,0,1,54,2,1,5,0,10,2,1,0,497 -"8434",0,1,0,69,1,1,5,1,10,2,1,0,497 -"8435",0,1,0,69,1,1,5,1,7,2,0,0,497 -"8436",0,1,0,49,1,1,5,1,11,2,1,0,497 -"8437",0,1,0,65,2,1,5,1,10,2,1,0,497 -"8438",0,1,1,59,2,1,5,1,9,2,1,0,497 -"8439",1,1,1,69,3,1,5,0,9,2,1,0,497 -"8440",0,1,1,61,1,1,5,0,12,2,1,0,497 -"8441",0,1,1,59,1,1,5,1,9,2,1,0,497 -"8442",0,1,0,63,2,1,5,1,9,2,1,0,497 -"8443",0,1,1,57,2,1,5,0,12,2,1,0,497 -"8444",0,1,1,65,3,1,5,0,11,2,1,0,497 -"8445",0,1,0,58,1,1,5,1,5,2,1,0,497 -"8446",0,1,0,60,2,1,3,0,10,2,0,0,498 -"8447",0,1,0,66,2,1,3,0,10,2,0,0,498 -"8448",0,1,0,42,2,1,3,1,10,2,1,0,498 -"8449",0,1,0,56,1,1,3,0,12,2,0,0,498 -"8450",0,1,0,57,3,1,3,1,10,2,0,0,498 -"8451",1,1,1,47,3,1,3,1,6,2,0,0,498 -"8452",0,1,0,51,1,1,3,1,9,2,0,0,498 -"8453",0,1,1,46,2,1,3,1,10,2,1,0,498 -"8454",0,1,0,59,2,1,3,1,12,2,0,0,498 -"8455",0,1,0,66,5,1,3,1,8,2,0,0,498 -"8456",1,0,1,25,4,1,3,0,6,2,0,0,498 -"8457",0,1,1,52,3,1,3,0,3,2,0,0,498 -"8458",0,1,0,34,2,1,3,1,8,2,0,0,498 -"8459",0,0,0,50,1,1,3,0,10,2,1,0,498 -"8460",1,1,0,57,3,1,3,0,11,2,0,0,498 -"8461",0,1,0,47,1,1,3,1,9,2,0,0,498 -"8462",0,1,0,55,2,1,3,1,10,2,0,0,498 -"8463",0,1,0,59,1,1,3,1,6,2,0,0,498 -"8464",0,1,0,55,1,1,3,0,10,2,0,0,498 -"8465",0,1,0,65,1,1,3,0,9,2,0,0,498 -"8466",0,1,0,38,3,1,3,1,10,2,0,0,498 -"8467",0,1,1,47,2,1,3,1,9,2,0,0,498 -"8468",0,0,1,61,5,1,3,1,8,2,1,0,498 -"8469",1,1,1,43,1,1,3,1,9,3,0,0,499 -"8470",0,1,1,56,2,1,3,0,8,3,0,0,499 -"8471",0,1,1,49,5,1,3,0,9,3,0,0,499 -"8472",0,1,0,42,2,1,3,1,11,3,0,0,499 -"8473",0,1,0,58,1,1,3,0,9,3,0,0,499 -"8474",0,1,1,45,3,1,3,1,9,3,0,0,499 -"8475",0,1,1,59,2,1,3,0,5,3,0,0,499 -"8476",0,1,0,50,2,1,3,1,11,3,0,0,499 -"8477",1,1,1,49,2,1,3,0,9,3,0,0,499 -"8478",0,1,1,63,2,1,3,1,9,3,1,0,499 -"8479",0,1,0,58,1,1,3,0,9,3,0,0,499 -"8480",0,1,1,57,2,1,3,1,10,3,1,0,499 -"8481",0,1,0,44,2,1,3,1,3,3,0,0,499 -"8482",1,1,0,54,1,1,3,0,9,2,0,0,500 -"8483",0,1,0,47,2,1,3,1,7,2,0,0,500 -"8484",0,1,1,64,2,1,3,1,11,2,0,0,500 -"8485",0,1,1,62,1,1,3,1,12,2,1,0,500 -"8486",1,1,1,43,5,1,3,0,6,2,0,0,500 -"8487",0,1,0,42,2,1,3,1,11,2,1,0,500 -"8488",0,1,0,51,1,1,3,0,7,2,0,0,500 -"8489",1,1,0,50,3,1,3,0,8,2,0,0,500 -"8490",0,1,1,62,1,1,3,0,12,2,1,0,500 -"8491",0,1,1,53,5,1,3,0,10,2,0,0,500 -"8492",1,0,1,45,3,1,3,1,4,2,0,0,500 -"8493",0,1,0,49,3,1,3,0,11,2,0,0,500 -"8494",0,1,0,64,1,1,3,1,8,2,1,0,500 -"8495",0,1,0,61,2,1,3,0,7,2,1,0,500 -"8496",0,1,0,57,2,1,3,0,10,2,0,0,500 -"8497",0,1,1,41,2,1,3,1,4,2,0,0,500 -"8498",1,0,0,41,5,1,3,0,12,2,1,0,500 -"8499",0,1,1,59,1,1,3,0,10,2,0,0,500 -"8500",1,1,0,32,3,1,3,0,10,2,0,0,500 -"8501",0,1,1,59,5,1,3,0,10,2,0,0,500 -"8502",0,1,0,48,2,1,5,0,7,4,0,0,501 -"8503",0,1,0,49,1,1,5,0,10,4,0,0,501 -"8504",0,1,0,51,2,1,5,0,11,4,0,0,501 -"8505",0,1,0,58,2,1,5,1,9,4,0,0,501 -"8506",0,0,0,61,1,1,5,0,8,4,1,0,501 -"8507",0,1,0,49,3,1,5,1,8,4,0,0,501 -"8508",0,0,0,40,2,1,5,0,10,4,1,0,501 -"8509",0,1,0,46,2,1,5,1,8,4,1,0,501 -"8510",0,1,1,57,1,1,5,1,10,4,1,0,501 -"8511",0,1,1,54,2,1,5,1,10,4,0,0,501 -"8512",0,1,0,42,1,1,5,1,8,4,1,0,501 -"8513",0,1,1,71,2,1,5,1,11,4,0,0,501 -"8514",0,1,1,56,3,1,5,0,6,4,0,0,501 -"8515",0,1,1,49,3,1,5,1,8,4,0,0,501 -"8516",1,0,0,60,3,1,5,1,7,4,0,0,501 -"8517",0,1,0,59,1,1,5,0,11,4,1,0,501 -"8518",0,1,0,54,2,1,5,0,8,4,0,0,501 -"8519",0,0,1,63,2,1,5,0,10,4,1,0,501 -"8520",0,1,1,50,1,1,5,0,8,4,0,0,501 -"8521",0,1,1,42,1,1,5,1,3,4,0,0,501 -"8522",1,1,0,46,2,1,5,1,4,4,0,0,501 -"8523",0,1,0,55,1,1,5,0,8,4,0,0,501 -"8524",0,1,0,45,1,1,5,1,4,4,0,0,501 -"8525",0,1,1,45,2,1,5,0,7,4,1,0,501 -"8526",0,1,0,65,2,1,4,1,11,1,1,0,502 -"8527",0,1,0,51,1,1,4,0,7,1,0,0,502 -"8528",0,1,1,44,2,1,4,1,10,1,0,0,502 -"8529",0,1,0,61,2,1,4,0,8,1,0,0,502 -"8530",0,1,0,71,2,1,4,1,9,1,0,0,502 -"8531",0,1,1,61,1,1,4,0,11,1,1,0,502 -"8532",0,0,1,60,1,1,4,0,10,1,0,0,502 -"8533",0,1,0,65,1,1,4,0,10,1,0,0,502 -"8534",0,1,0,72,2,1,4,1,9,1,1,0,502 -"8535",1,0,0,56,1,1,4,0,11,1,0,0,502 -"8536",0,1,0,47,3,1,4,1,8,1,0,0,502 -"8537",0,1,1,46,3,1,4,0,4,1,0,0,502 -"8538",0,1,0,55,2,1,4,1,10,1,1,0,502 -"8539",0,1,0,59,1,1,4,1,7,1,1,0,502 -"8540",0,1,0,61,3,1,4,1,12,2,1,0,503 -"8541",0,1,1,66,3,1,4,0,10,2,1,0,503 -"8542",0,1,0,68,2,1,4,1,11,2,1,0,503 -"8543",0,1,0,62,2,1,4,1,11,2,1,0,503 -"8544",0,1,1,46,1,1,4,1,12,2,0,0,503 -"8545",0,1,1,64,1,1,4,1,10,2,1,0,503 -"8546",0,1,0,66,1,1,4,1,10,2,1,0,503 -"8547",0,1,1,63,2,1,4,1,11,2,1,0,503 -"8548",0,1,0,44,1,1,4,1,11,2,1,0,503 -"8549",0,1,1,48,2,1,4,1,8,2,0,0,503 -"8550",1,1,0,43,2,1,4,1,6,5,1,0,504 -"8551",0,1,0,41,2,1,4,1,10,5,0,0,504 -"8552",0,1,0,56,2,1,4,1,9,5,1,0,504 -"8553",0,1,0,58,3,1,4,0,10,5,0,0,504 -"8554",1,1,1,63,5,1,4,0,7,5,0,0,504 -"8555",0,1,0,58,2,1,4,1,10,5,0,0,504 -"8556",0,1,1,29,1,1,4,1,10,5,1,0,504 -"8557",0,1,0,63,1,1,4,0,10,5,1,0,504 -"8558",0,1,1,41,3,1,4,0,7,5,0,0,504 -"8559",0,1,1,50,2,1,4,1,11,5,1,0,504 -"8560",0,1,1,61,2,1,4,0,10,5,0,0,504 -"8561",0,1,0,56,3,1,4,1,12,5,1,0,504 -"8562",1,1,0,43,2,1,4,0,6,5,0,0,504 -"8563",1,0,1,44,5,1,4,0,6,5,0,0,504 -"8564",0,1,0,43,3,1,4,1,9,5,0,0,504 -"8565",0,1,1,63,2,1,4,1,9,5,0,0,504 -"8566",0,1,1,45,5,1,4,0,10,5,1,0,504 -"8567",1,1,0,56,2,1,4,0,4,5,1,0,504 -"8568",1,1,1,62,3,1,4,0,10,3,0,0,505 -"8569",0,1,1,49,1,1,4,1,10,3,0,0,505 -"8570",0,1,1,44,3,1,4,1,10,3,0,0,505 -"8571",0,1,1,49,2,1,4,0,10,3,0,0,505 -"8572",1,1,1,51,2,1,4,0,11,3,1,0,505 -"8573",1,1,1,39,5,1,4,1,8,3,0,0,505 -"8574",0,1,1,49,2,1,4,0,10,3,0,0,505 -"8575",0,1,0,58,5,1,4,0,10,3,0,0,505 -"8576",0,1,1,31,1,1,4,1,9,3,0,0,505 -"8577",0,1,1,52,1,1,4,1,9,3,1,0,505 -"8578",0,1,0,34,1,1,4,0,7,3,0,0,505 -"8579",0,0,0,40,4,1,4,1,10,3,0,0,505 -"8580",0,1,0,52,2,1,4,1,9,3,0,0,505 -"8581",0,1,0,59,2,1,4,0,12,3,0,0,505 -"8582",0,1,1,41,3,1,4,1,10,3,0,0,505 -"8583",0,1,1,50,4,1,4,1,10,3,1,0,505 -"8584",0,1,1,52,3,1,4,0,9,3,1,0,505 -"8585",0,1,0,39,3,1,4,1,9,3,0,0,505 -"8586",1,1,0,52,2,1,4,0,6,3,0,0,505 -"8587",0,1,1,62,2,1,4,1,10,3,1,0,505 -"8588",0,1,1,47,2,1,4,1,10,3,1,0,505 -"8589",0,1,1,75,2,1,4,0,11,3,1,0,505 -"8590",0,1,1,60,2,1,4,0,8,3,0,0,505 -"8591",0,1,1,53,1,1,4,1,12,3,0,0,505 -"8592",1,0,0,46,3,1,4,0,9,3,0,0,505 -"8593",0,1,0,63,2,1,4,0,11,3,1,0,505 -"8594",0,1,0,57,1,1,3,1,3,4,0,0,506 -"8595",0,1,0,44,1,1,3,1,11,4,0,0,506 -"8596",1,1,0,35,5,1,3,0,8,4,0,0,506 -"8597",0,1,0,64,1,1,3,0,10,4,1,0,506 -"8598",0,1,0,41,1,1,3,1,11,4,0,0,506 -"8599",0,1,0,54,2,1,3,1,7,4,1,0,506 -"8600",0,1,0,36,3,1,3,1,8,4,0,0,506 -"8601",0,1,1,53,1,1,3,0,12,4,0,0,506 -"8602",0,1,1,66,2,1,3,1,8,4,0,0,506 -"8603",0,1,0,74,1,1,3,0,10,4,1,0,506 -"8604",0,0,1,39,4,1,3,1,9,4,1,0,506 -"8605",0,0,0,42,2,1,3,1,9,4,0,0,506 -"8606",1,0,1,35,5,1,3,0,9,4,0,0,506 -"8607",0,1,1,68,2,1,3,1,10,4,0,0,506 -"8608",0,1,1,33,1,1,3,1,10,4,0,0,506 -"8609",0,1,0,57,1,1,3,0,9,4,0,0,506 -"8610",0,1,0,48,2,1,3,1,8,4,0,0,506 -"8611",0,1,0,60,1,1,4,0,10,1,1,0,507 -"8612",0,1,1,53,2,1,4,0,9,1,1,0,507 -"8613",0,1,0,54,3,1,4,1,12,1,1,0,507 -"8614",0,0,0,49,2,1,4,0,9,1,0,0,507 -"8615",0,0,1,47,2,1,4,1,11,1,0,0,507 -"8616",0,1,0,59,2,1,4,0,9,1,1,0,507 -"8617",0,0,0,44,1,1,4,1,10,1,1,0,507 -"8618",0,0,0,45,5,1,4,1,8,1,1,0,507 -"8619",0,1,1,56,1,1,4,1,8,1,1,0,507 -"8620",0,1,0,60,2,1,4,1,12,1,0,0,507 -"8621",0,1,0,47,1,1,4,0,8,1,1,0,507 -"8622",0,1,1,61,2,1,4,0,10,1,1,0,507 -"8623",0,1,0,50,1,1,4,1,10,1,0,0,507 -"8624",0,0,0,54,1,1,4,0,9,1,1,0,507 -"8625",0,1,0,60,3,1,4,1,13,1,1,0,507 -"8626",0,1,0,49,2,1,4,1,4,1,0,0,507 -"8627",1,0,0,49,3,1,4,1,11,1,1,0,507 -"8628",0,1,0,62,4,1,4,1,10,1,1,0,507 -"8629",0,1,0,49,2,1,4,1,8,1,0,0,507 -"8630",1,0,1,44,5,1,4,0,12,1,1,0,507 -"8631",0,1,1,52,2,1,4,1,10,1,1,0,507 -"8632",0,1,0,61,3,1,4,0,14,1,1,0,507 -"8633",0,1,1,54,2,1,3,0,9,3,0,0,508 -"8634",0,1,1,62,2,1,3,1,11,3,0,0,508 -"8635",0,1,1,55,1,1,3,1,10,3,0,0,508 -"8636",0,1,1,41,2,1,3,1,10,3,0,0,508 -"8637",0,1,0,60,2,1,3,0,11,3,0,0,508 -"8638",0,1,1,41,2,1,3,0,2,3,0,0,508 -"8639",0,1,0,63,2,1,3,0,10,3,1,0,508 -"8640",0,1,0,51,2,1,3,0,8,3,0,0,508 -"8641",0,0,1,50,4,1,3,0,8,3,1,0,508 -"8642",0,1,0,59,2,1,3,1,12,3,1,0,508 -"8643",0,0,0,51,3,1,3,1,8,3,1,0,508 -"8644",0,1,1,58,1,1,3,0,9,3,0,0,508 -"8645",0,1,0,63,2,1,3,0,10,3,0,0,508 -"8646",0,1,1,47,3,1,3,1,10,3,0,0,508 -"8647",0,1,0,53,4,1,3,0,11,3,1,0,508 -"8648",0,1,0,61,4,1,3,1,11,3,1,0,508 -"8649",0,1,1,55,1,1,3,0,10,3,0,0,508 -"8650",0,1,1,60,1,1,3,0,9,3,0,0,508 -"8651",0,1,1,53,5,1,3,0,12,3,1,0,508 -"8652",0,0,1,72,3,1,3,0,10,3,0,0,508 -"8653",0,1,1,51,2,1,3,1,12,3,0,0,508 -"8654",0,1,0,59,1,1,3,0,7,3,0,0,508 -"8655",0,1,1,52,1,1,3,0,11,3,0,0,508 -"8656",0,1,1,48,5,1,3,1,8,3,0,0,508 -"8657",0,1,0,65,2,1,3,1,10,3,0,0,508 -"8658",0,1,1,61,3,1,3,1,10,3,0,0,508 -"8659",0,0,0,51,2,1,3,0,10,3,1,0,508 -"8660",1,1,1,59,4,1,4,0,11,1,0,0,509 -"8661",0,1,0,54,2,1,4,0,9,1,1,0,509 -"8662",0,1,1,54,2,1,4,1,10,1,1,0,509 -"8663",1,0,1,56,3,1,4,0,13,1,0,0,509 -"8664",1,1,1,54,2,1,4,0,11,1,0,0,509 -"8665",0,1,1,50,2,1,4,0,10,1,0,0,509 -"8666",1,0,0,41,2,1,4,0,10,1,0,0,509 -"8667",0,1,1,62,3,1,4,0,11,1,0,0,509 -"8668",1,1,0,50,3,1,4,0,9,1,0,0,509 -"8669",1,1,0,52,1,1,4,0,11,1,0,0,509 -"8670",0,1,0,66,3,1,4,0,10,1,0,0,509 -"8671",0,1,0,49,3,1,4,1,12,1,1,0,509 -"8672",0,1,0,47,2,1,4,1,12,1,1,0,509 -"8673",0,1,0,55,3,1,4,1,7,1,0,0,509 -"8674",0,1,0,49,1,1,4,0,9,1,0,0,509 -"8675",0,1,1,44,1,1,3,1,10,4,0,0,510 -"8676",0,1,0,58,2,1,3,1,6,4,0,0,510 -"8677",0,0,1,62,2,1,3,0,9,4,0,0,510 -"8678",0,1,0,42,2,1,3,1,9,4,0,0,510 -"8679",0,1,1,60,3,1,3,1,10,4,1,0,510 -"8680",0,1,1,46,1,1,3,0,12,4,0,0,510 -"8681",0,0,1,63,2,1,3,0,7,4,0,0,510 -"8682",0,1,0,60,2,1,3,1,12,4,1,0,510 -"8683",0,1,0,59,1,1,3,0,9,4,0,0,510 -"8684",0,0,0,61,2,1,3,1,8,4,1,0,510 -"8685",0,1,1,58,2,1,3,0,10,4,1,0,510 -"8686",1,1,0,33,1,1,3,0,11,4,0,0,510 -"8687",0,0,1,47,3,1,3,0,10,4,1,0,510 -"8688",0,1,1,52,1,1,3,1,5,4,0,0,510 -"8689",0,1,1,37,1,1,3,0,8,4,0,0,510 -"8690",0,1,1,42,2,0,3,1,10,5,1,0,511 -"8691",0,1,0,67,1,0,3,1,10,5,1,0,511 -"8692",0,1,0,60,1,0,3,1,12,5,0,0,511 -"8693",0,1,0,35,2,0,3,0,8,5,1,0,511 -"8694",0,1,0,54,1,0,3,1,7,5,0,0,511 -"8695",0,1,0,51,1,1,4,1,9,5,0,0,512 -"8696",0,1,0,54,1,1,4,0,10,5,0,0,512 -"8697",0,0,0,40,2,1,4,0,9,5,0,0,512 -"8698",0,1,0,38,1,1,4,1,8,5,0,0,512 -"8699",0,1,0,53,2,1,4,1,8,5,0,0,512 -"8700",0,1,0,49,2,1,4,1,10,5,0,0,512 -"8701",0,1,1,63,2,1,4,1,10,5,1,0,512 -"8702",0,1,0,49,2,1,4,1,9,5,0,0,512 -"8703",1,0,0,54,2,1,4,0,9,5,0,0,512 -"8704",0,1,0,55,2,1,4,1,10,5,0,0,512 -"8705",0,1,0,54,1,1,4,1,10,5,1,0,512 -"8706",0,1,1,67,2,1,4,0,10,5,0,0,512 -"8707",0,1,1,39,1,1,4,1,8,5,0,0,512 -"8708",0,1,0,47,4,1,4,1,10,5,0,0,512 -"8709",0,1,1,53,1,1,4,1,9,5,0,0,512 -"8710",0,0,1,46,4,1,4,1,11,5,0,0,512 -"8711",1,1,1,67,1,1,4,0,7,5,0,0,512 -"8712",0,0,1,58,4,1,4,0,7,5,0,0,512 -"8713",1,0,1,63,2,1,4,0,10,5,0,0,512 -"8714",0,1,0,56,2,1,4,1,11,5,1,0,512 -"8715",0,0,1,54,3,1,4,0,6,5,0,0,512 -"8716",0,1,1,47,1,1,4,0,8,5,0,0,512 -"8717",0,1,0,47,1,1,3,0,9,3,0,0,513 -"8718",0,1,0,56,1,1,3,1,10,3,0,0,513 -"8719",0,1,0,49,2,1,3,1,8,3,1,0,513 -"8720",0,1,1,42,1,1,3,0,8,3,0,0,513 -"8721",0,1,1,55,4,1,3,1,10,3,0,0,513 -"8722",0,0,0,55,3,1,3,1,12,3,0,0,513 -"8723",1,1,1,60,4,1,3,0,7,3,0,0,513 -"8724",0,0,0,56,3,1,3,1,10,3,0,0,513 -"8725",0,1,0,48,3,1,3,1,12,3,1,0,513 -"8726",0,1,0,60,1,1,3,1,7,3,0,0,513 -"8727",0,1,0,62,3,1,3,0,8,3,1,0,513 -"8728",0,1,1,51,1,1,3,1,11,3,1,0,513 -"8729",0,0,0,60,2,1,3,0,10,3,0,0,513 -"8730",1,1,0,45,2,1,3,0,10,3,0,0,513 -"8731",1,1,0,50,2,1,3,0,6,3,0,0,513 -"8732",0,1,1,53,1,1,3,1,9,3,0,0,513 -"8733",0,1,1,48,4,1,3,1,9,3,0,0,513 -"8734",0,1,0,34,2,1,3,0,8,3,0,0,513 -"8735",1,1,1,37,3,1,3,0,8,3,0,0,513 -"8736",0,1,0,58,2,1,3,0,10,3,0,0,513 -"8737",0,1,1,61,1,1,3,0,9,3,1,0,513 -"8738",0,1,1,55,2,1,3,0,11,3,1,0,513 -"8739",0,1,0,44,1,1,3,0,7,3,0,0,513 -"8740",1,1,0,45,3,1,3,0,6,3,0,0,513 -"8741",0,1,1,58,2,1,5,0,10,1,0,0,514 -"8742",0,1,0,53,2,1,5,0,13,1,1,0,514 -"8743",0,1,1,57,1,1,5,1,12,1,1,0,514 -"8744",0,1,0,61,5,1,5,1,12,1,1,0,514 -"8745",0,1,0,57,2,1,5,0,12,1,0,0,514 -"8746",0,1,0,55,3,1,5,0,12,1,1,0,514 -"8747",0,1,1,62,2,1,5,0,10,1,1,0,514 -"8748",0,1,0,67,3,1,5,1,12,1,1,0,514 -"8749",0,1,0,59,1,1,5,0,13,1,1,0,514 -"8750",0,1,1,49,2,1,5,0,10,1,1,0,514 -"8751",0,1,0,61,2,1,4,0,12,1,0,1,515 -"8752",0,1,1,57,1,1,4,1,8,1,0,1,515 -"8753",0,1,1,65,2,1,4,0,8,1,1,1,515 -"8754",0,1,0,47,1,1,4,1,13,1,1,1,515 -"8755",0,1,1,48,2,1,4,1,6,1,1,1,515 -"8756",0,1,1,50,1,1,4,1,5,1,0,1,515 -"8757",0,0,1,45,3,1,4,1,5,1,1,1,515 -"8758",0,1,1,62,1,1,4,1,11,1,0,1,515 -"8759",0,1,1,77,1,1,4,0,13,1,1,1,515 -"8760",0,1,1,50,2,1,4,0,9,1,0,1,515 -"8761",0,1,0,66,1,1,4,1,9,1,0,1,515 -"8762",0,1,0,44,2,1,4,1,11,1,1,1,515 -"8763",1,1,0,58,1,1,4,0,6,1,1,1,515 -"8764",0,1,1,61,1,1,4,1,12,1,1,1,515 -"8765",0,1,1,50,2,1,4,0,9,1,0,1,515 -"8766",0,1,1,46,1,1,4,0,11,1,0,1,515 -"8767",0,0,1,61,2,1,4,0,10,1,1,1,515 -"8768",0,1,0,57,1,1,4,1,11,1,1,1,515 -"8769",0,1,1,45,2,1,4,1,8,1,0,1,515 -"8770",0,1,0,66,3,1,4,0,7,1,1,1,515 -"8771",0,1,1,66,1,1,4,1,11,1,0,1,515 -"8772",0,1,1,54,2,1,4,1,9,1,1,1,515 -"8773",0,1,1,54,2,1,4,0,11,1,0,1,515 -"8774",0,1,1,58,1,1,4,1,10,1,1,1,515 -"8775",0,1,1,59,2,1,4,1,9,7,1,0,516 -"8776",0,1,0,31,1,1,4,1,9,7,1,0,516 -"8777",0,1,0,49,2,1,4,1,9,7,0,0,516 -"8778",0,1,1,38,1,1,4,1,9,7,0,0,516 -"8779",0,1,0,51,2,1,4,1,9,7,0,0,516 -"8780",0,1,0,44,2,1,4,1,5,7,1,0,516 -"8781",0,1,0,60,2,1,4,0,12,7,1,0,516 -"8782",0,1,0,60,3,1,4,0,13,7,1,0,516 -"8783",0,1,0,41,3,1,4,1,6,7,0,0,516 -"8784",0,1,0,46,2,1,4,0,8,7,0,0,516 -"8785",0,1,0,40,1,1,4,0,6,7,0,0,516 -"8786",0,1,1,47,3,1,4,1,9,7,0,0,516 -"8787",1,1,1,50,4,1,4,0,7,7,0,0,516 -"8788",0,1,1,45,2,1,4,1,8,7,0,0,516 -"8789",0,0,0,32,4,1,4,1,8,7,1,0,516 -"8790",0,1,0,44,3,1,4,0,2,7,0,0,516 -"8791",0,1,0,63,2,1,4,1,8,7,0,0,516 -"8792",0,1,0,58,2,1,4,1,9,3,0,0,517 -"8793",0,1,0,49,1,1,4,1,9,3,0,0,517 -"8794",0,1,1,50,2,1,4,0,8,3,0,0,517 -"8795",0,1,0,56,1,1,4,1,9,3,1,0,517 -"8796",0,1,0,62,1,1,4,1,10,3,1,0,517 -"8797",1,1,0,53,3,1,4,0,12,3,0,0,517 -"8798",0,1,1,59,2,1,4,0,10,3,0,0,517 -"8799",0,1,1,56,2,1,4,0,10,3,1,0,517 -"8800",1,0,1,39,4,1,4,0,10,3,1,0,517 -"8801",0,1,1,58,2,1,4,1,11,3,0,0,517 -"8802",0,1,0,50,2,1,4,0,10,3,0,0,517 -"8803",1,0,0,43,5,1,4,1,8,3,0,0,517 -"8804",0,1,0,63,3,1,4,0,10,3,1,0,517 -"8805",1,0,0,48,3,1,4,0,10,3,0,0,517 -"8806",0,1,0,38,2,1,4,0,8,3,0,0,517 -"8807",0,1,1,50,1,1,4,1,9,3,1,0,517 -"8808",0,1,1,58,2,1,4,0,9,3,0,0,517 -"8809",0,1,1,58,1,1,4,0,9,3,0,0,517 -"8810",0,0,0,41,3,1,4,0,10,3,1,0,517 -"8811",0,1,1,60,2,1,4,0,8,3,0,0,517 -"8812",0,1,1,54,1,1,4,0,9,3,0,0,517 -"8813",0,1,0,63,2,1,4,1,11,3,0,0,517 -"8814",0,1,0,58,1,1,4,1,10,3,1,0,517 -"8815",0,0,0,42,2,1,4,0,11,3,1,0,517 -"8816",0,1,0,64,2,1,4,1,11,3,1,0,517 -"8817",0,1,0,43,2,1,4,1,5,3,0,0,517 -"8818",1,1,0,45,2,1,4,1,4,3,0,0,518 -"8819",1,1,0,54,3,1,4,1,7,3,0,0,518 -"8820",0,1,1,51,2,1,4,1,9,3,0,0,518 -"8821",0,1,0,49,1,1,4,0,10,3,0,0,518 -"8822",0,1,0,58,3,1,4,1,9,3,0,0,518 -"8823",0,1,1,51,2,1,4,1,7,3,0,0,518 -"8824",0,1,1,63,3,1,4,1,11,3,0,0,518 -"8825",0,1,0,44,2,1,4,1,9,3,1,0,518 -"8826",0,1,0,57,2,1,4,1,8,3,0,0,518 -"8827",0,1,1,51,1,1,4,1,12,3,1,0,518 -"8828",0,1,1,51,1,1,4,0,8,3,0,0,518 -"8829",0,1,0,57,2,1,4,1,13,3,0,0,518 -"8830",0,1,0,58,2,1,4,0,13,3,1,0,518 -"8831",0,1,1,51,2,1,4,1,9,3,0,0,518 -"8832",1,0,1,63,1,1,4,0,12,3,1,0,518 -"8833",0,0,0,51,1,1,4,0,12,3,1,0,518 -"8834",0,1,1,36,1,1,4,1,9,3,0,0,518 -"8835",1,1,1,46,2,1,4,0,7,3,0,0,518 -"8836",0,1,0,58,3,1,4,0,10,5,1,0,519 -"8837",0,1,0,58,2,1,4,0,10,5,1,0,519 -"8838",0,1,0,52,2,1,4,0,8,5,1,0,519 -"8839",0,1,0,54,4,1,4,1,9,5,0,0,519 -"8840",0,1,1,69,2,1,4,1,10,5,1,0,519 -"8841",0,1,0,49,5,1,4,1,10,5,0,0,519 -"8842",1,1,1,52,3,1,4,1,7,5,0,0,519 -"8843",0,1,1,61,2,1,4,1,10,5,0,0,519 -"8844",0,1,0,43,3,1,4,1,8,5,1,0,519 -"8845",0,1,0,43,2,1,4,1,6,5,0,0,519 -"8846",0,1,0,51,2,1,4,0,10,5,0,0,519 -"8847",1,1,1,61,4,1,4,0,12,5,0,0,519 -"8848",0,1,0,50,3,1,4,1,8,5,0,0,519 -"8849",1,0,1,35,3,1,5,0,11,2,1,0,520 -"8850",0,1,0,64,3,1,5,1,10,2,0,0,520 -"8851",0,1,1,52,1,1,5,1,12,2,1,0,520 -"8852",0,1,0,54,2,1,5,1,10,2,1,0,520 -"8853",0,0,1,29,1,1,5,1,6,2,0,0,520 -"8854",0,1,0,41,3,1,5,1,6,2,0,0,520 -"8855",0,1,0,60,3,1,5,0,8,2,0,0,520 -"8856",0,1,0,43,5,1,5,0,11,2,1,0,520 -"8857",0,1,0,54,2,1,5,1,10,2,0,0,520 -"8858",0,0,0,47,3,1,5,1,12,2,0,0,520 -"8859",0,1,0,57,2,1,5,0,11,2,1,0,520 -"8860",0,1,0,46,1,1,5,0,9,2,0,0,520 -"8861",0,1,0,62,1,1,5,0,9,2,0,0,520 -"8862",0,1,1,64,2,1,5,0,10,2,1,0,520 -"8863",1,1,0,51,3,1,5,1,8,2,0,0,520 -"8864",1,1,0,34,3,1,5,0,10,2,0,0,520 -"8865",0,1,0,63,2,1,5,0,11,2,1,0,520 -"8866",0,0,1,60,2,1,5,0,11,2,1,0,520 -"8867",0,0,0,54,2,1,4,0,7,1,1,0,521 -"8868",0,1,0,67,1,1,4,0,5,1,0,0,521 -"8869",0,1,0,58,3,1,4,1,11,1,0,0,521 -"8870",0,1,1,70,1,1,4,0,10,1,1,0,521 -"8871",0,1,0,49,1,1,4,1,9,1,0,0,521 -"8872",0,1,0,64,3,1,4,0,11,1,0,0,521 -"8873",0,1,1,54,3,1,4,1,9,1,1,0,521 -"8874",0,1,0,64,2,1,4,1,13,1,1,0,521 -"8875",0,1,0,47,2,1,4,1,11,1,1,0,521 -"8876",0,1,0,43,1,1,4,1,6,1,1,0,521 -"8877",0,1,0,54,2,1,4,1,8,1,0,0,521 -"8878",0,1,0,46,3,1,4,1,11,1,0,0,521 -"8879",0,1,0,46,3,1,4,0,10,1,0,0,521 -"8880",0,0,0,62,3,1,4,0,6,1,0,0,521 -"8881",0,1,0,37,3,1,4,1,8,5,0,0,522 -"8882",0,1,1,55,2,1,4,0,9,5,0,0,522 -"8883",0,1,0,48,2,1,4,0,9,5,0,0,522 -"8884",0,1,0,34,2,1,4,1,5,5,0,0,522 -"8885",0,1,0,57,3,1,4,0,7,5,0,0,522 -"8886",0,1,0,37,2,1,4,1,7,5,0,0,522 -"8887",0,1,0,41,2,1,4,1,8,5,0,0,522 -"8888",1,0,0,37,3,1,4,1,8,5,0,0,522 -"8889",0,1,0,51,2,1,4,1,8,5,0,0,522 -"8890",0,1,1,47,3,1,4,1,9,5,0,0,522 -"8891",0,1,1,46,3,1,4,1,7,5,0,0,522 -"8892",0,1,1,53,4,1,4,0,12,5,1,0,522 -"8893",0,0,1,26,2,1,4,0,10,5,0,0,522 -"8894",0,1,0,44,2,1,4,0,10,5,0,0,522 -"8895",0,1,0,32,3,1,4,1,9,5,0,0,522 -"8896",0,1,0,53,5,1,4,1,11,5,0,0,522 -"8897",0,1,0,47,2,1,4,1,9,5,0,0,522 -"8898",1,0,1,55,3,1,4,0,10,5,0,0,522 -"8899",1,0,1,34,2,1,4,1,6,4,1,0,523 -"8900",0,1,0,42,2,1,4,1,9,4,1,0,523 -"8901",0,1,0,51,1,1,4,1,10,4,1,0,523 -"8902",0,1,1,42,3,1,4,0,7,4,0,0,523 -"8903",0,1,1,57,5,1,4,0,10,4,0,0,523 -"8904",0,1,0,54,2,1,4,0,11,4,1,0,523 -"8905",0,1,0,57,2,1,4,1,8,4,1,0,523 -"8906",0,1,0,43,3,1,4,0,5,4,0,0,523 -"8907",0,1,0,55,1,1,4,1,9,4,1,0,523 -"8908",0,1,1,55,1,1,4,1,14,4,1,0,523 -"8909",0,0,1,60,2,1,4,1,10,4,1,0,523 -"8910",0,1,1,50,2,1,5,1,9,5,0,0,524 -"8911",0,1,0,49,1,1,5,1,9,5,0,0,524 -"8912",0,1,0,53,3,1,5,0,9,5,0,0,524 -"8913",1,1,1,44,5,1,5,0,6,5,0,0,524 -"8914",0,1,0,58,1,1,5,1,11,5,0,0,524 -"8915",0,1,0,76,1,1,5,0,10,5,0,0,524 -"8916",0,1,0,51,2,1,5,1,10,5,0,0,524 -"8917",0,1,0,54,2,1,5,1,10,5,0,0,524 -"8918",0,1,1,44,2,1,5,1,10,5,1,0,524 -"8919",1,1,0,47,3,1,5,0,10,5,0,0,524 -"8920",0,1,1,50,1,1,5,0,9,5,0,0,524 -"8921",0,1,0,48,2,1,5,1,10,5,0,0,524 -"8922",0,1,1,62,1,1,5,0,3,5,0,0,524 -"8923",0,1,0,54,1,1,5,0,9,5,0,0,524 -"8924",0,0,0,42,2,1,5,1,12,5,0,0,524 -"8925",0,1,1,45,5,1,5,0,8,5,0,0,524 -"8926",0,1,0,46,3,1,5,1,9,5,0,0,524 -"8927",0,1,1,53,2,1,5,1,7,5,1,0,524 -"8928",0,1,1,60,2,1,5,1,10,5,1,0,524 -"8929",0,1,0,41,2,1,3,1,10,6,1,0,525 -"8930",0,1,0,38,2,1,3,0,10,6,1,0,525 -"8931",0,1,0,33,3,1,3,0,4,6,0,0,525 -"8932",0,1,1,49,2,1,3,1,8,6,1,0,525 -"8933",0,1,0,38,2,1,3,1,8,6,0,0,525 -"8934",1,1,0,44,2,1,3,0,4,6,1,0,525 -"8935",1,1,1,61,3,1,3,0,8,6,1,0,525 -"8936",0,1,0,64,3,1,3,0,13,6,0,0,525 -"8937",0,1,0,48,2,1,3,1,12,6,1,0,525 -"8938",0,1,0,58,2,1,3,0,9,1,0,0,526 -"8939",0,1,0,50,4,1,3,1,9,1,0,0,526 -"8940",0,1,0,73,1,1,3,0,9,1,1,0,526 -"8941",0,1,0,55,2,1,3,0,14,1,1,0,526 -"8942",1,1,1,61,3,1,3,1,12,1,1,0,526 -"8943",0,1,0,72,2,1,3,0,10,1,1,0,526 -"8944",0,1,1,50,2,1,3,1,11,1,0,0,526 -"8945",0,1,0,63,2,1,3,1,10,1,1,0,526 -"8946",0,1,1,62,2,1,3,0,9,1,0,0,526 -"8947",0,1,0,50,2,1,3,1,11,1,0,0,526 -"8948",0,1,1,56,2,1,3,1,9,1,1,0,526 -"8949",0,1,0,51,1,1,3,0,8,1,0,0,526 -"8950",0,1,1,37,3,1,3,1,9,1,0,0,526 -"8951",0,1,0,65,2,1,3,1,8,1,1,0,526 -"8952",0,1,0,54,1,1,3,1,3,1,0,0,526 -"8953",0,1,1,49,2,1,3,0,10,1,0,0,526 -"8954",0,1,0,61,2,1,3,1,12,1,1,0,526 -"8955",0,1,1,56,2,1,3,1,12,1,0,0,526 -"8956",0,1,0,53,1,1,3,0,9,1,1,0,526 -"8957",0,1,0,48,1,1,3,1,9,1,1,0,526 -"8958",0,1,0,69,1,1,3,1,10,1,1,0,526 -"8959",0,1,1,40,1,1,5,0,8,1,0,0,527 -"8960",0,1,0,37,2,1,5,0,9,1,1,0,527 -"8961",1,1,0,35,3,1,3,0,10,2,1,0,528 -"8962",0,1,0,42,2,1,3,1,11,2,0,0,528 -"8963",0,1,0,46,2,1,3,0,4,2,0,0,528 -"8964",0,1,0,55,2,1,3,1,10,2,0,0,528 -"8965",0,1,0,59,3,1,3,1,10,2,1,0,528 -"8966",0,1,0,52,1,1,3,0,8,2,0,0,528 -"8967",1,1,0,41,2,1,3,1,7,2,1,0,528 -"8968",1,0,0,30,2,1,3,1,5,2,0,0,528 -"8969",1,1,1,42,2,1,3,1,6,2,1,0,528 -"8970",0,0,0,49,3,1,3,0,9,2,0,0,528 -"8971",0,1,0,51,4,1,3,1,10,2,0,0,528 -"8972",0,1,0,46,4,1,3,1,9,2,1,0,528 -"8973",0,1,0,46,3,1,3,1,10,2,0,0,528 -"8974",0,1,0,46,4,1,3,0,3,2,0,0,528 -"8975",1,1,0,45,2,1,3,0,9,2,0,0,528 -"8976",0,1,0,39,2,1,3,1,6,2,0,0,528 -"8977",0,1,0,48,2,1,3,1,9,2,0,0,528 -"8978",1,1,0,44,3,1,3,1,8,2,0,0,528 -"8979",0,0,1,48,4,1,3,0,10,7,0,0,529 -"8980",0,1,0,35,5,1,3,0,5,7,1,0,529 -"8981",0,1,1,56,2,1,3,0,5,7,1,0,529 -"8982",0,1,0,44,2,1,3,1,8,7,0,0,529 -"8983",0,1,0,41,2,1,3,1,9,7,1,0,529 -"8984",0,1,0,36,5,1,3,0,3,7,0,0,529 -"8985",0,1,0,42,5,1,3,0,8,7,0,0,529 -"8986",0,1,1,54,4,1,3,0,10,7,0,0,529 -"8987",0,1,0,40,3,1,3,0,10,7,1,0,529 -"8988",0,1,0,52,5,1,3,1,12,7,1,0,529 -"8989",1,1,0,47,2,1,3,0,10,7,0,0,529 -"8990",1,0,0,39,5,1,3,1,7,7,1,0,529 -"8991",1,0,0,40,1,1,3,1,9,7,0,0,529 -"8992",0,0,0,40,5,1,3,0,5,7,0,0,529 -"8993",0,1,0,50,5,1,3,1,7,7,1,0,529 -"8994",1,1,0,40,5,1,3,0,9,7,0,0,529 -"8995",0,1,1,47,3,1,3,1,10,7,0,0,529 -"8996",0,1,1,47,3,1,3,1,6,7,0,0,529 -"8997",0,1,0,48,2,1,3,1,2,7,0,0,529 -"8998",0,1,1,43,3,1,3,1,11,7,0,0,529 -"8999",1,1,0,38,3,1,3,0,10,7,0,0,529 -"9000",0,1,1,42,3,1,3,0,10,4,1,0,530 -"9001",0,1,1,53,1,1,3,0,9,4,0,0,530 -"9002",0,0,0,42,1,1,3,0,10,4,0,0,530 -"9003",0,1,0,67,3,1,3,1,10,4,1,0,530 -"9004",0,1,1,51,1,1,3,0,10,4,0,0,530 -"9005",0,1,1,46,2,1,3,1,9,4,0,0,530 -"9006",0,1,0,51,2,1,3,1,7,4,0,0,530 -"9007",0,0,0,34,1,1,3,1,9,4,0,0,530 -"9008",0,1,1,47,2,1,3,0,9,4,0,0,530 -"9009",0,0,0,40,3,1,3,1,9,4,0,0,530 -"9010",0,1,1,65,4,1,3,0,9,4,0,0,530 -"9011",0,1,0,45,2,1,3,0,11,4,1,0,530 -"9012",0,1,1,50,2,1,3,1,12,4,1,0,530 -"9013",1,1,1,38,2,1,3,0,10,4,1,0,530 -"9014",0,1,0,37,1,1,3,1,11,4,0,0,530 -"9015",0,0,1,46,3,1,3,0,8,4,1,0,530 -"9016",0,0,0,44,5,1,3,1,11,4,0,0,530 -"9017",1,0,0,37,3,1,3,1,8,4,0,0,530 -"9018",0,1,1,41,2,1,3,1,10,4,1,0,530 -"9019",1,1,0,44,1,1,3,0,9,4,0,0,530 -"9020",0,0,1,47,3,1,5,0,11,1,1,1,531 -"9021",0,1,0,64,1,1,5,1,9,1,0,1,531 -"9022",0,1,1,52,2,1,5,0,10,1,1,1,531 -"9023",0,1,0,50,2,1,5,1,8,1,1,1,531 -"9024",0,1,1,38,2,1,5,0,12,1,1,1,531 -"9025",0,1,1,49,2,1,5,1,12,1,1,1,531 -"9026",0,1,0,40,1,1,5,1,11,1,0,1,531 -"9027",0,1,0,53,2,1,5,1,12,1,1,1,531 -"9028",0,1,0,45,5,1,5,0,11,1,1,1,531 -"9029",0,1,0,51,2,1,5,1,11,1,1,1,531 -"9030",1,1,0,58,2,1,5,1,10,1,1,1,531 -"9031",0,0,0,55,2,1,5,0,12,1,1,1,531 -"9032",0,1,0,45,2,1,5,1,10,1,0,1,531 -"9033",0,1,0,50,2,1,5,1,14,1,0,1,531 -"9034",0,1,1,61,2,1,5,1,12,1,1,1,531 -"9035",0,1,0,47,2,1,5,1,11,1,0,1,531 -"9036",0,1,0,41,2,1,4,1,8,6,1,0,532 -"9037",0,1,1,38,2,1,4,0,9,6,1,0,532 -"9038",0,0,1,48,1,1,4,0,6,6,0,0,532 -"9039",0,1,0,54,1,1,4,1,7,6,0,0,532 -"9040",0,1,0,39,1,1,4,0,10,6,0,0,532 -"9041",0,1,0,49,2,1,4,1,9,6,1,0,532 -"9042",0,1,0,46,1,1,4,1,6,6,0,0,532 -"9043",0,1,0,41,2,1,4,0,6,6,0,0,532 -"9044",0,1,0,42,3,1,4,1,5,6,0,0,532 -"9045",0,1,0,45,3,1,4,1,7,5,0,0,533 -"9046",0,1,0,56,1,1,4,0,9,5,1,0,533 -"9047",0,0,0,63,5,1,4,0,5,5,1,0,533 -"9048",1,1,0,47,3,1,4,0,9,5,0,0,533 -"9049",0,1,1,50,3,1,4,0,8,5,0,0,533 -"9050",0,1,0,46,3,1,4,1,6,5,0,0,533 -"9051",0,1,0,35,3,1,4,0,2,5,0,0,533 -"9052",0,1,0,43,4,1,4,0,9,5,0,0,533 -"9053",0,1,0,43,3,1,4,1,10,5,1,0,533 -"9054",0,1,0,50,1,1,4,1,11,5,1,0,533 -"9055",0,1,0,54,1,1,4,1,9,5,1,0,533 -"9056",0,1,1,42,2,1,4,0,12,5,0,0,533 -"9057",0,1,0,49,3,1,4,1,10,5,0,0,533 -"9058",1,1,0,51,5,1,4,0,8,5,0,0,533 -"9059",1,1,0,45,3,1,4,1,8,5,0,0,533 -"9060",1,1,1,45,4,1,4,0,7,5,0,0,533 -"9061",0,1,0,51,2,1,4,0,11,5,0,0,533 -"9062",0,1,0,39,3,1,4,0,9,5,0,0,533 -"9063",0,0,0,33,4,1,4,0,9,5,0,0,533 -"9064",0,1,0,47,3,1,4,1,10,5,1,0,533 -"9065",0,1,0,41,2,1,4,1,10,5,0,0,533 -"9066",0,1,0,55,3,1,4,0,9,5,0,0,533 -"9067",0,1,1,45,1,1,4,1,11,5,0,0,533 -"9068",0,1,0,41,3,1,4,0,8,2,0,0,534 -"9069",0,1,0,41,3,1,4,0,6,2,0,0,534 -"9070",0,1,1,53,1,1,4,0,9,2,0,0,534 -"9071",0,1,1,52,4,1,4,1,12,2,1,0,534 -"9072",0,1,0,52,1,1,4,0,10,2,0,0,534 -"9073",1,0,0,57,2,1,4,0,11,2,1,0,534 -"9074",0,1,1,61,1,1,4,1,10,2,0,0,534 -"9075",0,1,0,62,1,1,4,0,11,2,1,0,534 -"9076",0,1,0,42,3,1,4,1,1,2,0,0,534 -"9077",0,1,1,80,3,1,4,1,12,2,0,0,534 -"9078",0,1,1,55,2,1,4,1,9,2,1,0,534 -"9079",1,1,0,35,2,1,4,1,7,2,0,0,534 -"9080",0,1,1,41,2,1,2,1,8,6,0,0,535 -"9081",1,1,0,51,3,1,2,0,8,6,0,0,535 -"9082",0,1,0,61,1,1,2,0,11,6,1,0,535 -"9083",0,1,0,28,1,1,2,1,9,6,0,0,535 -"9084",0,1,0,64,1,1,2,0,10,6,1,0,535 -"9085",0,1,0,56,2,1,2,1,8,6,0,0,535 -"9086",0,1,0,51,1,1,2,0,9,6,0,0,535 -"9087",0,1,0,59,2,1,2,0,9,6,1,0,535 -"9088",0,1,0,73,1,1,2,1,9,6,0,0,535 -"9089",0,1,0,57,1,1,2,1,4,6,0,0,535 -"9090",0,1,0,55,2,1,2,1,5,6,0,0,535 -"9091",0,1,0,69,2,1,2,0,9,6,1,0,535 -"9092",0,1,0,65,5,1,2,0,5,6,0,0,535 -"9093",0,1,1,51,3,1,2,0,8,6,1,0,535 -"9094",0,1,0,70,1,1,2,1,10,6,1,0,535 -"9095",0,1,0,68,2,1,2,0,9,6,0,0,535 -"9096",0,1,0,54,2,1,2,1,7,6,0,0,535 -"9097",0,0,0,46,5,1,2,1,9,6,0,0,535 -"9098",0,1,0,66,1,1,2,1,12,6,1,0,535 -"9099",1,0,0,46,5,1,2,0,8,6,0,0,535 -"9100",0,1,0,69,3,1,2,1,10,6,1,0,535 -"9101",0,1,0,56,2,1,2,1,8,6,0,0,535 -"9102",0,1,0,48,2,1,2,1,4,6,0,0,535 -"9103",0,1,0,64,2,1,2,0,11,6,0,0,535 -"9104",0,1,0,54,1,1,2,1,8,6,1,0,535 -"9105",0,1,0,48,3,1,2,0,8,6,0,0,535 -"9106",1,1,0,27,5,1,2,0,1,6,0,0,535 -"9107",0,1,0,52,3,1,2,0,10,6,0,0,535 -"9108",0,1,0,58,4,1,2,1,6,6,0,0,535 -"9109",0,1,0,51,2,1,4,1,8,3,0,0,536 -"9110",0,1,0,56,2,1,4,0,9,3,0,0,536 -"9111",0,1,1,53,1,1,4,0,12,3,1,0,536 -"9112",0,1,0,43,1,1,4,0,9,3,0,0,536 -"9113",0,1,1,47,4,1,4,1,8,3,0,0,536 -"9114",0,1,0,56,3,1,4,1,13,3,1,0,536 -"9115",0,1,1,51,3,1,4,0,10,3,0,0,536 -"9116",0,1,0,45,3,1,4,1,10,3,1,0,536 -"9117",0,1,0,50,2,1,4,1,12,3,1,0,536 -"9118",0,1,1,62,2,1,4,1,8,3,0,0,536 -"9119",0,1,1,46,1,1,4,0,7,3,0,0,536 -"9120",0,1,0,47,3,1,4,1,4,3,0,0,536 -"9121",0,1,0,48,2,1,4,1,10,3,0,0,536 -"9122",0,1,1,46,1,1,4,1,7,3,0,0,536 -"9123",0,1,0,33,3,1,4,0,7,4,0,0,537 -"9124",0,1,0,53,1,1,4,1,10,4,1,0,537 -"9125",0,0,0,64,1,1,4,1,12,4,1,0,537 -"9126",1,1,0,44,3,1,4,0,7,4,0,0,537 -"9127",0,1,1,48,3,1,4,0,9,4,1,0,537 -"9128",0,1,0,52,3,1,4,1,9,4,0,0,537 -"9129",0,1,0,40,2,1,4,1,9,4,0,0,537 -"9130",1,1,0,39,3,1,4,0,10,4,1,0,537 -"9131",0,1,0,41,1,1,4,1,9,4,1,0,537 -"9132",0,1,0,55,2,1,4,0,10,4,1,0,537 -"9133",0,1,0,48,1,1,4,1,10,4,0,0,537 -"9134",0,1,1,45,5,1,4,1,9,4,0,0,537 -"9135",0,1,1,30,2,1,4,0,9,4,0,0,537 -"9136",0,1,0,45,2,1,4,0,9,4,0,0,537 -"9137",0,1,1,51,3,1,4,0,9,4,0,0,537 -"9138",0,1,0,57,2,1,4,0,9,4,0,0,537 -"9139",0,1,0,55,1,1,4,0,5,4,1,0,537 -"9140",0,1,0,46,4,1,4,1,7,4,0,0,537 -"9141",0,1,0,53,1,1,4,1,11,4,1,0,537 -"9142",0,1,0,38,2,1,4,1,7,4,0,0,537 -"9143",0,0,0,53,1,1,4,0,12,4,1,0,537 -"9144",0,1,0,53,1,1,4,1,7,4,0,0,537 -"9145",0,1,1,58,2,1,4,0,9,3,1,0,538 -"9146",0,1,0,41,2,1,4,1,7,3,0,0,538 -"9147",1,1,1,40,5,1,4,1,3,3,0,0,538 -"9148",0,0,0,58,3,1,4,0,9,3,1,0,538 -"9149",0,1,0,49,1,1,4,0,6,3,0,0,538 -"9150",0,1,0,50,2,1,4,0,11,3,0,0,538 -"9151",0,1,0,47,3,1,4,0,10,3,0,0,538 -"9152",0,1,0,49,1,1,4,1,10,3,0,0,538 -"9153",0,1,1,57,2,1,4,1,10,3,1,0,538 -"9154",1,1,1,51,3,1,4,0,10,3,0,0,538 -"9155",0,1,0,59,3,1,4,0,8,3,0,0,538 -"9156",0,1,0,46,1,1,4,1,10,3,0,0,538 -"9157",0,1,0,68,2,1,4,0,10,3,0,0,538 -"9158",0,1,1,57,2,1,4,0,12,3,0,0,538 -"9159",0,1,1,55,1,1,4,0,11,3,0,0,538 -"9160",0,1,0,47,5,1,4,1,10,3,1,0,538 -"9161",0,1,1,48,1,1,4,1,9,3,0,0,538 -"9162",1,0,0,49,3,1,4,0,7,3,0,0,538 -"9163",0,1,0,40,3,1,4,0,11,3,1,0,538 -"9164",0,1,0,65,1,1,4,0,8,3,1,0,538 -"9165",0,1,0,58,1,1,4,1,12,3,1,0,538 -"9166",0,1,1,48,3,1,4,0,12,3,0,0,538 -"9167",1,1,0,52,2,1,4,0,9,3,0,0,538 -"9168",1,1,0,40,1,1,4,1,10,3,0,0,538 -"9169",0,1,0,54,2,1,4,0,6,3,0,0,538 -"9170",0,1,0,63,1,1,4,1,5,3,0,0,538 -"9171",0,1,0,56,1,0,4,1,13,1,1,1,539 -"9172",0,1,0,57,1,0,4,1,11,1,1,1,539 -"9173",0,0,0,48,2,0,4,1,5,1,0,1,539 -"9174",0,1,1,63,1,0,4,1,10,1,0,1,539 -"9175",0,1,1,55,2,0,4,1,12,1,1,1,539 -"9176",0,1,0,44,2,0,4,1,7,1,1,1,539 -"9177",0,1,0,57,3,0,4,1,11,1,1,1,539 -"9178",0,1,1,62,1,0,4,1,12,1,1,1,539 -"9179",0,1,0,57,2,0,4,1,9,1,0,1,539 -"9180",0,1,0,55,2,0,4,1,12,1,1,1,539 -"9181",0,1,0,46,1,0,4,1,9,1,1,1,539 -"9182",0,1,1,64,1,0,4,1,12,1,0,1,539 -"9183",0,1,1,52,1,0,4,1,11,1,0,1,539 -"9184",0,1,0,58,1,0,4,1,13,1,1,1,539 -"9185",0,1,1,61,1,0,4,1,12,1,0,1,539 -"9186",0,1,0,64,1,0,4,1,11,1,0,1,539 -"9187",0,0,0,46,3,0,4,1,7,1,0,1,539 -"9188",0,1,0,59,1,0,4,1,8,1,1,1,539 -"9189",0,1,1,44,2,1,5,1,8,1,0,0,540 -"9190",0,1,1,58,3,1,5,0,11,1,1,0,540 -"9191",0,1,1,65,2,1,5,0,10,1,1,0,540 -"9192",0,1,1,51,2,1,5,1,10,1,0,0,540 -"9193",0,1,1,49,1,1,5,1,13,1,1,0,540 -"9194",0,1,1,58,2,1,5,1,8,1,0,0,540 -"9195",0,1,0,60,2,1,5,1,14,1,1,0,540 -"9196",0,1,1,56,1,1,3,0,11,3,1,0,541 -"9197",1,1,1,38,2,1,3,0,9,3,0,0,541 -"9198",1,1,0,38,1,1,3,0,10,3,0,0,541 -"9199",0,1,0,48,1,1,3,1,9,3,0,0,541 -"9200",0,0,1,59,3,1,3,0,8,3,0,0,541 -"9201",1,1,1,52,2,1,3,0,8,3,0,0,541 -"9202",0,1,1,45,1,1,3,1,9,3,0,0,541 -"9203",0,1,0,43,3,1,3,1,7,3,0,0,541 -"9204",0,1,1,58,2,1,3,1,9,3,0,0,541 -"9205",0,1,0,46,2,1,3,1,4,3,0,0,541 -"9206",0,1,0,48,2,1,3,1,9,3,0,0,541 -"9207",0,1,0,52,1,1,3,0,8,3,0,0,541 -"9208",0,1,1,49,1,1,3,0,8,3,0,0,541 -"9209",0,1,0,52,1,1,3,0,11,3,0,0,541 -"9210",0,1,0,40,5,0,4,1,7,1,1,1,542 -"9211",0,1,1,55,2,0,4,1,12,1,0,1,542 -"9212",0,1,0,54,2,0,4,1,4,1,1,1,542 -"9213",0,1,1,54,1,0,4,1,12,1,0,1,542 -"9214",0,1,1,57,2,0,4,1,9,1,1,1,542 -"9215",0,1,0,61,1,0,4,1,10,1,1,1,542 -"9216",0,1,0,59,2,0,4,1,9,1,0,1,542 -"9217",0,0,1,50,2,0,4,0,11,1,0,1,542 -"9218",0,1,0,55,1,0,4,1,12,1,1,1,542 -"9219",0,1,0,56,3,0,4,1,10,1,0,1,542 -"9220",0,1,0,50,1,0,4,1,11,1,1,1,542 -"9221",0,1,1,53,2,0,4,1,5,1,0,1,542 -"9222",0,1,1,47,2,0,4,1,9,1,0,1,542 -"9223",0,1,0,56,1,0,4,1,12,1,1,1,542 -"9224",0,1,0,45,2,0,4,1,12,1,1,1,542 -"9225",0,1,0,66,2,0,4,1,8,1,0,1,542 -"9226",0,1,0,55,2,0,4,1,12,1,0,1,542 -"9227",0,1,0,53,2,0,4,1,13,1,1,1,542 -"9228",1,1,0,39,1,0,4,1,12,1,0,1,542 -"9229",0,1,0,48,1,0,4,1,13,1,1,1,542 -"9230",0,1,1,54,2,0,4,1,12,1,1,1,542 -"9231",0,1,0,55,2,0,4,1,11,1,1,1,542 -"9232",0,1,0,63,2,0,4,1,6,1,1,1,542 -"9233",0,1,0,33,5,1,3,0,7,6,0,0,543 -"9234",0,1,1,35,2,1,3,0,5,6,0,0,543 -"9235",0,1,0,49,3,1,3,1,3,6,0,0,543 -"9236",0,1,0,51,5,1,3,1,9,6,0,0,543 -"9237",0,1,0,50,1,1,3,1,9,6,0,0,543 -"9238",0,1,0,43,1,1,3,1,6,6,1,0,543 -"9239",0,1,1,54,2,1,3,0,7,6,0,0,543 -"9240",1,1,0,35,5,1,3,1,8,6,0,0,543 -"9241",1,0,0,42,5,1,3,0,2,6,0,0,543 -"9242",0,1,1,45,3,1,3,0,9,6,0,0,543 -"9243",0,1,1,39,1,1,3,1,9,6,1,0,543 -"9244",1,1,0,37,4,1,3,0,8,6,0,0,543 -"9245",0,1,1,41,1,1,3,0,9,6,0,0,543 -"9246",0,1,0,65,1,1,3,0,8,6,1,0,543 -"9247",0,1,0,55,5,1,3,1,1,6,0,0,543 -"9248",0,1,0,68,1,1,3,1,13,6,1,0,543 -"9249",0,1,0,35,3,1,3,1,7,6,0,0,543 -"9250",0,1,1,51,5,1,3,1,6,6,0,0,543 -"9251",0,1,0,54,2,1,5,0,6,6,0,0,544 -"9252",0,1,0,53,1,1,5,1,6,6,0,0,544 -"9253",0,1,0,57,4,1,5,0,5,6,0,0,544 -"9254",0,1,0,42,2,1,5,0,6,6,1,0,544 -"9255",0,1,0,52,1,1,5,1,8,6,1,0,544 -"9256",1,1,1,48,5,1,5,1,9,6,0,0,544 -"9257",0,1,0,50,3,1,5,0,12,6,1,0,544 -"9258",0,1,0,32,3,1,5,1,9,6,0,0,544 -"9259",0,1,1,44,2,1,5,1,5,6,0,0,544 -"9260",0,1,1,45,5,1,5,0,10,6,0,0,544 -"9261",0,1,0,45,2,1,5,0,1,6,0,0,544 -"9262",0,1,1,62,2,1,4,0,12,1,1,0,545 -"9263",1,0,0,43,4,1,4,1,6,1,0,0,545 -"9264",0,1,1,40,3,1,4,1,10,1,0,0,545 -"9265",1,1,1,39,3,1,4,0,11,1,0,0,545 -"9266",0,1,0,45,1,1,4,0,11,1,1,0,545 -"9267",0,1,1,62,1,1,4,0,12,1,1,0,545 -"9268",0,1,0,69,1,1,4,1,13,1,1,0,545 -"9269",0,1,0,41,1,1,4,1,11,1,0,0,545 -"9270",0,1,1,54,1,1,4,1,10,1,0,0,545 -"9271",0,1,0,51,2,1,4,0,9,1,1,0,545 -"9272",0,1,0,66,1,1,4,1,12,1,0,0,545 -"9273",0,1,1,56,1,1,4,1,9,1,0,0,545 -"9274",0,1,1,54,1,1,4,1,10,1,1,0,545 -"9275",0,1,1,32,1,1,4,1,9,1,0,0,545 -"9276",0,1,0,44,1,1,4,1,11,1,0,0,546 -"9277",0,1,1,50,3,1,4,1,8,1,1,0,546 -"9278",0,1,1,49,5,1,4,0,10,1,1,0,546 -"9279",0,1,1,64,1,1,4,1,4,1,0,0,546 -"9280",0,1,1,56,1,1,4,1,9,1,1,0,546 -"9281",0,1,1,46,2,1,4,1,9,1,0,0,546 -"9282",0,1,0,72,1,1,4,1,15,1,1,0,546 -"9283",0,1,1,55,1,1,4,1,6,1,0,0,546 -"9284",0,1,1,35,2,1,4,0,6,1,0,0,546 -"9285",0,1,1,60,2,1,4,0,12,1,1,0,546 -"9286",0,1,0,62,2,1,4,1,7,3,0,0,547 -"9287",0,1,0,65,1,1,4,0,8,3,1,0,547 -"9288",0,1,1,37,1,1,4,1,10,3,0,0,547 -"9289",1,1,1,51,2,1,4,0,7,3,0,0,547 -"9290",0,0,0,52,5,1,4,0,6,3,0,0,547 -"9291",0,1,1,61,1,1,4,0,11,3,1,0,547 -"9292",0,1,0,40,3,1,4,1,10,3,0,0,547 -"9293",0,1,0,49,1,1,4,0,7,3,0,0,547 -"9294",0,0,0,53,3,1,4,0,12,3,1,0,547 -"9295",0,1,0,56,3,1,4,1,9,3,0,0,547 -"9296",1,0,1,48,2,1,4,1,5,3,0,0,547 -"9297",0,1,0,27,1,1,4,1,10,3,0,0,547 -"9298",0,1,0,49,3,1,4,0,9,3,0,0,547 -"9299",0,1,0,51,1,1,4,0,11,3,0,0,547 -"9300",0,1,1,54,2,1,4,0,10,3,1,0,547 -"9301",1,1,1,44,1,1,4,0,10,3,0,0,547 -"9302",0,1,0,62,1,1,4,0,9,3,1,0,547 -"9303",0,1,1,24,2,1,4,1,6,3,0,0,547 -"9304",0,1,1,41,3,1,4,0,9,3,0,0,547 -"9305",0,0,0,57,3,1,4,1,9,3,0,0,547 -"9306",0,1,0,64,1,1,4,0,8,3,0,0,547 -"9307",1,0,1,26,2,1,4,0,7,3,0,0,547 -"9308",0,0,1,28,1,1,4,0,5,3,0,0,547 -"9309",0,0,1,43,5,1,4,0,8,3,0,0,547 -"9310",0,1,0,48,2,1,4,1,5,4,0,0,548 -"9311",1,0,1,49,2,1,4,1,7,4,0,0,548 -"9312",0,1,0,48,2,1,4,0,5,4,1,0,548 -"9313",1,1,0,46,1,1,4,0,9,4,0,0,548 -"9314",0,1,0,62,3,1,4,1,7,4,0,0,548 -"9315",0,1,0,47,3,1,4,1,7,4,0,0,548 -"9316",1,1,0,49,4,1,4,0,7,4,1,0,548 -"9317",0,1,1,59,3,1,4,1,8,4,1,0,548 -"9318",0,1,0,53,5,1,4,0,7,4,0,0,548 -"9319",0,1,1,38,2,1,4,1,12,4,0,0,548 -"9320",0,0,1,50,2,1,4,0,9,4,0,0,548 -"9321",0,1,1,58,1,1,4,1,7,4,0,0,548 -"9322",0,1,0,55,2,1,4,1,13,4,1,0,548 -"9323",0,1,0,53,3,1,4,0,11,4,0,0,548 -"9324",0,1,0,44,2,1,4,1,5,4,1,0,548 -"9325",0,1,0,35,1,1,4,1,11,4,0,0,548 -"9326",1,1,1,74,2,1,5,0,12,1,1,1,549 -"9327",0,1,1,52,1,1,5,0,9,1,0,1,549 -"9328",0,1,1,48,2,1,5,1,4,1,1,1,549 -"9329",0,1,0,57,2,1,5,0,10,1,0,1,549 -"9330",0,1,0,65,2,1,5,1,10,1,1,1,549 -"9331",0,1,1,57,2,1,5,1,10,1,0,1,549 -"9332",0,1,1,60,2,1,5,1,8,1,0,1,549 -"9333",0,1,0,70,5,1,5,0,6,1,1,1,549 -"9334",0,1,0,54,2,1,5,0,9,1,0,1,549 -"9335",0,0,1,56,1,1,5,0,10,1,1,1,549 -"9336",0,1,1,59,2,1,5,0,9,1,0,1,549 -"9337",0,1,0,50,1,1,5,0,10,1,1,1,549 -"9338",0,1,1,65,1,1,5,1,11,1,1,1,549 -"9339",0,1,0,53,2,1,5,1,11,1,0,1,549 -"9340",0,1,0,62,3,1,5,0,13,1,1,1,549 -"9341",0,1,1,57,3,1,5,1,9,1,1,1,549 -"9342",0,0,0,59,2,1,5,0,7,1,0,1,549 -"9343",0,1,0,63,1,1,5,0,12,1,1,1,549 -"9344",0,1,1,40,1,1,4,1,9,5,1,0,550 -"9345",0,1,1,34,1,1,4,1,10,5,0,0,550 -"9346",0,1,1,31,1,1,4,1,9,5,0,0,550 -"9347",0,1,0,42,3,1,4,1,5,5,0,0,550 -"9348",0,1,0,44,1,1,4,0,9,5,0,0,550 -"9349",1,1,1,37,5,1,4,0,11,5,0,0,550 -"9350",0,1,0,50,3,1,4,0,8,5,0,0,550 -"9351",0,1,1,50,3,1,4,1,7,5,0,0,550 -"9352",0,1,0,53,2,1,4,1,9,5,1,0,550 -"9353",0,1,1,35,1,1,4,1,7,5,0,0,550 -"9354",0,1,0,43,5,1,4,0,11,5,1,0,550 -"9355",0,1,0,49,2,1,4,1,10,5,0,0,550 -"9356",0,1,0,42,3,1,4,1,8,5,0,0,550 -"9357",0,1,0,56,5,1,4,1,10,5,0,0,550 -"9358",0,1,1,29,2,1,4,0,7,5,1,0,550 -"9359",0,1,1,54,1,1,4,0,12,1,1,0,551 -"9360",0,1,1,48,3,1,4,1,10,1,0,0,551 -"9361",0,1,0,60,1,1,4,0,10,1,0,0,551 -"9362",0,1,1,57,2,1,4,1,9,1,0,0,551 -"9363",0,1,0,53,1,1,4,1,9,1,0,0,551 -"9364",0,1,0,56,2,1,4,1,8,1,0,0,551 -"9365",0,1,0,39,2,1,4,1,10,1,0,0,551 -"9366",0,1,1,43,2,1,4,1,9,1,0,0,551 -"9367",0,0,1,56,3,1,4,0,12,1,1,0,551 -"9368",0,1,0,61,2,1,4,1,8,1,0,0,551 -"9369",0,1,0,53,2,1,4,0,12,1,0,0,551 -"9370",1,1,1,34,1,1,4,0,8,1,0,0,551 -"9371",0,1,0,51,2,1,4,1,12,1,1,0,552 -"9372",0,1,0,69,2,1,4,1,12,1,0,0,552 -"9373",0,1,0,57,1,1,4,1,11,1,1,0,552 -"9374",0,1,0,58,1,1,4,0,12,1,1,0,552 -"9375",0,0,0,49,2,1,4,1,6,1,1,0,552 -"9376",0,1,1,42,2,1,4,1,11,1,1,0,552 -"9377",0,1,0,57,1,1,4,1,11,1,0,0,552 -"9378",0,1,0,66,2,1,4,1,12,1,1,0,552 -"9379",0,1,0,64,1,1,4,0,13,1,1,0,552 -"9380",0,1,1,56,2,1,4,0,12,1,0,0,552 -"9381",0,1,1,39,2,1,4,1,11,1,0,0,552 -"9382",0,1,0,59,2,1,4,1,11,1,1,0,552 -"9383",0,1,0,65,2,1,4,1,13,1,0,0,552 -"9384",0,1,0,58,1,1,4,0,12,1,1,0,552 -"9385",0,1,1,52,2,1,4,1,12,1,1,0,552 -"9386",0,0,0,51,3,1,4,0,8,1,1,0,552 -"9387",0,1,0,56,2,1,4,1,12,1,1,0,552 -"9388",1,1,1,54,2,1,4,1,10,1,1,0,552 -"9389",0,1,1,59,2,1,4,0,13,1,1,0,552 -"9390",0,1,1,39,2,1,4,1,10,1,1,0,552 -"9391",0,1,1,50,2,1,4,1,10,1,1,0,552 -"9392",1,1,0,60,2,1,4,0,12,1,1,0,552 -"9393",0,1,0,52,2,1,4,1,10,1,1,0,553 -"9394",0,1,0,50,3,1,4,1,2,1,0,0,553 -"9395",0,1,1,44,2,1,4,0,11,1,1,0,553 -"9396",0,1,0,58,3,1,4,0,7,1,0,0,553 -"9397",0,1,0,50,2,1,4,1,11,1,1,0,553 -"9398",0,1,0,64,1,1,4,1,10,1,0,0,553 -"9399",0,1,1,58,1,1,4,1,12,1,1,0,553 -"9400",0,1,0,55,1,1,4,1,9,1,0,0,553 -"9401",0,1,0,63,3,1,4,1,10,1,0,0,553 -"9402",0,1,1,61,2,1,4,1,9,1,1,0,553 -"9403",0,1,0,60,1,1,4,0,12,1,1,0,553 -"9404",0,1,1,61,2,1,4,1,9,1,1,0,553 -"9405",0,1,0,58,3,1,4,0,9,1,1,0,553 -"9406",0,0,1,59,2,1,5,1,11,2,1,0,554 -"9407",0,1,1,62,4,1,5,0,12,2,1,0,554 -"9408",0,1,0,45,1,1,5,0,10,2,0,0,554 -"9409",0,1,0,54,3,1,5,1,12,2,1,0,554 -"9410",1,1,1,39,3,1,5,1,8,2,0,0,554 -"9411",0,1,0,63,2,1,5,1,12,2,1,0,554 -"9412",0,1,0,47,2,1,5,1,10,2,0,0,554 -"9413",0,1,1,47,3,1,5,0,10,2,1,0,554 -"9414",0,1,0,57,1,1,5,1,8,2,0,0,554 -"9415",0,1,1,45,1,1,5,0,8,2,1,0,554 -"9416",0,1,0,54,3,1,5,1,10,2,0,0,554 -"9417",0,1,0,60,3,1,5,0,12,2,0,0,554 -"9418",0,1,1,44,3,1,5,0,9,2,0,0,554 -"9419",1,1,0,41,2,1,5,1,4,2,0,0,554 -"9420",0,1,1,41,2,1,5,1,3,1,0,1,555 -"9421",1,1,0,37,3,1,5,1,1,1,0,1,555 -"9422",0,1,0,52,1,1,5,1,9,1,1,1,555 -"9423",0,1,0,41,3,1,5,1,11,1,1,1,555 -"9424",0,1,0,47,3,1,5,1,10,1,0,1,555 -"9425",0,1,0,60,1,1,5,0,5,1,0,1,555 -"9426",1,1,0,32,1,1,5,1,7,1,0,1,555 -"9427",0,1,0,49,5,1,5,0,8,1,0,1,555 -"9428",0,1,1,62,5,1,5,1,10,1,1,1,555 -"9429",1,1,1,52,5,1,5,0,11,1,0,1,555 -"9430",0,1,0,35,2,1,5,0,9,1,1,1,555 -"9431",0,1,1,50,1,1,5,1,11,1,0,1,555 -"9432",0,1,1,39,1,1,5,1,3,1,0,1,555 -"9433",0,1,0,40,2,1,5,1,11,1,1,1,555 -"9434",0,1,1,48,1,1,5,0,10,3,1,0,556 -"9435",0,1,0,62,2,1,5,0,9,3,0,0,556 -"9436",0,1,0,49,2,1,5,1,8,3,1,0,556 -"9437",0,1,0,50,1,1,5,1,8,3,1,0,556 -"9438",0,1,0,61,2,1,5,1,13,3,1,0,556 -"9439",0,1,0,57,1,1,5,0,10,3,1,0,556 -"9440",0,1,0,55,2,1,5,0,11,3,1,0,556 -"9441",0,1,0,56,1,1,5,0,11,3,1,0,556 -"9442",0,1,0,57,2,1,5,0,7,3,1,0,556 -"9443",0,1,0,51,2,1,5,1,9,3,1,0,556 -"9444",0,1,0,64,2,1,5,1,11,3,1,0,556 -"9445",0,1,0,65,2,1,5,1,5,3,1,0,556 -"9446",0,1,0,53,2,1,5,1,7,3,0,0,556 -"9447",0,1,0,67,1,1,5,0,12,3,1,0,556 -"9448",0,1,0,59,2,1,5,1,10,3,1,0,556 -"9449",0,0,0,63,1,1,5,1,12,3,1,0,556 -"9450",0,1,0,55,1,1,5,1,9,3,1,0,556 -"9451",0,1,0,54,3,1,5,1,10,3,0,0,556 -"9452",0,0,0,56,3,1,5,1,12,3,0,0,556 -"9453",0,1,0,48,3,1,5,1,13,3,0,0,556 -"9454",0,1,1,53,2,1,5,0,9,3,0,0,556 -"9455",0,1,0,58,1,1,5,0,12,3,1,0,556 -"9456",0,1,0,48,5,1,5,1,10,3,1,0,556 -"9457",0,1,0,50,1,1,5,1,10,3,1,0,556 -"9458",0,1,1,55,1,1,5,1,11,3,1,0,556 -"9459",0,1,0,64,2,1,5,0,13,3,1,0,556 -"9460",0,1,1,61,2,1,5,0,10,3,1,0,556 -"9461",0,1,0,53,2,1,5,0,9,3,1,0,556 -"9462",0,1,1,48,1,1,4,1,6,3,0,0,557 -"9463",0,0,0,63,1,1,4,0,11,3,0,0,557 -"9464",0,1,0,42,1,1,4,1,6,3,0,0,557 -"9465",0,1,0,41,3,1,4,1,8,3,0,0,557 -"9466",0,1,1,64,3,1,4,0,12,3,1,0,557 -"9467",0,1,0,53,1,1,4,1,12,3,1,0,557 -"9468",0,1,1,53,1,1,4,1,8,3,0,0,557 -"9469",0,1,1,34,3,1,4,1,6,3,0,0,557 -"9470",0,1,0,41,2,1,4,0,8,3,0,0,557 -"9471",0,1,0,48,2,1,4,1,11,3,0,0,557 -"9472",1,1,0,55,5,1,4,0,11,3,0,0,557 -"9473",0,1,0,69,1,1,4,1,10,3,1,0,557 -"9474",0,1,0,41,1,1,4,0,8,3,1,0,557 -"9475",0,1,0,43,3,1,4,0,9,3,0,0,557 -"9476",0,1,0,55,1,1,4,1,10,3,1,0,557 -"9477",1,0,1,50,5,1,4,0,11,3,1,0,557 -"9478",0,1,1,64,1,1,4,1,11,3,0,0,557 -"9479",0,1,0,64,1,1,4,1,11,3,0,0,557 -"9480",0,1,1,44,2,1,4,1,4,3,0,0,557 -"9481",0,1,0,52,2,1,4,0,10,3,0,0,557 -"9482",1,1,1,58,1,1,4,0,10,1,0,0,558 -"9483",0,1,1,40,3,1,4,1,6,1,0,0,558 -"9484",0,1,1,66,3,1,4,0,8,1,1,0,558 -"9485",0,1,0,40,2,1,4,1,12,1,1,0,558 -"9486",0,1,1,52,1,1,4,1,11,1,1,0,558 -"9487",0,1,1,52,3,1,4,0,12,1,1,0,558 -"9488",0,1,0,57,1,1,4,0,13,1,1,0,558 -"9489",0,1,0,55,5,1,4,1,10,1,1,0,558 -"9490",0,0,1,57,1,1,4,0,11,1,1,0,558 -"9491",0,1,1,60,2,1,4,0,11,1,1,0,558 -"9492",0,1,0,60,5,1,4,1,9,1,1,0,558 -"9493",0,1,0,34,1,1,4,0,13,1,1,0,558 -"9494",0,1,0,61,2,1,4,0,10,1,1,0,558 -"9495",0,1,0,61,4,1,4,0,14,1,1,0,558 -"9496",0,1,1,51,1,1,4,1,10,1,0,0,558 -"9497",0,1,1,57,2,1,4,1,11,1,1,0,558 -"9498",0,1,0,49,2,1,4,1,14,1,1,0,558 -"9499",0,1,0,42,2,1,4,0,13,1,1,0,558 -"9500",0,0,0,46,2,1,4,0,11,1,1,0,558 -"9501",0,1,0,61,3,1,4,1,9,1,0,0,558 -"9502",0,1,0,46,3,1,4,1,11,1,1,0,558 -"9503",0,1,0,60,3,1,4,0,8,1,1,0,558 -"9504",0,1,0,56,3,1,4,1,12,1,0,0,558 -"9505",0,1,1,46,3,1,4,0,9,1,1,0,558 -"9506",0,1,0,65,2,1,4,0,10,1,1,0,558 -"9507",0,1,0,58,4,1,4,0,12,1,1,0,558 -"9508",0,1,1,66,1,1,4,0,12,1,1,0,558 -"9509",0,1,0,46,2,1,3,0,5,7,0,0,559 -"9510",1,1,0,37,4,1,3,0,8,7,1,0,559 -"9511",0,1,0,49,3,1,3,1,8,7,1,0,559 -"9512",0,1,0,36,2,1,3,0,5,7,0,0,559 -"9513",0,1,0,36,2,1,3,1,10,7,0,0,559 -"9514",0,1,0,35,1,1,3,1,9,7,0,0,559 -"9515",0,1,1,40,3,1,3,1,9,7,0,0,559 -"9516",0,1,0,47,2,1,3,1,7,7,1,0,559 -"9517",0,1,1,37,1,1,3,1,5,7,0,0,559 -"9518",0,1,1,34,2,1,3,1,4,7,0,0,559 -"9519",0,1,1,50,3,1,3,0,9,7,0,0,559 -"9520",0,1,0,31,5,1,3,1,11,7,1,0,559 -"9521",0,0,0,43,4,1,3,1,8,3,0,0,560 -"9522",0,1,0,56,2,1,3,1,10,3,1,0,560 -"9523",0,1,0,49,2,1,3,1,8,3,0,0,560 -"9524",0,0,0,41,3,1,3,0,9,3,0,0,560 -"9525",1,1,0,47,1,1,3,0,9,3,0,0,560 -"9526",0,1,1,55,1,1,3,1,5,3,0,0,560 -"9527",1,1,1,50,2,1,3,0,7,3,0,0,560 -"9528",0,1,1,48,2,1,3,1,10,3,0,0,560 -"9529",0,0,1,45,1,1,3,0,9,3,1,0,560 -"9530",1,1,1,32,1,1,3,1,11,3,1,0,560 -"9531",0,1,1,62,1,1,3,1,10,3,1,0,560 -"9532",0,1,0,32,3,1,3,1,6,3,0,0,560 -"9533",0,1,1,38,2,1,3,1,7,3,0,0,560 -"9534",0,1,1,51,2,1,3,0,9,3,1,0,560 -"9535",0,1,1,47,2,1,4,0,10,6,1,0,561 -"9536",0,1,1,55,2,1,4,0,6,6,0,0,561 -"9537",0,1,0,49,2,1,4,0,8,6,0,0,561 -"9538",0,1,1,42,2,1,4,1,4,6,0,0,561 -"9539",0,1,1,47,3,1,4,0,11,6,0,0,561 -"9540",1,1,0,54,2,1,4,0,2,6,0,0,561 -"9541",0,1,0,50,2,1,4,1,4,6,0,0,561 -"9542",0,1,1,60,3,1,4,0,5,6,0,0,561 -"9543",0,1,1,54,2,1,4,0,6,6,0,0,561 -"9544",0,1,1,53,5,1,4,0,8,6,0,0,561 -"9545",0,1,0,38,1,1,4,1,9,6,0,0,561 -"9546",0,1,0,45,3,1,4,1,9,6,0,0,561 -"9547",0,0,1,40,4,1,4,0,5,6,0,0,561 -"9548",0,1,0,45,3,1,4,0,7,6,1,0,561 -"9549",1,1,0,35,3,1,4,0,10,5,1,0,562 -"9550",0,1,0,44,2,1,4,1,6,5,1,0,562 -"9551",1,1,0,43,3,1,4,0,8,5,0,0,562 -"9552",1,1,1,54,5,1,4,0,9,5,1,0,562 -"9553",0,1,0,56,2,1,4,0,9,5,0,0,562 -"9554",0,1,0,55,2,1,4,0,10,5,0,0,562 -"9555",0,1,0,57,2,1,4,0,7,5,1,0,562 -"9556",0,1,0,64,1,1,4,0,8,5,0,0,562 -"9557",0,1,0,41,5,1,4,1,9,5,0,0,562 -"9558",0,1,1,29,2,1,4,0,8,5,1,0,562 -"9559",0,1,0,40,2,1,4,0,11,5,0,0,562 -"9560",0,1,0,59,3,1,4,1,9,5,1,0,562 -"9561",0,1,1,32,2,1,4,1,7,5,0,0,562 -"9562",0,0,0,57,5,1,4,0,8,5,0,0,562 -"9563",0,1,0,63,2,1,4,1,9,5,0,0,562 -"9564",0,1,0,41,2,1,4,0,7,5,0,0,562 -"9565",0,1,0,49,3,1,4,0,10,5,1,0,562 -"9566",0,1,1,49,1,1,4,1,10,5,1,0,562 -"9567",0,1,0,48,2,1,5,1,12,4,1,0,563 -"9568",0,1,0,43,3,1,5,1,10,4,0,0,563 -"9569",0,1,0,65,2,1,5,1,13,4,1,0,563 -"9570",1,1,0,48,2,1,5,1,2,4,0,0,563 -"9571",0,1,1,54,1,1,5,1,7,4,1,0,563 -"9572",0,1,1,44,2,1,5,0,10,4,1,0,563 -"9573",0,1,0,62,3,1,5,0,11,4,1,0,563 -"9574",0,1,0,37,3,1,5,1,9,4,1,0,563 -"9575",0,1,0,56,1,1,5,1,10,4,1,0,563 -"9576",0,1,0,63,1,1,5,0,10,4,1,0,563 -"9577",0,0,0,44,2,1,5,1,5,4,0,0,563 -"9578",0,1,1,70,3,1,5,1,8,4,1,0,563 -"9579",1,1,0,51,3,1,5,0,9,4,0,0,563 -"9580",0,1,1,60,3,1,5,0,12,4,0,0,563 -"9581",0,1,1,63,3,1,5,1,9,4,1,0,563 -"9582",0,1,1,54,2,1,5,1,7,4,0,0,563 -"9583",0,1,0,60,1,1,5,0,10,4,1,0,563 -"9584",0,1,1,46,5,1,3,0,10,5,1,0,564 -"9585",0,0,1,48,5,1,3,0,9,5,0,0,564 -"9586",0,1,1,49,1,1,3,0,9,5,0,0,564 -"9587",0,1,1,44,3,1,3,1,8,5,1,0,564 -"9588",0,1,0,40,3,1,3,1,6,5,0,0,564 -"9589",1,1,1,53,3,1,3,0,9,5,0,0,564 -"9590",0,0,1,42,3,1,3,0,9,5,1,0,564 -"9591",0,1,0,33,2,1,3,1,11,5,1,0,564 -"9592",0,1,0,39,3,1,3,1,7,5,0,0,564 -"9593",0,1,1,59,2,1,3,0,9,5,0,0,564 -"9594",0,1,1,37,2,1,3,1,7,5,0,0,564 -"9595",0,0,0,43,3,1,3,0,11,5,0,0,564 -"9596",1,1,0,43,3,1,3,1,2,5,0,0,564 -"9597",0,1,0,43,2,1,3,0,2,5,1,0,564 -"9598",0,1,1,46,3,1,3,0,9,5,0,0,564 -"9599",1,1,0,40,3,1,3,1,9,5,0,0,564 -"9600",0,1,0,38,3,1,3,0,13,5,1,0,564 -"9601",0,1,0,41,2,1,3,1,6,5,0,0,564 -"9602",0,0,1,54,3,1,3,0,9,5,0,0,564 -"9603",0,1,1,52,2,1,3,1,8,5,0,0,564 -"9604",0,1,1,45,3,1,3,1,10,5,1,0,564 -"9605",0,1,0,39,5,1,3,1,8,5,0,0,564 -"9606",0,1,0,74,3,1,5,0,12,2,1,0,565 -"9607",0,1,0,67,1,1,5,1,8,2,1,0,565 -"9608",0,1,1,49,4,1,5,0,9,2,0,0,565 -"9609",0,1,1,54,5,1,5,1,8,2,0,0,565 -"9610",0,1,0,49,3,1,5,1,8,2,1,0,565 -"9611",1,1,0,53,4,1,5,1,12,2,1,0,565 -"9612",0,1,1,53,1,1,5,1,11,2,1,0,565 -"9613",0,1,0,54,1,1,5,0,10,2,1,0,565 -"9614",1,1,0,52,2,1,5,1,13,2,1,0,565 -"9615",0,1,0,43,1,1,5,1,11,2,0,0,565 -"9616",0,1,0,62,5,1,5,1,10,2,0,0,565 -"9617",0,1,1,46,4,1,5,1,7,2,0,0,565 -"9618",0,1,1,58,2,1,5,0,11,2,1,0,565 -"9619",0,1,1,50,3,1,5,1,12,2,1,0,565 -"9620",0,1,0,65,2,1,5,1,12,2,1,0,565 -"9621",0,1,1,49,1,1,5,1,10,2,1,0,565 -"9622",0,1,0,55,1,1,5,1,11,2,1,0,565 -"9623",0,0,1,60,3,1,5,0,8,2,0,0,565 -"9624",0,1,0,59,2,1,5,0,9,2,1,0,565 -"9625",0,1,1,80,3,1,5,0,12,2,1,0,565 -"9626",0,1,0,62,1,1,5,1,8,2,1,0,565 -"9627",0,1,1,54,1,1,5,1,12,2,1,0,565 -"9628",0,1,1,52,3,1,5,0,10,2,1,0,565 -"9629",0,1,0,62,2,1,5,1,11,2,0,0,565 -"9630",0,1,0,58,1,1,5,0,9,2,1,0,565 -"9631",0,1,0,87,2,1,5,0,12,2,1,0,565 -"9632",0,1,0,56,2,1,3,1,8,3,0,0,566 -"9633",0,1,0,47,3,1,3,1,8,3,0,0,566 -"9634",0,1,0,56,1,1,3,0,3,3,0,0,566 -"9635",0,1,0,56,3,1,3,1,8,3,0,0,566 -"9636",0,0,0,37,1,1,3,1,5,3,0,0,566 -"9637",0,1,1,46,3,1,3,1,13,3,0,0,566 -"9638",0,1,0,55,3,1,3,0,10,3,0,0,566 -"9639",0,0,0,48,5,1,3,0,6,3,0,0,566 -"9640",0,1,0,58,3,1,3,1,12,3,1,0,566 -"9641",0,0,0,45,2,1,3,0,10,3,1,0,566 -"9642",1,1,1,63,2,1,3,0,12,3,0,0,566 -"9643",0,1,0,50,2,1,3,0,11,3,0,0,566 -"9644",0,0,0,53,3,1,3,0,11,3,1,0,566 -"9645",0,0,0,50,2,1,3,0,11,3,0,0,566 -"9646",0,1,0,52,2,1,3,0,5,3,0,0,566 -"9647",0,1,0,49,3,1,3,1,7,3,1,0,566 -"9648",0,1,0,59,2,1,3,1,8,3,0,0,566 -"9649",0,1,0,46,2,1,4,1,12,1,1,0,567 -"9650",0,1,0,47,2,1,4,0,10,1,1,0,567 -"9651",0,1,0,56,4,1,4,0,13,1,1,0,567 -"9652",0,1,1,43,2,1,4,1,10,1,0,0,567 -"9653",0,0,0,49,2,1,4,1,11,1,0,0,567 -"9654",0,1,1,51,3,1,4,1,12,1,1,0,567 -"9655",0,1,0,67,3,1,4,0,10,1,1,0,567 -"9656",1,1,1,65,1,1,4,0,11,1,1,0,567 -"9657",0,0,1,53,1,1,4,0,11,1,0,0,567 -"9658",0,1,0,57,4,1,4,1,12,1,1,0,567 -"9659",0,1,0,67,2,1,4,0,11,1,1,0,567 -"9660",0,1,1,53,3,1,4,1,9,1,0,0,567 -"9661",0,1,0,68,2,1,4,1,12,1,1,0,568 -"9662",1,1,0,58,2,1,4,0,12,1,0,0,568 -"9663",0,1,0,56,2,1,4,0,12,1,1,0,568 -"9664",0,1,1,64,1,1,4,1,9,1,1,0,568 -"9665",0,1,0,76,2,1,4,1,12,1,1,0,568 -"9666",0,1,1,35,5,1,4,1,7,1,0,0,568 -"9667",0,1,0,58,2,1,4,1,12,1,0,0,568 -"9668",0,0,0,53,4,1,4,1,4,1,1,0,568 -"9669",0,1,0,50,1,1,4,0,11,1,1,0,568 -"9670",0,1,1,66,2,1,4,0,11,1,1,0,568 -"9671",0,1,0,58,2,1,4,0,6,1,1,0,568 -"9672",0,0,0,34,3,1,4,0,12,1,0,0,568 -"9673",0,1,0,54,2,1,4,1,12,1,1,0,568 -"9674",0,1,0,65,2,1,4,1,13,1,1,0,568 -"9675",0,1,0,50,5,1,4,1,8,1,1,0,568 -"9676",0,1,0,70,3,1,4,1,12,1,1,0,568 -"9677",0,0,1,53,1,1,4,1,11,1,1,0,568 -"9678",0,1,0,68,1,1,4,0,11,1,1,0,568 -"9679",1,1,1,62,1,1,4,0,11,1,1,0,568 diff --git a/tests/testthat/data_files/MEDIATION/vv2015.csv b/tests/testthat/data_files/MEDIATION/vv2015.csv deleted file mode 100644 index 4b26bf5c..00000000 --- a/tests/testthat/data_files/MEDIATION/vv2015.csv +++ /dev/null @@ -1,101 +0,0 @@ -"","id","x","m","y","cens","c","event" -"1",1,0,1,0.00965706987302309,0,0.552937817980352,1 -"2",2,0,1,0.303604781023313,0,-0.738597947207898,1 -"3",3,0,1,0.519546807482132,0,1.17886484862715,1 -"4",4,0,0,0.186009526370779,1,2.89746570014621,0 -"5",5,0,0,0.127083564776595,0,-1.2719254860193,1 -"6",6,0,0,0.121811929519267,0,1.98046413873461,1 -"7",7,1,0,0.63070536693152,0,-0.398825616292447,1 -"8",8,0,0,0.136069656419554,0,2.82487242294358,1 -"9",9,0,0,0.392960646795121,0,2.38129872992883,1 -"10",10,0,1,0.0445727464761349,0,0.161148124965648,1 -"11",11,1,1,3.15839125129124,0,0.738004225485969,1 -"12",12,1,0,0.185215571907629,0,0.931155971982977,1 -"13",13,0,0,0.101924804002112,0,0.621116443469894,1 -"14",14,0,1,0.31769782827442,0,3.58195892772433,1 -"15",15,1,1,0.178259327069065,0,1.12983413734559,1 -"16",16,1,0,0.0266100889013673,0,0.286975019783646,1 -"17",17,0,0,0.596089851111174,1,1.6379942429195,0 -"18",18,0,1,0.0117016015717971,0,1.20169159161592,1 -"19",19,0,1,0.406884439684816,1,0.930083051759797,0 -"20",20,1,0,0.550613096933024,1,0.907510124597255,0 -"21",21,0,1,0.13027117584144,0,1.44890327311138,1 -"22",22,1,0,0.0180667105782799,0,-0.0643556706873669,1 -"23",23,0,0,0.378997675756629,0,-0.162419322142226,1 -"24",24,1,0,0.0688909097682381,0,2.64852174670445,1 -"25",25,0,0,0.366287641761105,0,-1.06209601933992,1 -"26",26,0,1,0.143158833001073,0,1.01274972096497,1 -"27",27,1,0,0.632801850657509,0,-0.0875283493104273,1 -"28",28,1,1,0.242765809500884,0,1.27053949320434,1 -"29",29,0,1,0.277936142290263,0,2.00845187327273,1 -"30",30,0,1,0.91430743475134,0,-1.07440475425644,1 -"31",31,0,1,0.131739875674805,0,1.89682227178561,1 -"32",32,1,1,0.391236971419354,0,0.950004233123955,1 -"33",33,0,0,0.392525973533911,0,-0.345349310443372,1 -"34",34,1,1,0.13986688810187,0,-0.931211534349739,1 -"35",35,1,1,0.269835570952765,0,1.70958158347709,1 -"36",36,1,1,0.597750641223273,0,0.842094968083688,1 -"37",37,0,1,0.0174198541976244,0,1.21636787270849,1 -"38",38,1,1,0.62599615743495,0,1.81736207577525,1 -"39",39,1,0,0.606365683516267,0,2.72717575450325,1 -"40",40,0,1,0.362517508491388,0,0.896229707536725,1 -"41",41,0,1,0.530340359532288,0,0.442877709175701,1 -"42",42,1,1,0.621910692035042,0,2.42830142987646,1 -"43",43,1,0,0.332388578156043,0,0.107042597899859,1 -"44",44,1,1,0.266345166419398,0,-0.157571240072672,1 -"45",45,1,1,0.190076483148,0,0.469703545070943,1 -"46",46,0,1,0.976178890104338,0,3.44568275766683,1 -"47",47,1,0,0.993645636103782,0,0.167504202002588,1 -"48",48,1,0,1.60794295590224,0,1.4135198488299,1 -"49",49,0,0,0.26400298739336,0,-0.178683140724628,1 -"50",50,0,1,0.308814378530144,0,-0.174034758469224,1 -"51",51,0,0,0.0284566376868205,0,0.667076649025486,1 -"52",52,0,1,0.0822902216703356,0,2.3631137069225,1 -"53",53,0,1,0.439670579064068,0,0.530852660423631,1 -"54",54,0,1,0.212035984865681,1,1.84287563213658,0 -"55",55,0,0,0.170897749975465,0,-0.457993722542087,1 -"56",56,0,0,0.358185559576768,0,0.59969407995108,1 -"57",57,0,1,0.541315188697789,0,0.223582714663682,1 -"58",58,0,0,0.496617039748228,0,0.63070348869899,1 -"59",59,0,0,0.385876217512499,0,2.24010145861679,1 -"60",60,0,0,0.199602349299273,0,0.892566191660019,1 -"61",61,0,0,0.0706139240067105,0,1.1725935062242,1 -"62",62,1,1,0.504773614225437,0,1.25460126824862,1 -"63",63,1,0,0.504241572625227,0,0.385466171005577,1 -"64",64,1,0,1.4803507304327,0,-0.429215096001019,1 -"65",65,0,1,0.700013891793787,1,0.669024565383959,0 -"66",66,0,1,0.421562669069256,1,1.12838606337613,0 -"67",67,0,1,0.45252124899877,0,2.0181199924631,1 -"68",68,0,0,0.0675858905154695,0,0.744426308436246,1 -"69",69,0,1,0.203956990739586,0,0.697458989307305,1 -"70",70,1,0,0.172715423146754,0,2.61519068259227,1 -"71",71,0,1,0.18546722727601,0,0.226286645452745,1 -"72",72,0,0,0.94632174650548,0,1.42400240156265,1 -"73",73,0,0,0.00589149133153849,0,0.416053018670643,1 -"74",74,1,1,0.188975021879973,0,1.41503567889914,1 -"75",75,1,0,0.254702776980636,0,-0.545261656623988,1 -"76",76,1,1,0.120274085191832,1,0.481250495251941,0 -"77",77,1,1,0.330143040643716,0,0.720208445647311,1 -"78",78,1,1,1.03672930406955,0,2.00745738207582,1 -"79",79,1,1,1.23121319757092,0,0.530430046384967,1 -"80",80,0,0,0.46467393818603,0,1.29789703837739,1 -"81",81,0,0,0.174053572521107,0,0.582205566927371,1 -"82",82,0,0,0.115535552976377,0,0.149619223708796,1 -"83",83,1,1,0.312277172974777,0,1.68904619437242,1 -"84",84,1,1,0.116766997779037,1,0.539803805238037,0 -"85",85,0,0,0.0437346619158061,0,2.34818437754491,1 -"86",86,0,0,0.199214244330654,0,1.44307138426351,1 -"87",87,1,1,0.298668674895748,0,0.849073811639227,1 -"88",88,0,0,0.193116065114737,1,1.45554885681481,0 -"89",89,0,1,0.122864071657185,0,0.959845318701299,1 -"90",90,1,0,0.057773261492226,0,1.45612104354645,1 -"91",91,1,1,0.077861730527864,0,0.591574970512231,1 -"92",92,0,0,1.88051183635771,0,-1.13649385561006,1 -"93",93,0,1,0.123486551813759,0,1.15682191638659,1 -"94",94,0,1,0.0140334741778839,0,1.66004890117331,1 -"95",95,1,0,0.196484949468569,0,0.0181655869264227,1 -"96",96,0,0,0.0784322764201712,0,-0.113643704203382,1 -"97",97,0,0,0.18937219299252,0,0.562652323270551,1 -"98",98,0,0,0.394467844082065,0,0.483888753326585,1 -"99",99,0,0,0.204102288476239,0,1.41899599057103,1 -"100",100,1,1,0.688631122931838,1,1.1341554367156,0 diff --git a/tests/testthat/data_files/SURVIVAL/COLLAPSE_MISSING/COLLAPSE_WITH_MISSING1.rda b/tests/testthat/data_files/SURVIVAL/COLLAPSE_MISSING/COLLAPSE_WITH_MISSING1.rda deleted file mode 100644 index 90902fff..00000000 Binary files a/tests/testthat/data_files/SURVIVAL/COLLAPSE_MISSING/COLLAPSE_WITH_MISSING1.rda and /dev/null differ diff --git a/tests/testthat/data_files/SURVIVAL/COLLAPSE_MISSING/COLLAPSE_WITH_MISSING2.rda b/tests/testthat/data_files/SURVIVAL/COLLAPSE_MISSING/COLLAPSE_WITH_MISSING2.rda deleted file mode 100644 index ee4258af..00000000 Binary files a/tests/testthat/data_files/SURVIVAL/COLLAPSE_MISSING/COLLAPSE_WITH_MISSING2.rda and /dev/null differ diff --git a/tests/testthat/data_files/SURVIVAL/COLLAPSE_MISSING/COLLAPSE_WITH_MISSING3.rda b/tests/testthat/data_files/SURVIVAL/COLLAPSE_MISSING/COLLAPSE_WITH_MISSING3.rda deleted file mode 100644 index 55ef36c9..00000000 Binary files a/tests/testthat/data_files/SURVIVAL/COLLAPSE_MISSING/COLLAPSE_WITH_MISSING3.rda and /dev/null differ diff --git a/tests/testthat/data_files/SURVIVAL/COLLAPSE_MISSING/collapse_missing_study1.csv b/tests/testthat/data_files/SURVIVAL/COLLAPSE_MISSING/collapse_missing_study1.csv deleted file mode 100644 index 298b3aeb..00000000 --- a/tests/testthat/data_files/SURVIVAL/COLLAPSE_MISSING/collapse_missing_study1.csv +++ /dev/null @@ -1,887 +0,0 @@ -"","ID","STUDY.ID","STARTTIME","ENDTIME","SURVTIME","CENS","age.60","female","noise.56","pm10.16","bmi.26" -"1",1,1,0,9.025,9.025,1,8,1,1.7,-0.0999999999999996,-4 -"2",2,1,0,10,10,0,16,1,0.700000000000003,0.899999999999999,-6 -"3",3,1,0,0.379,0.379,0,-5,1,1.6,-1.3,-4 -"4",4,1,0,0.087,0.087,1,13,0,3.5,0.399999999999999,4 -"5",5,1,0,1.425,1.425,1,26,0,0.100000000000001,-1.8,-1 -"6",6,1,0,1.694,1.694,1,8,1,-1.6,-0.0999999999999996,2 -"7",7,1,0,0.271,0.271,1,-6,0,-0.600000000000001,0,4 -"8",8,1,0,8.201,8.201,1,1,0,2.8,-1.4,4 -"9",9,1,0,1.166,1.166,0,30,1,-6.7,1.1,-3 -"10",10,1,0,0.435,0.435,0,-25,0,-8.6,0.5,-7 -"11",11,1,0,0.915,0.915,1,21,1,-8.1,0.5,-3 -"12",12,1,0,0.08,0.08,1,15,1,7,1.1,4 -"13",13,1,0,0.086,0.086,0,2,1,-3,-0.5,9 -"14",14,1,0,1.227,1.227,1,4,1,-3.4,-1.2,3 -"15",15,1,0,7.771,7.771,1,4,1,4.5,-0.699999999999999,-2 -"16",16,1,0,1.441,1.441,0,-2,1,2.2,1.6,-6 -"17",17,1,0,0.207,0.207,1,-10,1,2.2,-0.0999999999999996,6 -"18",18,1,0,6.806,6.806,1,-14,0,0.299999999999997,-0.9,5 -"19",19,1,0,2.154,2.154,0,3,1,10.9,-0.6,0 -"20",20,1,0,0.203,0.203,1,22,0,-4.5,-1,-3 -"21",21,1,0,0.238,0.238,1,28,0,-8.9,-1.3,-1 -"22",22,1,0,1.358,1.358,1,21,1,-4.6,1.5,0 -"23",23,1,0,10,10,0,-16,1,-6,0.100000000000001,-4 -"24",24,1,0,0.489,0.489,1,8,0,4.6,0.100000000000001,9 -"25",25,1,0,7.842,7.842,1,10,0,-7.8,-0.4,0 -"26",26,1,0,0.861,0.861,0,-21,0,-3.5,-1.1,4 -"27",27,1,0,10,10,0,26,1,-1.3,-1.3,-4 -"28",28,1,0,0.853,0.853,0,10,0,-6.8,-0.199999999999999,5 -"29",29,1,0,0.947,0.947,1,26,0,-1.9,0.5,-4 -"30",30,1,0,1.962,1.962,1,-5,0,3.8,1,2 -"31",31,1,0,9.065,9.065,0,22,1,-3.9,-0.4,-5 -"32",32,1,0,1.073,1.073,0,-19,0,8,-1,-9 -"33",33,1,0,0.652,0.652,0,0,1,0.799999999999997,3,-2 -"34",34,1,0,0.958,0.958,1,18,1,-3.8,0.300000000000001,3 -"35",35,1,0,4.659,4.659,0,-1,1,3.4,0.399999999999999,-4 -"36",36,1,0,4.182,4.182,1,21,1,6.8,-0.9,1 -"37",37,1,0,0.045,0.045,1,-13,0,4.7,1.4,4 -"38",38,1,0,8.042,8.042,0,-13,1,6.6,-0.0999999999999996,-8 -"39",39,1,0,0.666,0.666,1,1,1,-4.3,-1.5,4 -"40",40,1,0,2.408,2.408,0,-14,1,-1.3,-1.5,0 -"41",41,1,0,1.095,1.095,1,-6,0,-2.4,-0.0999999999999996,3 -"42",42,1,0,10,10,0,-21,0,1.5,-0.800000000000001,-5 -"43",43,1,0,0.155,0.155,1,13,1,-5.5,0.899999999999999,4 -"44",44,1,0,5.835,5.835,1,-25,0,2.3,0.100000000000001,3 -"45",45,1,0,0.901,0.901,1,10,0,-1.8,1.5,2 -"46",46,1,0,2.086,2.086,0,-14,1,-0.5,-1.2,-12 -"47",47,1,0,10,10,0,9,1,1.2,0,-7 -"48",48,1,0,0.277,0.277,1,11,1,5.8,1,-3 -"49",49,1,0,10,10,0,-11,1,0.899999999999999,0.300000000000001,2 -"50",50,1,0,0.332,0.332,1,-5,0,-2.3,-0.5,2 -"51",51,1,0,1.674,1.674,1,14,0,,-0.4,-1 -"52",52,1,0,0.509,0.509,1,-2,0,6.2,-0.800000000000001,4 -"53",53,1,0,0.014,0.014,1,19,1,-1.6,1.9,-4 -"54",54,1,0,8.445,8.445,0,-24,1,-3.7,0,-4 -"55",55,1,0,1.299,1.299,1,-16,0,-4.2,1,0 -"56",56,1,0,1.714,1.714,0,-7,0,1.6,-0.5,-2 -"57",57,1,0,0.123,0.123,1,19,0,5.4,0,2 -"58",58,1,0,7.098,7.098,0,-16,1,-6.5,-0.800000000000001,-5 -"59",59,1,0,2.429,2.429,1,-9,0,7.9,1.3,-2 -"60",60,1,0,3.655,3.655,0,-7,0,7.8,-0.199999999999999,-1 -"61",61,1,0,7.528,7.528,0,-27,0,-7,-0.699999999999999,-2 -"62",62,1,0,1.278,1.278,1,-4,0,-1.9,1.3,1 -"63",63,1,0,1.014,1.014,0,-3,0,-5.3,0.199999999999999,5 -"64",64,1,0,4.752,4.752,1,-10,1,1.1,-1.1,5 -"65",65,1,0,8.022,8.022,0,6,1,4.3,0.800000000000001,-2 -"66",66,1,0,10,10,0,1,1,3.1,-1.4,1 -"67",67,1,0,10,10,0,-11,1,-1.2,-1.4,2 -"68",68,1,0,4.744,4.744,0,3,1,-4.9,0.100000000000001,-5 -"69",69,1,0,0.712,0.712,1,-1,1,3.1,0.800000000000001,4 -"70",70,1,0,10,10,0,15,0,-0.5,-1.1,-1 -"71",71,1,0,5.275,5.275,0,-22,0,,-0.6,6 -"72",72,1,0,1.872,1.872,0,-21,,-0.100000000000001,0.699999999999999,-2 -"73",73,1,0,4.012,4.012,0,11,1,-6.4,-0.6,5 -"74",74,1,0,0.144,0.144,1,-9,1,4.5,0,-1 -"75",75,1,0,0.25,0.25,1,8,1,5.1,0.800000000000001,-2 -"76",76,1,0,0.174,0.174,1,6,1,-3,1.2,4 -"77",77,1,0,1.528,1.528,1,27,1,-1,0,-8 -"78",78,1,0,10,10,0,-17,0,-5.4,-0.9,-1 -"79",79,1,0,0.656,0.656,1,10,0,2.4,1.2,2 -"80",80,1,0,10,10,0,-2,0,1.1,-0.199999999999999,-9 -"81",81,1,0,0.395,0.395,0,-4,1,0.100000000000001,-1.5,5 -"82",82,1,0,0.374,0.374,1,-12,0,5.2,1.8,6 -"83",83,1,0,10,10,0,-17,1,3.6,1.2,3 -"84",84,1,0,4.27,4.27,1,-8,0,-2,-0.4,0 -"85",85,1,0,0.023,0.023,1,36,0,4.6,0.199999999999999,-4 -"86",86,1,0,0.243,0.243,0,12,0,-3.1,0.5,6 -"87",87,1,0,6.163,6.163,1,11,1,6,-0.6,-3 -"88",88,1,0,1.389,1.389,0,-1,1,-6,0.399999999999999,4 -"89",89,1,0,0.046,0.046,1,31,1,-3.5,-0.0999999999999996,4 -"90",90,1,0,10,10,0,-6,0,0.799999999999997,-1.7,2 -"91",91,1,0,1.146,1.146,0,-5,0,6.3,-0.4,-1 -"92",92,1,0,0.052,0.052,1,17,0,-1.6,1.3,6 -"93",93,1,0,8.931,8.931,0,-36,0,0.600000000000001,-1.4,-2 -"94",94,1,0,0.673,0.673,1,9,0,-4.8,0.600000000000001,4 -"95",95,1,0,10,10,0,-31,1,-1.1,0.800000000000001,-1 -"96",96,1,,,,,-8,0,4.8,0.199999999999999,3 -"97",97,1,0,3.049,3.049,0,-18,0,-0.100000000000001,1.1,-3 -"98",98,1,0,4.02,4.02,0,-10,1,2.2,-0.699999999999999,3 -"99",99,1,0,1.835,1.835,1,9,0,-0.600000000000001,-2.6,-2 -"100",100,1,0,1.333,1.333,1,4,0,-4,0.5,-3 -"101",101,1,0,1.971,1.971,1,19,1,6.6,0.699999999999999,-11 -"102",102,1,0,4.516,4.516,0,-24,0,-2.8,0.199999999999999,0 -"103",103,1,0,0.779,0.779,1,11,0,-6.2,0.399999999999999,11 -"104",104,1,0,5.346,5.346,0,-12,1,-0.899999999999999,0.600000000000001,1 -"105",105,1,0,0.496,0.496,0,-36,1,-1.1,1,-1 -"106",106,1,0,1.241,1.241,1,2,0,6.3,-1.3,0 -"107",107,1,0,1.854,1.854,1,8,0,-3.7,0.399999999999999,-9 -"108",108,1,0,6.032,6.032,0,9,1,4.4,-0.0999999999999996,5 -"109",109,1,0,2.259,2.259,0,-21,0,-4,0.399999999999999,-12 -"110",110,1,,,,,9,1,-3.3,-1.2,-1 -"111",111,1,0,0.325,0.325,1,5,0,4.5,1.1,13 -"112",112,1,0,1.257,1.257,1,-6,0,4.7,-0.0999999999999996,-4 -"113",113,1,0,1.552,1.552,1,11,1,6,-0.800000000000001,5 -"114",114,1,0,0.436,0.436,1,-19,1,0,1,-5 -"115",115,1,0,5.235,5.235,0,24,1,0.600000000000001,0.699999999999999,-9 -"116",116,1,0,0.064,0.064,1,13,0,6.4,1.4,-4 -"117",117,1,0,4.233,4.233,0,8,0,-2.4,-0.0999999999999996,2 -"118",118,1,0,0.719,0.719,1,17,0,6.7,-0.5,-6 -"119",119,1,0,1.566,1.566,1,,0,2.6,0.300000000000001,-3 -"120",120,1,0,0.464,0.464,1,9,0,2.3,-1.2,5 -"121",121,1,0,5.649,5.649,0,-16,1,1.4,-1.3,13 -"122",122,1,0,0.67,0.67,0,7,1,-1.6,-0.300000000000001,-4 -"123",123,1,0,1.582,1.582,0,-9,1,1.9,1.3,5 -"124",124,1,0,2.307,2.307,1,3,0,-2.1,0.399999999999999,9 -"125",125,1,0,4.726,4.726,0,3,0,-3.5,-1,0 -"126",126,1,0,9.007,9.007,1,-36,0,3,-1,4 -"127",127,1,0,10,10,0,-7,0,-0.399999999999999,-0.9,3 -"128",128,1,0,0.183,0.183,0,-19,0,3.9,-0.300000000000001,10 -"129",129,1,0,5.528,5.528,0,5,1,-2,-0.699999999999999,3 -"130",130,1,0,5.388,5.388,1,8,1,-7.2,0.800000000000001,1 -"131",131,1,0,8.272,8.272,1,-15,1,9.7,-1,-10 -"132",132,1,0,2.72,2.72,0,-8,1,7.4,-0.699999999999999,-12 -"133",133,1,0,5.239,5.239,0,8,1,5.9,-0.300000000000001,-7 -"134",134,1,0,0.448,0.448,1,6,0,1.2,-0.9,6 -"135",135,1,0,3.756,3.756,0,-40,1,5.2,1.2,2 -"136",136,1,0,1.858,1.858,0,8,1,3.9,-2.4,1 -"137",137,1,0,1.67,1.67,0,12,1,-5.2,-2.7,0 -"138",138,1,0,0.691,0.691,1,8,1,8.8,-0.699999999999999,4 -"139",139,1,0,0.094,0.094,0,-14,0,-0.600000000000001,-0.699999999999999, -"140",140,1,0,3.815,3.815,0,-2,0,-5.1,-0.4,-11 -"141",141,1,0,5.961,5.961,0,-2,1,-5.9,-0.5,1 -"142",142,1,0,0.412,0.412,0,15,0,1.7,-0.0999999999999996,-5 -"143",143,1,0,7.049,7.049,0,-6,1,-8.3,-0.6,2 -"144",144,1,0,10,10,0,13,0,-0.5,-1.4,-2 -"145",145,1,0,10,10,0,22,1,-0.799999999999997,0.300000000000001,-5 -"146",146,1,0,2.624,2.624,0,-7,0,-4.3,0.399999999999999,6 -"147",147,1,0,9.551,9.551,0,-31,1,0.799999999999997,-0.199999999999999,6 -"148",148,1,0,0.543,0.543,1,32,1,-2.1,1.1,-5 -"149",149,1,0,10,10,0,6,1,-6.9,0.199999999999999,-3 -"150",150,1,0,0.037,0.037,0,2,0,4.4,0.100000000000001,-6 -"151",151,1,0,1.491,1.491,1,1,1,10,-0.300000000000001,4 -"152",152,1,0,1.506,1.506,1,13,1,7.4,0,0 -"153",153,1,0,1.639,1.639,0,10,0,-1.5,-0.0999999999999996,6 -"154",154,1,0,2.559,2.559,1,-8,0,1.6,0.300000000000001,0 -"155",155,1,0,0.113,0.113,0,-11,0,-0.200000000000003,0,4 -"156",156,1,0,10,10,0,-3,1,-12.7,1,0 -"157",157,1,0,1.828,1.828,0,9,1,-2.9,,-10 -"158",158,1,0,4.565,4.565,0,-28,1,-5.2,0.399999999999999,-3 -"159",159,1,0,3.635,3.635,1,6,0,-3.9,-0.6,0 -"160",160,1,0,6.888,6.888,0,-21,1,3.9,2.2,3 -"161",161,1,0,0.706,0.706,1,-4,1,1.3,-0.6,6 -"162",162,1,0,1.384,1.384,1,37,1,1.7,-0.6,-5 -"163",163,1,0,0.614,0.614,1,-14,0,3,0.399999999999999,-1 -"164",164,1,0,2.849,2.849,0,-4,0,-7.4,-2.4,-4 -"165",165,1,0,1,1,1,20,0,-4.4,0.199999999999999,11 -"166",166,1,0,5.168,5.168,0,-2,1,10.4,0.899999999999999,-1 -"167",167,1,0,5.384,5.384,0,-5,1,1.3,0,-6 -"168",168,1,0,0.117,0.117,1,10,1,-2.8,-0.4,2 -"169",169,1,0,0.553,0.553,1,13,0,0.399999999999999,-2.2,3 -"170",170,1,0,9.096,9.096,1,-19,0,3,1.4,-5 -"171",171,1,0,3.278,3.278,0,-20,1,-3.7,-0.9,-2 -"172",172,1,0,1.247,1.247,1,-1,1,1.9,1.5,11 -"173",173,1,0,0.304,0.304,1,11,1,2.1,-0.6,7 -"174",174,1,0,10,10,0,-25,1,2.8,0.899999999999999,-1 -"175",175,1,0,0.113,0.113,1,-9,1,0.700000000000003,0.699999999999999,1 -"176",176,1,0,4.856,4.856,0,-14,1,1,-1,-4 -"177",177,1,0,2.868,2.868,0,-26,1,-2.9,1,-5 -"178",178,1,0,10,10,0,-34,1,-2.9,0.399999999999999,2 -"179",179,1,0,0.515,0.515,1,-11,0,-2.5,1.6,5 -"180",180,1,0,6.618,6.618,0,-12,1,-6,0.100000000000001,-5 -"181",181,1,0,5.063,5.063,0,19,1,3.6,-0.9,-1 -"182",182,1,0,1.604,1.604,1,-1,0,-9.8,1,2 -"183",183,1,0,9.866,9.866,0,0,0,-7.3,-1.1,-3 -"184",184,1,0,5.343,5.343,0,-3,1,6.7,0,-1 -"185",185,1,0,2.401,2.401,0,-43,1,4.6,1.6,10 -"186",186,1,0,2.127,2.127,0,-16,1,5,-1.5,0 -"187",187,1,0,1.368,1.368,1,3,1,-1.9,-0.800000000000001,-2 -"188",188,1,0,6.44,6.44,0,-14,0,1.2,-0.699999999999999,2 -"189",189,1,0,10,10,0,-12,0,-1.7,-1.6,2 -"190",190,1,0,0.357,0.357,0,19,0,-2.1,1.2,-4 -"191",191,1,0,4.696,4.696,1,-16,1,-1,-1,-2 -"192",192,1,0,2.296,2.296,0,11,1,1.3,-0.0999999999999996,-7 -"193",193,1,0,2.812,2.812,0,-26,0,-0.100000000000001,1.4,0 -"194",194,1,0,10,10,0,10,1,0.399999999999999,-0.4,1 -"195",195,1,0,0.324,0.324,1,22,1,1.2,-0.199999999999999,1 -"196",196,1,0,0.66,0.66,0,-2,0,0.600000000000001,-0.6,6 -"197",197,1,0,2.931,2.931,1,6,1,-1.1,0.600000000000001,2 -"198",198,1,0,0.122,0.122,1,5,1,8,0.399999999999999,-2 -"199",199,1,0,6.852,6.852,1,15,0,-1.9,-0.5,-1 -"200",200,1,0,2.218,2.218,0,5,1,5.3,0.600000000000001,-9 -"201",201,1,0,0.434,0.434,1,-1,0,4.4,0.100000000000001,-10 -"202",202,1,0,3.965,3.965,0,-17,0,0.700000000000003,0.899999999999999,2 -"203",203,1,0,6.184,6.184,0,-20,0,-3.6,-1,0 -"204",204,1,0,0.649,0.649,0,-2,1,2.2,-1.3,-13 -"205",205,1,0,0.322,0.322,1,20,1,-0.5,0.699999999999999,0 -"206",206,1,0,0.373,0.373,1,21,0,0.5,0.399999999999999,4 -"207",207,1,0,10,10,0,-16,1,1.7,0.199999999999999,0 -"208",208,1,0,3.297,3.297,1,12,0,-5.4,0.300000000000001,1 -"209",209,1,0,0.168,0.168,1,-17,1,5.6,0.199999999999999,1 -"210",210,1,0,10,10,0,8,1,-3.6,-1.6,-7 -"211",211,1,0,1.72,1.72,1,0,0,-4,-0.699999999999999,1 -"212",212,1,0,1.783,1.783,1,15,1,-0.899999999999999,0.600000000000001,-2 -"213",213,1,0,0.543,0.543,1,11,0,-3.6,0.199999999999999,-2 -"214",214,1,0,0.05,0.05,1,17,1,-5.5,0.199999999999999,-6 -"215",215,1,0,0.924,0.924,0,-2,0,0,1.5,-6 -"216",216,1,0,8.551,8.551,0,0,0,-4.9,0.399999999999999,-3 -"217",217,1,0,0.112,0.112,1,7,0,-6.3,0.600000000000001,3 -"218",218,1,0,0.869,0.869,1,-6,0,-3.8,0.5,-2 -"219",219,1,0,0.099,0.099,1,1,0,2.5,0.300000000000001,-5 -"220",220,1,0,8.113,8.113,1,-18,0,2.9,-0.699999999999999,-4 -"221",221,1,0,5.393,5.393,0,-2,1,3.4,-0.800000000000001,0 -"222",222,1,0,0.094,0.094,1,5,0,-5,0.5,-1 -"223",223,1,0,0.228,0.228,0,-24,0,-9,-0.0999999999999996,1 -"224",224,1,0,0.027,0.027,0,-15,1,0.5,-0.0999999999999996,0 -"225",225,1,0,1.292,1.292,1,-28,1,1.2,1.7,-1 -"226",226,1,0,1.118,1.118,0,18,1,0.600000000000001,-0.300000000000001,3 -"227",227,1,0,8.954,8.954,0,20,1,5.1,-0.5,-4 -"228",228,1,0,0.832,0.832,0,1,1,0.100000000000001,-0.800000000000001,-3 -"229",229,1,0,0.273,0.273,0,5,0,-0.5,-0.199999999999999,-2 -"230",230,1,0,10,10,0,0,0,4.1,-0.0999999999999996,1 -"231",231,1,0,2.117,2.117,0,7,0,-6.5,-1.1,3 -"232",232,1,0,10,10,0,-35,0,-5.9,1.9,1 -"233",233,1,0,0.048,0.048,1,26,0,-1.2,0.100000000000001,0 -"234",234,1,0,0.18,0.18,1,10,0,-2,0.100000000000001,-9 -"235",235,1,0,0.266,0.266,1,1,0,-2.5,-1,-2 -"236",236,1,0,0.23,0.23,1,13,1,,-1.3,1 -"237",237,1,0,0.273,0.273,1,-3,1,-4.5,0.800000000000001,1 -"238",238,1,0,1.757,1.757,1,11,1,-5.7,-0.800000000000001,-6 -"239",239,1,0,2.801,2.801,0,-5,1,-2.8,-0.5,-2 -"240",240,1,0,3.021,3.021,0,-28,1,3,-0.199999999999999,-6 -"241",241,1,0,1.115,1.115,0,7,0,-3.6,0.5,-1 -"242",242,1,0,1.958,1.958,0,-13,0,1.4,-0.5,-5 -"243",243,1,0,0.382,0.382,1,10,1,5.7,2.3,-5 -"244",244,1,0,1.003,1.003,1,38,1,-3.7,-0.300000000000001,-4 -"245",245,1,0,2.309,2.309,0,12,1,-5.3,0.699999999999999,2 -"246",246,1,0,1.115,1.115,0,-11,0,-4.1,-0.699999999999999,-15 -"247",247,1,0,0.618,0.618,1,-12,1,-4.9,1.4,4 -"248",248,1,0,2.818,2.818,0,-18,1,-8,0.300000000000001,8 -"249",249,1,0,0.664,0.664,1,-14,1,3.6,-0.0999999999999996,5 -"250",250,1,0,10,10,0,-13,1,-1.7,0.5,0 -"251",251,1,0,2.418,2.418,0,-39,1,7.2,1.7,-7 -"252",252,1,,,,,-21,1,0.299999999999997,0.5,12 -"253",253,1,0,7.319,7.319,0,-29,1,-3.4,0.899999999999999,-3 -"254",254,1,0,1.359,1.359,0,3,1,6.7,0.800000000000001,0 -"255",255,1,0,0.553,0.553,1,-8,0,1.5,0.399999999999999,13 -"256",256,1,0,0.174,0.174,1,31,1,7.4,1.2,4 -"257",257,1,0,0.5,0.5,0,-5,0,-4.7,-0.699999999999999,-9 -"258",258,1,0,2.976,2.976,0,-23,0,-2.6,-0.199999999999999,4 -"259",259,1,0,0.395,0.395,1,3,1,1.4,1.6,0 -"260",260,1,0,1.945,1.945,1,1,1,-4,0.800000000000001,-5 -"261",261,1,0,0.202,0.202,1,18,1,1.3,-1.3,1 -"262",262,1,0,0.472,0.472,1,14,1,-2.6,0,-4 -"263",263,1,0,0.75,0.75,1,16,1,0.799999999999997,0.199999999999999,12 -"264",264,1,0,0.564,0.564,1,13,0,-0.700000000000003,-0.800000000000001,8 -"265",265,1,0,2.235,2.235,0,-8,1,0.5,-1.4,6 -"266",266,1,0,0.803,0.803,1,11,,1,0.899999999999999,2 -"267",267,1,0,0.851,0.851,1,31,1,0.899999999999999,0.899999999999999,-2 -"268",268,1,0,1.361,1.361,1,-8,1,5.7,0.5,6 -"269",269,1,0,1.051,1.051,1,11,1,3.6,0.199999999999999,7 -"270",270,1,0,0.722,0.722,0,-2,0,-2,0,-3 -"271",271,1,0,0.165,0.165,1,12,1,6.3,1.1,-5 -"272",272,1,0,10,10,0,9,1,1.9,-0.199999999999999,-6 -"273",273,1,0,6.305,6.305,0,-12,1,2.8,0,8 -"274",274,1,0,9.724,9.724,0,-42,1,-3.3,0,2 -"275",275,1,0,1.442,1.442,0,-39,1,-0.299999999999997,-0.9,-4 -"276",276,1,0,6.876,6.876,0,-5,0,-0.700000000000003,0.600000000000001,0 -"277",277,1,0,1.145,1.145,1,-5,0,0.299999999999997,-0.6,6 -"278",278,1,0,2.249,2.249,1,5,1,-1,1.1,0 -"279",279,1,0,10,10,0,-24,1,-3.1,-0.300000000000001,-12 -"280",280,1,0,3.983,3.983,0,-8,1,-1.1,0,0 -"281",281,1,0,0.569,0.569,1,-16,0,3,-0.300000000000001,14 -"282",282,1,0,1.395,1.395,1,0,0,1,0.600000000000001,3 -"283",283,1,0,4.316,4.316,1,-19,0,4.4,-1.3,7 -"284",284,1,0,7.972,7.972,1,-10,0,1.2,0.600000000000001,-8 -"285",285,1,0,9.45,9.45,0,-8,0,-1.3,0.899999999999999,-4 -"286",286,1,0,0.036,0.036,0,8,0,-0.700000000000003,1.5,1 -"287",287,1,0,2.722,2.722,0,-20,0,6.5,-1.1,-3 -"288",288,1,0,0.656,0.656,1,-13,0,-0.799999999999997,0.100000000000001,-2 -"289",289,1,0,0.302,0.302,1,43,1,-5.8,-0.4,2 -"290",290,1,0,1.866,1.866,1,-5,0,2.3,-0.5,0 -"291",291,1,0,3.526,3.526,0,-5,1,-4.8,-1.1,-11 -"292",292,1,0,1.857,1.857,1,-8,0,1,-0.5,2 -"293",293,1,0,7.314,7.314,0,12,0,-3.5,0.899999999999999,-11 -"294",294,1,0,10,10,0,-2,1,-0.700000000000003,0.300000000000001,-5 -"295",295,1,0,0.147,0.147,0,-2,0,-3.8,0,-7 -"296",296,1,0,1.153,1.153,1,-2,0,-3.9,0.399999999999999,0 -"297",297,1,0,4.902,4.902,1,-14,0,-6.8,-0.800000000000001,5 -"298",298,1,0,7.314,7.314,0,-13,0,-3.6,-0.5,-7 -"299",299,1,0,0.639,0.639,1,-2,0,0.5,0.199999999999999,4 -"300",300,1,0,0.345,0.345,0,5,1,4.6,-0.9,-1 -"301",301,1,0,10,10,0,-9,0,-6.4,-1.5,-2 -"302",302,1,0,1.39,1.39,0,-34,0,0.399999999999999,-0.4,1 -"303",303,1,0,1.682,1.682,0,8,0,-2.4,-1.3,0 -"304",304,1,0,3.013,3.013,0,23,0,8.7,-2.5,4 -"305",305,1,0,1.876,1.876,1,-9,1,6.7,-0.0999999999999996,4 -"306",306,1,0,6.83,6.83,0,-13,1,5.1,1.2,-7 -"307",307,1,0,0.09,0.09,0,-4,1,-10.8,-0.199999999999999,-2 -"308",308,1,0,1.866,1.866,1,4,1,8.2,-0.0999999999999996,0 -"309",309,1,0,3.72,3.72,0,-4,1,3.6,-0.199999999999999,0 -"310",310,1,0,0.027,0.027,1,-14,1,3.5,0.300000000000001,2 -"311",311,1,0,1.463,1.463,0,3,1,-2,-0.699999999999999,2 -"312",312,1,0,5.275,5.275,0,0,0,2.4,-1.1, -"313",313,1,0,8.197,8.197,0,-4,0,1.5,-0.800000000000001,-7 -"314",314,1,0,0.117,0.117,1,24,0,8.5,0.100000000000001,2 -"315",315,1,0,10,10,0,-3,1,1.7,-1.6,4 -"316",316,1,0,2.417,2.417,1,4,1,-3.9,0.899999999999999,2 -"317",317,1,0,0.172,0.172,1,21,0,-2.5,-1,-8 -"318",318,1,0,0.644,0.644,1,22,0,13.8,1.2,-12 -"319",319,1,0,0.202,0.202,0,8,1,-0.100000000000001,0.100000000000001,-12 -"320",320,1,0,0.322,0.322,0,-5,1,-2.6,-1.1,-5 -"321",321,1,0,1.97,1.97,1,-14,0,-9.1,0.399999999999999,4 -"322",322,1,0,0.539,0.539,1,16,0,0,1.6,3 -"323",323,1,0,2.037,2.037,0,13,0,-4.2,0.5,-3 -"324",324,1,0,0.411,0.411,1,16,0,-3.4,-1.6,0 -"325",325,1,0,6.887,6.887,0,24,1,1.7,-1.8,6 -"326",326,1,0,0.03,0.03,1,15,0,2.2,1.4,-1 -"327",327,1,0,0.732,0.732,1,8,1,2.8,1.1,-7 -"328",328,1,0,0.921,0.921,1,13,0,-4.5,0.600000000000001,10 -"329",329,1,0,4.038,4.038,0,1,1,-2.6,-1.3,-2 -"330",330,1,0,0.789,0.789,0,0,0,-1,-0.0999999999999996,12 -"331",331,1,0,0.551,0.551,1,2,1,-6.5,0,2 -"332",332,1,0,2.697,2.697,1,3,1,-4.1,-0.699999999999999,2 -"333",333,1,,,,,-3,0,3.4,-1,5 -"334",334,1,0,1.084,1.084,0,-7,1,4.2,1.1,-10 -"335",335,1,0,0.809,0.809,0,-34,0,-1.5,-1.3,-7 -"336",336,1,0,0.026,0.026,1,-2,0,-3.3,-0.199999999999999,5 -"337",337,1,0,1.211,1.211,1,0,0,-3.8,0.600000000000001,0 -"338",338,1,0,9.746,9.746,1,-21,1,0.200000000000003,2.1,-6 -"339",339,1,0,5.375,5.375,0,-1,1,1.7,0.899999999999999,6 -"340",340,1,0,0.135,0.135,1,14,1,-4.7,1.7,4 -"341",341,1,0,6.037,6.037,0,-6,0,2.3,-0.6,-3 -"342",342,1,0,0.04,0.04,0,7,1,6.4,-0.300000000000001,0 -"343",343,1,0,5.561,5.561,0,-4,0,3.4,-1.1,1 -"344",344,1,0,10,10,0,-8,0,3.7,-2,-3 -"345",345,1,0,10,10,0,10,0,-6.9,-0.0999999999999996,-4 -"346",346,1,0,2.71,2.71,1,14,0,-1.1,-1,-2 -"347",347,1,0,0.636,0.636,0,-12,0,1.8,0.5,-1 -"348",348,1,0,2.11,2.11,0,6,1,1,-0.4,0 -"349",349,1,0,9.939,9.939,1,-6,1,-1,-0.4,5 -"350",350,1,0,0.187,0.187,1,-20,0,-0.600000000000001,0.899999999999999,1 -"351",351,1,0,0.464,0.464,1,17,0,1.4,-0.300000000000001,1 -"352",352,1,0,0.777,0.777,0,7,0,0.399999999999999,0.699999999999999,-3 -"353",353,1,0,1.143,1.143,1,31,1,4.3,-1.6,-3 -"354",354,1,0,0.348,0.348,0,6,0,-1.1,0.399999999999999,10 -"355",355,1,0,0.067,0.067,1,15,0,0.399999999999999,0.100000000000001,4 -"356",356,1,0,7.125,7.125,1,-4,0,6,0.800000000000001,-2 -"357",357,1,0,2.884,2.884,1,-2,0,-0.5,-0.699999999999999,-1 -"358",358,1,0,0.582,0.582,0,-23,1,-4,-1.5,-3 -"359",359,1,0,0.915,0.915,0,4,1,2.7,0.399999999999999,-3 -"360",360,1,0,0.191,0.191,1,20,0,0.100000000000001,0.5,-1 -"361",361,1,0,0.934,0.934,1,-3,0,-5.8,1.3,0 -"362",362,1,0,1.425,1.425,1,2,1,3.3,0.300000000000001,9 -"363",363,1,0,0.294,0.294,1,-20,0,-1.1,0.399999999999999,5 -"364",364,1,0,7.726,7.726,1,-2,0,-3.8,-1.3,10 -"365",365,1,0,1.669,1.669,0,12,1,-1.6,-1.5,0 -"366",366,1,0,1.855,1.855,1,-9,0,-2.4,-0.0999999999999996,4 -"367",367,1,0,2.538,2.538,0,3,1,3.8,0.100000000000001,-6 -"368",368,1,0,1.168,1.168,1,8,0,-6,0.199999999999999,-1 -"369",369,1,0,1.207,1.207,0,-6,1,6.3,-0.6,0 -"370",370,1,0,1.386,1.386,1,1,1,-4.1,-0.6,1 -"371",371,1,0,2.932,2.932,0,-21,1,0.700000000000003,2.5,-1 -"372",372,1,0,5.78,5.78,1,17,0,1.6,-1,-4 -"373",373,1,0,0.425,0.425,1,13,0,3,-0.199999999999999,-5 -"374",374,1,0,2.732,2.732,1,7,0,0.100000000000001,0.800000000000001,2 -"375",375,1,0,0.56,0.56,1,6,1,4,1.7,3 -"376",376,1,0,9.553,9.553,0,10,1,-5.3,-1.4,8 -"377",377,1,0,5.784,5.784,0,18,1,-2,-0.800000000000001,-5 -"378",378,1,0,5.889,5.889,0,-5,0,-4.7,-1.2,-1 -"379",379,1,0,2.043,2.043,1,,1,-3.4,-1.2,2 -"380",380,1,0,9.167,9.167,0,4,1,7.1,0,1 -"381",381,1,0,10,10,0,7,1,-7,-2.5,0 -"382",382,1,0,0.607,0.607,1,1,1,-1.5,-0.699999999999999,2 -"383",383,1,0,10,10,0,14,0,-6.9,-2,-3 -"384",384,1,0,1.445,1.445,1,15,0,-3.8,0.399999999999999,5 -"385",385,1,0,1.075,1.075,0,-9,0,-1.3,-0.800000000000001,3 -"386",386,1,0,0.135,0.135,0,-8,0,1.8,0.699999999999999,4 -"387",387,1,0,1.235,1.235,0,-9,1,3.3,0.899999999999999,-3 -"388",388,1,0,0.777,0.777,1,2,1,-2.5,-2.3,-2 -"389",389,1,0,1.147,1.147,1,9,1,-1,0.699999999999999,1 -"390",390,1,0,5.113,5.113,0,-9,0,-2.6,-1.6,-2 -"391",391,1,0,2.438,2.438,0,9,0,-0.700000000000003,-0.699999999999999,-7 -"392",392,1,0,6.029,6.029,0,-7,0,-0.899999999999999,1.3,-6 -"393",393,1,0,7.216,7.216,0,-9,0,-2.1,0.800000000000001,-6 -"394",394,1,0,10,10,0,5,0,-5.2,-1.3,-9 -"395",395,1,0,0.368,0.368,0,19,1,11.9,-0.0999999999999996,7 -"396",396,1,0,0.759,0.759,0,0,1,-5.4,-0.5,-3 -"397",397,1,0,1.2,1.2,0,-17,1,3.8,-0.199999999999999,4 -"398",398,1,0,1.524,1.524,1,23,0,0.899999999999999,0.899999999999999,-2 -"399",399,1,0,1.676,1.676,0,17,0,2,0.100000000000001,-3 -"400",400,1,0,2.871,2.871,0,14,1,-4.4,-0.5,-9 -"401",401,1,0,0.42,0.42,1,-5,0,-8.1,0.899999999999999,3 -"402",402,1,0,1.499,1.499,0,-14,0,5.8,1.1,-10 -"403",403,1,0,0.186,0.186,1,23,1,3.2,0.699999999999999,4 -"404",404,1,0,4.806,4.806,0,-3,1,-1.3,-1.1,4 -"405",405,1,0,1.561,1.561,1,-11,0,3.8,0.800000000000001,1 -"406",406,1,0,0.278,0.278,1,-11,0,8.8,-0.199999999999999,8 -"407",407,1,0,6.165,6.165,0,-16,0,2.8,-1.8,-3 -"408",408,1,0,1.007,1.007,1,6,1,-2.8,0.699999999999999,2 -"409",409,1,0,0.508,0.508,1,-14,0,1.6,2,-4 -"410",410,1,0,0.672,0.672,0,30,1,-4.7,1.9,-5 -"411",411,1,0,1.675,1.675,1,-10,0,5.9,0.800000000000001,11 -"412",412,1,0,2.078,2.078,1,18,0,-0.100000000000001,0,2 -"413",413,1,0,1.704,1.704,1,-32,0,-4.1,0.699999999999999,8 -"414",414,1,0,4.773,4.773,0,17,1,0.799999999999997,0.899999999999999,-8 -"415",415,1,0,6.144,6.144,0,4,0,1.4,0.399999999999999,-8 -"416",416,1,0,0.107,0.107,1,12,1,1,1.4,1 -"417",417,1,0,8.267,8.267,1,-21,0,1.2,-1.2,5 -"418",418,1,0,0.364,0.364,1,19,,-2.5,0.600000000000001,1 -"419",419,1,0,10,10,0,-10,1,-4.2,0.100000000000001,6 -"420",420,1,0,1.078,1.078,1,11,0,-3.2,0.300000000000001,-3 -"421",421,1,0,4.907,4.907,0,-13,1,8.09999999999999,-0.4,5 -"422",422,1,0,0.344,0.344,1,10,0,-0.200000000000003,-0.4,-2 -"423",423,1,0,0.191,0.191,0,4,0,-1.3,1.2,-1 -"424",424,1,0,5.843,5.843,0,-27,1,4.7,1.7,-5 -"425",425,1,0,2.006,2.006,0,-15,0,-2.3,-1.8,-4 -"426",426,1,0,0.655,0.655,1,5,0,-0.100000000000001,0.300000000000001,8 -"427",427,1,0,4.685,4.685,1,14,0,0,0.300000000000001,4 -"428",428,1,0,1.176,1.176,0,-22,0,-4.1,1.9,-2 -"429",429,1,0,0.853,0.853,1,6,0,1.5,0.800000000000001,1 -"430",430,1,0,5.916,5.916,0,-14,1,6,-0.9,1 -"431",431,1,0,1.485,1.485,1,-5,1,2.1,0.800000000000001,-1 -"432",432,1,0,1.346,1.346,1,19,0,-1.4,-1.1,5 -"433",433,1,0,1.92,1.92,0,3,1,5.2,0.699999999999999,1 -"434",434,1,0,0.189,0.189,0,-4,1,4.7,-1.5,0 -"435",435,1,0,10,10,0,-5,1,-4.6,-1.4,6 -"436",436,1,0,0.218,0.218,1,10,0,12.1,1.1,1 -"437",437,1,0,5.696,5.696,0,-9,1,-2.7,-0.6,-1 -"438",438,1,0,10,10,0,-16,0,-2.5,,-5 -"439",439,1,0,6.182,6.182,0,-1,,2.9,-0.5,-5 -"440",440,1,0,0.384,0.384,1,-12,1,-6.7,-0.699999999999999,-3 -"441",441,1,0,0.471,0.471,1,-2,1,-4.1,-0.300000000000001,10 -"442",442,1,0,5.177,5.177,1,11,0,-5.1,-1.2,-1 -"443",443,1,0,10,10,0,-2,0,1.1,-0.699999999999999,-4 -"444",444,1,0,10,10,0,-15,1,-5.6,0.600000000000001,-7 -"445",445,1,0,0.538,0.538,0,-23,0,0.899999999999999,0.699999999999999,-9 -"446",446,1,0,8.699,8.699,0,-10,0,5.7,-0.4,-4 -"447",447,1,0,3.92,3.92,0,9,0,0.799999999999997,0.5,-9 -"448",448,1,0,1.742,1.742,0,-12,0,4,-1.8,0 -"449",449,1,0,1.179,1.179,0,-38,0,-6.6,0.100000000000001,2 -"450",450,1,0,0.85,0.85,1,16,1,-3.9,0.399999999999999,1 -"451",451,1,0,10,10,0,5,1,7.9,-0.4,-4 -"452",452,1,0,0.217,0.217,1,-8,0,-3.8,0.699999999999999,0 -"453",453,1,0,2.167,2.167,0,17,0,2.1,0,-7 -"454",454,1,0,1.464,1.464,1,2,0,-7.4,0.300000000000001,-7 -"455",455,1,0,5.366,5.366,0,5,0,-10.6,-0.9,-14 -"456",456,1,0,0.822,0.822,0,12,0,-2.5,0.399999999999999,6 -"457",457,1,0,0.325,0.325,1,-1,0,4.9,1.4,-1 -"458",458,1,0,10,10,0,-3,0,-3.3,-0.699999999999999,-6 -"459",459,1,0,0.045,0.045,1,5,0,4.9,-0.199999999999999,3 -"460",460,1,0,1.669,1.669,1,4,1,6.1,1.2,8 -"461",461,1,0,0.589,0.589,1,7,0,2.6,1.4,6 -"462",462,1,0,1.948,1.948,1,-5,0,-1.1,0.699999999999999,-4 -"463",463,1,0,1.136,1.136,0,-13,0,-0.600000000000001,-1,3 -"464",464,1,0,10,10,0,-9,0,,0.600000000000001,-5 -"465",465,1,0,2.998,2.998,0,-18,0,0.399999999999999,0.5,-7 -"466",466,1,0,2.397,2.397,1,-1,0,1.9,-1.4,2 -"467",467,1,0,0.265,0.265,1,26,0,5.5,1.7,2 -"468",468,1,0,0.207,0.207,1,-17,0,-0.100000000000001,0.5,12 -"469",469,1,0,0.064,0.064,0,30,0,-4.3,0.199999999999999,-10 -"470",470,1,0,6.288,6.288,1,-15,1,-4.5,-0.300000000000001,3 -"471",471,1,0,0.044,0.044,1,-16,1,-2.2,2.6,3 -"472",472,1,0,0.101,0.101,0,-6,0,1.5,2.1,4 -"473",473,1,0,1.337,1.337,1,-33,0,-1,0.100000000000001,-1 -"474",474,1,0,0.673,0.673,1,17,0,-6,-0.0999999999999996,1 -"475",475,1,0,10,10,0,-8,1,4.6,0.600000000000001,-7 -"476",476,1,0,10,10,0,-16,0,9.3,-0.6,-1 -"477",477,1,0,3.627,3.627,0,9,1,1.3,-0.5,-3 -"478",478,1,0,5.889,5.889,1,22,1,2.9,1.1,-3 -"479",479,1,0,0.115,0.115,0,4,1,8.59999999999999,0.899999999999999,4 -"480",480,1,0,0.716,0.716,1,29,1,4.1,1.1,5 -"481",481,1,0,5.006,5.006,0,-19,1,3.2,1.2,-9 -"482",482,1,0,10,10,0,-7,0,5.5,-0.699999999999999,0 -"483",483,1,0,6.64,6.64,1,-18,0,-4.3,0.600000000000001,-1 -"484",484,1,0,3.78,3.78,0,-14,1,-3.6,-0.300000000000001,0 -"485",485,1,0,3.676,3.676,0,-18,,-6.6,-0.0999999999999996,-2 -"486",486,1,0,4.44,4.44,0,-13,0,6.8,-1.1,0 -"487",487,1,0,0.153,0.153,1,25,0,0.200000000000003,2.2,1 -"488",488,1,0,0.01,0.01,1,-1,0,-4.8,-0.0999999999999996,5 -"489",489,1,0,1.869,1.869,1,-1,0,5,1.2,-9 -"490",490,1,0,0.192,0.192,1,-12,0,-5.5,0.800000000000001,0 -"491",491,1,0,3.777,3.777,0,-1,0,6.6,-0.0999999999999996,0 -"492",492,1,0,9.48,9.48,1,7,1,-2.5,-0.300000000000001,-2 -"493",493,1,0,0.44,0.44,1,5,1,-1.4,-0.9,3 -"494",494,1,0,0.089,0.089,1,10,0,2.5,0.800000000000001,-3 -"495",495,1,0,2.667,2.667,0,-20,0,2.4,-1.9,11 -"496",496,1,0,0.796,0.796,1,-3,0,-2.1,0.899999999999999,5 -"497",497,1,0,0.774,0.774,1,-5,1,1.1,0.800000000000001,2 -"498",498,1,0,10,10,0,-17,0,2.8,-1.1,1 -"499",499,1,0,0.304,0.304,1,10,1,6.4,0.399999999999999,5 -"500",500,1,0,1.997,1.997,0,-1,1,-0.399999999999999,0.600000000000001,1 -"501",501,1,0,6.003,6.003,1,-9,1,3.5,0.899999999999999,3 -"502",502,1,0,9.569,9.569,0,-7,1,-4.7,-0.5,11 -"503",503,1,0,3.368,3.368,0,8,0,-2.6,-0.699999999999999,1 -"504",504,1,0,0.551,0.551,1,-2,0,5.8,0.199999999999999,-6 -"505",505,1,0,1.759,1.759,1,-19,0,-1.6,0.899999999999999,5 -"506",506,1,0,9.943,9.943,1,13,1,-4.8,-1.2,3 -"507",507,1,0,0.255,0.255,1,-12,0,,1.3,-1 -"508",508,1,0,1.994,1.994,1,1,1,5.1,-0.199999999999999,5 -"509",509,1,0,6.888,6.888,0,2,1,-4.1,0.800000000000001,-2 -"510",510,1,0,5.294,5.294,0,-3,0,-0.5,-1.6,-4 -"511",511,1,0,10,10,0,-4,0,1.1,-0.4,-7 -"512",512,1,0,4.598,4.598,0,3,0,-6.7,0.600000000000001,0 -"513",513,1,0,0.187,0.187,1,16,1,1.6,0.600000000000001,6 -"514",514,1,0,2.181,2.181,0,-3,0,3,0.300000000000001,2 -"515",515,1,0,0.699,0.699,0,-11,1,6.4,-0.5,3 -"516",516,1,0,3.167,3.167,0,-8,1,1.5,-2.3,-5 -"517",517,1,0,0.322,0.322,1,41,0,-6.3,-0.4,-4 -"518",518,1,0,4.591,4.591,0,19,0,-2.3,-1,-11 -"519",519,1,0,1.599,1.599,0,-15,1,5.8,-0.800000000000001,-4 -"520",520,1,0,1.124,1.124,1,20,1,-4.1,0.199999999999999,2 -"521",521,1,0,7.73,7.73,0,-11,1,1.4,0.5, -"522",522,1,0,1.505,1.505,1,-22,0,7.8,2.1,-5 -"523",523,1,0,6.762,6.762,0,12,1,3.7,-1.7,3 -"524",524,1,0,0.38,0.38,0,-5,0,-1,-1.4,-8 -"525",525,1,0,0.017,0.017,1,35,0,-1.7,-0.199999999999999,18 -"526",526,1,0,2.244,2.244,0,14,1,4.6,-2,2 -"527",527,1,0,1.308,1.308,0,-4,1,3.4,-0.199999999999999,-1 -"528",528,1,0,1.064,1.064,1,8,0,4.9,0.199999999999999,4 -"529",529,1,0,0.873,0.873,0,-2,1,3.6,-0.9,-10 -"530",530,1,0,0.625,0.625,1,-4,0,-5.1,0,1 -"531",531,1,0,4.847,4.847,0,-5,0,-3,-1.2,0 -"532",532,1,0,3.56,3.56,0,2,1,4.1,-0.0999999999999996,2 -"533",533,1,0,2.068,2.068,1,20,1,4.6,0.899999999999999,2 -"534",534,1,0,1.104,1.104,1,-12,1,-3.2,-0.6,18 -"535",535,1,0,1.823,1.823,1,-18,0,-1.2,0.600000000000001,9 -"536",536,1,0,10,10,0,-22,0,5.7,0.699999999999999,0 -"537",537,1,0,1.301,1.301,1,32,1,4.1,-1.8,3 -"538",538,1,0,0.043,0.043,0,-1,1,2.5,-2.2,-6 -"539",539,1,0,0.489,0.489,1,5,0,-1.3,0.800000000000001,1 -"540",540,1,0,2.425,2.425,0,11,1,2.6,-0.199999999999999,-5 -"541",541,1,0,0.122,0.122,1,18,0,2.8,1.5,2 -"542",542,1,0,0.977,0.977,1,,0,,-1.1,3 -"543",543,1,0,0.461,0.461,1,13,1,1.5,-0.0999999999999996,4 -"544",544,1,0,7.063,7.063,0,-4,0,-1.7,-0.4,4 -"545",545,1,0,0.293,0.293,1,17,0,-0.200000000000003,-0.300000000000001,-3 -"546",546,1,0,5.048,5.048,0,-14,0,-4.5,-0.699999999999999,-1 -"547",547,1,0,2.178,2.178,0,36,1,1.4,-0.199999999999999,-6 -"548",548,1,0,0.061,0.061,1,11,1,0.399999999999999,0.800000000000001,2 -"549",549,1,0,4.97,4.97,0,2,1,2.9,-0.199999999999999,10 -"550",550,1,0,5.177,5.177,0,-10,1,0.799999999999997,-2.3,1 -"551",551,1,0,0.949,0.949,1,11,0,-6.7,0.199999999999999,-5 -"552",552,1,0,0.468,0.468,0,-3,1,-0.399999999999999,-0.5,3 -"553",553,1,0,9.446,9.446,0,-19,0,3.3,-0.0999999999999996,-3 -"554",554,1,0,0.748,0.748,1,10,1,3.3,-0.699999999999999,-1 -"555",555,1,,,,,-1,1,0.600000000000001,0.100000000000001,6 -"556",556,1,0,1.072,1.072,1,-8,1,4.6,-1.1,5 -"557",557,1,0,8.496,8.496,1,-12,0,3.9,0.399999999999999,-1 -"558",558,1,0,1.814,1.814,1,-21,0,5.9,-0.5,6 -"559",559,1,0,0.259,0.259,0,19,1,7.1,-0.300000000000001,2 -"560",560,1,0,0.705,0.705,0,3,0,-6.6,-0.699999999999999,-10 -"561",561,1,,,,,-25,0,0.200000000000003,-0.9,-6 -"562",562,1,0,1.946,1.946,0,9,0,-10.1,0,-2 -"563",563,1,0,1.611,1.611,1,-5,1,-4,0.800000000000001,-7 -"564",564,1,0,5.153,5.153,0,-6,0,-4.3,-1.2,-3 -"565",565,1,0,1.98,1.98,1,3,0,0.700000000000003,-1.4,-4 -"566",566,1,,,,,-17,0,-1.1,-0.199999999999999,9 -"567",567,1,0,1.968,1.968,0,-7,1,4.5,0.300000000000001,9 -"568",568,1,0,1.367,1.367,0,1,0,-2.6,1,-8 -"569",569,1,0,8.958,8.958,1,3,0,1.9,0.699999999999999,-6 -"570",570,1,0,3.002,3.002,0,-18,0,0,-0.0999999999999996,4 -"571",571,1,0,1.064,1.064,0,2,1,-0.600000000000001,-0.9,0 -"572",572,1,0,2.149,2.149,1,1,0,-0.399999999999999,-2.5,3 -"573",573,1,0,0.983,0.983,0,3,1,0.399999999999999,-0.9,-2 -"574",574,1,0,0.515,0.515,0,-11,1,2.2,-0.4,3 -"575",575,1,0,1.634,1.634,0,-13,1,-10.5,-0.699999999999999,-3 -"576",576,1,0,0.167,0.167,1,7,1,-4.5,0.800000000000001,16 -"577",577,1,0,0.026,0.026,1,10,0,-2.6,-0.4,7 -"578",578,1,0,0.685,0.685,1,5,1,2.5,-0.300000000000001,6 -"579",579,1,0,6.12,6.12,0,-6,0,-11.4,-1.2,-1 -"580",580,1,0,0.628,0.628,0,3,0,-7.6,-1.9,-1 -"581",581,1,0,6.213,6.213,1,-27,0,1.5,0.5,8 -"582",582,1,0,9.752,9.752,0,5,1,-6,0.399999999999999,4 -"583",583,1,0,0.412,0.412,1,13,0,-2.8,0.600000000000001,5 -"584",584,1,0,0.313,0.313,1,28,0,-1.8,0.199999999999999,0 -"585",585,1,0,0.007,0.007,1,26,1,0.200000000000003,1.1,0 -"586",586,1,0,1.108,1.108,1,0,1,-0.799999999999997,1.6,4 -"587",587,1,0,2.697,2.697,1,5,0,0.100000000000001,0.399999999999999,-8 -"588",588,1,0,4.471,4.471,0,-8,0,2.2,-0.199999999999999,-5 -"589",589,1,0,7.712,7.712,1,-19,1,-7.3,-1.1,6 -"590",590,1,0,0.994,0.994,0,6,0,-1.8,-1,1 -"591",591,1,0,0.473,0.473,1,11,0,-4.9,2.5,7 -"592",592,1,0,5.384,5.384,0,-4,1,0.399999999999999,-0.300000000000001,-5 -"593",593,1,0,0.161,0.161,1,10,1,-4.6,2.4,2 -"594",594,1,0,7.467,7.467,0,8,1,-0.299999999999997,0.5,2 -"595",595,1,0,0.223,0.223,1,-11,1,3.4,1.2,-1 -"596",596,1,0,2.002,2.002,0,-12,0,0.200000000000003,-0.5,-7 -"597",597,1,0,0.321,0.321,1,24,0,1.6,-0.699999999999999,-5 -"598",598,1,0,3.476,3.476,0,-33,1,0.399999999999999,0.899999999999999,1 -"599",599,1,0,1.62,1.62,1,5,1,7,1.2,0 -"600",600,1,0,6.345,6.345,0,0,1,-1.9,-2,-7 -"601",601,1,0,10,10,0,-8,0,-2.6,-0.6,1 -"602",602,1,0,1.678,1.678,0,3,0,1.7,-0.9,-5 -"603",603,1,0,10,10,0,-14,0,-2.2,-0.4,-4 -"604",604,1,0,0.653,0.653,0,20,1,-2.7,0.199999999999999,3 -"605",605,1,0,5.332,5.332,0,-8,1,5,-0.6,1 -"606",606,1,0,10,10,0,14,1,4.8,-2.1,-6 -"607",607,1,0,9.378,9.378,0,-2,0,-4.7,-0.9,-2 -"608",608,1,0,0.649,0.649,0,0,0,-0.700000000000003,1.5,2 -"609",609,1,0,3.845,3.845,1,11,0,-1.7,-0.199999999999999,-2 -"610",610,1,0,0.131,0.131,1,2,1,1.2,0.300000000000001,9 -"611",611,1,0,0.877,0.877,0,-7,0,3.8,-0.199999999999999,2 -"612",612,1,0,0.115,0.115,1,10,0,-1.2,1.6,-4 -"613",613,1,0,5.642,5.642,0,9,1,2,-0.800000000000001,2 -"614",614,1,0,10,10,0,2,1,-4.4,0.399999999999999,-6 -"615",615,1,0,9.039,9.039,0,-3,1,-3,0.399999999999999,-4 -"616",616,1,0,0.152,0.152,1,-4,1,0.5,1.6,-3 -"617",617,1,0,3.965,3.965,0,-7,1,-1.4,-0.199999999999999,0 -"618",618,1,0,0.645,0.645,1,-5,1,-2.7,-2.4,-7 -"619",619,1,0,2.683,2.683,0,-9,0,-2.6,0.399999999999999,-7 -"620",620,1,0,1.336,1.336,1,5,1,1.1,1.2,8 -"621",621,1,0,0.193,0.193,1,6,0,0.700000000000003,-0.800000000000001,3 -"622",622,1,0,0.288,0.288,1,11,1,-0.299999999999997,0.199999999999999,-5 -"623",623,1,0,0.366,0.366,1,-2,0,-2.2,1.1,-9 -"624",624,1,0,2.96,2.96,1,16,1,6.4,-1,3 -"625",625,1,0,0.41,0.41,1,7,1,0.299999999999997,0.100000000000001,0 -"626",626,1,0,1.143,1.143,1,30,1,5.9,0.100000000000001,-4 -"627",627,1,0,1.867,1.867,1,1,0,-8.5,-1.1,5 -"628",628,1,0,0.174,0.174,0,-18,1,3.1,-0.199999999999999,6 -"629",629,1,0,1.94,1.94,0,-22,1,-1.9,-1,3 -"630",630,1,0,2.396,2.396,1,11,0,-2.4,-1,10 -"631",631,1,0,0.205,0.205,1,,0,-3.3,0.300000000000001,7 -"632",632,1,0,10,10,0,-14,1,6.3,-1.1,2 -"633",633,1,0,2.014,2.014,0,2,1,6.5,-1.2,0 -"634",634,1,0,1.774,1.774,1,16,0,0.799999999999997,-0.300000000000001,-3 -"635",635,1,0,0.069,0.069,1,24,0,4.2,0.899999999999999,-4 -"636",636,1,0,1.969,1.969,0,-6,1,-0.799999999999997,-1.5,-4 -"637",637,1,0,1.098,1.098,0,-3,0,3.8,1,-9 -"638",638,1,0,2.162,2.162,0,13,1,1.8,1.5,-3 -"639",639,1,0,0.168,0.168,0,-10,0,,-1.6,-3 -"640",640,1,0,0.989,0.989,1,29,0,0.399999999999999,0.399999999999999,-3 -"641",641,1,0,0.194,0.194,0,2,1,-2.3,-1.4,9 -"642",642,1,0,0.078,0.078,0,-17,1,-1.1,0.399999999999999,-4 -"643",643,1,0,0.528,0.528,0,-5,1,0.799999999999997,-2.4,-8 -"644",644,1,0,4.749,4.749,0,-8,1,0.399999999999999,0.399999999999999,4 -"645",645,1,,,,,-12,0,-3.5,1.4,5 -"646",646,1,0,0.863,0.863,1,-7,1,6,-1.6,-2 -"647",647,1,0,1.991,1.991,1,-8,1,0.299999999999997,-0.9,-10 -"648",648,1,0,7.787,7.787,0,6,0,5.9,-0.5,6 -"649",649,1,0,0.731,0.731,1,4,0,0.299999999999997,0.5,4 -"650",650,1,0,1.214,1.214,1,2,0,0.600000000000001,-2.4,-1 -"651",651,1,0,3.799,3.799,1,0,0,1.2,-0.800000000000001,9 -"652",652,1,0,1.816,1.816,0,-13,1,-5.9,-1.3,-1 -"653",653,1,0,2.284,2.284,0,2,1,-5,0.100000000000001,-9 -"654",654,1,0,0.494,0.494,0,15,1,-3.4,-1.2,-5 -"655",655,1,0,6.926,6.926,0,-19,0,-2.3,0.800000000000001,-8 -"656",656,1,0,0.159,0.159,1,22,0,4.2,-1.4,7 -"657",657,1,0,0.261,0.261,0,9,1,2.7,0.399999999999999,9 -"658",658,1,0,0.952,0.952,1,5,0,4.3,-0.4,-2 -"659",659,1,0,10,10,0,-30,1,-2.6,0.100000000000001,-1 -"660",660,1,0,4.477,4.477,0,-4,1,0.200000000000003,0.300000000000001,3 -"661",661,1,0,0.634,0.634,0,-22,0,-3.6,-0.4,0 -"662",662,1,0,0.045,0.045,1,1,1,-4.5,0.399999999999999,-4 -"663",663,1,0,6.572,6.572,0,-4,1,4.5,-1.5,-12 -"664",664,1,0,0.917,0.917,1,8,0,7,0.399999999999999,4 -"665",665,1,0,5.828,5.828,0,8,1,-14.8,-1.2,2 -"666",666,1,0,0.168,0.168,1,14,0,2.5,-0.5,-7 -"667",667,1,0,1.733,1.733,1,-4,1,-7.3,1,10 -"668",668,1,0,1.361,1.361,1,15,0,0.799999999999997,-1,-2 -"669",669,1,0,0.439,0.439,0,-3,1,-6.6,0.5,-1 -"670",670,1,0,0.053,0.053,0,8,1,3.1,1.2,-2 -"671",671,1,0,1.319,1.319,1,-1,1,-1.2,1.6,5 -"672",672,1,0,6.07,6.07,1,-2,1,4.8,0.199999999999999,-6 -"673",673,1,0,5.843,5.843,0,1,1,1,1.2,-5 -"674",674,1,0,0.126,0.126,0,-21,0,-0.200000000000003,0.399999999999999,3 -"675",675,1,0,7.042,7.042,0,-2,1,2.3,1.7,4 -"676",676,1,0,1.454,1.454,0,-10,0,-5.4,0.600000000000001,-13 -"677",677,1,0,10,10,0,-39,1,,0.399999999999999,1 -"678",678,1,0,2.002,2.002,1,-5,0,0.700000000000003,-0.6,-2 -"679",679,1,0,3.03,3.03,1,20,0,2.1,-1.5,-2 -"680",680,1,0,0.01,0.01,1,11,0,1,0.199999999999999,1 -"681",681,1,0,9.27,9.27,0,-10,1,-6,-1.7,-8 -"682",682,1,0,0.696,0.696,1,-8,0,3.1,0.199999999999999,2 -"683",683,1,0,0.032,0.032,1,2,1,-3.7,1.6,2 -"684",684,1,0,3.945,3.945,0,-19,1,2.4,-0.199999999999999,-1 -"685",685,1,0,0.407,0.407,1,-14,0,1.7,0.600000000000001,-5 -"686",686,1,0,0.592,0.592,1,-9,1,2,-0.0999999999999996,6 -"687",687,1,0,4.361,4.361,0,-10,0,1.3,-0.699999999999999,3 -"688",688,1,0,0.094,0.094,1,23,0,4.2,0.100000000000001,-1 -"689",689,1,0,0.298,0.298,1,25,0,-4,-0.0999999999999996,6 -"690",690,1,0,1.527,1.527,0,-22,1,-5.7,0,10 -"691",691,1,0,2.571,2.571,1,-3,0,5.2,-1.5,0 -"692",692,1,0,10,10,0,-29,1,-0.399999999999999,0.100000000000001,3 -"693",693,1,0,0.819,0.819,1,7,1,-2.5,-0.699999999999999,6 -"694",694,1,0,4.024,4.024,1,-4,1,-0.200000000000003,-1.7,0 -"695",695,1,0,1.322,1.322,1,3,1,5.6,1,7 -"696",696,1,0,10,10,0,6,1,-0.600000000000001,0.5,-8 -"697",697,1,0,2.626,2.626,0,16,1,0.100000000000001,-1.5,12 -"698",698,1,0,6.527,6.527,0,0,1,-4.5,-0.5,-8 -"699",699,1,0,10,10,0,-5,0,-10.6,0.100000000000001,-3 -"700",700,1,0,2.635,2.635,0,11,1,1.5,-0.9,-5 -"701",701,1,0,0.746,0.746,0,2,0,-1.3,1.7,1 -"702",702,1,0,6.64,6.64,1,15,1,3.8,-0.6,5 -"703",703,1,0,7.823,7.823,0,-23,1,-1.6,-0.0999999999999996,-6 -"704",704,1,0,0.484,0.484,1,26,1,-6.4,-0.199999999999999,2 -"705",705,1,0,1.046,1.046,1,-7,1,3.3,0.199999999999999,1 -"706",706,1,0,0.074,0.074,1,10,0,1.3,0.699999999999999,4 -"707",707,1,0,10,10,0,-8,1,2.7,-0.0999999999999996,-1 -"708",708,1,0,10,10,0,-15,0,-2.9,-0.5,-10 -"709",709,1,0,0.75,0.75,1,15,0,5.1,0.800000000000001,-7 -"710",710,1,0,4.445,4.445,0,7,1,0.799999999999997,-1.8,-3 -"711",711,1,0,6.974,6.974,1,14,0,-0.200000000000003,-1.2,-2 -"712",712,1,0,0.285,0.285,1,-2,0,-0.600000000000001,-0.5,-4 -"713",713,1,0,0.233,0.233,0,4,0,1.5,-1.2,3 -"714",714,1,0,10,10,0,-8,1,1.4,-0.699999999999999,-3 -"715",715,1,0,10,10,0,-2,0,-0.600000000000001,-2.3,2 -"716",716,1,0,0.251,0.251,0,-20,0,-7.6,-1.8,3 -"717",717,1,0,0.52,0.52,1,-2,0,3.8,-0.0999999999999996,8 -"718",718,1,0,6.723,6.723,1,0,,-8.3,-0.199999999999999,10 -"719",719,1,0,0.285,0.285,1,-17,0,-3.1,-1,0 -"720",720,1,0,0.416,0.416,1,7,1,6.9,1.3,6 -"721",721,1,0,0.974,0.974,0,12,1,0.299999999999997,-0.800000000000001,-7 -"722",722,1,0,1.11,1.11,1,26,1,-1.5,-1.4,0 -"723",723,1,0,0.586,0.586,1,1,0,6.7,1.4,5 -"724",724,1,0,1.129,1.129,0,10,1,3.2,0.699999999999999,-14 -"725",725,1,0,1.145,1.145,0,1,0,-2,0.600000000000001,-4 -"726",726,1,0,5.229,5.229,0,11,1,-3,-0.6,1 -"727",727,1,0,2.872,2.872,1,-8,1,4.8,0.800000000000001,-6 -"728",728,1,0,8.56,8.56,0,2,1,4.7,-0.4,-2 -"729",729,1,0,7.38,7.38,0,6,1,5.6,-0.5,-7 -"730",730,1,0,1.015,1.015,1,9,0,,-0.699999999999999,-5 -"731",731,1,0,0.518,0.518,1,7,0,-5.8,-0.699999999999999,14 -"732",732,1,0,0.116,0.116,1,13,0,-1.8,-1.1,-6 -"733",733,1,0,10,10,0,-4,1,-5.3,-1.1,-7 -"734",734,1,0,0.869,0.869,1,0,1,-9.2,1.5,13 -"735",735,1,0,0.201,0.201,1,1,0,-1.3,0.100000000000001,-4 -"736",736,1,0,10,10,0,-17,1,7.1,-2,-6 -"737",737,1,0,0.819,0.819,1,-8,0,-0.200000000000003,1.4,-3 -"738",738,1,0,3.956,3.956,0,-10,1,-1,0.399999999999999, -"739",739,1,0,0.23,0.23,0,8,1,0.600000000000001,0.100000000000001,3 -"740",740,1,0,0.256,0.256,1,15,0,-1.3,0.199999999999999,3 -"741",741,1,0,0.954,0.954,1,17,0,2.4,-0.699999999999999,-2 -"742",742,1,0,2.893,2.893,0,-3,1,3.2,0, -"743",743,1,0,0.541,0.541,0,7,0,-8.7,-0.800000000000001,3 -"744",744,1,0,0.593,0.593,1,15,0,7.8,0.699999999999999,4 -"745",745,1,0,10,10,0,11,1,2.3,-1,-6 -"746",746,1,0,10,10,0,-24,0,2.3,-0.6,-4 -"747",747,1,0,4.177,4.177,1,-9,0,4.4,0.699999999999999,7 -"748",748,1,0,1.598,1.598,0,-27,0,-0.399999999999999,-0.300000000000001,7 -"749",749,1,0,4.234,4.234,0,-2,0,-3.5,0.800000000000001,-8 -"750",750,1,0,1.182,1.182,1,-4,0,5.4,-0.0999999999999996,3 -"751",751,1,0,7.833,7.833,0,-7,1,7.3,1.5,2 -"752",752,1,0,0.275,0.275,0,4,0,0.799999999999997,1.7,-4 -"753",753,1,0,0.252,0.252,1,2,0,-1.6,2.3,6 -"754",754,1,0,10,10,0,9,1,4.6,-0.5,2 -"755",755,1,0,9.608,9.608,1,4,0,-1.7,-0.0999999999999996,0 -"756",756,1,0,4.624,4.624,0,-12,1,4.8,-1.5,0 -"757",757,1,0,0.966,0.966,0,-22,1,9.09999999999999,1.8,4 -"758",758,1,0,3.506,3.506,0,-20,0,5.8,-0.199999999999999,-1 -"759",759,1,0,2.677,2.677,0,-24,1,3.9,0.899999999999999,-7 -"760",760,1,0,0.461,0.461,1,26,0,3.5,1.8,-1 -"761",761,1,0,0.618,0.618,1,-1,0,7,-1.1,7 -"762",762,1,0,3.268,3.268,0,-13,0,-3.3,-0.4,-2 -"763",763,1,0,10,10,0,-19,1,2.6,0.100000000000001,-5 -"764",764,1,0,1.306,1.306,1,-13,0,-2.4,0.5,-2 -"765",765,1,0,10,10,0,11,1,5.3,-0.800000000000001,-2 -"766",766,1,0,1.547,1.547,1,2,1,1.6,0.899999999999999,4 -"767",767,1,0,5.081,5.081,0,-5,0,2.7,-2.1,-1 -"768",768,1,0,0.051,0.051,1,15,1,-3.6,1.8,1 -"769",769,1,0,10,10,0,-10,0,-3.2,0.199999999999999,-2 -"770",770,1,0,10,10,0,-21,0,-1.4,0.5,7 -"771",771,1,0,1.226,1.226,1,16,1,-1.5,1.2,-4 -"772",772,1,0,0.07,0.07,0,5,0,-2.8,1.2,0 -"773",773,1,0,0.217,0.217,1,-13,0,-1.3,0.800000000000001,10 -"774",774,1,0,6.956,6.956,1,2,0,-3.1,0.100000000000001,-1 -"775",775,1,0,3.638,3.638,0,8,1,3.7,0.199999999999999,-6 -"776",776,1,0,1.999,1.999,0,-3,0,-3.1,-0.5,-3 -"777",777,1,0,0.116,0.116,1,3,1,3.2,1.3,4 -"778",778,1,0,10,10,0,4,1,-0.200000000000003,-0.199999999999999,-2 -"779",779,1,0,0.743,0.743,1,18,0,-2.1,-0.5,-1 -"780",780,1,0,6.749,6.749,0,-1,1,1.5,-0.9,-4 -"781",781,1,0,3.777,3.777,1,-18,1,8.5,1,-3 -"782",782,1,0,1.707,1.707,1,4,1,,0.899999999999999,2 -"783",783,1,0,0.357,0.357,1,23,0,-5.1,0,-4 -"784",784,1,,,,,-8,0,-7.7,-0.6,3 -"785",785,1,0,8.723,8.723,0,-17,1,2.9,-0.9,-2 -"786",786,1,0,0.255,0.255,0,7,1,0.5,-0.699999999999999,-7 -"787",787,1,0,1.714,1.714,0,-14,1,6.1,-0.800000000000001,-3 -"788",788,1,0,1.283,1.283,0,-1,0,3.8,-1.9,-3 -"789",789,1,0,5.923,5.923,0,-25,1,-3.5,-0.9,-4 -"790",790,1,0,3.105,3.105,0,-16,1,-3.1,-0.0999999999999996,8 -"791",791,1,0,6.182,6.182,0,-22,0,3.3,0.699999999999999,2 -"792",792,1,0,3.945,3.945,0,10,1,-0.799999999999997,-1.4,2 -"793",793,1,0,4.911,4.911,0,-14,0,2.5,1.4,2 -"794",794,1,0,0.895,0.895,1,7,0,2.9,0.5,-4 -"795",795,1,0,1.493,1.493,0,21,1,3,-0.4,-1 -"796",796,1,0,0.507,0.507,1,-4,0,1.1,-0.199999999999999,7 -"797",797,1,0,1.049,1.049,1,15,0,-7,1,0 -"798",798,1,0,1.419,1.419,0,-17,0,-6,0.399999999999999,0 -"799",799,1,0,1.342,1.342,1,-5,0,0.299999999999997,0.899999999999999,2 -"800",800,1,0,0.07,0.07,0,-20,1,-3.9,1.2,-10 -"801",801,1,0,1.427,1.427,0,-16,0,0.5,-0.800000000000001,-4 -"802",802,1,0,10,10,0,-12,1,-9.9,-0.6,1 -"803",803,1,0,3.522,3.522,0,-18,0,-0.899999999999999,-0.300000000000001,-8 -"804",804,1,0,0.01,0.01,1,-29,0,9.2,0.600000000000001,3 -"805",805,1,0,2.26,2.26,0,-13,0,-4.7,-0.9,1 -"806",806,1,0,0.055,0.055,0,-8,0,3.6,-0.5,1 -"807",807,1,0,0.1,0.1,1,5,0,-1.2,0.800000000000001,1 -"808",808,1,0,1.254,1.254,1,20,1,2.2,-1,1 -"809",809,1,0,3.001,3.001,0,19,1,-1.2,-1.1,4 -"810",810,1,0,1.028,1.028,1,28,1,9.8,0,-4 -"811",811,1,0,8.162,8.162,1,-4,0,1.9,-0.4,-1 -"812",812,1,0,1.046,1.046,1,-5,1,3.3,0.300000000000001,0 -"813",813,1,0,0.606,0.606,1,16,0,-3.7,0,1 -"814",814,1,0,8.081,8.081,1,-15,0,-4.3,0.699999999999999,-8 -"815",815,1,0,1.734,1.734,0,-28,1,-3.2,-1.3,6 -"816",816,1,0,1.074,1.074,1,2,1,4.3,-1.1,2 -"817",817,1,0,1.042,1.042,1,10,0,4.3,-0.300000000000001,-1 -"818",818,1,0,0.752,0.752,1,-9,1,-6.5,1,1 -"819",819,1,0,0.06,0.06,1,-24,1,-0.899999999999999,1.2,9 -"820",820,1,0,1.145,1.145,0,22,1,0.200000000000003,0.199999999999999,-3 -"821",821,1,0,1.971,1.971,0,-12,1,-2.9,-1.6,2 -"822",822,1,0,1.661,1.661,1,-7,1,3.8,0,3 -"823",823,1,0,1.069,1.069,1,41,0,-0.299999999999997,-0.0999999999999996,-1 -"824",824,1,0,1.402,1.402,1,22,1,-2,-0.4,-7 -"825",825,1,0,6.837,6.837,1,7,1,4.4,-0.300000000000001,3 -"826",826,1,0,10,10,0,-16,1,-9.4,0.399999999999999,-7 -"827",827,1,0,0.829,0.829,1,37,0,0.700000000000003,-0.199999999999999,0 -"828",828,1,0,0.196,0.196,1,8,0,1.2,-0.199999999999999,5 -"829",829,1,0,4.555,4.555,0,-10,1,3.7,0.199999999999999,3 -"830",830,1,0,1.083,1.083,1,13,1,-4.4,-2,3 -"831",831,1,0,0.387,0.387,1,24,0,1.9,-0.699999999999999,1 -"832",832,1,0,0.888,0.888,1,18,1,0.5,-0.6,-2 -"833",833,1,0,0.418,0.418,1,-19,1,1.8,1.5,2 -"834",834,1,0,0.01,0.01,1,20,0,0.100000000000001,0.600000000000001,0 -"835",835,1,0,1.554,1.554,1,3,0,3.1,0.199999999999999,-3 -"836",836,1,0,8.359,8.359,0,-9,0,-2.8,-1,-7 -"837",837,1,0,3.13,3.13,1,9,1,5.6,-0.0999999999999996,-2 -"838",838,1,0,0.419,0.419,1,53,0,5.5,0.699999999999999,-1 -"839",839,1,0,3.259,3.259,0,-11,1,4.5,-1.1,-4 -"840",840,1,0,1.235,1.235,1,15,0,1.2,0.399999999999999,6 -"841",841,1,0,2.28,2.28,1,2,1,-3.9,0.399999999999999,1 -"842",842,1,0,1.793,1.793,0,-12,0,-5.7,0,4 -"843",843,1,0,10,10,0,-2,1,5.1,-0.5,-6 -"844",844,1,0,3.68,3.68,1,34,1,-2.2,-0.199999999999999,-1 -"845",845,1,0,9.342,9.342,1,11,1,3.5,-1.4,-1 -"846",846,1,0,5.972,5.972,0,-10,1,-1.7,0.199999999999999,1 -"847",847,1,0,0.8,0.8,0,11,1,2.4,-0.199999999999999,-1 -"848",848,1,0,7.028,7.028,0,6,1,-2.5,-0.699999999999999,-2 -"849",849,1,0,0.547,0.547,1,-2,,2.9,0.399999999999999,-9 -"850",850,1,0,1.711,1.711,0,-14,1,-8.3,0.199999999999999,-2 -"851",851,1,0,5.138,5.138,0,-1,1,-1.9,0.399999999999999,-3 -"852",852,1,0,7.233,7.233,0,7,0,3.9,0.100000000000001,-1 -"853",853,1,0,1.41,1.41,0,16,1,5,-2.2,4 -"854",854,1,0,0.424,0.424,0,-7,1,7.7,-1,5 -"855",855,1,0,0.807,0.807,0,-17,0,0.5,0.100000000000001,0 -"856",856,1,0,3.363,3.363,0,7,1,6.6,-0.6,-5 -"857",857,1,0,10,10,0,4,1,-8.6,-0.5,2 -"858",858,1,0,2.278,2.278,1,-5,0,-4.7,-0.0999999999999996,-8 -"859",859,1,0,5.895,5.895,0,-5,0,-2.1,-0.0999999999999996,-4 -"860",860,1,0,4.066,4.066,0,4,1,-0.200000000000003,0,2 -"861",861,1,0,3.093,3.093,0,-27,0,4.6,-0.5,-3 -"862",862,1,,,,,6,0,8.3,0.399999999999999,-6 -"863",863,1,0,10,10,0,-13,1,2,-0.300000000000001,-4 -"864",864,1,0,0.117,0.117,1,-16,0,,0.399999999999999,-3 -"865",865,1,0,4.918,4.918,0,-23,1,1.8,0.600000000000001,4 -"866",866,1,0,0.087,0.087,1,-7,0,-0.700000000000003,-0.6,3 -"867",867,1,0,3.586,3.586,1,-11,1,1,-1.9,9 -"868",868,1,0,2.926,2.926,1,-17,1,0.5,0.300000000000001,2 -"869",869,1,0,6.27,6.27,1,7,1,-2.1,0.199999999999999,-3 -"870",870,1,0,0.038,0.038,0,-4,0,0,0,-2 -"871",871,1,0,0.42,0.42,1,-14,0,-2.9,0,0 -"872",872,1,0,1.006,1.006,0,4,1,-2.3,-1.2,-2 -"873",873,1,0,0.499,0.499,1,-12,0,3.4,0,9 -"874",874,1,0,0.178,0.178,1,-6,0,-4.1,1.3,-1 -"875",875,1,0,2.128,2.128,0,1,1,-3.7,-0.199999999999999,0 -"876",876,1,0,1.38,1.38,0,2,1,4.3,0.699999999999999,-4 -"877",877,1,0,5.253,5.253,0,-18,1,-4.2,-0.6,-1 -"878",878,1,0,1.562,1.562,1,9,0,0.5,1.4,0 -"879",879,1,0,1.094,1.094,0,17,1,-5.7,1.5,3 -"880",880,1,0,0.352,0.352,1,8,1,-1.9,1.6,6 -"881",881,1,0,6.909,6.909,1,16,0,-2.7,-2,-2 -"882",882,1,0,8.624,8.624,1,-16,0,2.5,-0.800000000000001,-3 -"883",883,1,0,1.231,1.231,1,-9,1,-1.5,0.5,8 -"884",884,1,0,0.078,0.078,1,11,0,6.4,2.3,4 -"885",885,1,0,2.932,2.932,0,2,0,-9.1,-0.6,6 -"886",886,1,0,0.121,0.121,1,41,1,-1,0.399999999999999,1 diff --git a/tests/testthat/data_files/SURVIVAL/COLLAPSE_MISSING/collapse_missing_study2.csv b/tests/testthat/data_files/SURVIVAL/COLLAPSE_MISSING/collapse_missing_study2.csv deleted file mode 100644 index 087aac0b..00000000 --- a/tests/testthat/data_files/SURVIVAL/COLLAPSE_MISSING/collapse_missing_study2.csv +++ /dev/null @@ -1,660 +0,0 @@ -"","ID","STUDY.ID","STARTTIME","ENDTIME","SURVTIME","CENS","age.60","female","noise.56","pm10.16","bmi.26" -"1",887,2,0,0.196,0.196,0,24,1,5.8,-1,1 -"2",888,2,0,0.542,0.542,1,18,0,2.7,1.1,5 -"3",889,2,0,0.546,0.546,1,-5,,6.6,0.199999999999999,-1 -"4",890,2,0,1.732,1.732,1,-2,0,-5.6,1.9,2 -"5",891,2,0,7.068,7.068,0,-23,1,0.799999999999997,-2.4,3 -"6",892,2,0,3.243,3.243,0,-4,0,-3.4,-1.9,-3 -"7",893,2,0,10,10,0,-16,0,0,0.699999999999999,1 -"8",894,2,0,0.577,0.577,1,-6,1,-0.899999999999999,0.699999999999999,3 -"9",895,2,0,6.439,6.439,1,-6,0,3.4,0.699999999999999,4 -"10",896,2,0,1.217,1.217,0,-10,1,1.8,0.699999999999999,-1 -"11",897,2,0,0.275,0.275,1,-5,0,-0.700000000000003,-0.199999999999999,0 -"12",898,2,0,8.163,8.163,1,-6,1,-1.5,-0.5,-1 -"13",899,2,0,6.531,6.531,1,6,0,-0.299999999999997,-0.300000000000001,5 -"14",900,2,0,0.162,0.162,1,8,1,-2.5,0.699999999999999,4 -"15",901,2,0,8.261,8.261,0,-19,1,,-2.1,-8 -"16",902,2,0,2.363,2.363,1,25,1,-0.100000000000001,1.2,-2 -"17",903,2,0,1.685,1.685,1,-20,1,-0.100000000000001,1.2,2 -"18",904,2,0,2.643,2.643,0,3,1,,0,-4 -"19",905,2,0,0.369,0.369,0,-16,0,4.8,1.5,0 -"20",906,2,0,1.438,1.438,1,-1,1,-7.9,0.399999999999999,-7 -"21",907,2,0,0.141,0.141,0,22,1,1.1,0.199999999999999,-5 -"22",908,2,0,1.971,1.971,1,-4,0,2.9,1.1,-2 -"23",909,2,0,10,10,0,-4,1,3.3,0.699999999999999,2 -"24",910,2,0,0.49,0.49,0,14,0,2.4,0.5,-2 -"25",911,2,0,6.464,6.464,1,2,1,1.2,1.4,-3 -"26",912,2,0,5.556,5.556,0,-15,0,6,-1.5,5 -"27",913,2,0,0.111,0.111,1,-13,0,11.1,-0.6,-1 -"28",914,2,0,1.049,1.049,0,10,1,0.600000000000001,-0.0999999999999996,-6 -"29",915,2,0,0.999,0.999,1,-4,0,0.700000000000003,1.4,0 -"30",916,2,0,0.114,0.114,1,0,0,4.1,-0.4,8 -"31",917,2,0,2.501,2.501,1,-17,0,1,0,0 -"32",918,2,0,5.504,5.504,0,-11,1,2,-1.6,-4 -"33",919,2,0,0.675,0.675,1,-6,0,-0.5,-1.1,-1 -"34",920,2,0,0.158,0.158,1,20,0,1.1,2.3,2 -"35",921,2,0,7.311,7.311,0,-1,1,-3.3,-1,-3 -"36",922,2,0,10,10,0,9,1,-2.5,,-9 -"37",923,2,0,10,10,0,-1,1,5.2,0.399999999999999,-2 -"38",924,2,0,0.161,0.161,1,7,0,0,0.699999999999999,5 -"39",925,2,0,0.137,0.137,1,-2,1,-10,2,3 -"40",926,2,0,0.219,0.219,1,25,1,-6.4,-0.5,6 -"41",927,2,0,10,10,0,-26,1,0,-1.4,-6 -"42",928,2,0,8.555,8.555,0,4,0,4.3,-1.1,0 -"43",929,2,0,10,10,0,-7,1,-6.2,-1.1,1 -"44",930,2,0,9.618,9.618,0,-5,1,-3,0.399999999999999,8 -"45",931,2,0,2.118,2.118,0,-7,1,4.7,1.1,0 -"46",932,2,0,3.104,3.104,0,,0,-1.1,0.199999999999999,7 -"47",933,2,0,10,10,0,8,1,-1.7,0.100000000000001,-3 -"48",934,2,0,0.737,0.737,1,13,1,-1.4,-0.9,6 -"49",935,2,0,0.661,0.661,0,0,1,7.7,-1.2,-10 -"50",936,2,0,1.262,1.262,1,15,0,-3.9,0,7 -"51",937,2,0,0.266,0.266,1,-22,1,-3.8,0.600000000000001,10 -"52",938,2,0,3.204,3.204,1,13,1,-2.1,0.300000000000001,-1 -"53",939,2,,,,,5,0,-5,0.100000000000001,-6 -"54",940,2,0,2.079,2.079,1,-26,0,0.200000000000003,0.199999999999999,1 -"55",941,2,0,1.94,1.94,1,24,0,2.7,1.6,-7 -"56",942,2,0,0.012,0.012,0,-25,1,7.1,0.100000000000001,0 -"57",943,2,0,10,10,0,8,0,-7.1,0.100000000000001,-8 -"58",944,2,0,3.283,3.283,0,-3,1,4.3,0.899999999999999,1 -"59",945,2,0,9.042,9.042,0,-18,1,2.5,-0.0999999999999996,-1 -"60",946,2,0,10,10,0,-10,1,2.1,-0.300000000000001,1 -"61",947,2,0,10,10,0,-15,1,-0.799999999999997,-1.4,6 -"62",948,2,0,8.384,8.384,0,-18,1,0.899999999999999,-0.5,-7 -"63",949,2,0,2.113,2.113,1,8,1,1.4,1.6,-10 -"64",950,2,0,1.353,1.353,0,7,1,-1.9,0.800000000000001, -"65",951,2,0,1.605,1.605,1,-15,0,0.899999999999999,0.699999999999999,2 -"66",952,2,0,10,10,0,8,1,3.3,-1,3 -"67",953,2,0,10,10,0,-28,1,3.1,0.600000000000001,-3 -"68",954,2,0,6.016,6.016,1,-19,0,-5.9,1.4,-2 -"69",955,2,0,0.816,0.816,1,8,1,-0.5,1.8,1 -"70",956,2,0,0.787,0.787,1,1,0,3.1,0.100000000000001,-9 -"71",957,2,0,7.159,7.159,0,-14,1,-2.2,-0.699999999999999, -"72",958,2,0,7.31,7.31,0,-15,1,0.399999999999999,0.300000000000001,-2 -"73",959,2,0,0.486,0.486,1,10,0,-2.7,3,2 -"74",960,2,0,7.777,7.777,0,-4,1,-7.8,-1.3,-3 -"75",961,2,0,3.338,3.338,0,11,1,3.3,0.699999999999999,-5 -"76",962,2,0,0.754,0.754,1,17,1,2.1,-0.199999999999999,4 -"77",963,2,0,0.253,0.253,1,25,1,5,0.699999999999999,3 -"78",964,2,0,2.79,2.79,0,-2,0,-7.1,-1,0 -"79",965,2,0,0.162,0.162,0,4,,-1.2,0.300000000000001,-2 -"80",966,2,0,2.548,2.548,0,-26,1,-0.899999999999999,-0.300000000000001,-7 -"81",967,2,0,0.664,0.664,1,19,0,-0.899999999999999,-1,4 -"82",968,2,0,6.602,6.602,0,7,1,2.3,0,-2 -"83",969,2,0,10,10,0,-1,1,4.3,-1.3,1 -"84",970,2,0,4.055,4.055,0,-25,0,0.399999999999999,1.9,-1 -"85",971,2,0,10,10,0,-19,1,3.1,0.600000000000001,-1 -"86",972,2,0,0.604,0.604,1,32,1,4.6,-0.300000000000001,-12 -"87",973,2,0,1.52,1.52,0,-18,0,-4.7,-0.0999999999999996,3 -"88",974,2,0,1.64,1.64,1,-8,0,12.6,0.199999999999999,-4 -"89",975,2,0,7.866,7.866,1,3,1,1.8,1.3,-2 -"90",976,2,0,2.321,2.321,0,-9,1,2.8,-1.5,-4 -"91",977,2,0,0.396,0.396,1,0,1,-1.1,1.2,8 -"92",978,2,0,10,10,0,-4,1,-2.6,-1,1 -"93",979,2,0,0.351,0.351,1,18,1,6.1,0.300000000000001,-2 -"94",980,2,0,0.741,0.741,0,6,0,4.9,0.5,-2 -"95",981,2,0,1.524,1.524,1,5,0,-4.2,-0.800000000000001,9 -"96",982,2,0,2.847,2.847,0,-10,1,-3.2,-1.3,-3 -"97",983,2,0,2.054,2.054,0,13,1,2.3,0,-6 -"98",984,2,0,0.348,0.348,0,8,1,-2.7,-1.1,2 -"99",985,2,0,10,10,0,-21,1,-0.600000000000001,-1.2,-2 -"100",986,2,0,1.415,1.415,0,9,1,-6.7,-0.5,-5 -"101",987,2,0,2.738,2.738,0,-5,0,-0.799999999999997,0.199999999999999,-5 -"102",988,2,0,0.127,0.127,0,0,0,8.90000000000001,2,4 -"103",989,2,0,8.419,8.419,0,-2,1,1.2,-2.5,-8 -"104",990,2,0,5.468,5.468,0,10,1,-6.6,0.699999999999999,-6 -"105",991,2,0,0.299,0.299,0,-9,1,-1,0.399999999999999,-1 -"106",992,2,0,1.151,1.151,1,8,1,5.6,-0.800000000000001,-9 -"107",993,2,0,2.664,2.664,1,-17,0,0.799999999999997,0.100000000000001,0 -"108",994,2,0,7.676,7.676,0,-7,1,-1.2,-1,-8 -"109",995,2,0,0.273,0.273,1,3,0,3.4,-0.199999999999999,2 -"110",996,2,0,4.146,4.146,0,18,1,5.7,-0.0999999999999996,4 -"111",997,2,0,1.939,1.939,1,6,0,-7.1,0.600000000000001,-5 -"112",998,2,0,10,10,0,12,1,7.6,-1.2,1 -"113",999,2,0,7.684,7.684,0,-15,1,2.4,-1.2,-9 -"114",1000,2,0,5.587,5.587,0,-7,0,-1.7,-0.0999999999999996,-11 -"115",1001,2,0,1,1,1,41,1,-6.3,-0.6,2 -"116",1002,2,0,1.986,1.986,0,12,0,7.3,-1.3,-5 -"117",1003,2,0,1.055,1.055,0,21,1,2.9,1.4,-1 -"118",1004,2,0,0.409,0.409,1,18,0,-8.3,1.4,-3 -"119",1005,2,0,10,10,0,15,1,4.3,-0.9,-1 -"120",1006,2,0,3.752,3.752,0,0,0,1.8,-2.1,-3 -"121",1007,2,0,1.436,1.436,0,-24,0,1.5,0.199999999999999,-3 -"122",1008,2,0,0.017,0.017,1,28,0,-0.5,-0.0999999999999996,0 -"123",1009,2,0,10,10,0,-14,0,-6.1,0.100000000000001,-7 -"124",1010,2,0,0.954,0.954,1,32,0,4.7,-0.4,-4 -"125",1011,2,0,6.286,6.286,1,6,0,-3.6,-0.199999999999999,8 -"126",1012,2,0,10,10,0,-7,0,-5,-0.4,-2 -"127",1013,2,0,7.3,7.3,0,7,1,3.5,0.300000000000001,5 -"128",1014,2,0,0.427,0.427,1,4,0,-13.4,-0.4,0 -"129",1015,2,0,10,10,0,14,1,7.5,-1.1,-2 -"130",1016,2,0,0.157,0.157,1,-5,1,1.2,0.800000000000001,-6 -"131",1017,2,0,9.382,9.382,1,2,1,5.3,1.3,-6 -"132",1018,2,0,0.592,0.592,1,14,0,1.1,1.7,-5 -"133",1019,2,0,6.06,6.06,0,15,1,6.4,-1.1,-1 -"134",1020,2,0,0.109,0.109,1,-26,1,9.2,0.199999999999999,2 -"135",1021,2,0,0.653,0.653,1,-10,0,-0.100000000000001,0.399999999999999,6 -"136",1022,2,0,0.019,0.019,0,-3,0,4.5,0.399999999999999,-5 -"137",1023,2,0,1.027,1.027,1,-1,0,-1.7,-0.5,5 -"138",1024,2,0,1.404,1.404,0,17,0,-1.3,-0.699999999999999,-5 -"139",1025,2,0,2.131,2.131,1,23,0,-1.1,-0.300000000000001,3 -"140",1026,2,0,0.849,0.849,1,,1,-3.9,-0.300000000000001,-6 -"141",1027,2,0,1.792,1.792,0,-15,0,-4.1,1.4,1 -"142",1028,2,0,7.713,7.713,0,-10,0,3.7,0.300000000000001,-6 -"143",1029,2,0,1.238,1.238,1,-28,0,14.8,0.199999999999999,-4 -"144",1030,2,0,0.139,0.139,1,-8,1,5.8,1.9,-3 -"145",1031,2,0,0.906,0.906,1,5,1,-4.4,0.5,0 -"146",1032,2,0,6.069,6.069,0,0,0,-3.4,-0.300000000000001,-6 -"147",1033,2,0,2.152,2.152,1,-7,1,6.3,0.600000000000001,3 -"148",1034,2,0,0.271,0.271,0,12,0,0.200000000000003,2.2,-12 -"149",1035,2,0,6.181,6.181,0,-18,0,-5.5,-0.6,5 -"150",1036,2,0,1.255,1.255,1,9,0,-0.600000000000001,-0.0999999999999996,0 -"151",1037,2,0,1.603,1.603,1,7,0,0.299999999999997,0.600000000000001,0 -"152",1038,2,0,1.837,1.837,1,0,0,-2.7,0.399999999999999,-5 -"153",1039,2,0,10,10,0,-15,1,0.899999999999999,0.800000000000001,1 -"154",1040,2,0,0.438,0.438,0,9,0,-4.5,-0.0999999999999996,-5 -"155",1041,2,0,2.573,2.573,1,25,1,-2.4,-1.8,2 -"156",1042,2,0,0.845,0.845,0,12,0,-5.6,-0.9,0 -"157",1043,2,0,3.182,3.182,0,-1,1,8.2,-0.699999999999999,3 -"158",1044,2,0,2.031,2.031,0,11,1,2.9,-1.1,5 -"159",1045,2,0,2.303,2.303,0,-4,0,1.2,-0.199999999999999,-7 -"160",1046,2,0,0.342,0.342,1,18,1,-2,-0.300000000000001,-3 -"161",1047,2,0,0.576,0.576,1,27,0,-1.4,0.5,6 -"162",1048,2,0,2.998,2.998,1,9,0,5.7,0,5 -"163",1049,2,0,0.26,0.26,1,11,0,3.9,0.699999999999999,-2 -"164",1050,2,0,0.078,0.078,0,15,0,,1.1,-1 -"165",1051,2,0,4.029,4.029,0,21,0,7.3,,-9 -"166",1052,2,0,8.966,8.966,1,-13,0,-6.4,1.8,-11 -"167",1053,2,0,0.184,0.184,1,5,0,1.3,-0.300000000000001,4 -"168",1054,2,0,0.295,0.295,1,-13,0,3.3,0.800000000000001,-1 -"169",1055,2,0,5.962,5.962,0,-17,0,0.899999999999999,-1.3,-7 -"170",1056,2,0,6.649,6.649,0,-27,1,,-1.4,1 -"171",1057,2,0,1.172,1.172,1,2,0,3.4,0.899999999999999,-1 -"172",1058,2,0,1.505,1.505,0,-14,1,-4.5,0,1 -"173",1059,2,0,0.532,0.532,1,16,1,4.6,1.3,4 -"174",1060,2,0,5.826,5.826,0,-1,1,-4.9,-1.6,-1 -"175",1061,2,0,10,10,0,-22,0,-5.8,-0.4,-4 -"176",1062,2,0,10,10,0,1,1,8,0.199999999999999,5 -"177",1063,2,0,0.335,0.335,1,-8,0,-2.5,-0.199999999999999,8 -"178",1064,2,0,9.295,9.295,0,3,1,4.8,-1.4,1 -"179",1065,2,0,2.082,2.082,0,2,0,3.5,-0.199999999999999,1 -"180",1066,2,0,4.673,4.673,0,-17,1,-1.8,-0.199999999999999,4 -"181",1067,2,0,0.751,0.751,1,5,0,-3.7,0.600000000000001,-1 -"182",1068,2,0,9.287,9.287,0,-15,1,9.59999999999999,-0.800000000000001,2 -"183",1069,2,0,0.301,0.301,1,-6,0,-4.7,0.600000000000001,2 -"184",1070,2,0,0.333,0.333,1,21,0,-0.399999999999999,-1.2,1 -"185",1071,2,0,2.284,2.284,0,1,1,5.4,-1.9,-5 -"186",1072,2,0,0.323,0.323,1,-28,0,-12.1,1.6,4 -"187",1073,2,0,3.077,3.077,1,11,1,-2.2,0.100000000000001,0 -"188",1074,2,0,4.104,4.104,1,9,1,-2.5,-1.4,5 -"189",1075,2,0,1.561,1.561,1,7,0,4.7,1.2,0 -"190",1076,2,0,0.645,0.645,1,15,1,1.2,-0.4,-9 -"191",1077,2,0,0.435,0.435,1,13,1,-7.7,-0.9,5 -"192",1078,2,0,1.041,1.041,0,0,1,1,-0.800000000000001,9 -"193",1079,2,0,0.611,0.611,0,-14,0,3,0,3 -"194",1080,2,0,1.973,1.973,1,-5,1,-2.9,-0.9,5 -"195",1081,2,0,10,10,0,13,1,-6.4,0,1 -"196",1082,2,0,9.514,9.514,0,1,0,2,-1,-4 -"197",1083,2,0,1.869,1.869,0,4,0,-2.7,-0.9,-2 -"198",1084,2,0,0.805,0.805,1,12,1,1.4,0.600000000000001,0 -"199",1085,2,0,1.554,1.554,0,4,0,-2.6,-0.800000000000001,4 -"200",1086,2,0,2.727,2.727,0,-17,1,2.5,-1,-7 -"201",1087,2,0,0.954,0.954,1,8,0,4.8,-0.199999999999999,1 -"202",1088,2,0,7.426,7.426,0,14,1,-2.4,-0.800000000000001,-7 -"203",1089,2,0,0.951,0.951,1,4,0,-3.6,0.699999999999999,4 -"204",1090,2,0,7.328,7.328,0,-4,0,2,0,-8 -"205",1091,2,0,0.127,0.127,1,18,0,6,-0.300000000000001,5 -"206",1092,2,0,10,10,0,-34,0,-3.3,-2.4,1 -"207",1093,2,0,0.307,0.307,1,15,0,0.899999999999999,,-10 -"208",1094,2,0,0.494,0.494,1,9,0,3.7,0.100000000000001,3 -"209",1095,2,0,0.994,0.994,1,22,1,-3.3,-0.199999999999999,3 -"210",1096,2,0,0.633,0.633,1,-3,0,6,0.5,5 -"211",1097,2,0,9.633,9.633,1,33,1,-4.9,-0.0999999999999996,1 -"212",1098,2,0,6.388,6.388,1,6,0,1.3,-0.300000000000001,5 -"213",1099,2,0,0.099,0.099,1,26,0,2.4,0.399999999999999,8 -"214",1100,2,0,0.895,0.895,0,14,1,0.899999999999999,0.399999999999999,0 -"215",1101,2,0,1.005,1.005,0,-11,0,-0.100000000000001,0.899999999999999,-2 -"216",1102,2,0,8.452,8.452,1,-9,1,-2.8,-1.1,0 -"217",1103,2,0,1.828,1.828,0,-16,0,0.100000000000001,-1.8,1 -"218",1104,2,0,1.268,1.268,1,6,1,-6.2,1.1,-3 -"219",1105,2,0,2.034,2.034,0,18,0,-2.2,-1,8 -"220",1106,2,0,0.109,0.109,1,19,0,0.100000000000001,0.699999999999999,-1 -"221",1107,2,0,1.329,1.329,1,5,1,-4.3,1,2 -"222",1108,2,0,0.197,0.197,1,15,1,7.6,0.699999999999999,1 -"223",1109,2,0,1.19,1.19,0,-15,1,-1,-1,2 -"224",1110,2,0,0.214,0.214,1,12,0,-4.5,-0.6,-7 -"225",1111,2,0,2.547,2.547,0,-16,0,3.5,-0.800000000000001,4 -"226",1112,2,0,0.033,0.033,1,-5,0,9.5,0.399999999999999,8 -"227",1113,2,0,3.054,3.054,0,-12,1,-0.5,-1.4,7 -"228",1114,2,0,5.989,5.989,0,-9,0,-5.8,-0.6,-5 -"229",1115,2,0,7.185,7.185,1,-10,0,,-0.4,-4 -"230",1116,2,0,3.054,3.054,0,7,1,1,-0.199999999999999,7 -"231",1117,2,0,1.852,1.852,1,14,1,2.2,0.800000000000001,1 -"232",1118,2,0,3.902,3.902,0,-16,0,4.4,-0.5,-5 -"233",1119,2,0,0.023,0.023,1,16,1,1,0.199999999999999,4 -"234",1120,2,0,1.645,1.645,1,16,0,-3.9,0,1 -"235",1121,2,0,3.725,3.725,0,14,1,5.5,-0.6,1 -"236",1122,2,0,0.18,0.18,1,18,0,2.1,0.699999999999999,-3 -"237",1123,2,0,0.177,0.177,1,-12,1,1.2,0.699999999999999,7 -"238",1124,2,0,0.414,0.414,1,-2,0,3.4,0.399999999999999,-2 -"239",1125,2,0,10,10,0,-7,0,1.2,-0.0999999999999996,1 -"240",1126,2,0,0.371,0.371,1,5,0,9.90000000000001,-0.9,10 -"241",1127,2,0,0.436,0.436,1,15,1,-0.600000000000001,1.1,4 -"242",1128,2,0,2.772,2.772,1,0,0,-3,0.699999999999999,-4 -"243",1129,2,0,1.159,1.159,0,8,0,0.600000000000001,0.899999999999999,-5 -"244",1130,2,0,3.869,3.869,0,10,1,-1.5,-0.0999999999999996,3 -"245",1131,2,0,0.799,0.799,0,-15,0,-1.6,2.6,2 -"246",1132,2,0,3.133,3.133,0,16,0,-4.2,-1.3,2 -"247",1133,2,0,0.561,0.561,1,-1,1,6.4,0.399999999999999,-5 -"248",1134,2,0,3.206,3.206,0,-5,1,,-0.699999999999999,4 -"249",1135,2,0,0.182,0.182,1,13,1,-4.8,-0.0999999999999996,3 -"250",1136,2,0,3.696,3.696,0,-8,0,-5.9,-0.9,-2 -"251",1137,2,0,0.514,0.514,1,1,1,3.8,0.600000000000001,1 -"252",1138,2,0,2.213,2.213,1,7,1,5.2,,-3 -"253",1139,2,0,0.729,0.729,1,-2,0,-0.600000000000001,1,4 -"254",1140,2,0,10,10,0,-20,0,-4.4,-2,7 -"255",1141,2,0,1.626,1.626,0,-4,0,5,0.899999999999999,3 -"256",1142,2,0,5.44,5.44,0,-1,0,-1.8,0.899999999999999,3 -"257",1143,2,0,3.541,3.541,0,-22,1,8.2,0.100000000000001,-4 -"258",1144,2,0,1.028,1.028,0,9,1,-2.3,-1.2,0 -"259",1145,2,0,10,10,0,-6,1,5,-1.9,-4 -"260",1146,2,0,0.485,0.485,0,-9,0,-0.5,-1,-1 -"261",1147,2,0,1.205,1.205,1,-5,0,0,0.800000000000001,-2 -"262",1148,2,0,0.106,0.106,1,36,0,-0.100000000000001,0.300000000000001,0 -"263",1149,2,0,2.325,2.325,1,0,1,8.7,1.2,-2 -"264",1150,2,0,10,10,0,-29,0,4.1,,-3 -"265",1151,2,0,0.086,0.086,1,19,1,-0.399999999999999,0.399999999999999,0 -"266",1152,2,0,1.178,1.178,0,9,0,2.8,-1.8,3 -"267",1153,2,0,6.426,6.426,0,-16,1,,0.199999999999999,8 -"268",1154,2,0,1.667,1.667,0,-14,1,0.200000000000003,-0.5,4 -"269",1155,2,0,2.062,2.062,0,-1,0,0.5,0.300000000000001,-8 -"270",1156,2,0,1.095,1.095,1,8,0,-3.7,-0.199999999999999,0 -"271",1157,2,0,0.817,0.817,1,18,0,2.1,-0.4,-2 -"272",1158,2,0,5.675,5.675,0,2,0,,1,-6 -"273",1159,2,0,1.203,1.203,1,22,1,4.2,0.5,-3 -"274",1160,2,0,1.578,1.578,0,-1,1,-1.7,0.300000000000001,-1 -"275",1161,2,0,0.468,0.468,0,13,1,-7.5,-0.5,-4 -"276",1162,2,0,0.541,0.541,1,-11,0,2.2,0.100000000000001,7 -"277",1163,2,0,6.52,6.52,1,7,0,-8.5,0.399999999999999,0 -"278",1164,2,0,6.33,6.33,0,1,1,0.5,0.300000000000001,-1 -"279",1165,2,0,5.63,5.63,0,-13,0,1.1,-0.699999999999999,-9 -"280",1166,2,0,0.896,0.896,1,2,1,4.3,0.199999999999999,0 -"281",1167,2,0,0.701,0.701,1,24,0,-5.6,0.199999999999999,-1 -"282",1168,2,0,0.302,0.302,1,-8,0,-5.6,1.2,7 -"283",1169,2,0,1.479,1.479,0,-1,1,-3,-0.4,1 -"284",1170,2,0,2.285,2.285,1,-11,0,5.5,1.2,0 -"285",1171,2,0,1.915,1.915,1,-13,0,-3.5,0,-4 -"286",1172,2,0,10,10,0,-7,1,7.2,0.600000000000001,-1 -"287",1173,2,0,0.502,0.502,1,15,0,5.9,-2.8,5 -"288",1174,2,0,2.193,2.193,0,1,0,-1.4,-0.199999999999999,-2 -"289",1175,2,0,3.822,3.822,0,-27,1,-1,1.9,-2 -"290",1176,2,0,1.536,1.536,1,-21,1,8.7,0.399999999999999,1 -"291",1177,2,0,2.066,2.066,0,26,1,2.8,1.3,-7 -"292",1178,2,0,0.034,0.034,1,5,1,-2.2,1.3,-1 -"293",1179,2,0,10,10,0,-26,0,-4.4,-1.8,0 -"294",1180,2,0,5.863,5.863,0,15,1,1.2,1,-4 -"295",1181,2,0,0.333,0.333,1,-4,0,-1.6,0.199999999999999,6 -"296",1182,2,0,1.895,1.895,1,-15,1,-0.399999999999999,0,5 -"297",1183,2,0,4.609,4.609,0,-14,1,-4,-0.5,10 -"298",1184,2,0,1.002,1.002,1,17,1,0.600000000000001,0.399999999999999,3 -"299",1185,2,0,2.371,2.371,0,-7,1,-5.2,0.800000000000001,5 -"300",1186,2,0,10,10,0,-2,1,1.3,-2,3 -"301",1187,2,0,0.126,0.126,1,21,0,-0.899999999999999,0.899999999999999,-3 -"302",1188,2,0,2.192,2.192,0,-14,0,-7.5,-1.9,-1 -"303",1189,2,0,1.537,1.537,1,-12,1,5.5,-0.5,2 -"304",1190,2,0,8.537,8.537,0,-21,0,-0.399999999999999,-1.2,6 -"305",1191,2,0,2.04,2.04,0,-12,0,-5.9,-2,0 -"306",1192,2,0,1.286,1.286,1,-8,1,7,0.100000000000001,6 -"307",1193,2,0,0.381,0.381,0,-18,0,6.4,-1.3,3 -"308",1194,2,0,0.449,0.449,1,2,0,5.9,0.399999999999999,-1 -"309",1195,2,0,9.463,9.463,1,-1,1,1.2,0.5,1 -"310",1196,2,0,0.635,0.635,1,-18,0,11.2,0,5 -"311",1197,2,0,1.091,1.091,1,-22,0,5.2,-0.699999999999999,1 -"312",1198,2,0,2.608,2.608,0,-1,1,-2.7,-0.0999999999999996,-3 -"313",1199,2,0,1.292,1.292,0,0,1,1.5,-0.300000000000001,0 -"314",1200,2,0,3.206,3.206,0,5,0,3.7,-0.0999999999999996,4 -"315",1201,2,0,1.547,1.547,1,-19,0,-0.200000000000003,1.3,6 -"316",1202,2,0,5.701,5.701,0,20,0,-2.4,-0.800000000000001,1 -"317",1203,2,0,3.863,3.863,0,-19,0,2,1.6,1 -"318",1204,2,0,1.09,1.09,0,2,0,1.9,-1.2,1 -"319",1205,2,0,1.956,1.956,1,5,1,-1.3,0.899999999999999,-3 -"320",1206,2,0,0.395,0.395,1,-2,1,-3.3,1.1,9 -"321",1207,2,0,0.751,0.751,1,10,0,8,-0.300000000000001,-5 -"322",1208,2,0,0.106,0.106,0,0,1,3.7,1.1,-5 -"323",1209,2,0,1.148,1.148,0,12,1,-0.5,0,-4 -"324",1210,2,0,6.42,6.42,1,-18,0,-8,1.1,1 -"325",1211,2,0,0.189,0.189,1,-13,0,-2.5,1.9,4 -"326",1212,2,0,6.195,6.195,1,-14,0,3.6,-0.0999999999999996,0 -"327",1213,2,0,1.216,1.216,0,-10,0,0.299999999999997,-0.4,0 -"328",1214,2,0,0.26,0.26,1,,0,5.3,0.199999999999999,-4 -"329",1215,2,0,1.157,1.157,1,8,1,-3.9,0.300000000000001,-1 -"330",1216,2,0,0.363,0.363,0,9,0,-2.1,0.199999999999999,-4 -"331",1217,2,0,7.893,7.893,0,-4,1,-5.5,0.899999999999999,-5 -"332",1218,2,0,0.377,0.377,0,11,1,6.5,-0.0999999999999996,0 -"333",1219,2,0,8.025,8.025,1,0,0,-2.8,0.300000000000001,-6 -"334",1220,2,0,8.645,8.645,0,13,1,1.6,0.199999999999999,-6 -"335",1221,2,0,0.454,0.454,1,9,0,-1.8,1.5,-2 -"336",1222,2,0,0.457,0.457,1,10,0,2.5,0.300000000000001,-3 -"337",1223,2,0,10,10,0,-5,0,-0.100000000000001,-0.800000000000001,2 -"338",1224,2,0,7.683,7.683,0,-45,1,-3.2,1.4,-5 -"339",1225,2,0,4.613,4.613,0,-15,1,1.2,-0.4,-4 -"340",1226,2,0,10,10,0,-35,0,9.59999999999999,-0.300000000000001,2 -"341",1227,2,0,2.306,2.306,0,4,1,2.9,-0.5,-2 -"342",1228,2,0,6.263,6.263,0,2,1,-1.4,-1.1,1 -"343",1229,2,0,4.272,4.272,0,17,0,1.3,0.600000000000001,-12 -"344",1230,2,0,0.549,0.549,1,23,1,3.1,0.5,11 -"345",1231,2,0,4.071,4.071,0,-12,1,3.4,0.5,-1 -"346",1232,2,0,0.224,0.224,0,20,1,1.3,0.199999999999999,9 -"347",1233,2,0,9.034,9.034,0,-7,0,3,-0.4,-6 -"348",1234,2,0,0.068,0.068,0,-14,1,0.5,0.399999999999999,2 -"349",1235,2,0,2.537,2.537,1,-1,1,-2.9,-0.4,4 -"350",1236,2,0,1.068,1.068,1,5,0,-6.9,1.3,9 -"351",1237,2,0,10,10,0,-12,1,1.6,-0.4,6 -"352",1238,2,0,9.648,9.648,1,-16,0,-6.3,0.399999999999999,11 -"353",1239,2,0,9.711,9.711,0,-23,1,1.1,-2.1,1 -"354",1240,2,0,4.203,4.203,0,3,1,0.299999999999997,0.899999999999999,-3 -"355",1241,2,0,0.51,0.51,1,24,1,4.4,-0.5,0 -"356",1242,2,0,0.554,0.554,0,1,1,4.8,0,5 -"357",1243,2,0,1.252,1.252,1,23,1,0.299999999999997,-0.699999999999999,-1 -"358",1244,2,0,0.304,0.304,1,-4,0,-9.3,-0.199999999999999,10 -"359",1245,2,0,0.485,0.485,1,5,0,3.8,0.100000000000001,-2 -"360",1246,2,0,7.737,7.737,0,-9,0,1.1,0.5,2 -"361",1247,2,0,7.12,7.12,0,-22,0,-8.3,-1,4 -"362",1248,2,0,0.855,0.855,0,-3,0,5,-0.9,-12 -"363",1249,2,0,2.536,2.536,1,-4,1,4.7,0.199999999999999,-15 -"364",1250,2,0,0.347,0.347,1,4,0,0.399999999999999,1.4,1 -"365",1251,2,0,1.923,1.923,1,9,0,0,0.600000000000001,-3 -"366",1252,2,0,0.956,0.956,1,13,1,0.399999999999999,0,-2 -"367",1253,2,0,0.638,0.638,1,16,0,-4.9,1.4,7 -"368",1254,2,0,5.074,5.074,1,-8,1,0,1,-4 -"369",1255,2,0,1.227,1.227,1,19,0,6.7,0.399999999999999,-3 -"370",1256,2,0,2.788,2.788,0,0,1,-6,-0.800000000000001,-9 -"371",1257,2,0,7.493,7.493,0,-33,0,3.6,1,3 -"372",1258,2,0,6.184,6.184,1,1,0,6.1,0.399999999999999,3 -"373",1259,2,0,0.326,0.326,1,44,1,8.59999999999999,-0.300000000000001,-3 -"374",1260,2,0,0.875,0.875,1,-25,0,-3.3,1.9,2 -"375",1261,2,0,6.562,6.562,0,-11,1,2.2,-0.300000000000001,0 -"376",1262,2,0,7.192,7.192,1,-6,0,-5.9,-2.8,-3 -"377",1263,2,0,7.877,7.877,0,-19,1,0.100000000000001,0.199999999999999,0 -"378",1264,2,0,2.066,2.066,1,-37,0,8.3,-0.800000000000001,0 -"379",1265,2,0,2.327,2.327,0,-14,1,0.600000000000001,0.399999999999999,3 -"380",1266,2,0,1.369,1.369,1,1,0,3.4,-1.1,-2 -"381",1267,2,0,1.948,1.948,0,3,1,1.7,0.5,-5 -"382",1268,2,0,0.008,0.008,1,5,1,4.6,0.399999999999999,3 -"383",1269,2,0,0.246,0.246,1,-17,1,0.299999999999997,-0.0999999999999996,10 -"384",1270,2,0,4.972,4.972,0,-15,1,-2.6,-0.6,6 -"385",1271,2,0,1.524,1.524,1,0,1,6.1,0.100000000000001,1 -"386",1272,2,0,1.654,1.654,1,5,1,4.1,0.5,-4 -"387",1273,2,0,0.045,0.045,1,20,1,0.5,-1.9,6 -"388",1274,2,0,6.346,6.346,0,-17,1,-0.799999999999997,-1.1,6 -"389",1275,2,0,10,10,0,-14,1,-9.6,-0.9,-7 -"390",1276,2,0,10,10,0,-35,0,-4.7,1.1,3 -"391",1277,2,0,4.524,4.524,0,-18,0,3.7,0,-1 -"392",1278,2,0,7.159,7.159,0,10,1,12,-0.9,1 -"393",1279,2,0,8.33,8.33,0,-9,0,-1,-0.6,1 -"394",1280,2,0,0.109,0.109,0,-2,1,-6.9,-1.4,2 -"395",1281,2,0,8.301,8.301,0,2,0,2.1,-0.5,2 -"396",1282,2,0,1.741,1.741,1,6,0,4,1,-6 -"397",1283,2,0,10,10,0,-12,0,-1.2,0.600000000000001,-8 -"398",1284,2,0,1.511,1.511,1,-16,1,0,1.6,-1 -"399",1285,2,0,6.616,6.616,0,-14,1,2.6,-2,-2 -"400",1286,2,0,7.971,7.971,1,5,1,2.5,-0.5,8 -"401",1287,2,0,1.463,1.463,0,-16,0,1.7,-1,-9 -"402",1288,2,0,1.504,1.504,1,19,1,3,-0.300000000000001,1 -"403",1289,2,0,0.53,0.53,0,16,1,2.2,0.600000000000001, -"404",1290,2,0,0.69,0.69,0,20,1,-2.8,-0.6,-4 -"405",1291,2,0,1.613,1.613,1,1,0,2.9,-1.5,5 -"406",1292,2,0,0.83,0.83,1,6,0,3.1,1.1,0 -"407",1293,2,0,10,10,0,-8,0,5.3,-1.3,1 -"408",1294,2,0,0.248,0.248,1,-3,1,0.200000000000003,-0.199999999999999,-1 -"409",1295,2,0,9.938,9.938,0,30,1,-8.6,0, -"410",1296,2,0,3.955,3.955,0,8,1,1.7,-1.2,2 -"411",1297,2,0,2.416,2.416,0,-1,1,-4.3,-0.6,6 -"412",1298,2,0,0.417,0.417,0,-4,1,-3.2,-1.5,9 -"413",1299,2,0,0.453,0.453,0,9,1,-1.7,1.3,-2 -"414",1300,2,0,5.061,5.061,0,7,1,2.2,-0.0999999999999996,-7 -"415",1301,2,0,1.291,1.291,0,22,0,-2.4,-1,-15 -"416",1302,2,0,0.721,0.721,0,-9,1,-1.4,-0.5,-6 -"417",1303,2,0,0.37,0.37,0,5,0,0.200000000000003,0.899999999999999,-5 -"418",1304,2,0,0.464,0.464,1,17,0,8.8,-0.699999999999999,2 -"419",1305,2,0,10,10,0,-14,0,-1.1,-1,1 -"420",1306,2,0,1.607,1.607,1,1,1,5.6,-1.3,-3 -"421",1307,2,0,1.967,1.967,1,23,1,-1.3,0.399999999999999,2 -"422",1308,2,0,0.149,0.149,1,21,1,10.6,0.300000000000001,-1 -"423",1309,2,0,8.195,8.195,0,14,1,-0.600000000000001,0.5,-4 -"424",1310,2,0,2.976,2.976,0,-27,1,-4.4,0.800000000000001,-5 -"425",1311,2,0,1.381,1.381,1,-13,0,-0.5,-0.699999999999999,3 -"426",1312,2,0,1.771,1.771,0,-25,1,2.9,-0.300000000000001,0 -"427",1313,2,0,1.241,1.241,1,10,0,1.4,-0.4,-2 -"428",1314,2,0,0.493,0.493,0,17,1,-3.8,-0.0999999999999996,-4 -"429",1315,2,0,0.192,0.192,1,-19,0,1.8,1.2,9 -"430",1316,2,0,4.187,4.187,0,,1,0.100000000000001,-0.800000000000001,10 -"431",1317,2,0,0.251,0.251,1,8,1,-5.9,2.6,-2 -"432",1318,2,0,0.104,0.104,1,28,0,-8.1,2.1,2 -"433",1319,2,0,1.68,1.68,0,-10,1,-3.6,-1.4,-3 -"434",1320,2,0,0.963,0.963,1,15,0,-1.7,-0.5,4 -"435",1321,2,0,1.827,1.827,1,-32,0,2.1,-0.0999999999999996,8 -"436",1322,2,0,6.412,6.412,0,-9,0,5.9,-0.699999999999999,-1 -"437",1323,2,0,7.842,7.842,0,-29,1,4.8,1,2 -"438",1324,2,0,0.189,0.189,1,28,0,-2.4,0.5,3 -"439",1325,2,0,0.748,0.748,1,-1,0,-8,1.7,5 -"440",1326,2,0,10,10,0,-15,0,-0.299999999999997,-0.6,-5 -"441",1327,2,0,0.725,0.725,0,12,0,-2.4,0.800000000000001,-9 -"442",1328,2,0,1.781,1.781,0,9,1,-4,1.4,-4 -"443",1329,2,0,0.17,0.17,1,-5,0,,1.6,-1 -"444",1330,2,0,6.197,6.197,0,6,1,1.6,-1,4 -"445",1331,2,0,0.088,0.088,0,2,0,-2,1.6,1 -"446",1332,2,0,1.548,1.548,1,21,1,-4,0,-4 -"447",1333,2,0,0.652,0.652,1,-2,0,3.3,-0.699999999999999,-2 -"448",1334,2,0,1.357,1.357,0,-10,1,3.5,-0.800000000000001,-1 -"449",1335,2,0,1.807,1.807,0,-1,0,0.5,0.100000000000001,-6 -"450",1336,2,0,10,10,0,-7,0,2.9,-1.2,-4 -"451",1337,2,0,1.029,1.029,0,-10,1,-2.1,0,7 -"452",1338,2,0,0.327,0.327,0,9,1,-3.3,-2.2,-1 -"453",1339,2,0,7.31,7.31,1,-5,1,0.799999999999997,-0.5,3 -"454",1340,2,0,6.054,6.054,0,-18,0,4.4,0.5,-3 -"455",1341,2,0,6.062,6.062,0,-10,0,0.299999999999997,0.300000000000001,-1 -"456",1342,2,0,0.922,0.922,0,-22,1,-4.5,-0.699999999999999,3 -"457",1343,2,0,5.416,5.416,0,-13,0,5.1,0,-12 -"458",1344,2,0,7.122,7.122,1,-6,0,-5.8,-0.5,4 -"459",1345,2,0,2.187,2.187,0,-9,1,0.299999999999997,0.5,1 -"460",1346,2,0,0.072,0.072,0,12,0,-0.200000000000003,1.7,-6 -"461",1347,2,0,0.661,0.661,0,-1,0,7.1,-0.300000000000001,3 -"462",1348,2,0,0.745,0.745,0,17,1,2.4,-0.300000000000001,3 -"463",1349,2,0,0.437,0.437,1,,1,-5.2,-1.2,2 -"464",1350,2,0,10,10,0,9,0,-2.7,-1,-6 -"465",1351,2,0,3.626,3.626,0,1,1,1.9,-1.6,-1 -"466",1352,2,0,0.495,0.495,1,-10,1,-5.3,1.2,5 -"467",1353,2,0,10,10,0,14,1,2.2,0.100000000000001,-2 -"468",1354,2,0,5.166,5.166,0,0,0,1.6,-0.6,0 -"469",1355,2,0,10,10,0,13,1,-3.2,-0.800000000000001,-12 -"470",1356,2,0,0.131,0.131,0,6,1,-2.7,0.5,2 -"471",1357,2,0,8.154,8.154,0,-25,1,-5.3,0.800000000000001,5 -"472",1358,2,0,10,10,0,-10,0,10.8,0.5,-2 -"473",1359,2,,,,,22,0,-4.5,2.3,7 -"474",1360,2,0,1.861,1.861,1,-34,0,-1.5,1.3,0 -"475",1361,2,0,1.843,1.843,1,12,0,5.4,0.199999999999999,3 -"476",1362,2,0,0.669,0.669,1,24,0,-2,-1.6,-1 -"477",1363,2,0,2.362,2.362,1,11,0,5.6,,4 -"478",1364,2,0,10,10,0,5,1,0.700000000000003,0.199999999999999,-1 -"479",1365,2,0,0.756,0.756,0,7,1,3.2,0,5 -"480",1366,2,0,0.53,0.53,0,17,1,-3.4,0.800000000000001,-6 -"481",1367,2,0,4.134,4.134,0,-13,1,3.4,0.699999999999999,8 -"482",1368,2,0,2.402,2.402,0,-20,1,-0.700000000000003,-0.6,-6 -"483",1369,2,0,6.745,6.745,0,20,1,0.799999999999997,-0.9,-3 -"484",1370,2,0,1.884,1.884,0,-13,1,-2.2,1.1,-11 -"485",1371,2,0,7.172,7.172,0,1,0,-7,0.899999999999999,-1 -"486",1372,2,0,1.466,1.466,0,9,1,0.899999999999999,-1.2,-6 -"487",1373,2,0,2.883,2.883,0,25,0,-8.7,-1.1,-3 -"488",1374,2,0,0.044,0.044,1,11,0,-3.6,1,-3 -"489",1375,2,0,2.875,2.875,0,-4,1,3.1,0.600000000000001,0 -"490",1376,2,0,8.018,8.018,0,-21,0,3,-0.0999999999999996,2 -"491",1377,2,0,3.152,3.152,1,17,0,-1.5,-0.300000000000001,4 -"492",1378,2,0,2.165,2.165,0,-12,0,-7.1,-1.1,2 -"493",1379,2,0,2.026,2.026,1,2,0,-6,,-9 -"494",1380,2,0,1.071,1.071,1,-6,1,-0.700000000000003,1.1,-4 -"495",1381,2,,,,,7,1,-0.299999999999997,-0.199999999999999,1 -"496",1382,2,0,0.968,0.968,1,16,0,-1,-1.1,7 -"497",1383,2,0,4.719,4.719,1,13,1,0.100000000000001,0.199999999999999,0 -"498",1384,2,0,1.078,1.078,1,0,1,-3.5,0.699999999999999,1 -"499",1385,2,0,10,10,0,10,1,-1.3,-0.199999999999999,-4 -"500",1386,2,0,7.318,7.318,1,-22,1,-5.6,-0.0999999999999996,0 -"501",1387,2,0,10,10,0,-3,1,-2.3,1.1,2 -"502",1388,2,0,0.062,0.062,1,-10,1,-4.1,1,1 -"503",1389,2,0,0.723,0.723,1,12,0,1.7,0,-6 -"504",1390,2,0,2.683,2.683,0,-25,1,2.3,1,-1 -"505",1391,2,0,4.406,4.406,0,19,1,-1.7,-0.800000000000001,3 -"506",1392,2,0,0.658,0.658,1,26,0,1.7,-1.3,10 -"507",1393,2,0,1.039,1.039,1,16,1,-3.5,-0.0999999999999996,4 -"508",1394,2,0,0.098,0.098,1,-4,1,7.4,-0.0999999999999996,5 -"509",1395,2,0,0.519,0.519,0,2,1,-0.899999999999999,1.4,2 -"510",1396,2,0,1.536,1.536,0,6,0,1.2,-0.199999999999999,1 -"511",1397,2,0,0.343,0.343,1,13,0,0.600000000000001,-0.300000000000001,-1 -"512",1398,2,0,0.075,0.075,1,-2,1,-0.399999999999999,0.699999999999999,4 -"513",1399,2,0,0.366,0.366,1,5,0,-4.3,0.600000000000001,-7 -"514",1400,2,0,0.603,0.603,1,-19,1,-1.3,0.5,1 -"515",1401,2,0,3.722,3.722,0,-3,0,-3.4,0.600000000000001,-7 -"516",1402,2,0,3.834,3.834,1,0,0,3.5,-1.1,5 -"517",1403,2,0,0.183,0.183,1,-1,0,4.8,-1.4,4 -"518",1404,2,0,9.309,9.309,1,0,1,0.700000000000003,0.600000000000001,0 -"519",1405,2,0,1.128,1.128,1,24,0,-1,-0.199999999999999,-5 -"520",1406,2,0,4.27,4.27,0,-36,1,4.9,1.4,0 -"521",1407,2,0,6.201,6.201,1,-16,0,1,-0.6,-4 -"522",1408,2,0,5.59,5.59,0,-12,0,3.7,2.2,-1 -"523",1409,2,0,1.347,1.347,1,20,0,2.4,-1.7,4 -"524",1410,2,0,1.46,1.46,1,-3,1,0,1.5,-12 -"525",1411,2,0,0.321,0.321,1,4,1,-0.100000000000001,0.300000000000001,6 -"526",1412,2,0,0.367,0.367,1,-3,0,-4.7,0.300000000000001,1 -"527",1413,2,0,10,10,0,-1,1,4.8,-0.6,4 -"528",1414,2,0,10,10,0,-19,0,-1.6,-0.6,-6 -"529",1415,2,0,9.866,9.866,1,9,0,1.5,-0.699999999999999,-3 -"530",1416,2,0,4.424,4.424,0,11,1,2.5,-0.5,-1 -"531",1417,2,0,10,10,0,17,0,-2.6,0.899999999999999,-8 -"532",1418,2,0,1.908,1.908,0,6,1,0.100000000000001,-0.300000000000001,0 -"533",1419,2,0,1.14,1.14,0,-20,0,8,-2,-5 -"534",1420,2,0,10,10,0,-3,1,-3.3,-0.300000000000001,6 -"535",1421,2,0,10,10,0,-2,1,-1,-1.2,-1 -"536",1422,2,0,5.029,5.029,0,-24,,-2.9,-1.2,-3 -"537",1423,2,0,4.049,4.049,0,-3,1,-3,0.699999999999999,-6 -"538",1424,2,0,0.087,0.087,0,-1,0,-0.200000000000003,-1.8,2 -"539",1425,2,0,2.615,2.615,1,-11,0,5.1,0.699999999999999,0 -"540",1426,2,0,10,10,0,-15,1,8.2,1.1,2 -"541",1427,2,0,0.817,0.817,0,5,0,-3.2,-0.699999999999999,-9 -"542",1428,2,0,10,10,0,-1,1,-2.6,0,-3 -"543",1429,2,0,10,10,0,2,1,,-0.199999999999999,-4 -"544",1430,2,0,8.976,8.976,0,-27,1,-0.200000000000003,-1,0 -"545",1431,2,0,0.902,0.902,1,21,1,-1.9,0.699999999999999,0 -"546",1432,2,0,1.674,1.674,1,-9,0,-3.9,2.1,-2 -"547",1433,2,0,10,10,0,-26,1,-0.600000000000001,1.8,-1 -"548",1434,2,0,2.185,2.185,0,-27,1,-4.2,-0.199999999999999,11 -"549",1435,2,0,1.02,1.02,1,12,0,0.299999999999997,0,2 -"550",1436,2,0,0.72,0.72,1,-14,1,2.9,0.399999999999999,8 -"551",1437,2,0,0.244,0.244,1,11,1,1,1.4,2 -"552",1438,2,0,2.543,2.543,1,-19,0,-0.299999999999997,-0.300000000000001,7 -"553",1439,2,0,0.844,0.844,1,-27,0,5.5,0.5,-5 -"554",1440,2,0,2.279,2.279,0,8,1,0.700000000000003,-1.3,-5 -"555",1441,2,0,2.186,2.186,0,-25,1,3.4,-0.699999999999999,7 -"556",1442,2,0,3.49,3.49,0,6,1,-2.7,0.399999999999999,1 -"557",1443,2,0,0.898,0.898,1,34,0,-3.9,-0.6,1 -"558",1444,2,0,0.257,0.257,1,32,0,-4,1.7,-1 -"559",1445,2,0,1.103,1.103,0,-17,1,5.6,-0.6,6 -"560",1446,2,0,1.754,1.754,1,12,0,2.5,0.300000000000001,2 -"561",1447,2,0,4.203,4.203,0,-12,1,-9.7,-0.0999999999999996,1 -"562",1448,2,0,10,10,0,-22,1,0.899999999999999,-0.800000000000001,1 -"563",1449,2,0,10,10,0,-9,0,5.8,-1.4,-8 -"564",1450,2,0,4.322,4.322,0,-16,0,3.4,-1.8,-4 -"565",1451,2,0,1.452,1.452,0,-13,1,7.9,-0.6,5 -"566",1452,2,0,9.762,9.762,0,-30,0,-3.1,-1.1,2 -"567",1453,2,0,6.788,6.788,1,22,0,0.600000000000001,-0.5,-7 -"568",1454,2,0,3.986,3.986,1,3,1,-4.5,1.2,1 -"569",1455,2,0,0.133,0.133,0,4,0,-3.2,0.300000000000001,2 -"570",1456,2,0,2.947,2.947,0,-20,1,-1.4,-0.199999999999999,8 -"571",1457,2,0,0.736,0.736,0,-11,0,3.9,0.199999999999999,2 -"572",1458,2,0,8.729,8.729,0,-11,1,-3.6,-0.4, -"573",1459,2,0,1.774,1.774,1,-2,1,0.700000000000003,1.7,-1 -"574",1460,2,0,0.155,0.155,0,-11,1,-6.2,0.100000000000001,8 -"575",1461,2,0,0.731,0.731,0,7,1,0.5,0.399999999999999, -"576",1462,2,0,0.446,0.446,0,-32,1,4.5,2.3,2 -"577",1463,2,0,7.136,7.136,0,6,0,0.100000000000001,-1.5,-2 -"578",1464,2,0,10,10,0,-20,1,-2,-0.699999999999999,-2 -"579",1465,2,0,6.078,6.078,0,12,1,-5.3,-0.4,1 -"580",1466,2,0,0.32,0.32,1,14,1,6.9,1,6 -"581",1467,2,0,4.565,4.565,1,,0,-0.200000000000003,0.300000000000001,-3 -"582",1468,2,0,0.878,0.878,0,6,1,1.7,-0.699999999999999,3 -"583",1469,2,0,0.229,0.229,0,-15,0,2.9,0.5,2 -"584",1470,2,0,2.876,2.876,1,-10,1,-5.5,2.6,3 -"585",1471,2,0,0.106,0.106,1,21,0,-1.1,0.199999999999999,6 -"586",1472,2,0,1.41,1.41,1,-18,0,0.600000000000001,-0.199999999999999,-2 -"587",1473,2,0,1.42,1.42,1,-8,1,-3.5,-0.199999999999999,4 -"588",1474,2,0,7.962,7.962,0,-13,1,1.3,-0.699999999999999,-2 -"589",1475,2,0,2.352,2.352,0,3,1,-2.9,0,-6 -"590",1476,2,0,1.29,1.29,1,-18,1,-2,1.7,6 -"591",1477,2,0,8.419,8.419,0,-20,1,1.6,-1,-12 -"592",1478,2,0,3.808,3.808,0,-23,1,2.8,0.199999999999999,-2 -"593",1479,2,0,8.13,8.13,0,-4,0,-7.4,-0.6,-5 -"594",1480,2,0,0.025,0.025,1,24,0,-3.4,-1.1,5 -"595",1481,2,0,2.712,2.712,0,-19,0,5.6,-2,3 -"596",1482,2,0,0.141,0.141,1,-6,1,-1.3,0.300000000000001,1 -"597",1483,2,0,4.952,4.952,0,-4,0,-0.600000000000001,-0.699999999999999,0 -"598",1484,2,0,0.931,0.931,0,4,1,0.100000000000001,-1.2, -"599",1485,2,0,10,10,0,-46,1,-1.2,-0.0999999999999996,9 -"600",1486,2,0,0.77,0.77,0,15,0,0.200000000000003,-0.5,-4 -"601",1487,2,0,10,10,0,2,1,-0.100000000000001,-0.4,5 -"602",1488,2,0,1.62,1.62,1,-14,0,2.7,0.899999999999999,-4 -"603",1489,2,0,0.735,0.735,1,17,1,-5.7,-0.699999999999999,-2 -"604",1490,2,0,1.204,1.204,1,-1,0,4.3,-0.199999999999999,-1 -"605",1491,2,0,10,10,0,8,1,-1.3,-0.4,-7 -"606",1492,2,0,1.57,1.57,0,-8,1,3.7,-0.699999999999999,4 -"607",1493,2,0,5.08,5.08,0,-38,0,4.8,0.399999999999999,9 -"608",1494,2,0,4.791,4.791,1,7,0,-8.1,0.100000000000001,3 -"609",1495,2,0,0.701,0.701,1,2,0,-4.2,-1.1,3 -"610",1496,2,0,5.292,5.292,0,11,0,0.600000000000001,-0.5,-6 -"611",1497,2,0,2.429,2.429,0,-15,0,5.2,0.800000000000001,8 -"612",1498,2,0,0.371,0.371,1,9,0,-1.9,0.600000000000001,0 -"613",1499,2,0,10,10,0,11,1,-0.5,-1,-3 -"614",1500,2,0,1.984,1.984,1,-29,1,1.3,2.3,2 -"615",1501,2,0,0.803,0.803,1,0,1,2.5,2,-2 -"616",1502,2,0,1.078,1.078,1,13,1,1,-0.9,5 -"617",1503,2,0,1.658,1.658,1,-7,1,5.7,-0.6,3 -"618",1504,2,0,10,10,0,-21,1,-0.5,1.3,2 -"619",1505,2,0,1.291,1.291,0,-23,0,-1.1,-0.0999999999999996,3 -"620",1506,2,0,10,10,0,4,0,,-0.9,-1 -"621",1507,2,0,9.013,9.013,1,-24,1,1.1,-0.9,3 -"622",1508,2,0,0.052,0.052,1,-15,1,0,1.3,3 -"623",1509,2,0,1.257,1.257,0,-14,1,-3.1,-0.800000000000001,7 -"624",1510,2,0,1.677,1.677,1,7,1,0.399999999999999,-0.9,-5 -"625",1511,2,0,1.421,1.421,0,-2,0,1.6,-0.699999999999999,1 -"626",1512,2,0,1.357,1.357,1,-3,0,-1.1,0.399999999999999,5 -"627",1513,2,0,0.472,0.472,1,-2,1,-5.9,2.3,-8 -"628",1514,2,0,3,3,1,11,1,5.5,0.300000000000001,6 -"629",1515,2,0,4.762,4.762,0,3,0,-9.2,-1.7,-5 -"630",1516,2,0,0.368,0.368,1,16,1,-2.1,0.600000000000001,6 -"631",1517,2,0,1.036,1.036,0,5,1,7.4,1.1,5 -"632",1518,2,0,1.48,1.48,1,30,0,7.3,-0.6,-5 -"633",1519,2,0,1.364,1.364,0,-24,0,3.8,0.300000000000001,-7 -"634",1520,2,0,0.108,0.108,0,0,0,-2.5,0.600000000000001,13 -"635",1521,2,0,7.834,7.834,1,0,0,-4.5,2.1,-8 -"636",1522,2,0,10,10,0,,1,-3.6,-1.6, -"637",1523,2,0,10,10,0,-20,0,4.8,-0.5,-2 -"638",1524,2,0,1.641,1.641,0,,1,-3.6,-0.199999999999999,-6 -"639",1525,2,0,1.417,1.417,1,-11,1,6,1.4,8 -"640",1526,2,0,10,10,0,5,1,-6.8,0.699999999999999,1 -"641",1527,2,0,0.058,0.058,1,13,0,7.3,0.899999999999999,4 -"642",1528,2,0,2.203,2.203,0,-15,0,-4.8,-0.699999999999999,-3 -"643",1529,2,0,0.568,0.568,1,10,1,-5,0.800000000000001,-3 -"644",1530,2,0,0.317,0.317,1,-3,1,2.6,-0.6,4 -"645",1531,2,0,1.953,1.953,0,3,1,-1.7,-0.800000000000001,-4 -"646",1532,2,0,4.364,4.364,0,-25,0,-1.5,1.3,-2 -"647",1533,2,0,0.034,0.034,0,8,0,0.700000000000003,0.699999999999999,-3 -"648",1534,2,0,4.49,4.49,0,-11,0,-2.2,0.300000000000001,4 -"649",1535,2,0,9.187,9.187,0,-1,1,1.8,1,-10 -"650",1536,2,0,0.478,0.478,1,15,1,-1.5,0.600000000000001,1 -"651",1537,2,0,10,10,0,-19,0,-5,-1.2,-4 -"652",1538,2,0,10,10,0,-2,1,3.4,-1.1,-5 -"653",1539,2,0,10,10,0,10,1,3.9,0.800000000000001,-1 -"654",1540,2,0,0.456,0.456,1,11,1,-8.2,-0.6,-5 -"655",1541,2,0,0.082,0.082,1,28,0,-9.9,-0.0999999999999996,-2 -"656",1542,2,0,0.377,0.377,1,12,1,-3.7,0.699999999999999,-1 -"657",1543,2,0,3.386,3.386,0,-7,1,0,-0.800000000000001,-9 -"658",1544,2,0,2.456,2.456,1,3,0,-4,-0.199999999999999,-1 -"659",1545,2,0,0.329,0.329,1,-15,0,-7.4,-0.0999999999999996,-4 diff --git a/tests/testthat/data_files/SURVIVAL/COLLAPSE_MISSING/collapse_missing_study3.csv b/tests/testthat/data_files/SURVIVAL/COLLAPSE_MISSING/collapse_missing_study3.csv deleted file mode 100644 index eb6ed258..00000000 --- a/tests/testthat/data_files/SURVIVAL/COLLAPSE_MISSING/collapse_missing_study3.csv +++ /dev/null @@ -1,1168 +0,0 @@ -"","ID","STUDY.ID","STARTTIME","ENDTIME","SURVTIME","CENS","age.60","female","noise.56","pm10.16","bmi.26" -"1",1546,3,0,8.026,8.026,0,-3,1,1.3,0,-7 -"2",1547,3,0,8.437,8.437,1,0,0,3.9,-1.3,3 -"3",1548,3,0,0.057,0.057,1,-1,0,3.6,1.3,12 -"4",1549,3,0,0.5,0.5,1,3,0,-2.5,0.699999999999999,3 -"5",1550,3,0,0.838,0.838,1,-11,0,4.1,0.800000000000001,1 -"6",1551,3,0,1.302,1.302,1,12,0,-6.4,-0.699999999999999,-2 -"7",1552,3,0,0.998,0.998,1,8,1,7.4,1.1,2 -"8",1553,3,0,8.086,8.086,0,-7,1,1,-1.6,-1 -"9",1554,3,0,7.914,7.914,0,13,1,2,-1.4,3 -"10",1555,3,0,5.208,5.208,0,5,1,-7.3,-1.2,8 -"11",1556,3,0,10,10,0,-2,1,1.6,-1.6, -"12",1557,3,0,4.996,4.996,0,-31,0,5.8,0.899999999999999,4 -"13",1558,3,0,1.094,1.094,0,-28,0,-5.6,1.2,-9 -"14",1559,3,0,0.281,0.281,0,4,1,0.799999999999997,-0.699999999999999,2 -"15",1560,3,0,10,10,0,-33,0,1.8,0.300000000000001,-4 -"16",1561,3,0,8.455,8.455,1,1,0,-1.9,-0.0999999999999996,-2 -"17",1562,3,0,5.941,5.941,0,-3,0,-1.5,0.5,-3 -"18",1563,3,0,0.476,0.476,1,5,1,0.5,1.1,14 -"19",1564,3,0,4.484,4.484,0,-13,0,-6.4,-2.1,-4 -"20",1565,3,,,,,-4,0,-3.2,1.4,6 -"21",1566,3,0,3.671,3.671,0,-27,1,-0.899999999999999,0.300000000000001,-3 -"22",1567,3,0,4.122,4.122,0,-20,0,1.7,-1.1,-5 -"23",1568,3,0,0.082,0.082,1,36,0,-2.2,-0.300000000000001,3 -"24",1569,3,0,0.247,0.247,0,-24,1,-11.8,1,2 -"25",1570,3,0,6.343,6.343,0,-27,0,2.8,0.699999999999999,-5 -"26",1571,3,0,0.596,0.596,1,23,0,-1.9,-0.699999999999999,-3 -"27",1572,3,0,0.349,0.349,1,18,0,-4.7,0, -"28",1573,3,0,1.604,1.604,1,12,0,4.8,-0.0999999999999996,1 -"29",1574,3,0,0.158,0.158,1,23,1,-4.5,0.600000000000001,7 -"30",1575,3,0,5.596,5.596,0,6,1,1.1,-1.6,-3 -"31",1576,3,0,2.297,2.297,0,-1,0,3.9,0.199999999999999,-1 -"32",1577,3,0,0.725,0.725,0,22,0,0.899999999999999,-0.0999999999999996,5 -"33",1578,3,0,2.898,2.898,0,-17,0,3,-0.300000000000001,0 -"34",1579,3,0,0.393,0.393,1,11,1,5.2,1.3,-1 -"35",1580,3,0,0.267,0.267,1,1,0,-2.1,-0.6,5 -"36",1581,3,0,1.09,1.09,1,20,0,-5.1,-0.0999999999999996,5 -"37",1582,3,0,1.48,1.48,1,-21,1,2,-0.0999999999999996,10 -"38",1583,3,0,10,10,0,0,1,4.6,-0.0999999999999996,-5 -"39",1584,3,0,2.714,2.714,0,9,0,-5.9,-0.4,0 -"40",1585,3,0,0.132,0.132,1,33,1,4,-0.0999999999999996,-1 -"41",1586,3,0,2.872,2.872,1,-5,0,3,-1.9,2 -"42",1587,3,0,9.442,9.442,0,-35,0,-6.8,-0.5,5 -"43",1588,3,0,10,10,0,2,1,0,-0.800000000000001,2 -"44",1589,3,0,0.107,0.107,1,12,0,1.8,1.6,-1 -"45",1590,3,0,0.946,0.946,1,5,1,9.2,0.100000000000001,9 -"46",1591,3,0,1.407,1.407,1,-16,0,4.1,1.7,5 -"47",1592,3,0,10,10,0,-19,1,-6.4,-1,-6 -"48",1593,3,0,3.997,3.997,0,-2,1,2.1,-1,3 -"49",1594,3,0,5.911,5.911,0,17,1,4.2,-1,-3 -"50",1595,3,0,0.277,0.277,1,19,0,0.100000000000001,0.800000000000001,3 -"51",1596,3,0,10,10,0,3,1,-0.899999999999999,0.5,-9 -"52",1597,3,0,1.2,1.2,1,-13,1,0.700000000000003,-0.800000000000001,1 -"53",1598,3,0,1.986,1.986,1,1,1,1.5,-0.199999999999999,0 -"54",1599,3,0,0.878,0.878,0,8,0,-6,-0.699999999999999,11 -"55",1600,3,0,1.503,1.503,1,-18,1,7,0.699999999999999,-1 -"56",1601,3,0,6.866,6.866,0,-7,1,-1.2,1.1,6 -"57",1602,3,0,10,10,0,6,1,5.1,-0.9,0 -"58",1603,3,0,0.409,0.409,0,1,1,3.6,-0.199999999999999,2 -"59",1604,3,0,1.037,1.037,0,7,1,-3.3,1.3,0 -"60",1605,3,0,2.678,2.678,0,-7,0,-0.100000000000001,0,0 -"61",1606,3,0,8.478,8.478,0,-19,1,0.799999999999997,-1.2,0 -"62",1607,3,0,7.86,7.86,1,-3,1,-5.3,-0.800000000000001,3 -"63",1608,3,0,1.553,1.553,1,-14,1,3.4,1.4,-4 -"64",1609,3,0,0.011,0.011,1,13,0,-4.1,1.3,4 -"65",1610,3,0,1.252,1.252,1,-2,1,4.2,-0.6,6 -"66",1611,3,0,10,10,0,23,1,-0.299999999999997,1.1,-11 -"67",1612,3,0,0.672,0.672,0,-12,1,1.9,-0.5,-2 -"68",1613,3,0,10,10,0,7,0,1.7,-1.7,-3 -"69",1614,3,0,0.639,0.639,0,17,1,-1.2,-0.699999999999999,2 -"70",1615,3,0,2.562,2.562,1,-13,0,-0.299999999999997,-0.6,8 -"71",1616,3,0,0.02,0.02,1,16,0,1.1,0.5,2 -"72",1617,3,0,1.692,1.692,1,-7,1,-1.8,0.5,4 -"73",1618,3,0,1.463,1.463,1,20,0,2.1,-0.9,4 -"74",1619,3,0,3.66,3.66,0,-10,1,-1.9,-0.4,-8 -"75",1620,3,0,1.073,1.073,1,15,1,-3.8,1.1,-2 -"76",1621,3,0,10,10,0,-15,1,1,0.5,4 -"77",1622,3,0,2.963,2.963,0,-3,1,-1.7,0.699999999999999,-8 -"78",1623,3,0,10,10,0,-22,1,-3,-0.0999999999999996,6 -"79",1624,3,0,1.446,1.446,1,-14,0,-3.1,-1,4 -"80",1625,3,0,0.765,0.765,1,-11,0,1.8,1,3 -"81",1626,3,0,0.475,0.475,1,11,1,4.3,-0.800000000000001,4 -"82",1627,3,0,0.543,0.543,1,0,1,3.9,-0.0999999999999996,5 -"83",1628,3,0,2.615,2.615,0,-8,1,3.8,-0.300000000000001,-4 -"84",1629,3,0,0.35,0.35,1,-3,1,0.899999999999999,-1.3,3 -"85",1630,3,0,0.277,0.277,1,23,0,-1.4,0,-1 -"86",1631,3,0,1.784,1.784,1,-21,1,0.5,-0.4,6 -"87",1632,3,0,0.716,0.716,0,-27,0,4,0.600000000000001,2 -"88",1633,3,0,0.374,0.374,1,10,0,1.9,-0.5,9 -"89",1634,3,0,1.99,1.99,1,-3,0,-4.5,1.2,2 -"90",1635,3,0,6.839,6.839,1,3,0,-0.299999999999997,-0.0999999999999996,1 -"91",1636,3,0,1.267,1.267,1,20,0,0.700000000000003,0.199999999999999,-7 -"92",1637,3,0,3.163,3.163,0,-18,1,5.5,0.199999999999999,3 -"93",1638,3,0,0.16,0.16,1,23,1,2.3,3.1,2 -"94",1639,3,0,0.578,0.578,0,25,0,-6.4,-0.800000000000001, -"95",1640,3,0,1.459,1.459,1,-1,0,2,-2.2,1 -"96",1641,3,0,10,10,0,0,1,1.5,-1.4,7 -"97",1642,3,0,1.645,1.645,1,-21,0,-1.2,-0.0999999999999996,0 -"98",1643,3,0,1.137,1.137,1,-7,1,0.200000000000003,1,2 -"99",1644,3,0,10,10,0,-2,1,-1.6,-0.9,3 -"100",1645,3,0,1.675,1.675,1,-3,0,-0.5,-0.199999999999999,3 -"101",1646,3,0,1.497,1.497,0,-27,1,0.799999999999997,-1.5,1 -"102",1647,3,0,0.386,0.386,0,-8,1,3.9,-0.800000000000001,-10 -"103",1648,3,0,10,10,0,-25,1,1.1,1.1,1 -"104",1649,3,0,8.081,8.081,0,-20,1,3.4,-2.1,7 -"105",1650,3,0,2.422,2.422,0,2,0,-0.700000000000003,0,-6 -"106",1651,3,0,0.99,0.99,1,-1,0,6.9,-0.300000000000001,0 -"107",1652,3,0,0.509,0.509,1,0,0,4.5,0.300000000000001,-3 -"108",1653,3,0,3.039,3.039,0,27,0,2.6,-0.800000000000001,3 -"109",1654,3,0,7.289,7.289,0,-10,1,-2.4,-0.800000000000001,1 -"110",1655,3,0,0.934,0.934,1,19,1,8.09999999999999,-0.4,-5 -"111",1656,3,0,0.671,0.671,0,9,0,-5.1,0,-6 -"112",1657,3,0,10,10,0,-13,0,-6.6,-0.0999999999999996,-4 -"113",1658,3,0,0.519,0.519,0,-7,0,4.2,1.1,0 -"114",1659,3,0,1.189,1.189,1,2,0,-3.5,0.300000000000001,-2 -"115",1660,3,0,0.834,0.834,0,11,1,2.3,-0.9,-6 -"116",1661,3,0,0.677,0.677,1,-18,0,-0.399999999999999,0.800000000000001,5 -"117",1662,3,0,0.113,0.113,1,27,1,0.799999999999997,-0.5,0 -"118",1663,3,0,0.103,0.103,0,8,1,5.3,-0.9,4 -"119",1664,3,0,1.161,1.161,1,17,1,4.3,-0.9,3 -"120",1665,3,0,0.4,0.4,0,13,0,1.4,0.600000000000001,5 -"121",1666,3,0,7.53,7.53,1,17,1,12.4,0.100000000000001,-2 -"122",1667,3,0,0.085,0.085,1,-4,0,-4.7,0.800000000000001,5 -"123",1668,3,0,1.934,1.934,1,-6,1,-2.6,1.1,-8 -"124",1669,3,0,0.132,0.132,0,1,0,-7.2,0.100000000000001,-2 -"125",1670,3,0,0.885,0.885,1,1,0,-0.899999999999999,-0.9,-1 -"126",1671,3,0,2.78,2.78,0,13,1,5.9,-0.199999999999999,-3 -"127",1672,3,0,10,10,0,7,1,2.6,-0.699999999999999,-2 -"128",1673,3,0,1.54,1.54,1,-23,1,-4.7,0.800000000000001,-6 -"129",1674,3,0,7.578,7.578,1,-6,0,7.9,-1.2,0 -"130",1675,3,0,0.401,0.401,1,-15,0,-4,0.699999999999999,2 -"131",1676,3,0,1.446,1.446,0,-9,0,10.9,-0.699999999999999,3 -"132",1677,3,0,1.745,1.745,1,-8,0,-6.9,,-9 -"133",1678,3,0,2.218,2.218,0,-6,0,6.5,1,-3 -"134",1679,3,0,2.732,2.732,0,-16,0,4.4,0.5,6 -"135",1680,3,0,10,10,0,-5,0,1,-0.6,3 -"136",1681,3,0,8.192,8.192,0,-1,0,0.5,0,-8 -"137",1682,3,0,2.2,2.2,0,-17,1,-1.1,,4 -"138",1683,3,0,2.288,2.288,1,3,1,-1.3,1.1,-2 -"139",1684,3,0,7.607,7.607,0,21,0,2.1,-1.6,4 -"140",1685,3,0,0.515,0.515,1,12,0,3.2,0.899999999999999,2 -"141",1686,3,0,0.951,0.951,1,8,1,1,-0.300000000000001,-2 -"142",1687,3,0,2.336,2.336,0,14,0,-6.6,,3 -"143",1688,3,0,5,5,0,3,0,0.100000000000001,-0.699999999999999,0 -"144",1689,3,0,10,10,0,-17,1,2.7,-0.4,-1 -"145",1690,3,0,10,10,0,-6,1,3.4,-0.800000000000001,-2 -"146",1691,3,0,10,10,0,10,0,2.6,0.699999999999999,-9 -"147",1692,3,0,5.93,5.93,0,-9,1,-1.6,-1.1,-3 -"148",1693,3,0,3.135,3.135,1,-5,0,-6.8,1.6,2 -"149",1694,3,0,10,10,0,-4,1,0.399999999999999,-1,0 -"150",1695,3,0,2.714,2.714,1,8,1,-1.5,0.199999999999999,4 -"151",1696,3,0,1.892,1.892,1,-2,1,-4,1.6,-6 -"152",1697,3,0,9.805,9.805,0,-7,1,-0.399999999999999,-0.0999999999999996,-5 -"153",1698,3,0,0.802,0.802,1,2,0,10.2,0.199999999999999,3 -"154",1699,3,0,1.581,1.581,0,8,1,-0.799999999999997,-0.4,-9 -"155",1700,3,0,0.654,0.654,1,-9,0,4.4,-0.4,10 -"156",1701,3,0,0.34,0.34,1,5,0,-1,-0.0999999999999996,9 -"157",1702,3,0,0.041,0.041,1,9,0,-0.799999999999997,0.199999999999999,2 -"158",1703,3,0,0.029,0.029,1,11,0,7.9,1.1,14 -"159",1704,3,0,8.988,8.988,1,-15,1,,-0.699999999999999,-4 -"160",1705,3,0,0.001,0.001,1,7,0,5.9,1.2,1 -"161",1706,3,0,1.092,1.092,1,26,1,3.8,-0.0999999999999996,2 -"162",1707,3,0,0.81,0.81,0,1,0,4.8,0.5,-1 -"163",1708,3,0,0.534,0.534,1,12,1,-0.700000000000003,0.100000000000001,1 -"164",1709,3,0,7.835,7.835,0,-6,1,-2.2,-1.2,-1 -"165",1710,3,0,1.897,1.897,0,0,0,-9,0.100000000000001,1 -"166",1711,3,0,0.245,0.245,1,-4,0,1,0.899999999999999,3 -"167",1712,3,0,0.382,0.382,0,-21,0,0.5,0.300000000000001, -"168",1713,3,0,0.105,0.105,0,-9,0,-1.9,2,5 -"169",1714,3,0,0.331,0.331,0,-14,0,6.3,1.1,2 -"170",1715,3,0,1.2,1.2,0,-15,0,6.6,0.5,-5 -"171",1716,3,0,10,10,0,2,1,-3.2,-0.199999999999999,0 -"172",1717,3,0,1.496,1.496,1,30,1,5.8,-0.800000000000001,0 -"173",1718,3,0,1.517,1.517,1,2,0,2.4,0.199999999999999,-2 -"174",1719,3,0,2.39,2.39,0,-1,1,-0.5,-0.9,-2 -"175",1720,3,0,6.235,6.235,0,-37,1,-0.299999999999997,-0.4,-5 -"176",1721,3,0,6.932,6.932,1,6,0,8.2,0,-4 -"177",1722,3,0,7.372,7.372,0,1,1,-2.4,-1.1,1 -"178",1723,3,0,4.015,4.015,0,3,1,2.3,-1.2,-6 -"179",1724,3,0,0.074,0.074,1,17,0,0.299999999999997,0.699999999999999,4 -"180",1725,3,0,0.622,0.622,1,14,1,-3.8,0.300000000000001,-11 -"181",1726,3,0,0.417,0.417,0,-6,0,-3.9,0.5,1 -"182",1727,3,0,1.138,1.138,1,8,0,2.1,-0.199999999999999,6 -"183",1728,3,0,1.439,1.439,0,-30,,7,-1,-2 -"184",1729,3,0,2.373,2.373,0,-16,1,-5.3,0.699999999999999,1 -"185",1730,3,0,4.084,4.084,1,10,1,3.3,-0.6,7 -"186",1731,3,0,0.529,0.529,0,-8,1,-4.8,0.5,-4 -"187",1732,3,0,1.409,1.409,1,-8,1,-1,1,-8 -"188",1733,3,0,4.239,4.239,0,-18,1,3.3,1.2,-3 -"189",1734,3,0,0.48,0.48,1,2,0,0.200000000000003,1,5 -"190",1735,3,0,0.131,0.131,0,8,0,3.9,0.899999999999999,-4 -"191",1736,3,0,0.185,0.185,1,24,1,2.8,-1.8,10 -"192",1737,3,0,0.656,0.656,1,3,0,6.1,-0.6,3 -"193",1738,3,0,3.122,3.122,0,-7,0,0.200000000000003,0.100000000000001,1 -"194",1739,3,0,0.868,0.868,1,4,0,2.8,-0.5,0 -"195",1740,3,0,4.409,4.409,0,-37,0,-2.8,-1.2,-6 -"196",1741,3,0,10,10,0,31,0,-3.1,-1.2,-7 -"197",1742,3,0,7.051,7.051,1,12,1,6.5,0.899999999999999,-2 -"198",1743,3,0,0.778,0.778,1,10,1,-4.3,1.1,2 -"199",1744,3,0,2.086,2.086,0,-1,0,-0.899999999999999,-0.199999999999999, -"200",1745,3,0,0.403,0.403,1,-15,0,-3.8,2,7 -"201",1746,3,0,1.201,1.201,1,1,0,6.5,1.1,-4 -"202",1747,3,0,1.961,1.961,1,1,1,4.1,-0.4,1 -"203",1748,3,0,1.017,1.017,0,-11,0,8.09999999999999,-0.4,3 -"204",1749,3,0,0.373,0.373,1,16,,4.9,0.899999999999999,3 -"205",1750,3,0,5.196,5.196,0,-21,0,3.3,0,-8 -"206",1751,3,0,1.114,1.114,1,24,0,-2.6,-0.6,-2 -"207",1752,3,0,1.179,1.179,0,-20,0,1,-0.300000000000001,3 -"208",1753,3,0,10,10,0,-10,0,1.5,0.600000000000001,4 -"209",1754,3,0,6.902,6.902,0,,0,-6.1,-0.6,-5 -"210",1755,3,0,0.081,0.081,1,-14,0,1.4,0.699999999999999,2 -"211",1756,3,0,1.804,1.804,1,0,1,-3.6,1.4,3 -"212",1757,3,0,1.899,1.899,0,9,1,-6.7,-1.5,12 -"213",1758,3,0,0.207,0.207,0,16,0,-2.1,-1,9 -"214",1759,3,,,,,16,0,-3.3,-0.199999999999999,8 -"215",1760,3,0,9.135,9.135,0,10,0,2.9,-0.9,-5 -"216",1761,3,0,9.815,9.815,0,-6,1,5,-0.9,-6 -"217",1762,3,0,8.933,8.933,0,-20,1,0.100000000000001,0.100000000000001,-2 -"218",1763,3,0,1.03,1.03,1,-5,0,-5.1,-0.0999999999999996,6 -"219",1764,3,0,1.708,1.708,1,-5,0,0.600000000000001,0.600000000000001,0 -"220",1765,3,0,1.042,1.042,0,-12,0,-4,-2,-2 -"221",1766,3,0,2.223,2.223,0,-8,1,4.8,0.300000000000001,-10 -"222",1767,3,0,2.504,2.504,1,-2,0,-4.9,0.899999999999999,0 -"223",1768,3,0,0.539,0.539,0,6,1,0.899999999999999,0,-2 -"224",1769,3,0,7.518,7.518,0,-29,0,-0.200000000000003,0.100000000000001,6 -"225",1770,3,0,0.22,0.22,1,-26,0,7.6,1.1,4 -"226",1771,3,0,10,10,0,-10,0,1.7,0.399999999999999,-6 -"227",1772,3,0,0.617,0.617,0,0,1,-0.899999999999999,-1,3 -"228",1773,3,0,6.86,6.86,0,-7,1,1.8,1,-2 -"229",1774,3,0,4.421,4.421,0,8,1,0.200000000000003,-1,7 -"230",1775,3,0,6.562,6.562,1,-5,1,7.4,0,4 -"231",1776,3,0,1.928,1.928,1,-20,,2.7,2,-6 -"232",1777,3,0,0.017,0.017,0,1,0,-7.3,0,-2 -"233",1778,3,0,10,10,0,7,1,5.2,-1.9,-6 -"234",1779,3,0,6.174,6.174,0,0,1,3.8,-0.0999999999999996,7 -"235",1780,3,0,4.656,4.656,0,-24,1,9.7,-1.2,5 -"236",1781,3,0,2.482,2.482,0,22,1,-3.6,0,-5 -"237",1782,3,0,8.742,8.742,1,-17,0,-8.3,1.9,-4 -"238",1783,3,0,1.518,1.518,1,-1,1,2.4,0.399999999999999,-6 -"239",1784,3,0,0.228,0.228,1,11,1,-3.2,0.800000000000001,-4 -"240",1785,3,0,0.564,0.564,0,11,1,-4.7,-0.0999999999999996,1 -"241",1786,3,0,0.196,0.196,1,28,0,6.3,0.5,-5 -"242",1787,3,0,5.714,5.714,1,29,,-1.1,-1.3,-14 -"243",1788,3,0,3.118,3.118,0,-10,0,0.799999999999997,-0.800000000000001,1 -"244",1789,3,0,0.243,0.243,0,5,0,3.1,0.199999999999999,-9 -"245",1790,3,0,1.661,1.661,0,16,1,3.4,-0.199999999999999, -"246",1791,3,0,1.269,1.269,0,8,1,-0.5,-0.4,0 -"247",1792,3,0,4.782,4.782,0,-32,0,-1.2,0.5,7 -"248",1793,3,0,0.988,0.988,1,-6,0,2.9,1.2,5 -"249",1794,3,0,6.383,6.383,0,-2,0,0.600000000000001,0.399999999999999,-7 -"250",1795,3,0,1.513,1.513,1,-16,0,7,-0.5,-6 -"251",1796,3,0,0.017,0.017,0,2,1,-3.4,-2,5 -"252",1797,3,0,4.319,4.319,0,-26,1,-0.399999999999999,0,7 -"253",1798,3,0,2.23,2.23,0,-18,1,-7.9,-0.0999999999999996,-4 -"254",1799,3,0,1.688,1.688,1,20,0,-3.8,1.7,-13 -"255",1800,3,0,0.199,0.199,0,2,0,-6.2,-0.9,0 -"256",1801,3,0,0.412,0.412,1,25,0,7.2,-0.300000000000001,2 -"257",1802,3,0,0.476,0.476,1,5,0,-4.1,-0.800000000000001,2 -"258",1803,3,0,1.072,1.072,1,4,1,-3.5,0.399999999999999,5 -"259",1804,3,0,7.089,7.089,0,8,1,-1.2,-0.0999999999999996,-13 -"260",1805,3,0,1.722,1.722,1,-12,1,6.3,-0.300000000000001,4 -"261",1806,3,0,1.747,1.747,0,1,,1.2,-2,4 -"262",1807,3,0,0.498,0.498,1,1,1,3.2,0.100000000000001,5 -"263",1808,3,0,6.29,6.29,0,0,0,-5.6,0.399999999999999,0 -"264",1809,3,0,0.065,0.065,1,13,0,0.799999999999997,2.1,2 -"265",1810,3,0,0.089,0.089,1,-7,0,2.6,1,5 -"266",1811,3,0,1.9,1.9,0,-4,1,-3.9,-0.0999999999999996,-8 -"267",1812,3,0,1.33,1.33,1,0,0,-0.200000000000003,0,-6 -"268",1813,3,0,10,10,0,21,1,-1.2,-0.4,-2 -"269",1814,3,0,0.48,0.48,1,10,0,,0.300000000000001,5 -"270",1815,3,0,1.15,1.15,1,-9,0,10.9,1.4,-5 -"271",1816,3,0,0.541,0.541,1,-15,0,-4.2,-1.1,2 -"272",1817,3,0,3.563,3.563,0,-23,1,-3.2,1.5,2 -"273",1818,3,0,0.639,0.639,0,12,1,3.6,-0.0999999999999996,-8 -"274",1819,3,0,0.101,0.101,1,26,0,-1.1,1.5,0 -"275",1820,3,0,3.359,3.359,0,-25,0,-4.9,-0.5,-2 -"276",1821,3,0,0.255,0.255,1,18,0,0.299999999999997,1.6,-6 -"277",1822,3,0,4.731,4.731,0,12,0,,-1.5,-2 -"278",1823,3,0,1.776,1.776,1,-2,1,-3.5,0.399999999999999,-2 -"279",1824,3,0,0.198,0.198,0,-1,1,-5.3,0.399999999999999,4 -"280",1825,3,0,2.602,2.602,1,-1,1,-2,-0.300000000000001,6 -"281",1826,3,0,10,10,0,11,0,8.59999999999999,-0.300000000000001,-5 -"282",1827,3,0,6.019,6.019,0,-14,1,-1.3,-0.800000000000001,3 -"283",1828,3,0,1.959,1.959,1,-2,1,-3.2,-0.699999999999999,3 -"284",1829,3,0,0.449,0.449,0,10,1,9.40000000000001,1.3,-2 -"285",1830,3,0,7.521,7.521,1,6,1,3.4,-0.800000000000001,-1 -"286",1831,3,0,0.348,0.348,1,22,0,0.700000000000003,0.800000000000001,4 -"287",1832,3,0,2.759,2.759,1,-13,0,-0.399999999999999,0.899999999999999,7 -"288",1833,3,0,5.259,5.259,0,-18,1,3.6,0.300000000000001,-5 -"289",1834,3,0,10,10,0,-3,1,6.5,0.100000000000001,-3 -"290",1835,3,0,0.769,0.769,1,19,0,-0.299999999999997,-1.1,0 -"291",1836,3,0,0.148,0.148,1,3,0,7.8,-0.6,0 -"292",1837,3,0,0.584,0.584,1,8,1,-4.4,0.399999999999999,-1 -"293",1838,3,0,0.092,0.092,1,17,0,4,-0.6,7 -"294",1839,3,0,6.539,6.539,0,-17,0,4.5,0.100000000000001,-3 -"295",1840,3,0,5.491,5.491,1,0,0,-1.3,-0.9,-4 -"296",1841,3,0,0.275,0.275,0,-3,0,5.8,0.5,1 -"297",1842,3,0,0.094,0.094,1,5,0,-1.4,-0.0999999999999996,6 -"298",1843,3,0,0.202,0.202,1,-17,1,5.6,-1,9 -"299",1844,3,0,1.403,1.403,1,0,0,7.3,-0.800000000000001,-1 -"300",1845,3,0,1.814,1.814,0,14,0,-5,-1.4,1 -"301",1846,3,0,6.049,6.049,1,-9,1,6.3,1.2,-3 -"302",1847,3,0,5.888,5.888,0,13,0,-2.2,-0.199999999999999,-1 -"303",1848,3,0,5.895,5.895,0,2,1,7.1,0.5,-4 -"304",1849,3,0,0.855,0.855,1,-16,1,-5.2,1.5,4 -"305",1850,3,0,10,10,0,-16,0,3.4,0.399999999999999,2 -"306",1851,3,0,1.234,1.234,0,-36,0,-8.5,0.899999999999999,-4 -"307",1852,3,0,0.385,0.385,1,14,0,1.3,-0.0999999999999996,6 -"308",1853,3,0,0.047,0.047,1,14,0,1.9,-1.2,0 -"309",1854,3,0,2.671,2.671,1,3,0,1,0.399999999999999,8 -"310",1855,3,0,2.787,2.787,1,14,1,0.5,2.1,-7 -"311",1856,3,0,1.04,1.04,0,-24,0,-1.1,-0.5,-4 -"312",1857,3,0,0.979,0.979,1,2,0,2.3,-0.9,9 -"313",1858,3,0,0.041,0.041,1,14,0,0.799999999999997,1.4,2 -"314",1859,3,0,2.661,2.661,0,-28,1,-7,-0.300000000000001,-6 -"315",1860,3,0,2.079,2.079,0,-15,1,-1.4,-1.3,-5 -"316",1861,3,0,3.931,3.931,0,-8,1,-0.799999999999997,0,2 -"317",1862,3,0,0.703,0.703,1,-1,1,5.5,2.4,1 -"318",1863,3,0,2.05,2.05,1,13,0,-4.9,-2.3,6 -"319",1864,3,0,7.077,7.077,0,-1,0,0.799999999999997,2.1,-6 -"320",1865,3,0,8.853,8.853,1,1,1,1.5,-0.4,1 -"321",1866,3,0,8.574,8.574,0,-6,1,4,-0.5,0 -"322",1867,3,0,0.165,0.165,1,-21,0,-0.700000000000003,1.4,-8 -"323",1868,3,0,0.609,0.609,1,7,1,0.299999999999997,0.399999999999999,2 -"324",1869,3,0,0.905,0.905,0,15,1,1.9,-0.0999999999999996,3 -"325",1870,3,0,0.75,0.75,1,-24,1,-2.4,0,1 -"326",1871,3,0,0.857,0.857,1,8,1,-0.700000000000003,-0.800000000000001,-5 -"327",1872,3,0,1.054,1.054,1,-3,0,3.2,-0.6,2 -"328",1873,3,0,1.131,1.131,1,10,0,-2,0.100000000000001,10 -"329",1874,3,0,1.308,1.308,0,-7,1,3.1,-0.300000000000001,-1 -"330",1875,3,0,1.076,1.076,0,14,1,1.3,0.600000000000001,2 -"331",1876,3,0,2.009,2.009,0,-2,1,-1.5,2.1,-4 -"332",1877,3,0,0.571,0.571,1,-2,0,-1,0,2 -"333",1878,3,0,0.079,0.079,1,0,0,-9.5,0.399999999999999,-5 -"334",1879,3,0,0.07,0.07,1,6,0,0.5,-0.199999999999999,-1 -"335",1880,3,0,0.951,0.951,1,1,0,-3.7,-1,-2 -"336",1881,3,0,0.062,0.062,1,-4,0,1.1,2.6,-5 -"337",1882,3,0,0.424,0.424,1,-15,0,5.1,0.199999999999999,2 -"338",1883,3,0,10,10,0,20,0,0,-0.699999999999999,-1 -"339",1884,3,0,0.896,0.896,1,19,1,-2,-0.300000000000001,12 -"340",1885,3,0,0.094,0.094,1,13,0,-0.200000000000003,0.899999999999999,6 -"341",1886,3,0,0.331,0.331,0,11,1,-2.4,-0.699999999999999,0 -"342",1887,3,0,0.54,0.54,1,-7,0,-0.600000000000001,0.800000000000001,0 -"343",1888,3,0,1.476,1.476,0,1,0,-1.6,0.399999999999999,-3 -"344",1889,3,0,0.812,0.812,1,19,1,1,-0.9,-5 -"345",1890,3,0,0.471,0.471,1,-1,0,5.7,1.7,9 -"346",1891,3,0,0.754,0.754,1,9,1,0.100000000000001,-0.0999999999999996,-5 -"347",1892,3,0,1.188,1.188,1,-20,1,-5.2,2,3 -"348",1893,3,0,10,10,0,-5,0,3,0.699999999999999,-5 -"349",1894,3,0,1.808,1.808,0,-2,0,-2.6,-1.9,3 -"350",1895,3,0,0.527,0.527,1,-5,0,-4.2,-0.199999999999999,8 -"351",1896,3,0,3.287,3.287,0,-9,0,-4,0.5,0 -"352",1897,3,0,4.745,4.745,0,5,0,-3.1,-1.2,-2 -"353",1898,3,0,0.089,0.089,1,1,0,4.5,2.1,1 -"354",1899,3,0,0.172,0.172,0,-17,1,5.8,1.2,-1 -"355",1900,3,0,2.965,2.965,0,-2,1,0.200000000000003,-0.199999999999999,8 -"356",1901,3,0,6.417,6.417,0,15,1,-0.399999999999999,-0.199999999999999,2 -"357",1902,3,0,0.57,0.57,1,4,0,-1.8,1.7,-4 -"358",1903,3,0,6.957,6.957,0,13,0,-4.4,0.800000000000001,-5 -"359",1904,3,0,0.352,0.352,0,-4,0,1.8,2.2,5 -"360",1905,3,0,0.163,0.163,1,24,1,-1.7,1,5 -"361",1906,3,0,0.566,0.566,1,14,1,2.7,1.3,1 -"362",1907,3,0,1.515,1.515,1,3,1,-0.200000000000003,-0.0999999999999996,-5 -"363",1908,3,0,0.043,0.043,0,-19,0,2.2,1.1,3 -"364",1909,3,0,6.97,6.97,1,-9,0,-3.8,1.1,-8 -"365",1910,3,0,10,10,0,-41,1,1.8,-1.6,-7 -"366",1911,3,0,4.619,4.619,1,-2,1,6,0.199999999999999,7 -"367",1912,3,0,3.044,3.044,0,15,1,-5.9,-1.2,-5 -"368",1913,3,0,5.805,5.805,1,7,1,3.7,0.600000000000001,3 -"369",1914,3,0,0.612,0.612,1,13,1,11,0.300000000000001,0 -"370",1915,3,0,1.157,1.157,0,-6,0,3.9,-0.4,-12 -"371",1916,3,0,10,10,0,-16,1,-1.4,-2.3,8 -"372",1917,3,0,0.296,0.296,1,23,0,-2.7,-0.199999999999999,5 -"373",1918,3,0,2.644,2.644,1,12,0,-1.6,-0.9,-1 -"374",1919,3,0,0.306,0.306,0,-24,0,-4.4,-0.300000000000001,-3 -"375",1920,3,0,4.534,4.534,0,-12,0,3.6,-1.1,-8 -"376",1921,3,0,6.647,6.647,1,7,1,1.3,0.399999999999999,-5 -"377",1922,3,0,1.402,1.402,0,11,1,-1.3,-0.0999999999999996,-10 -"378",1923,3,0,1.779,1.779,1,-2,0,0.5,0.5,1 -"379",1924,3,0,0.501,0.501,1,-4,0,3.7,1.1,-3 -"380",1925,3,0,1.72,1.72,1,-14,0,-2.6,-0.199999999999999,-5 -"381",1926,3,0,4.691,4.691,0,8,0,1.5,-0.300000000000001,7 -"382",1927,3,0,4.219,4.219,0,-14,0,-2.2,-1.3,0 -"383",1928,3,0,10,10,0,-12,1,-2.3,-0.9,-8 -"384",1929,3,0,0.901,0.901,1,15,0,-2.9,1.5,-8 -"385",1930,3,0,0.615,0.615,0,-1,1,1.6,1,2 -"386",1931,3,0,10,10,0,-21,1,0.799999999999997,-0.5,7 -"387",1932,3,,,,,-15,0,1.2,0.199999999999999,5 -"388",1933,3,0,9.482,9.482,1,-1,1,6,-1.5,7 -"389",1934,3,0,10,10,0,-38,0,1.4,1.7,-4 -"390",1935,3,0,0.588,0.588,0,1,0,-1.8,0.199999999999999,0 -"391",1936,3,0,0.149,0.149,1,6,0,-1.1,-0.300000000000001,5 -"392",1937,3,0,0.658,0.658,1,20,1,2,0.5,-4 -"393",1938,3,0,10,10,0,-3,1,2.2,-2.1,8 -"394",1939,3,0,1.304,1.304,1,0,0,5.9,0.5,2 -"395",1940,3,0,1.24,1.24,0,6,0,-3.1,0.300000000000001,-4 -"396",1941,3,0,0.339,0.339,1,7,0,5.1,-0.5,3 -"397",1942,3,0,10,10,0,-11,1,6.8,0.300000000000001,-4 -"398",1943,3,0,0.803,0.803,0,-32,0,5.3,0.800000000000001,4 -"399",1944,3,0,0.484,0.484,0,0,1,-0.899999999999999,0.699999999999999,2 -"400",1945,3,0,10,10,0,-8,1,-1.4,0.899999999999999,-9 -"401",1946,3,0,0.297,0.297,1,11,1,-2,-1.6,0 -"402",1947,3,0,2.606,2.606,1,-1,1,6.1,-0.6,1 -"403",1948,3,0,4.495,4.495,0,23,1,-10.3,0,-9 -"404",1949,3,0,0.162,0.162,1,24,0,-5,2.4,5 -"405",1950,3,0,0.872,0.872,1,14,1,-3.6,0.800000000000001,7 -"406",1951,3,0,1.41,1.41,1,12,1,1.4,-0.6,-9 -"407",1952,3,0,2.578,2.578,0,13,1,1.3,-0.0999999999999996,-4 -"408",1953,3,0,0.043,0.043,1,4,0,7.1,-0.0999999999999996,8 -"409",1954,3,0,0.013,0.013,1,36,0,-2,0.199999999999999,6 -"410",1955,3,0,2.795,2.795,0,-32,0,3.9,-1.5,0 -"411",1956,3,0,1.348,1.348,1,26,1,-3.7,0.5,1 -"412",1957,3,0,0.078,0.078,1,-24,0,9.40000000000001,0.699999999999999,-3 -"413",1958,3,0,10,10,0,-4,0,-5.9,2.2,-10 -"414",1959,3,0,8.006,8.006,1,-22,1,3.7,-1.1,3 -"415",1960,3,0,0.454,0.454,1,-5,0,0.600000000000001,1.5,0 -"416",1961,3,0,10,10,0,-6,0,-8.4,0.5,-5 -"417",1962,3,0,0.57,0.57,1,-21,1,-3.7,1.8,3 -"418",1963,3,0,0.93,0.93,1,1,0,1,0.699999999999999,5 -"419",1964,3,0,9.2,9.2,1,-13,0,,-0.4,3 -"420",1965,3,0,4.846,4.846,1,9,0,-7,1.2,0 -"421",1966,3,0,10,10,0,-7,1,-2.7,1.5,-5 -"422",1967,3,0,0.252,0.252,1,3,1,-3.9,-0.0999999999999996,1 -"423",1968,3,0,0.545,0.545,1,5,0,-9.7,0.300000000000001,-7 -"424",1969,3,0,6.301,6.301,1,-9,1,-1.9,0.899999999999999,1 -"425",1970,3,0,0.624,0.624,1,19,0,-10.9,1.7,-3 -"426",1971,3,0,10,10,0,-4,1,10.4,-0.0999999999999996,3 -"427",1972,3,0,2.198,2.198,0,-26,0,2.5,-0.6,-7 -"428",1973,3,0,2.39,2.39,1,,0,-0.600000000000001,0.5,-4 -"429",1974,3,0,0.092,0.092,1,13,1,-4.1,2.5,3 -"430",1975,3,0,0.996,0.996,0,2,1,3,-0.4,0 -"431",1976,3,0,4.324,4.324,0,-18,0,-5.2,-1.1,3 -"432",1977,3,0,2.083,2.083,0,-5,0,5.3,-0.199999999999999,0 -"433",1978,3,0,0.135,0.135,1,3,0,-2.4,1.2,8 -"434",1979,3,0,0.62,0.62,0,4,1,2.4,0.600000000000001,5 -"435",1980,3,0,8.006,8.006,1,-1,1,-2.9,0.399999999999999,4 -"436",1981,3,0,3.671,3.671,0,-6,1,0.399999999999999,-0.800000000000001,2 -"437",1982,3,0,5.662,5.662,0,7,0,6.2,-2.4,-1 -"438",1983,3,0,3.578,3.578,0,-26,1,,0.199999999999999,-3 -"439",1984,3,0,10,10,0,-13,0,2.5,-0.699999999999999,-4 -"440",1985,3,0,1.125,1.125,0,-6,1,0.899999999999999,0.600000000000001,-5 -"441",1986,3,0,0.898,0.898,0,-7,0,2.5,0.699999999999999,8 -"442",1987,3,0,5.337,5.337,0,18,1,0.299999999999997,1.6,-9 -"443",1988,3,0,0.932,0.932,0,-12,1,2.6,-0.5,-2 -"444",1989,3,0,0.11,0.11,1,16,1,2.5,1.9,4 -"445",1990,3,0,0.892,0.892,1,-20,0,6.1,0.100000000000001,-3 -"446",1991,3,0,1.226,1.226,1,14,0,2.7,0.600000000000001,10 -"447",1992,3,0,0.336,0.336,1,14,0,8.2,0.100000000000001,-5 -"448",1993,3,0,1.7,1.7,1,-28,0,-6.1,-0.800000000000001,6 -"449",1994,3,0,8.714,8.714,1,7,1,-7.7,0.5,3 -"450",1995,3,0,0.127,0.127,1,-5,0,-4.8,-1.2,6 -"451",1996,3,0,10,10,0,-16,1,-7.8,-0.0999999999999996,-6 -"452",1997,3,,,,,14,0,-10.3,-0.699999999999999,1 -"453",1998,3,0,6.33,6.33,0,-18,1,-5.9,-0.199999999999999,-9 -"454",1999,3,0,2.436,2.436,0,-13,1,-0.100000000000001,0.199999999999999,-7 -"455",2000,3,0,1.703,1.703,1,-7,0,5.4,1.8,-5 -"456",2001,3,0,6.529,6.529,1,-17,0,6.1,0.300000000000001,-2 -"457",2002,3,0,0.809,0.809,1,12,0,-2.1,-0.9,4 -"458",2003,3,0,0.075,0.075,1,17,0,8.2,0.699999999999999,2 -"459",2004,3,0,1.152,1.152,0,-14,1,-3.4,0.600000000000001,-3 -"460",2005,3,0,0.097,0.097,0,6,0,-3.7,1.4,-2 -"461",2006,3,0,4.687,4.687,0,16,1,-4.2,0.300000000000001,-2 -"462",2007,3,0,3.499,3.499,0,-12,1,5.8,-0.0999999999999996,-1 -"463",2008,3,0,0.762,0.762,1,-7,0,-1,-0.800000000000001,5 -"464",2009,3,0,1.476,1.476,1,-6,0,-5.3,0.300000000000001,0 -"465",2010,3,0,1.347,1.347,0,4,1,-5.3,-0.800000000000001,-1 -"466",2011,3,0,2.024,2.024,0,5,1,7.1,0.300000000000001,-7 -"467",2012,3,0,0.363,0.363,1,8,0,-2.6,-0.699999999999999,2 -"468",2013,3,0,1.823,1.823,1,-1,0,-3.6,-1.2,3 -"469",2014,3,0,0.201,0.201,1,35,1,0.799999999999997,1.2,-2 -"470",2015,3,0,0.382,0.382,1,3,0,-0.899999999999999,-0.4,3 -"471",2016,3,0,4.975,4.975,0,-6,0,1.7,-0.699999999999999,-1 -"472",2017,3,0,0.341,0.341,0,11,1,5,0.600000000000001,1 -"473",2018,3,0,10,10,0,5,1,-4.6,-2.2,-4 -"474",2019,3,0,1.034,1.034,0,-13,1,-1,1.8,0 -"475",2020,3,0,0.812,0.812,1,11,0,-3.5,2,-6 -"476",2021,3,0,5.085,5.085,0,-14,0,3.4,0.699999999999999,-4 -"477",2022,3,0,0.792,0.792,0,3,1,0.100000000000001,-1.3,2 -"478",2023,3,0,9.88,9.88,0,-16,0,-6.3,-2.6,-3 -"479",2024,3,0,0.423,0.423,1,15,1,8.90000000000001,-0.0999999999999996,1 -"480",2025,3,0,0.285,0.285,1,5,0,-0.600000000000001,1.7,-1 -"481",2026,3,0,3.08,3.08,0,-21,0,-12.9,-0.699999999999999,3 -"482",2027,3,0,0.279,0.279,0,-8,1,0.200000000000003,-1.6,-6 -"483",2028,3,0,1.254,1.254,0,-7,1,4.8,-0.4,1 -"484",2029,3,0,3.102,3.102,1,-14,0,-3.1,0.800000000000001,2 -"485",2030,3,0,0.51,0.51,0,-12,0,-2,-1.1,6 -"486",2031,3,0,4.738,4.738,0,-7,0,2.3,-0.4,-6 -"487",2032,3,0,0.879,0.879,1,14,1,-4.3,0.5,10 -"488",2033,3,0,1.181,1.181,1,-6,0,1.5,-1.4,1 -"489",2034,3,0,8.348,8.348,0,-5,0,-6.4,0,-5 -"490",2035,3,0,8.386,8.386,1,2,0,-2.8,0.399999999999999,4 -"491",2036,3,0,0.082,0.082,1,41,0,-3.8,1.9,-4 -"492",2037,3,0,0.815,0.815,1,-3,1,6.1,-1.9,5 -"493",2038,3,0,1.111,1.111,1,5,0,-2,,-2 -"494",2039,3,0,0.58,0.58,1,20,0,1.5,0,0 -"495",2040,3,0,6.025,6.025,0,-23,1,-2.8,-1.1,0 -"496",2041,3,0,0.875,0.875,1,25,0,4.4,-0.300000000000001,8 -"497",2042,3,0,0.991,0.991,1,-1,0,-1.8,-0.6,4 -"498",2043,3,0,0.003,0.003,0,-10,1,2.3,0.399999999999999,-1 -"499",2044,3,0,7.19,7.19,0,16,0,2,-1.5, -"500",2045,3,0,1.332,1.332,1,-10,1,-0.299999999999997,1.5,-5 -"501",2046,3,0,0.326,0.326,0,7,1,-0.899999999999999,-0.199999999999999,-1 -"502",2047,3,0,0.323,0.323,1,6,0,-5.2,1.5,4 -"503",2048,3,0,0.121,0.121,1,39,1,-4.3,-1.1,7 -"504",2049,3,0,5.87,5.87,0,-2,1,-3,1.4,-4 -"505",2050,3,0,1.304,1.304,1,13,0,-10.2,0.399999999999999,8 -"506",2051,3,0,10,10,0,8,1,-3.1,-0.199999999999999,-4 -"507",2052,3,0,9.275,9.275,1,-13,1,-5.1,1.2,-3 -"508",2053,3,0,1.336,1.336,0,-1,1,7.7,1,-6 -"509",2054,3,0,0.23,0.23,0,-9,1,-1.4,0.199999999999999,10 -"510",2055,3,0,0.705,0.705,1,14,1,2.4,-0.0999999999999996,-1 -"511",2056,3,0,0.838,0.838,1,5,0,1.2,1.4,-5 -"512",2057,3,0,3.203,3.203,0,-11,1,4.9,-1.5,-3 -"513",2058,3,,,,,14,0,1.3,0.300000000000001,-2 -"514",2059,3,0,1.656,1.656,0,-16,1,2.5,-1.3,4 -"515",2060,3,0,0.098,0.098,1,13,1,1.9,0.899999999999999,1 -"516",2061,3,0,8.956,8.956,0,-1,1,-3.1,-0.0999999999999996,-7 -"517",2062,3,0,0.691,0.691,1,5,0,8.09999999999999,-0.9,-8 -"518",2063,3,0,1.387,1.387,0,4,,0.399999999999999,-2,-1 -"519",2064,3,0,1.947,1.947,1,-1,0,4.2,-0.699999999999999,-2 -"520",2065,3,0,0.101,0.101,1,2,1,-0.100000000000001,1,5 -"521",2066,3,0,0.004,0.004,1,20,0,4.5,1.5,-10 -"522",2067,3,0,0.05,0.05,1,8,0,-4.3,2.2,-1 -"523",2068,3,0,0.551,0.551,1,6,0,-3.5,1,1 -"524",2069,3,0,7.662,7.662,0,-16,0,1.2,0.199999999999999,6 -"525",2070,3,0,5.242,5.242,0,3,1,-3.2,0.699999999999999,-5 -"526",2071,3,0,2.335,2.335,0,-16,0,4.5,-1,-1 -"527",2072,3,0,10,10,0,8,0,-0.399999999999999,0,1 -"528",2073,3,0,1.668,1.668,1,-11,1,2,-0.199999999999999,4 -"529",2074,3,0,0.535,0.535,0,-8,0,-4.1,0.100000000000001,-3 -"530",2075,3,0,10,10,0,0,1,1.8,-1.9,4 -"531",2076,3,0,0.122,0.122,1,25,0,3.9,0.5,5 -"532",2077,3,0,0.087,0.087,0,0,1,2,0.699999999999999, -"533",2078,3,0,0.185,0.185,1,15,1,0.200000000000003,-0.199999999999999,-4 -"534",2079,3,0,7.926,7.926,0,-11,0,-3.1,0.800000000000001,1 -"535",2080,3,0,5.344,5.344,0,-20,0,-7,0.300000000000001,0 -"536",2081,3,0,0.437,0.437,0,6,0,1.9,1.5,-4 -"537",2082,3,0,0.267,0.267,0,11,0,-0.200000000000003,-0.300000000000001,-2 -"538",2083,3,0,1.911,1.911,0,-1,0,-6.2,-1.7,2 -"539",2084,3,0,5.475,5.475,1,17,1,2.3,1.2,-10 -"540",2085,3,0,10,10,0,-7,0,-2.2,-0.800000000000001,2 -"541",2086,3,0,0.706,0.706,1,23,1,5.5,0.699999999999999,-1 -"542",2087,3,0,0.487,0.487,1,0,0,-7.9,1.5,6 -"543",2088,3,0,0.292,0.292,1,1,1,-5.1,0.5,7 -"544",2089,3,0,4.14,4.14,0,1,1,-5,-0.6,0 -"545",2090,3,0,10,10,0,-1,0,-1,-1.2,-1 -"546",2091,3,0,10,10,0,-36,0,-0.5,-0.4,-2 -"547",2092,3,0,0.682,0.682,1,20,1,6.3,0.899999999999999,8 -"548",2093,3,0,0.978,0.978,0,-29,0,3.3,1,-6 -"549",2094,3,0,7.487,7.487,0,-15,1,-0.700000000000003,-0.9,-5 -"550",2095,3,0,0.675,0.675,0,19,0,-1.9,-1.2,5 -"551",2096,3,0,0.657,0.657,1,-13,0,5.5,2.3,8 -"552",2097,3,0,0.215,0.215,0,13,0,-1.9,-3.1,0 -"553",2098,3,0,2.997,2.997,1,4,1,0.299999999999997,0.399999999999999,7 -"554",2099,3,0,6.347,6.347,1,5,0,-5.1,0.300000000000001,-2 -"555",2100,3,0,6.651,6.651,1,3,1,-3.3,-0.199999999999999,3 -"556",2101,3,0,0.063,0.063,0,9,0,-2.6,0.699999999999999,0 -"557",2102,3,0,0.144,0.144,0,-17,0,0.100000000000001,-0.0999999999999996,-4 -"558",2103,3,0,1.672,1.672,0,-7,0,-2.4,-0.5,-1 -"559",2104,3,0,10,10,0,0,1,0.5,-0.800000000000001,-3 -"560",2105,3,0,5.214,5.214,1,4,1,2.7,-0.199999999999999,5 -"561",2106,3,0,1.008,1.008,1,14,1,-0.899999999999999,0.199999999999999,7 -"562",2107,3,0,0.294,0.294,0,-22,0,-0.100000000000001,0,-1 -"563",2108,3,0,0.9,0.9,0,17,1,1.5,-0.6,-13 -"564",2109,3,0,0.835,0.835,0,12,1,-2.9,0.100000000000001,-6 -"565",2110,3,0,10,10,0,3,1,5.9,0.600000000000001,-7 -"566",2111,3,0,0.444,0.444,1,-9,1,3.4,1.7,1 -"567",2112,3,0,3.568,3.568,0,1,1,5,1.1,-5 -"568",2113,3,0,0.74,0.74,1,,0,-6,0.199999999999999,-3 -"569",2114,3,0,1.805,1.805,1,16,1,7.6,-1.3,-3 -"570",2115,3,0,10,10,0,8,0,-17.8,-0.300000000000001,-10 -"571",2116,3,0,10,10,0,-14,1,1.7,-0.199999999999999, -"572",2117,3,0,6.046,6.046,1,9,1,1,0,3 -"573",2118,3,0,0.205,0.205,1,34,0,-4.2,0.800000000000001,10 -"574",2119,3,0,5.104,5.104,0,7,1,-2.4,1.3,-2 -"575",2120,3,0,3.571,3.571,0,2,0,-2.3,-0.4,-4 -"576",2121,3,0,3.234,3.234,0,-7,1,-1,0.199999999999999,-6 -"577",2122,3,0,0.205,0.205,0,-1,1,-0.600000000000001,-1.8,-4 -"578",2123,3,0,1.381,1.381,1,15,0,7.5,0,0 -"579",2124,3,0,0.687,0.687,1,2,0,-1.8,1.1,-2 -"580",2125,3,0,7.656,7.656,0,-10,1,-2.4,-0.199999999999999,2 -"581",2126,3,0,9.883,9.883,1,-16,1,0.100000000000001,1.1,-1 -"582",2127,3,0,0.913,0.913,0,9,1,7.6,,1 -"583",2128,3,0,0.03,0.03,1,16,0,-1.8,1.5,13 -"584",2129,3,0,10,10,0,-20,1,2.6,-0.9,6 -"585",2130,3,0,0.155,0.155,0,-14,1,-2.2,0.199999999999999,-7 -"586",2131,3,0,0.132,0.132,1,-23,0,2.5,0.899999999999999,3 -"587",2132,3,0,2.766,2.766,1,-3,0,2.3,-1,-1 -"588",2133,3,0,1.3,1.3,0,-9,1,-2.2,-0.0999999999999996,-5 -"589",2134,3,0,10,10,0,-3,1,5.1,-0.5,4 -"590",2135,3,0,1.004,1.004,0,10,1,6.9,-0.5,-4 -"591",2136,3,0,1.796,1.796,0,-1,1,1.3,0.300000000000001,-9 -"592",2137,3,0,0.219,0.219,1,1,1,-4.1,-1,5 -"593",2138,3,0,6.077,6.077,1,10,0,3.9,0.199999999999999,-2 -"594",2139,3,0,1.166,1.166,0,12,1,0.600000000000001,-0.0999999999999996,6 -"595",2140,3,0,1.153,1.153,0,-2,0,-2.7,-1.8,3 -"596",2141,3,0,0.529,0.529,1,14,0,-1.7,0.399999999999999,2 -"597",2142,3,0,0.289,0.289,1,9,0,0.799999999999997,1.7,5 -"598",2143,3,0,1.474,1.474,1,10,0,-3,0.800000000000001,4 -"599",2144,3,0,2.538,2.538,0,-13,0,5.3,-0.9,3 -"600",2145,3,0,0.764,0.764,1,32,1,4.6,-0.199999999999999,2 -"601",2146,3,0,10,10,0,1,,6.3,-0.6,-6 -"602",2147,3,0,0.89,0.89,1,-9,1,3.7,0.100000000000001,4 -"603",2148,3,0,1.883,1.883,0,-3,1,8.40000000000001,-0.699999999999999,1 -"604",2149,3,0,0.316,0.316,0,17,1,1.7,0.600000000000001,0 -"605",2150,3,0,7.923,7.923,1,3,0,1.9,-0.199999999999999,-2 -"606",2151,3,0,3.787,3.787,0,-2,0,-6.2,0.300000000000001,2 -"607",2152,3,0,2.003,2.003,0,-10,1,-1.5,-0.300000000000001,6 -"608",2153,3,0,0.038,0.038,0,3,1,-4.5,-0.699999999999999,2 -"609",2154,3,0,2.035,2.035,0,16,1,2.5,-1.1,8 -"610",2155,3,0,1.756,1.756,1,-7,1,4.7,-0.199999999999999,4 -"611",2156,3,0,0.12,0.12,1,26,0,4.6,0.5,-4 -"612",2157,3,0,5.418,5.418,0,7,1,-1.1,-0.4,-3 -"613",2158,3,0,1.623,1.623,0,-7,1,-16.4,0.899999999999999,1 -"614",2159,3,0,0.277,0.277,1,-3,0,-6.4,-0.800000000000001,5 -"615",2160,3,0,9.724,9.724,0,-8,1,-3.8,0.399999999999999,-7 -"616",2161,3,0,1.188,1.188,1,18,0,3.4,-0.4,7 -"617",2162,3,0,3.436,3.436,0,-26,0,-4.5,-0.300000000000001,5 -"618",2163,3,0,10,10,0,-6,1,1.2,-1,-6 -"619",2164,3,0,10,10,0,-3,1,8.7,-1.3,-4 -"620",2165,3,0,2.909,2.909,0,-6,1,-4.3,-0.199999999999999,-14 -"621",2166,3,0,8.403,8.403,0,-16,1,3.2,-0.699999999999999,-4 -"622",2167,3,0,0.386,0.386,1,9,0,4.1,0.600000000000001,8 -"623",2168,3,0,1.053,1.053,0,-9,1,-4.3,-1.5,2 -"624",2169,3,0,0.265,0.265,0,4,0,0.299999999999997,-1.8,5 -"625",2170,3,0,9.93,9.93,0,3,1,4,-0.800000000000001,-1 -"626",2171,3,0,0.578,0.578,0,-30,0,0.799999999999997,-0.6,-15 -"627",2172,3,0,2.02,2.02,1,1,0,-6.4,-1.6,6 -"628",2173,3,0,0.074,0.074,1,-24,1,5.6,-0.4,8 -"629",2174,3,0,0.37,0.37,0,-8,0,-6.8,0.300000000000001,3 -"630",2175,3,0,0.592,0.592,0,-17,1,-3.6,-0.699999999999999,-4 -"631",2176,3,0,0.273,0.273,1,7,0,-5.9,-0.4,0 -"632",2177,3,0,8.031,8.031,0,-34,1,1.5,-1.3,4 -"633",2178,3,0,1.311,1.311,1,-9,0,-0.200000000000003,-1.2,7 -"634",2179,3,0,6.5,6.5,1,-16,1,-2.9,0.600000000000001,4 -"635",2180,3,0,1.127,1.127,0,11,1,-1.7,-0.0999999999999996,-3 -"636",2181,3,0,0.652,0.652,0,-17,0,-0.399999999999999,-0.5,-5 -"637",2182,3,0,0.938,0.938,0,-9,1,5.3,-0.699999999999999,3 -"638",2183,3,0,2.644,2.644,1,-24,0,-8.3,2.3,0 -"639",2184,3,0,10,10,0,-8,1,-1.5,0.600000000000001,-11 -"640",2185,3,0,1.17,1.17,0,0,0,7.4,0.399999999999999,-6 -"641",2186,3,0,0.204,0.204,1,16,0,2.1,1.3,3 -"642",2187,3,0,2.362,2.362,0,-14,1,0.200000000000003,-0.9,9 -"643",2188,3,0,2.482,2.482,1,-3,1,1.5,-2.9,2 -"644",2189,3,0,2.202,2.202,1,-19,0,-0.100000000000001,-0.800000000000001,6 -"645",2190,3,0,0.44,0.44,1,28,1,-1.9,0,2 -"646",2191,3,0,4.349,4.349,0,19,1,0.899999999999999,0.399999999999999,-10 -"647",2192,3,0,0.912,0.912,1,18,1,12,-0.0999999999999996,-2 -"648",2193,3,0,1.418,1.418,0,-22,1,6.2,-1.7,4 -"649",2194,3,0,4.267,4.267,0,4,1,9.5,0.800000000000001,-11 -"650",2195,3,0,1.23,1.23,1,-17,0,-0.799999999999997,1.6,2 -"651",2196,3,0,8.104,8.104,1,-31,0,-1.2,0.5,9 -"652",2197,3,0,2.709,2.709,1,6,1,-4,1.2,7 -"653",2198,3,0,6.887,6.887,1,-1,1,7.3,0.300000000000001,11 -"654",2199,3,0,1.754,1.754,1,7,0,4.1,0.100000000000001,2 -"655",2200,3,,,,,11,0,0,1.4,4 -"656",2201,3,0,2.037,2.037,0,-8,0,2.2,-1.2,0 -"657",2202,3,0,4.018,4.018,0,-4,1,-7.4,-0.300000000000001,-5 -"658",2203,3,0,1.26,1.26,1,15,1,-0.799999999999997,1.4,5 -"659",2204,3,0,0.113,0.113,1,15,0,2.4,-0.699999999999999,8 -"660",2205,3,0,10,10,0,-22,1,-10.2,-1.3,-2 -"661",2206,3,0,2.654,2.654,1,-12,0,3.5,-0.300000000000001,4 -"662",2207,3,0,0.547,0.547,0,0,0,2.5,-0.5,5 -"663",2208,3,0,1.99,1.99,1,-6,0,0.899999999999999,-0.300000000000001,8 -"664",2209,3,,,,,9,1,2.9,1.1,-5 -"665",2210,3,0,0.541,0.541,1,5,0,7.8,0.600000000000001,-6 -"666",2211,3,0,10,10,0,-3,1,-2.6,-1.8,9 -"667",2212,3,0,1.475,1.475,0,-8,1,-0.399999999999999,0.399999999999999,1 -"668",2213,3,0,10,10,0,-14,1,6.6,-3.3,1 -"669",2214,3,0,0.73,0.73,1,26,1,3.3,-0.699999999999999,2 -"670",2215,3,0,1.269,1.269,1,9,1,6.4,0.399999999999999,-1 -"671",2216,3,0,0.393,0.393,1,1,0,-1.7,-0.9,-8 -"672",2217,3,0,1.424,1.424,1,-17,0,1.5,0.600000000000001,-10 -"673",2218,3,0,0.969,0.969,1,2,0,-1.9,0.5,-1 -"674",2219,3,0,1.013,1.013,1,9,0,3.7,0.100000000000001,9 -"675",2220,3,0,5.689,5.689,0,-13,0,0,-1.7,4 -"676",2221,3,0,1.684,1.684,1,24,0,-1.7,-1.4,5 -"677",2222,3,0,1.224,1.224,1,-12,1,-4.4,0.300000000000001,-6 -"678",2223,3,0,0.562,0.562,1,12,0,-1.2,-0.300000000000001,8 -"679",2224,3,0,7.216,7.216,0,-12,0,5.3,0.100000000000001,-2 -"680",2225,3,0,9.784,9.784,1,1,1,,-0.199999999999999,4 -"681",2226,3,0,0.331,0.331,1,29,0,-3.4,0.899999999999999,2 -"682",2227,3,0,3.051,3.051,0,-1,0,0.299999999999997,1,-14 -"683",2228,3,0,1.709,1.709,0,4,0,5.1,0.100000000000001,-14 -"684",2229,3,0,2.671,2.671,0,-3,0,-0.399999999999999,-0.9,2 -"685",2230,3,0,1.494,1.494,0,-25,0,0.600000000000001,0.100000000000001,-6 -"686",2231,3,0,2.802,2.802,0,-15,0,3.3,-0.800000000000001,5 -"687",2232,3,0,1.51,1.51,1,-9,0,-11.4,1,-2 -"688",2233,3,0,10,10,0,12,0,5.1,-0.4,-15 -"689",2234,3,0,0.137,0.137,1,4,0,-6.6,0.199999999999999,8 -"690",2235,3,0,1.397,1.397,1,18,1,-3.4,-0.199999999999999,-2 -"691",2236,3,0,1.942,1.942,1,-1,1,-4.5,1.3,10 -"692",2237,3,0,10,10,0,-10,0,-2.7,-0.800000000000001,-4 -"693",2238,3,0,5.265,5.265,1,20,0,0.899999999999999,-0.800000000000001,-1 -"694",2239,3,0,10,10,0,-17,0,2.5,-0.0999999999999996,-9 -"695",2240,3,0,10,10,0,-17,1,6.5,-0.300000000000001,-5 -"696",2241,3,0,0.633,0.633,1,22,1,2.1,-0.699999999999999,5 -"697",2242,3,0,0.242,0.242,0,13,1,-1.6,-0.9,-11 -"698",2243,3,0,5.914,5.914,0,-8,0,-2.4,0.600000000000001,-6 -"699",2244,3,0,6.483,6.483,0,-11,0,0.100000000000001,1.2,-9 -"700",2245,3,0,1.791,1.791,1,17,1,3.2,0.199999999999999,2 -"701",2246,3,0,0.539,0.539,1,-9,0,-3.2,-0.300000000000001,1 -"702",2247,3,0,0.155,0.155,1,2,0,6.5,0.199999999999999,-7 -"703",2248,3,0,0.315,0.315,0,12,0,5.9,0.399999999999999,8 -"704",2249,3,0,2.735,2.735,1,-30,0,0.399999999999999,1.3,3 -"705",2250,3,0,5.044,5.044,1,-6,0,4.6,-0.699999999999999,-5 -"706",2251,3,0,5.495,5.495,0,-12,0,-0.5,-0.0999999999999996,-4 -"707",2252,3,0,1.479,1.479,0,1,1,-4.9,-0.300000000000001,-1 -"708",2253,3,0,2.689,2.689,1,-1,1,-3.3,1.5,1 -"709",2254,3,0,1.613,1.613,0,7,0,-8.4,-1,6 -"710",2255,3,0,4.281,4.281,0,-5,0,-10.1,0.100000000000001,-7 -"711",2256,3,0,0.527,0.527,1,13,1,4,0.300000000000001,11 -"712",2257,3,0,10,10,0,-8,0,2.3,0.199999999999999,4 -"713",2258,3,0,0.315,0.315,1,10,1,8.7,0.5,4 -"714",2259,3,0,9.58,9.58,0,9,1,0,,-5 -"715",2260,3,0,3.284,3.284,0,-5,1,2.3,-0.9,-2 -"716",2261,3,0,1.208,1.208,1,31,1,5.1,-0.5,1 -"717",2262,3,0,7.838,7.838,1,-12,0,-3.9,1.2,4 -"718",2263,3,0,1,1,0,0,1,-0.299999999999997,-0.699999999999999,-7 -"719",2264,3,0,1.752,1.752,0,-19,0,1.1,1.4,-2 -"720",2265,3,0,1.645,1.645,1,35,0,-0.899999999999999,0.100000000000001,-1 -"721",2266,3,0,10,10,0,9,0,3.6,-0.6,6 -"722",2267,3,0,7.589,7.589,0,-11,1,-3,-0.699999999999999,-15 -"723",2268,3,0,8.928,8.928,1,15,1,3.9,1.1,-5 -"724",2269,3,0,0.857,0.857,0,0,1,1,-0.5,-3 -"725",2270,3,0,2.256,2.256,0,5,0,-9.2,0.5,0 -"726",2271,3,0,0.902,0.902,0,-4,1,2.2,0.300000000000001,-4 -"727",2272,3,0,3.377,3.377,0,-3,1,-4.4,0.800000000000001,5 -"728",2273,3,0,9.374,9.374,1,-2,0,-3.8,-1.1,-3 -"729",2274,3,0,0.834,0.834,1,17,0,8.59999999999999,1.3,1 -"730",2275,3,0,0.402,0.402,0,,1,3.2,-0.699999999999999,0 -"731",2276,3,0,1.948,1.948,1,-2,1,-4.1,1,6 -"732",2277,3,0,0.758,0.758,1,-14,,-4.9,-0.4,1 -"733",2278,3,0,0.577,0.577,1,-11,1,-3.9,1.1,-6 -"734",2279,3,0,0.162,0.162,1,9,0,-2.1,0.5,-6 -"735",2280,3,0,1.073,1.073,1,25,1,,2.7,0 -"736",2281,3,0,0.276,0.276,1,-3,0,4.6,-1,9 -"737",2282,3,0,0.976,0.976,0,-2,1,,-1,7 -"738",2283,3,0,0.477,0.477,1,-7,0,7.9,1,-5 -"739",2284,3,0,3.998,3.998,0,-7,0,8.09999999999999,-1.1,2 -"740",2285,3,0,3.715,3.715,0,8,1,2.5,0.5,3 -"741",2286,3,0,4.609,4.609,0,-22,1,-2.2,-1.5,-1 -"742",2287,3,0,3.284,3.284,1,4,1,-1.5,0.899999999999999,5 -"743",2288,3,0,5.945,5.945,1,3,1,2.3,1.6,2 -"744",2289,3,0,1.416,1.416,1,12,1,7.6,0.899999999999999,1 -"745",2290,3,0,1.837,1.837,0,2,1,-4.2,0.899999999999999,1 -"746",2291,3,0,1.606,1.606,1,-1,0,-2.5,0.399999999999999,10 -"747",2292,3,0,0.955,0.955,1,3,0,1.4,-0.6,-1 -"748",2293,3,0,0.177,0.177,1,9,1,2.6,0.800000000000001,0 -"749",2294,3,0,3.49,3.49,0,-16,1,4,-0.199999999999999,2 -"750",2295,3,0,10,10,0,2,1,-0.700000000000003,0.100000000000001,2 -"751",2296,3,0,2.094,2.094,1,2,0,-1.4,-0.6,2 -"752",2297,3,0,9.25,9.25,0,-14,1,-3,-0.4,0 -"753",2298,3,0,0.329,0.329,0,2,0,3.3,0,2 -"754",2299,3,0,7.495,7.495,0,-7,1,4.6,-0.9,-1 -"755",2300,3,0,3.954,3.954,0,-8,1,3.2,-0.199999999999999,-2 -"756",2301,3,0,8.964,8.964,0,8,0,-5.4,-1.3,-7 -"757",2302,3,0,6.989,6.989,0,-16,1,-3.4,-0.0999999999999996,4 -"758",2303,3,0,4.109,4.109,1,10,1,0.799999999999997,2.2,-3 -"759",2304,3,0,10,10,0,,0,2.1,-2.5,-1 -"760",2305,3,0,3.34,3.34,0,12,1,-0.299999999999997,-0.6,2 -"761",2306,3,0,1.708,1.708,1,-10,0,3.8,-0.6,-4 -"762",2307,3,0,5.271,5.271,0,13,0,-0.299999999999997,-1.4,-7 -"763",2308,3,0,0.077,0.077,1,-5,0,-6.4,0.300000000000001,5 -"764",2309,3,0,2.099,2.099,0,-28,1,1,-0.199999999999999,-3 -"765",2310,3,0,4.197,4.197,0,-13,1,-2,-2,-1 -"766",2311,3,0,4.898,4.898,0,-3,0,5.7,-0.6,3 -"767",2312,3,0,0.083,0.083,1,-2,0,-1.8,-0.0999999999999996,4 -"768",2313,3,0,0.218,0.218,0,-29,0,-1.3,-0.9,-6 -"769",2314,3,0,4.515,4.515,0,-2,1,-4.8,1,0 -"770",2315,3,0,8.408,8.408,1,9,1,0.399999999999999,0.5,-5 -"771",2316,3,0,10,10,0,-14,1,-12.4,1.4,-4 -"772",2317,3,0,0.554,0.554,1,34,0,-7.8,0,2 -"773",2318,3,0,1.729,1.729,0,-8,1,-1.6,1,1 -"774",2319,3,0,0.491,0.491,1,0,0,0.299999999999997,-0.300000000000001,3 -"775",2320,3,0,2.179,2.179,0,6,0,-3.8,-2.1,-2 -"776",2321,3,0,3.364,3.364,0,3,0,-0.200000000000003,-0.9,2 -"777",2322,3,0,1.697,1.697,0,30,1,-5,-0.699999999999999,1 -"778",2323,3,0,0.049,0.049,1,3,0,-0.100000000000001,2.7,15 -"779",2324,3,0,0.233,0.233,0,9,0,-3.3,-0.199999999999999,-5 -"780",2325,3,0,0.47,0.47,1,31,0,-1.2,-1.2,4 -"781",2326,3,0,0.106,0.106,0,21,,-4.6,-0.300000000000001,8 -"782",2327,3,0,1.742,1.742,1,-4,1,-1.9,-0.199999999999999,3 -"783",2328,3,0,4.256,4.256,0,-19,1,-1.7,-0.9,-8 -"784",2329,3,0,10,10,0,-10,1,-1.4,-0.300000000000001,3 -"785",2330,3,0,0.249,0.249,1,22,1,6.2,1,-3 -"786",2331,3,0,3.152,3.152,0,-12,0,-3.9,0,-1 -"787",2332,3,0,1.361,1.361,1,6,0,-0.100000000000001,0,-3 -"788",2333,3,0,0.569,0.569,1,21,0,-1,-2.1,7 -"789",2334,3,0,4.356,4.356,0,-20,0,-5.6,0.100000000000001,-4 -"790",2335,3,0,0.682,0.682,1,18,1,4.1,1.4,0 -"791",2336,3,0,0.569,0.569,1,-15,1,5.6,0.5,-1 -"792",2337,3,0,10,10,0,-11,0,4.4,-1.1,2 -"793",2338,3,0,2.339,2.339,0,-21,0,4,0.699999999999999,1 -"794",2339,3,0,0.339,0.339,1,0,0,-1.9,-0.199999999999999,-5 -"795",2340,3,0,0.771,0.771,1,31,1,5.4,-1.3,-1 -"796",2341,3,0,1.31,1.31,1,0,0,1.7,-0.300000000000001,7 -"797",2342,3,0,10,10,0,8,1,-2.6,-0.9,3 -"798",2343,3,0,0.426,0.426,1,14,1,0.399999999999999,-0.199999999999999,-1 -"799",2344,3,0,0.208,0.208,1,16,0,8,1.2,1 -"800",2345,3,0,1.756,1.756,0,-16,1,-5.5,0.600000000000001,2 -"801",2346,3,0,5.086,5.086,0,22,0,-5,-0.5,-7 -"802",2347,3,0,0.58,0.58,1,-20,1,-7.2,1.5,3 -"803",2348,3,0,9.583,9.583,0,10,1,-2.8,-1.6,-4 -"804",2349,3,0,0.514,0.514,1,-1,1,2.6,0.800000000000001,1 -"805",2350,3,0,0.109,0.109,0,-4,1,3.4,0.899999999999999,-6 -"806",2351,3,0,1.07,1.07,1,6,0,-1.1,-0.199999999999999,-6 -"807",2352,3,0,1.604,1.604,1,8,0,-2.2,-0.0999999999999996,6 -"808",2353,3,0,0.307,0.307,1,11,1,3.8,1.1,11 -"809",2354,3,0,4.096,4.096,1,-12,0,-8.9,-0.300000000000001,-7 -"810",2355,3,0,8.352,8.352,0,-18,0,5.3,-0.199999999999999,4 -"811",2356,3,0,0.02,0.02,0,12,1,-7.7,1.2,4 -"812",2357,3,0,2.496,2.496,1,-6,0,1.4,-0.9,-7 -"813",2358,3,0,0.681,0.681,0,-5,0,-6.9,0.399999999999999,-1 -"814",2359,3,0,6.82,6.82,0,5,1,3,0.800000000000001,-6 -"815",2360,3,0,1.672,1.672,0,-4,0,-1.4,-2,-3 -"816",2361,3,0,4.152,4.152,0,-11,1,5.5,1.5,-5 -"817",2362,3,0,0.633,0.633,1,12,1,-0.200000000000003,0.199999999999999,3 -"818",2363,3,0,6.298,6.298,0,-9,0,3.2,-0.699999999999999,7 -"819",2364,3,0,0.697,0.697,1,6,0,-3.8,0,-5 -"820",2365,3,0,4.815,4.815,0,-2,0,7.2,0,-6 -"821",2366,3,0,2.631,2.631,1,12,0,-1.9,0.199999999999999,-7 -"822",2367,3,0,4.174,4.174,0,-11,1,1.8,-0.699999999999999,-5 -"823",2368,3,0,1.604,1.604,0,,1,-5.3,1,-4 -"824",2369,3,0,10,10,0,12,1,-0.5,-0.6,-3 -"825",2370,3,0,0.054,0.054,1,8,1,-4.8,2.1,6 -"826",2371,3,0,0.785,0.785,1,-14,1,-7.4,,-8 -"827",2372,3,0,0.073,0.073,1,22,1,0.899999999999999,1.2,3 -"828",2373,3,0,10,10,0,9,1,3.4,-0.4,-1 -"829",2374,3,0,0.397,0.397,0,-5,1,1,-0.699999999999999,1 -"830",2375,3,0,10,10,0,7,0,5.1,-2.1,-3 -"831",2376,3,0,6.259,6.259,1,-9,1,1.2,-0.300000000000001,-2 -"832",2377,3,0,0.022,0.022,1,7,0,7.9,0.100000000000001,7 -"833",2378,3,0,1.213,1.213,0,-1,0,-3.4,-0.6,5 -"834",2379,3,0,0.636,0.636,1,16,1,6.5,-0.699999999999999,-9 -"835",2380,3,0,5.208,5.208,0,-12,0,-2.2,-0.9,-8 -"836",2381,3,0,6.542,6.542,0,-21,1,-0.200000000000003,1.3,4 -"837",2382,3,0,0.467,0.467,1,7,0,-6.3,-1.4,-8 -"838",2383,3,0,0.66,0.66,1,31,1,-2.2,1,-2 -"839",2384,3,0,0.016,0.016,1,-1,1,-2.4,2,0 -"840",2385,3,0,2.594,2.594,1,0,0,3.4,0.899999999999999,2 -"841",2386,3,0,9.456,9.456,0,-19,0,-3.9,-0.5,-3 -"842",2387,3,0,0.684,0.684,1,-27,1,-3,0.5,14 -"843",2388,3,0,10,10,0,-35,1,3.6,-1,6 -"844",2389,3,0,0.144,0.144,1,15,0,4.8,0.399999999999999,6 -"845",2390,3,0,0.553,0.553,1,-17,0,1.1,-0.300000000000001,-1 -"846",2391,3,0,6.254,6.254,0,12,0,-1.1,-1.5,-3 -"847",2392,3,0,0.25,0.25,1,-19,1,0,-1.1,3 -"848",2393,3,0,0.03,0.03,1,8,1,-1,0.199999999999999,2 -"849",2394,3,0,0.816,0.816,0,-5,1,-3.1,-1.3,-4 -"850",2395,3,0,0.422,0.422,1,4,0,-0.899999999999999,-0.199999999999999,10 -"851",2396,3,0,5.715,5.715,0,-10,0,0.600000000000001,0.399999999999999,-3 -"852",2397,3,0,0.032,0.032,1,17,0,6.1,0.300000000000001,-3 -"853",2398,3,,,,,-23,1,1.8,-0.0999999999999996,-1 -"854",2399,3,0,0.643,0.643,1,5,1,1.2,0.699999999999999,2 -"855",2400,3,0,6.203,6.203,1,-6,1,1.4,-1.8,4 -"856",2401,3,0,1.072,1.072,1,10,1,6.8,0.300000000000001,2 -"857",2402,3,0,2.819,2.819,1,-11,1,3.4,0.800000000000001,3 -"858",2403,3,0,1.05,1.05,1,7,1,8.40000000000001,0.100000000000001,10 -"859",2404,3,0,1.506,1.506,1,-8,0,-2.1,-1.3,2 -"860",2405,3,0,0.808,0.808,0,7,1,3.2,-1.6,4 -"861",2406,3,0,10,10,0,-14,1,1.1,-0.6,2 -"862",2407,3,0,0.668,0.668,1,9,0,2.8,0.600000000000001,-7 -"863",2408,3,0,0.309,0.309,1,-24,1,-2.9,-1.2,-2 -"864",2409,3,0,0.123,0.123,0,27,1,5.4,0.100000000000001,1 -"865",2410,3,0,0.693,0.693,0,9,0,-2.7,0.5,4 -"866",2411,3,0,2.921,2.921,0,0,1,-3.5,-0.0999999999999996,1 -"867",2412,3,0,0.073,0.073,1,18,0,3.1,1,13 -"868",2413,3,0,6.991,6.991,1,-2,1,6.2,1.3,-1 -"869",2414,3,0,6.079,6.079,1,5,1,3,0.199999999999999,1 -"870",2415,3,0,10,10,0,2,1,-5.9,-0.199999999999999,-3 -"871",2416,3,0,1.996,1.996,0,3,1,0.100000000000001,-0.5,-2 -"872",2417,3,0,3.912,3.912,0,25,1,-7.1,-1.6,-4 -"873",2418,3,0,2.377,2.377,1,-16,1,-6,-0.9,-2 -"874",2419,3,0,0.038,0.038,0,-6,1,0.600000000000001,0.800000000000001,-5 -"875",2420,3,0,2.399,2.399,1,15,0,-5.6,1.7,-6 -"876",2421,3,0,7.963,7.963,0,-5,1,1.8,0.100000000000001,3 -"877",2422,3,0,0.262,0.262,1,-4,0,-2.7,-1.2,3 -"878",2423,3,0,0.04,0.04,1,,0,-0.299999999999997,0.100000000000001,-2 -"879",2424,3,0,4.501,4.501,0,-27,0,1.8,0.800000000000001,1 -"880",2425,3,0,4.333,4.333,0,7,1,-1.1,-0.9,1 -"881",2426,3,0,1.34,1.34,1,4,0,-1.4,-0.699999999999999,7 -"882",2427,3,0,2.554,2.554,1,-1,0,-4.7,-2.3,-1 -"883",2428,3,,,,,-20,1,3.1,0.899999999999999,-2 -"884",2429,3,0,8.33,8.33,1,-14,1,7,-0.0999999999999996,-1 -"885",2430,3,0,8.416,8.416,0,-26,0,0.100000000000001,-0.4,6 -"886",2431,3,0,10,10,0,-25,1,-4.4,0.399999999999999,-2 -"887",2432,3,0,1.136,1.136,1,31,1,-1.2,-0.800000000000001,0 -"888",2433,3,0,0.914,0.914,1,0,0,4.1,1.2,4 -"889",2434,3,0,1.772,1.772,0,-1,1,-2.1,-0.6,-1 -"890",2435,3,0,2.027,2.027,0,-10,1,-7.2,0,1 -"891",2436,3,0,0.586,0.586,0,0,0,-1.6,0,2 -"892",2437,3,0,2.422,2.422,0,-6,1,-4.2,1.2,-1 -"893",2438,3,0,0.592,0.592,1,10,1,5.1,0.300000000000001,2 -"894",2439,3,0,5.241,5.241,1,13,1,0,0.100000000000001,3 -"895",2440,3,0,0.795,0.795,0,10,1,4.9,0,2 -"896",2441,3,0,0.434,0.434,1,28,1,-3.1,1.3,-3 -"897",2442,3,0,1.497,1.497,1,-5,0,1.9,-0.6,-2 -"898",2443,3,,,,,10,0,0.799999999999997,-0.800000000000001,1 -"899",2444,3,0,0.242,0.242,1,9,1,3.2,1.5,1 -"900",2445,3,0,9.393,9.393,0,-11,1,-5.1,-0.5,1 -"901",2446,3,0,6.951,6.951,0,1,0,-3.2,0,-1 -"902",2447,3,0,5.637,5.637,0,8,1,1.4,-0.300000000000001,-2 -"903",2448,3,0,1.072,1.072,1,24,1,-2.1,0.699999999999999,10 -"904",2449,3,0,10,10,0,-12,1,-6.2,0,-4 -"905",2450,3,0,0.02,0.02,1,14,1,-3.7,-0.5,3 -"906",2451,3,0,6.134,6.134,0,-8,1,-0.299999999999997,-0.699999999999999,-1 -"907",2452,3,0,5.386,5.386,0,1,1,-0.799999999999997,0.399999999999999,-9 -"908",2453,3,0,0.195,0.195,0,-28,0,-1.5,-1.3,0 -"909",2454,3,0,10,10,0,-19,1,-1.2,0.100000000000001,-6 -"910",2455,3,0,0.608,0.608,1,-38,0,6,0.5,-5 -"911",2456,3,0,2.925,2.925,0,-3,0,3.4,-0.199999999999999,3 -"912",2457,3,0,2.244,2.244,0,-3,1,-6,0.699999999999999,-8 -"913",2458,3,0,0.084,0.084,1,3,1,6.3,-1.2,7 -"914",2459,3,0,6.705,6.705,0,-3,1,-1.7,0.199999999999999,3 -"915",2460,3,0,0.511,0.511,0,11,1,-7.2,-0.699999999999999,2 -"916",2461,3,0,0.788,0.788,0,5,0,2.8,-1.1,-6 -"917",2462,3,0,2.59,2.59,0,5,1,5.4,-0.6,7 -"918",2463,3,0,0.532,0.532,1,7,1,1.7,-0.4,-1 -"919",2464,3,0,0.355,0.355,0,-10,0,3.9,0.699999999999999,0 -"920",2465,3,0,9.196,9.196,1,-1,1,2.9,1.2,0 -"921",2466,3,0,1.865,1.865,1,12,0,1.9,0,-2 -"922",2467,3,0,3.861,3.861,0,-25,0,-4.8,-1,-10 -"923",2468,3,0,10,10,0,11,1,3.5,0,-8 -"924",2469,3,0,1.548,1.548,0,-17,1,-5.3,-0.6,-4 -"925",2470,3,0,1.138,1.138,0,-8,1,-4.8,-0.199999999999999,-6 -"926",2471,3,0,0.933,0.933,0,-20,0,-1.2,0.300000000000001,-11 -"927",2472,3,0,1.566,1.566,1,-2,1,3.5,-0.5,8 -"928",2473,3,0,10,10,0,0,1,,0.399999999999999,-6 -"929",2474,3,0,3.7,3.7,0,-12,0,-3,0.600000000000001,1 -"930",2475,3,0,1.002,1.002,0,-15,0,-8.5,-1.8,-1 -"931",2476,3,0,1.462,1.462,0,-20,1,-1.8,1.2,-4 -"932",2477,3,0,1.669,1.669,0,-43,1,-0.600000000000001,,-1 -"933",2478,3,0,0.913,0.913,1,15,1,-3.9,-0.199999999999999,4 -"934",2479,3,0,0.584,0.584,1,9,1,-1.7,0.300000000000001,-2 -"935",2480,3,0,7.854,7.854,1,-16,1,-1.4,0,-1 -"936",2481,3,0,7.435,7.435,0,-14,1,1,0.600000000000001,-1 -"937",2482,3,0,0.969,0.969,1,15,1,-5.7,2,-8 -"938",2483,3,0,2.368,2.368,0,14,1,2.9,-0.199999999999999,3 -"939",2484,3,0,1.988,1.988,0,0,1,-1.5,0.899999999999999,1 -"940",2485,3,0,2.164,2.164,1,-5,1,2.3,0.699999999999999,-5 -"941",2486,3,0,0.99,0.99,0,-27,1,2.7,1.8,6 -"942",2487,3,0,4.074,4.074,1,-3,1,-0.5,0,-6 -"943",2488,3,0,0.617,0.617,1,-6,1,2.7,1,-1 -"944",2489,3,0,1.718,1.718,1,12,0,-7.1,0.300000000000001,-8 -"945",2490,3,0,0.725,0.725,1,18,1,-1.7,0.100000000000001,-6 -"946",2491,3,0,1.979,1.979,1,6,1,-8.9,-1.3,-2 -"947",2492,3,0,6.068,6.068,0,6,1,-7,-0.5,1 -"948",2493,3,0,0.328,0.328,1,19,0,-2.9,1.2,3 -"949",2494,3,0,1.773,1.773,1,-7,0,5.3,-0.699999999999999,4 -"950",2495,3,0,0.807,0.807,0,3,1,-2.6,-0.5,-3 -"951",2496,3,0,0.148,0.148,1,2,0,-0.799999999999997,-1.3,-5 -"952",2497,3,0,1.881,1.881,1,-13,1,5.9,0.800000000000001,-2 -"953",2498,3,0,1.67,1.67,0,6,1,13.6,-0.199999999999999,-8 -"954",2499,3,0,2.885,2.885,1,-15,0,2.2,1.3,1 -"955",2500,3,0,7.188,7.188,0,7,1,-0.5,0.800000000000001,-12 -"956",2501,3,0,1.87,1.87,1,3,1,-3.3,0.699999999999999,-5 -"957",2502,3,0,0.799,0.799,0,3,1,-7.9,1,-4 -"958",2503,3,0,0.691,0.691,0,-5,0,1.7,-1,-3 -"959",2504,3,0,7.673,7.673,1,-9,0,4.6,0.600000000000001,-4 -"960",2505,3,0,9.219,9.219,0,-25,1,2.1,-2.1,-3 -"961",2506,3,0,10,10,0,7,0,4.4,-0.800000000000001,4 -"962",2507,3,0,10,10,0,-16,0,5.7,0.5,-1 -"963",2508,3,0,1.72,1.72,1,3,1,5.7,0.600000000000001,4 -"964",2509,3,0,1.962,1.962,0,-9,1,-5.9,-0.699999999999999,-8 -"965",2510,3,0,0.072,0.072,1,14,0,9.2,0.100000000000001,7 -"966",2511,3,0,1.785,1.785,0,23,0,-3.9,-0.9,-3 -"967",2512,3,0,8.572,8.572,1,0,1,5.5,0.5,-7 -"968",2513,3,0,0.905,0.905,1,24,0,1.4,-0.699999999999999,4 -"969",2514,3,0,0.088,0.088,0,-18,0,-13.7,0,-8 -"970",2515,3,0,1.351,1.351,1,16,1,3.9,-0.6,-3 -"971",2516,3,0,1.187,1.187,1,7,1,-1.1,-0.4,7 -"972",2517,3,0,1.76,1.76,1,-8,1,2.4,0.199999999999999,1 -"973",2518,3,0,10,10,0,-24,1,-7.6,0,-8 -"974",2519,3,0,0.082,0.082,1,0,1,-3.7,0.699999999999999,-8 -"975",2520,3,0,1.88,1.88,1,24,1,-2.1,-0.300000000000001,0 -"976",2521,3,0,1.652,1.652,0,-13,1,0,0.800000000000001,4 -"977",2522,3,0,1.313,1.313,0,1,1,0.399999999999999,-2.9,3 -"978",2523,3,0,1.415,1.415,1,-6,1,-1.8,-0.9,-1 -"979",2524,3,0,0.604,0.604,1,6,0,8.2,0.399999999999999,-7 -"980",2525,3,0,0.785,0.785,1,28,1,-1.7,0.300000000000001,10 -"981",2526,3,0,2.614,2.614,1,-7,0,-7.8,1.9,-6 -"982",2527,3,0,6.441,6.441,0,-22,1,2.3,-2.4,-9 -"983",2528,3,0,8.104,8.104,1,24,1,-1.4,-0.5,-6 -"984",2529,3,0,2.1,2.1,1,2,0,-0.399999999999999,0.199999999999999,0 -"985",2530,3,0,3.161,3.161,0,-16,0,-0.799999999999997,-1.5,-1 -"986",2531,3,0,0.493,0.493,1,2,0,4.2,-0.0999999999999996,6 -"987",2532,3,0,0.122,0.122,1,,0,5.6,0.899999999999999,-3 -"988",2533,3,0,10,10,0,-9,0,-4.1,0,-8 -"989",2534,3,0,0.509,0.509,1,9,1,9,-0.6,8 -"990",2535,3,0,1.445,1.445,1,26,1,1.6,-0.0999999999999996,2 -"991",2536,3,0,4.478,4.478,0,8,1,2.7,0.699999999999999,2 -"992",2537,3,0,10,10,0,-10,1,0.899999999999999,-1.4,-6 -"993",2538,3,0,1.914,1.914,1,-9,0,3.4,-0.4,-6 -"994",2539,3,0,0.739,0.739,1,10,1,,1.8,7 -"995",2540,3,0,1.73,1.73,1,-16,0,-0.899999999999999,0.100000000000001,-1 -"996",2541,3,0,0.549,0.549,1,-8,0,6.3,1.3,5 -"997",2542,3,0,4.268,4.268,0,-1,1,2.8,0.600000000000001,0 -"998",2543,3,0,2.34,2.34,0,2,1,8.2,0.199999999999999,2 -"999",2544,3,0,0.357,0.357,1,9,0,-1.6,-0.800000000000001,-3 -"1000",2545,3,0,1.086,1.086,1,-14,0,-1.9,0.699999999999999,0 -"1001",2546,3,0,0.268,0.268,1,10,1,-5.4,-0.5,0 -"1002",2547,3,0,6.15,6.15,1,14,0,1.3,1.1,-5 -"1003",2548,3,0,0.422,0.422,1,11,0,-2.9,-0.5,-2 -"1004",2549,3,0,8.598,8.598,1,-8,0,-0.600000000000001,-0.300000000000001,1 -"1005",2550,3,0,7.719,7.719,1,13,0,5.9,-2,1 -"1006",2551,3,0,0.504,0.504,0,6,1,-7.6,0.800000000000001,4 -"1007",2552,3,0,5.871,5.871,1,-5,1,-7.4,2,0 -"1008",2553,3,0,1.075,1.075,0,-25,0,8.90000000000001,0.300000000000001,-2 -"1009",2554,3,0,2.373,2.373,1,-30,0,4.7,1.1,3 -"1010",2555,3,0,0.352,0.352,1,15,0,8.59999999999999,1.7,-1 -"1011",2556,3,0,6.717,6.717,1,2,1,-5.7,0,-2 -"1012",2557,3,0,1.039,1.039,1,18,1,-7.5,1,-4 -"1013",2558,3,0,10,10,0,6,1,-2.6,0.5,-8 -"1014",2559,3,0,0.554,0.554,1,18,0,8.90000000000001,0.300000000000001,-2 -"1015",2560,3,0,1.924,1.924,1,-6,0,-7.6,0.100000000000001,1 -"1016",2561,3,0,0.961,0.961,1,-3,0,0,0.5,6 -"1017",2562,3,0,1.469,1.469,0,7,1,-4.2,0.699999999999999,5 -"1018",2563,3,0,8.671,8.671,0,-6,1,0.299999999999997,0,-6 -"1019",2564,3,0,1.43,1.43,0,-17,1,-1.5,-1.4,3 -"1020",2565,3,0,6.161,6.161,0,12,0,-7.6,-1.4,-2 -"1021",2566,3,0,0.779,0.779,1,14,1,2.3,1.1,3 -"1022",2567,3,0,10,10,0,0,0,-1.6,-1.4,-6 -"1023",2568,3,0,1.974,1.974,1,8,1,2.9,-0.6,7 -"1024",2569,3,0,0.053,0.053,0,21,0,-2.4,-0.5,0 -"1025",2570,3,0,1.579,1.579,0,-2,1,-1.8,-1.2,-10 -"1026",2571,3,0,2.09,2.09,0,,1,3.2,-0.300000000000001,1 -"1027",2572,3,0,1.193,1.193,0,2,1,6.3,0.199999999999999,-8 -"1028",2573,3,0,1.691,1.691,0,12,1,-0.600000000000001,-0.699999999999999,3 -"1029",2574,3,0,3.494,3.494,0,-18,1,-3.6,0.300000000000001,3 -"1030",2575,3,0,1.48,1.48,0,-5,1,3.6,0.300000000000001,3 -"1031",2576,3,0,2.275,2.275,1,0,0,-6.2,0.300000000000001,4 -"1032",2577,3,0,1.706,1.706,1,-4,0,5.5,0.300000000000001,4 -"1033",2578,3,0,10,10,0,-19,1,1.4,0.600000000000001,-6 -"1034",2579,3,0,4.431,4.431,0,24,1,0.799999999999997,0.300000000000001,-5 -"1035",2580,3,0,0.226,0.226,1,-14,,2.9,-0.0999999999999996,5 -"1036",2581,3,0,1.778,1.778,1,,1,-2.9,-1,9 -"1037",2582,3,0,3.359,3.359,0,11,1,8,0.699999999999999,1 -"1038",2583,3,0,0.027,0.027,0,-3,0,,1,4 -"1039",2584,3,0,0.255,0.255,1,7,0,1.1,2.1,4 -"1040",2585,3,0,7.133,7.133,0,14,1,6.3,-0.300000000000001,-4 -"1041",2586,3,0,1.42,1.42,0,-10,0,-2.7,-0.9,3 -"1042",2587,3,0,1.202,1.202,0,-28,1,1.8,0.300000000000001,4 -"1043",2588,3,0,0.654,0.654,1,20,1,1.8,0.399999999999999,5 -"1044",2589,3,0,2.119,2.119,0,-11,1,2.2,0.399999999999999,-1 -"1045",2590,3,0,1.126,1.126,1,15,1,-0.5,-1.3,4 -"1046",2591,3,0,5.276,5.276,0,-20,0,2.6,0.5,0 -"1047",2592,3,0,0.998,0.998,1,4,1,4.3,-2.1,6 -"1048",2593,3,0,0.398,0.398,0,0,0,-6.4,-0.5,2 -"1049",2594,3,0,0.159,0.159,1,0,1,0,-0.300000000000001,6 -"1050",2595,3,0,10,10,0,-24,0,-3.3,-0.4,2 -"1051",2596,3,0,6.412,6.412,0,23,1,0.5,-0.9,-4 -"1052",2597,3,0,4.493,4.493,0,2,1,-2.2,-1,1 -"1053",2598,3,0,1.12,1.12,0,-2,0,1.5,,-2 -"1054",2599,3,0,0.576,0.576,0,-1,1,-5.6,-0.5,0 -"1055",2600,3,0,0.702,0.702,1,26,1,-2.9,0.100000000000001,5 -"1056",2601,3,0,8.42,8.42,0,-18,0,0,-1.5,7 -"1057",2602,3,0,1.838,1.838,1,1,0,0.600000000000001,1.1,7 -"1058",2603,3,0,2.588,2.588,0,0,0,-4.8,-1.5,-2 -"1059",2604,3,0,5.576,5.576,0,-11,0,0.899999999999999,-0.5,3 -"1060",2605,3,0,2.863,2.863,1,-20,1,-0.799999999999997,0.600000000000001,-2 -"1061",2606,3,0,8.6,8.6,0,-1,1,0.799999999999997,0.300000000000001,3 -"1062",2607,3,0,4.849,4.849,0,-4,1,-6.5,-0.6,3 -"1063",2608,3,0,1.712,1.712,0,-14,0,-5.8,0.699999999999999,-2 -"1064",2609,3,0,8.917,8.917,1,-22,0,-0.399999999999999,0.300000000000001,-2 -"1065",2610,3,0,1.018,1.018,0,16,0,1.5,0.199999999999999,3 -"1066",2611,3,0,2.134,2.134,0,-9,1,-1.1,-1,-4 -"1067",2612,3,0,0.173,0.173,1,23,0,-10,-0.6,-4 -"1068",2613,3,0,1.541,1.541,1,7,1,3.1,1.2,-1 -"1069",2614,3,0,0.119,0.119,1,-10,1,-4.2,3.3,6 -"1070",2615,3,0,0.494,0.494,1,23,1,1.7,1.4,-1 -"1071",2616,3,0,6.537,6.537,0,-3,1,2.8,-1,0 -"1072",2617,3,0,2.343,2.343,1,23,0,3.5,-1.6,8 -"1073",2618,3,0,0.066,0.066,1,2,1,-3.7,0.300000000000001,8 -"1074",2619,3,0,0.91,0.91,1,-15,0,-2.4,1.3,-1 -"1075",2620,3,0,6.227,6.227,0,21,1,11.3,0.300000000000001,-15 -"1076",2621,3,0,0.039,0.039,1,25,0,-1.1,-0.5,1 -"1077",2622,3,0,0.151,0.151,1,46,0,0.299999999999997,1,5 -"1078",2623,3,0,2.423,2.423,1,-6,0,2.3,-0.800000000000001,6 -"1079",2624,3,0,1.894,1.894,1,-5,1,-2.8,-1.5,0 -"1080",2625,3,0,1.008,1.008,1,5,1,-6.6,-0.699999999999999,1 -"1081",2626,3,0,0.063,0.063,1,23,0,2.4,-0.5,7 -"1082",2627,3,0,0.902,0.902,1,9,0,-0.700000000000003,-0.0999999999999996,0 -"1083",2628,3,0,0.041,0.041,1,30,0,-6.5,2,10 -"1084",2629,3,0,10,10,0,12,1,-0.5,-1.5,-1 -"1085",2630,3,0,0.825,0.825,1,-12,0,4,-1.1,0 -"1086",2631,3,0,0.8,0.8,1,6,1,-5.2,-0.5,-1 -"1087",2632,3,0,0.731,0.731,1,-9,0,0.399999999999999,-0.4,-1 -"1088",2633,3,0,0.575,0.575,1,-4,0,6.4,-1,-2 -"1089",2634,3,0,1.789,1.789,1,-17,1,0.5,0.399999999999999,11 -"1090",2635,3,0,10,10,0,-9,1,0.299999999999997,-0.5,-4 -"1091",2636,3,0,0.733,0.733,1,-14,0,1.8,0.399999999999999,9 -"1092",2637,3,0,0.406,0.406,0,-14,0,-2.5,0.600000000000001,8 -"1093",2638,3,0,1.547,1.547,0,-27,1,-3.7,-0.0999999999999996,-7 -"1094",2639,3,0,0.02,0.02,1,10,0,-3.6,0.199999999999999,4 -"1095",2640,3,0,10,10,0,-2,1,-0.600000000000001,-1.3,1 -"1096",2641,3,0,0.346,0.346,0,1,0,7.8,-0.6,-6 -"1097",2642,3,0,10,10,0,-12,1,3.7,0,-14 -"1098",2643,3,0,0.763,0.763,1,5,0,1.7,-0.0999999999999996,3 -"1099",2644,3,0,0.656,0.656,1,12,0,-3.1,0.199999999999999,4 -"1100",2645,3,0,6.359,6.359,0,-18,0,2.1,-0.4,-1 -"1101",2646,3,0,1.255,1.255,0,-21,1,-3.3,-0.0999999999999996,-1 -"1102",2647,3,0,6.403,6.403,0,-16,0,2.9,0.699999999999999,3 -"1103",2648,3,0,0.055,0.055,1,37,0,-6,0.600000000000001,1 -"1104",2649,3,0,0.183,0.183,0,3,0,10.6,0,-2 -"1105",2650,3,0,1.426,1.426,1,17,1,-1.3,0.199999999999999,-4 -"1106",2651,3,0,0.48,0.48,1,-8,0,7.6,1.3,11 -"1107",2652,3,0,1.987,1.987,1,-3,0,-6.6,,-4 -"1108",2653,3,0,5.793,5.793,0,3,1,-7.7,0,2 -"1109",2654,3,0,3.589,3.589,0,-2,0,0.399999999999999,-1.3,-7 -"1110",2655,3,0,0.671,0.671,1,46,1,-3.7,0,6 -"1111",2656,3,0,0.122,0.122,1,24,0,-1.1,-0.6,-1 -"1112",2657,3,0,10,10,0,-37,1,3.8,-0.199999999999999,-8 -"1113",2658,3,0,2.723,2.723,0,3,1,-4.4,0.5,-1 -"1114",2659,3,0,10,10,0,-29,0,-4.5,-1.8,-3 -"1115",2660,3,0,10,10,0,-1,0,-3.4,-1.9,6 -"1116",2661,3,0,0.441,0.441,1,21,0,1.9,-2,11 -"1117",2662,3,,,,,-23,0,6.4,0.600000000000001,2 -"1118",2663,3,0,0.732,0.732,1,21,1,-3.4,-0.4,1 -"1119",2664,3,0,10,10,0,-9,0,2.7,,-8 -"1120",2665,3,0,6.003,6.003,0,-10,1,-2.5,0.199999999999999,-4 -"1121",2666,3,0,10,10,0,19,0,0.799999999999997,-1.2, -"1122",2667,3,0,0.319,0.319,0,29,1,-2,0.699999999999999,1 -"1123",2668,3,0,1.023,1.023,1,1,0,-1.3,0.199999999999999,1 -"1124",2669,3,0,1.666,1.666,1,-4,0,1.4,0.300000000000001,4 -"1125",2670,3,0,0.191,0.191,1,-24,0,10.1,1.5,-1 -"1126",2671,3,0,0.11,0.11,0,6,1,2.1,-0.0999999999999996,2 -"1127",2672,3,0,0.928,0.928,1,11,1,4.9,0.800000000000001,-7 -"1128",2673,3,0,0.427,0.427,1,9,1,0.700000000000003,1.2,-9 -"1129",2674,3,0,0.468,0.468,1,33,0,3.3,-0.0999999999999996,0 -"1130",2675,3,0,10,10,0,4,0,-4.3,-1.4,-8 -"1131",2676,3,0,10,10,0,-2,0,-4.4,,-3 -"1132",2677,3,0,0.075,0.075,1,25,1,-5.5,-1.7,-12 -"1133",2678,3,0,0.837,0.837,1,-13,0,1.4,0.100000000000001,-2 -"1134",2679,3,0,8.687,8.687,0,3,1,-5,1.3,-2 -"1135",2680,3,0,1.731,1.731,0,-8,0,11.8,-0.5,3 -"1136",2681,3,0,1.531,1.531,1,16,1,-6,-1.3,0 -"1137",2682,3,0,1.399,1.399,1,-14,0,-3,-0.199999999999999,9 -"1138",2683,3,0,0.338,0.338,0,-31,1,-5.5,1.3,-1 -"1139",2684,3,0,1.791,1.791,1,-18,0,-4.3,0.199999999999999,3 -"1140",2685,3,0,1.051,1.051,1,-1,0,6.2,-0.0999999999999996,6 -"1141",2686,3,0,1.991,1.991,1,1,0,0.799999999999997,0.5,1 -"1142",2687,3,0,6.728,6.728,0,-6,0,-0.399999999999999,-1,-5 -"1143",2688,3,0,1.587,1.587,1,2,1,0.799999999999997,-0.699999999999999,-8 -"1144",2689,3,0,5.995,5.995,0,-23,1,-1.5,0.800000000000001,1 -"1145",2690,3,0,1.646,1.646,1,12,0,0.700000000000003,-0.300000000000001,7 -"1146",2691,3,0,0.812,0.812,1,12,1,-5.8,1.9,2 -"1147",2692,3,0,0.979,0.979,1,2,0,4.5,0,-5 -"1148",2693,3,0,0.536,0.536,1,-18,1,2.8,1.3, -"1149",2694,3,0,4.143,4.143,0,-10,0,3.7,0,3 -"1150",2695,3,0,10,10,0,-10,0,3.2,-0.5,0 -"1151",2696,3,0,5.91,5.91,0,5,1,-2.7,-1,1 -"1152",2697,3,0,2.471,2.471,0,10,0,-2.3,-1,0 -"1153",2698,3,0,0.289,0.289,0,-15,0,1.8,-1.1,-3 -"1154",2699,3,0,10,10,0,-23,0,-3.7,1.2,2 -"1155",2700,3,0,9.431,9.431,0,8,1,-1.3,-0.9,-1 -"1156",2701,3,0,0.276,0.276,1,-10,0,1.4,2.3,7 -"1157",2702,3,0,0.54,0.54,1,17,1,3.4,1.2,3 -"1158",2703,3,0,10,10,0,5,1,5.6,-0.4,-6 -"1159",2704,3,0,0.83,0.83,1,-7,0,2.8,0.199999999999999,1 -"1160",2705,3,0,3.981,3.981,0,-18,1,3.8,-1.1,3 -"1161",2706,3,0,2.364,2.364,0,-9,0,2.4,0.199999999999999,-2 -"1162",2707,3,0,0.355,0.355,1,25,0,-4.2,1.4,-6 -"1163",2708,3,0,0.909,0.909,0,-8,0,-1.7,-1,10 -"1164",2709,3,0,3.903,3.903,0,17,1,0.799999999999997,-0.199999999999999,0 -"1165",2710,3,0,2.38,2.38,0,-9,0,0.5,-1.3,-3 -"1166",2711,3,0,0.001,0.001,0,-3,1,-3.5,1.2,0 -"1167",2712,3,0,0.004,0.004,1,15,1,1.9,0,-1 diff --git a/tests/testthat/data_files/SURVIVAL/COLLAPSE_NO_MISSING/COLLAPSE_NO_MISSING1.rda b/tests/testthat/data_files/SURVIVAL/COLLAPSE_NO_MISSING/COLLAPSE_NO_MISSING1.rda deleted file mode 100644 index 641cee2c..00000000 Binary files a/tests/testthat/data_files/SURVIVAL/COLLAPSE_NO_MISSING/COLLAPSE_NO_MISSING1.rda and /dev/null differ diff --git a/tests/testthat/data_files/SURVIVAL/COLLAPSE_NO_MISSING/COLLAPSE_NO_MISSING2.rda b/tests/testthat/data_files/SURVIVAL/COLLAPSE_NO_MISSING/COLLAPSE_NO_MISSING2.rda deleted file mode 100644 index 860cefba..00000000 Binary files a/tests/testthat/data_files/SURVIVAL/COLLAPSE_NO_MISSING/COLLAPSE_NO_MISSING2.rda and /dev/null differ diff --git a/tests/testthat/data_files/SURVIVAL/COLLAPSE_NO_MISSING/COLLAPSE_NO_MISSING3.rda b/tests/testthat/data_files/SURVIVAL/COLLAPSE_NO_MISSING/COLLAPSE_NO_MISSING3.rda deleted file mode 100644 index 2460b678..00000000 Binary files a/tests/testthat/data_files/SURVIVAL/COLLAPSE_NO_MISSING/COLLAPSE_NO_MISSING3.rda and /dev/null differ diff --git a/tests/testthat/data_files/SURVIVAL/COLLAPSE_NO_MISSING/collapse_no_missing_study1.csv b/tests/testthat/data_files/SURVIVAL/COLLAPSE_NO_MISSING/collapse_no_missing_study1.csv deleted file mode 100644 index 3cb3ead3..00000000 --- a/tests/testthat/data_files/SURVIVAL/COLLAPSE_NO_MISSING/collapse_no_missing_study1.csv +++ /dev/null @@ -1,887 +0,0 @@ -"","ID","STUDY.ID","STARTTIME","ENDTIME","SURVTIME","CENS","age.60","female","noise.56","pm10.16","bmi.26" -"1",1,1,0,9.025,9.025,1,8,1,1.7,-0.0999999999999996,-4 -"2",2,1,0,10,10,0,16,1,0.700000000000003,0.899999999999999,-6 -"3",3,1,0,0.379,0.379,0,-5,1,1.6,-1.3,-4 -"4",4,1,0,0.087,0.087,1,13,0,3.5,0.399999999999999,4 -"5",5,1,0,1.425,1.425,1,26,0,0.100000000000001,-1.8,-1 -"6",6,1,0,1.694,1.694,1,8,1,-1.6,-0.0999999999999996,2 -"7",7,1,0,0.271,0.271,1,-6,0,-0.600000000000001,0,4 -"8",8,1,0,8.201,8.201,1,1,0,2.8,-1.4,4 -"9",9,1,0,1.166,1.166,0,30,1,-6.7,1.1,-3 -"10",10,1,0,0.435,0.435,0,-25,0,-8.6,0.5,-7 -"11",11,1,0,0.915,0.915,1,21,1,-8.1,0.5,-3 -"12",12,1,0,0.08,0.08,1,15,1,7,1.1,4 -"13",13,1,0,0.086,0.086,0,2,1,-3,-0.5,9 -"14",14,1,0,1.227,1.227,1,4,1,-3.4,-1.2,3 -"15",15,1,0,7.771,7.771,1,4,1,4.5,-0.699999999999999,-2 -"16",16,1,0,1.441,1.441,0,-2,1,2.2,1.6,-6 -"17",17,1,0,0.207,0.207,1,-10,1,2.2,-0.0999999999999996,6 -"18",18,1,0,6.806,6.806,1,-14,0,0.299999999999997,-0.9,5 -"19",19,1,0,2.154,2.154,0,3,1,10.9,-0.6,0 -"20",20,1,0,0.203,0.203,1,22,0,-4.5,-1,-3 -"21",21,1,0,0.238,0.238,1,28,0,-8.9,-1.3,-1 -"22",22,1,0,1.358,1.358,1,21,1,-4.6,1.5,0 -"23",23,1,0,10,10,0,-16,1,-6,0.100000000000001,-4 -"24",24,1,0,0.489,0.489,1,8,0,4.6,0.100000000000001,9 -"25",25,1,0,7.842,7.842,1,10,0,-7.8,-0.4,0 -"26",26,1,0,0.861,0.861,0,-21,0,-3.5,-1.1,4 -"27",27,1,0,10,10,0,26,1,-1.3,-1.3,-4 -"28",28,1,0,0.853,0.853,0,10,0,-6.8,-0.199999999999999,5 -"29",29,1,0,0.947,0.947,1,26,0,-1.9,0.5,-4 -"30",30,1,0,1.962,1.962,1,-5,0,3.8,1,2 -"31",31,1,0,9.065,9.065,0,22,1,-3.9,-0.4,-5 -"32",32,1,0,1.073,1.073,0,-19,0,8,-1,-9 -"33",33,1,0,0.652,0.652,0,0,1,0.799999999999997,3,-2 -"34",34,1,0,0.958,0.958,1,18,1,-3.8,0.300000000000001,3 -"35",35,1,0,4.659,4.659,0,-1,1,3.4,0.399999999999999,-4 -"36",36,1,0,4.182,4.182,1,21,1,6.8,-0.9,1 -"37",37,1,0,0.045,0.045,1,-13,0,4.7,1.4,4 -"38",38,1,0,8.042,8.042,0,-13,1,6.6,-0.0999999999999996,-8 -"39",39,1,0,0.666,0.666,1,1,1,-4.3,-1.5,4 -"40",40,1,0,2.408,2.408,0,-14,1,-1.3,-1.5,0 -"41",41,1,0,1.095,1.095,1,-6,0,-2.4,-0.0999999999999996,3 -"42",42,1,0,10,10,0,-21,0,1.5,-0.800000000000001,-5 -"43",43,1,0,0.155,0.155,1,13,1,-5.5,0.899999999999999,4 -"44",44,1,0,5.835,5.835,1,-25,0,2.3,0.100000000000001,3 -"45",45,1,0,0.901,0.901,1,10,0,-1.8,1.5,2 -"46",46,1,0,2.086,2.086,0,-14,1,-0.5,-1.2,-12 -"47",47,1,0,10,10,0,9,1,1.2,0,-7 -"48",48,1,0,0.277,0.277,1,11,1,5.8,1,-3 -"49",49,1,0,10,10,0,-11,1,0.899999999999999,0.300000000000001,2 -"50",50,1,0,0.332,0.332,1,-5,0,-2.3,-0.5,2 -"51",51,1,0,1.674,1.674,1,14,0,4.1,-0.4,-1 -"52",52,1,0,0.509,0.509,1,-2,0,6.2,-0.800000000000001,4 -"53",53,1,0,0.014,0.014,1,19,1,-1.6,1.9,-4 -"54",54,1,0,8.445,8.445,0,-24,1,-3.7,0,-4 -"55",55,1,0,1.299,1.299,1,-16,0,-4.2,1,0 -"56",56,1,0,1.714,1.714,0,-7,0,1.6,-0.5,-2 -"57",57,1,0,0.123,0.123,1,19,0,5.4,0,2 -"58",58,1,0,7.098,7.098,0,-16,1,-6.5,-0.800000000000001,-5 -"59",59,1,0,2.429,2.429,1,-9,0,7.9,1.3,-2 -"60",60,1,0,3.655,3.655,0,-7,0,7.8,-0.199999999999999,-1 -"61",61,1,0,7.528,7.528,0,-27,0,-7,-0.699999999999999,-2 -"62",62,1,0,1.278,1.278,1,-4,0,-1.9,1.3,1 -"63",63,1,0,1.014,1.014,0,-3,0,-5.3,0.199999999999999,5 -"64",64,1,0,4.752,4.752,1,-10,1,1.1,-1.1,5 -"65",65,1,0,8.022,8.022,0,6,1,4.3,0.800000000000001,-2 -"66",66,1,0,10,10,0,1,1,3.1,-1.4,1 -"67",67,1,0,10,10,0,-11,1,-1.2,-1.4,2 -"68",68,1,0,4.744,4.744,0,3,1,-4.9,0.100000000000001,-5 -"69",69,1,0,0.712,0.712,1,-1,1,3.1,0.800000000000001,4 -"70",70,1,0,10,10,0,15,0,-0.5,-1.1,-1 -"71",71,1,0,5.275,5.275,0,-22,0,0,-0.6,6 -"72",72,1,0,1.872,1.872,0,-21,0,-0.100000000000001,0.699999999999999,-2 -"73",73,1,0,4.012,4.012,0,11,1,-6.4,-0.6,5 -"74",74,1,0,0.144,0.144,1,-9,1,4.5,0,-1 -"75",75,1,0,0.25,0.25,1,8,1,5.1,0.800000000000001,-2 -"76",76,1,0,0.174,0.174,1,6,1,-3,1.2,4 -"77",77,1,0,1.528,1.528,1,27,1,-1,0,-8 -"78",78,1,0,10,10,0,-17,0,-5.4,-0.9,-1 -"79",79,1,0,0.656,0.656,1,10,0,2.4,1.2,2 -"80",80,1,0,10,10,0,-2,0,1.1,-0.199999999999999,-9 -"81",81,1,0,0.395,0.395,0,-4,1,0.100000000000001,-1.5,5 -"82",82,1,0,0.374,0.374,1,-12,0,5.2,1.8,6 -"83",83,1,0,10,10,0,-17,1,3.6,1.2,3 -"84",84,1,0,4.27,4.27,1,-8,0,-2,-0.4,0 -"85",85,1,0,0.023,0.023,1,36,0,4.6,0.199999999999999,-4 -"86",86,1,0,0.243,0.243,0,12,0,-3.1,0.5,6 -"87",87,1,0,6.163,6.163,1,11,1,6,-0.6,-3 -"88",88,1,0,1.389,1.389,0,-1,1,-6,0.399999999999999,4 -"89",89,1,0,0.046,0.046,1,31,1,-3.5,-0.0999999999999996,4 -"90",90,1,0,10,10,0,-6,0,0.799999999999997,-1.7,2 -"91",91,1,0,1.146,1.146,0,-5,0,6.3,-0.4,-1 -"92",92,1,0,0.052,0.052,1,17,0,-1.6,1.3,6 -"93",93,1,0,8.931,8.931,0,-36,0,0.600000000000001,-1.4,-2 -"94",94,1,0,0.673,0.673,1,9,0,-4.8,0.600000000000001,4 -"95",95,1,0,10,10,0,-31,1,-1.1,0.800000000000001,-1 -"96",96,1,0,1.685,1.685,1,-8,0,4.8,0.199999999999999,3 -"97",97,1,0,3.049,3.049,0,-18,0,-0.100000000000001,1.1,-3 -"98",98,1,0,4.02,4.02,0,-10,1,2.2,-0.699999999999999,3 -"99",99,1,0,1.835,1.835,1,9,0,-0.600000000000001,-2.6,-2 -"100",100,1,0,1.333,1.333,1,4,0,-4,0.5,-3 -"101",101,1,0,1.971,1.971,1,19,1,6.6,0.699999999999999,-11 -"102",102,1,0,4.516,4.516,0,-24,0,-2.8,0.199999999999999,0 -"103",103,1,0,0.779,0.779,1,11,0,-6.2,0.399999999999999,11 -"104",104,1,0,5.346,5.346,0,-12,1,-0.899999999999999,0.600000000000001,1 -"105",105,1,0,0.496,0.496,0,-36,1,-1.1,1,-1 -"106",106,1,0,1.241,1.241,1,2,0,6.3,-1.3,0 -"107",107,1,0,1.854,1.854,1,8,0,-3.7,0.399999999999999,-9 -"108",108,1,0,6.032,6.032,0,9,1,4.4,-0.0999999999999996,5 -"109",109,1,0,2.259,2.259,0,-21,0,-4,0.399999999999999,-12 -"110",110,1,0,10,10,0,9,1,-3.3,-1.2,-1 -"111",111,1,0,0.325,0.325,1,5,0,4.5,1.1,13 -"112",112,1,0,1.257,1.257,1,-6,0,4.7,-0.0999999999999996,-4 -"113",113,1,0,1.552,1.552,1,11,1,6,-0.800000000000001,5 -"114",114,1,0,0.436,0.436,1,-19,1,0,1,-5 -"115",115,1,0,5.235,5.235,0,24,1,0.600000000000001,0.699999999999999,-9 -"116",116,1,0,0.064,0.064,1,13,0,6.4,1.4,-4 -"117",117,1,0,4.233,4.233,0,8,0,-2.4,-0.0999999999999996,2 -"118",118,1,0,0.719,0.719,1,17,0,6.7,-0.5,-6 -"119",119,1,0,1.566,1.566,1,-27,0,2.6,0.300000000000001,-3 -"120",120,1,0,0.464,0.464,1,9,0,2.3,-1.2,5 -"121",121,1,0,5.649,5.649,0,-16,1,1.4,-1.3,13 -"122",122,1,0,0.67,0.67,0,7,1,-1.6,-0.300000000000001,-4 -"123",123,1,0,1.582,1.582,0,-9,1,1.9,1.3,5 -"124",124,1,0,2.307,2.307,1,3,0,-2.1,0.399999999999999,9 -"125",125,1,0,4.726,4.726,0,3,0,-3.5,-1,0 -"126",126,1,0,9.007,9.007,1,-36,0,3,-1,4 -"127",127,1,0,10,10,0,-7,0,-0.399999999999999,-0.9,3 -"128",128,1,0,0.183,0.183,0,-19,0,3.9,-0.300000000000001,10 -"129",129,1,0,5.528,5.528,0,5,1,-2,-0.699999999999999,3 -"130",130,1,0,5.388,5.388,1,8,1,-7.2,0.800000000000001,1 -"131",131,1,0,8.272,8.272,1,-15,1,9.7,-1,-10 -"132",132,1,0,2.72,2.72,0,-8,1,7.4,-0.699999999999999,-12 -"133",133,1,0,5.239,5.239,0,8,1,5.9,-0.300000000000001,-7 -"134",134,1,0,0.448,0.448,1,6,0,1.2,-0.9,6 -"135",135,1,0,3.756,3.756,0,-40,1,5.2,1.2,2 -"136",136,1,0,1.858,1.858,0,8,1,3.9,-2.4,1 -"137",137,1,0,1.67,1.67,0,12,1,-5.2,-2.7,0 -"138",138,1,0,0.691,0.691,1,8,1,8.8,-0.699999999999999,4 -"139",139,1,0,0.094,0.094,0,-14,0,-0.600000000000001,-0.699999999999999,1 -"140",140,1,0,3.815,3.815,0,-2,0,-5.1,-0.4,-11 -"141",141,1,0,5.961,5.961,0,-2,1,-5.9,-0.5,1 -"142",142,1,0,0.412,0.412,0,15,0,1.7,-0.0999999999999996,-5 -"143",143,1,0,7.049,7.049,0,-6,1,-8.3,-0.6,2 -"144",144,1,0,10,10,0,13,0,-0.5,-1.4,-2 -"145",145,1,0,10,10,0,22,1,-0.799999999999997,0.300000000000001,-5 -"146",146,1,0,2.624,2.624,0,-7,0,-4.3,0.399999999999999,6 -"147",147,1,0,9.551,9.551,0,-31,1,0.799999999999997,-0.199999999999999,6 -"148",148,1,0,0.543,0.543,1,32,1,-2.1,1.1,-5 -"149",149,1,0,10,10,0,6,1,-6.9,0.199999999999999,-3 -"150",150,1,0,0.037,0.037,0,2,0,4.4,0.100000000000001,-6 -"151",151,1,0,1.491,1.491,1,1,1,10,-0.300000000000001,4 -"152",152,1,0,1.506,1.506,1,13,1,7.4,0,0 -"153",153,1,0,1.639,1.639,0,10,0,-1.5,-0.0999999999999996,6 -"154",154,1,0,2.559,2.559,1,-8,0,1.6,0.300000000000001,0 -"155",155,1,0,0.113,0.113,0,-11,0,-0.200000000000003,0,4 -"156",156,1,0,10,10,0,-3,1,-12.7,1,0 -"157",157,1,0,1.828,1.828,0,9,1,-2.9,-0.9,-10 -"158",158,1,0,4.565,4.565,0,-28,1,-5.2,0.399999999999999,-3 -"159",159,1,0,3.635,3.635,1,6,0,-3.9,-0.6,0 -"160",160,1,0,6.888,6.888,0,-21,1,3.9,2.2,3 -"161",161,1,0,0.706,0.706,1,-4,1,1.3,-0.6,6 -"162",162,1,0,1.384,1.384,1,37,1,1.7,-0.6,-5 -"163",163,1,0,0.614,0.614,1,-14,0,3,0.399999999999999,-1 -"164",164,1,0,2.849,2.849,0,-4,0,-7.4,-2.4,-4 -"165",165,1,0,1,1,1,20,0,-4.4,0.199999999999999,11 -"166",166,1,0,5.168,5.168,0,-2,1,10.4,0.899999999999999,-1 -"167",167,1,0,5.384,5.384,0,-5,1,1.3,0,-6 -"168",168,1,0,0.117,0.117,1,10,1,-2.8,-0.4,2 -"169",169,1,0,0.553,0.553,1,13,0,0.399999999999999,-2.2,3 -"170",170,1,0,9.096,9.096,1,-19,0,3,1.4,-5 -"171",171,1,0,3.278,3.278,0,-20,1,-3.7,-0.9,-2 -"172",172,1,0,1.247,1.247,1,-1,1,1.9,1.5,11 -"173",173,1,0,0.304,0.304,1,11,1,2.1,-0.6,7 -"174",174,1,0,10,10,0,-25,1,2.8,0.899999999999999,-1 -"175",175,1,0,0.113,0.113,1,-9,1,0.700000000000003,0.699999999999999,1 -"176",176,1,0,4.856,4.856,0,-14,1,1,-1,-4 -"177",177,1,0,2.868,2.868,0,-26,1,-2.9,1,-5 -"178",178,1,0,10,10,0,-34,1,-2.9,0.399999999999999,2 -"179",179,1,0,0.515,0.515,1,-11,0,-2.5,1.6,5 -"180",180,1,0,6.618,6.618,0,-12,1,-6,0.100000000000001,-5 -"181",181,1,0,5.063,5.063,0,19,1,3.6,-0.9,-1 -"182",182,1,0,1.604,1.604,1,-1,0,-9.8,1,2 -"183",183,1,0,9.866,9.866,0,0,0,-7.3,-1.1,-3 -"184",184,1,0,5.343,5.343,0,-3,1,6.7,0,-1 -"185",185,1,0,2.401,2.401,0,-43,1,4.6,1.6,10 -"186",186,1,0,2.127,2.127,0,-16,1,5,-1.5,0 -"187",187,1,0,1.368,1.368,1,3,1,-1.9,-0.800000000000001,-2 -"188",188,1,0,6.44,6.44,0,-14,0,1.2,-0.699999999999999,2 -"189",189,1,0,10,10,0,-12,0,-1.7,-1.6,2 -"190",190,1,0,0.357,0.357,0,19,0,-2.1,1.2,-4 -"191",191,1,0,4.696,4.696,1,-16,1,-1,-1,-2 -"192",192,1,0,2.296,2.296,0,11,1,1.3,-0.0999999999999996,-7 -"193",193,1,0,2.812,2.812,0,-26,0,-0.100000000000001,1.4,0 -"194",194,1,0,10,10,0,10,1,0.399999999999999,-0.4,1 -"195",195,1,0,0.324,0.324,1,22,1,1.2,-0.199999999999999,1 -"196",196,1,0,0.66,0.66,0,-2,0,0.600000000000001,-0.6,6 -"197",197,1,0,2.931,2.931,1,6,1,-1.1,0.600000000000001,2 -"198",198,1,0,0.122,0.122,1,5,1,8,0.399999999999999,-2 -"199",199,1,0,6.852,6.852,1,15,0,-1.9,-0.5,-1 -"200",200,1,0,2.218,2.218,0,5,1,5.3,0.600000000000001,-9 -"201",201,1,0,0.434,0.434,1,-1,0,4.4,0.100000000000001,-10 -"202",202,1,0,3.965,3.965,0,-17,0,0.700000000000003,0.899999999999999,2 -"203",203,1,0,6.184,6.184,0,-20,0,-3.6,-1,0 -"204",204,1,0,0.649,0.649,0,-2,1,2.2,-1.3,-13 -"205",205,1,0,0.322,0.322,1,20,1,-0.5,0.699999999999999,0 -"206",206,1,0,0.373,0.373,1,21,0,0.5,0.399999999999999,4 -"207",207,1,0,10,10,0,-16,1,1.7,0.199999999999999,0 -"208",208,1,0,3.297,3.297,1,12,0,-5.4,0.300000000000001,1 -"209",209,1,0,0.168,0.168,1,-17,1,5.6,0.199999999999999,1 -"210",210,1,0,10,10,0,8,1,-3.6,-1.6,-7 -"211",211,1,0,1.72,1.72,1,0,0,-4,-0.699999999999999,1 -"212",212,1,0,1.783,1.783,1,15,1,-0.899999999999999,0.600000000000001,-2 -"213",213,1,0,0.543,0.543,1,11,0,-3.6,0.199999999999999,-2 -"214",214,1,0,0.05,0.05,1,17,1,-5.5,0.199999999999999,-6 -"215",215,1,0,0.924,0.924,0,-2,0,0,1.5,-6 -"216",216,1,0,8.551,8.551,0,0,0,-4.9,0.399999999999999,-3 -"217",217,1,0,0.112,0.112,1,7,0,-6.3,0.600000000000001,3 -"218",218,1,0,0.869,0.869,1,-6,0,-3.8,0.5,-2 -"219",219,1,0,0.099,0.099,1,1,0,2.5,0.300000000000001,-5 -"220",220,1,0,8.113,8.113,1,-18,0,2.9,-0.699999999999999,-4 -"221",221,1,0,5.393,5.393,0,-2,1,3.4,-0.800000000000001,0 -"222",222,1,0,0.094,0.094,1,5,0,-5,0.5,-1 -"223",223,1,0,0.228,0.228,0,-24,0,-9,-0.0999999999999996,1 -"224",224,1,0,0.027,0.027,0,-15,1,0.5,-0.0999999999999996,0 -"225",225,1,0,1.292,1.292,1,-28,1,1.2,1.7,-1 -"226",226,1,0,1.118,1.118,0,18,1,0.600000000000001,-0.300000000000001,3 -"227",227,1,0,8.954,8.954,0,20,1,5.1,-0.5,-4 -"228",228,1,0,0.832,0.832,0,1,1,0.100000000000001,-0.800000000000001,-3 -"229",229,1,0,0.273,0.273,0,5,0,-0.5,-0.199999999999999,-2 -"230",230,1,0,10,10,0,0,0,4.1,-0.0999999999999996,1 -"231",231,1,0,2.117,2.117,0,7,0,-6.5,-1.1,3 -"232",232,1,0,10,10,0,-35,0,-5.9,1.9,1 -"233",233,1,0,0.048,0.048,1,26,0,-1.2,0.100000000000001,0 -"234",234,1,0,0.18,0.18,1,10,0,-2,0.100000000000001,-9 -"235",235,1,0,0.266,0.266,1,1,0,-2.5,-1,-2 -"236",236,1,0,0.23,0.23,1,13,1,2.7,-1.3,1 -"237",237,1,0,0.273,0.273,1,-3,1,-4.5,0.800000000000001,1 -"238",238,1,0,1.757,1.757,1,11,1,-5.7,-0.800000000000001,-6 -"239",239,1,0,2.801,2.801,0,-5,1,-2.8,-0.5,-2 -"240",240,1,0,3.021,3.021,0,-28,1,3,-0.199999999999999,-6 -"241",241,1,0,1.115,1.115,0,7,0,-3.6,0.5,-1 -"242",242,1,0,1.958,1.958,0,-13,0,1.4,-0.5,-5 -"243",243,1,0,0.382,0.382,1,10,1,5.7,2.3,-5 -"244",244,1,0,1.003,1.003,1,38,1,-3.7,-0.300000000000001,-4 -"245",245,1,0,2.309,2.309,0,12,1,-5.3,0.699999999999999,2 -"246",246,1,0,1.115,1.115,0,-11,0,-4.1,-0.699999999999999,-15 -"247",247,1,0,0.618,0.618,1,-12,1,-4.9,1.4,4 -"248",248,1,0,2.818,2.818,0,-18,1,-8,0.300000000000001,8 -"249",249,1,0,0.664,0.664,1,-14,1,3.6,-0.0999999999999996,5 -"250",250,1,0,10,10,0,-13,1,-1.7,0.5,0 -"251",251,1,0,2.418,2.418,0,-39,1,7.2,1.7,-7 -"252",252,1,0,0.664,0.664,0,-21,1,0.299999999999997,0.5,12 -"253",253,1,0,7.319,7.319,0,-29,1,-3.4,0.899999999999999,-3 -"254",254,1,0,1.359,1.359,0,3,1,6.7,0.800000000000001,0 -"255",255,1,0,0.553,0.553,1,-8,0,1.5,0.399999999999999,13 -"256",256,1,0,0.174,0.174,1,31,1,7.4,1.2,4 -"257",257,1,0,0.5,0.5,0,-5,0,-4.7,-0.699999999999999,-9 -"258",258,1,0,2.976,2.976,0,-23,0,-2.6,-0.199999999999999,4 -"259",259,1,0,0.395,0.395,1,3,1,1.4,1.6,0 -"260",260,1,0,1.945,1.945,1,1,1,-4,0.800000000000001,-5 -"261",261,1,0,0.202,0.202,1,18,1,1.3,-1.3,1 -"262",262,1,0,0.472,0.472,1,14,1,-2.6,0,-4 -"263",263,1,0,0.75,0.75,1,16,1,0.799999999999997,0.199999999999999,12 -"264",264,1,0,0.564,0.564,1,13,0,-0.700000000000003,-0.800000000000001,8 -"265",265,1,0,2.235,2.235,0,-8,1,0.5,-1.4,6 -"266",266,1,0,0.803,0.803,1,11,0,1,0.899999999999999,2 -"267",267,1,0,0.851,0.851,1,31,1,0.899999999999999,0.899999999999999,-2 -"268",268,1,0,1.361,1.361,1,-8,1,5.7,0.5,6 -"269",269,1,0,1.051,1.051,1,11,1,3.6,0.199999999999999,7 -"270",270,1,0,0.722,0.722,0,-2,0,-2,0,-3 -"271",271,1,0,0.165,0.165,1,12,1,6.3,1.1,-5 -"272",272,1,0,10,10,0,9,1,1.9,-0.199999999999999,-6 -"273",273,1,0,6.305,6.305,0,-12,1,2.8,0,8 -"274",274,1,0,9.724,9.724,0,-42,1,-3.3,0,2 -"275",275,1,0,1.442,1.442,0,-39,1,-0.299999999999997,-0.9,-4 -"276",276,1,0,6.876,6.876,0,-5,0,-0.700000000000003,0.600000000000001,0 -"277",277,1,0,1.145,1.145,1,-5,0,0.299999999999997,-0.6,6 -"278",278,1,0,2.249,2.249,1,5,1,-1,1.1,0 -"279",279,1,0,10,10,0,-24,1,-3.1,-0.300000000000001,-12 -"280",280,1,0,3.983,3.983,0,-8,1,-1.1,0,0 -"281",281,1,0,0.569,0.569,1,-16,0,3,-0.300000000000001,14 -"282",282,1,0,1.395,1.395,1,0,0,1,0.600000000000001,3 -"283",283,1,0,4.316,4.316,1,-19,0,4.4,-1.3,7 -"284",284,1,0,7.972,7.972,1,-10,0,1.2,0.600000000000001,-8 -"285",285,1,0,9.45,9.45,0,-8,0,-1.3,0.899999999999999,-4 -"286",286,1,0,0.036,0.036,0,8,0,-0.700000000000003,1.5,1 -"287",287,1,0,2.722,2.722,0,-20,0,6.5,-1.1,-3 -"288",288,1,0,0.656,0.656,1,-13,0,-0.799999999999997,0.100000000000001,-2 -"289",289,1,0,0.302,0.302,1,43,1,-5.8,-0.4,2 -"290",290,1,0,1.866,1.866,1,-5,0,2.3,-0.5,0 -"291",291,1,0,3.526,3.526,0,-5,1,-4.8,-1.1,-11 -"292",292,1,0,1.857,1.857,1,-8,0,1,-0.5,2 -"293",293,1,0,7.314,7.314,0,12,0,-3.5,0.899999999999999,-11 -"294",294,1,0,10,10,0,-2,1,-0.700000000000003,0.300000000000001,-5 -"295",295,1,0,0.147,0.147,0,-2,0,-3.8,0,-7 -"296",296,1,0,1.153,1.153,1,-2,0,-3.9,0.399999999999999,0 -"297",297,1,0,4.902,4.902,1,-14,0,-6.8,-0.800000000000001,5 -"298",298,1,0,7.314,7.314,0,-13,0,-3.6,-0.5,-7 -"299",299,1,0,0.639,0.639,1,-2,0,0.5,0.199999999999999,4 -"300",300,1,0,0.345,0.345,0,5,1,4.6,-0.9,-1 -"301",301,1,0,10,10,0,-9,0,-6.4,-1.5,-2 -"302",302,1,0,1.39,1.39,0,-34,0,0.399999999999999,-0.4,1 -"303",303,1,0,1.682,1.682,0,8,0,-2.4,-1.3,0 -"304",304,1,0,3.013,3.013,0,23,0,8.7,-2.5,4 -"305",305,1,0,1.876,1.876,1,-9,1,6.7,-0.0999999999999996,4 -"306",306,1,0,6.83,6.83,0,-13,1,5.1,1.2,-7 -"307",307,1,0,0.09,0.09,0,-4,1,-10.8,-0.199999999999999,-2 -"308",308,1,0,1.866,1.866,1,4,1,8.2,-0.0999999999999996,0 -"309",309,1,0,3.72,3.72,0,-4,1,3.6,-0.199999999999999,0 -"310",310,1,0,0.027,0.027,1,-14,1,3.5,0.300000000000001,2 -"311",311,1,0,1.463,1.463,0,3,1,-2,-0.699999999999999,2 -"312",312,1,0,5.275,5.275,0,0,0,2.4,-1.1,-10 -"313",313,1,0,8.197,8.197,0,-4,0,1.5,-0.800000000000001,-7 -"314",314,1,0,0.117,0.117,1,24,0,8.5,0.100000000000001,2 -"315",315,1,0,10,10,0,-3,1,1.7,-1.6,4 -"316",316,1,0,2.417,2.417,1,4,1,-3.9,0.899999999999999,2 -"317",317,1,0,0.172,0.172,1,21,0,-2.5,-1,-8 -"318",318,1,0,0.644,0.644,1,22,0,13.8,1.2,-12 -"319",319,1,0,0.202,0.202,0,8,1,-0.100000000000001,0.100000000000001,-12 -"320",320,1,0,0.322,0.322,0,-5,1,-2.6,-1.1,-5 -"321",321,1,0,1.97,1.97,1,-14,0,-9.1,0.399999999999999,4 -"322",322,1,0,0.539,0.539,1,16,0,0,1.6,3 -"323",323,1,0,2.037,2.037,0,13,0,-4.2,0.5,-3 -"324",324,1,0,0.411,0.411,1,16,0,-3.4,-1.6,0 -"325",325,1,0,6.887,6.887,0,24,1,1.7,-1.8,6 -"326",326,1,0,0.03,0.03,1,15,0,2.2,1.4,-1 -"327",327,1,0,0.732,0.732,1,8,1,2.8,1.1,-7 -"328",328,1,0,0.921,0.921,1,13,0,-4.5,0.600000000000001,10 -"329",329,1,0,4.038,4.038,0,1,1,-2.6,-1.3,-2 -"330",330,1,0,0.789,0.789,0,0,0,-1,-0.0999999999999996,12 -"331",331,1,0,0.551,0.551,1,2,1,-6.5,0,2 -"332",332,1,0,2.697,2.697,1,3,1,-4.1,-0.699999999999999,2 -"333",333,1,0,1.987,1.987,0,-3,0,3.4,-1,5 -"334",334,1,0,1.084,1.084,0,-7,1,4.2,1.1,-10 -"335",335,1,0,0.809,0.809,0,-34,0,-1.5,-1.3,-7 -"336",336,1,0,0.026,0.026,1,-2,0,-3.3,-0.199999999999999,5 -"337",337,1,0,1.211,1.211,1,0,0,-3.8,0.600000000000001,0 -"338",338,1,0,9.746,9.746,1,-21,1,0.200000000000003,2.1,-6 -"339",339,1,0,5.375,5.375,0,-1,1,1.7,0.899999999999999,6 -"340",340,1,0,0.135,0.135,1,14,1,-4.7,1.7,4 -"341",341,1,0,6.037,6.037,0,-6,0,2.3,-0.6,-3 -"342",342,1,0,0.04,0.04,0,7,1,6.4,-0.300000000000001,0 -"343",343,1,0,5.561,5.561,0,-4,0,3.4,-1.1,1 -"344",344,1,0,10,10,0,-8,0,3.7,-2,-3 -"345",345,1,0,10,10,0,10,0,-6.9,-0.0999999999999996,-4 -"346",346,1,0,2.71,2.71,1,14,0,-1.1,-1,-2 -"347",347,1,0,0.636,0.636,0,-12,0,1.8,0.5,-1 -"348",348,1,0,2.11,2.11,0,6,1,1,-0.4,0 -"349",349,1,0,9.939,9.939,1,-6,1,-1,-0.4,5 -"350",350,1,0,0.187,0.187,1,-20,0,-0.600000000000001,0.899999999999999,1 -"351",351,1,0,0.464,0.464,1,17,0,1.4,-0.300000000000001,1 -"352",352,1,0,0.777,0.777,0,7,0,0.399999999999999,0.699999999999999,-3 -"353",353,1,0,1.143,1.143,1,31,1,4.3,-1.6,-3 -"354",354,1,0,0.348,0.348,0,6,0,-1.1,0.399999999999999,10 -"355",355,1,0,0.067,0.067,1,15,0,0.399999999999999,0.100000000000001,4 -"356",356,1,0,7.125,7.125,1,-4,0,6,0.800000000000001,-2 -"357",357,1,0,2.884,2.884,1,-2,0,-0.5,-0.699999999999999,-1 -"358",358,1,0,0.582,0.582,0,-23,1,-4,-1.5,-3 -"359",359,1,0,0.915,0.915,0,4,1,2.7,0.399999999999999,-3 -"360",360,1,0,0.191,0.191,1,20,0,0.100000000000001,0.5,-1 -"361",361,1,0,0.934,0.934,1,-3,0,-5.8,1.3,0 -"362",362,1,0,1.425,1.425,1,2,1,3.3,0.300000000000001,9 -"363",363,1,0,0.294,0.294,1,-20,0,-1.1,0.399999999999999,5 -"364",364,1,0,7.726,7.726,1,-2,0,-3.8,-1.3,10 -"365",365,1,0,1.669,1.669,0,12,1,-1.6,-1.5,0 -"366",366,1,0,1.855,1.855,1,-9,0,-2.4,-0.0999999999999996,4 -"367",367,1,0,2.538,2.538,0,3,1,3.8,0.100000000000001,-6 -"368",368,1,0,1.168,1.168,1,8,0,-6,0.199999999999999,-1 -"369",369,1,0,1.207,1.207,0,-6,1,6.3,-0.6,0 -"370",370,1,0,1.386,1.386,1,1,1,-4.1,-0.6,1 -"371",371,1,0,2.932,2.932,0,-21,1,0.700000000000003,2.5,-1 -"372",372,1,0,5.78,5.78,1,17,0,1.6,-1,-4 -"373",373,1,0,0.425,0.425,1,13,0,3,-0.199999999999999,-5 -"374",374,1,0,2.732,2.732,1,7,0,0.100000000000001,0.800000000000001,2 -"375",375,1,0,0.56,0.56,1,6,1,4,1.7,3 -"376",376,1,0,9.553,9.553,0,10,1,-5.3,-1.4,8 -"377",377,1,0,5.784,5.784,0,18,1,-2,-0.800000000000001,-5 -"378",378,1,0,5.889,5.889,0,-5,0,-4.7,-1.2,-1 -"379",379,1,0,2.043,2.043,1,2,1,-3.4,-1.2,2 -"380",380,1,0,9.167,9.167,0,4,1,7.1,0,1 -"381",381,1,0,10,10,0,7,1,-7,-2.5,0 -"382",382,1,0,0.607,0.607,1,1,1,-1.5,-0.699999999999999,2 -"383",383,1,0,10,10,0,14,0,-6.9,-2,-3 -"384",384,1,0,1.445,1.445,1,15,0,-3.8,0.399999999999999,5 -"385",385,1,0,1.075,1.075,0,-9,0,-1.3,-0.800000000000001,3 -"386",386,1,0,0.135,0.135,0,-8,0,1.8,0.699999999999999,4 -"387",387,1,0,1.235,1.235,0,-9,1,3.3,0.899999999999999,-3 -"388",388,1,0,0.777,0.777,1,2,1,-2.5,-2.3,-2 -"389",389,1,0,1.147,1.147,1,9,1,-1,0.699999999999999,1 -"390",390,1,0,5.113,5.113,0,-9,0,-2.6,-1.6,-2 -"391",391,1,0,2.438,2.438,0,9,0,-0.700000000000003,-0.699999999999999,-7 -"392",392,1,0,6.029,6.029,0,-7,0,-0.899999999999999,1.3,-6 -"393",393,1,0,7.216,7.216,0,-9,0,-2.1,0.800000000000001,-6 -"394",394,1,0,10,10,0,5,0,-5.2,-1.3,-9 -"395",395,1,0,0.368,0.368,0,19,1,11.9,-0.0999999999999996,7 -"396",396,1,0,0.759,0.759,0,0,1,-5.4,-0.5,-3 -"397",397,1,0,1.2,1.2,0,-17,1,3.8,-0.199999999999999,4 -"398",398,1,0,1.524,1.524,1,23,0,0.899999999999999,0.899999999999999,-2 -"399",399,1,0,1.676,1.676,0,17,0,2,0.100000000000001,-3 -"400",400,1,0,2.871,2.871,0,14,1,-4.4,-0.5,-9 -"401",401,1,0,0.42,0.42,1,-5,0,-8.1,0.899999999999999,3 -"402",402,1,0,1.499,1.499,0,-14,0,5.8,1.1,-10 -"403",403,1,0,0.186,0.186,1,23,1,3.2,0.699999999999999,4 -"404",404,1,0,4.806,4.806,0,-3,1,-1.3,-1.1,4 -"405",405,1,0,1.561,1.561,1,-11,0,3.8,0.800000000000001,1 -"406",406,1,0,0.278,0.278,1,-11,0,8.8,-0.199999999999999,8 -"407",407,1,0,6.165,6.165,0,-16,0,2.8,-1.8,-3 -"408",408,1,0,1.007,1.007,1,6,1,-2.8,0.699999999999999,2 -"409",409,1,0,0.508,0.508,1,-14,0,1.6,2,-4 -"410",410,1,0,0.672,0.672,0,30,1,-4.7,1.9,-5 -"411",411,1,0,1.675,1.675,1,-10,0,5.9,0.800000000000001,11 -"412",412,1,0,2.078,2.078,1,18,0,-0.100000000000001,0,2 -"413",413,1,0,1.704,1.704,1,-32,0,-4.1,0.699999999999999,8 -"414",414,1,0,4.773,4.773,0,17,1,0.799999999999997,0.899999999999999,-8 -"415",415,1,0,6.144,6.144,0,4,0,1.4,0.399999999999999,-8 -"416",416,1,0,0.107,0.107,1,12,1,1,1.4,1 -"417",417,1,0,8.267,8.267,1,-21,0,1.2,-1.2,5 -"418",418,1,0,0.364,0.364,1,19,1,-2.5,0.600000000000001,1 -"419",419,1,0,10,10,0,-10,1,-4.2,0.100000000000001,6 -"420",420,1,0,1.078,1.078,1,11,0,-3.2,0.300000000000001,-3 -"421",421,1,0,4.907,4.907,0,-13,1,8.09999999999999,-0.4,5 -"422",422,1,0,0.344,0.344,1,10,0,-0.200000000000003,-0.4,-2 -"423",423,1,0,0.191,0.191,0,4,0,-1.3,1.2,-1 -"424",424,1,0,5.843,5.843,0,-27,1,4.7,1.7,-5 -"425",425,1,0,2.006,2.006,0,-15,0,-2.3,-1.8,-4 -"426",426,1,0,0.655,0.655,1,5,0,-0.100000000000001,0.300000000000001,8 -"427",427,1,0,4.685,4.685,1,14,0,0,0.300000000000001,4 -"428",428,1,0,1.176,1.176,0,-22,0,-4.1,1.9,-2 -"429",429,1,0,0.853,0.853,1,6,0,1.5,0.800000000000001,1 -"430",430,1,0,5.916,5.916,0,-14,1,6,-0.9,1 -"431",431,1,0,1.485,1.485,1,-5,1,2.1,0.800000000000001,-1 -"432",432,1,0,1.346,1.346,1,19,0,-1.4,-1.1,5 -"433",433,1,0,1.92,1.92,0,3,1,5.2,0.699999999999999,1 -"434",434,1,0,0.189,0.189,0,-4,1,4.7,-1.5,0 -"435",435,1,0,10,10,0,-5,1,-4.6,-1.4,6 -"436",436,1,0,0.218,0.218,1,10,0,12.1,1.1,1 -"437",437,1,0,5.696,5.696,0,-9,1,-2.7,-0.6,-1 -"438",438,1,0,10,10,0,-16,0,-2.5,0.199999999999999,-5 -"439",439,1,0,6.182,6.182,0,-1,1,2.9,-0.5,-5 -"440",440,1,0,0.384,0.384,1,-12,1,-6.7,-0.699999999999999,-3 -"441",441,1,0,0.471,0.471,1,-2,1,-4.1,-0.300000000000001,10 -"442",442,1,0,5.177,5.177,1,11,0,-5.1,-1.2,-1 -"443",443,1,0,10,10,0,-2,0,1.1,-0.699999999999999,-4 -"444",444,1,0,10,10,0,-15,1,-5.6,0.600000000000001,-7 -"445",445,1,0,0.538,0.538,0,-23,0,0.899999999999999,0.699999999999999,-9 -"446",446,1,0,8.699,8.699,0,-10,0,5.7,-0.4,-4 -"447",447,1,0,3.92,3.92,0,9,0,0.799999999999997,0.5,-9 -"448",448,1,0,1.742,1.742,0,-12,0,4,-1.8,0 -"449",449,1,0,1.179,1.179,0,-38,0,-6.6,0.100000000000001,2 -"450",450,1,0,0.85,0.85,1,16,1,-3.9,0.399999999999999,1 -"451",451,1,0,10,10,0,5,1,7.9,-0.4,-4 -"452",452,1,0,0.217,0.217,1,-8,0,-3.8,0.699999999999999,0 -"453",453,1,0,2.167,2.167,0,17,0,2.1,0,-7 -"454",454,1,0,1.464,1.464,1,2,0,-7.4,0.300000000000001,-7 -"455",455,1,0,5.366,5.366,0,5,0,-10.6,-0.9,-14 -"456",456,1,0,0.822,0.822,0,12,0,-2.5,0.399999999999999,6 -"457",457,1,0,0.325,0.325,1,-1,0,4.9,1.4,-1 -"458",458,1,0,10,10,0,-3,0,-3.3,-0.699999999999999,-6 -"459",459,1,0,0.045,0.045,1,5,0,4.9,-0.199999999999999,3 -"460",460,1,0,1.669,1.669,1,4,1,6.1,1.2,8 -"461",461,1,0,0.589,0.589,1,7,0,2.6,1.4,6 -"462",462,1,0,1.948,1.948,1,-5,0,-1.1,0.699999999999999,-4 -"463",463,1,0,1.136,1.136,0,-13,0,-0.600000000000001,-1,3 -"464",464,1,0,10,10,0,-9,0,5.5,0.600000000000001,-5 -"465",465,1,0,2.998,2.998,0,-18,0,0.399999999999999,0.5,-7 -"466",466,1,0,2.397,2.397,1,-1,0,1.9,-1.4,2 -"467",467,1,0,0.265,0.265,1,26,0,5.5,1.7,2 -"468",468,1,0,0.207,0.207,1,-17,0,-0.100000000000001,0.5,12 -"469",469,1,0,0.064,0.064,0,30,0,-4.3,0.199999999999999,-10 -"470",470,1,0,6.288,6.288,1,-15,1,-4.5,-0.300000000000001,3 -"471",471,1,0,0.044,0.044,1,-16,1,-2.2,2.6,3 -"472",472,1,0,0.101,0.101,0,-6,0,1.5,2.1,4 -"473",473,1,0,1.337,1.337,1,-33,0,-1,0.100000000000001,-1 -"474",474,1,0,0.673,0.673,1,17,0,-6,-0.0999999999999996,1 -"475",475,1,0,10,10,0,-8,1,4.6,0.600000000000001,-7 -"476",476,1,0,10,10,0,-16,0,9.3,-0.6,-1 -"477",477,1,0,3.627,3.627,0,9,1,1.3,-0.5,-3 -"478",478,1,0,5.889,5.889,1,22,1,2.9,1.1,-3 -"479",479,1,0,0.115,0.115,0,4,1,8.59999999999999,0.899999999999999,4 -"480",480,1,0,0.716,0.716,1,29,1,4.1,1.1,5 -"481",481,1,0,5.006,5.006,0,-19,1,3.2,1.2,-9 -"482",482,1,0,10,10,0,-7,0,5.5,-0.699999999999999,0 -"483",483,1,0,6.64,6.64,1,-18,0,-4.3,0.600000000000001,-1 -"484",484,1,0,3.78,3.78,0,-14,1,-3.6,-0.300000000000001,0 -"485",485,1,0,3.676,3.676,0,-18,1,-6.6,-0.0999999999999996,-2 -"486",486,1,0,4.44,4.44,0,-13,0,6.8,-1.1,0 -"487",487,1,0,0.153,0.153,1,25,0,0.200000000000003,2.2,1 -"488",488,1,0,0.01,0.01,1,-1,0,-4.8,-0.0999999999999996,5 -"489",489,1,0,1.869,1.869,1,-1,0,5,1.2,-9 -"490",490,1,0,0.192,0.192,1,-12,0,-5.5,0.800000000000001,0 -"491",491,1,0,3.777,3.777,0,-1,0,6.6,-0.0999999999999996,0 -"492",492,1,0,9.48,9.48,1,7,1,-2.5,-0.300000000000001,-2 -"493",493,1,0,0.44,0.44,1,5,1,-1.4,-0.9,3 -"494",494,1,0,0.089,0.089,1,10,0,2.5,0.800000000000001,-3 -"495",495,1,0,2.667,2.667,0,-20,0,2.4,-1.9,11 -"496",496,1,0,0.796,0.796,1,-3,0,-2.1,0.899999999999999,5 -"497",497,1,0,0.774,0.774,1,-5,1,1.1,0.800000000000001,2 -"498",498,1,0,10,10,0,-17,0,2.8,-1.1,1 -"499",499,1,0,0.304,0.304,1,10,1,6.4,0.399999999999999,5 -"500",500,1,0,1.997,1.997,0,-1,1,-0.399999999999999,0.600000000000001,1 -"501",501,1,0,6.003,6.003,1,-9,1,3.5,0.899999999999999,3 -"502",502,1,0,9.569,9.569,0,-7,1,-4.7,-0.5,11 -"503",503,1,0,3.368,3.368,0,8,0,-2.6,-0.699999999999999,1 -"504",504,1,0,0.551,0.551,1,-2,0,5.8,0.199999999999999,-6 -"505",505,1,0,1.759,1.759,1,-19,0,-1.6,0.899999999999999,5 -"506",506,1,0,9.943,9.943,1,13,1,-4.8,-1.2,3 -"507",507,1,0,0.255,0.255,1,-12,0,3.8,1.3,-1 -"508",508,1,0,1.994,1.994,1,1,1,5.1,-0.199999999999999,5 -"509",509,1,0,6.888,6.888,0,2,1,-4.1,0.800000000000001,-2 -"510",510,1,0,5.294,5.294,0,-3,0,-0.5,-1.6,-4 -"511",511,1,0,10,10,0,-4,0,1.1,-0.4,-7 -"512",512,1,0,4.598,4.598,0,3,0,-6.7,0.600000000000001,0 -"513",513,1,0,0.187,0.187,1,16,1,1.6,0.600000000000001,6 -"514",514,1,0,2.181,2.181,0,-3,0,3,0.300000000000001,2 -"515",515,1,0,0.699,0.699,0,-11,1,6.4,-0.5,3 -"516",516,1,0,3.167,3.167,0,-8,1,1.5,-2.3,-5 -"517",517,1,0,0.322,0.322,1,41,0,-6.3,-0.4,-4 -"518",518,1,0,4.591,4.591,0,19,0,-2.3,-1,-11 -"519",519,1,0,1.599,1.599,0,-15,1,5.8,-0.800000000000001,-4 -"520",520,1,0,1.124,1.124,1,20,1,-4.1,0.199999999999999,2 -"521",521,1,0,7.73,7.73,0,-11,1,1.4,0.5,3 -"522",522,1,0,1.505,1.505,1,-22,0,7.8,2.1,-5 -"523",523,1,0,6.762,6.762,0,12,1,3.7,-1.7,3 -"524",524,1,0,0.38,0.38,0,-5,0,-1,-1.4,-8 -"525",525,1,0,0.017,0.017,1,35,0,-1.7,-0.199999999999999,18 -"526",526,1,0,2.244,2.244,0,14,1,4.6,-2,2 -"527",527,1,0,1.308,1.308,0,-4,1,3.4,-0.199999999999999,-1 -"528",528,1,0,1.064,1.064,1,8,0,4.9,0.199999999999999,4 -"529",529,1,0,0.873,0.873,0,-2,1,3.6,-0.9,-10 -"530",530,1,0,0.625,0.625,1,-4,0,-5.1,0,1 -"531",531,1,0,4.847,4.847,0,-5,0,-3,-1.2,0 -"532",532,1,0,3.56,3.56,0,2,1,4.1,-0.0999999999999996,2 -"533",533,1,0,2.068,2.068,1,20,1,4.6,0.899999999999999,2 -"534",534,1,0,1.104,1.104,1,-12,1,-3.2,-0.6,18 -"535",535,1,0,1.823,1.823,1,-18,0,-1.2,0.600000000000001,9 -"536",536,1,0,10,10,0,-22,0,5.7,0.699999999999999,0 -"537",537,1,0,1.301,1.301,1,32,1,4.1,-1.8,3 -"538",538,1,0,0.043,0.043,0,-1,1,2.5,-2.2,-6 -"539",539,1,0,0.489,0.489,1,5,0,-1.3,0.800000000000001,1 -"540",540,1,0,2.425,2.425,0,11,1,2.6,-0.199999999999999,-5 -"541",541,1,0,0.122,0.122,1,18,0,2.8,1.5,2 -"542",542,1,0,0.977,0.977,1,18,0,1.5,-1.1,3 -"543",543,1,0,0.461,0.461,1,13,1,1.5,-0.0999999999999996,4 -"544",544,1,0,7.063,7.063,0,-4,0,-1.7,-0.4,4 -"545",545,1,0,0.293,0.293,1,17,0,-0.200000000000003,-0.300000000000001,-3 -"546",546,1,0,5.048,5.048,0,-14,0,-4.5,-0.699999999999999,-1 -"547",547,1,0,2.178,2.178,0,36,1,1.4,-0.199999999999999,-6 -"548",548,1,0,0.061,0.061,1,11,1,0.399999999999999,0.800000000000001,2 -"549",549,1,0,4.97,4.97,0,2,1,2.9,-0.199999999999999,10 -"550",550,1,0,5.177,5.177,0,-10,1,0.799999999999997,-2.3,1 -"551",551,1,0,0.949,0.949,1,11,0,-6.7,0.199999999999999,-5 -"552",552,1,0,0.468,0.468,0,-3,1,-0.399999999999999,-0.5,3 -"553",553,1,0,9.446,9.446,0,-19,0,3.3,-0.0999999999999996,-3 -"554",554,1,0,0.748,0.748,1,10,1,3.3,-0.699999999999999,-1 -"555",555,1,0,3.802,3.802,0,-1,1,0.600000000000001,0.100000000000001,6 -"556",556,1,0,1.072,1.072,1,-8,1,4.6,-1.1,5 -"557",557,1,0,8.496,8.496,1,-12,0,3.9,0.399999999999999,-1 -"558",558,1,0,1.814,1.814,1,-21,0,5.9,-0.5,6 -"559",559,1,0,0.259,0.259,0,19,1,7.1,-0.300000000000001,2 -"560",560,1,0,0.705,0.705,0,3,0,-6.6,-0.699999999999999,-10 -"561",561,1,0,4.372,4.372,0,-25,0,0.200000000000003,-0.9,-6 -"562",562,1,0,1.946,1.946,0,9,0,-10.1,0,-2 -"563",563,1,0,1.611,1.611,1,-5,1,-4,0.800000000000001,-7 -"564",564,1,0,5.153,5.153,0,-6,0,-4.3,-1.2,-3 -"565",565,1,0,1.98,1.98,1,3,0,0.700000000000003,-1.4,-4 -"566",566,1,0,0.207,0.207,1,-17,0,-1.1,-0.199999999999999,9 -"567",567,1,0,1.968,1.968,0,-7,1,4.5,0.300000000000001,9 -"568",568,1,0,1.367,1.367,0,1,0,-2.6,1,-8 -"569",569,1,0,8.958,8.958,1,3,0,1.9,0.699999999999999,-6 -"570",570,1,0,3.002,3.002,0,-18,0,0,-0.0999999999999996,4 -"571",571,1,0,1.064,1.064,0,2,1,-0.600000000000001,-0.9,0 -"572",572,1,0,2.149,2.149,1,1,0,-0.399999999999999,-2.5,3 -"573",573,1,0,0.983,0.983,0,3,1,0.399999999999999,-0.9,-2 -"574",574,1,0,0.515,0.515,0,-11,1,2.2,-0.4,3 -"575",575,1,0,1.634,1.634,0,-13,1,-10.5,-0.699999999999999,-3 -"576",576,1,0,0.167,0.167,1,7,1,-4.5,0.800000000000001,16 -"577",577,1,0,0.026,0.026,1,10,0,-2.6,-0.4,7 -"578",578,1,0,0.685,0.685,1,5,1,2.5,-0.300000000000001,6 -"579",579,1,0,6.12,6.12,0,-6,0,-11.4,-1.2,-1 -"580",580,1,0,0.628,0.628,0,3,0,-7.6,-1.9,-1 -"581",581,1,0,6.213,6.213,1,-27,0,1.5,0.5,8 -"582",582,1,0,9.752,9.752,0,5,1,-6,0.399999999999999,4 -"583",583,1,0,0.412,0.412,1,13,0,-2.8,0.600000000000001,5 -"584",584,1,0,0.313,0.313,1,28,0,-1.8,0.199999999999999,0 -"585",585,1,0,0.007,0.007,1,26,1,0.200000000000003,1.1,0 -"586",586,1,0,1.108,1.108,1,0,1,-0.799999999999997,1.6,4 -"587",587,1,0,2.697,2.697,1,5,0,0.100000000000001,0.399999999999999,-8 -"588",588,1,0,4.471,4.471,0,-8,0,2.2,-0.199999999999999,-5 -"589",589,1,0,7.712,7.712,1,-19,1,-7.3,-1.1,6 -"590",590,1,0,0.994,0.994,0,6,0,-1.8,-1,1 -"591",591,1,0,0.473,0.473,1,11,0,-4.9,2.5,7 -"592",592,1,0,5.384,5.384,0,-4,1,0.399999999999999,-0.300000000000001,-5 -"593",593,1,0,0.161,0.161,1,10,1,-4.6,2.4,2 -"594",594,1,0,7.467,7.467,0,8,1,-0.299999999999997,0.5,2 -"595",595,1,0,0.223,0.223,1,-11,1,3.4,1.2,-1 -"596",596,1,0,2.002,2.002,0,-12,0,0.200000000000003,-0.5,-7 -"597",597,1,0,0.321,0.321,1,24,0,1.6,-0.699999999999999,-5 -"598",598,1,0,3.476,3.476,0,-33,1,0.399999999999999,0.899999999999999,1 -"599",599,1,0,1.62,1.62,1,5,1,7,1.2,0 -"600",600,1,0,6.345,6.345,0,0,1,-1.9,-2,-7 -"601",601,1,0,10,10,0,-8,0,-2.6,-0.6,1 -"602",602,1,0,1.678,1.678,0,3,0,1.7,-0.9,-5 -"603",603,1,0,10,10,0,-14,0,-2.2,-0.4,-4 -"604",604,1,0,0.653,0.653,0,20,1,-2.7,0.199999999999999,3 -"605",605,1,0,5.332,5.332,0,-8,1,5,-0.6,1 -"606",606,1,0,10,10,0,14,1,4.8,-2.1,-6 -"607",607,1,0,9.378,9.378,0,-2,0,-4.7,-0.9,-2 -"608",608,1,0,0.649,0.649,0,0,0,-0.700000000000003,1.5,2 -"609",609,1,0,3.845,3.845,1,11,0,-1.7,-0.199999999999999,-2 -"610",610,1,0,0.131,0.131,1,2,1,1.2,0.300000000000001,9 -"611",611,1,0,0.877,0.877,0,-7,0,3.8,-0.199999999999999,2 -"612",612,1,0,0.115,0.115,1,10,0,-1.2,1.6,-4 -"613",613,1,0,5.642,5.642,0,9,1,2,-0.800000000000001,2 -"614",614,1,0,10,10,0,2,1,-4.4,0.399999999999999,-6 -"615",615,1,0,9.039,9.039,0,-3,1,-3,0.399999999999999,-4 -"616",616,1,0,0.152,0.152,1,-4,1,0.5,1.6,-3 -"617",617,1,0,3.965,3.965,0,-7,1,-1.4,-0.199999999999999,0 -"618",618,1,0,0.645,0.645,1,-5,1,-2.7,-2.4,-7 -"619",619,1,0,2.683,2.683,0,-9,0,-2.6,0.399999999999999,-7 -"620",620,1,0,1.336,1.336,1,5,1,1.1,1.2,8 -"621",621,1,0,0.193,0.193,1,6,0,0.700000000000003,-0.800000000000001,3 -"622",622,1,0,0.288,0.288,1,11,1,-0.299999999999997,0.199999999999999,-5 -"623",623,1,0,0.366,0.366,1,-2,0,-2.2,1.1,-9 -"624",624,1,0,2.96,2.96,1,16,1,6.4,-1,3 -"625",625,1,0,0.41,0.41,1,7,1,0.299999999999997,0.100000000000001,0 -"626",626,1,0,1.143,1.143,1,30,1,5.9,0.100000000000001,-4 -"627",627,1,0,1.867,1.867,1,1,0,-8.5,-1.1,5 -"628",628,1,0,0.174,0.174,0,-18,1,3.1,-0.199999999999999,6 -"629",629,1,0,1.94,1.94,0,-22,1,-1.9,-1,3 -"630",630,1,0,2.396,2.396,1,11,0,-2.4,-1,10 -"631",631,1,0,0.205,0.205,1,4,0,-3.3,0.300000000000001,7 -"632",632,1,0,10,10,0,-14,1,6.3,-1.1,2 -"633",633,1,0,2.014,2.014,0,2,1,6.5,-1.2,0 -"634",634,1,0,1.774,1.774,1,16,0,0.799999999999997,-0.300000000000001,-3 -"635",635,1,0,0.069,0.069,1,24,0,4.2,0.899999999999999,-4 -"636",636,1,0,1.969,1.969,0,-6,1,-0.799999999999997,-1.5,-4 -"637",637,1,0,1.098,1.098,0,-3,0,3.8,1,-9 -"638",638,1,0,2.162,2.162,0,13,1,1.8,1.5,-3 -"639",639,1,0,0.168,0.168,0,-10,0,1.4,-1.6,-3 -"640",640,1,0,0.989,0.989,1,29,0,0.399999999999999,0.399999999999999,-3 -"641",641,1,0,0.194,0.194,0,2,1,-2.3,-1.4,9 -"642",642,1,0,0.078,0.078,0,-17,1,-1.1,0.399999999999999,-4 -"643",643,1,0,0.528,0.528,0,-5,1,0.799999999999997,-2.4,-8 -"644",644,1,0,4.749,4.749,0,-8,1,0.399999999999999,0.399999999999999,4 -"645",645,1,0,0.123,0.123,1,-12,0,-3.5,1.4,5 -"646",646,1,0,0.863,0.863,1,-7,1,6,-1.6,-2 -"647",647,1,0,1.991,1.991,1,-8,1,0.299999999999997,-0.9,-10 -"648",648,1,0,7.787,7.787,0,6,0,5.9,-0.5,6 -"649",649,1,0,0.731,0.731,1,4,0,0.299999999999997,0.5,4 -"650",650,1,0,1.214,1.214,1,2,0,0.600000000000001,-2.4,-1 -"651",651,1,0,3.799,3.799,1,0,0,1.2,-0.800000000000001,9 -"652",652,1,0,1.816,1.816,0,-13,1,-5.9,-1.3,-1 -"653",653,1,0,2.284,2.284,0,2,1,-5,0.100000000000001,-9 -"654",654,1,0,0.494,0.494,0,15,1,-3.4,-1.2,-5 -"655",655,1,0,6.926,6.926,0,-19,0,-2.3,0.800000000000001,-8 -"656",656,1,0,0.159,0.159,1,22,0,4.2,-1.4,7 -"657",657,1,0,0.261,0.261,0,9,1,2.7,0.399999999999999,9 -"658",658,1,0,0.952,0.952,1,5,0,4.3,-0.4,-2 -"659",659,1,0,10,10,0,-30,1,-2.6,0.100000000000001,-1 -"660",660,1,0,4.477,4.477,0,-4,1,0.200000000000003,0.300000000000001,3 -"661",661,1,0,0.634,0.634,0,-22,0,-3.6,-0.4,0 -"662",662,1,0,0.045,0.045,1,1,1,-4.5,0.399999999999999,-4 -"663",663,1,0,6.572,6.572,0,-4,1,4.5,-1.5,-12 -"664",664,1,0,0.917,0.917,1,8,0,7,0.399999999999999,4 -"665",665,1,0,5.828,5.828,0,8,1,-14.8,-1.2,2 -"666",666,1,0,0.168,0.168,1,14,0,2.5,-0.5,-7 -"667",667,1,0,1.733,1.733,1,-4,1,-7.3,1,10 -"668",668,1,0,1.361,1.361,1,15,0,0.799999999999997,-1,-2 -"669",669,1,0,0.439,0.439,0,-3,1,-6.6,0.5,-1 -"670",670,1,0,0.053,0.053,0,8,1,3.1,1.2,-2 -"671",671,1,0,1.319,1.319,1,-1,1,-1.2,1.6,5 -"672",672,1,0,6.07,6.07,1,-2,1,4.8,0.199999999999999,-6 -"673",673,1,0,5.843,5.843,0,1,1,1,1.2,-5 -"674",674,1,0,0.126,0.126,0,-21,0,-0.200000000000003,0.399999999999999,3 -"675",675,1,0,7.042,7.042,0,-2,1,2.3,1.7,4 -"676",676,1,0,1.454,1.454,0,-10,0,-5.4,0.600000000000001,-13 -"677",677,1,0,10,10,0,-39,1,0.600000000000001,0.399999999999999,1 -"678",678,1,0,2.002,2.002,1,-5,0,0.700000000000003,-0.6,-2 -"679",679,1,0,3.03,3.03,1,20,0,2.1,-1.5,-2 -"680",680,1,0,0.01,0.01,1,11,0,1,0.199999999999999,1 -"681",681,1,0,9.27,9.27,0,-10,1,-6,-1.7,-8 -"682",682,1,0,0.696,0.696,1,-8,0,3.1,0.199999999999999,2 -"683",683,1,0,0.032,0.032,1,2,1,-3.7,1.6,2 -"684",684,1,0,3.945,3.945,0,-19,1,2.4,-0.199999999999999,-1 -"685",685,1,0,0.407,0.407,1,-14,0,1.7,0.600000000000001,-5 -"686",686,1,0,0.592,0.592,1,-9,1,2,-0.0999999999999996,6 -"687",687,1,0,4.361,4.361,0,-10,0,1.3,-0.699999999999999,3 -"688",688,1,0,0.094,0.094,1,23,0,4.2,0.100000000000001,-1 -"689",689,1,0,0.298,0.298,1,25,0,-4,-0.0999999999999996,6 -"690",690,1,0,1.527,1.527,0,-22,1,-5.7,0,10 -"691",691,1,0,2.571,2.571,1,-3,0,5.2,-1.5,0 -"692",692,1,0,10,10,0,-29,1,-0.399999999999999,0.100000000000001,3 -"693",693,1,0,0.819,0.819,1,7,1,-2.5,-0.699999999999999,6 -"694",694,1,0,4.024,4.024,1,-4,1,-0.200000000000003,-1.7,0 -"695",695,1,0,1.322,1.322,1,3,1,5.6,1,7 -"696",696,1,0,10,10,0,6,1,-0.600000000000001,0.5,-8 -"697",697,1,0,2.626,2.626,0,16,1,0.100000000000001,-1.5,12 -"698",698,1,0,6.527,6.527,0,0,1,-4.5,-0.5,-8 -"699",699,1,0,10,10,0,-5,0,-10.6,0.100000000000001,-3 -"700",700,1,0,2.635,2.635,0,11,1,1.5,-0.9,-5 -"701",701,1,0,0.746,0.746,0,2,0,-1.3,1.7,1 -"702",702,1,0,6.64,6.64,1,15,1,3.8,-0.6,5 -"703",703,1,0,7.823,7.823,0,-23,1,-1.6,-0.0999999999999996,-6 -"704",704,1,0,0.484,0.484,1,26,1,-6.4,-0.199999999999999,2 -"705",705,1,0,1.046,1.046,1,-7,1,3.3,0.199999999999999,1 -"706",706,1,0,0.074,0.074,1,10,0,1.3,0.699999999999999,4 -"707",707,1,0,10,10,0,-8,1,2.7,-0.0999999999999996,-1 -"708",708,1,0,10,10,0,-15,0,-2.9,-0.5,-10 -"709",709,1,0,0.75,0.75,1,15,0,5.1,0.800000000000001,-7 -"710",710,1,0,4.445,4.445,0,7,1,0.799999999999997,-1.8,-3 -"711",711,1,0,6.974,6.974,1,14,0,-0.200000000000003,-1.2,-2 -"712",712,1,0,0.285,0.285,1,-2,0,-0.600000000000001,-0.5,-4 -"713",713,1,0,0.233,0.233,0,4,0,1.5,-1.2,3 -"714",714,1,0,10,10,0,-8,1,1.4,-0.699999999999999,-3 -"715",715,1,0,10,10,0,-2,0,-0.600000000000001,-2.3,2 -"716",716,1,0,0.251,0.251,0,-20,0,-7.6,-1.8,3 -"717",717,1,0,0.52,0.52,1,-2,0,3.8,-0.0999999999999996,8 -"718",718,1,0,6.723,6.723,1,0,0,-8.3,-0.199999999999999,10 -"719",719,1,0,0.285,0.285,1,-17,0,-3.1,-1,0 -"720",720,1,0,0.416,0.416,1,7,1,6.9,1.3,6 -"721",721,1,0,0.974,0.974,0,12,1,0.299999999999997,-0.800000000000001,-7 -"722",722,1,0,1.11,1.11,1,26,1,-1.5,-1.4,0 -"723",723,1,0,0.586,0.586,1,1,0,6.7,1.4,5 -"724",724,1,0,1.129,1.129,0,10,1,3.2,0.699999999999999,-14 -"725",725,1,0,1.145,1.145,0,1,0,-2,0.600000000000001,-4 -"726",726,1,0,5.229,5.229,0,11,1,-3,-0.6,1 -"727",727,1,0,2.872,2.872,1,-8,1,4.8,0.800000000000001,-6 -"728",728,1,0,8.56,8.56,0,2,1,4.7,-0.4,-2 -"729",729,1,0,7.38,7.38,0,6,1,5.6,-0.5,-7 -"730",730,1,0,1.015,1.015,1,9,0,1.3,-0.699999999999999,-5 -"731",731,1,0,0.518,0.518,1,7,0,-5.8,-0.699999999999999,14 -"732",732,1,0,0.116,0.116,1,13,0,-1.8,-1.1,-6 -"733",733,1,0,10,10,0,-4,1,-5.3,-1.1,-7 -"734",734,1,0,0.869,0.869,1,0,1,-9.2,1.5,13 -"735",735,1,0,0.201,0.201,1,1,0,-1.3,0.100000000000001,-4 -"736",736,1,0,10,10,0,-17,1,7.1,-2,-6 -"737",737,1,0,0.819,0.819,1,-8,0,-0.200000000000003,1.4,-3 -"738",738,1,0,3.956,3.956,0,-10,1,-1,0.399999999999999,-3 -"739",739,1,0,0.23,0.23,0,8,1,0.600000000000001,0.100000000000001,3 -"740",740,1,0,0.256,0.256,1,15,0,-1.3,0.199999999999999,3 -"741",741,1,0,0.954,0.954,1,17,0,2.4,-0.699999999999999,-2 -"742",742,1,0,2.893,2.893,0,-3,1,3.2,0,3 -"743",743,1,0,0.541,0.541,0,7,0,-8.7,-0.800000000000001,3 -"744",744,1,0,0.593,0.593,1,15,0,7.8,0.699999999999999,4 -"745",745,1,0,10,10,0,11,1,2.3,-1,-6 -"746",746,1,0,10,10,0,-24,0,2.3,-0.6,-4 -"747",747,1,0,4.177,4.177,1,-9,0,4.4,0.699999999999999,7 -"748",748,1,0,1.598,1.598,0,-27,0,-0.399999999999999,-0.300000000000001,7 -"749",749,1,0,4.234,4.234,0,-2,0,-3.5,0.800000000000001,-8 -"750",750,1,0,1.182,1.182,1,-4,0,5.4,-0.0999999999999996,3 -"751",751,1,0,7.833,7.833,0,-7,1,7.3,1.5,2 -"752",752,1,0,0.275,0.275,0,4,0,0.799999999999997,1.7,-4 -"753",753,1,0,0.252,0.252,1,2,0,-1.6,2.3,6 -"754",754,1,0,10,10,0,9,1,4.6,-0.5,2 -"755",755,1,0,9.608,9.608,1,4,0,-1.7,-0.0999999999999996,0 -"756",756,1,0,4.624,4.624,0,-12,1,4.8,-1.5,0 -"757",757,1,0,0.966,0.966,0,-22,1,9.09999999999999,1.8,4 -"758",758,1,0,3.506,3.506,0,-20,0,5.8,-0.199999999999999,-1 -"759",759,1,0,2.677,2.677,0,-24,1,3.9,0.899999999999999,-7 -"760",760,1,0,0.461,0.461,1,26,0,3.5,1.8,-1 -"761",761,1,0,0.618,0.618,1,-1,0,7,-1.1,7 -"762",762,1,0,3.268,3.268,0,-13,0,-3.3,-0.4,-2 -"763",763,1,0,10,10,0,-19,1,2.6,0.100000000000001,-5 -"764",764,1,0,1.306,1.306,1,-13,0,-2.4,0.5,-2 -"765",765,1,0,10,10,0,11,1,5.3,-0.800000000000001,-2 -"766",766,1,0,1.547,1.547,1,2,1,1.6,0.899999999999999,4 -"767",767,1,0,5.081,5.081,0,-5,0,2.7,-2.1,-1 -"768",768,1,0,0.051,0.051,1,15,1,-3.6,1.8,1 -"769",769,1,0,10,10,0,-10,0,-3.2,0.199999999999999,-2 -"770",770,1,0,10,10,0,-21,0,-1.4,0.5,7 -"771",771,1,0,1.226,1.226,1,16,1,-1.5,1.2,-4 -"772",772,1,0,0.07,0.07,0,5,0,-2.8,1.2,0 -"773",773,1,0,0.217,0.217,1,-13,0,-1.3,0.800000000000001,10 -"774",774,1,0,6.956,6.956,1,2,0,-3.1,0.100000000000001,-1 -"775",775,1,0,3.638,3.638,0,8,1,3.7,0.199999999999999,-6 -"776",776,1,0,1.999,1.999,0,-3,0,-3.1,-0.5,-3 -"777",777,1,0,0.116,0.116,1,3,1,3.2,1.3,4 -"778",778,1,0,10,10,0,4,1,-0.200000000000003,-0.199999999999999,-2 -"779",779,1,0,0.743,0.743,1,18,0,-2.1,-0.5,-1 -"780",780,1,0,6.749,6.749,0,-1,1,1.5,-0.9,-4 -"781",781,1,0,3.777,3.777,1,-18,1,8.5,1,-3 -"782",782,1,0,1.707,1.707,1,4,1,0.799999999999997,0.899999999999999,2 -"783",783,1,0,0.357,0.357,1,23,0,-5.1,0,-4 -"784",784,1,0,5.024,5.024,0,-8,0,-7.7,-0.6,3 -"785",785,1,0,8.723,8.723,0,-17,1,2.9,-0.9,-2 -"786",786,1,0,0.255,0.255,0,7,1,0.5,-0.699999999999999,-7 -"787",787,1,0,1.714,1.714,0,-14,1,6.1,-0.800000000000001,-3 -"788",788,1,0,1.283,1.283,0,-1,0,3.8,-1.9,-3 -"789",789,1,0,5.923,5.923,0,-25,1,-3.5,-0.9,-4 -"790",790,1,0,3.105,3.105,0,-16,1,-3.1,-0.0999999999999996,8 -"791",791,1,0,6.182,6.182,0,-22,0,3.3,0.699999999999999,2 -"792",792,1,0,3.945,3.945,0,10,1,-0.799999999999997,-1.4,2 -"793",793,1,0,4.911,4.911,0,-14,0,2.5,1.4,2 -"794",794,1,0,0.895,0.895,1,7,0,2.9,0.5,-4 -"795",795,1,0,1.493,1.493,0,21,1,3,-0.4,-1 -"796",796,1,0,0.507,0.507,1,-4,0,1.1,-0.199999999999999,7 -"797",797,1,0,1.049,1.049,1,15,0,-7,1,0 -"798",798,1,0,1.419,1.419,0,-17,0,-6,0.399999999999999,0 -"799",799,1,0,1.342,1.342,1,-5,0,0.299999999999997,0.899999999999999,2 -"800",800,1,0,0.07,0.07,0,-20,1,-3.9,1.2,-10 -"801",801,1,0,1.427,1.427,0,-16,0,0.5,-0.800000000000001,-4 -"802",802,1,0,10,10,0,-12,1,-9.9,-0.6,1 -"803",803,1,0,3.522,3.522,0,-18,0,-0.899999999999999,-0.300000000000001,-8 -"804",804,1,0,0.01,0.01,1,-29,0,9.2,0.600000000000001,3 -"805",805,1,0,2.26,2.26,0,-13,0,-4.7,-0.9,1 -"806",806,1,0,0.055,0.055,0,-8,0,3.6,-0.5,1 -"807",807,1,0,0.1,0.1,1,5,0,-1.2,0.800000000000001,1 -"808",808,1,0,1.254,1.254,1,20,1,2.2,-1,1 -"809",809,1,0,3.001,3.001,0,19,1,-1.2,-1.1,4 -"810",810,1,0,1.028,1.028,1,28,1,9.8,0,-4 -"811",811,1,0,8.162,8.162,1,-4,0,1.9,-0.4,-1 -"812",812,1,0,1.046,1.046,1,-5,1,3.3,0.300000000000001,0 -"813",813,1,0,0.606,0.606,1,16,0,-3.7,0,1 -"814",814,1,0,8.081,8.081,1,-15,0,-4.3,0.699999999999999,-8 -"815",815,1,0,1.734,1.734,0,-28,1,-3.2,-1.3,6 -"816",816,1,0,1.074,1.074,1,2,1,4.3,-1.1,2 -"817",817,1,0,1.042,1.042,1,10,0,4.3,-0.300000000000001,-1 -"818",818,1,0,0.752,0.752,1,-9,1,-6.5,1,1 -"819",819,1,0,0.06,0.06,1,-24,1,-0.899999999999999,1.2,9 -"820",820,1,0,1.145,1.145,0,22,1,0.200000000000003,0.199999999999999,-3 -"821",821,1,0,1.971,1.971,0,-12,1,-2.9,-1.6,2 -"822",822,1,0,1.661,1.661,1,-7,1,3.8,0,3 -"823",823,1,0,1.069,1.069,1,41,0,-0.299999999999997,-0.0999999999999996,-1 -"824",824,1,0,1.402,1.402,1,22,1,-2,-0.4,-7 -"825",825,1,0,6.837,6.837,1,7,1,4.4,-0.300000000000001,3 -"826",826,1,0,10,10,0,-16,1,-9.4,0.399999999999999,-7 -"827",827,1,0,0.829,0.829,1,37,0,0.700000000000003,-0.199999999999999,0 -"828",828,1,0,0.196,0.196,1,8,0,1.2,-0.199999999999999,5 -"829",829,1,0,4.555,4.555,0,-10,1,3.7,0.199999999999999,3 -"830",830,1,0,1.083,1.083,1,13,1,-4.4,-2,3 -"831",831,1,0,0.387,0.387,1,24,0,1.9,-0.699999999999999,1 -"832",832,1,0,0.888,0.888,1,18,1,0.5,-0.6,-2 -"833",833,1,0,0.418,0.418,1,-19,1,1.8,1.5,2 -"834",834,1,0,0.01,0.01,1,20,0,0.100000000000001,0.600000000000001,0 -"835",835,1,0,1.554,1.554,1,3,0,3.1,0.199999999999999,-3 -"836",836,1,0,8.359,8.359,0,-9,0,-2.8,-1,-7 -"837",837,1,0,3.13,3.13,1,9,1,5.6,-0.0999999999999996,-2 -"838",838,1,0,0.419,0.419,1,53,0,5.5,0.699999999999999,-1 -"839",839,1,0,3.259,3.259,0,-11,1,4.5,-1.1,-4 -"840",840,1,0,1.235,1.235,1,15,0,1.2,0.399999999999999,6 -"841",841,1,0,2.28,2.28,1,2,1,-3.9,0.399999999999999,1 -"842",842,1,0,1.793,1.793,0,-12,0,-5.7,0,4 -"843",843,1,0,10,10,0,-2,1,5.1,-0.5,-6 -"844",844,1,0,3.68,3.68,1,34,1,-2.2,-0.199999999999999,-1 -"845",845,1,0,9.342,9.342,1,11,1,3.5,-1.4,-1 -"846",846,1,0,5.972,5.972,0,-10,1,-1.7,0.199999999999999,1 -"847",847,1,0,0.8,0.8,0,11,1,2.4,-0.199999999999999,-1 -"848",848,1,0,7.028,7.028,0,6,1,-2.5,-0.699999999999999,-2 -"849",849,1,0,0.547,0.547,1,-2,0,2.9,0.399999999999999,-9 -"850",850,1,0,1.711,1.711,0,-14,1,-8.3,0.199999999999999,-2 -"851",851,1,0,5.138,5.138,0,-1,1,-1.9,0.399999999999999,-3 -"852",852,1,0,7.233,7.233,0,7,0,3.9,0.100000000000001,-1 -"853",853,1,0,1.41,1.41,0,16,1,5,-2.2,4 -"854",854,1,0,0.424,0.424,0,-7,1,7.7,-1,5 -"855",855,1,0,0.807,0.807,0,-17,0,0.5,0.100000000000001,0 -"856",856,1,0,3.363,3.363,0,7,1,6.6,-0.6,-5 -"857",857,1,0,10,10,0,4,1,-8.6,-0.5,2 -"858",858,1,0,2.278,2.278,1,-5,0,-4.7,-0.0999999999999996,-8 -"859",859,1,0,5.895,5.895,0,-5,0,-2.1,-0.0999999999999996,-4 -"860",860,1,0,4.066,4.066,0,4,1,-0.200000000000003,0,2 -"861",861,1,0,3.093,3.093,0,-27,0,4.6,-0.5,-3 -"862",862,1,0,2.722,2.722,0,6,0,8.3,0.399999999999999,-6 -"863",863,1,0,10,10,0,-13,1,2,-0.300000000000001,-4 -"864",864,1,0,0.117,0.117,1,-16,0,2.4,0.399999999999999,-3 -"865",865,1,0,4.918,4.918,0,-23,1,1.8,0.600000000000001,4 -"866",866,1,0,0.087,0.087,1,-7,0,-0.700000000000003,-0.6,3 -"867",867,1,0,3.586,3.586,1,-11,1,1,-1.9,9 -"868",868,1,0,2.926,2.926,1,-17,1,0.5,0.300000000000001,2 -"869",869,1,0,6.27,6.27,1,7,1,-2.1,0.199999999999999,-3 -"870",870,1,0,0.038,0.038,0,-4,0,0,0,-2 -"871",871,1,0,0.42,0.42,1,-14,0,-2.9,0,0 -"872",872,1,0,1.006,1.006,0,4,1,-2.3,-1.2,-2 -"873",873,1,0,0.499,0.499,1,-12,0,3.4,0,9 -"874",874,1,0,0.178,0.178,1,-6,0,-4.1,1.3,-1 -"875",875,1,0,2.128,2.128,0,1,1,-3.7,-0.199999999999999,0 -"876",876,1,0,1.38,1.38,0,2,1,4.3,0.699999999999999,-4 -"877",877,1,0,5.253,5.253,0,-18,1,-4.2,-0.6,-1 -"878",878,1,0,1.562,1.562,1,9,0,0.5,1.4,0 -"879",879,1,0,1.094,1.094,0,17,1,-5.7,1.5,3 -"880",880,1,0,0.352,0.352,1,8,1,-1.9,1.6,6 -"881",881,1,0,6.909,6.909,1,16,0,-2.7,-2,-2 -"882",882,1,0,8.624,8.624,1,-16,0,2.5,-0.800000000000001,-3 -"883",883,1,0,1.231,1.231,1,-9,1,-1.5,0.5,8 -"884",884,1,0,0.078,0.078,1,11,0,6.4,2.3,4 -"885",885,1,0,2.932,2.932,0,2,0,-9.1,-0.6,6 -"886",886,1,0,0.121,0.121,1,41,1,-1,0.399999999999999,1 diff --git a/tests/testthat/data_files/SURVIVAL/COLLAPSE_NO_MISSING/collapse_no_missing_study2.csv b/tests/testthat/data_files/SURVIVAL/COLLAPSE_NO_MISSING/collapse_no_missing_study2.csv deleted file mode 100644 index 193ce22b..00000000 --- a/tests/testthat/data_files/SURVIVAL/COLLAPSE_NO_MISSING/collapse_no_missing_study2.csv +++ /dev/null @@ -1,660 +0,0 @@ -"","ID","STUDY.ID","STARTTIME","ENDTIME","SURVTIME","CENS","age.60","female","noise.56","pm10.16","bmi.26" -"1",887,2,0,0.196,0.196,0,24,1,5.8,-1,1 -"2",888,2,0,0.542,0.542,1,18,0,2.7,1.1,5 -"3",889,2,0,0.546,0.546,1,-5,0,6.6,0.199999999999999,-1 -"4",890,2,0,1.732,1.732,1,-2,0,-5.6,1.9,2 -"5",891,2,0,7.068,7.068,0,-23,1,0.799999999999997,-2.4,3 -"6",892,2,0,3.243,3.243,0,-4,0,-3.4,-1.9,-3 -"7",893,2,0,10,10,0,-16,0,0,0.699999999999999,1 -"8",894,2,0,0.577,0.577,1,-6,1,-0.899999999999999,0.699999999999999,3 -"9",895,2,0,6.439,6.439,1,-6,0,3.4,0.699999999999999,4 -"10",896,2,0,1.217,1.217,0,-10,1,1.8,0.699999999999999,-1 -"11",897,2,0,0.275,0.275,1,-5,0,-0.700000000000003,-0.199999999999999,0 -"12",898,2,0,8.163,8.163,1,-6,1,-1.5,-0.5,-1 -"13",899,2,0,6.531,6.531,1,6,0,-0.299999999999997,-0.300000000000001,5 -"14",900,2,0,0.162,0.162,1,8,1,-2.5,0.699999999999999,4 -"15",901,2,0,8.261,8.261,0,-19,1,1.1,-2.1,-8 -"16",902,2,0,2.363,2.363,1,25,1,-0.100000000000001,1.2,-2 -"17",903,2,0,1.685,1.685,1,-20,1,-0.100000000000001,1.2,2 -"18",904,2,0,2.643,2.643,0,3,1,6.8,0,-4 -"19",905,2,0,0.369,0.369,0,-16,0,4.8,1.5,0 -"20",906,2,0,1.438,1.438,1,-1,1,-7.9,0.399999999999999,-7 -"21",907,2,0,0.141,0.141,0,22,1,1.1,0.199999999999999,-5 -"22",908,2,0,1.971,1.971,1,-4,0,2.9,1.1,-2 -"23",909,2,0,10,10,0,-4,1,3.3,0.699999999999999,2 -"24",910,2,0,0.49,0.49,0,14,0,2.4,0.5,-2 -"25",911,2,0,6.464,6.464,1,2,1,1.2,1.4,-3 -"26",912,2,0,5.556,5.556,0,-15,0,6,-1.5,5 -"27",913,2,0,0.111,0.111,1,-13,0,11.1,-0.6,-1 -"28",914,2,0,1.049,1.049,0,10,1,0.600000000000001,-0.0999999999999996,-6 -"29",915,2,0,0.999,0.999,1,-4,0,0.700000000000003,1.4,0 -"30",916,2,0,0.114,0.114,1,0,0,4.1,-0.4,8 -"31",917,2,0,2.501,2.501,1,-17,0,1,0,0 -"32",918,2,0,5.504,5.504,0,-11,1,2,-1.6,-4 -"33",919,2,0,0.675,0.675,1,-6,0,-0.5,-1.1,-1 -"34",920,2,0,0.158,0.158,1,20,0,1.1,2.3,2 -"35",921,2,0,7.311,7.311,0,-1,1,-3.3,-1,-3 -"36",922,2,0,10,10,0,9,1,-2.5,2.2,-9 -"37",923,2,0,10,10,0,-1,1,5.2,0.399999999999999,-2 -"38",924,2,0,0.161,0.161,1,7,0,0,0.699999999999999,5 -"39",925,2,0,0.137,0.137,1,-2,1,-10,2,3 -"40",926,2,0,0.219,0.219,1,25,1,-6.4,-0.5,6 -"41",927,2,0,10,10,0,-26,1,0,-1.4,-6 -"42",928,2,0,8.555,8.555,0,4,0,4.3,-1.1,0 -"43",929,2,0,10,10,0,-7,1,-6.2,-1.1,1 -"44",930,2,0,9.618,9.618,0,-5,1,-3,0.399999999999999,8 -"45",931,2,0,2.118,2.118,0,-7,1,4.7,1.1,0 -"46",932,2,0,3.104,3.104,0,-14,0,-1.1,0.199999999999999,7 -"47",933,2,0,10,10,0,8,1,-1.7,0.100000000000001,-3 -"48",934,2,0,0.737,0.737,1,13,1,-1.4,-0.9,6 -"49",935,2,0,0.661,0.661,0,0,1,7.7,-1.2,-10 -"50",936,2,0,1.262,1.262,1,15,0,-3.9,0,7 -"51",937,2,0,0.266,0.266,1,-22,1,-3.8,0.600000000000001,10 -"52",938,2,0,3.204,3.204,1,13,1,-2.1,0.300000000000001,-1 -"53",939,2,0,0.527,0.527,1,5,0,-5,0.100000000000001,-6 -"54",940,2,0,2.079,2.079,1,-26,0,0.200000000000003,0.199999999999999,1 -"55",941,2,0,1.94,1.94,1,24,0,2.7,1.6,-7 -"56",942,2,0,0.012,0.012,0,-25,1,7.1,0.100000000000001,0 -"57",943,2,0,10,10,0,8,0,-7.1,0.100000000000001,-8 -"58",944,2,0,3.283,3.283,0,-3,1,4.3,0.899999999999999,1 -"59",945,2,0,9.042,9.042,0,-18,1,2.5,-0.0999999999999996,-1 -"60",946,2,0,10,10,0,-10,1,2.1,-0.300000000000001,1 -"61",947,2,0,10,10,0,-15,1,-0.799999999999997,-1.4,6 -"62",948,2,0,8.384,8.384,0,-18,1,0.899999999999999,-0.5,-7 -"63",949,2,0,2.113,2.113,1,8,1,1.4,1.6,-10 -"64",950,2,0,1.353,1.353,0,7,1,-1.9,0.800000000000001,-8 -"65",951,2,0,1.605,1.605,1,-15,0,0.899999999999999,0.699999999999999,2 -"66",952,2,0,10,10,0,8,1,3.3,-1,3 -"67",953,2,0,10,10,0,-28,1,3.1,0.600000000000001,-3 -"68",954,2,0,6.016,6.016,1,-19,0,-5.9,1.4,-2 -"69",955,2,0,0.816,0.816,1,8,1,-0.5,1.8,1 -"70",956,2,0,0.787,0.787,1,1,0,3.1,0.100000000000001,-9 -"71",957,2,0,7.159,7.159,0,-14,1,-2.2,-0.699999999999999,1 -"72",958,2,0,7.31,7.31,0,-15,1,0.399999999999999,0.300000000000001,-2 -"73",959,2,0,0.486,0.486,1,10,0,-2.7,3,2 -"74",960,2,0,7.777,7.777,0,-4,1,-7.8,-1.3,-3 -"75",961,2,0,3.338,3.338,0,11,1,3.3,0.699999999999999,-5 -"76",962,2,0,0.754,0.754,1,17,1,2.1,-0.199999999999999,4 -"77",963,2,0,0.253,0.253,1,25,1,5,0.699999999999999,3 -"78",964,2,0,2.79,2.79,0,-2,0,-7.1,-1,0 -"79",965,2,0,0.162,0.162,0,4,1,-1.2,0.300000000000001,-2 -"80",966,2,0,2.548,2.548,0,-26,1,-0.899999999999999,-0.300000000000001,-7 -"81",967,2,0,0.664,0.664,1,19,0,-0.899999999999999,-1,4 -"82",968,2,0,6.602,6.602,0,7,1,2.3,0,-2 -"83",969,2,0,10,10,0,-1,1,4.3,-1.3,1 -"84",970,2,0,4.055,4.055,0,-25,0,0.399999999999999,1.9,-1 -"85",971,2,0,10,10,0,-19,1,3.1,0.600000000000001,-1 -"86",972,2,0,0.604,0.604,1,32,1,4.6,-0.300000000000001,-12 -"87",973,2,0,1.52,1.52,0,-18,0,-4.7,-0.0999999999999996,3 -"88",974,2,0,1.64,1.64,1,-8,0,12.6,0.199999999999999,-4 -"89",975,2,0,7.866,7.866,1,3,1,1.8,1.3,-2 -"90",976,2,0,2.321,2.321,0,-9,1,2.8,-1.5,-4 -"91",977,2,0,0.396,0.396,1,0,1,-1.1,1.2,8 -"92",978,2,0,10,10,0,-4,1,-2.6,-1,1 -"93",979,2,0,0.351,0.351,1,18,1,6.1,0.300000000000001,-2 -"94",980,2,0,0.741,0.741,0,6,0,4.9,0.5,-2 -"95",981,2,0,1.524,1.524,1,5,0,-4.2,-0.800000000000001,9 -"96",982,2,0,2.847,2.847,0,-10,1,-3.2,-1.3,-3 -"97",983,2,0,2.054,2.054,0,13,1,2.3,0,-6 -"98",984,2,0,0.348,0.348,0,8,1,-2.7,-1.1,2 -"99",985,2,0,10,10,0,-21,1,-0.600000000000001,-1.2,-2 -"100",986,2,0,1.415,1.415,0,9,1,-6.7,-0.5,-5 -"101",987,2,0,2.738,2.738,0,-5,0,-0.799999999999997,0.199999999999999,-5 -"102",988,2,0,0.127,0.127,0,0,0,8.90000000000001,2,4 -"103",989,2,0,8.419,8.419,0,-2,1,1.2,-2.5,-8 -"104",990,2,0,5.468,5.468,0,10,1,-6.6,0.699999999999999,-6 -"105",991,2,0,0.299,0.299,0,-9,1,-1,0.399999999999999,-1 -"106",992,2,0,1.151,1.151,1,8,1,5.6,-0.800000000000001,-9 -"107",993,2,0,2.664,2.664,1,-17,0,0.799999999999997,0.100000000000001,0 -"108",994,2,0,7.676,7.676,0,-7,1,-1.2,-1,-8 -"109",995,2,0,0.273,0.273,1,3,0,3.4,-0.199999999999999,2 -"110",996,2,0,4.146,4.146,0,18,1,5.7,-0.0999999999999996,4 -"111",997,2,0,1.939,1.939,1,6,0,-7.1,0.600000000000001,-5 -"112",998,2,0,10,10,0,12,1,7.6,-1.2,1 -"113",999,2,0,7.684,7.684,0,-15,1,2.4,-1.2,-9 -"114",1000,2,0,5.587,5.587,0,-7,0,-1.7,-0.0999999999999996,-11 -"115",1001,2,0,1,1,1,41,1,-6.3,-0.6,2 -"116",1002,2,0,1.986,1.986,0,12,0,7.3,-1.3,-5 -"117",1003,2,0,1.055,1.055,0,21,1,2.9,1.4,-1 -"118",1004,2,0,0.409,0.409,1,18,0,-8.3,1.4,-3 -"119",1005,2,0,10,10,0,15,1,4.3,-0.9,-1 -"120",1006,2,0,3.752,3.752,0,0,0,1.8,-2.1,-3 -"121",1007,2,0,1.436,1.436,0,-24,0,1.5,0.199999999999999,-3 -"122",1008,2,0,0.017,0.017,1,28,0,-0.5,-0.0999999999999996,0 -"123",1009,2,0,10,10,0,-14,0,-6.1,0.100000000000001,-7 -"124",1010,2,0,0.954,0.954,1,32,0,4.7,-0.4,-4 -"125",1011,2,0,6.286,6.286,1,6,0,-3.6,-0.199999999999999,8 -"126",1012,2,0,10,10,0,-7,0,-5,-0.4,-2 -"127",1013,2,0,7.3,7.3,0,7,1,3.5,0.300000000000001,5 -"128",1014,2,0,0.427,0.427,1,4,0,-13.4,-0.4,0 -"129",1015,2,0,10,10,0,14,1,7.5,-1.1,-2 -"130",1016,2,0,0.157,0.157,1,-5,1,1.2,0.800000000000001,-6 -"131",1017,2,0,9.382,9.382,1,2,1,5.3,1.3,-6 -"132",1018,2,0,0.592,0.592,1,14,0,1.1,1.7,-5 -"133",1019,2,0,6.06,6.06,0,15,1,6.4,-1.1,-1 -"134",1020,2,0,0.109,0.109,1,-26,1,9.2,0.199999999999999,2 -"135",1021,2,0,0.653,0.653,1,-10,0,-0.100000000000001,0.399999999999999,6 -"136",1022,2,0,0.019,0.019,0,-3,0,4.5,0.399999999999999,-5 -"137",1023,2,0,1.027,1.027,1,-1,0,-1.7,-0.5,5 -"138",1024,2,0,1.404,1.404,0,17,0,-1.3,-0.699999999999999,-5 -"139",1025,2,0,2.131,2.131,1,23,0,-1.1,-0.300000000000001,3 -"140",1026,2,0,0.849,0.849,1,20,1,-3.9,-0.300000000000001,-6 -"141",1027,2,0,1.792,1.792,0,-15,0,-4.1,1.4,1 -"142",1028,2,0,7.713,7.713,0,-10,0,3.7,0.300000000000001,-6 -"143",1029,2,0,1.238,1.238,1,-28,0,14.8,0.199999999999999,-4 -"144",1030,2,0,0.139,0.139,1,-8,1,5.8,1.9,-3 -"145",1031,2,0,0.906,0.906,1,5,1,-4.4,0.5,0 -"146",1032,2,0,6.069,6.069,0,0,0,-3.4,-0.300000000000001,-6 -"147",1033,2,0,2.152,2.152,1,-7,1,6.3,0.600000000000001,3 -"148",1034,2,0,0.271,0.271,0,12,0,0.200000000000003,2.2,-12 -"149",1035,2,0,6.181,6.181,0,-18,0,-5.5,-0.6,5 -"150",1036,2,0,1.255,1.255,1,9,0,-0.600000000000001,-0.0999999999999996,0 -"151",1037,2,0,1.603,1.603,1,7,0,0.299999999999997,0.600000000000001,0 -"152",1038,2,0,1.837,1.837,1,0,0,-2.7,0.399999999999999,-5 -"153",1039,2,0,10,10,0,-15,1,0.899999999999999,0.800000000000001,1 -"154",1040,2,0,0.438,0.438,0,9,0,-4.5,-0.0999999999999996,-5 -"155",1041,2,0,2.573,2.573,1,25,1,-2.4,-1.8,2 -"156",1042,2,0,0.845,0.845,0,12,0,-5.6,-0.9,0 -"157",1043,2,0,3.182,3.182,0,-1,1,8.2,-0.699999999999999,3 -"158",1044,2,0,2.031,2.031,0,11,1,2.9,-1.1,5 -"159",1045,2,0,2.303,2.303,0,-4,0,1.2,-0.199999999999999,-7 -"160",1046,2,0,0.342,0.342,1,18,1,-2,-0.300000000000001,-3 -"161",1047,2,0,0.576,0.576,1,27,0,-1.4,0.5,6 -"162",1048,2,0,2.998,2.998,1,9,0,5.7,0,5 -"163",1049,2,0,0.26,0.26,1,11,0,3.9,0.699999999999999,-2 -"164",1050,2,0,0.078,0.078,0,15,0,-2.1,1.1,-1 -"165",1051,2,0,4.029,4.029,0,21,0,7.3,-1,-9 -"166",1052,2,0,8.966,8.966,1,-13,0,-6.4,1.8,-11 -"167",1053,2,0,0.184,0.184,1,5,0,1.3,-0.300000000000001,4 -"168",1054,2,0,0.295,0.295,1,-13,0,3.3,0.800000000000001,-1 -"169",1055,2,0,5.962,5.962,0,-17,0,0.899999999999999,-1.3,-7 -"170",1056,2,0,6.649,6.649,0,-27,1,5.5,-1.4,1 -"171",1057,2,0,1.172,1.172,1,2,0,3.4,0.899999999999999,-1 -"172",1058,2,0,1.505,1.505,0,-14,1,-4.5,0,1 -"173",1059,2,0,0.532,0.532,1,16,1,4.6,1.3,4 -"174",1060,2,0,5.826,5.826,0,-1,1,-4.9,-1.6,-1 -"175",1061,2,0,10,10,0,-22,0,-5.8,-0.4,-4 -"176",1062,2,0,10,10,0,1,1,8,0.199999999999999,5 -"177",1063,2,0,0.335,0.335,1,-8,0,-2.5,-0.199999999999999,8 -"178",1064,2,0,9.295,9.295,0,3,1,4.8,-1.4,1 -"179",1065,2,0,2.082,2.082,0,2,0,3.5,-0.199999999999999,1 -"180",1066,2,0,4.673,4.673,0,-17,1,-1.8,-0.199999999999999,4 -"181",1067,2,0,0.751,0.751,1,5,0,-3.7,0.600000000000001,-1 -"182",1068,2,0,9.287,9.287,0,-15,1,9.59999999999999,-0.800000000000001,2 -"183",1069,2,0,0.301,0.301,1,-6,0,-4.7,0.600000000000001,2 -"184",1070,2,0,0.333,0.333,1,21,0,-0.399999999999999,-1.2,1 -"185",1071,2,0,2.284,2.284,0,1,1,5.4,-1.9,-5 -"186",1072,2,0,0.323,0.323,1,-28,0,-12.1,1.6,4 -"187",1073,2,0,3.077,3.077,1,11,1,-2.2,0.100000000000001,0 -"188",1074,2,0,4.104,4.104,1,9,1,-2.5,-1.4,5 -"189",1075,2,0,1.561,1.561,1,7,0,4.7,1.2,0 -"190",1076,2,0,0.645,0.645,1,15,1,1.2,-0.4,-9 -"191",1077,2,0,0.435,0.435,1,13,1,-7.7,-0.9,5 -"192",1078,2,0,1.041,1.041,0,0,1,1,-0.800000000000001,9 -"193",1079,2,0,0.611,0.611,0,-14,0,3,0,3 -"194",1080,2,0,1.973,1.973,1,-5,1,-2.9,-0.9,5 -"195",1081,2,0,10,10,0,13,1,-6.4,0,1 -"196",1082,2,0,9.514,9.514,0,1,0,2,-1,-4 -"197",1083,2,0,1.869,1.869,0,4,0,-2.7,-0.9,-2 -"198",1084,2,0,0.805,0.805,1,12,1,1.4,0.600000000000001,0 -"199",1085,2,0,1.554,1.554,0,4,0,-2.6,-0.800000000000001,4 -"200",1086,2,0,2.727,2.727,0,-17,1,2.5,-1,-7 -"201",1087,2,0,0.954,0.954,1,8,0,4.8,-0.199999999999999,1 -"202",1088,2,0,7.426,7.426,0,14,1,-2.4,-0.800000000000001,-7 -"203",1089,2,0,0.951,0.951,1,4,0,-3.6,0.699999999999999,4 -"204",1090,2,0,7.328,7.328,0,-4,0,2,0,-8 -"205",1091,2,0,0.127,0.127,1,18,0,6,-0.300000000000001,5 -"206",1092,2,0,10,10,0,-34,0,-3.3,-2.4,1 -"207",1093,2,0,0.307,0.307,1,15,0,0.899999999999999,2.1,-10 -"208",1094,2,0,0.494,0.494,1,9,0,3.7,0.100000000000001,3 -"209",1095,2,0,0.994,0.994,1,22,1,-3.3,-0.199999999999999,3 -"210",1096,2,0,0.633,0.633,1,-3,0,6,0.5,5 -"211",1097,2,0,9.633,9.633,1,33,1,-4.9,-0.0999999999999996,1 -"212",1098,2,0,6.388,6.388,1,6,0,1.3,-0.300000000000001,5 -"213",1099,2,0,0.099,0.099,1,26,0,2.4,0.399999999999999,8 -"214",1100,2,0,0.895,0.895,0,14,1,0.899999999999999,0.399999999999999,0 -"215",1101,2,0,1.005,1.005,0,-11,0,-0.100000000000001,0.899999999999999,-2 -"216",1102,2,0,8.452,8.452,1,-9,1,-2.8,-1.1,0 -"217",1103,2,0,1.828,1.828,0,-16,0,0.100000000000001,-1.8,1 -"218",1104,2,0,1.268,1.268,1,6,1,-6.2,1.1,-3 -"219",1105,2,0,2.034,2.034,0,18,0,-2.2,-1,8 -"220",1106,2,0,0.109,0.109,1,19,0,0.100000000000001,0.699999999999999,-1 -"221",1107,2,0,1.329,1.329,1,5,1,-4.3,1,2 -"222",1108,2,0,0.197,0.197,1,15,1,7.6,0.699999999999999,1 -"223",1109,2,0,1.19,1.19,0,-15,1,-1,-1,2 -"224",1110,2,0,0.214,0.214,1,12,0,-4.5,-0.6,-7 -"225",1111,2,0,2.547,2.547,0,-16,0,3.5,-0.800000000000001,4 -"226",1112,2,0,0.033,0.033,1,-5,0,9.5,0.399999999999999,8 -"227",1113,2,0,3.054,3.054,0,-12,1,-0.5,-1.4,7 -"228",1114,2,0,5.989,5.989,0,-9,0,-5.8,-0.6,-5 -"229",1115,2,0,7.185,7.185,1,-10,0,-1.3,-0.4,-4 -"230",1116,2,0,3.054,3.054,0,7,1,1,-0.199999999999999,7 -"231",1117,2,0,1.852,1.852,1,14,1,2.2,0.800000000000001,1 -"232",1118,2,0,3.902,3.902,0,-16,0,4.4,-0.5,-5 -"233",1119,2,0,0.023,0.023,1,16,1,1,0.199999999999999,4 -"234",1120,2,0,1.645,1.645,1,16,0,-3.9,0,1 -"235",1121,2,0,3.725,3.725,0,14,1,5.5,-0.6,1 -"236",1122,2,0,0.18,0.18,1,18,0,2.1,0.699999999999999,-3 -"237",1123,2,0,0.177,0.177,1,-12,1,1.2,0.699999999999999,7 -"238",1124,2,0,0.414,0.414,1,-2,0,3.4,0.399999999999999,-2 -"239",1125,2,0,10,10,0,-7,0,1.2,-0.0999999999999996,1 -"240",1126,2,0,0.371,0.371,1,5,0,9.90000000000001,-0.9,10 -"241",1127,2,0,0.436,0.436,1,15,1,-0.600000000000001,1.1,4 -"242",1128,2,0,2.772,2.772,1,0,0,-3,0.699999999999999,-4 -"243",1129,2,0,1.159,1.159,0,8,0,0.600000000000001,0.899999999999999,-5 -"244",1130,2,0,3.869,3.869,0,10,1,-1.5,-0.0999999999999996,3 -"245",1131,2,0,0.799,0.799,0,-15,0,-1.6,2.6,2 -"246",1132,2,0,3.133,3.133,0,16,0,-4.2,-1.3,2 -"247",1133,2,0,0.561,0.561,1,-1,1,6.4,0.399999999999999,-5 -"248",1134,2,0,3.206,3.206,0,-5,1,-1.2,-0.699999999999999,4 -"249",1135,2,0,0.182,0.182,1,13,1,-4.8,-0.0999999999999996,3 -"250",1136,2,0,3.696,3.696,0,-8,0,-5.9,-0.9,-2 -"251",1137,2,0,0.514,0.514,1,1,1,3.8,0.600000000000001,1 -"252",1138,2,0,2.213,2.213,1,7,1,5.2,-0.6,-3 -"253",1139,2,0,0.729,0.729,1,-2,0,-0.600000000000001,1,4 -"254",1140,2,0,10,10,0,-20,0,-4.4,-2,7 -"255",1141,2,0,1.626,1.626,0,-4,0,5,0.899999999999999,3 -"256",1142,2,0,5.44,5.44,0,-1,0,-1.8,0.899999999999999,3 -"257",1143,2,0,3.541,3.541,0,-22,1,8.2,0.100000000000001,-4 -"258",1144,2,0,1.028,1.028,0,9,1,-2.3,-1.2,0 -"259",1145,2,0,10,10,0,-6,1,5,-1.9,-4 -"260",1146,2,0,0.485,0.485,0,-9,0,-0.5,-1,-1 -"261",1147,2,0,1.205,1.205,1,-5,0,0,0.800000000000001,-2 -"262",1148,2,0,0.106,0.106,1,36,0,-0.100000000000001,0.300000000000001,0 -"263",1149,2,0,2.325,2.325,1,0,1,8.7,1.2,-2 -"264",1150,2,0,10,10,0,-29,0,4.1,-0.199999999999999,-3 -"265",1151,2,0,0.086,0.086,1,19,1,-0.399999999999999,0.399999999999999,0 -"266",1152,2,0,1.178,1.178,0,9,0,2.8,-1.8,3 -"267",1153,2,0,6.426,6.426,0,-16,1,-1,0.199999999999999,8 -"268",1154,2,0,1.667,1.667,0,-14,1,0.200000000000003,-0.5,4 -"269",1155,2,0,2.062,2.062,0,-1,0,0.5,0.300000000000001,-8 -"270",1156,2,0,1.095,1.095,1,8,0,-3.7,-0.199999999999999,0 -"271",1157,2,0,0.817,0.817,1,18,0,2.1,-0.4,-2 -"272",1158,2,0,5.675,5.675,0,2,0,8.2,1,-6 -"273",1159,2,0,1.203,1.203,1,22,1,4.2,0.5,-3 -"274",1160,2,0,1.578,1.578,0,-1,1,-1.7,0.300000000000001,-1 -"275",1161,2,0,0.468,0.468,0,13,1,-7.5,-0.5,-4 -"276",1162,2,0,0.541,0.541,1,-11,0,2.2,0.100000000000001,7 -"277",1163,2,0,6.52,6.52,1,7,0,-8.5,0.399999999999999,0 -"278",1164,2,0,6.33,6.33,0,1,1,0.5,0.300000000000001,-1 -"279",1165,2,0,5.63,5.63,0,-13,0,1.1,-0.699999999999999,-9 -"280",1166,2,0,0.896,0.896,1,2,1,4.3,0.199999999999999,0 -"281",1167,2,0,0.701,0.701,1,24,0,-5.6,0.199999999999999,-1 -"282",1168,2,0,0.302,0.302,1,-8,0,-5.6,1.2,7 -"283",1169,2,0,1.479,1.479,0,-1,1,-3,-0.4,1 -"284",1170,2,0,2.285,2.285,1,-11,0,5.5,1.2,0 -"285",1171,2,0,1.915,1.915,1,-13,0,-3.5,0,-4 -"286",1172,2,0,10,10,0,-7,1,7.2,0.600000000000001,-1 -"287",1173,2,0,0.502,0.502,1,15,0,5.9,-2.8,5 -"288",1174,2,0,2.193,2.193,0,1,0,-1.4,-0.199999999999999,-2 -"289",1175,2,0,3.822,3.822,0,-27,1,-1,1.9,-2 -"290",1176,2,0,1.536,1.536,1,-21,1,8.7,0.399999999999999,1 -"291",1177,2,0,2.066,2.066,0,26,1,2.8,1.3,-7 -"292",1178,2,0,0.034,0.034,1,5,1,-2.2,1.3,-1 -"293",1179,2,0,10,10,0,-26,0,-4.4,-1.8,0 -"294",1180,2,0,5.863,5.863,0,15,1,1.2,1,-4 -"295",1181,2,0,0.333,0.333,1,-4,0,-1.6,0.199999999999999,6 -"296",1182,2,0,1.895,1.895,1,-15,1,-0.399999999999999,0,5 -"297",1183,2,0,4.609,4.609,0,-14,1,-4,-0.5,10 -"298",1184,2,0,1.002,1.002,1,17,1,0.600000000000001,0.399999999999999,3 -"299",1185,2,0,2.371,2.371,0,-7,1,-5.2,0.800000000000001,5 -"300",1186,2,0,10,10,0,-2,1,1.3,-2,3 -"301",1187,2,0,0.126,0.126,1,21,0,-0.899999999999999,0.899999999999999,-3 -"302",1188,2,0,2.192,2.192,0,-14,0,-7.5,-1.9,-1 -"303",1189,2,0,1.537,1.537,1,-12,1,5.5,-0.5,2 -"304",1190,2,0,8.537,8.537,0,-21,0,-0.399999999999999,-1.2,6 -"305",1191,2,0,2.04,2.04,0,-12,0,-5.9,-2,0 -"306",1192,2,0,1.286,1.286,1,-8,1,7,0.100000000000001,6 -"307",1193,2,0,0.381,0.381,0,-18,0,6.4,-1.3,3 -"308",1194,2,0,0.449,0.449,1,2,0,5.9,0.399999999999999,-1 -"309",1195,2,0,9.463,9.463,1,-1,1,1.2,0.5,1 -"310",1196,2,0,0.635,0.635,1,-18,0,11.2,0,5 -"311",1197,2,0,1.091,1.091,1,-22,0,5.2,-0.699999999999999,1 -"312",1198,2,0,2.608,2.608,0,-1,1,-2.7,-0.0999999999999996,-3 -"313",1199,2,0,1.292,1.292,0,0,1,1.5,-0.300000000000001,0 -"314",1200,2,0,3.206,3.206,0,5,0,3.7,-0.0999999999999996,4 -"315",1201,2,0,1.547,1.547,1,-19,0,-0.200000000000003,1.3,6 -"316",1202,2,0,5.701,5.701,0,20,0,-2.4,-0.800000000000001,1 -"317",1203,2,0,3.863,3.863,0,-19,0,2,1.6,1 -"318",1204,2,0,1.09,1.09,0,2,0,1.9,-1.2,1 -"319",1205,2,0,1.956,1.956,1,5,1,-1.3,0.899999999999999,-3 -"320",1206,2,0,0.395,0.395,1,-2,1,-3.3,1.1,9 -"321",1207,2,0,0.751,0.751,1,10,0,8,-0.300000000000001,-5 -"322",1208,2,0,0.106,0.106,0,0,1,3.7,1.1,-5 -"323",1209,2,0,1.148,1.148,0,12,1,-0.5,0,-4 -"324",1210,2,0,6.42,6.42,1,-18,0,-8,1.1,1 -"325",1211,2,0,0.189,0.189,1,-13,0,-2.5,1.9,4 -"326",1212,2,0,6.195,6.195,1,-14,0,3.6,-0.0999999999999996,0 -"327",1213,2,0,1.216,1.216,0,-10,0,0.299999999999997,-0.4,0 -"328",1214,2,0,0.26,0.26,1,24,0,5.3,0.199999999999999,-4 -"329",1215,2,0,1.157,1.157,1,8,1,-3.9,0.300000000000001,-1 -"330",1216,2,0,0.363,0.363,0,9,0,-2.1,0.199999999999999,-4 -"331",1217,2,0,7.893,7.893,0,-4,1,-5.5,0.899999999999999,-5 -"332",1218,2,0,0.377,0.377,0,11,1,6.5,-0.0999999999999996,0 -"333",1219,2,0,8.025,8.025,1,0,0,-2.8,0.300000000000001,-6 -"334",1220,2,0,8.645,8.645,0,13,1,1.6,0.199999999999999,-6 -"335",1221,2,0,0.454,0.454,1,9,0,-1.8,1.5,-2 -"336",1222,2,0,0.457,0.457,1,10,0,2.5,0.300000000000001,-3 -"337",1223,2,0,10,10,0,-5,0,-0.100000000000001,-0.800000000000001,2 -"338",1224,2,0,7.683,7.683,0,-45,1,-3.2,1.4,-5 -"339",1225,2,0,4.613,4.613,0,-15,1,1.2,-0.4,-4 -"340",1226,2,0,10,10,0,-35,0,9.59999999999999,-0.300000000000001,2 -"341",1227,2,0,2.306,2.306,0,4,1,2.9,-0.5,-2 -"342",1228,2,0,6.263,6.263,0,2,1,-1.4,-1.1,1 -"343",1229,2,0,4.272,4.272,0,17,0,1.3,0.600000000000001,-12 -"344",1230,2,0,0.549,0.549,1,23,1,3.1,0.5,11 -"345",1231,2,0,4.071,4.071,0,-12,1,3.4,0.5,-1 -"346",1232,2,0,0.224,0.224,0,20,1,1.3,0.199999999999999,9 -"347",1233,2,0,9.034,9.034,0,-7,0,3,-0.4,-6 -"348",1234,2,0,0.068,0.068,0,-14,1,0.5,0.399999999999999,2 -"349",1235,2,0,2.537,2.537,1,-1,1,-2.9,-0.4,4 -"350",1236,2,0,1.068,1.068,1,5,0,-6.9,1.3,9 -"351",1237,2,0,10,10,0,-12,1,1.6,-0.4,6 -"352",1238,2,0,9.648,9.648,1,-16,0,-6.3,0.399999999999999,11 -"353",1239,2,0,9.711,9.711,0,-23,1,1.1,-2.1,1 -"354",1240,2,0,4.203,4.203,0,3,1,0.299999999999997,0.899999999999999,-3 -"355",1241,2,0,0.51,0.51,1,24,1,4.4,-0.5,0 -"356",1242,2,0,0.554,0.554,0,1,1,4.8,0,5 -"357",1243,2,0,1.252,1.252,1,23,1,0.299999999999997,-0.699999999999999,-1 -"358",1244,2,0,0.304,0.304,1,-4,0,-9.3,-0.199999999999999,10 -"359",1245,2,0,0.485,0.485,1,5,0,3.8,0.100000000000001,-2 -"360",1246,2,0,7.737,7.737,0,-9,0,1.1,0.5,2 -"361",1247,2,0,7.12,7.12,0,-22,0,-8.3,-1,4 -"362",1248,2,0,0.855,0.855,0,-3,0,5,-0.9,-12 -"363",1249,2,0,2.536,2.536,1,-4,1,4.7,0.199999999999999,-15 -"364",1250,2,0,0.347,0.347,1,4,0,0.399999999999999,1.4,1 -"365",1251,2,0,1.923,1.923,1,9,0,0,0.600000000000001,-3 -"366",1252,2,0,0.956,0.956,1,13,1,0.399999999999999,0,-2 -"367",1253,2,0,0.638,0.638,1,16,0,-4.9,1.4,7 -"368",1254,2,0,5.074,5.074,1,-8,1,0,1,-4 -"369",1255,2,0,1.227,1.227,1,19,0,6.7,0.399999999999999,-3 -"370",1256,2,0,2.788,2.788,0,0,1,-6,-0.800000000000001,-9 -"371",1257,2,0,7.493,7.493,0,-33,0,3.6,1,3 -"372",1258,2,0,6.184,6.184,1,1,0,6.1,0.399999999999999,3 -"373",1259,2,0,0.326,0.326,1,44,1,8.59999999999999,-0.300000000000001,-3 -"374",1260,2,0,0.875,0.875,1,-25,0,-3.3,1.9,2 -"375",1261,2,0,6.562,6.562,0,-11,1,2.2,-0.300000000000001,0 -"376",1262,2,0,7.192,7.192,1,-6,0,-5.9,-2.8,-3 -"377",1263,2,0,7.877,7.877,0,-19,1,0.100000000000001,0.199999999999999,0 -"378",1264,2,0,2.066,2.066,1,-37,0,8.3,-0.800000000000001,0 -"379",1265,2,0,2.327,2.327,0,-14,1,0.600000000000001,0.399999999999999,3 -"380",1266,2,0,1.369,1.369,1,1,0,3.4,-1.1,-2 -"381",1267,2,0,1.948,1.948,0,3,1,1.7,0.5,-5 -"382",1268,2,0,0.008,0.008,1,5,1,4.6,0.399999999999999,3 -"383",1269,2,0,0.246,0.246,1,-17,1,0.299999999999997,-0.0999999999999996,10 -"384",1270,2,0,4.972,4.972,0,-15,1,-2.6,-0.6,6 -"385",1271,2,0,1.524,1.524,1,0,1,6.1,0.100000000000001,1 -"386",1272,2,0,1.654,1.654,1,5,1,4.1,0.5,-4 -"387",1273,2,0,0.045,0.045,1,20,1,0.5,-1.9,6 -"388",1274,2,0,6.346,6.346,0,-17,1,-0.799999999999997,-1.1,6 -"389",1275,2,0,10,10,0,-14,1,-9.6,-0.9,-7 -"390",1276,2,0,10,10,0,-35,0,-4.7,1.1,3 -"391",1277,2,0,4.524,4.524,0,-18,0,3.7,0,-1 -"392",1278,2,0,7.159,7.159,0,10,1,12,-0.9,1 -"393",1279,2,0,8.33,8.33,0,-9,0,-1,-0.6,1 -"394",1280,2,0,0.109,0.109,0,-2,1,-6.9,-1.4,2 -"395",1281,2,0,8.301,8.301,0,2,0,2.1,-0.5,2 -"396",1282,2,0,1.741,1.741,1,6,0,4,1,-6 -"397",1283,2,0,10,10,0,-12,0,-1.2,0.600000000000001,-8 -"398",1284,2,0,1.511,1.511,1,-16,1,0,1.6,-1 -"399",1285,2,0,6.616,6.616,0,-14,1,2.6,-2,-2 -"400",1286,2,0,7.971,7.971,1,5,1,2.5,-0.5,8 -"401",1287,2,0,1.463,1.463,0,-16,0,1.7,-1,-9 -"402",1288,2,0,1.504,1.504,1,19,1,3,-0.300000000000001,1 -"403",1289,2,0,0.53,0.53,0,16,1,2.2,0.600000000000001,1 -"404",1290,2,0,0.69,0.69,0,20,1,-2.8,-0.6,-4 -"405",1291,2,0,1.613,1.613,1,1,0,2.9,-1.5,5 -"406",1292,2,0,0.83,0.83,1,6,0,3.1,1.1,0 -"407",1293,2,0,10,10,0,-8,0,5.3,-1.3,1 -"408",1294,2,0,0.248,0.248,1,-3,1,0.200000000000003,-0.199999999999999,-1 -"409",1295,2,0,9.938,9.938,0,30,1,-8.6,0,-12 -"410",1296,2,0,3.955,3.955,0,8,1,1.7,-1.2,2 -"411",1297,2,0,2.416,2.416,0,-1,1,-4.3,-0.6,6 -"412",1298,2,0,0.417,0.417,0,-4,1,-3.2,-1.5,9 -"413",1299,2,0,0.453,0.453,0,9,1,-1.7,1.3,-2 -"414",1300,2,0,5.061,5.061,0,7,1,2.2,-0.0999999999999996,-7 -"415",1301,2,0,1.291,1.291,0,22,0,-2.4,-1,-15 -"416",1302,2,0,0.721,0.721,0,-9,1,-1.4,-0.5,-6 -"417",1303,2,0,0.37,0.37,0,5,0,0.200000000000003,0.899999999999999,-5 -"418",1304,2,0,0.464,0.464,1,17,0,8.8,-0.699999999999999,2 -"419",1305,2,0,10,10,0,-14,0,-1.1,-1,1 -"420",1306,2,0,1.607,1.607,1,1,1,5.6,-1.3,-3 -"421",1307,2,0,1.967,1.967,1,23,1,-1.3,0.399999999999999,2 -"422",1308,2,0,0.149,0.149,1,21,1,10.6,0.300000000000001,-1 -"423",1309,2,0,8.195,8.195,0,14,1,-0.600000000000001,0.5,-4 -"424",1310,2,0,2.976,2.976,0,-27,1,-4.4,0.800000000000001,-5 -"425",1311,2,0,1.381,1.381,1,-13,0,-0.5,-0.699999999999999,3 -"426",1312,2,0,1.771,1.771,0,-25,1,2.9,-0.300000000000001,0 -"427",1313,2,0,1.241,1.241,1,10,0,1.4,-0.4,-2 -"428",1314,2,0,0.493,0.493,0,17,1,-3.8,-0.0999999999999996,-4 -"429",1315,2,0,0.192,0.192,1,-19,0,1.8,1.2,9 -"430",1316,2,0,4.187,4.187,0,-7,1,0.100000000000001,-0.800000000000001,10 -"431",1317,2,0,0.251,0.251,1,8,1,-5.9,2.6,-2 -"432",1318,2,0,0.104,0.104,1,28,0,-8.1,2.1,2 -"433",1319,2,0,1.68,1.68,0,-10,1,-3.6,-1.4,-3 -"434",1320,2,0,0.963,0.963,1,15,0,-1.7,-0.5,4 -"435",1321,2,0,1.827,1.827,1,-32,0,2.1,-0.0999999999999996,8 -"436",1322,2,0,6.412,6.412,0,-9,0,5.9,-0.699999999999999,-1 -"437",1323,2,0,7.842,7.842,0,-29,1,4.8,1,2 -"438",1324,2,0,0.189,0.189,1,28,0,-2.4,0.5,3 -"439",1325,2,0,0.748,0.748,1,-1,0,-8,1.7,5 -"440",1326,2,0,10,10,0,-15,0,-0.299999999999997,-0.6,-5 -"441",1327,2,0,0.725,0.725,0,12,0,-2.4,0.800000000000001,-9 -"442",1328,2,0,1.781,1.781,0,9,1,-4,1.4,-4 -"443",1329,2,0,0.17,0.17,1,-5,0,-0.399999999999999,1.6,-1 -"444",1330,2,0,6.197,6.197,0,6,1,1.6,-1,4 -"445",1331,2,0,0.088,0.088,0,2,0,-2,1.6,1 -"446",1332,2,0,1.548,1.548,1,21,1,-4,0,-4 -"447",1333,2,0,0.652,0.652,1,-2,0,3.3,-0.699999999999999,-2 -"448",1334,2,0,1.357,1.357,0,-10,1,3.5,-0.800000000000001,-1 -"449",1335,2,0,1.807,1.807,0,-1,0,0.5,0.100000000000001,-6 -"450",1336,2,0,10,10,0,-7,0,2.9,-1.2,-4 -"451",1337,2,0,1.029,1.029,0,-10,1,-2.1,0,7 -"452",1338,2,0,0.327,0.327,0,9,1,-3.3,-2.2,-1 -"453",1339,2,0,7.31,7.31,1,-5,1,0.799999999999997,-0.5,3 -"454",1340,2,0,6.054,6.054,0,-18,0,4.4,0.5,-3 -"455",1341,2,0,6.062,6.062,0,-10,0,0.299999999999997,0.300000000000001,-1 -"456",1342,2,0,0.922,0.922,0,-22,1,-4.5,-0.699999999999999,3 -"457",1343,2,0,5.416,5.416,0,-13,0,5.1,0,-12 -"458",1344,2,0,7.122,7.122,1,-6,0,-5.8,-0.5,4 -"459",1345,2,0,2.187,2.187,0,-9,1,0.299999999999997,0.5,1 -"460",1346,2,0,0.072,0.072,0,12,0,-0.200000000000003,1.7,-6 -"461",1347,2,0,0.661,0.661,0,-1,0,7.1,-0.300000000000001,3 -"462",1348,2,0,0.745,0.745,0,17,1,2.4,-0.300000000000001,3 -"463",1349,2,0,0.437,0.437,1,24,1,-5.2,-1.2,2 -"464",1350,2,0,10,10,0,9,0,-2.7,-1,-6 -"465",1351,2,0,3.626,3.626,0,1,1,1.9,-1.6,-1 -"466",1352,2,0,0.495,0.495,1,-10,1,-5.3,1.2,5 -"467",1353,2,0,10,10,0,14,1,2.2,0.100000000000001,-2 -"468",1354,2,0,5.166,5.166,0,0,0,1.6,-0.6,0 -"469",1355,2,0,10,10,0,13,1,-3.2,-0.800000000000001,-12 -"470",1356,2,0,0.131,0.131,0,6,1,-2.7,0.5,2 -"471",1357,2,0,8.154,8.154,0,-25,1,-5.3,0.800000000000001,5 -"472",1358,2,0,10,10,0,-10,0,10.8,0.5,-2 -"473",1359,2,0,0.158,0.158,1,22,0,-4.5,2.3,7 -"474",1360,2,0,1.861,1.861,1,-34,0,-1.5,1.3,0 -"475",1361,2,0,1.843,1.843,1,12,0,5.4,0.199999999999999,3 -"476",1362,2,0,0.669,0.669,1,24,0,-2,-1.6,-1 -"477",1363,2,0,2.362,2.362,1,11,0,5.6,-0.699999999999999,4 -"478",1364,2,0,10,10,0,5,1,0.700000000000003,0.199999999999999,-1 -"479",1365,2,0,0.756,0.756,0,7,1,3.2,0,5 -"480",1366,2,0,0.53,0.53,0,17,1,-3.4,0.800000000000001,-6 -"481",1367,2,0,4.134,4.134,0,-13,1,3.4,0.699999999999999,8 -"482",1368,2,0,2.402,2.402,0,-20,1,-0.700000000000003,-0.6,-6 -"483",1369,2,0,6.745,6.745,0,20,1,0.799999999999997,-0.9,-3 -"484",1370,2,0,1.884,1.884,0,-13,1,-2.2,1.1,-11 -"485",1371,2,0,7.172,7.172,0,1,0,-7,0.899999999999999,-1 -"486",1372,2,0,1.466,1.466,0,9,1,0.899999999999999,-1.2,-6 -"487",1373,2,0,2.883,2.883,0,25,0,-8.7,-1.1,-3 -"488",1374,2,0,0.044,0.044,1,11,0,-3.6,1,-3 -"489",1375,2,0,2.875,2.875,0,-4,1,3.1,0.600000000000001,0 -"490",1376,2,0,8.018,8.018,0,-21,0,3,-0.0999999999999996,2 -"491",1377,2,0,3.152,3.152,1,17,0,-1.5,-0.300000000000001,4 -"492",1378,2,0,2.165,2.165,0,-12,0,-7.1,-1.1,2 -"493",1379,2,0,2.026,2.026,1,2,0,-6,-0.6,-9 -"494",1380,2,0,1.071,1.071,1,-6,1,-0.700000000000003,1.1,-4 -"495",1381,2,0,1.568,1.568,0,7,1,-0.299999999999997,-0.199999999999999,1 -"496",1382,2,0,0.968,0.968,1,16,0,-1,-1.1,7 -"497",1383,2,0,4.719,4.719,1,13,1,0.100000000000001,0.199999999999999,0 -"498",1384,2,0,1.078,1.078,1,0,1,-3.5,0.699999999999999,1 -"499",1385,2,0,10,10,0,10,1,-1.3,-0.199999999999999,-4 -"500",1386,2,0,7.318,7.318,1,-22,1,-5.6,-0.0999999999999996,0 -"501",1387,2,0,10,10,0,-3,1,-2.3,1.1,2 -"502",1388,2,0,0.062,0.062,1,-10,1,-4.1,1,1 -"503",1389,2,0,0.723,0.723,1,12,0,1.7,0,-6 -"504",1390,2,0,2.683,2.683,0,-25,1,2.3,1,-1 -"505",1391,2,0,4.406,4.406,0,19,1,-1.7,-0.800000000000001,3 -"506",1392,2,0,0.658,0.658,1,26,0,1.7,-1.3,10 -"507",1393,2,0,1.039,1.039,1,16,1,-3.5,-0.0999999999999996,4 -"508",1394,2,0,0.098,0.098,1,-4,1,7.4,-0.0999999999999996,5 -"509",1395,2,0,0.519,0.519,0,2,1,-0.899999999999999,1.4,2 -"510",1396,2,0,1.536,1.536,0,6,0,1.2,-0.199999999999999,1 -"511",1397,2,0,0.343,0.343,1,13,0,0.600000000000001,-0.300000000000001,-1 -"512",1398,2,0,0.075,0.075,1,-2,1,-0.399999999999999,0.699999999999999,4 -"513",1399,2,0,0.366,0.366,1,5,0,-4.3,0.600000000000001,-7 -"514",1400,2,0,0.603,0.603,1,-19,1,-1.3,0.5,1 -"515",1401,2,0,3.722,3.722,0,-3,0,-3.4,0.600000000000001,-7 -"516",1402,2,0,3.834,3.834,1,0,0,3.5,-1.1,5 -"517",1403,2,0,0.183,0.183,1,-1,0,4.8,-1.4,4 -"518",1404,2,0,9.309,9.309,1,0,1,0.700000000000003,0.600000000000001,0 -"519",1405,2,0,1.128,1.128,1,24,0,-1,-0.199999999999999,-5 -"520",1406,2,0,4.27,4.27,0,-36,1,4.9,1.4,0 -"521",1407,2,0,6.201,6.201,1,-16,0,1,-0.6,-4 -"522",1408,2,0,5.59,5.59,0,-12,0,3.7,2.2,-1 -"523",1409,2,0,1.347,1.347,1,20,0,2.4,-1.7,4 -"524",1410,2,0,1.46,1.46,1,-3,1,0,1.5,-12 -"525",1411,2,0,0.321,0.321,1,4,1,-0.100000000000001,0.300000000000001,6 -"526",1412,2,0,0.367,0.367,1,-3,0,-4.7,0.300000000000001,1 -"527",1413,2,0,10,10,0,-1,1,4.8,-0.6,4 -"528",1414,2,0,10,10,0,-19,0,-1.6,-0.6,-6 -"529",1415,2,0,9.866,9.866,1,9,0,1.5,-0.699999999999999,-3 -"530",1416,2,0,4.424,4.424,0,11,1,2.5,-0.5,-1 -"531",1417,2,0,10,10,0,17,0,-2.6,0.899999999999999,-8 -"532",1418,2,0,1.908,1.908,0,6,1,0.100000000000001,-0.300000000000001,0 -"533",1419,2,0,1.14,1.14,0,-20,0,8,-2,-5 -"534",1420,2,0,10,10,0,-3,1,-3.3,-0.300000000000001,6 -"535",1421,2,0,10,10,0,-2,1,-1,-1.2,-1 -"536",1422,2,0,5.029,5.029,0,-24,0,-2.9,-1.2,-3 -"537",1423,2,0,4.049,4.049,0,-3,1,-3,0.699999999999999,-6 -"538",1424,2,0,0.087,0.087,0,-1,0,-0.200000000000003,-1.8,2 -"539",1425,2,0,2.615,2.615,1,-11,0,5.1,0.699999999999999,0 -"540",1426,2,0,10,10,0,-15,1,8.2,1.1,2 -"541",1427,2,0,0.817,0.817,0,5,0,-3.2,-0.699999999999999,-9 -"542",1428,2,0,10,10,0,-1,1,-2.6,0,-3 -"543",1429,2,0,10,10,0,2,1,-3.3,-0.199999999999999,-4 -"544",1430,2,0,8.976,8.976,0,-27,1,-0.200000000000003,-1,0 -"545",1431,2,0,0.902,0.902,1,21,1,-1.9,0.699999999999999,0 -"546",1432,2,0,1.674,1.674,1,-9,0,-3.9,2.1,-2 -"547",1433,2,0,10,10,0,-26,1,-0.600000000000001,1.8,-1 -"548",1434,2,0,2.185,2.185,0,-27,1,-4.2,-0.199999999999999,11 -"549",1435,2,0,1.02,1.02,1,12,0,0.299999999999997,0,2 -"550",1436,2,0,0.72,0.72,1,-14,1,2.9,0.399999999999999,8 -"551",1437,2,0,0.244,0.244,1,11,1,1,1.4,2 -"552",1438,2,0,2.543,2.543,1,-19,0,-0.299999999999997,-0.300000000000001,7 -"553",1439,2,0,0.844,0.844,1,-27,0,5.5,0.5,-5 -"554",1440,2,0,2.279,2.279,0,8,1,0.700000000000003,-1.3,-5 -"555",1441,2,0,2.186,2.186,0,-25,1,3.4,-0.699999999999999,7 -"556",1442,2,0,3.49,3.49,0,6,1,-2.7,0.399999999999999,1 -"557",1443,2,0,0.898,0.898,1,34,0,-3.9,-0.6,1 -"558",1444,2,0,0.257,0.257,1,32,0,-4,1.7,-1 -"559",1445,2,0,1.103,1.103,0,-17,1,5.6,-0.6,6 -"560",1446,2,0,1.754,1.754,1,12,0,2.5,0.300000000000001,2 -"561",1447,2,0,4.203,4.203,0,-12,1,-9.7,-0.0999999999999996,1 -"562",1448,2,0,10,10,0,-22,1,0.899999999999999,-0.800000000000001,1 -"563",1449,2,0,10,10,0,-9,0,5.8,-1.4,-8 -"564",1450,2,0,4.322,4.322,0,-16,0,3.4,-1.8,-4 -"565",1451,2,0,1.452,1.452,0,-13,1,7.9,-0.6,5 -"566",1452,2,0,9.762,9.762,0,-30,0,-3.1,-1.1,2 -"567",1453,2,0,6.788,6.788,1,22,0,0.600000000000001,-0.5,-7 -"568",1454,2,0,3.986,3.986,1,3,1,-4.5,1.2,1 -"569",1455,2,0,0.133,0.133,0,4,0,-3.2,0.300000000000001,2 -"570",1456,2,0,2.947,2.947,0,-20,1,-1.4,-0.199999999999999,8 -"571",1457,2,0,0.736,0.736,0,-11,0,3.9,0.199999999999999,2 -"572",1458,2,0,8.729,8.729,0,-11,1,-3.6,-0.4,-6 -"573",1459,2,0,1.774,1.774,1,-2,1,0.700000000000003,1.7,-1 -"574",1460,2,0,0.155,0.155,0,-11,1,-6.2,0.100000000000001,8 -"575",1461,2,0,0.731,0.731,0,7,1,0.5,0.399999999999999,-6 -"576",1462,2,0,0.446,0.446,0,-32,1,4.5,2.3,2 -"577",1463,2,0,7.136,7.136,0,6,0,0.100000000000001,-1.5,-2 -"578",1464,2,0,10,10,0,-20,1,-2,-0.699999999999999,-2 -"579",1465,2,0,6.078,6.078,0,12,1,-5.3,-0.4,1 -"580",1466,2,0,0.32,0.32,1,14,1,6.9,1,6 -"581",1467,2,0,4.565,4.565,1,-17,0,-0.200000000000003,0.300000000000001,-3 -"582",1468,2,0,0.878,0.878,0,6,1,1.7,-0.699999999999999,3 -"583",1469,2,0,0.229,0.229,0,-15,0,2.9,0.5,2 -"584",1470,2,0,2.876,2.876,1,-10,1,-5.5,2.6,3 -"585",1471,2,0,0.106,0.106,1,21,0,-1.1,0.199999999999999,6 -"586",1472,2,0,1.41,1.41,1,-18,0,0.600000000000001,-0.199999999999999,-2 -"587",1473,2,0,1.42,1.42,1,-8,1,-3.5,-0.199999999999999,4 -"588",1474,2,0,7.962,7.962,0,-13,1,1.3,-0.699999999999999,-2 -"589",1475,2,0,2.352,2.352,0,3,1,-2.9,0,-6 -"590",1476,2,0,1.29,1.29,1,-18,1,-2,1.7,6 -"591",1477,2,0,8.419,8.419,0,-20,1,1.6,-1,-12 -"592",1478,2,0,3.808,3.808,0,-23,1,2.8,0.199999999999999,-2 -"593",1479,2,0,8.13,8.13,0,-4,0,-7.4,-0.6,-5 -"594",1480,2,0,0.025,0.025,1,24,0,-3.4,-1.1,5 -"595",1481,2,0,2.712,2.712,0,-19,0,5.6,-2,3 -"596",1482,2,0,0.141,0.141,1,-6,1,-1.3,0.300000000000001,1 -"597",1483,2,0,4.952,4.952,0,-4,0,-0.600000000000001,-0.699999999999999,0 -"598",1484,2,0,0.931,0.931,0,4,1,0.100000000000001,-1.2,-5 -"599",1485,2,0,10,10,0,-46,1,-1.2,-0.0999999999999996,9 -"600",1486,2,0,0.77,0.77,0,15,0,0.200000000000003,-0.5,-4 -"601",1487,2,0,10,10,0,2,1,-0.100000000000001,-0.4,5 -"602",1488,2,0,1.62,1.62,1,-14,0,2.7,0.899999999999999,-4 -"603",1489,2,0,0.735,0.735,1,17,1,-5.7,-0.699999999999999,-2 -"604",1490,2,0,1.204,1.204,1,-1,0,4.3,-0.199999999999999,-1 -"605",1491,2,0,10,10,0,8,1,-1.3,-0.4,-7 -"606",1492,2,0,1.57,1.57,0,-8,1,3.7,-0.699999999999999,4 -"607",1493,2,0,5.08,5.08,0,-38,0,4.8,0.399999999999999,9 -"608",1494,2,0,4.791,4.791,1,7,0,-8.1,0.100000000000001,3 -"609",1495,2,0,0.701,0.701,1,2,0,-4.2,-1.1,3 -"610",1496,2,0,5.292,5.292,0,11,0,0.600000000000001,-0.5,-6 -"611",1497,2,0,2.429,2.429,0,-15,0,5.2,0.800000000000001,8 -"612",1498,2,0,0.371,0.371,1,9,0,-1.9,0.600000000000001,0 -"613",1499,2,0,10,10,0,11,1,-0.5,-1,-3 -"614",1500,2,0,1.984,1.984,1,-29,1,1.3,2.3,2 -"615",1501,2,0,0.803,0.803,1,0,1,2.5,2,-2 -"616",1502,2,0,1.078,1.078,1,13,1,1,-0.9,5 -"617",1503,2,0,1.658,1.658,1,-7,1,5.7,-0.6,3 -"618",1504,2,0,10,10,0,-21,1,-0.5,1.3,2 -"619",1505,2,0,1.291,1.291,0,-23,0,-1.1,-0.0999999999999996,3 -"620",1506,2,0,10,10,0,4,0,1.6,-0.9,-1 -"621",1507,2,0,9.013,9.013,1,-24,1,1.1,-0.9,3 -"622",1508,2,0,0.052,0.052,1,-15,1,0,1.3,3 -"623",1509,2,0,1.257,1.257,0,-14,1,-3.1,-0.800000000000001,7 -"624",1510,2,0,1.677,1.677,1,7,1,0.399999999999999,-0.9,-5 -"625",1511,2,0,1.421,1.421,0,-2,0,1.6,-0.699999999999999,1 -"626",1512,2,0,1.357,1.357,1,-3,0,-1.1,0.399999999999999,5 -"627",1513,2,0,0.472,0.472,1,-2,1,-5.9,2.3,-8 -"628",1514,2,0,3,3,1,11,1,5.5,0.300000000000001,6 -"629",1515,2,0,4.762,4.762,0,3,0,-9.2,-1.7,-5 -"630",1516,2,0,0.368,0.368,1,16,1,-2.1,0.600000000000001,6 -"631",1517,2,0,1.036,1.036,0,5,1,7.4,1.1,5 -"632",1518,2,0,1.48,1.48,1,30,0,7.3,-0.6,-5 -"633",1519,2,0,1.364,1.364,0,-24,0,3.8,0.300000000000001,-7 -"634",1520,2,0,0.108,0.108,0,0,0,-2.5,0.600000000000001,13 -"635",1521,2,0,7.834,7.834,1,0,0,-4.5,2.1,-8 -"636",1522,2,0,10,10,0,-1,1,-3.6,-1.6,-4 -"637",1523,2,0,10,10,0,-20,0,4.8,-0.5,-2 -"638",1524,2,0,1.641,1.641,0,-26,1,-3.6,-0.199999999999999,-6 -"639",1525,2,0,1.417,1.417,1,-11,1,6,1.4,8 -"640",1526,2,0,10,10,0,5,1,-6.8,0.699999999999999,1 -"641",1527,2,0,0.058,0.058,1,13,0,7.3,0.899999999999999,4 -"642",1528,2,0,2.203,2.203,0,-15,0,-4.8,-0.699999999999999,-3 -"643",1529,2,0,0.568,0.568,1,10,1,-5,0.800000000000001,-3 -"644",1530,2,0,0.317,0.317,1,-3,1,2.6,-0.6,4 -"645",1531,2,0,1.953,1.953,0,3,1,-1.7,-0.800000000000001,-4 -"646",1532,2,0,4.364,4.364,0,-25,0,-1.5,1.3,-2 -"647",1533,2,0,0.034,0.034,0,8,0,0.700000000000003,0.699999999999999,-3 -"648",1534,2,0,4.49,4.49,0,-11,0,-2.2,0.300000000000001,4 -"649",1535,2,0,9.187,9.187,0,-1,1,1.8,1,-10 -"650",1536,2,0,0.478,0.478,1,15,1,-1.5,0.600000000000001,1 -"651",1537,2,0,10,10,0,-19,0,-5,-1.2,-4 -"652",1538,2,0,10,10,0,-2,1,3.4,-1.1,-5 -"653",1539,2,0,10,10,0,10,1,3.9,0.800000000000001,-1 -"654",1540,2,0,0.456,0.456,1,11,1,-8.2,-0.6,-5 -"655",1541,2,0,0.082,0.082,1,28,0,-9.9,-0.0999999999999996,-2 -"656",1542,2,0,0.377,0.377,1,12,1,-3.7,0.699999999999999,-1 -"657",1543,2,0,3.386,3.386,0,-7,1,0,-0.800000000000001,-9 -"658",1544,2,0,2.456,2.456,1,3,0,-4,-0.199999999999999,-1 -"659",1545,2,0,0.329,0.329,1,-15,0,-7.4,-0.0999999999999996,-4 diff --git a/tests/testthat/data_files/SURVIVAL/COLLAPSE_NO_MISSING/collapse_no_missing_study3.csv b/tests/testthat/data_files/SURVIVAL/COLLAPSE_NO_MISSING/collapse_no_missing_study3.csv deleted file mode 100644 index a98586f7..00000000 --- a/tests/testthat/data_files/SURVIVAL/COLLAPSE_NO_MISSING/collapse_no_missing_study3.csv +++ /dev/null @@ -1,1168 +0,0 @@ -"","ID","STUDY.ID","STARTTIME","ENDTIME","SURVTIME","CENS","age.60","female","noise.56","pm10.16","bmi.26" -"1",1546,3,0,8.026,8.026,0,-3,1,1.3,0,-7 -"2",1547,3,0,8.437,8.437,1,0,0,3.9,-1.3,3 -"3",1548,3,0,0.057,0.057,1,-1,0,3.6,1.3,12 -"4",1549,3,0,0.5,0.5,1,3,0,-2.5,0.699999999999999,3 -"5",1550,3,0,0.838,0.838,1,-11,0,4.1,0.800000000000001,1 -"6",1551,3,0,1.302,1.302,1,12,0,-6.4,-0.699999999999999,-2 -"7",1552,3,0,0.998,0.998,1,8,1,7.4,1.1,2 -"8",1553,3,0,8.086,8.086,0,-7,1,1,-1.6,-1 -"9",1554,3,0,7.914,7.914,0,13,1,2,-1.4,3 -"10",1555,3,0,5.208,5.208,0,5,1,-7.3,-1.2,8 -"11",1556,3,0,10,10,0,-2,1,1.6,-1.6,-6 -"12",1557,3,0,4.996,4.996,0,-31,0,5.8,0.899999999999999,4 -"13",1558,3,0,1.094,1.094,0,-28,0,-5.6,1.2,-9 -"14",1559,3,0,0.281,0.281,0,4,1,0.799999999999997,-0.699999999999999,2 -"15",1560,3,0,10,10,0,-33,0,1.8,0.300000000000001,-4 -"16",1561,3,0,8.455,8.455,1,1,0,-1.9,-0.0999999999999996,-2 -"17",1562,3,0,5.941,5.941,0,-3,0,-1.5,0.5,-3 -"18",1563,3,0,0.476,0.476,1,5,1,0.5,1.1,14 -"19",1564,3,0,4.484,4.484,0,-13,0,-6.4,-2.1,-4 -"20",1565,3,0,0.065,0.065,1,-4,0,-3.2,1.4,6 -"21",1566,3,0,3.671,3.671,0,-27,1,-0.899999999999999,0.300000000000001,-3 -"22",1567,3,0,4.122,4.122,0,-20,0,1.7,-1.1,-5 -"23",1568,3,0,0.082,0.082,1,36,0,-2.2,-0.300000000000001,3 -"24",1569,3,0,0.247,0.247,0,-24,1,-11.8,1,2 -"25",1570,3,0,6.343,6.343,0,-27,0,2.8,0.699999999999999,-5 -"26",1571,3,0,0.596,0.596,1,23,0,-1.9,-0.699999999999999,-3 -"27",1572,3,0,0.349,0.349,1,18,0,-4.7,0,0 -"28",1573,3,0,1.604,1.604,1,12,0,4.8,-0.0999999999999996,1 -"29",1574,3,0,0.158,0.158,1,23,1,-4.5,0.600000000000001,7 -"30",1575,3,0,5.596,5.596,0,6,1,1.1,-1.6,-3 -"31",1576,3,0,2.297,2.297,0,-1,0,3.9,0.199999999999999,-1 -"32",1577,3,0,0.725,0.725,0,22,0,0.899999999999999,-0.0999999999999996,5 -"33",1578,3,0,2.898,2.898,0,-17,0,3,-0.300000000000001,0 -"34",1579,3,0,0.393,0.393,1,11,1,5.2,1.3,-1 -"35",1580,3,0,0.267,0.267,1,1,0,-2.1,-0.6,5 -"36",1581,3,0,1.09,1.09,1,20,0,-5.1,-0.0999999999999996,5 -"37",1582,3,0,1.48,1.48,1,-21,1,2,-0.0999999999999996,10 -"38",1583,3,0,10,10,0,0,1,4.6,-0.0999999999999996,-5 -"39",1584,3,0,2.714,2.714,0,9,0,-5.9,-0.4,0 -"40",1585,3,0,0.132,0.132,1,33,1,4,-0.0999999999999996,-1 -"41",1586,3,0,2.872,2.872,1,-5,0,3,-1.9,2 -"42",1587,3,0,9.442,9.442,0,-35,0,-6.8,-0.5,5 -"43",1588,3,0,10,10,0,2,1,0,-0.800000000000001,2 -"44",1589,3,0,0.107,0.107,1,12,0,1.8,1.6,-1 -"45",1590,3,0,0.946,0.946,1,5,1,9.2,0.100000000000001,9 -"46",1591,3,0,1.407,1.407,1,-16,0,4.1,1.7,5 -"47",1592,3,0,10,10,0,-19,1,-6.4,-1,-6 -"48",1593,3,0,3.997,3.997,0,-2,1,2.1,-1,3 -"49",1594,3,0,5.911,5.911,0,17,1,4.2,-1,-3 -"50",1595,3,0,0.277,0.277,1,19,0,0.100000000000001,0.800000000000001,3 -"51",1596,3,0,10,10,0,3,1,-0.899999999999999,0.5,-9 -"52",1597,3,0,1.2,1.2,1,-13,1,0.700000000000003,-0.800000000000001,1 -"53",1598,3,0,1.986,1.986,1,1,1,1.5,-0.199999999999999,0 -"54",1599,3,0,0.878,0.878,0,8,0,-6,-0.699999999999999,11 -"55",1600,3,0,1.503,1.503,1,-18,1,7,0.699999999999999,-1 -"56",1601,3,0,6.866,6.866,0,-7,1,-1.2,1.1,6 -"57",1602,3,0,10,10,0,6,1,5.1,-0.9,0 -"58",1603,3,0,0.409,0.409,0,1,1,3.6,-0.199999999999999,2 -"59",1604,3,0,1.037,1.037,0,7,1,-3.3,1.3,0 -"60",1605,3,0,2.678,2.678,0,-7,0,-0.100000000000001,0,0 -"61",1606,3,0,8.478,8.478,0,-19,1,0.799999999999997,-1.2,0 -"62",1607,3,0,7.86,7.86,1,-3,1,-5.3,-0.800000000000001,3 -"63",1608,3,0,1.553,1.553,1,-14,1,3.4,1.4,-4 -"64",1609,3,0,0.011,0.011,1,13,0,-4.1,1.3,4 -"65",1610,3,0,1.252,1.252,1,-2,1,4.2,-0.6,6 -"66",1611,3,0,10,10,0,23,1,-0.299999999999997,1.1,-11 -"67",1612,3,0,0.672,0.672,0,-12,1,1.9,-0.5,-2 -"68",1613,3,0,10,10,0,7,0,1.7,-1.7,-3 -"69",1614,3,0,0.639,0.639,0,17,1,-1.2,-0.699999999999999,2 -"70",1615,3,0,2.562,2.562,1,-13,0,-0.299999999999997,-0.6,8 -"71",1616,3,0,0.02,0.02,1,16,0,1.1,0.5,2 -"72",1617,3,0,1.692,1.692,1,-7,1,-1.8,0.5,4 -"73",1618,3,0,1.463,1.463,1,20,0,2.1,-0.9,4 -"74",1619,3,0,3.66,3.66,0,-10,1,-1.9,-0.4,-8 -"75",1620,3,0,1.073,1.073,1,15,1,-3.8,1.1,-2 -"76",1621,3,0,10,10,0,-15,1,1,0.5,4 -"77",1622,3,0,2.963,2.963,0,-3,1,-1.7,0.699999999999999,-8 -"78",1623,3,0,10,10,0,-22,1,-3,-0.0999999999999996,6 -"79",1624,3,0,1.446,1.446,1,-14,0,-3.1,-1,4 -"80",1625,3,0,0.765,0.765,1,-11,0,1.8,1,3 -"81",1626,3,0,0.475,0.475,1,11,1,4.3,-0.800000000000001,4 -"82",1627,3,0,0.543,0.543,1,0,1,3.9,-0.0999999999999996,5 -"83",1628,3,0,2.615,2.615,0,-8,1,3.8,-0.300000000000001,-4 -"84",1629,3,0,0.35,0.35,1,-3,1,0.899999999999999,-1.3,3 -"85",1630,3,0,0.277,0.277,1,23,0,-1.4,0,-1 -"86",1631,3,0,1.784,1.784,1,-21,1,0.5,-0.4,6 -"87",1632,3,0,0.716,0.716,0,-27,0,4,0.600000000000001,2 -"88",1633,3,0,0.374,0.374,1,10,0,1.9,-0.5,9 -"89",1634,3,0,1.99,1.99,1,-3,0,-4.5,1.2,2 -"90",1635,3,0,6.839,6.839,1,3,0,-0.299999999999997,-0.0999999999999996,1 -"91",1636,3,0,1.267,1.267,1,20,0,0.700000000000003,0.199999999999999,-7 -"92",1637,3,0,3.163,3.163,0,-18,1,5.5,0.199999999999999,3 -"93",1638,3,0,0.16,0.16,1,23,1,2.3,3.1,2 -"94",1639,3,0,0.578,0.578,0,25,0,-6.4,-0.800000000000001,-5 -"95",1640,3,0,1.459,1.459,1,-1,0,2,-2.2,1 -"96",1641,3,0,10,10,0,0,1,1.5,-1.4,7 -"97",1642,3,0,1.645,1.645,1,-21,0,-1.2,-0.0999999999999996,0 -"98",1643,3,0,1.137,1.137,1,-7,1,0.200000000000003,1,2 -"99",1644,3,0,10,10,0,-2,1,-1.6,-0.9,3 -"100",1645,3,0,1.675,1.675,1,-3,0,-0.5,-0.199999999999999,3 -"101",1646,3,0,1.497,1.497,0,-27,1,0.799999999999997,-1.5,1 -"102",1647,3,0,0.386,0.386,0,-8,1,3.9,-0.800000000000001,-10 -"103",1648,3,0,10,10,0,-25,1,1.1,1.1,1 -"104",1649,3,0,8.081,8.081,0,-20,1,3.4,-2.1,7 -"105",1650,3,0,2.422,2.422,0,2,0,-0.700000000000003,0,-6 -"106",1651,3,0,0.99,0.99,1,-1,0,6.9,-0.300000000000001,0 -"107",1652,3,0,0.509,0.509,1,0,0,4.5,0.300000000000001,-3 -"108",1653,3,0,3.039,3.039,0,27,0,2.6,-0.800000000000001,3 -"109",1654,3,0,7.289,7.289,0,-10,1,-2.4,-0.800000000000001,1 -"110",1655,3,0,0.934,0.934,1,19,1,8.09999999999999,-0.4,-5 -"111",1656,3,0,0.671,0.671,0,9,0,-5.1,0,-6 -"112",1657,3,0,10,10,0,-13,0,-6.6,-0.0999999999999996,-4 -"113",1658,3,0,0.519,0.519,0,-7,0,4.2,1.1,0 -"114",1659,3,0,1.189,1.189,1,2,0,-3.5,0.300000000000001,-2 -"115",1660,3,0,0.834,0.834,0,11,1,2.3,-0.9,-6 -"116",1661,3,0,0.677,0.677,1,-18,0,-0.399999999999999,0.800000000000001,5 -"117",1662,3,0,0.113,0.113,1,27,1,0.799999999999997,-0.5,0 -"118",1663,3,0,0.103,0.103,0,8,1,5.3,-0.9,4 -"119",1664,3,0,1.161,1.161,1,17,1,4.3,-0.9,3 -"120",1665,3,0,0.4,0.4,0,13,0,1.4,0.600000000000001,5 -"121",1666,3,0,7.53,7.53,1,17,1,12.4,0.100000000000001,-2 -"122",1667,3,0,0.085,0.085,1,-4,0,-4.7,0.800000000000001,5 -"123",1668,3,0,1.934,1.934,1,-6,1,-2.6,1.1,-8 -"124",1669,3,0,0.132,0.132,0,1,0,-7.2,0.100000000000001,-2 -"125",1670,3,0,0.885,0.885,1,1,0,-0.899999999999999,-0.9,-1 -"126",1671,3,0,2.78,2.78,0,13,1,5.9,-0.199999999999999,-3 -"127",1672,3,0,10,10,0,7,1,2.6,-0.699999999999999,-2 -"128",1673,3,0,1.54,1.54,1,-23,1,-4.7,0.800000000000001,-6 -"129",1674,3,0,7.578,7.578,1,-6,0,7.9,-1.2,0 -"130",1675,3,0,0.401,0.401,1,-15,0,-4,0.699999999999999,2 -"131",1676,3,0,1.446,1.446,0,-9,0,10.9,-0.699999999999999,3 -"132",1677,3,0,1.745,1.745,1,-8,0,-6.9,0.800000000000001,-9 -"133",1678,3,0,2.218,2.218,0,-6,0,6.5,1,-3 -"134",1679,3,0,2.732,2.732,0,-16,0,4.4,0.5,6 -"135",1680,3,0,10,10,0,-5,0,1,-0.6,3 -"136",1681,3,0,8.192,8.192,0,-1,0,0.5,0,-8 -"137",1682,3,0,2.2,2.2,0,-17,1,-1.1,-1.8,4 -"138",1683,3,0,2.288,2.288,1,3,1,-1.3,1.1,-2 -"139",1684,3,0,7.607,7.607,0,21,0,2.1,-1.6,4 -"140",1685,3,0,0.515,0.515,1,12,0,3.2,0.899999999999999,2 -"141",1686,3,0,0.951,0.951,1,8,1,1,-0.300000000000001,-2 -"142",1687,3,0,2.336,2.336,0,14,0,-6.6,-0.5,3 -"143",1688,3,0,5,5,0,3,0,0.100000000000001,-0.699999999999999,0 -"144",1689,3,0,10,10,0,-17,1,2.7,-0.4,-1 -"145",1690,3,0,10,10,0,-6,1,3.4,-0.800000000000001,-2 -"146",1691,3,0,10,10,0,10,0,2.6,0.699999999999999,-9 -"147",1692,3,0,5.93,5.93,0,-9,1,-1.6,-1.1,-3 -"148",1693,3,0,3.135,3.135,1,-5,0,-6.8,1.6,2 -"149",1694,3,0,10,10,0,-4,1,0.399999999999999,-1,0 -"150",1695,3,0,2.714,2.714,1,8,1,-1.5,0.199999999999999,4 -"151",1696,3,0,1.892,1.892,1,-2,1,-4,1.6,-6 -"152",1697,3,0,9.805,9.805,0,-7,1,-0.399999999999999,-0.0999999999999996,-5 -"153",1698,3,0,0.802,0.802,1,2,0,10.2,0.199999999999999,3 -"154",1699,3,0,1.581,1.581,0,8,1,-0.799999999999997,-0.4,-9 -"155",1700,3,0,0.654,0.654,1,-9,0,4.4,-0.4,10 -"156",1701,3,0,0.34,0.34,1,5,0,-1,-0.0999999999999996,9 -"157",1702,3,0,0.041,0.041,1,9,0,-0.799999999999997,0.199999999999999,2 -"158",1703,3,0,0.029,0.029,1,11,0,7.9,1.1,14 -"159",1704,3,0,8.988,8.988,1,-15,1,4.9,-0.699999999999999,-4 -"160",1705,3,0,0.001,0.001,1,7,0,5.9,1.2,1 -"161",1706,3,0,1.092,1.092,1,26,1,3.8,-0.0999999999999996,2 -"162",1707,3,0,0.81,0.81,0,1,0,4.8,0.5,-1 -"163",1708,3,0,0.534,0.534,1,12,1,-0.700000000000003,0.100000000000001,1 -"164",1709,3,0,7.835,7.835,0,-6,1,-2.2,-1.2,-1 -"165",1710,3,0,1.897,1.897,0,0,0,-9,0.100000000000001,1 -"166",1711,3,0,0.245,0.245,1,-4,0,1,0.899999999999999,3 -"167",1712,3,0,0.382,0.382,0,-21,0,0.5,0.300000000000001,-4 -"168",1713,3,0,0.105,0.105,0,-9,0,-1.9,2,5 -"169",1714,3,0,0.331,0.331,0,-14,0,6.3,1.1,2 -"170",1715,3,0,1.2,1.2,0,-15,0,6.6,0.5,-5 -"171",1716,3,0,10,10,0,2,1,-3.2,-0.199999999999999,0 -"172",1717,3,0,1.496,1.496,1,30,1,5.8,-0.800000000000001,0 -"173",1718,3,0,1.517,1.517,1,2,0,2.4,0.199999999999999,-2 -"174",1719,3,0,2.39,2.39,0,-1,1,-0.5,-0.9,-2 -"175",1720,3,0,6.235,6.235,0,-37,1,-0.299999999999997,-0.4,-5 -"176",1721,3,0,6.932,6.932,1,6,0,8.2,0,-4 -"177",1722,3,0,7.372,7.372,0,1,1,-2.4,-1.1,1 -"178",1723,3,0,4.015,4.015,0,3,1,2.3,-1.2,-6 -"179",1724,3,0,0.074,0.074,1,17,0,0.299999999999997,0.699999999999999,4 -"180",1725,3,0,0.622,0.622,1,14,1,-3.8,0.300000000000001,-11 -"181",1726,3,0,0.417,0.417,0,-6,0,-3.9,0.5,1 -"182",1727,3,0,1.138,1.138,1,8,0,2.1,-0.199999999999999,6 -"183",1728,3,0,1.439,1.439,0,-30,0,7,-1,-2 -"184",1729,3,0,2.373,2.373,0,-16,1,-5.3,0.699999999999999,1 -"185",1730,3,0,4.084,4.084,1,10,1,3.3,-0.6,7 -"186",1731,3,0,0.529,0.529,0,-8,1,-4.8,0.5,-4 -"187",1732,3,0,1.409,1.409,1,-8,1,-1,1,-8 -"188",1733,3,0,4.239,4.239,0,-18,1,3.3,1.2,-3 -"189",1734,3,0,0.48,0.48,1,2,0,0.200000000000003,1,5 -"190",1735,3,0,0.131,0.131,0,8,0,3.9,0.899999999999999,-4 -"191",1736,3,0,0.185,0.185,1,24,1,2.8,-1.8,10 -"192",1737,3,0,0.656,0.656,1,3,0,6.1,-0.6,3 -"193",1738,3,0,3.122,3.122,0,-7,0,0.200000000000003,0.100000000000001,1 -"194",1739,3,0,0.868,0.868,1,4,0,2.8,-0.5,0 -"195",1740,3,0,4.409,4.409,0,-37,0,-2.8,-1.2,-6 -"196",1741,3,0,10,10,0,31,0,-3.1,-1.2,-7 -"197",1742,3,0,7.051,7.051,1,12,1,6.5,0.899999999999999,-2 -"198",1743,3,0,0.778,0.778,1,10,1,-4.3,1.1,2 -"199",1744,3,0,2.086,2.086,0,-1,0,-0.899999999999999,-0.199999999999999,-3 -"200",1745,3,0,0.403,0.403,1,-15,0,-3.8,2,7 -"201",1746,3,0,1.201,1.201,1,1,0,6.5,1.1,-4 -"202",1747,3,0,1.961,1.961,1,1,1,4.1,-0.4,1 -"203",1748,3,0,1.017,1.017,0,-11,0,8.09999999999999,-0.4,3 -"204",1749,3,0,0.373,0.373,1,16,1,4.9,0.899999999999999,3 -"205",1750,3,0,5.196,5.196,0,-21,0,3.3,0,-8 -"206",1751,3,0,1.114,1.114,1,24,0,-2.6,-0.6,-2 -"207",1752,3,0,1.179,1.179,0,-20,0,1,-0.300000000000001,3 -"208",1753,3,0,10,10,0,-10,0,1.5,0.600000000000001,4 -"209",1754,3,0,6.902,6.902,0,12,0,-6.1,-0.6,-5 -"210",1755,3,0,0.081,0.081,1,-14,0,1.4,0.699999999999999,2 -"211",1756,3,0,1.804,1.804,1,0,1,-3.6,1.4,3 -"212",1757,3,0,1.899,1.899,0,9,1,-6.7,-1.5,12 -"213",1758,3,0,0.207,0.207,0,16,0,-2.1,-1,9 -"214",1759,3,0,0.627,0.627,1,16,0,-3.3,-0.199999999999999,8 -"215",1760,3,0,9.135,9.135,0,10,0,2.9,-0.9,-5 -"216",1761,3,0,9.815,9.815,0,-6,1,5,-0.9,-6 -"217",1762,3,0,8.933,8.933,0,-20,1,0.100000000000001,0.100000000000001,-2 -"218",1763,3,0,1.03,1.03,1,-5,0,-5.1,-0.0999999999999996,6 -"219",1764,3,0,1.708,1.708,1,-5,0,0.600000000000001,0.600000000000001,0 -"220",1765,3,0,1.042,1.042,0,-12,0,-4,-2,-2 -"221",1766,3,0,2.223,2.223,0,-8,1,4.8,0.300000000000001,-10 -"222",1767,3,0,2.504,2.504,1,-2,0,-4.9,0.899999999999999,0 -"223",1768,3,0,0.539,0.539,0,6,1,0.899999999999999,0,-2 -"224",1769,3,0,7.518,7.518,0,-29,0,-0.200000000000003,0.100000000000001,6 -"225",1770,3,0,0.22,0.22,1,-26,0,7.6,1.1,4 -"226",1771,3,0,10,10,0,-10,0,1.7,0.399999999999999,-6 -"227",1772,3,0,0.617,0.617,0,0,1,-0.899999999999999,-1,3 -"228",1773,3,0,6.86,6.86,0,-7,1,1.8,1,-2 -"229",1774,3,0,4.421,4.421,0,8,1,0.200000000000003,-1,7 -"230",1775,3,0,6.562,6.562,1,-5,1,7.4,0,4 -"231",1776,3,0,1.928,1.928,1,-20,0,2.7,2,-6 -"232",1777,3,0,0.017,0.017,0,1,0,-7.3,0,-2 -"233",1778,3,0,10,10,0,7,1,5.2,-1.9,-6 -"234",1779,3,0,6.174,6.174,0,0,1,3.8,-0.0999999999999996,7 -"235",1780,3,0,4.656,4.656,0,-24,1,9.7,-1.2,5 -"236",1781,3,0,2.482,2.482,0,22,1,-3.6,0,-5 -"237",1782,3,0,8.742,8.742,1,-17,0,-8.3,1.9,-4 -"238",1783,3,0,1.518,1.518,1,-1,1,2.4,0.399999999999999,-6 -"239",1784,3,0,0.228,0.228,1,11,1,-3.2,0.800000000000001,-4 -"240",1785,3,0,0.564,0.564,0,11,1,-4.7,-0.0999999999999996,1 -"241",1786,3,0,0.196,0.196,1,28,0,6.3,0.5,-5 -"242",1787,3,0,5.714,5.714,1,29,0,-1.1,-1.3,-14 -"243",1788,3,0,3.118,3.118,0,-10,0,0.799999999999997,-0.800000000000001,1 -"244",1789,3,0,0.243,0.243,0,5,0,3.1,0.199999999999999,-9 -"245",1790,3,0,1.661,1.661,0,16,1,3.4,-0.199999999999999,4 -"246",1791,3,0,1.269,1.269,0,8,1,-0.5,-0.4,0 -"247",1792,3,0,4.782,4.782,0,-32,0,-1.2,0.5,7 -"248",1793,3,0,0.988,0.988,1,-6,0,2.9,1.2,5 -"249",1794,3,0,6.383,6.383,0,-2,0,0.600000000000001,0.399999999999999,-7 -"250",1795,3,0,1.513,1.513,1,-16,0,7,-0.5,-6 -"251",1796,3,0,0.017,0.017,0,2,1,-3.4,-2,5 -"252",1797,3,0,4.319,4.319,0,-26,1,-0.399999999999999,0,7 -"253",1798,3,0,2.23,2.23,0,-18,1,-7.9,-0.0999999999999996,-4 -"254",1799,3,0,1.688,1.688,1,20,0,-3.8,1.7,-13 -"255",1800,3,0,0.199,0.199,0,2,0,-6.2,-0.9,0 -"256",1801,3,0,0.412,0.412,1,25,0,7.2,-0.300000000000001,2 -"257",1802,3,0,0.476,0.476,1,5,0,-4.1,-0.800000000000001,2 -"258",1803,3,0,1.072,1.072,1,4,1,-3.5,0.399999999999999,5 -"259",1804,3,0,7.089,7.089,0,8,1,-1.2,-0.0999999999999996,-13 -"260",1805,3,0,1.722,1.722,1,-12,1,6.3,-0.300000000000001,4 -"261",1806,3,0,1.747,1.747,0,1,0,1.2,-2,4 -"262",1807,3,0,0.498,0.498,1,1,1,3.2,0.100000000000001,5 -"263",1808,3,0,6.29,6.29,0,0,0,-5.6,0.399999999999999,0 -"264",1809,3,0,0.065,0.065,1,13,0,0.799999999999997,2.1,2 -"265",1810,3,0,0.089,0.089,1,-7,0,2.6,1,5 -"266",1811,3,0,1.9,1.9,0,-4,1,-3.9,-0.0999999999999996,-8 -"267",1812,3,0,1.33,1.33,1,0,0,-0.200000000000003,0,-6 -"268",1813,3,0,10,10,0,21,1,-1.2,-0.4,-2 -"269",1814,3,0,0.48,0.48,1,10,0,0.399999999999999,0.300000000000001,5 -"270",1815,3,0,1.15,1.15,1,-9,0,10.9,1.4,-5 -"271",1816,3,0,0.541,0.541,1,-15,0,-4.2,-1.1,2 -"272",1817,3,0,3.563,3.563,0,-23,1,-3.2,1.5,2 -"273",1818,3,0,0.639,0.639,0,12,1,3.6,-0.0999999999999996,-8 -"274",1819,3,0,0.101,0.101,1,26,0,-1.1,1.5,0 -"275",1820,3,0,3.359,3.359,0,-25,0,-4.9,-0.5,-2 -"276",1821,3,0,0.255,0.255,1,18,0,0.299999999999997,1.6,-6 -"277",1822,3,0,4.731,4.731,0,12,0,2.4,-1.5,-2 -"278",1823,3,0,1.776,1.776,1,-2,1,-3.5,0.399999999999999,-2 -"279",1824,3,0,0.198,0.198,0,-1,1,-5.3,0.399999999999999,4 -"280",1825,3,0,2.602,2.602,1,-1,1,-2,-0.300000000000001,6 -"281",1826,3,0,10,10,0,11,0,8.59999999999999,-0.300000000000001,-5 -"282",1827,3,0,6.019,6.019,0,-14,1,-1.3,-0.800000000000001,3 -"283",1828,3,0,1.959,1.959,1,-2,1,-3.2,-0.699999999999999,3 -"284",1829,3,0,0.449,0.449,0,10,1,9.40000000000001,1.3,-2 -"285",1830,3,0,7.521,7.521,1,6,1,3.4,-0.800000000000001,-1 -"286",1831,3,0,0.348,0.348,1,22,0,0.700000000000003,0.800000000000001,4 -"287",1832,3,0,2.759,2.759,1,-13,0,-0.399999999999999,0.899999999999999,7 -"288",1833,3,0,5.259,5.259,0,-18,1,3.6,0.300000000000001,-5 -"289",1834,3,0,10,10,0,-3,1,6.5,0.100000000000001,-3 -"290",1835,3,0,0.769,0.769,1,19,0,-0.299999999999997,-1.1,0 -"291",1836,3,0,0.148,0.148,1,3,0,7.8,-0.6,0 -"292",1837,3,0,0.584,0.584,1,8,1,-4.4,0.399999999999999,-1 -"293",1838,3,0,0.092,0.092,1,17,0,4,-0.6,7 -"294",1839,3,0,6.539,6.539,0,-17,0,4.5,0.100000000000001,-3 -"295",1840,3,0,5.491,5.491,1,0,0,-1.3,-0.9,-4 -"296",1841,3,0,0.275,0.275,0,-3,0,5.8,0.5,1 -"297",1842,3,0,0.094,0.094,1,5,0,-1.4,-0.0999999999999996,6 -"298",1843,3,0,0.202,0.202,1,-17,1,5.6,-1,9 -"299",1844,3,0,1.403,1.403,1,0,0,7.3,-0.800000000000001,-1 -"300",1845,3,0,1.814,1.814,0,14,0,-5,-1.4,1 -"301",1846,3,0,6.049,6.049,1,-9,1,6.3,1.2,-3 -"302",1847,3,0,5.888,5.888,0,13,0,-2.2,-0.199999999999999,-1 -"303",1848,3,0,5.895,5.895,0,2,1,7.1,0.5,-4 -"304",1849,3,0,0.855,0.855,1,-16,1,-5.2,1.5,4 -"305",1850,3,0,10,10,0,-16,0,3.4,0.399999999999999,2 -"306",1851,3,0,1.234,1.234,0,-36,0,-8.5,0.899999999999999,-4 -"307",1852,3,0,0.385,0.385,1,14,0,1.3,-0.0999999999999996,6 -"308",1853,3,0,0.047,0.047,1,14,0,1.9,-1.2,0 -"309",1854,3,0,2.671,2.671,1,3,0,1,0.399999999999999,8 -"310",1855,3,0,2.787,2.787,1,14,1,0.5,2.1,-7 -"311",1856,3,0,1.04,1.04,0,-24,0,-1.1,-0.5,-4 -"312",1857,3,0,0.979,0.979,1,2,0,2.3,-0.9,9 -"313",1858,3,0,0.041,0.041,1,14,0,0.799999999999997,1.4,2 -"314",1859,3,0,2.661,2.661,0,-28,1,-7,-0.300000000000001,-6 -"315",1860,3,0,2.079,2.079,0,-15,1,-1.4,-1.3,-5 -"316",1861,3,0,3.931,3.931,0,-8,1,-0.799999999999997,0,2 -"317",1862,3,0,0.703,0.703,1,-1,1,5.5,2.4,1 -"318",1863,3,0,2.05,2.05,1,13,0,-4.9,-2.3,6 -"319",1864,3,0,7.077,7.077,0,-1,0,0.799999999999997,2.1,-6 -"320",1865,3,0,8.853,8.853,1,1,1,1.5,-0.4,1 -"321",1866,3,0,8.574,8.574,0,-6,1,4,-0.5,0 -"322",1867,3,0,0.165,0.165,1,-21,0,-0.700000000000003,1.4,-8 -"323",1868,3,0,0.609,0.609,1,7,1,0.299999999999997,0.399999999999999,2 -"324",1869,3,0,0.905,0.905,0,15,1,1.9,-0.0999999999999996,3 -"325",1870,3,0,0.75,0.75,1,-24,1,-2.4,0,1 -"326",1871,3,0,0.857,0.857,1,8,1,-0.700000000000003,-0.800000000000001,-5 -"327",1872,3,0,1.054,1.054,1,-3,0,3.2,-0.6,2 -"328",1873,3,0,1.131,1.131,1,10,0,-2,0.100000000000001,10 -"329",1874,3,0,1.308,1.308,0,-7,1,3.1,-0.300000000000001,-1 -"330",1875,3,0,1.076,1.076,0,14,1,1.3,0.600000000000001,2 -"331",1876,3,0,2.009,2.009,0,-2,1,-1.5,2.1,-4 -"332",1877,3,0,0.571,0.571,1,-2,0,-1,0,2 -"333",1878,3,0,0.079,0.079,1,0,0,-9.5,0.399999999999999,-5 -"334",1879,3,0,0.07,0.07,1,6,0,0.5,-0.199999999999999,-1 -"335",1880,3,0,0.951,0.951,1,1,0,-3.7,-1,-2 -"336",1881,3,0,0.062,0.062,1,-4,0,1.1,2.6,-5 -"337",1882,3,0,0.424,0.424,1,-15,0,5.1,0.199999999999999,2 -"338",1883,3,0,10,10,0,20,0,0,-0.699999999999999,-1 -"339",1884,3,0,0.896,0.896,1,19,1,-2,-0.300000000000001,12 -"340",1885,3,0,0.094,0.094,1,13,0,-0.200000000000003,0.899999999999999,6 -"341",1886,3,0,0.331,0.331,0,11,1,-2.4,-0.699999999999999,0 -"342",1887,3,0,0.54,0.54,1,-7,0,-0.600000000000001,0.800000000000001,0 -"343",1888,3,0,1.476,1.476,0,1,0,-1.6,0.399999999999999,-3 -"344",1889,3,0,0.812,0.812,1,19,1,1,-0.9,-5 -"345",1890,3,0,0.471,0.471,1,-1,0,5.7,1.7,9 -"346",1891,3,0,0.754,0.754,1,9,1,0.100000000000001,-0.0999999999999996,-5 -"347",1892,3,0,1.188,1.188,1,-20,1,-5.2,2,3 -"348",1893,3,0,10,10,0,-5,0,3,0.699999999999999,-5 -"349",1894,3,0,1.808,1.808,0,-2,0,-2.6,-1.9,3 -"350",1895,3,0,0.527,0.527,1,-5,0,-4.2,-0.199999999999999,8 -"351",1896,3,0,3.287,3.287,0,-9,0,-4,0.5,0 -"352",1897,3,0,4.745,4.745,0,5,0,-3.1,-1.2,-2 -"353",1898,3,0,0.089,0.089,1,1,0,4.5,2.1,1 -"354",1899,3,0,0.172,0.172,0,-17,1,5.8,1.2,-1 -"355",1900,3,0,2.965,2.965,0,-2,1,0.200000000000003,-0.199999999999999,8 -"356",1901,3,0,6.417,6.417,0,15,1,-0.399999999999999,-0.199999999999999,2 -"357",1902,3,0,0.57,0.57,1,4,0,-1.8,1.7,-4 -"358",1903,3,0,6.957,6.957,0,13,0,-4.4,0.800000000000001,-5 -"359",1904,3,0,0.352,0.352,0,-4,0,1.8,2.2,5 -"360",1905,3,0,0.163,0.163,1,24,1,-1.7,1,5 -"361",1906,3,0,0.566,0.566,1,14,1,2.7,1.3,1 -"362",1907,3,0,1.515,1.515,1,3,1,-0.200000000000003,-0.0999999999999996,-5 -"363",1908,3,0,0.043,0.043,0,-19,0,2.2,1.1,3 -"364",1909,3,0,6.97,6.97,1,-9,0,-3.8,1.1,-8 -"365",1910,3,0,10,10,0,-41,1,1.8,-1.6,-7 -"366",1911,3,0,4.619,4.619,1,-2,1,6,0.199999999999999,7 -"367",1912,3,0,3.044,3.044,0,15,1,-5.9,-1.2,-5 -"368",1913,3,0,5.805,5.805,1,7,1,3.7,0.600000000000001,3 -"369",1914,3,0,0.612,0.612,1,13,1,11,0.300000000000001,0 -"370",1915,3,0,1.157,1.157,0,-6,0,3.9,-0.4,-12 -"371",1916,3,0,10,10,0,-16,1,-1.4,-2.3,8 -"372",1917,3,0,0.296,0.296,1,23,0,-2.7,-0.199999999999999,5 -"373",1918,3,0,2.644,2.644,1,12,0,-1.6,-0.9,-1 -"374",1919,3,0,0.306,0.306,0,-24,0,-4.4,-0.300000000000001,-3 -"375",1920,3,0,4.534,4.534,0,-12,0,3.6,-1.1,-8 -"376",1921,3,0,6.647,6.647,1,7,1,1.3,0.399999999999999,-5 -"377",1922,3,0,1.402,1.402,0,11,1,-1.3,-0.0999999999999996,-10 -"378",1923,3,0,1.779,1.779,1,-2,0,0.5,0.5,1 -"379",1924,3,0,0.501,0.501,1,-4,0,3.7,1.1,-3 -"380",1925,3,0,1.72,1.72,1,-14,0,-2.6,-0.199999999999999,-5 -"381",1926,3,0,4.691,4.691,0,8,0,1.5,-0.300000000000001,7 -"382",1927,3,0,4.219,4.219,0,-14,0,-2.2,-1.3,0 -"383",1928,3,0,10,10,0,-12,1,-2.3,-0.9,-8 -"384",1929,3,0,0.901,0.901,1,15,0,-2.9,1.5,-8 -"385",1930,3,0,0.615,0.615,0,-1,1,1.6,1,2 -"386",1931,3,0,10,10,0,-21,1,0.799999999999997,-0.5,7 -"387",1932,3,0,1.463,1.463,0,-15,0,1.2,0.199999999999999,5 -"388",1933,3,0,9.482,9.482,1,-1,1,6,-1.5,7 -"389",1934,3,0,10,10,0,-38,0,1.4,1.7,-4 -"390",1935,3,0,0.588,0.588,0,1,0,-1.8,0.199999999999999,0 -"391",1936,3,0,0.149,0.149,1,6,0,-1.1,-0.300000000000001,5 -"392",1937,3,0,0.658,0.658,1,20,1,2,0.5,-4 -"393",1938,3,0,10,10,0,-3,1,2.2,-2.1,8 -"394",1939,3,0,1.304,1.304,1,0,0,5.9,0.5,2 -"395",1940,3,0,1.24,1.24,0,6,0,-3.1,0.300000000000001,-4 -"396",1941,3,0,0.339,0.339,1,7,0,5.1,-0.5,3 -"397",1942,3,0,10,10,0,-11,1,6.8,0.300000000000001,-4 -"398",1943,3,0,0.803,0.803,0,-32,0,5.3,0.800000000000001,4 -"399",1944,3,0,0.484,0.484,0,0,1,-0.899999999999999,0.699999999999999,2 -"400",1945,3,0,10,10,0,-8,1,-1.4,0.899999999999999,-9 -"401",1946,3,0,0.297,0.297,1,11,1,-2,-1.6,0 -"402",1947,3,0,2.606,2.606,1,-1,1,6.1,-0.6,1 -"403",1948,3,0,4.495,4.495,0,23,1,-10.3,0,-9 -"404",1949,3,0,0.162,0.162,1,24,0,-5,2.4,5 -"405",1950,3,0,0.872,0.872,1,14,1,-3.6,0.800000000000001,7 -"406",1951,3,0,1.41,1.41,1,12,1,1.4,-0.6,-9 -"407",1952,3,0,2.578,2.578,0,13,1,1.3,-0.0999999999999996,-4 -"408",1953,3,0,0.043,0.043,1,4,0,7.1,-0.0999999999999996,8 -"409",1954,3,0,0.013,0.013,1,36,0,-2,0.199999999999999,6 -"410",1955,3,0,2.795,2.795,0,-32,0,3.9,-1.5,0 -"411",1956,3,0,1.348,1.348,1,26,1,-3.7,0.5,1 -"412",1957,3,0,0.078,0.078,1,-24,0,9.40000000000001,0.699999999999999,-3 -"413",1958,3,0,10,10,0,-4,0,-5.9,2.2,-10 -"414",1959,3,0,8.006,8.006,1,-22,1,3.7,-1.1,3 -"415",1960,3,0,0.454,0.454,1,-5,0,0.600000000000001,1.5,0 -"416",1961,3,0,10,10,0,-6,0,-8.4,0.5,-5 -"417",1962,3,0,0.57,0.57,1,-21,1,-3.7,1.8,3 -"418",1963,3,0,0.93,0.93,1,1,0,1,0.699999999999999,5 -"419",1964,3,0,9.2,9.2,1,-13,0,1.7,-0.4,3 -"420",1965,3,0,4.846,4.846,1,9,0,-7,1.2,0 -"421",1966,3,0,10,10,0,-7,1,-2.7,1.5,-5 -"422",1967,3,0,0.252,0.252,1,3,1,-3.9,-0.0999999999999996,1 -"423",1968,3,0,0.545,0.545,1,5,0,-9.7,0.300000000000001,-7 -"424",1969,3,0,6.301,6.301,1,-9,1,-1.9,0.899999999999999,1 -"425",1970,3,0,0.624,0.624,1,19,0,-10.9,1.7,-3 -"426",1971,3,0,10,10,0,-4,1,10.4,-0.0999999999999996,3 -"427",1972,3,0,2.198,2.198,0,-26,0,2.5,-0.6,-7 -"428",1973,3,0,2.39,2.39,1,6,0,-0.600000000000001,0.5,-4 -"429",1974,3,0,0.092,0.092,1,13,1,-4.1,2.5,3 -"430",1975,3,0,0.996,0.996,0,2,1,3,-0.4,0 -"431",1976,3,0,4.324,4.324,0,-18,0,-5.2,-1.1,3 -"432",1977,3,0,2.083,2.083,0,-5,0,5.3,-0.199999999999999,0 -"433",1978,3,0,0.135,0.135,1,3,0,-2.4,1.2,8 -"434",1979,3,0,0.62,0.62,0,4,1,2.4,0.600000000000001,5 -"435",1980,3,0,8.006,8.006,1,-1,1,-2.9,0.399999999999999,4 -"436",1981,3,0,3.671,3.671,0,-6,1,0.399999999999999,-0.800000000000001,2 -"437",1982,3,0,5.662,5.662,0,7,0,6.2,-2.4,-1 -"438",1983,3,0,3.578,3.578,0,-26,1,2.2,0.199999999999999,-3 -"439",1984,3,0,10,10,0,-13,0,2.5,-0.699999999999999,-4 -"440",1985,3,0,1.125,1.125,0,-6,1,0.899999999999999,0.600000000000001,-5 -"441",1986,3,0,0.898,0.898,0,-7,0,2.5,0.699999999999999,8 -"442",1987,3,0,5.337,5.337,0,18,1,0.299999999999997,1.6,-9 -"443",1988,3,0,0.932,0.932,0,-12,1,2.6,-0.5,-2 -"444",1989,3,0,0.11,0.11,1,16,1,2.5,1.9,4 -"445",1990,3,0,0.892,0.892,1,-20,0,6.1,0.100000000000001,-3 -"446",1991,3,0,1.226,1.226,1,14,0,2.7,0.600000000000001,10 -"447",1992,3,0,0.336,0.336,1,14,0,8.2,0.100000000000001,-5 -"448",1993,3,0,1.7,1.7,1,-28,0,-6.1,-0.800000000000001,6 -"449",1994,3,0,8.714,8.714,1,7,1,-7.7,0.5,3 -"450",1995,3,0,0.127,0.127,1,-5,0,-4.8,-1.2,6 -"451",1996,3,0,10,10,0,-16,1,-7.8,-0.0999999999999996,-6 -"452",1997,3,0,0.027,0.027,1,14,0,-10.3,-0.699999999999999,1 -"453",1998,3,0,6.33,6.33,0,-18,1,-5.9,-0.199999999999999,-9 -"454",1999,3,0,2.436,2.436,0,-13,1,-0.100000000000001,0.199999999999999,-7 -"455",2000,3,0,1.703,1.703,1,-7,0,5.4,1.8,-5 -"456",2001,3,0,6.529,6.529,1,-17,0,6.1,0.300000000000001,-2 -"457",2002,3,0,0.809,0.809,1,12,0,-2.1,-0.9,4 -"458",2003,3,0,0.075,0.075,1,17,0,8.2,0.699999999999999,2 -"459",2004,3,0,1.152,1.152,0,-14,1,-3.4,0.600000000000001,-3 -"460",2005,3,0,0.097,0.097,0,6,0,-3.7,1.4,-2 -"461",2006,3,0,4.687,4.687,0,16,1,-4.2,0.300000000000001,-2 -"462",2007,3,0,3.499,3.499,0,-12,1,5.8,-0.0999999999999996,-1 -"463",2008,3,0,0.762,0.762,1,-7,0,-1,-0.800000000000001,5 -"464",2009,3,0,1.476,1.476,1,-6,0,-5.3,0.300000000000001,0 -"465",2010,3,0,1.347,1.347,0,4,1,-5.3,-0.800000000000001,-1 -"466",2011,3,0,2.024,2.024,0,5,1,7.1,0.300000000000001,-7 -"467",2012,3,0,0.363,0.363,1,8,0,-2.6,-0.699999999999999,2 -"468",2013,3,0,1.823,1.823,1,-1,0,-3.6,-1.2,3 -"469",2014,3,0,0.201,0.201,1,35,1,0.799999999999997,1.2,-2 -"470",2015,3,0,0.382,0.382,1,3,0,-0.899999999999999,-0.4,3 -"471",2016,3,0,4.975,4.975,0,-6,0,1.7,-0.699999999999999,-1 -"472",2017,3,0,0.341,0.341,0,11,1,5,0.600000000000001,1 -"473",2018,3,0,10,10,0,5,1,-4.6,-2.2,-4 -"474",2019,3,0,1.034,1.034,0,-13,1,-1,1.8,0 -"475",2020,3,0,0.812,0.812,1,11,0,-3.5,2,-6 -"476",2021,3,0,5.085,5.085,0,-14,0,3.4,0.699999999999999,-4 -"477",2022,3,0,0.792,0.792,0,3,1,0.100000000000001,-1.3,2 -"478",2023,3,0,9.88,9.88,0,-16,0,-6.3,-2.6,-3 -"479",2024,3,0,0.423,0.423,1,15,1,8.90000000000001,-0.0999999999999996,1 -"480",2025,3,0,0.285,0.285,1,5,0,-0.600000000000001,1.7,-1 -"481",2026,3,0,3.08,3.08,0,-21,0,-12.9,-0.699999999999999,3 -"482",2027,3,0,0.279,0.279,0,-8,1,0.200000000000003,-1.6,-6 -"483",2028,3,0,1.254,1.254,0,-7,1,4.8,-0.4,1 -"484",2029,3,0,3.102,3.102,1,-14,0,-3.1,0.800000000000001,2 -"485",2030,3,0,0.51,0.51,0,-12,0,-2,-1.1,6 -"486",2031,3,0,4.738,4.738,0,-7,0,2.3,-0.4,-6 -"487",2032,3,0,0.879,0.879,1,14,1,-4.3,0.5,10 -"488",2033,3,0,1.181,1.181,1,-6,0,1.5,-1.4,1 -"489",2034,3,0,8.348,8.348,0,-5,0,-6.4,0,-5 -"490",2035,3,0,8.386,8.386,1,2,0,-2.8,0.399999999999999,4 -"491",2036,3,0,0.082,0.082,1,41,0,-3.8,1.9,-4 -"492",2037,3,0,0.815,0.815,1,-3,1,6.1,-1.9,5 -"493",2038,3,0,1.111,1.111,1,5,0,-2,-0.9,-2 -"494",2039,3,0,0.58,0.58,1,20,0,1.5,0,0 -"495",2040,3,0,6.025,6.025,0,-23,1,-2.8,-1.1,0 -"496",2041,3,0,0.875,0.875,1,25,0,4.4,-0.300000000000001,8 -"497",2042,3,0,0.991,0.991,1,-1,0,-1.8,-0.6,4 -"498",2043,3,0,0.003,0.003,0,-10,1,2.3,0.399999999999999,-1 -"499",2044,3,0,7.19,7.19,0,16,0,2,-1.5,7 -"500",2045,3,0,1.332,1.332,1,-10,1,-0.299999999999997,1.5,-5 -"501",2046,3,0,0.326,0.326,0,7,1,-0.899999999999999,-0.199999999999999,-1 -"502",2047,3,0,0.323,0.323,1,6,0,-5.2,1.5,4 -"503",2048,3,0,0.121,0.121,1,39,1,-4.3,-1.1,7 -"504",2049,3,0,5.87,5.87,0,-2,1,-3,1.4,-4 -"505",2050,3,0,1.304,1.304,1,13,0,-10.2,0.399999999999999,8 -"506",2051,3,0,10,10,0,8,1,-3.1,-0.199999999999999,-4 -"507",2052,3,0,9.275,9.275,1,-13,1,-5.1,1.2,-3 -"508",2053,3,0,1.336,1.336,0,-1,1,7.7,1,-6 -"509",2054,3,0,0.23,0.23,0,-9,1,-1.4,0.199999999999999,10 -"510",2055,3,0,0.705,0.705,1,14,1,2.4,-0.0999999999999996,-1 -"511",2056,3,0,0.838,0.838,1,5,0,1.2,1.4,-5 -"512",2057,3,0,3.203,3.203,0,-11,1,4.9,-1.5,-3 -"513",2058,3,0,0.079,0.079,1,14,0,1.3,0.300000000000001,-2 -"514",2059,3,0,1.656,1.656,0,-16,1,2.5,-1.3,4 -"515",2060,3,0,0.098,0.098,1,13,1,1.9,0.899999999999999,1 -"516",2061,3,0,8.956,8.956,0,-1,1,-3.1,-0.0999999999999996,-7 -"517",2062,3,0,0.691,0.691,1,5,0,8.09999999999999,-0.9,-8 -"518",2063,3,0,1.387,1.387,0,4,0,0.399999999999999,-2,-1 -"519",2064,3,0,1.947,1.947,1,-1,0,4.2,-0.699999999999999,-2 -"520",2065,3,0,0.101,0.101,1,2,1,-0.100000000000001,1,5 -"521",2066,3,0,0.004,0.004,1,20,0,4.5,1.5,-10 -"522",2067,3,0,0.05,0.05,1,8,0,-4.3,2.2,-1 -"523",2068,3,0,0.551,0.551,1,6,0,-3.5,1,1 -"524",2069,3,0,7.662,7.662,0,-16,0,1.2,0.199999999999999,6 -"525",2070,3,0,5.242,5.242,0,3,1,-3.2,0.699999999999999,-5 -"526",2071,3,0,2.335,2.335,0,-16,0,4.5,-1,-1 -"527",2072,3,0,10,10,0,8,0,-0.399999999999999,0,1 -"528",2073,3,0,1.668,1.668,1,-11,1,2,-0.199999999999999,4 -"529",2074,3,0,0.535,0.535,0,-8,0,-4.1,0.100000000000001,-3 -"530",2075,3,0,10,10,0,0,1,1.8,-1.9,4 -"531",2076,3,0,0.122,0.122,1,25,0,3.9,0.5,5 -"532",2077,3,0,0.087,0.087,0,0,1,2,0.699999999999999,2 -"533",2078,3,0,0.185,0.185,1,15,1,0.200000000000003,-0.199999999999999,-4 -"534",2079,3,0,7.926,7.926,0,-11,0,-3.1,0.800000000000001,1 -"535",2080,3,0,5.344,5.344,0,-20,0,-7,0.300000000000001,0 -"536",2081,3,0,0.437,0.437,0,6,0,1.9,1.5,-4 -"537",2082,3,0,0.267,0.267,0,11,0,-0.200000000000003,-0.300000000000001,-2 -"538",2083,3,0,1.911,1.911,0,-1,0,-6.2,-1.7,2 -"539",2084,3,0,5.475,5.475,1,17,1,2.3,1.2,-10 -"540",2085,3,0,10,10,0,-7,0,-2.2,-0.800000000000001,2 -"541",2086,3,0,0.706,0.706,1,23,1,5.5,0.699999999999999,-1 -"542",2087,3,0,0.487,0.487,1,0,0,-7.9,1.5,6 -"543",2088,3,0,0.292,0.292,1,1,1,-5.1,0.5,7 -"544",2089,3,0,4.14,4.14,0,1,1,-5,-0.6,0 -"545",2090,3,0,10,10,0,-1,0,-1,-1.2,-1 -"546",2091,3,0,10,10,0,-36,0,-0.5,-0.4,-2 -"547",2092,3,0,0.682,0.682,1,20,1,6.3,0.899999999999999,8 -"548",2093,3,0,0.978,0.978,0,-29,0,3.3,1,-6 -"549",2094,3,0,7.487,7.487,0,-15,1,-0.700000000000003,-0.9,-5 -"550",2095,3,0,0.675,0.675,0,19,0,-1.9,-1.2,5 -"551",2096,3,0,0.657,0.657,1,-13,0,5.5,2.3,8 -"552",2097,3,0,0.215,0.215,0,13,0,-1.9,-3.1,0 -"553",2098,3,0,2.997,2.997,1,4,1,0.299999999999997,0.399999999999999,7 -"554",2099,3,0,6.347,6.347,1,5,0,-5.1,0.300000000000001,-2 -"555",2100,3,0,6.651,6.651,1,3,1,-3.3,-0.199999999999999,3 -"556",2101,3,0,0.063,0.063,0,9,0,-2.6,0.699999999999999,0 -"557",2102,3,0,0.144,0.144,0,-17,0,0.100000000000001,-0.0999999999999996,-4 -"558",2103,3,0,1.672,1.672,0,-7,0,-2.4,-0.5,-1 -"559",2104,3,0,10,10,0,0,1,0.5,-0.800000000000001,-3 -"560",2105,3,0,5.214,5.214,1,4,1,2.7,-0.199999999999999,5 -"561",2106,3,0,1.008,1.008,1,14,1,-0.899999999999999,0.199999999999999,7 -"562",2107,3,0,0.294,0.294,0,-22,0,-0.100000000000001,0,-1 -"563",2108,3,0,0.9,0.9,0,17,1,1.5,-0.6,-13 -"564",2109,3,0,0.835,0.835,0,12,1,-2.9,0.100000000000001,-6 -"565",2110,3,0,10,10,0,3,1,5.9,0.600000000000001,-7 -"566",2111,3,0,0.444,0.444,1,-9,1,3.4,1.7,1 -"567",2112,3,0,3.568,3.568,0,1,1,5,1.1,-5 -"568",2113,3,0,0.74,0.74,1,-5,0,-6,0.199999999999999,-3 -"569",2114,3,0,1.805,1.805,1,16,1,7.6,-1.3,-3 -"570",2115,3,0,10,10,0,8,0,-17.8,-0.300000000000001,-10 -"571",2116,3,0,10,10,0,-14,1,1.7,-0.199999999999999,-1 -"572",2117,3,0,6.046,6.046,1,9,1,1,0,3 -"573",2118,3,0,0.205,0.205,1,34,0,-4.2,0.800000000000001,10 -"574",2119,3,0,5.104,5.104,0,7,1,-2.4,1.3,-2 -"575",2120,3,0,3.571,3.571,0,2,0,-2.3,-0.4,-4 -"576",2121,3,0,3.234,3.234,0,-7,1,-1,0.199999999999999,-6 -"577",2122,3,0,0.205,0.205,0,-1,1,-0.600000000000001,-1.8,-4 -"578",2123,3,0,1.381,1.381,1,15,0,7.5,0,0 -"579",2124,3,0,0.687,0.687,1,2,0,-1.8,1.1,-2 -"580",2125,3,0,7.656,7.656,0,-10,1,-2.4,-0.199999999999999,2 -"581",2126,3,0,9.883,9.883,1,-16,1,0.100000000000001,1.1,-1 -"582",2127,3,0,0.913,0.913,0,9,1,7.6,-0.5,1 -"583",2128,3,0,0.03,0.03,1,16,0,-1.8,1.5,13 -"584",2129,3,0,10,10,0,-20,1,2.6,-0.9,6 -"585",2130,3,0,0.155,0.155,0,-14,1,-2.2,0.199999999999999,-7 -"586",2131,3,0,0.132,0.132,1,-23,0,2.5,0.899999999999999,3 -"587",2132,3,0,2.766,2.766,1,-3,0,2.3,-1,-1 -"588",2133,3,0,1.3,1.3,0,-9,1,-2.2,-0.0999999999999996,-5 -"589",2134,3,0,10,10,0,-3,1,5.1,-0.5,4 -"590",2135,3,0,1.004,1.004,0,10,1,6.9,-0.5,-4 -"591",2136,3,0,1.796,1.796,0,-1,1,1.3,0.300000000000001,-9 -"592",2137,3,0,0.219,0.219,1,1,1,-4.1,-1,5 -"593",2138,3,0,6.077,6.077,1,10,0,3.9,0.199999999999999,-2 -"594",2139,3,0,1.166,1.166,0,12,1,0.600000000000001,-0.0999999999999996,6 -"595",2140,3,0,1.153,1.153,0,-2,0,-2.7,-1.8,3 -"596",2141,3,0,0.529,0.529,1,14,0,-1.7,0.399999999999999,2 -"597",2142,3,0,0.289,0.289,1,9,0,0.799999999999997,1.7,5 -"598",2143,3,0,1.474,1.474,1,10,0,-3,0.800000000000001,4 -"599",2144,3,0,2.538,2.538,0,-13,0,5.3,-0.9,3 -"600",2145,3,0,0.764,0.764,1,32,1,4.6,-0.199999999999999,2 -"601",2146,3,0,10,10,0,1,1,6.3,-0.6,-6 -"602",2147,3,0,0.89,0.89,1,-9,1,3.7,0.100000000000001,4 -"603",2148,3,0,1.883,1.883,0,-3,1,8.40000000000001,-0.699999999999999,1 -"604",2149,3,0,0.316,0.316,0,17,1,1.7,0.600000000000001,0 -"605",2150,3,0,7.923,7.923,1,3,0,1.9,-0.199999999999999,-2 -"606",2151,3,0,3.787,3.787,0,-2,0,-6.2,0.300000000000001,2 -"607",2152,3,0,2.003,2.003,0,-10,1,-1.5,-0.300000000000001,6 -"608",2153,3,0,0.038,0.038,0,3,1,-4.5,-0.699999999999999,2 -"609",2154,3,0,2.035,2.035,0,16,1,2.5,-1.1,8 -"610",2155,3,0,1.756,1.756,1,-7,1,4.7,-0.199999999999999,4 -"611",2156,3,0,0.12,0.12,1,26,0,4.6,0.5,-4 -"612",2157,3,0,5.418,5.418,0,7,1,-1.1,-0.4,-3 -"613",2158,3,0,1.623,1.623,0,-7,1,-16.4,0.899999999999999,1 -"614",2159,3,0,0.277,0.277,1,-3,0,-6.4,-0.800000000000001,5 -"615",2160,3,0,9.724,9.724,0,-8,1,-3.8,0.399999999999999,-7 -"616",2161,3,0,1.188,1.188,1,18,0,3.4,-0.4,7 -"617",2162,3,0,3.436,3.436,0,-26,0,-4.5,-0.300000000000001,5 -"618",2163,3,0,10,10,0,-6,1,1.2,-1,-6 -"619",2164,3,0,10,10,0,-3,1,8.7,-1.3,-4 -"620",2165,3,0,2.909,2.909,0,-6,1,-4.3,-0.199999999999999,-14 -"621",2166,3,0,8.403,8.403,0,-16,1,3.2,-0.699999999999999,-4 -"622",2167,3,0,0.386,0.386,1,9,0,4.1,0.600000000000001,8 -"623",2168,3,0,1.053,1.053,0,-9,1,-4.3,-1.5,2 -"624",2169,3,0,0.265,0.265,0,4,0,0.299999999999997,-1.8,5 -"625",2170,3,0,9.93,9.93,0,3,1,4,-0.800000000000001,-1 -"626",2171,3,0,0.578,0.578,0,-30,0,0.799999999999997,-0.6,-15 -"627",2172,3,0,2.02,2.02,1,1,0,-6.4,-1.6,6 -"628",2173,3,0,0.074,0.074,1,-24,1,5.6,-0.4,8 -"629",2174,3,0,0.37,0.37,0,-8,0,-6.8,0.300000000000001,3 -"630",2175,3,0,0.592,0.592,0,-17,1,-3.6,-0.699999999999999,-4 -"631",2176,3,0,0.273,0.273,1,7,0,-5.9,-0.4,0 -"632",2177,3,0,8.031,8.031,0,-34,1,1.5,-1.3,4 -"633",2178,3,0,1.311,1.311,1,-9,0,-0.200000000000003,-1.2,7 -"634",2179,3,0,6.5,6.5,1,-16,1,-2.9,0.600000000000001,4 -"635",2180,3,0,1.127,1.127,0,11,1,-1.7,-0.0999999999999996,-3 -"636",2181,3,0,0.652,0.652,0,-17,0,-0.399999999999999,-0.5,-5 -"637",2182,3,0,0.938,0.938,0,-9,1,5.3,-0.699999999999999,3 -"638",2183,3,0,2.644,2.644,1,-24,0,-8.3,2.3,0 -"639",2184,3,0,10,10,0,-8,1,-1.5,0.600000000000001,-11 -"640",2185,3,0,1.17,1.17,0,0,0,7.4,0.399999999999999,-6 -"641",2186,3,0,0.204,0.204,1,16,0,2.1,1.3,3 -"642",2187,3,0,2.362,2.362,0,-14,1,0.200000000000003,-0.9,9 -"643",2188,3,0,2.482,2.482,1,-3,1,1.5,-2.9,2 -"644",2189,3,0,2.202,2.202,1,-19,0,-0.100000000000001,-0.800000000000001,6 -"645",2190,3,0,0.44,0.44,1,28,1,-1.9,0,2 -"646",2191,3,0,4.349,4.349,0,19,1,0.899999999999999,0.399999999999999,-10 -"647",2192,3,0,0.912,0.912,1,18,1,12,-0.0999999999999996,-2 -"648",2193,3,0,1.418,1.418,0,-22,1,6.2,-1.7,4 -"649",2194,3,0,4.267,4.267,0,4,1,9.5,0.800000000000001,-11 -"650",2195,3,0,1.23,1.23,1,-17,0,-0.799999999999997,1.6,2 -"651",2196,3,0,8.104,8.104,1,-31,0,-1.2,0.5,9 -"652",2197,3,0,2.709,2.709,1,6,1,-4,1.2,7 -"653",2198,3,0,6.887,6.887,1,-1,1,7.3,0.300000000000001,11 -"654",2199,3,0,1.754,1.754,1,7,0,4.1,0.100000000000001,2 -"655",2200,3,0,0.105,0.105,1,11,0,0,1.4,4 -"656",2201,3,0,2.037,2.037,0,-8,0,2.2,-1.2,0 -"657",2202,3,0,4.018,4.018,0,-4,1,-7.4,-0.300000000000001,-5 -"658",2203,3,0,1.26,1.26,1,15,1,-0.799999999999997,1.4,5 -"659",2204,3,0,0.113,0.113,1,15,0,2.4,-0.699999999999999,8 -"660",2205,3,0,10,10,0,-22,1,-10.2,-1.3,-2 -"661",2206,3,0,2.654,2.654,1,-12,0,3.5,-0.300000000000001,4 -"662",2207,3,0,0.547,0.547,0,0,0,2.5,-0.5,5 -"663",2208,3,0,1.99,1.99,1,-6,0,0.899999999999999,-0.300000000000001,8 -"664",2209,3,0,1.368,1.368,1,9,1,2.9,1.1,-5 -"665",2210,3,0,0.541,0.541,1,5,0,7.8,0.600000000000001,-6 -"666",2211,3,0,10,10,0,-3,1,-2.6,-1.8,9 -"667",2212,3,0,1.475,1.475,0,-8,1,-0.399999999999999,0.399999999999999,1 -"668",2213,3,0,10,10,0,-14,1,6.6,-3.3,1 -"669",2214,3,0,0.73,0.73,1,26,1,3.3,-0.699999999999999,2 -"670",2215,3,0,1.269,1.269,1,9,1,6.4,0.399999999999999,-1 -"671",2216,3,0,0.393,0.393,1,1,0,-1.7,-0.9,-8 -"672",2217,3,0,1.424,1.424,1,-17,0,1.5,0.600000000000001,-10 -"673",2218,3,0,0.969,0.969,1,2,0,-1.9,0.5,-1 -"674",2219,3,0,1.013,1.013,1,9,0,3.7,0.100000000000001,9 -"675",2220,3,0,5.689,5.689,0,-13,0,0,-1.7,4 -"676",2221,3,0,1.684,1.684,1,24,0,-1.7,-1.4,5 -"677",2222,3,0,1.224,1.224,1,-12,1,-4.4,0.300000000000001,-6 -"678",2223,3,0,0.562,0.562,1,12,0,-1.2,-0.300000000000001,8 -"679",2224,3,0,7.216,7.216,0,-12,0,5.3,0.100000000000001,-2 -"680",2225,3,0,9.784,9.784,1,1,1,4.5,-0.199999999999999,4 -"681",2226,3,0,0.331,0.331,1,29,0,-3.4,0.899999999999999,2 -"682",2227,3,0,3.051,3.051,0,-1,0,0.299999999999997,1,-14 -"683",2228,3,0,1.709,1.709,0,4,0,5.1,0.100000000000001,-14 -"684",2229,3,0,2.671,2.671,0,-3,0,-0.399999999999999,-0.9,2 -"685",2230,3,0,1.494,1.494,0,-25,0,0.600000000000001,0.100000000000001,-6 -"686",2231,3,0,2.802,2.802,0,-15,0,3.3,-0.800000000000001,5 -"687",2232,3,0,1.51,1.51,1,-9,0,-11.4,1,-2 -"688",2233,3,0,10,10,0,12,0,5.1,-0.4,-15 -"689",2234,3,0,0.137,0.137,1,4,0,-6.6,0.199999999999999,8 -"690",2235,3,0,1.397,1.397,1,18,1,-3.4,-0.199999999999999,-2 -"691",2236,3,0,1.942,1.942,1,-1,1,-4.5,1.3,10 -"692",2237,3,0,10,10,0,-10,0,-2.7,-0.800000000000001,-4 -"693",2238,3,0,5.265,5.265,1,20,0,0.899999999999999,-0.800000000000001,-1 -"694",2239,3,0,10,10,0,-17,0,2.5,-0.0999999999999996,-9 -"695",2240,3,0,10,10,0,-17,1,6.5,-0.300000000000001,-5 -"696",2241,3,0,0.633,0.633,1,22,1,2.1,-0.699999999999999,5 -"697",2242,3,0,0.242,0.242,0,13,1,-1.6,-0.9,-11 -"698",2243,3,0,5.914,5.914,0,-8,0,-2.4,0.600000000000001,-6 -"699",2244,3,0,6.483,6.483,0,-11,0,0.100000000000001,1.2,-9 -"700",2245,3,0,1.791,1.791,1,17,1,3.2,0.199999999999999,2 -"701",2246,3,0,0.539,0.539,1,-9,0,-3.2,-0.300000000000001,1 -"702",2247,3,0,0.155,0.155,1,2,0,6.5,0.199999999999999,-7 -"703",2248,3,0,0.315,0.315,0,12,0,5.9,0.399999999999999,8 -"704",2249,3,0,2.735,2.735,1,-30,0,0.399999999999999,1.3,3 -"705",2250,3,0,5.044,5.044,1,-6,0,4.6,-0.699999999999999,-5 -"706",2251,3,0,5.495,5.495,0,-12,0,-0.5,-0.0999999999999996,-4 -"707",2252,3,0,1.479,1.479,0,1,1,-4.9,-0.300000000000001,-1 -"708",2253,3,0,2.689,2.689,1,-1,1,-3.3,1.5,1 -"709",2254,3,0,1.613,1.613,0,7,0,-8.4,-1,6 -"710",2255,3,0,4.281,4.281,0,-5,0,-10.1,0.100000000000001,-7 -"711",2256,3,0,0.527,0.527,1,13,1,4,0.300000000000001,11 -"712",2257,3,0,10,10,0,-8,0,2.3,0.199999999999999,4 -"713",2258,3,0,0.315,0.315,1,10,1,8.7,0.5,4 -"714",2259,3,0,9.58,9.58,0,9,1,0,0,-5 -"715",2260,3,0,3.284,3.284,0,-5,1,2.3,-0.9,-2 -"716",2261,3,0,1.208,1.208,1,31,1,5.1,-0.5,1 -"717",2262,3,0,7.838,7.838,1,-12,0,-3.9,1.2,4 -"718",2263,3,0,1,1,0,0,1,-0.299999999999997,-0.699999999999999,-7 -"719",2264,3,0,1.752,1.752,0,-19,0,1.1,1.4,-2 -"720",2265,3,0,1.645,1.645,1,35,0,-0.899999999999999,0.100000000000001,-1 -"721",2266,3,0,10,10,0,9,0,3.6,-0.6,6 -"722",2267,3,0,7.589,7.589,0,-11,1,-3,-0.699999999999999,-15 -"723",2268,3,0,8.928,8.928,1,15,1,3.9,1.1,-5 -"724",2269,3,0,0.857,0.857,0,0,1,1,-0.5,-3 -"725",2270,3,0,2.256,2.256,0,5,0,-9.2,0.5,0 -"726",2271,3,0,0.902,0.902,0,-4,1,2.2,0.300000000000001,-4 -"727",2272,3,0,3.377,3.377,0,-3,1,-4.4,0.800000000000001,5 -"728",2273,3,0,9.374,9.374,1,-2,0,-3.8,-1.1,-3 -"729",2274,3,0,0.834,0.834,1,17,0,8.59999999999999,1.3,1 -"730",2275,3,0,0.402,0.402,0,0,1,3.2,-0.699999999999999,0 -"731",2276,3,0,1.948,1.948,1,-2,1,-4.1,1,6 -"732",2277,3,0,0.758,0.758,1,-14,0,-4.9,-0.4,1 -"733",2278,3,0,0.577,0.577,1,-11,1,-3.9,1.1,-6 -"734",2279,3,0,0.162,0.162,1,9,0,-2.1,0.5,-6 -"735",2280,3,0,1.073,1.073,1,25,1,8.8,2.7,0 -"736",2281,3,0,0.276,0.276,1,-3,0,4.6,-1,9 -"737",2282,3,0,0.976,0.976,0,-2,1,-1.8,-1,7 -"738",2283,3,0,0.477,0.477,1,-7,0,7.9,1,-5 -"739",2284,3,0,3.998,3.998,0,-7,0,8.09999999999999,-1.1,2 -"740",2285,3,0,3.715,3.715,0,8,1,2.5,0.5,3 -"741",2286,3,0,4.609,4.609,0,-22,1,-2.2,-1.5,-1 -"742",2287,3,0,3.284,3.284,1,4,1,-1.5,0.899999999999999,5 -"743",2288,3,0,5.945,5.945,1,3,1,2.3,1.6,2 -"744",2289,3,0,1.416,1.416,1,12,1,7.6,0.899999999999999,1 -"745",2290,3,0,1.837,1.837,0,2,1,-4.2,0.899999999999999,1 -"746",2291,3,0,1.606,1.606,1,-1,0,-2.5,0.399999999999999,10 -"747",2292,3,0,0.955,0.955,1,3,0,1.4,-0.6,-1 -"748",2293,3,0,0.177,0.177,1,9,1,2.6,0.800000000000001,0 -"749",2294,3,0,3.49,3.49,0,-16,1,4,-0.199999999999999,2 -"750",2295,3,0,10,10,0,2,1,-0.700000000000003,0.100000000000001,2 -"751",2296,3,0,2.094,2.094,1,2,0,-1.4,-0.6,2 -"752",2297,3,0,9.25,9.25,0,-14,1,-3,-0.4,0 -"753",2298,3,0,0.329,0.329,0,2,0,3.3,0,2 -"754",2299,3,0,7.495,7.495,0,-7,1,4.6,-0.9,-1 -"755",2300,3,0,3.954,3.954,0,-8,1,3.2,-0.199999999999999,-2 -"756",2301,3,0,8.964,8.964,0,8,0,-5.4,-1.3,-7 -"757",2302,3,0,6.989,6.989,0,-16,1,-3.4,-0.0999999999999996,4 -"758",2303,3,0,4.109,4.109,1,10,1,0.799999999999997,2.2,-3 -"759",2304,3,0,10,10,0,-3,0,2.1,-2.5,-1 -"760",2305,3,0,3.34,3.34,0,12,1,-0.299999999999997,-0.6,2 -"761",2306,3,0,1.708,1.708,1,-10,0,3.8,-0.6,-4 -"762",2307,3,0,5.271,5.271,0,13,0,-0.299999999999997,-1.4,-7 -"763",2308,3,0,0.077,0.077,1,-5,0,-6.4,0.300000000000001,5 -"764",2309,3,0,2.099,2.099,0,-28,1,1,-0.199999999999999,-3 -"765",2310,3,0,4.197,4.197,0,-13,1,-2,-2,-1 -"766",2311,3,0,4.898,4.898,0,-3,0,5.7,-0.6,3 -"767",2312,3,0,0.083,0.083,1,-2,0,-1.8,-0.0999999999999996,4 -"768",2313,3,0,0.218,0.218,0,-29,0,-1.3,-0.9,-6 -"769",2314,3,0,4.515,4.515,0,-2,1,-4.8,1,0 -"770",2315,3,0,8.408,8.408,1,9,1,0.399999999999999,0.5,-5 -"771",2316,3,0,10,10,0,-14,1,-12.4,1.4,-4 -"772",2317,3,0,0.554,0.554,1,34,0,-7.8,0,2 -"773",2318,3,0,1.729,1.729,0,-8,1,-1.6,1,1 -"774",2319,3,0,0.491,0.491,1,0,0,0.299999999999997,-0.300000000000001,3 -"775",2320,3,0,2.179,2.179,0,6,0,-3.8,-2.1,-2 -"776",2321,3,0,3.364,3.364,0,3,0,-0.200000000000003,-0.9,2 -"777",2322,3,0,1.697,1.697,0,30,1,-5,-0.699999999999999,1 -"778",2323,3,0,0.049,0.049,1,3,0,-0.100000000000001,2.7,15 -"779",2324,3,0,0.233,0.233,0,9,0,-3.3,-0.199999999999999,-5 -"780",2325,3,0,0.47,0.47,1,31,0,-1.2,-1.2,4 -"781",2326,3,0,0.106,0.106,0,21,0,-4.6,-0.300000000000001,8 -"782",2327,3,0,1.742,1.742,1,-4,1,-1.9,-0.199999999999999,3 -"783",2328,3,0,4.256,4.256,0,-19,1,-1.7,-0.9,-8 -"784",2329,3,0,10,10,0,-10,1,-1.4,-0.300000000000001,3 -"785",2330,3,0,0.249,0.249,1,22,1,6.2,1,-3 -"786",2331,3,0,3.152,3.152,0,-12,0,-3.9,0,-1 -"787",2332,3,0,1.361,1.361,1,6,0,-0.100000000000001,0,-3 -"788",2333,3,0,0.569,0.569,1,21,0,-1,-2.1,7 -"789",2334,3,0,4.356,4.356,0,-20,0,-5.6,0.100000000000001,-4 -"790",2335,3,0,0.682,0.682,1,18,1,4.1,1.4,0 -"791",2336,3,0,0.569,0.569,1,-15,1,5.6,0.5,-1 -"792",2337,3,0,10,10,0,-11,0,4.4,-1.1,2 -"793",2338,3,0,2.339,2.339,0,-21,0,4,0.699999999999999,1 -"794",2339,3,0,0.339,0.339,1,0,0,-1.9,-0.199999999999999,-5 -"795",2340,3,0,0.771,0.771,1,31,1,5.4,-1.3,-1 -"796",2341,3,0,1.31,1.31,1,0,0,1.7,-0.300000000000001,7 -"797",2342,3,0,10,10,0,8,1,-2.6,-0.9,3 -"798",2343,3,0,0.426,0.426,1,14,1,0.399999999999999,-0.199999999999999,-1 -"799",2344,3,0,0.208,0.208,1,16,0,8,1.2,1 -"800",2345,3,0,1.756,1.756,0,-16,1,-5.5,0.600000000000001,2 -"801",2346,3,0,5.086,5.086,0,22,0,-5,-0.5,-7 -"802",2347,3,0,0.58,0.58,1,-20,1,-7.2,1.5,3 -"803",2348,3,0,9.583,9.583,0,10,1,-2.8,-1.6,-4 -"804",2349,3,0,0.514,0.514,1,-1,1,2.6,0.800000000000001,1 -"805",2350,3,0,0.109,0.109,0,-4,1,3.4,0.899999999999999,-6 -"806",2351,3,0,1.07,1.07,1,6,0,-1.1,-0.199999999999999,-6 -"807",2352,3,0,1.604,1.604,1,8,0,-2.2,-0.0999999999999996,6 -"808",2353,3,0,0.307,0.307,1,11,1,3.8,1.1,11 -"809",2354,3,0,4.096,4.096,1,-12,0,-8.9,-0.300000000000001,-7 -"810",2355,3,0,8.352,8.352,0,-18,0,5.3,-0.199999999999999,4 -"811",2356,3,0,0.02,0.02,0,12,1,-7.7,1.2,4 -"812",2357,3,0,2.496,2.496,1,-6,0,1.4,-0.9,-7 -"813",2358,3,0,0.681,0.681,0,-5,0,-6.9,0.399999999999999,-1 -"814",2359,3,0,6.82,6.82,0,5,1,3,0.800000000000001,-6 -"815",2360,3,0,1.672,1.672,0,-4,0,-1.4,-2,-3 -"816",2361,3,0,4.152,4.152,0,-11,1,5.5,1.5,-5 -"817",2362,3,0,0.633,0.633,1,12,1,-0.200000000000003,0.199999999999999,3 -"818",2363,3,0,6.298,6.298,0,-9,0,3.2,-0.699999999999999,7 -"819",2364,3,0,0.697,0.697,1,6,0,-3.8,0,-5 -"820",2365,3,0,4.815,4.815,0,-2,0,7.2,0,-6 -"821",2366,3,0,2.631,2.631,1,12,0,-1.9,0.199999999999999,-7 -"822",2367,3,0,4.174,4.174,0,-11,1,1.8,-0.699999999999999,-5 -"823",2368,3,0,1.604,1.604,0,14,1,-5.3,1,-4 -"824",2369,3,0,10,10,0,12,1,-0.5,-0.6,-3 -"825",2370,3,0,0.054,0.054,1,8,1,-4.8,2.1,6 -"826",2371,3,0,0.785,0.785,1,-14,1,-7.4,0.300000000000001,-8 -"827",2372,3,0,0.073,0.073,1,22,1,0.899999999999999,1.2,3 -"828",2373,3,0,10,10,0,9,1,3.4,-0.4,-1 -"829",2374,3,0,0.397,0.397,0,-5,1,1,-0.699999999999999,1 -"830",2375,3,0,10,10,0,7,0,5.1,-2.1,-3 -"831",2376,3,0,6.259,6.259,1,-9,1,1.2,-0.300000000000001,-2 -"832",2377,3,0,0.022,0.022,1,7,0,7.9,0.100000000000001,7 -"833",2378,3,0,1.213,1.213,0,-1,0,-3.4,-0.6,5 -"834",2379,3,0,0.636,0.636,1,16,1,6.5,-0.699999999999999,-9 -"835",2380,3,0,5.208,5.208,0,-12,0,-2.2,-0.9,-8 -"836",2381,3,0,6.542,6.542,0,-21,1,-0.200000000000003,1.3,4 -"837",2382,3,0,0.467,0.467,1,7,0,-6.3,-1.4,-8 -"838",2383,3,0,0.66,0.66,1,31,1,-2.2,1,-2 -"839",2384,3,0,0.016,0.016,1,-1,1,-2.4,2,0 -"840",2385,3,0,2.594,2.594,1,0,0,3.4,0.899999999999999,2 -"841",2386,3,0,9.456,9.456,0,-19,0,-3.9,-0.5,-3 -"842",2387,3,0,0.684,0.684,1,-27,1,-3,0.5,14 -"843",2388,3,0,10,10,0,-35,1,3.6,-1,6 -"844",2389,3,0,0.144,0.144,1,15,0,4.8,0.399999999999999,6 -"845",2390,3,0,0.553,0.553,1,-17,0,1.1,-0.300000000000001,-1 -"846",2391,3,0,6.254,6.254,0,12,0,-1.1,-1.5,-3 -"847",2392,3,0,0.25,0.25,1,-19,1,0,-1.1,3 -"848",2393,3,0,0.03,0.03,1,8,1,-1,0.199999999999999,2 -"849",2394,3,0,0.816,0.816,0,-5,1,-3.1,-1.3,-4 -"850",2395,3,0,0.422,0.422,1,4,0,-0.899999999999999,-0.199999999999999,10 -"851",2396,3,0,5.715,5.715,0,-10,0,0.600000000000001,0.399999999999999,-3 -"852",2397,3,0,0.032,0.032,1,17,0,6.1,0.300000000000001,-3 -"853",2398,3,0,7.315,7.315,0,-23,1,1.8,-0.0999999999999996,-1 -"854",2399,3,0,0.643,0.643,1,5,1,1.2,0.699999999999999,2 -"855",2400,3,0,6.203,6.203,1,-6,1,1.4,-1.8,4 -"856",2401,3,0,1.072,1.072,1,10,1,6.8,0.300000000000001,2 -"857",2402,3,0,2.819,2.819,1,-11,1,3.4,0.800000000000001,3 -"858",2403,3,0,1.05,1.05,1,7,1,8.40000000000001,0.100000000000001,10 -"859",2404,3,0,1.506,1.506,1,-8,0,-2.1,-1.3,2 -"860",2405,3,0,0.808,0.808,0,7,1,3.2,-1.6,4 -"861",2406,3,0,10,10,0,-14,1,1.1,-0.6,2 -"862",2407,3,0,0.668,0.668,1,9,0,2.8,0.600000000000001,-7 -"863",2408,3,0,0.309,0.309,1,-24,1,-2.9,-1.2,-2 -"864",2409,3,0,0.123,0.123,0,27,1,5.4,0.100000000000001,1 -"865",2410,3,0,0.693,0.693,0,9,0,-2.7,0.5,4 -"866",2411,3,0,2.921,2.921,0,0,1,-3.5,-0.0999999999999996,1 -"867",2412,3,0,0.073,0.073,1,18,0,3.1,1,13 -"868",2413,3,0,6.991,6.991,1,-2,1,6.2,1.3,-1 -"869",2414,3,0,6.079,6.079,1,5,1,3,0.199999999999999,1 -"870",2415,3,0,10,10,0,2,1,-5.9,-0.199999999999999,-3 -"871",2416,3,0,1.996,1.996,0,3,1,0.100000000000001,-0.5,-2 -"872",2417,3,0,3.912,3.912,0,25,1,-7.1,-1.6,-4 -"873",2418,3,0,2.377,2.377,1,-16,1,-6,-0.9,-2 -"874",2419,3,0,0.038,0.038,0,-6,1,0.600000000000001,0.800000000000001,-5 -"875",2420,3,0,2.399,2.399,1,15,0,-5.6,1.7,-6 -"876",2421,3,0,7.963,7.963,0,-5,1,1.8,0.100000000000001,3 -"877",2422,3,0,0.262,0.262,1,-4,0,-2.7,-1.2,3 -"878",2423,3,0,0.04,0.04,1,-6,0,-0.299999999999997,0.100000000000001,-2 -"879",2424,3,0,4.501,4.501,0,-27,0,1.8,0.800000000000001,1 -"880",2425,3,0,4.333,4.333,0,7,1,-1.1,-0.9,1 -"881",2426,3,0,1.34,1.34,1,4,0,-1.4,-0.699999999999999,7 -"882",2427,3,0,2.554,2.554,1,-1,0,-4.7,-2.3,-1 -"883",2428,3,0,9.69,9.69,0,-20,1,3.1,0.899999999999999,-2 -"884",2429,3,0,8.33,8.33,1,-14,1,7,-0.0999999999999996,-1 -"885",2430,3,0,8.416,8.416,0,-26,0,0.100000000000001,-0.4,6 -"886",2431,3,0,10,10,0,-25,1,-4.4,0.399999999999999,-2 -"887",2432,3,0,1.136,1.136,1,31,1,-1.2,-0.800000000000001,0 -"888",2433,3,0,0.914,0.914,1,0,0,4.1,1.2,4 -"889",2434,3,0,1.772,1.772,0,-1,1,-2.1,-0.6,-1 -"890",2435,3,0,2.027,2.027,0,-10,1,-7.2,0,1 -"891",2436,3,0,0.586,0.586,0,0,0,-1.6,0,2 -"892",2437,3,0,2.422,2.422,0,-6,1,-4.2,1.2,-1 -"893",2438,3,0,0.592,0.592,1,10,1,5.1,0.300000000000001,2 -"894",2439,3,0,5.241,5.241,1,13,1,0,0.100000000000001,3 -"895",2440,3,0,0.795,0.795,0,10,1,4.9,0,2 -"896",2441,3,0,0.434,0.434,1,28,1,-3.1,1.3,-3 -"897",2442,3,0,1.497,1.497,1,-5,0,1.9,-0.6,-2 -"898",2443,3,0,7.548,7.548,0,10,0,0.799999999999997,-0.800000000000001,1 -"899",2444,3,0,0.242,0.242,1,9,1,3.2,1.5,1 -"900",2445,3,0,9.393,9.393,0,-11,1,-5.1,-0.5,1 -"901",2446,3,0,6.951,6.951,0,1,0,-3.2,0,-1 -"902",2447,3,0,5.637,5.637,0,8,1,1.4,-0.300000000000001,-2 -"903",2448,3,0,1.072,1.072,1,24,1,-2.1,0.699999999999999,10 -"904",2449,3,0,10,10,0,-12,1,-6.2,0,-4 -"905",2450,3,0,0.02,0.02,1,14,1,-3.7,-0.5,3 -"906",2451,3,0,6.134,6.134,0,-8,1,-0.299999999999997,-0.699999999999999,-1 -"907",2452,3,0,5.386,5.386,0,1,1,-0.799999999999997,0.399999999999999,-9 -"908",2453,3,0,0.195,0.195,0,-28,0,-1.5,-1.3,0 -"909",2454,3,0,10,10,0,-19,1,-1.2,0.100000000000001,-6 -"910",2455,3,0,0.608,0.608,1,-38,0,6,0.5,-5 -"911",2456,3,0,2.925,2.925,0,-3,0,3.4,-0.199999999999999,3 -"912",2457,3,0,2.244,2.244,0,-3,1,-6,0.699999999999999,-8 -"913",2458,3,0,0.084,0.084,1,3,1,6.3,-1.2,7 -"914",2459,3,0,6.705,6.705,0,-3,1,-1.7,0.199999999999999,3 -"915",2460,3,0,0.511,0.511,0,11,1,-7.2,-0.699999999999999,2 -"916",2461,3,0,0.788,0.788,0,5,0,2.8,-1.1,-6 -"917",2462,3,0,2.59,2.59,0,5,1,5.4,-0.6,7 -"918",2463,3,0,0.532,0.532,1,7,1,1.7,-0.4,-1 -"919",2464,3,0,0.355,0.355,0,-10,0,3.9,0.699999999999999,0 -"920",2465,3,0,9.196,9.196,1,-1,1,2.9,1.2,0 -"921",2466,3,0,1.865,1.865,1,12,0,1.9,0,-2 -"922",2467,3,0,3.861,3.861,0,-25,0,-4.8,-1,-10 -"923",2468,3,0,10,10,0,11,1,3.5,0,-8 -"924",2469,3,0,1.548,1.548,0,-17,1,-5.3,-0.6,-4 -"925",2470,3,0,1.138,1.138,0,-8,1,-4.8,-0.199999999999999,-6 -"926",2471,3,0,0.933,0.933,0,-20,0,-1.2,0.300000000000001,-11 -"927",2472,3,0,1.566,1.566,1,-2,1,3.5,-0.5,8 -"928",2473,3,0,10,10,0,0,1,0.399999999999999,0.399999999999999,-6 -"929",2474,3,0,3.7,3.7,0,-12,0,-3,0.600000000000001,1 -"930",2475,3,0,1.002,1.002,0,-15,0,-8.5,-1.8,-1 -"931",2476,3,0,1.462,1.462,0,-20,1,-1.8,1.2,-4 -"932",2477,3,0,1.669,1.669,0,-43,1,-0.600000000000001,0.199999999999999,-1 -"933",2478,3,0,0.913,0.913,1,15,1,-3.9,-0.199999999999999,4 -"934",2479,3,0,0.584,0.584,1,9,1,-1.7,0.300000000000001,-2 -"935",2480,3,0,7.854,7.854,1,-16,1,-1.4,0,-1 -"936",2481,3,0,7.435,7.435,0,-14,1,1,0.600000000000001,-1 -"937",2482,3,0,0.969,0.969,1,15,1,-5.7,2,-8 -"938",2483,3,0,2.368,2.368,0,14,1,2.9,-0.199999999999999,3 -"939",2484,3,0,1.988,1.988,0,0,1,-1.5,0.899999999999999,1 -"940",2485,3,0,2.164,2.164,1,-5,1,2.3,0.699999999999999,-5 -"941",2486,3,0,0.99,0.99,0,-27,1,2.7,1.8,6 -"942",2487,3,0,4.074,4.074,1,-3,1,-0.5,0,-6 -"943",2488,3,0,0.617,0.617,1,-6,1,2.7,1,-1 -"944",2489,3,0,1.718,1.718,1,12,0,-7.1,0.300000000000001,-8 -"945",2490,3,0,0.725,0.725,1,18,1,-1.7,0.100000000000001,-6 -"946",2491,3,0,1.979,1.979,1,6,1,-8.9,-1.3,-2 -"947",2492,3,0,6.068,6.068,0,6,1,-7,-0.5,1 -"948",2493,3,0,0.328,0.328,1,19,0,-2.9,1.2,3 -"949",2494,3,0,1.773,1.773,1,-7,0,5.3,-0.699999999999999,4 -"950",2495,3,0,0.807,0.807,0,3,1,-2.6,-0.5,-3 -"951",2496,3,0,0.148,0.148,1,2,0,-0.799999999999997,-1.3,-5 -"952",2497,3,0,1.881,1.881,1,-13,1,5.9,0.800000000000001,-2 -"953",2498,3,0,1.67,1.67,0,6,1,13.6,-0.199999999999999,-8 -"954",2499,3,0,2.885,2.885,1,-15,0,2.2,1.3,1 -"955",2500,3,0,7.188,7.188,0,7,1,-0.5,0.800000000000001,-12 -"956",2501,3,0,1.87,1.87,1,3,1,-3.3,0.699999999999999,-5 -"957",2502,3,0,0.799,0.799,0,3,1,-7.9,1,-4 -"958",2503,3,0,0.691,0.691,0,-5,0,1.7,-1,-3 -"959",2504,3,0,7.673,7.673,1,-9,0,4.6,0.600000000000001,-4 -"960",2505,3,0,9.219,9.219,0,-25,1,2.1,-2.1,-3 -"961",2506,3,0,10,10,0,7,0,4.4,-0.800000000000001,4 -"962",2507,3,0,10,10,0,-16,0,5.7,0.5,-1 -"963",2508,3,0,1.72,1.72,1,3,1,5.7,0.600000000000001,4 -"964",2509,3,0,1.962,1.962,0,-9,1,-5.9,-0.699999999999999,-8 -"965",2510,3,0,0.072,0.072,1,14,0,9.2,0.100000000000001,7 -"966",2511,3,0,1.785,1.785,0,23,0,-3.9,-0.9,-3 -"967",2512,3,0,8.572,8.572,1,0,1,5.5,0.5,-7 -"968",2513,3,0,0.905,0.905,1,24,0,1.4,-0.699999999999999,4 -"969",2514,3,0,0.088,0.088,0,-18,0,-13.7,0,-8 -"970",2515,3,0,1.351,1.351,1,16,1,3.9,-0.6,-3 -"971",2516,3,0,1.187,1.187,1,7,1,-1.1,-0.4,7 -"972",2517,3,0,1.76,1.76,1,-8,1,2.4,0.199999999999999,1 -"973",2518,3,0,10,10,0,-24,1,-7.6,0,-8 -"974",2519,3,0,0.082,0.082,1,0,1,-3.7,0.699999999999999,-8 -"975",2520,3,0,1.88,1.88,1,24,1,-2.1,-0.300000000000001,0 -"976",2521,3,0,1.652,1.652,0,-13,1,0,0.800000000000001,4 -"977",2522,3,0,1.313,1.313,0,1,1,0.399999999999999,-2.9,3 -"978",2523,3,0,1.415,1.415,1,-6,1,-1.8,-0.9,-1 -"979",2524,3,0,0.604,0.604,1,6,0,8.2,0.399999999999999,-7 -"980",2525,3,0,0.785,0.785,1,28,1,-1.7,0.300000000000001,10 -"981",2526,3,0,2.614,2.614,1,-7,0,-7.8,1.9,-6 -"982",2527,3,0,6.441,6.441,0,-22,1,2.3,-2.4,-9 -"983",2528,3,0,8.104,8.104,1,24,1,-1.4,-0.5,-6 -"984",2529,3,0,2.1,2.1,1,2,0,-0.399999999999999,0.199999999999999,0 -"985",2530,3,0,3.161,3.161,0,-16,0,-0.799999999999997,-1.5,-1 -"986",2531,3,0,0.493,0.493,1,2,0,4.2,-0.0999999999999996,6 -"987",2532,3,0,0.122,0.122,1,20,0,5.6,0.899999999999999,-3 -"988",2533,3,0,10,10,0,-9,0,-4.1,0,-8 -"989",2534,3,0,0.509,0.509,1,9,1,9,-0.6,8 -"990",2535,3,0,1.445,1.445,1,26,1,1.6,-0.0999999999999996,2 -"991",2536,3,0,4.478,4.478,0,8,1,2.7,0.699999999999999,2 -"992",2537,3,0,10,10,0,-10,1,0.899999999999999,-1.4,-6 -"993",2538,3,0,1.914,1.914,1,-9,0,3.4,-0.4,-6 -"994",2539,3,0,0.739,0.739,1,10,1,-0.100000000000001,1.8,7 -"995",2540,3,0,1.73,1.73,1,-16,0,-0.899999999999999,0.100000000000001,-1 -"996",2541,3,0,0.549,0.549,1,-8,0,6.3,1.3,5 -"997",2542,3,0,4.268,4.268,0,-1,1,2.8,0.600000000000001,0 -"998",2543,3,0,2.34,2.34,0,2,1,8.2,0.199999999999999,2 -"999",2544,3,0,0.357,0.357,1,9,0,-1.6,-0.800000000000001,-3 -"1000",2545,3,0,1.086,1.086,1,-14,0,-1.9,0.699999999999999,0 -"1001",2546,3,0,0.268,0.268,1,10,1,-5.4,-0.5,0 -"1002",2547,3,0,6.15,6.15,1,14,0,1.3,1.1,-5 -"1003",2548,3,0,0.422,0.422,1,11,0,-2.9,-0.5,-2 -"1004",2549,3,0,8.598,8.598,1,-8,0,-0.600000000000001,-0.300000000000001,1 -"1005",2550,3,0,7.719,7.719,1,13,0,5.9,-2,1 -"1006",2551,3,0,0.504,0.504,0,6,1,-7.6,0.800000000000001,4 -"1007",2552,3,0,5.871,5.871,1,-5,1,-7.4,2,0 -"1008",2553,3,0,1.075,1.075,0,-25,0,8.90000000000001,0.300000000000001,-2 -"1009",2554,3,0,2.373,2.373,1,-30,0,4.7,1.1,3 -"1010",2555,3,0,0.352,0.352,1,15,0,8.59999999999999,1.7,-1 -"1011",2556,3,0,6.717,6.717,1,2,1,-5.7,0,-2 -"1012",2557,3,0,1.039,1.039,1,18,1,-7.5,1,-4 -"1013",2558,3,0,10,10,0,6,1,-2.6,0.5,-8 -"1014",2559,3,0,0.554,0.554,1,18,0,8.90000000000001,0.300000000000001,-2 -"1015",2560,3,0,1.924,1.924,1,-6,0,-7.6,0.100000000000001,1 -"1016",2561,3,0,0.961,0.961,1,-3,0,0,0.5,6 -"1017",2562,3,0,1.469,1.469,0,7,1,-4.2,0.699999999999999,5 -"1018",2563,3,0,8.671,8.671,0,-6,1,0.299999999999997,0,-6 -"1019",2564,3,0,1.43,1.43,0,-17,1,-1.5,-1.4,3 -"1020",2565,3,0,6.161,6.161,0,12,0,-7.6,-1.4,-2 -"1021",2566,3,0,0.779,0.779,1,14,1,2.3,1.1,3 -"1022",2567,3,0,10,10,0,0,0,-1.6,-1.4,-6 -"1023",2568,3,0,1.974,1.974,1,8,1,2.9,-0.6,7 -"1024",2569,3,0,0.053,0.053,0,21,0,-2.4,-0.5,0 -"1025",2570,3,0,1.579,1.579,0,-2,1,-1.8,-1.2,-10 -"1026",2571,3,0,2.09,2.09,0,-1,1,3.2,-0.300000000000001,1 -"1027",2572,3,0,1.193,1.193,0,2,1,6.3,0.199999999999999,-8 -"1028",2573,3,0,1.691,1.691,0,12,1,-0.600000000000001,-0.699999999999999,3 -"1029",2574,3,0,3.494,3.494,0,-18,1,-3.6,0.300000000000001,3 -"1030",2575,3,0,1.48,1.48,0,-5,1,3.6,0.300000000000001,3 -"1031",2576,3,0,2.275,2.275,1,0,0,-6.2,0.300000000000001,4 -"1032",2577,3,0,1.706,1.706,1,-4,0,5.5,0.300000000000001,4 -"1033",2578,3,0,10,10,0,-19,1,1.4,0.600000000000001,-6 -"1034",2579,3,0,4.431,4.431,0,24,1,0.799999999999997,0.300000000000001,-5 -"1035",2580,3,0,0.226,0.226,1,-14,0,2.9,-0.0999999999999996,5 -"1036",2581,3,0,1.778,1.778,1,32,1,-2.9,-1,9 -"1037",2582,3,0,3.359,3.359,0,11,1,8,0.699999999999999,1 -"1038",2583,3,0,0.027,0.027,0,-3,0,7.8,1,4 -"1039",2584,3,0,0.255,0.255,1,7,0,1.1,2.1,4 -"1040",2585,3,0,7.133,7.133,0,14,1,6.3,-0.300000000000001,-4 -"1041",2586,3,0,1.42,1.42,0,-10,0,-2.7,-0.9,3 -"1042",2587,3,0,1.202,1.202,0,-28,1,1.8,0.300000000000001,4 -"1043",2588,3,0,0.654,0.654,1,20,1,1.8,0.399999999999999,5 -"1044",2589,3,0,2.119,2.119,0,-11,1,2.2,0.399999999999999,-1 -"1045",2590,3,0,1.126,1.126,1,15,1,-0.5,-1.3,4 -"1046",2591,3,0,5.276,5.276,0,-20,0,2.6,0.5,0 -"1047",2592,3,0,0.998,0.998,1,4,1,4.3,-2.1,6 -"1048",2593,3,0,0.398,0.398,0,0,0,-6.4,-0.5,2 -"1049",2594,3,0,0.159,0.159,1,0,1,0,-0.300000000000001,6 -"1050",2595,3,0,10,10,0,-24,0,-3.3,-0.4,2 -"1051",2596,3,0,6.412,6.412,0,23,1,0.5,-0.9,-4 -"1052",2597,3,0,4.493,4.493,0,2,1,-2.2,-1,1 -"1053",2598,3,0,1.12,1.12,0,-2,0,1.5,-0.5,-2 -"1054",2599,3,0,0.576,0.576,0,-1,1,-5.6,-0.5,0 -"1055",2600,3,0,0.702,0.702,1,26,1,-2.9,0.100000000000001,5 -"1056",2601,3,0,8.42,8.42,0,-18,0,0,-1.5,7 -"1057",2602,3,0,1.838,1.838,1,1,0,0.600000000000001,1.1,7 -"1058",2603,3,0,2.588,2.588,0,0,0,-4.8,-1.5,-2 -"1059",2604,3,0,5.576,5.576,0,-11,0,0.899999999999999,-0.5,3 -"1060",2605,3,0,2.863,2.863,1,-20,1,-0.799999999999997,0.600000000000001,-2 -"1061",2606,3,0,8.6,8.6,0,-1,1,0.799999999999997,0.300000000000001,3 -"1062",2607,3,0,4.849,4.849,0,-4,1,-6.5,-0.6,3 -"1063",2608,3,0,1.712,1.712,0,-14,0,-5.8,0.699999999999999,-2 -"1064",2609,3,0,8.917,8.917,1,-22,0,-0.399999999999999,0.300000000000001,-2 -"1065",2610,3,0,1.018,1.018,0,16,0,1.5,0.199999999999999,3 -"1066",2611,3,0,2.134,2.134,0,-9,1,-1.1,-1,-4 -"1067",2612,3,0,0.173,0.173,1,23,0,-10,-0.6,-4 -"1068",2613,3,0,1.541,1.541,1,7,1,3.1,1.2,-1 -"1069",2614,3,0,0.119,0.119,1,-10,1,-4.2,3.3,6 -"1070",2615,3,0,0.494,0.494,1,23,1,1.7,1.4,-1 -"1071",2616,3,0,6.537,6.537,0,-3,1,2.8,-1,0 -"1072",2617,3,0,2.343,2.343,1,23,0,3.5,-1.6,8 -"1073",2618,3,0,0.066,0.066,1,2,1,-3.7,0.300000000000001,8 -"1074",2619,3,0,0.91,0.91,1,-15,0,-2.4,1.3,-1 -"1075",2620,3,0,6.227,6.227,0,21,1,11.3,0.300000000000001,-15 -"1076",2621,3,0,0.039,0.039,1,25,0,-1.1,-0.5,1 -"1077",2622,3,0,0.151,0.151,1,46,0,0.299999999999997,1,5 -"1078",2623,3,0,2.423,2.423,1,-6,0,2.3,-0.800000000000001,6 -"1079",2624,3,0,1.894,1.894,1,-5,1,-2.8,-1.5,0 -"1080",2625,3,0,1.008,1.008,1,5,1,-6.6,-0.699999999999999,1 -"1081",2626,3,0,0.063,0.063,1,23,0,2.4,-0.5,7 -"1082",2627,3,0,0.902,0.902,1,9,0,-0.700000000000003,-0.0999999999999996,0 -"1083",2628,3,0,0.041,0.041,1,30,0,-6.5,2,10 -"1084",2629,3,0,10,10,0,12,1,-0.5,-1.5,-1 -"1085",2630,3,0,0.825,0.825,1,-12,0,4,-1.1,0 -"1086",2631,3,0,0.8,0.8,1,6,1,-5.2,-0.5,-1 -"1087",2632,3,0,0.731,0.731,1,-9,0,0.399999999999999,-0.4,-1 -"1088",2633,3,0,0.575,0.575,1,-4,0,6.4,-1,-2 -"1089",2634,3,0,1.789,1.789,1,-17,1,0.5,0.399999999999999,11 -"1090",2635,3,0,10,10,0,-9,1,0.299999999999997,-0.5,-4 -"1091",2636,3,0,0.733,0.733,1,-14,0,1.8,0.399999999999999,9 -"1092",2637,3,0,0.406,0.406,0,-14,0,-2.5,0.600000000000001,8 -"1093",2638,3,0,1.547,1.547,0,-27,1,-3.7,-0.0999999999999996,-7 -"1094",2639,3,0,0.02,0.02,1,10,0,-3.6,0.199999999999999,4 -"1095",2640,3,0,10,10,0,-2,1,-0.600000000000001,-1.3,1 -"1096",2641,3,0,0.346,0.346,0,1,0,7.8,-0.6,-6 -"1097",2642,3,0,10,10,0,-12,1,3.7,0,-14 -"1098",2643,3,0,0.763,0.763,1,5,0,1.7,-0.0999999999999996,3 -"1099",2644,3,0,0.656,0.656,1,12,0,-3.1,0.199999999999999,4 -"1100",2645,3,0,6.359,6.359,0,-18,0,2.1,-0.4,-1 -"1101",2646,3,0,1.255,1.255,0,-21,1,-3.3,-0.0999999999999996,-1 -"1102",2647,3,0,6.403,6.403,0,-16,0,2.9,0.699999999999999,3 -"1103",2648,3,0,0.055,0.055,1,37,0,-6,0.600000000000001,1 -"1104",2649,3,0,0.183,0.183,0,3,0,10.6,0,-2 -"1105",2650,3,0,1.426,1.426,1,17,1,-1.3,0.199999999999999,-4 -"1106",2651,3,0,0.48,0.48,1,-8,0,7.6,1.3,11 -"1107",2652,3,0,1.987,1.987,1,-3,0,-6.6,-0.0999999999999996,-4 -"1108",2653,3,0,5.793,5.793,0,3,1,-7.7,0,2 -"1109",2654,3,0,3.589,3.589,0,-2,0,0.399999999999999,-1.3,-7 -"1110",2655,3,0,0.671,0.671,1,46,1,-3.7,0,6 -"1111",2656,3,0,0.122,0.122,1,24,0,-1.1,-0.6,-1 -"1112",2657,3,0,10,10,0,-37,1,3.8,-0.199999999999999,-8 -"1113",2658,3,0,2.723,2.723,0,3,1,-4.4,0.5,-1 -"1114",2659,3,0,10,10,0,-29,0,-4.5,-1.8,-3 -"1115",2660,3,0,10,10,0,-1,0,-3.4,-1.9,6 -"1116",2661,3,0,0.441,0.441,1,21,0,1.9,-2,11 -"1117",2662,3,0,5.451,5.451,0,-23,0,6.4,0.600000000000001,2 -"1118",2663,3,0,0.732,0.732,1,21,1,-3.4,-0.4,1 -"1119",2664,3,0,10,10,0,-9,0,2.7,-0.5,-8 -"1120",2665,3,0,6.003,6.003,0,-10,1,-2.5,0.199999999999999,-4 -"1121",2666,3,0,10,10,0,19,0,0.799999999999997,-1.2,-4 -"1122",2667,3,0,0.319,0.319,0,29,1,-2,0.699999999999999,1 -"1123",2668,3,0,1.023,1.023,1,1,0,-1.3,0.199999999999999,1 -"1124",2669,3,0,1.666,1.666,1,-4,0,1.4,0.300000000000001,4 -"1125",2670,3,0,0.191,0.191,1,-24,0,10.1,1.5,-1 -"1126",2671,3,0,0.11,0.11,0,6,1,2.1,-0.0999999999999996,2 -"1127",2672,3,0,0.928,0.928,1,11,1,4.9,0.800000000000001,-7 -"1128",2673,3,0,0.427,0.427,1,9,1,0.700000000000003,1.2,-9 -"1129",2674,3,0,0.468,0.468,1,33,0,3.3,-0.0999999999999996,0 -"1130",2675,3,0,10,10,0,4,0,-4.3,-1.4,-8 -"1131",2676,3,0,10,10,0,-2,0,-4.4,-0.5,-3 -"1132",2677,3,0,0.075,0.075,1,25,1,-5.5,-1.7,-12 -"1133",2678,3,0,0.837,0.837,1,-13,0,1.4,0.100000000000001,-2 -"1134",2679,3,0,8.687,8.687,0,3,1,-5,1.3,-2 -"1135",2680,3,0,1.731,1.731,0,-8,0,11.8,-0.5,3 -"1136",2681,3,0,1.531,1.531,1,16,1,-6,-1.3,0 -"1137",2682,3,0,1.399,1.399,1,-14,0,-3,-0.199999999999999,9 -"1138",2683,3,0,0.338,0.338,0,-31,1,-5.5,1.3,-1 -"1139",2684,3,0,1.791,1.791,1,-18,0,-4.3,0.199999999999999,3 -"1140",2685,3,0,1.051,1.051,1,-1,0,6.2,-0.0999999999999996,6 -"1141",2686,3,0,1.991,1.991,1,1,0,0.799999999999997,0.5,1 -"1142",2687,3,0,6.728,6.728,0,-6,0,-0.399999999999999,-1,-5 -"1143",2688,3,0,1.587,1.587,1,2,1,0.799999999999997,-0.699999999999999,-8 -"1144",2689,3,0,5.995,5.995,0,-23,1,-1.5,0.800000000000001,1 -"1145",2690,3,0,1.646,1.646,1,12,0,0.700000000000003,-0.300000000000001,7 -"1146",2691,3,0,0.812,0.812,1,12,1,-5.8,1.9,2 -"1147",2692,3,0,0.979,0.979,1,2,0,4.5,0,-5 -"1148",2693,3,0,0.536,0.536,1,-18,1,2.8,1.3,10 -"1149",2694,3,0,4.143,4.143,0,-10,0,3.7,0,3 -"1150",2695,3,0,10,10,0,-10,0,3.2,-0.5,0 -"1151",2696,3,0,5.91,5.91,0,5,1,-2.7,-1,1 -"1152",2697,3,0,2.471,2.471,0,10,0,-2.3,-1,0 -"1153",2698,3,0,0.289,0.289,0,-15,0,1.8,-1.1,-3 -"1154",2699,3,0,10,10,0,-23,0,-3.7,1.2,2 -"1155",2700,3,0,9.431,9.431,0,8,1,-1.3,-0.9,-1 -"1156",2701,3,0,0.276,0.276,1,-10,0,1.4,2.3,7 -"1157",2702,3,0,0.54,0.54,1,17,1,3.4,1.2,3 -"1158",2703,3,0,10,10,0,5,1,5.6,-0.4,-6 -"1159",2704,3,0,0.83,0.83,1,-7,0,2.8,0.199999999999999,1 -"1160",2705,3,0,3.981,3.981,0,-18,1,3.8,-1.1,3 -"1161",2706,3,0,2.364,2.364,0,-9,0,2.4,0.199999999999999,-2 -"1162",2707,3,0,0.355,0.355,1,25,0,-4.2,1.4,-6 -"1163",2708,3,0,0.909,0.909,0,-8,0,-1.7,-1,10 -"1164",2709,3,0,3.903,3.903,0,17,1,0.799999999999997,-0.199999999999999,0 -"1165",2710,3,0,2.38,2.38,0,-9,0,0.5,-1.3,-3 -"1166",2711,3,0,0.001,0.001,0,-3,1,-3.5,1.2,0 -"1167",2712,3,0,0.004,0.004,1,15,1,1.9,0,-1 diff --git a/tests/testthat/data_files/SURVIVAL/EXPAND_MISSING/EXPAND_WITH_MISSING1.rda b/tests/testthat/data_files/SURVIVAL/EXPAND_MISSING/EXPAND_WITH_MISSING1.rda deleted file mode 100644 index 2eafbc00..00000000 Binary files a/tests/testthat/data_files/SURVIVAL/EXPAND_MISSING/EXPAND_WITH_MISSING1.rda and /dev/null differ diff --git a/tests/testthat/data_files/SURVIVAL/EXPAND_MISSING/EXPAND_WITH_MISSING2.rda b/tests/testthat/data_files/SURVIVAL/EXPAND_MISSING/EXPAND_WITH_MISSING2.rda deleted file mode 100644 index d461dfd6..00000000 Binary files a/tests/testthat/data_files/SURVIVAL/EXPAND_MISSING/EXPAND_WITH_MISSING2.rda and /dev/null differ diff --git a/tests/testthat/data_files/SURVIVAL/EXPAND_MISSING/EXPAND_WITH_MISSING3.rda b/tests/testthat/data_files/SURVIVAL/EXPAND_MISSING/EXPAND_WITH_MISSING3.rda deleted file mode 100644 index 24775d7f..00000000 Binary files a/tests/testthat/data_files/SURVIVAL/EXPAND_MISSING/EXPAND_WITH_MISSING3.rda and /dev/null differ diff --git a/tests/testthat/data_files/SURVIVAL/EXPAND_MISSING/expand_missing_study1.csv b/tests/testthat/data_files/SURVIVAL/EXPAND_MISSING/expand_missing_study1.csv deleted file mode 100644 index 8ecb39bc..00000000 --- a/tests/testthat/data_files/SURVIVAL/EXPAND_MISSING/expand_missing_study1.csv +++ /dev/null @@ -1,2061 +0,0 @@ -"","id","study.id","time.id","starttime","endtime","survtime","cens","age.60","female","noise.56","pm10.16","bmi.26" -"1",1,1,1,0,2,2,0,8,1,1.7,-0.0999999999999996,-4 -"2",1,1,2,2,3,1,0,8,1,1.7,-0.0999999999999996,-4 -"3",1,1,3,3,6,3,0,8,1,1.7,-0.0999999999999996,-4 -"4",1,1,4,6,6.5,0.5,0,8,1,1.7,-0.0999999999999996,-4 -"5",1,1,5,6.5,8,1.5,0,8,1,1.7,-0.0999999999999996,-4 -"6",1,1,6,8,9.02520104030031,1.02520104030031,1,8,1,1.7,-0.0999999999999996,-4 -"7",2,1,1,0,2,2,0,16,1,0.700000000000003,0.899999999999999,-6 -"8",2,1,2,2,3,1,0,16,1,0.700000000000003,0.899999999999999,-6 -"9",2,1,3,3,6,3,0,16,1,0.700000000000003,0.899999999999999,-6 -"10",2,1,4,6,6.5,0.5,0,16,1,0.700000000000003,0.899999999999999,-6 -"11",2,1,5,6.5,8,1.5,0,16,1,0.700000000000003,0.899999999999999,-6 -"12",2,1,6,8,10,2,0,16,1,0.700000000000003,0.899999999999999,-6 -"13",3,1,1,0,0.378650156946772,0.378650156946772,0,-5,1,1.6,-1.3,-4 -"14",4,1,1,0,0.0870743756568584,0.0870743756568584,1,13,0,3.5,0.399999999999999,4 -"15",5,1,1,0,1.42473609994182,1.42473609994182,1,26,0,0.100000000000001,-1.8,-1 -"16",6,1,1,0,1.6941922902486,1.6941922902486,1,8,1,-1.6,-0.0999999999999996,2 -"17",7,1,1,0,0.270970961746664,0.270970961746664,1,-6,0,-0.600000000000001,0,4 -"18",8,1,1,0,2,2,0,1,0,2.8,-1.4,4 -"19",8,1,2,2,3,1,0,1,0,2.8,-1.4,4 -"20",8,1,3,3,6,3,0,1,0,2.8,-1.4,4 -"21",8,1,4,6,6.5,0.5,0,1,0,2.8,-1.4,4 -"22",8,1,5,6.5,8,1.5,0,1,0,2.8,-1.4,4 -"23",8,1,6,8,8.2008007855637,0.200800785563699,1,1,0,2.8,-1.4,4 -"24",9,1,1,0,1.16552506386783,1.16552506386783,0,30,1,-6.7,1.1,-3 -"25",10,1,1,0,0.435115445818863,0.435115445818863,0,-25,0,-8.6,0.5,-7 -"26",11,1,1,0,0.915496980545059,0.915496980545059,1,21,1,-8.1,0.5,-3 -"27",12,1,1,0,0.0799408651994374,0.0799408651994374,1,15,1,7,1.1,4 -"28",13,1,1,0,0.0861761396946597,0.0861761396946597,0,2,1,-3,-0.5,9 -"29",14,1,1,0,1.22713447425019,1.22713447425019,1,4,1,-3.4,-1.2,3 -"30",15,1,1,0,2,2,0,4,1,4.5,-0.699999999999999,-2 -"31",15,1,2,2,3,1,0,4,1,4.5,-0.699999999999999,-2 -"32",15,1,3,3,6,3,0,4,1,4.5,-0.699999999999999,-2 -"33",15,1,4,6,6.5,0.5,0,4,1,4.5,-0.699999999999999,-2 -"34",15,1,5,6.5,7.77149110771578,1.27149110771578,1,4,1,4.5,-0.699999999999999,-2 -"35",16,1,1,0,1.4405131202252,1.4405131202252,0,-2,1,2.2,1.6,-6 -"36",17,1,1,0,0.207443730926746,0.207443730926746,1,-10,1,2.2,-0.0999999999999996,6 -"37",18,1,1,0,2,2,0,-14,0,0.299999999999997,-0.9,5 -"38",18,1,2,2,3,1,0,-14,0,0.299999999999997,-0.9,5 -"39",18,1,3,3,6,3,0,-14,0,0.299999999999997,-0.9,5 -"40",18,1,4,6,6.5,0.5,0,-14,0,0.299999999999997,-0.9,5 -"41",18,1,5,6.5,6.805803987782,0.305803987782002,1,-14,0,0.299999999999997,-0.9,5 -"42",19,1,1,0,2,2,0,3,1,10.9,-0.6,0 -"43",19,1,2,2,2.15353124849828,0.153531248498276,0,3,1,10.9,-0.6,0 -"44",20,1,1,0,0.20287446468001,0.20287446468001,1,22,0,-4.5,-1,-3 -"45",21,1,1,0,0.238178428608884,0.238178428608884,1,28,0,-8.9,-1.3,-1 -"46",22,1,1,0,1.35831114471987,1.35831114471987,1,21,1,-4.6,1.5,0 -"47",23,1,1,0,2,2,0,-16,1,-6,0.100000000000001,-4 -"48",23,1,2,2,3,1,0,-16,1,-6,0.100000000000001,-4 -"49",23,1,3,3,6,3,0,-16,1,-6,0.100000000000001,-4 -"50",23,1,4,6,6.5,0.5,0,-16,1,-6,0.100000000000001,-4 -"51",23,1,5,6.5,8,1.5,0,-16,1,-6,0.100000000000001,-4 -"52",23,1,6,8,10,2,0,-16,1,-6,0.100000000000001,-4 -"53",24,1,1,0,0.489256291577085,0.489256291577085,1,8,0,4.6,0.100000000000001,9 -"54",25,1,1,0,2,2,0,10,0,-7.8,-0.4,0 -"55",25,1,2,2,3,1,0,10,0,-7.8,-0.4,0 -"56",25,1,3,3,6,3,0,10,0,-7.8,-0.4,0 -"57",25,1,4,6,6.5,0.5,0,10,0,-7.8,-0.4,0 -"58",25,1,5,6.5,7.84174491234614,1.34174491234614,1,10,0,-7.8,-0.4,0 -"59",26,1,1,0,0.860845332816662,0.860845332816662,0,-21,0,-3.5,-1.1,4 -"60",27,1,1,0,2,2,0,26,1,-1.3,-1.3,-4 -"61",27,1,2,2,3,1,0,26,1,-1.3,-1.3,-4 -"62",27,1,3,3,6,3,0,26,1,-1.3,-1.3,-4 -"63",27,1,4,6,6.5,0.5,0,26,1,-1.3,-1.3,-4 -"64",27,1,5,6.5,8,1.5,0,26,1,-1.3,-1.3,-4 -"65",27,1,6,8,10,2,0,26,1,-1.3,-1.3,-4 -"66",28,1,1,0,0.852618124792396,0.852618124792396,0,10,0,-6.8,-0.199999999999999,5 -"67",29,1,1,0,0.947317818609948,0.947317818609948,1,26,0,-1.9,0.5,-4 -"68",30,1,1,0,1.96193205769325,1.96193205769325,1,-5,0,3.8,1,2 -"69",31,1,1,0,2,2,0,22,1,-3.9,-0.4,-5 -"70",31,1,2,2,3,1,0,22,1,-3.9,-0.4,-5 -"71",31,1,3,3,6,3,0,22,1,-3.9,-0.4,-5 -"72",31,1,4,6,6.5,0.5,0,22,1,-3.9,-0.4,-5 -"73",31,1,5,6.5,8,1.5,0,22,1,-3.9,-0.4,-5 -"74",31,1,6,8,9.06459689809511,1.06459689809511,0,22,1,-3.9,-0.4,-5 -"75",32,1,1,0,1.07323429692121,1.07323429692121,0,-19,0,8,-1,-9 -"76",33,1,1,0,0.651621203979986,0.651621203979986,0,0,1,0.799999999999997,3,-2 -"77",34,1,1,0,0.957976548052497,0.957976548052497,1,18,1,-3.8,0.300000000000001,3 -"78",35,1,1,0,2,2,0,-1,1,3.4,0.399999999999999,-4 -"79",35,1,2,2,3,1,0,-1,1,3.4,0.399999999999999,-4 -"80",35,1,3,3,4.65879691600504,1.65879691600504,0,-1,1,3.4,0.399999999999999,-4 -"81",36,1,1,0,2,2,0,21,1,6.8,-0.9,1 -"82",36,1,2,2,3,1,0,21,1,6.8,-0.9,1 -"83",36,1,3,3,4.18239252128781,1.18239252128781,1,21,1,6.8,-0.9,1 -"84",37,1,1,0,0.0450935524976549,0.0450935524976549,1,-13,0,4.7,1.4,4 -"85",38,1,1,0,2,2,0,-13,1,6.6,-0.0999999999999996,-8 -"86",38,1,2,2,3,1,0,-13,1,6.6,-0.0999999999999996,-8 -"87",38,1,3,3,6,3,0,-13,1,6.6,-0.0999999999999996,-8 -"88",38,1,4,6,6.5,0.5,0,-13,1,6.6,-0.0999999999999996,-8 -"89",38,1,5,6.5,8,1.5,0,-13,1,6.6,-0.0999999999999996,-8 -"90",38,1,6,8,8.04203543492983,0.0420354349298318,0,-13,1,6.6,-0.0999999999999996,-8 -"91",39,1,1,0,0.666056404945622,0.666056404945622,1,1,1,-4.3,-1.5,4 -"92",40,1,1,0,2,2,0,-14,1,-1.3,-1.5,0 -"93",40,1,2,2,2.40828367365261,0.408283673652615,0,-14,1,-1.3,-1.5,0 -"94",41,1,1,0,1.09514172202714,1.09514172202714,1,-6,0,-2.4,-0.0999999999999996,3 -"95",42,1,1,0,2,2,0,-21,0,1.5,-0.800000000000001,-5 -"96",42,1,2,2,3,1,0,-21,0,1.5,-0.800000000000001,-5 -"97",42,1,3,3,6,3,0,-21,0,1.5,-0.800000000000001,-5 -"98",42,1,4,6,6.5,0.5,0,-21,0,1.5,-0.800000000000001,-5 -"99",42,1,5,6.5,8,1.5,0,-21,0,1.5,-0.800000000000001,-5 -"100",42,1,6,8,10,2,0,-21,0,1.5,-0.800000000000001,-5 -"101",43,1,1,0,0.154941967612161,0.154941967612161,1,13,1,-5.5,0.899999999999999,4 -"102",44,1,1,0,2,2,0,-25,0,2.3,0.100000000000001,3 -"103",44,1,2,2,3,1,0,-25,0,2.3,0.100000000000001,3 -"104",44,1,3,3,5.83454587233425,2.83454587233425,1,-25,0,2.3,0.100000000000001,3 -"105",45,1,1,0,0.901013019040136,0.901013019040136,1,10,0,-1.8,1.5,2 -"106",46,1,1,0,2,2,0,-14,1,-0.5,-1.2,-12 -"107",46,1,2,2,2.08587145029988,0.0858714502998819,0,-14,1,-0.5,-1.2,-12 -"108",47,1,1,0,2,2,0,9,1,1.2,0,-7 -"109",47,1,2,2,3,1,0,9,1,1.2,0,-7 -"110",47,1,3,3,6,3,0,9,1,1.2,0,-7 -"111",47,1,4,6,6.5,0.5,0,9,1,1.2,0,-7 -"112",47,1,5,6.5,8,1.5,0,9,1,1.2,0,-7 -"113",47,1,6,8,10,2,0,9,1,1.2,0,-7 -"114",48,1,1,0,0.276953243524173,0.276953243524173,1,11,1,5.8,1,-3 -"115",49,1,1,0,2,2,0,-11,1,0.899999999999999,0.300000000000001,2 -"116",49,1,2,2,3,1,0,-11,1,0.899999999999999,0.300000000000001,2 -"117",49,1,3,3,6,3,0,-11,1,0.899999999999999,0.300000000000001,2 -"118",49,1,4,6,6.5,0.5,0,-11,1,0.899999999999999,0.300000000000001,2 -"119",49,1,5,6.5,8,1.5,0,-11,1,0.899999999999999,0.300000000000001,2 -"120",49,1,6,8,10,2,0,-11,1,0.899999999999999,0.300000000000001,2 -"121",50,1,1,0,0.331783418267577,0.331783418267577,1,-5,0,-2.3,-0.5,2 -"122",51,1,1,0,1.67353369009088,1.67353369009088,1,14,0,,-0.4,-1 -"123",52,1,1,0,0.508792130127853,0.508792130127853,1,-2,0,6.2,-0.800000000000001,4 -"124",53,1,1,0,0.0138671162059254,0.0138671162059254,1,19,1,-1.6,1.9,-4 -"125",54,1,1,0,2,2,0,-24,1,-3.7,0,-4 -"126",54,1,2,2,3,1,0,-24,1,-3.7,0,-4 -"127",54,1,3,3,6,3,0,-24,1,-3.7,0,-4 -"128",54,1,4,6,6.5,0.5,0,-24,1,-3.7,0,-4 -"129",54,1,5,6.5,8,1.5,0,-24,1,-3.7,0,-4 -"130",54,1,6,8,8.44453226470276,0.444532264702763,0,-24,1,-3.7,0,-4 -"131",55,1,1,0,1.2987658554929,1.2987658554929,1,-16,0,-4.2,1,0 -"132",56,1,1,0,1.71372999209612,1.71372999209612,0,-7,0,1.6,-0.5,-2 -"133",57,1,1,0,0.122637755769792,0.122637755769792,1,19,0,5.4,0,2 -"134",58,1,1,0,2,2,0,-16,1,-6.5,-0.800000000000001,-5 -"135",58,1,2,2,3,1,0,-16,1,-6.5,-0.800000000000001,-5 -"136",58,1,3,3,6,3,0,-16,1,-6.5,-0.800000000000001,-5 -"137",58,1,4,6,6.5,0.5,0,-16,1,-6.5,-0.800000000000001,-5 -"138",58,1,5,6.5,7.098300501924,0.598300501924002,0,-16,1,-6.5,-0.800000000000001,-5 -"139",59,1,1,0,2,2,0,-9,0,7.9,1.3,-2 -"140",59,1,2,2,2.42864552741066,0.428645527410659,1,-9,0,7.9,1.3,-2 -"141",60,1,1,0,2,2,0,-7,0,7.8,-0.199999999999999,-1 -"142",60,1,2,2,3,1,0,-7,0,7.8,-0.199999999999999,-1 -"143",60,1,3,3,3.65547354011623,0.65547354011623,0,-7,0,7.8,-0.199999999999999,-1 -"144",61,1,1,0,2,2,0,-27,0,-7,-0.699999999999999,-2 -"145",61,1,2,2,3,1,0,-27,0,-7,-0.699999999999999,-2 -"146",61,1,3,3,6,3,0,-27,0,-7,-0.699999999999999,-2 -"147",61,1,4,6,6.5,0.5,0,-27,0,-7,-0.699999999999999,-2 -"148",61,1,5,6.5,7.52830015670305,1.02830015670305,0,-27,0,-7,-0.699999999999999,-2 -"149",62,1,1,0,1.27800139287584,1.27800139287584,1,-4,0,-1.9,1.3,1 -"150",63,1,1,0,1.01352810835984,1.01352810835984,0,-3,0,-5.3,0.199999999999999,5 -"151",64,1,1,0,2,2,0,-10,1,1.1,-1.1,5 -"152",64,1,2,2,3,1,0,-10,1,1.1,-1.1,5 -"153",64,1,3,3,4.75179598339954,1.75179598339954,1,-10,1,1.1,-1.1,5 -"154",65,1,1,0,2,2,0,6,1,4.3,0.800000000000001,-2 -"155",65,1,2,2,3,1,0,6,1,4.3,0.800000000000001,-2 -"156",65,1,3,3,6,3,0,6,1,4.3,0.800000000000001,-2 -"157",65,1,4,6,6.5,0.5,0,6,1,4.3,0.800000000000001,-2 -"158",65,1,5,6.5,8,1.5,0,6,1,4.3,0.800000000000001,-2 -"159",65,1,6,8,8.0218301320642,0.0218301320642015,0,6,1,4.3,0.800000000000001,-2 -"160",66,1,1,0,2,2,0,1,1,3.1,-1.4,1 -"161",66,1,2,2,3,1,0,1,1,3.1,-1.4,1 -"162",66,1,3,3,6,3,0,1,1,3.1,-1.4,1 -"163",66,1,4,6,6.5,0.5,0,1,1,3.1,-1.4,1 -"164",66,1,5,6.5,8,1.5,0,1,1,3.1,-1.4,1 -"165",66,1,6,8,10,2,0,1,1,3.1,-1.4,1 -"166",67,1,1,0,2,2,0,-11,1,-1.2,-1.4,2 -"167",67,1,2,2,3,1,0,-11,1,-1.2,-1.4,2 -"168",67,1,3,3,6,3,0,-11,1,-1.2,-1.4,2 -"169",67,1,4,6,6.5,0.5,0,-11,1,-1.2,-1.4,2 -"170",67,1,5,6.5,8,1.5,0,-11,1,-1.2,-1.4,2 -"171",67,1,6,8,10,2,0,-11,1,-1.2,-1.4,2 -"172",68,1,1,0,2,2,0,3,1,-4.9,0.100000000000001,-5 -"173",68,1,2,2,3,1,0,3,1,-4.9,0.100000000000001,-5 -"174",68,1,3,3,4.7442026983621,1.7442026983621,0,3,1,-4.9,0.100000000000001,-5 -"175",69,1,1,0,0.712430730598467,0.712430730598467,1,-1,1,3.1,0.800000000000001,4 -"176",70,1,1,0,2,2,0,15,0,-0.5,-1.1,-1 -"177",70,1,2,2,3,1,0,15,0,-0.5,-1.1,-1 -"178",70,1,3,3,6,3,0,15,0,-0.5,-1.1,-1 -"179",70,1,4,6,6.5,0.5,0,15,0,-0.5,-1.1,-1 -"180",70,1,5,6.5,8,1.5,0,15,0,-0.5,-1.1,-1 -"181",70,1,6,8,10,2,0,15,0,-0.5,-1.1,-1 -"182",71,1,1,0,2,2,0,-22,0,,-0.6,6 -"183",71,1,2,2,3,1,0,-22,0,,-0.6,6 -"184",71,1,3,3,5.27518935008381,2.27518935008381,0,-22,0,,-0.6,6 -"185",72,1,1,0,1.87171430750557,1.87171430750557,0,-21,,-0.100000000000001,0.699999999999999,-2 -"186",73,1,1,0,2,2,0,11,1,-6.4,-0.6,5 -"187",73,1,2,2,3,1,0,11,1,-6.4,-0.6,5 -"188",73,1,3,3,4.01183699758839,1.01183699758839,0,11,1,-6.4,-0.6,5 -"189",74,1,1,0,0.143503861018392,0.143503861018392,1,-9,1,4.5,0,-1 -"190",75,1,1,0,0.249901118157596,0.249901118157596,1,8,1,5.1,0.800000000000001,-2 -"191",76,1,1,0,0.17442393725393,0.17442393725393,1,6,1,-3,1.2,4 -"192",77,1,1,0,1.52799369537845,1.52799369537845,1,27,1,-1,0,-8 -"193",78,1,1,0,2,2,0,-17,0,-5.4,-0.9,-1 -"194",78,1,2,2,3,1,0,-17,0,-5.4,-0.9,-1 -"195",78,1,3,3,6,3,0,-17,0,-5.4,-0.9,-1 -"196",78,1,4,6,6.5,0.5,0,-17,0,-5.4,-0.9,-1 -"197",78,1,5,6.5,8,1.5,0,-17,0,-5.4,-0.9,-1 -"198",78,1,6,8,10,2,0,-17,0,-5.4,-0.9,-1 -"199",79,1,1,0,0.65649123645075,0.65649123645075,1,10,0,2.4,1.2,2 -"200",80,1,1,0,2,2,0,-2,0,1.1,-0.199999999999999,-9 -"201",80,1,2,2,3,1,0,-2,0,1.1,-0.199999999999999,-9 -"202",80,1,3,3,6,3,0,-2,0,1.1,-0.199999999999999,-9 -"203",80,1,4,6,6.5,0.5,0,-2,0,1.1,-0.199999999999999,-9 -"204",80,1,5,6.5,8,1.5,0,-2,0,1.1,-0.199999999999999,-9 -"205",80,1,6,8,10,2,0,-2,0,1.1,-0.199999999999999,-9 -"206",81,1,1,0,0.395295872237747,0.395295872237747,0,-4,1,0.100000000000001,-1.5,5 -"207",82,1,1,0,0.373969653306631,0.373969653306631,1,-12,0,5.2,1.8,6 -"208",83,1,1,0,2,2,0,-17,1,3.6,1.2,3 -"209",83,1,2,2,3,1,0,-17,1,3.6,1.2,3 -"210",83,1,3,3,6,3,0,-17,1,3.6,1.2,3 -"211",83,1,4,6,6.5,0.5,0,-17,1,3.6,1.2,3 -"212",83,1,5,6.5,8,1.5,0,-17,1,3.6,1.2,3 -"213",83,1,6,8,10,2,0,-17,1,3.6,1.2,3 -"214",84,1,1,0,2,2,0,-8,0,-2,-0.4,0 -"215",84,1,2,2,3,1,0,-8,0,-2,-0.4,0 -"216",84,1,3,3,4.26955558675629,1.26955558675629,1,-8,0,-2,-0.4,0 -"217",85,1,1,0,0.0228078932406999,0.0228078932406999,1,36,0,4.6,0.199999999999999,-4 -"218",86,1,1,0,0.242717225909382,0.242717225909382,0,12,0,-3.1,0.5,6 -"219",87,1,1,0,2,2,0,11,1,6,-0.6,-3 -"220",87,1,2,2,3,1,0,11,1,6,-0.6,-3 -"221",87,1,3,3,6,3,0,11,1,6,-0.6,-3 -"222",87,1,4,6,6.16274922151344,0.162749221513445,1,11,1,6,-0.6,-3 -"223",88,1,1,0,1.38858856506398,1.38858856506398,0,-1,1,-6,0.399999999999999,4 -"224",89,1,1,0,0.0458699106876642,0.0458699106876642,1,31,1,-3.5,-0.0999999999999996,4 -"225",90,1,1,0,2,2,0,-6,0,0.799999999999997,-1.7,2 -"226",90,1,2,2,3,1,0,-6,0,0.799999999999997,-1.7,2 -"227",90,1,3,3,6,3,0,-6,0,0.799999999999997,-1.7,2 -"228",90,1,4,6,6.5,0.5,0,-6,0,0.799999999999997,-1.7,2 -"229",90,1,5,6.5,8,1.5,0,-6,0,0.799999999999997,-1.7,2 -"230",90,1,6,8,10,2,0,-6,0,0.799999999999997,-1.7,2 -"231",91,1,1,0,1.14607217861491,1.14607217861491,0,-5,0,6.3,-0.4,-1 -"232",92,1,1,0,0.0522144457225193,0.0522144457225193,1,17,0,-1.6,1.3,6 -"233",93,1,1,0,2,2,0,-36,0,0.600000000000001,-1.4,-2 -"234",93,1,2,2,3,1,0,-36,0,0.600000000000001,-1.4,-2 -"235",93,1,3,3,6,3,0,-36,0,0.600000000000001,-1.4,-2 -"236",93,1,4,6,6.5,0.5,0,-36,0,0.600000000000001,-1.4,-2 -"237",93,1,5,6.5,8,1.5,0,-36,0,0.600000000000001,-1.4,-2 -"238",93,1,6,8,8.93144666277005,0.93144666277005,0,-36,0,0.600000000000001,-1.4,-2 -"239",94,1,1,0,0.673346473088764,0.673346473088764,1,9,0,-4.8,0.600000000000001,4 -"240",95,1,1,0,2,2,0,-31,1,-1.1,0.800000000000001,-1 -"241",95,1,2,2,3,1,0,-31,1,-1.1,0.800000000000001,-1 -"242",95,1,3,3,6,3,0,-31,1,-1.1,0.800000000000001,-1 -"243",95,1,4,6,6.5,0.5,0,-31,1,-1.1,0.800000000000001,-1 -"244",95,1,5,6.5,8,1.5,0,-31,1,-1.1,0.800000000000001,-1 -"245",95,1,6,8,10,2,0,-31,1,-1.1,0.800000000000001,-1 -"246",96,1,1,,,,,-8,0,4.8,0.199999999999999,3 -"247",97,1,1,0,2,2,0,-18,0,-0.100000000000001,1.1,-3 -"248",97,1,2,2,3,1,0,-18,0,-0.100000000000001,1.1,-3 -"249",97,1,3,3,3.04904585867334,0.0490458586733353,0,-18,0,-0.100000000000001,1.1,-3 -"250",98,1,1,0,2,2,0,-10,1,2.2,-0.699999999999999,3 -"251",98,1,2,2,3,1,0,-10,1,2.2,-0.699999999999999,3 -"252",98,1,3,3,4.01954234686972,1.01954234686972,0,-10,1,2.2,-0.699999999999999,3 -"253",99,1,1,0,1.83475536347078,1.83475536347078,1,9,0,-0.600000000000001,-2.6,-2 -"254",100,1,1,0,1.33335883711666,1.33335883711666,1,4,0,-4,0.5,-3 -"255",101,1,1,0,1.97054326963873,1.97054326963873,1,19,1,6.6,0.699999999999999,-11 -"256",102,1,1,0,2,2,0,-24,0,-2.8,0.199999999999999,0 -"257",102,1,2,2,3,1,0,-24,0,-2.8,0.199999999999999,0 -"258",102,1,3,3,4.51608955863592,1.51608955863592,0,-24,0,-2.8,0.199999999999999,0 -"259",103,1,1,0,0.778811774756532,0.778811774756532,1,11,0,-6.2,0.399999999999999,11 -"260",104,1,1,0,2,2,0,-12,1,-0.899999999999999,0.600000000000001,1 -"261",104,1,2,2,3,1,0,-12,1,-0.899999999999999,0.600000000000001,1 -"262",104,1,3,3,5.34579899557815,2.34579899557815,0,-12,1,-0.899999999999999,0.600000000000001,1 -"263",105,1,1,0,0.496465661540958,0.496465661540958,0,-36,1,-1.1,1,-1 -"264",106,1,1,0,1.2408407121783,1.2408407121783,1,2,0,6.3,-1.3,0 -"265",107,1,1,0,1.85358800057094,1.85358800057094,1,8,0,-3.7,0.399999999999999,-9 -"266",108,1,1,0,2,2,0,9,1,4.4,-0.0999999999999996,5 -"267",108,1,2,2,3,1,0,9,1,4.4,-0.0999999999999996,5 -"268",108,1,3,3,6,3,0,9,1,4.4,-0.0999999999999996,5 -"269",108,1,4,6,6.03229451886473,0.0322945188647275,0,9,1,4.4,-0.0999999999999996,5 -"270",109,1,1,0,2,2,0,-21,0,-4,0.399999999999999,-12 -"271",109,1,2,2,2.25915192539573,0.259151925395729,0,-21,0,-4,0.399999999999999,-12 -"272",110,1,1,,,,,9,1,-3.3,-1.2,-1 -"273",110,1,2,,,,,9,1,-3.3,-1.2,-1 -"274",110,1,3,,,,,9,1,-3.3,-1.2,-1 -"275",110,1,4,,,,,9,1,-3.3,-1.2,-1 -"276",110,1,5,,,,,9,1,-3.3,-1.2,-1 -"277",110,1,6,,,,,9,1,-3.3,-1.2,-1 -"278",111,1,1,0,0.325152826402772,0.325152826402772,1,5,0,4.5,1.1,13 -"279",112,1,1,0,1.25686535041525,1.25686535041525,1,-6,0,4.7,-0.0999999999999996,-4 -"280",113,1,1,0,1.55208718831898,1.55208718831898,1,11,1,6,-0.800000000000001,5 -"281",114,1,1,0,0.435924975615466,0.435924975615466,1,-19,1,0,1,-5 -"282",115,1,1,0,2,2,0,24,1,0.600000000000001,0.699999999999999,-9 -"283",115,1,2,2,3,1,0,24,1,0.600000000000001,0.699999999999999,-9 -"284",115,1,3,3,5.23509212109797,2.23509212109797,0,24,1,0.600000000000001,0.699999999999999,-9 -"285",116,1,1,0,0.0637783181329911,0.0637783181329911,1,13,0,6.4,1.4,-4 -"286",117,1,1,0,2,2,0,8,0,-2.4,-0.0999999999999996,2 -"287",117,1,2,2,3,1,0,8,0,-2.4,-0.0999999999999996,2 -"288",117,1,3,3,4.23267280881659,1.23267280881659,0,8,0,-2.4,-0.0999999999999996,2 -"289",118,1,1,0,0.718886975309205,0.718886975309205,1,17,0,6.7,-0.5,-6 -"290",119,1,1,0,1.56599357527231,1.56599357527231,1,,0,2.6,0.300000000000001,-3 -"291",120,1,1,0,0.463905361004219,0.463905361004219,1,9,0,2.3,-1.2,5 -"292",121,1,1,0,2,2,0,-16,1,1.4,-1.3,13 -"293",121,1,2,2,3,1,0,-16,1,1.4,-1.3,13 -"294",121,1,3,3,5.64880480967354,2.64880480967354,0,-16,1,1.4,-1.3,13 -"295",122,1,1,0,0.670138037251177,0.670138037251177,0,7,1,-1.6,-0.300000000000001,-4 -"296",123,1,1,0,1.58179680764229,1.58179680764229,0,-9,1,1.9,1.3,5 -"297",124,1,1,0,2,2,0,3,0,-2.1,0.399999999999999,9 -"298",124,1,2,2,2.30676930407626,0.306769304076255,1,3,0,-2.1,0.399999999999999,9 -"299",125,1,1,0,2,2,0,3,0,-3.5,-1,0 -"300",125,1,2,2,3,1,0,3,0,-3.5,-1,0 -"301",125,1,3,3,4.72591208890843,1.72591208890843,0,3,0,-3.5,-1,0 -"302",126,1,1,0,2,2,0,-36,0,3,-1,4 -"303",126,1,2,2,3,1,0,-36,0,3,-1,4 -"304",126,1,3,3,6,3,0,-36,0,3,-1,4 -"305",126,1,4,6,6.5,0.5,0,-36,0,3,-1,4 -"306",126,1,5,6.5,8,1.5,0,-36,0,3,-1,4 -"307",126,1,6,8,9.00654705965807,1.00654705965807,1,-36,0,3,-1,4 -"308",127,1,1,0,2,2,0,-7,0,-0.399999999999999,-0.9,3 -"309",127,1,2,2,3,1,0,-7,0,-0.399999999999999,-0.9,3 -"310",127,1,3,3,6,3,0,-7,0,-0.399999999999999,-0.9,3 -"311",127,1,4,6,6.5,0.5,0,-7,0,-0.399999999999999,-0.9,3 -"312",127,1,5,6.5,8,1.5,0,-7,0,-0.399999999999999,-0.9,3 -"313",127,1,6,8,10,2,0,-7,0,-0.399999999999999,-0.9,3 -"314",128,1,1,0,0.183209488413559,0.183209488413559,0,-19,0,3.9,-0.300000000000001,10 -"315",129,1,1,0,2,2,0,5,1,-2,-0.699999999999999,3 -"316",129,1,2,2,3,1,0,5,1,-2,-0.699999999999999,3 -"317",129,1,3,3,5.52811822554447,2.52811822554447,0,5,1,-2,-0.699999999999999,3 -"318",130,1,1,0,2,2,0,8,1,-7.2,0.800000000000001,1 -"319",130,1,2,2,3,1,0,8,1,-7.2,0.800000000000001,1 -"320",130,1,3,3,5.38768522974699,2.38768522974699,1,8,1,-7.2,0.800000000000001,1 -"321",131,1,1,0,2,2,0,-15,1,9.7,-1,-10 -"322",131,1,2,2,3,1,0,-15,1,9.7,-1,-10 -"323",131,1,3,3,6,3,0,-15,1,9.7,-1,-10 -"324",131,1,4,6,6.5,0.5,0,-15,1,9.7,-1,-10 -"325",131,1,5,6.5,8,1.5,0,-15,1,9.7,-1,-10 -"326",131,1,6,8,8.27183773623601,0.271837736236009,1,-15,1,9.7,-1,-10 -"327",132,1,1,0,2,2,0,-8,1,7.4,-0.699999999999999,-12 -"328",132,1,2,2,2.7199850649485,0.719985064948501,0,-8,1,7.4,-0.699999999999999,-12 -"329",133,1,1,0,2,2,0,8,1,5.9,-0.300000000000001,-7 -"330",133,1,2,2,3,1,0,8,1,5.9,-0.300000000000001,-7 -"331",133,1,3,3,5.23886680312787,2.23886680312787,0,8,1,5.9,-0.300000000000001,-7 -"332",134,1,1,0,0.448333139926894,0.448333139926894,1,6,0,1.2,-0.9,6 -"333",135,1,1,0,2,2,0,-40,1,5.2,1.2,2 -"334",135,1,2,2,3,1,0,-40,1,5.2,1.2,2 -"335",135,1,3,3,3.75580071064811,0.755800710648109,0,-40,1,5.2,1.2,2 -"336",136,1,1,0,1.85781629308954,1.85781629308954,0,8,1,3.9,-2.4,1 -"337",137,1,1,0,1.67048557167707,1.67048557167707,0,12,1,-5.2,-2.7,0 -"338",138,1,1,0,0.690803363531592,0.690803363531592,1,8,1,8.8,-0.699999999999999,4 -"339",139,1,1,0,0.0941704056769874,0.0941704056769874,0,-14,0,-0.600000000000001,-0.699999999999999, -"340",140,1,1,0,2,2,0,-2,0,-5.1,-0.4,-11 -"341",140,1,2,2,3,1,0,-2,0,-5.1,-0.4,-11 -"342",140,1,3,3,3.81544685355194,0.815446853551943,0,-2,0,-5.1,-0.4,-11 -"343",141,1,1,0,2,2,0,-2,1,-5.9,-0.5,1 -"344",141,1,2,2,3,1,0,-2,1,-5.9,-0.5,1 -"345",141,1,3,3,5.960693221114,2.960693221114,0,-2,1,-5.9,-0.5,1 -"346",142,1,1,0,0.412162469938368,0.412162469938368,0,15,0,1.7,-0.0999999999999996,-5 -"347",143,1,1,0,2,2,0,-6,1,-8.3,-0.6,2 -"348",143,1,2,2,3,1,0,-6,1,-8.3,-0.6,2 -"349",143,1,3,3,6,3,0,-6,1,-8.3,-0.6,2 -"350",143,1,4,6,6.5,0.5,0,-6,1,-8.3,-0.6,2 -"351",143,1,5,6.5,7.0485315700047,0.548531570004699,0,-6,1,-8.3,-0.6,2 -"352",144,1,1,0,2,2,0,13,0,-0.5,-1.4,-2 -"353",144,1,2,2,3,1,0,13,0,-0.5,-1.4,-2 -"354",144,1,3,3,6,3,0,13,0,-0.5,-1.4,-2 -"355",144,1,4,6,6.5,0.5,0,13,0,-0.5,-1.4,-2 -"356",144,1,5,6.5,8,1.5,0,13,0,-0.5,-1.4,-2 -"357",144,1,6,8,10,2,0,13,0,-0.5,-1.4,-2 -"358",145,1,1,0,2,2,0,22,1,-0.799999999999997,0.300000000000001,-5 -"359",145,1,2,2,3,1,0,22,1,-0.799999999999997,0.300000000000001,-5 -"360",145,1,3,3,6,3,0,22,1,-0.799999999999997,0.300000000000001,-5 -"361",145,1,4,6,6.5,0.5,0,22,1,-0.799999999999997,0.300000000000001,-5 -"362",145,1,5,6.5,8,1.5,0,22,1,-0.799999999999997,0.300000000000001,-5 -"363",145,1,6,8,10,2,0,22,1,-0.799999999999997,0.300000000000001,-5 -"364",146,1,1,0,2,2,0,-7,0,-4.3,0.399999999999999,6 -"365",146,1,2,2,2.62374578289096,0.623745782890956,0,-7,0,-4.3,0.399999999999999,6 -"366",147,1,1,0,2,2,0,-31,1,0.799999999999997,-0.199999999999999,6 -"367",147,1,2,2,3,1,0,-31,1,0.799999999999997,-0.199999999999999,6 -"368",147,1,3,3,6,3,0,-31,1,0.799999999999997,-0.199999999999999,6 -"369",147,1,4,6,6.5,0.5,0,-31,1,0.799999999999997,-0.199999999999999,6 -"370",147,1,5,6.5,8,1.5,0,-31,1,0.799999999999997,-0.199999999999999,6 -"371",147,1,6,8,9.550821160024,1.550821160024,0,-31,1,0.799999999999997,-0.199999999999999,6 -"372",148,1,1,0,0.543468897061735,0.543468897061735,1,32,1,-2.1,1.1,-5 -"373",149,1,1,0,2,2,0,6,1,-6.9,0.199999999999999,-3 -"374",149,1,2,2,3,1,0,6,1,-6.9,0.199999999999999,-3 -"375",149,1,3,3,6,3,0,6,1,-6.9,0.199999999999999,-3 -"376",149,1,4,6,6.5,0.5,0,6,1,-6.9,0.199999999999999,-3 -"377",149,1,5,6.5,8,1.5,0,6,1,-6.9,0.199999999999999,-3 -"378",149,1,6,8,10,2,0,6,1,-6.9,0.199999999999999,-3 -"379",150,1,1,0,0.037351882135465,0.037351882135465,0,2,0,4.4,0.100000000000001,-6 -"380",151,1,1,0,1.49076098816842,1.49076098816842,1,1,1,10,-0.300000000000001,4 -"381",152,1,1,0,1.50596218840163,1.50596218840163,1,13,1,7.4,0,0 -"382",153,1,1,0,1.63866688235749,1.63866688235749,0,10,0,-1.5,-0.0999999999999996,6 -"383",154,1,1,0,2,2,0,-8,0,1.6,0.300000000000001,0 -"384",154,1,2,2,2.55920439375315,0.559204393753153,1,-8,0,1.6,0.300000000000001,0 -"385",155,1,1,0,0.113288852271183,0.113288852271183,0,-11,0,-0.200000000000003,0,4 -"386",156,1,1,0,2,2,0,-3,1,-12.7,1,0 -"387",156,1,2,2,3,1,0,-3,1,-12.7,1,0 -"388",156,1,3,3,6,3,0,-3,1,-12.7,1,0 -"389",156,1,4,6,6.5,0.5,0,-3,1,-12.7,1,0 -"390",156,1,5,6.5,8,1.5,0,-3,1,-12.7,1,0 -"391",156,1,6,8,10,2,0,-3,1,-12.7,1,0 -"392",157,1,1,0,1.82780210748175,1.82780210748175,0,9,1,-2.9,,-10 -"393",158,1,1,0,2,2,0,-28,1,-5.2,0.399999999999999,-3 -"394",158,1,2,2,3,1,0,-28,1,-5.2,0.399999999999999,-3 -"395",158,1,3,3,4.56510552710246,1.56510552710246,0,-28,1,-5.2,0.399999999999999,-3 -"396",159,1,1,0,2,2,0,6,0,-3.9,-0.6,0 -"397",159,1,2,2,3,1,0,6,0,-3.9,-0.6,0 -"398",159,1,3,3,3.63456110391947,0.634561103919472,1,6,0,-3.9,-0.6,0 -"399",160,1,1,0,2,2,0,-21,1,3.9,2.2,3 -"400",160,1,2,2,3,1,0,-21,1,3.9,2.2,3 -"401",160,1,3,3,6,3,0,-21,1,3.9,2.2,3 -"402",160,1,4,6,6.5,0.5,0,-21,1,3.9,2.2,3 -"403",160,1,5,6.5,6.88816925142504,0.388169251425043,0,-21,1,3.9,2.2,3 -"404",161,1,1,0,0.706085564442944,0.706085564442944,1,-4,1,1.3,-0.6,6 -"405",162,1,1,0,1.38431453754578,1.38431453754578,1,37,1,1.7,-0.6,-5 -"406",163,1,1,0,0.614190304751206,0.614190304751206,1,-14,0,3,0.399999999999999,-1 -"407",164,1,1,0,2,2,0,-4,0,-7.4,-2.4,-4 -"408",164,1,2,2,2.84852976022927,0.848529760229274,0,-4,0,-7.4,-2.4,-4 -"409",165,1,1,0,1.0001479489376,1.0001479489376,1,20,0,-4.4,0.199999999999999,11 -"410",166,1,1,0,2,2,0,-2,1,10.4,0.899999999999999,-1 -"411",166,1,2,2,3,1,0,-2,1,10.4,0.899999999999999,-1 -"412",166,1,3,3,5.16820837056756,2.16820837056756,0,-2,1,10.4,0.899999999999999,-1 -"413",167,1,1,0,2,2,0,-5,1,1.3,0,-6 -"414",167,1,2,2,3,1,0,-5,1,1.3,0,-6 -"415",167,1,3,3,5.38380973535817,2.38380973535817,0,-5,1,1.3,0,-6 -"416",168,1,1,0,0.116580222531269,0.116580222531269,1,10,1,-2.8,-0.4,2 -"417",169,1,1,0,0.553369403073491,0.553369403073491,1,13,0,0.399999999999999,-2.2,3 -"418",170,1,1,0,2,2,0,-19,0,3,1.4,-5 -"419",170,1,2,2,3,1,0,-19,0,3,1.4,-5 -"420",170,1,3,3,6,3,0,-19,0,3,1.4,-5 -"421",170,1,4,6,6.5,0.5,0,-19,0,3,1.4,-5 -"422",170,1,5,6.5,8,1.5,0,-19,0,3,1.4,-5 -"423",170,1,6,8,9.09627843917537,1.09627843917537,1,-19,0,3,1.4,-5 -"424",171,1,1,0,2,2,0,-20,1,-3.7,-0.9,-2 -"425",171,1,2,2,3,1,0,-20,1,-3.7,-0.9,-2 -"426",171,1,3,3,3.27764891289296,0.277648912892963,0,-20,1,-3.7,-0.9,-2 -"427",172,1,1,0,1.24732476584477,1.24732476584477,1,-1,1,1.9,1.5,11 -"428",173,1,1,0,0.304013330396319,0.304013330396319,1,11,1,2.1,-0.6,7 -"429",174,1,1,0,2,2,0,-25,1,2.8,0.899999999999999,-1 -"430",174,1,2,2,3,1,0,-25,1,2.8,0.899999999999999,-1 -"431",174,1,3,3,6,3,0,-25,1,2.8,0.899999999999999,-1 -"432",174,1,4,6,6.5,0.5,0,-25,1,2.8,0.899999999999999,-1 -"433",174,1,5,6.5,8,1.5,0,-25,1,2.8,0.899999999999999,-1 -"434",174,1,6,8,10,2,0,-25,1,2.8,0.899999999999999,-1 -"435",175,1,1,0,0.11344558658343,0.11344558658343,1,-9,1,0.700000000000003,0.699999999999999,1 -"436",176,1,1,0,2,2,0,-14,1,1,-1,-4 -"437",176,1,2,2,3,1,0,-14,1,1,-1,-4 -"438",176,1,3,3,4.85569206865891,1.85569206865891,0,-14,1,1,-1,-4 -"439",177,1,1,0,2,2,0,-26,1,-2.9,1,-5 -"440",177,1,2,2,2.86818506285559,0.868185062855585,0,-26,1,-2.9,1,-5 -"441",178,1,1,0,2,2,0,-34,1,-2.9,0.399999999999999,2 -"442",178,1,2,2,3,1,0,-34,1,-2.9,0.399999999999999,2 -"443",178,1,3,3,6,3,0,-34,1,-2.9,0.399999999999999,2 -"444",178,1,4,6,6.5,0.5,0,-34,1,-2.9,0.399999999999999,2 -"445",178,1,5,6.5,8,1.5,0,-34,1,-2.9,0.399999999999999,2 -"446",178,1,6,8,10,2,0,-34,1,-2.9,0.399999999999999,2 -"447",179,1,1,0,0.515338530220008,0.515338530220008,1,-11,0,-2.5,1.6,5 -"448",180,1,1,0,2,2,0,-12,1,-6,0.100000000000001,-5 -"449",180,1,2,2,3,1,0,-12,1,-6,0.100000000000001,-5 -"450",180,1,3,3,6,3,0,-12,1,-6,0.100000000000001,-5 -"451",180,1,4,6,6.5,0.5,0,-12,1,-6,0.100000000000001,-5 -"452",180,1,5,6.5,6.61829843303818,0.118298433038176,0,-12,1,-6,0.100000000000001,-5 -"453",181,1,1,0,2,2,0,19,1,3.6,-0.9,-1 -"454",181,1,2,2,3,1,0,19,1,3.6,-0.9,-1 -"455",181,1,3,3,5.06319002187401,2.06319002187401,0,19,1,3.6,-0.9,-1 -"456",182,1,1,0,1.60435160985153,1.60435160985153,1,-1,0,-9.8,1,2 -"457",183,1,1,0,2,2,0,0,0,-7.3,-1.1,-3 -"458",183,1,2,2,3,1,0,0,0,-7.3,-1.1,-3 -"459",183,1,3,3,6,3,0,0,0,-7.3,-1.1,-3 -"460",183,1,4,6,6.5,0.5,0,0,0,-7.3,-1.1,-3 -"461",183,1,5,6.5,8,1.5,0,0,0,-7.3,-1.1,-3 -"462",183,1,6,8,9.86597623286895,1.86597623286895,0,0,0,-7.3,-1.1,-3 -"463",184,1,1,0,2,2,0,-3,1,6.7,0,-1 -"464",184,1,2,2,3,1,0,-3,1,6.7,0,-1 -"465",184,1,3,3,5.34301424127543,2.34301424127543,0,-3,1,6.7,0,-1 -"466",185,1,1,0,2,2,0,-43,1,4.6,1.6,10 -"467",185,1,2,2,2.4009296994246,0.400929699424598,0,-43,1,4.6,1.6,10 -"468",186,1,1,0,2,2,0,-16,1,5,-1.5,0 -"469",186,1,2,2,2.12714772852687,0.127147728526871,0,-16,1,5,-1.5,0 -"470",187,1,1,0,1.36800566663767,1.36800566663767,1,3,1,-1.9,-0.800000000000001,-2 -"471",188,1,1,0,2,2,0,-14,0,1.2,-0.699999999999999,2 -"472",188,1,2,2,3,1,0,-14,0,1.2,-0.699999999999999,2 -"473",188,1,3,3,6,3,0,-14,0,1.2,-0.699999999999999,2 -"474",188,1,4,6,6.44007610214853,0.440076102148529,0,-14,0,1.2,-0.699999999999999,2 -"475",189,1,1,0,2,2,0,-12,0,-1.7,-1.6,2 -"476",189,1,2,2,3,1,0,-12,0,-1.7,-1.6,2 -"477",189,1,3,3,6,3,0,-12,0,-1.7,-1.6,2 -"478",189,1,4,6,6.5,0.5,0,-12,0,-1.7,-1.6,2 -"479",189,1,5,6.5,8,1.5,0,-12,0,-1.7,-1.6,2 -"480",189,1,6,8,10,2,0,-12,0,-1.7,-1.6,2 -"481",190,1,1,0,0.357000337169002,0.357000337169002,0,19,0,-2.1,1.2,-4 -"482",191,1,1,0,2,2,0,-16,1,-1,-1,-2 -"483",191,1,2,2,3,1,0,-16,1,-1,-1,-2 -"484",191,1,3,3,4.69576263598928,1.69576263598928,1,-16,1,-1,-1,-2 -"485",192,1,1,0,2,2,0,11,1,1.3,-0.0999999999999996,-7 -"486",192,1,2,2,2.29602859112545,0.296028591125446,0,11,1,1.3,-0.0999999999999996,-7 -"487",193,1,1,0,2,2,0,-26,0,-0.100000000000001,1.4,0 -"488",193,1,2,2,2.8119002343709,0.811900234370898,0,-26,0,-0.100000000000001,1.4,0 -"489",194,1,1,0,2,2,0,10,1,0.399999999999999,-0.4,1 -"490",194,1,2,2,3,1,0,10,1,0.399999999999999,-0.4,1 -"491",194,1,3,3,6,3,0,10,1,0.399999999999999,-0.4,1 -"492",194,1,4,6,6.5,0.5,0,10,1,0.399999999999999,-0.4,1 -"493",194,1,5,6.5,8,1.5,0,10,1,0.399999999999999,-0.4,1 -"494",194,1,6,8,10,2,0,10,1,0.399999999999999,-0.4,1 -"495",195,1,1,0,0.32370750506778,0.32370750506778,1,22,1,1.2,-0.199999999999999,1 -"496",196,1,1,0,0.659627598753196,0.659627598753196,0,-2,0,0.600000000000001,-0.6,6 -"497",197,1,1,0,2,2,0,6,1,-1.1,0.600000000000001,2 -"498",197,1,2,2,2.93116632856682,0.931166328566818,1,6,1,-1.1,0.600000000000001,2 -"499",198,1,1,0,0.121809764600107,0.121809764600107,1,5,1,8,0.399999999999999,-2 -"500",199,1,1,0,2,2,0,15,0,-1.9,-0.5,-1 -"501",199,1,2,2,3,1,0,15,0,-1.9,-0.5,-1 -"502",199,1,3,3,6,3,0,15,0,-1.9,-0.5,-1 -"503",199,1,4,6,6.5,0.5,0,15,0,-1.9,-0.5,-1 -"504",199,1,5,6.5,6.85193485627715,0.351934856277146,1,15,0,-1.9,-0.5,-1 -"505",200,1,1,0,2,2,0,5,1,5.3,0.600000000000001,-9 -"506",200,1,2,2,2.21801035305279,0.218010353052795,0,5,1,5.3,0.600000000000001,-9 -"507",201,1,1,0,0.434040724290995,0.434040724290995,1,-1,0,4.4,0.100000000000001,-10 -"508",202,1,1,0,2,2,0,-17,0,0.700000000000003,0.899999999999999,2 -"509",202,1,2,2,3,1,0,-17,0,0.700000000000003,0.899999999999999,2 -"510",202,1,3,3,3.96546042005786,0.965460420057857,0,-17,0,0.700000000000003,0.899999999999999,2 -"511",203,1,1,0,2,2,0,-20,0,-3.6,-1,0 -"512",203,1,2,2,3,1,0,-20,0,-3.6,-1,0 -"513",203,1,3,3,6,3,0,-20,0,-3.6,-1,0 -"514",203,1,4,6,6.18370868617832,0.183708686178322,0,-20,0,-3.6,-1,0 -"515",204,1,1,0,0.649280320857334,0.649280320857334,0,-2,1,2.2,-1.3,-13 -"516",205,1,1,0,0.321920306420802,0.321920306420802,1,20,1,-0.5,0.699999999999999,0 -"517",206,1,1,0,0.373260667211079,0.373260667211079,1,21,0,0.5,0.399999999999999,4 -"518",207,1,1,0,2,2,0,-16,1,1.7,0.199999999999999,0 -"519",207,1,2,2,3,1,0,-16,1,1.7,0.199999999999999,0 -"520",207,1,3,3,6,3,0,-16,1,1.7,0.199999999999999,0 -"521",207,1,4,6,6.5,0.5,0,-16,1,1.7,0.199999999999999,0 -"522",207,1,5,6.5,8,1.5,0,-16,1,1.7,0.199999999999999,0 -"523",207,1,6,8,10,2,0,-16,1,1.7,0.199999999999999,0 -"524",208,1,1,0,2,2,0,12,0,-5.4,0.300000000000001,1 -"525",208,1,2,2,3,1,0,12,0,-5.4,0.300000000000001,1 -"526",208,1,3,3,3.29683978937297,0.296839789372967,1,12,0,-5.4,0.300000000000001,1 -"527",209,1,1,0,0.168135483708985,0.168135483708985,1,-17,1,5.6,0.199999999999999,1 -"528",210,1,1,0,2,2,0,8,1,-3.6,-1.6,-7 -"529",210,1,2,2,3,1,0,8,1,-3.6,-1.6,-7 -"530",210,1,3,3,6,3,0,8,1,-3.6,-1.6,-7 -"531",210,1,4,6,6.5,0.5,0,8,1,-3.6,-1.6,-7 -"532",210,1,5,6.5,8,1.5,0,8,1,-3.6,-1.6,-7 -"533",210,1,6,8,10,2,0,8,1,-3.6,-1.6,-7 -"534",211,1,1,0,1.71995058840129,1.71995058840129,1,0,0,-4,-0.699999999999999,1 -"535",212,1,1,0,1.78346358703044,1.78346358703044,1,15,1,-0.899999999999999,0.600000000000001,-2 -"536",213,1,1,0,0.542961128215312,0.542961128215312,1,11,0,-3.6,0.199999999999999,-2 -"537",214,1,1,0,0.0498079766685843,0.0498079766685843,1,17,1,-5.5,0.199999999999999,-6 -"538",215,1,1,0,0.923931887295448,0.923931887295448,0,-2,0,0,1.5,-6 -"539",216,1,1,0,2,2,0,0,0,-4.9,0.399999999999999,-3 -"540",216,1,2,2,3,1,0,0,0,-4.9,0.399999999999999,-3 -"541",216,1,3,3,6,3,0,0,0,-4.9,0.399999999999999,-3 -"542",216,1,4,6,6.5,0.5,0,0,0,-4.9,0.399999999999999,-3 -"543",216,1,5,6.5,8,1.5,0,0,0,-4.9,0.399999999999999,-3 -"544",216,1,6,8,8.55123010824759,0.551230108247585,0,0,0,-4.9,0.399999999999999,-3 -"545",217,1,1,0,0.111998434073306,0.111998434073306,1,7,0,-6.3,0.600000000000001,3 -"546",218,1,1,0,0.868583910716144,0.868583910716144,1,-6,0,-3.8,0.5,-2 -"547",219,1,1,0,0.0986703130710544,0.0986703130710544,1,1,0,2.5,0.300000000000001,-5 -"548",220,1,1,0,2,2,0,-18,0,2.9,-0.699999999999999,-4 -"549",220,1,2,2,3,1,0,-18,0,2.9,-0.699999999999999,-4 -"550",220,1,3,3,6,3,0,-18,0,2.9,-0.699999999999999,-4 -"551",220,1,4,6,6.5,0.5,0,-18,0,2.9,-0.699999999999999,-4 -"552",220,1,5,6.5,8,1.5,0,-18,0,2.9,-0.699999999999999,-4 -"553",220,1,6,8,8.11301515588519,0.113015155885187,1,-18,0,2.9,-0.699999999999999,-4 -"554",221,1,1,0,2,2,0,-2,1,3.4,-0.800000000000001,0 -"555",221,1,2,2,3,1,0,-2,1,3.4,-0.800000000000001,0 -"556",221,1,3,3,5.39332918988938,2.39332918988938,0,-2,1,3.4,-0.800000000000001,0 -"557",222,1,1,0,0.0943215961262827,0.0943215961262827,1,5,0,-5,0.5,-1 -"558",223,1,1,0,0.227887208265714,0.227887208265714,0,-24,0,-9,-0.0999999999999996,1 -"559",224,1,1,0,0.0273399910063325,0.0273399910063325,0,-15,1,0.5,-0.0999999999999996,0 -"560",225,1,1,0,1.29233300487392,1.29233300487392,1,-28,1,1.2,1.7,-1 -"561",226,1,1,0,1.11830349875874,1.11830349875874,0,18,1,0.600000000000001,-0.300000000000001,3 -"562",227,1,1,0,2,2,0,20,1,5.1,-0.5,-4 -"563",227,1,2,2,3,1,0,20,1,5.1,-0.5,-4 -"564",227,1,3,3,6,3,0,20,1,5.1,-0.5,-4 -"565",227,1,4,6,6.5,0.5,0,20,1,5.1,-0.5,-4 -"566",227,1,5,6.5,8,1.5,0,20,1,5.1,-0.5,-4 -"567",227,1,6,8,8.9539649094485,0.953964909448497,0,20,1,5.1,-0.5,-4 -"568",228,1,1,0,0.831946010288743,0.831946010288743,0,1,1,0.100000000000001,-0.800000000000001,-3 -"569",229,1,1,0,0.272845085559852,0.272845085559852,0,5,0,-0.5,-0.199999999999999,-2 -"570",230,1,1,0,2,2,0,0,0,4.1,-0.0999999999999996,1 -"571",230,1,2,2,3,1,0,0,0,4.1,-0.0999999999999996,1 -"572",230,1,3,3,6,3,0,0,0,4.1,-0.0999999999999996,1 -"573",230,1,4,6,6.5,0.5,0,0,0,4.1,-0.0999999999999996,1 -"574",230,1,5,6.5,8,1.5,0,0,0,4.1,-0.0999999999999996,1 -"575",230,1,6,8,10,2,0,0,0,4.1,-0.0999999999999996,1 -"576",231,1,1,0,2,2,0,7,0,-6.5,-1.1,3 -"577",231,1,2,2,2.1171034252457,0.117103425245705,0,7,0,-6.5,-1.1,3 -"578",232,1,1,0,2,2,0,-35,0,-5.9,1.9,1 -"579",232,1,2,2,3,1,0,-35,0,-5.9,1.9,1 -"580",232,1,3,3,6,3,0,-35,0,-5.9,1.9,1 -"581",232,1,4,6,6.5,0.5,0,-35,0,-5.9,1.9,1 -"582",232,1,5,6.5,8,1.5,0,-35,0,-5.9,1.9,1 -"583",232,1,6,8,10,2,0,-35,0,-5.9,1.9,1 -"584",233,1,1,0,0.0476031228542356,0.0476031228542356,1,26,0,-1.2,0.100000000000001,0 -"585",234,1,1,0,0.179746208475179,0.179746208475179,1,10,0,-2,0.100000000000001,-9 -"586",235,1,1,0,0.265906424593537,0.265906424593537,1,1,0,-2.5,-1,-2 -"587",236,1,1,0,0.229962643594422,0.229962643594422,1,13,1,,-1.3,1 -"588",237,1,1,0,0.272757502128181,0.272757502128181,1,-3,1,-4.5,0.800000000000001,1 -"589",238,1,1,0,1.75720357833798,1.75720357833798,1,11,1,-5.7,-0.800000000000001,-6 -"590",239,1,1,0,2,2,0,-5,1,-2.8,-0.5,-2 -"591",239,1,2,2,2.80065060937039,0.800650609370391,0,-5,1,-2.8,-0.5,-2 -"592",240,1,1,0,2,2,0,-28,1,3,-0.199999999999999,-6 -"593",240,1,2,2,3,1,0,-28,1,3,-0.199999999999999,-6 -"594",240,1,3,3,3.02073066318129,0.0207306631812858,0,-28,1,3,-0.199999999999999,-6 -"595",241,1,1,0,1.11457120308023,1.11457120308023,0,7,0,-3.6,0.5,-1 -"596",242,1,1,0,1.95810994518478,1.95810994518478,0,-13,0,1.4,-0.5,-5 -"597",243,1,1,0,0.382143068372456,0.382143068372456,1,10,1,5.7,2.3,-5 -"598",244,1,1,0,1.00326029171007,1.00326029171007,1,38,1,-3.7,-0.300000000000001,-4 -"599",245,1,1,0,2,2,0,12,1,-5.3,0.699999999999999,2 -"600",245,1,2,2,2.30886169338475,0.308861693384746,0,12,1,-5.3,0.699999999999999,2 -"601",246,1,1,0,1.11470143809235,1.11470143809235,0,-11,0,-4.1,-0.699999999999999,-15 -"602",247,1,1,0,0.618403519332169,0.618403519332169,1,-12,1,-4.9,1.4,4 -"603",248,1,1,0,2,2,0,-18,1,-8,0.300000000000001,8 -"604",248,1,2,2,2.81818361537589,0.818183615375887,0,-18,1,-8,0.300000000000001,8 -"605",249,1,1,0,0.664467260631991,0.664467260631991,1,-14,1,3.6,-0.0999999999999996,5 -"606",250,1,1,0,2,2,0,-13,1,-1.7,0.5,0 -"607",250,1,2,2,3,1,0,-13,1,-1.7,0.5,0 -"608",250,1,3,3,6,3,0,-13,1,-1.7,0.5,0 -"609",250,1,4,6,6.5,0.5,0,-13,1,-1.7,0.5,0 -"610",250,1,5,6.5,8,1.5,0,-13,1,-1.7,0.5,0 -"611",250,1,6,8,10,2,0,-13,1,-1.7,0.5,0 -"612",251,1,1,0,2,2,0,-39,1,7.2,1.7,-7 -"613",251,1,2,2,2.41791947970301,0.417919479703007,0,-39,1,7.2,1.7,-7 -"614",252,1,1,,,,,-21,1,0.299999999999997,0.5,12 -"615",253,1,1,0,2,2,0,-29,1,-3.4,0.899999999999999,-3 -"616",253,1,2,2,3,1,0,-29,1,-3.4,0.899999999999999,-3 -"617",253,1,3,3,6,3,0,-29,1,-3.4,0.899999999999999,-3 -"618",253,1,4,6,6.5,0.5,0,-29,1,-3.4,0.899999999999999,-3 -"619",253,1,5,6.5,7.31919872653604,0.81919872653604,0,-29,1,-3.4,0.899999999999999,-3 -"620",254,1,1,0,1.35920742767963,1.35920742767963,0,3,1,6.7,0.800000000000001,0 -"621",255,1,1,0,0.55304035400749,0.55304035400749,1,-8,0,1.5,0.399999999999999,13 -"622",256,1,1,0,0.173903723124011,0.173903723124011,1,31,1,7.4,1.2,4 -"623",257,1,1,0,0.500466173424969,0.500466173424969,0,-5,0,-4.7,-0.699999999999999,-9 -"624",258,1,1,0,2,2,0,-23,0,-2.6,-0.199999999999999,4 -"625",258,1,2,2,2.97648018086564,0.976480180865642,0,-23,0,-2.6,-0.199999999999999,4 -"626",259,1,1,0,0.394977858896956,0.394977858896956,1,3,1,1.4,1.6,0 -"627",260,1,1,0,1.94529251122657,1.94529251122657,1,1,1,-4,0.800000000000001,-5 -"628",261,1,1,0,0.201704519321975,0.201704519321975,1,18,1,1.3,-1.3,1 -"629",262,1,1,0,0.472291087094747,0.472291087094747,1,14,1,-2.6,0,-4 -"630",263,1,1,0,0.749856187348364,0.749856187348364,1,16,1,0.799999999999997,0.199999999999999,12 -"631",264,1,1,0,0.564092450766188,0.564092450766188,1,13,0,-0.700000000000003,-0.800000000000001,8 -"632",265,1,1,0,2,2,0,-8,1,0.5,-1.4,6 -"633",265,1,2,2,2.23479039584251,0.234790395842507,0,-8,1,0.5,-1.4,6 -"634",266,1,1,0,0.803438373655433,0.803438373655433,1,11,,1,0.899999999999999,2 -"635",267,1,1,0,0.850754752482696,0.850754752482696,1,31,1,0.899999999999999,0.899999999999999,-2 -"636",268,1,1,0,1.3613462594278,1.3613462594278,1,-8,1,5.7,0.5,6 -"637",269,1,1,0,1.05141004374942,1.05141004374942,1,11,1,3.6,0.199999999999999,7 -"638",270,1,1,0,0.72171087601028,0.72171087601028,0,-2,0,-2,0,-3 -"639",271,1,1,0,0.16490950870112,0.16490950870112,1,12,1,6.3,1.1,-5 -"640",272,1,1,0,2,2,0,9,1,1.9,-0.199999999999999,-6 -"641",272,1,2,2,3,1,0,9,1,1.9,-0.199999999999999,-6 -"642",272,1,3,3,6,3,0,9,1,1.9,-0.199999999999999,-6 -"643",272,1,4,6,6.5,0.5,0,9,1,1.9,-0.199999999999999,-6 -"644",272,1,5,6.5,8,1.5,0,9,1,1.9,-0.199999999999999,-6 -"645",272,1,6,8,10,2,0,9,1,1.9,-0.199999999999999,-6 -"646",273,1,1,0,2,2,0,-12,1,2.8,0,8 -"647",273,1,2,2,3,1,0,-12,1,2.8,0,8 -"648",273,1,3,3,6,3,0,-12,1,2.8,0,8 -"649",273,1,4,6,6.30512339849228,0.305123398492278,0,-12,1,2.8,0,8 -"650",274,1,1,0,2,2,0,-42,1,-3.3,0,2 -"651",274,1,2,2,3,1,0,-42,1,-3.3,0,2 -"652",274,1,3,3,6,3,0,-42,1,-3.3,0,2 -"653",274,1,4,6,6.5,0.5,0,-42,1,-3.3,0,2 -"654",274,1,5,6.5,8,1.5,0,-42,1,-3.3,0,2 -"655",274,1,6,8,9.72363293381717,1.72363293381717,0,-42,1,-3.3,0,2 -"656",275,1,1,0,1.44156039762779,1.44156039762779,0,-39,1,-0.299999999999997,-0.9,-4 -"657",276,1,1,0,2,2,0,-5,0,-0.700000000000003,0.600000000000001,0 -"658",276,1,2,2,3,1,0,-5,0,-0.700000000000003,0.600000000000001,0 -"659",276,1,3,3,6,3,0,-5,0,-0.700000000000003,0.600000000000001,0 -"660",276,1,4,6,6.5,0.5,0,-5,0,-0.700000000000003,0.600000000000001,0 -"661",276,1,5,6.5,6.87585200885066,0.375852008850663,0,-5,0,-0.700000000000003,0.600000000000001,0 -"662",277,1,1,0,1.14529045905279,1.14529045905279,1,-5,0,0.299999999999997,-0.6,6 -"663",278,1,1,0,2,2,0,5,1,-1,1.1,0 -"664",278,1,2,2,2.24937170188917,0.249371701889168,1,5,1,-1,1.1,0 -"665",279,1,1,0,2,2,0,-24,1,-3.1,-0.300000000000001,-12 -"666",279,1,2,2,3,1,0,-24,1,-3.1,-0.300000000000001,-12 -"667",279,1,3,3,6,3,0,-24,1,-3.1,-0.300000000000001,-12 -"668",279,1,4,6,6.5,0.5,0,-24,1,-3.1,-0.300000000000001,-12 -"669",279,1,5,6.5,8,1.5,0,-24,1,-3.1,-0.300000000000001,-12 -"670",279,1,6,8,10,2,0,-24,1,-3.1,-0.300000000000001,-12 -"671",280,1,1,0,2,2,0,-8,1,-1.1,0,0 -"672",280,1,2,2,3,1,0,-8,1,-1.1,0,0 -"673",280,1,3,3,3.98290883928891,0.982908839288909,0,-8,1,-1.1,0,0 -"674",281,1,1,0,0.569028059157599,0.569028059157599,1,-16,0,3,-0.300000000000001,14 -"675",282,1,1,0,1.39462246480754,1.39462246480754,1,0,0,1,0.600000000000001,3 -"676",283,1,1,0,2,2,0,-19,0,4.4,-1.3,7 -"677",283,1,2,2,3,1,0,-19,0,4.4,-1.3,7 -"678",283,1,3,3,4.31591442966804,1.31591442966804,1,-19,0,4.4,-1.3,7 -"679",284,1,1,0,2,2,0,-10,0,1.2,0.600000000000001,-8 -"680",284,1,2,2,3,1,0,-10,0,1.2,0.600000000000001,-8 -"681",284,1,3,3,6,3,0,-10,0,1.2,0.600000000000001,-8 -"682",284,1,4,6,6.5,0.5,0,-10,0,1.2,0.600000000000001,-8 -"683",284,1,5,6.5,7.97236343113234,1.47236343113234,1,-10,0,1.2,0.600000000000001,-8 -"684",285,1,1,0,2,2,0,-8,0,-1.3,0.899999999999999,-4 -"685",285,1,2,2,3,1,0,-8,0,-1.3,0.899999999999999,-4 -"686",285,1,3,3,6,3,0,-8,0,-1.3,0.899999999999999,-4 -"687",285,1,4,6,6.5,0.5,0,-8,0,-1.3,0.899999999999999,-4 -"688",285,1,5,6.5,8,1.5,0,-8,0,-1.3,0.899999999999999,-4 -"689",285,1,6,8,9.44992835490948,1.44992835490948,0,-8,0,-1.3,0.899999999999999,-4 -"690",286,1,1,0,0.0357888624982297,0.0357888624982297,0,8,0,-0.700000000000003,1.5,1 -"691",287,1,1,0,2,2,0,-20,0,6.5,-1.1,-3 -"692",287,1,2,2,2.72173083607585,0.721730836075853,0,-20,0,6.5,-1.1,-3 -"693",288,1,1,0,0.655949430017875,0.655949430017875,1,-13,0,-0.799999999999997,0.100000000000001,-2 -"694",289,1,1,0,0.302146484167701,0.302146484167701,1,43,1,-5.8,-0.4,2 -"695",290,1,1,0,1.8657783733235,1.8657783733235,1,-5,0,2.3,-0.5,0 -"696",291,1,1,0,2,2,0,-5,1,-4.8,-1.1,-11 -"697",291,1,2,2,3,1,0,-5,1,-4.8,-1.1,-11 -"698",291,1,3,3,3.5263629873475,0.526362987347501,0,-5,1,-4.8,-1.1,-11 -"699",292,1,1,0,1.85726975999216,1.85726975999216,1,-8,0,1,-0.5,2 -"700",293,1,1,0,2,2,0,12,0,-3.5,0.899999999999999,-11 -"701",293,1,2,2,3,1,0,12,0,-3.5,0.899999999999999,-11 -"702",293,1,3,3,6,3,0,12,0,-3.5,0.899999999999999,-11 -"703",293,1,4,6,6.5,0.5,0,12,0,-3.5,0.899999999999999,-11 -"704",293,1,5,6.5,7.31364817328336,0.813648173283355,0,12,0,-3.5,0.899999999999999,-11 -"705",294,1,1,0,2,2,0,-2,1,-0.700000000000003,0.300000000000001,-5 -"706",294,1,2,2,3,1,0,-2,1,-0.700000000000003,0.300000000000001,-5 -"707",294,1,3,3,6,3,0,-2,1,-0.700000000000003,0.300000000000001,-5 -"708",294,1,4,6,6.5,0.5,0,-2,1,-0.700000000000003,0.300000000000001,-5 -"709",294,1,5,6.5,8,1.5,0,-2,1,-0.700000000000003,0.300000000000001,-5 -"710",294,1,6,8,10,2,0,-2,1,-0.700000000000003,0.300000000000001,-5 -"711",295,1,1,0,0.14690393555585,0.14690393555585,0,-2,0,-3.8,0,-7 -"712",296,1,1,0,1.15315458167531,1.15315458167531,1,-2,0,-3.9,0.399999999999999,0 -"713",297,1,1,0,2,2,0,-14,0,-6.8,-0.800000000000001,5 -"714",297,1,2,2,3,1,0,-14,0,-6.8,-0.800000000000001,5 -"715",297,1,3,3,4.90183873702025,1.90183873702025,1,-14,0,-6.8,-0.800000000000001,5 -"716",298,1,1,0,2,2,0,-13,0,-3.6,-0.5,-7 -"717",298,1,2,2,3,1,0,-13,0,-3.6,-0.5,-7 -"718",298,1,3,3,6,3,0,-13,0,-3.6,-0.5,-7 -"719",298,1,4,6,6.5,0.5,0,-13,0,-3.6,-0.5,-7 -"720",298,1,5,6.5,7.31441137998991,0.814411379989905,0,-13,0,-3.6,-0.5,-7 -"721",299,1,1,0,0.639087858737735,0.639087858737735,1,-2,0,0.5,0.199999999999999,4 -"722",300,1,1,0,0.344658913160662,0.344658913160662,0,5,1,4.6,-0.9,-1 -"723",301,1,1,0,2,2,0,-9,0,-6.4,-1.5,-2 -"724",301,1,2,2,3,1,0,-9,0,-6.4,-1.5,-2 -"725",301,1,3,3,6,3,0,-9,0,-6.4,-1.5,-2 -"726",301,1,4,6,6.5,0.5,0,-9,0,-6.4,-1.5,-2 -"727",301,1,5,6.5,8,1.5,0,-9,0,-6.4,-1.5,-2 -"728",301,1,6,8,10,2,0,-9,0,-6.4,-1.5,-2 -"729",302,1,1,0,1.39031626856431,1.39031626856431,0,-34,0,0.399999999999999,-0.4,1 -"730",303,1,1,0,1.68248551838557,1.68248551838557,0,8,0,-2.4,-1.3,0 -"731",304,1,1,0,2,2,0,23,0,8.7,-2.5,4 -"732",304,1,2,2,3,1,0,23,0,8.7,-2.5,4 -"733",304,1,3,3,3.01338890720068,0.013388907200683,0,23,0,8.7,-2.5,4 -"734",305,1,1,0,1.87555102544597,1.87555102544597,1,-9,1,6.7,-0.0999999999999996,4 -"735",306,1,1,0,2,2,0,-13,1,5.1,1.2,-7 -"736",306,1,2,2,3,1,0,-13,1,5.1,1.2,-7 -"737",306,1,3,3,6,3,0,-13,1,5.1,1.2,-7 -"738",306,1,4,6,6.5,0.5,0,-13,1,5.1,1.2,-7 -"739",306,1,5,6.5,6.82975518136275,0.329755181362752,0,-13,1,5.1,1.2,-7 -"740",307,1,1,0,0.0900727773467165,0.0900727773467165,0,-4,1,-10.8,-0.199999999999999,-2 -"741",308,1,1,0,1.86586312625716,1.86586312625716,1,4,1,8.2,-0.0999999999999996,0 -"742",309,1,1,0,2,2,0,-4,1,3.6,-0.199999999999999,0 -"743",309,1,2,2,3,1,0,-4,1,3.6,-0.199999999999999,0 -"744",309,1,3,3,3.72036875190971,0.720368751909709,0,-4,1,3.6,-0.199999999999999,0 -"745",310,1,1,0,0.0273269267326722,0.0273269267326722,1,-14,1,3.5,0.300000000000001,2 -"746",311,1,1,0,1.46337490643365,1.46337490643365,0,3,1,-2,-0.699999999999999,2 -"747",312,1,1,0,2,2,0,0,0,2.4,-1.1, -"748",312,1,2,2,3,1,0,0,0,2.4,-1.1, -"749",312,1,3,3,5.27486788326666,2.27486788326666,0,0,0,2.4,-1.1, -"750",313,1,1,0,2,2,0,-4,0,1.5,-0.800000000000001,-7 -"751",313,1,2,2,3,1,0,-4,0,1.5,-0.800000000000001,-7 -"752",313,1,3,3,6,3,0,-4,0,1.5,-0.800000000000001,-7 -"753",313,1,4,6,6.5,0.5,0,-4,0,1.5,-0.800000000000001,-7 -"754",313,1,5,6.5,8,1.5,0,-4,0,1.5,-0.800000000000001,-7 -"755",313,1,6,8,8.19724390576141,0.197243905761411,0,-4,0,1.5,-0.800000000000001,-7 -"756",314,1,1,0,0.117103461091782,0.117103461091782,1,24,0,8.5,0.100000000000001,2 -"757",315,1,1,0,2,2,0,-3,1,1.7,-1.6,4 -"758",315,1,2,2,3,1,0,-3,1,1.7,-1.6,4 -"759",315,1,3,3,6,3,0,-3,1,1.7,-1.6,4 -"760",315,1,4,6,6.5,0.5,0,-3,1,1.7,-1.6,4 -"761",315,1,5,6.5,8,1.5,0,-3,1,1.7,-1.6,4 -"762",315,1,6,8,10,2,0,-3,1,1.7,-1.6,4 -"763",316,1,1,0,2,2,0,4,1,-3.9,0.899999999999999,2 -"764",316,1,2,2,2.41717324675494,0.417173246754939,1,4,1,-3.9,0.899999999999999,2 -"765",317,1,1,0,0.172151874800763,0.172151874800763,1,21,0,-2.5,-1,-8 -"766",318,1,1,0,0.643916359592057,0.643916359592057,1,22,0,13.8,1.2,-12 -"767",319,1,1,0,0.202312886464647,0.202312886464647,0,8,1,-0.100000000000001,0.100000000000001,-12 -"768",320,1,1,0,0.321760138247728,0.321760138247728,0,-5,1,-2.6,-1.1,-5 -"769",321,1,1,0,1.96996567856499,1.96996567856499,1,-14,0,-9.1,0.399999999999999,4 -"770",322,1,1,0,0.53932343707153,0.53932343707153,1,16,0,0,1.6,3 -"771",323,1,1,0,2,2,0,13,0,-4.2,0.5,-3 -"772",323,1,2,2,2.03715112193102,0.0371511219310249,0,13,0,-4.2,0.5,-3 -"773",324,1,1,0,0.410529157449035,0.410529157449035,1,16,0,-3.4,-1.6,0 -"774",325,1,1,0,2,2,0,24,1,1.7,-1.8,6 -"775",325,1,2,2,3,1,0,24,1,1.7,-1.8,6 -"776",325,1,3,3,6,3,0,24,1,1.7,-1.8,6 -"777",325,1,4,6,6.5,0.5,0,24,1,1.7,-1.8,6 -"778",325,1,5,6.5,6.88654869435497,0.386548694354966,0,24,1,1.7,-1.8,6 -"779",326,1,1,0,0.0299863936974053,0.0299863936974053,1,15,0,2.2,1.4,-1 -"780",327,1,1,0,0.732478535900223,0.732478535900223,1,8,1,2.8,1.1,-7 -"781",328,1,1,0,0.920660303773878,0.920660303773878,1,13,0,-4.5,0.600000000000001,10 -"782",329,1,1,0,2,2,0,1,1,-2.6,-1.3,-2 -"783",329,1,2,2,3,1,0,1,1,-2.6,-1.3,-2 -"784",329,1,3,3,4.03812033348404,1.03812033348404,0,1,1,-2.6,-1.3,-2 -"785",330,1,1,0,0.789382447993398,0.789382447993398,0,0,0,-1,-0.0999999999999996,12 -"786",331,1,1,0,0.550583277635063,0.550583277635063,1,2,1,-6.5,0,2 -"787",332,1,1,0,2,2,0,3,1,-4.1,-0.699999999999999,2 -"788",332,1,2,2,2.69701505977659,0.69701505977659,1,3,1,-4.1,-0.699999999999999,2 -"789",333,1,1,,,,,-3,0,3.4,-1,5 -"790",334,1,1,0,1.083885986955,1.083885986955,0,-7,1,4.2,1.1,-10 -"791",335,1,1,0,0.808660699639497,0.808660699639497,0,-34,0,-1.5,-1.3,-7 -"792",336,1,1,0,0.0263298010228302,0.0263298010228302,1,-2,0,-3.3,-0.199999999999999,5 -"793",337,1,1,0,1.210849703699,1.210849703699,1,0,0,-3.8,0.600000000000001,0 -"794",338,1,1,0,2,2,0,-21,1,0.200000000000003,2.1,-6 -"795",338,1,2,2,3,1,0,-21,1,0.200000000000003,2.1,-6 -"796",338,1,3,3,6,3,0,-21,1,0.200000000000003,2.1,-6 -"797",338,1,4,6,6.5,0.5,0,-21,1,0.200000000000003,2.1,-6 -"798",338,1,5,6.5,8,1.5,0,-21,1,0.200000000000003,2.1,-6 -"799",338,1,6,8,9.74570777787967,1.74570777787967,1,-21,1,0.200000000000003,2.1,-6 -"800",339,1,1,0,2,2,0,-1,1,1.7,0.899999999999999,6 -"801",339,1,2,2,3,1,0,-1,1,1.7,0.899999999999999,6 -"802",339,1,3,3,5.37486530688427,2.37486530688427,0,-1,1,1.7,0.899999999999999,6 -"803",340,1,1,0,0.134841205426238,0.134841205426238,1,14,1,-4.7,1.7,4 -"804",341,1,1,0,2,2,0,-6,0,2.3,-0.6,-3 -"805",341,1,2,2,3,1,0,-6,0,2.3,-0.6,-3 -"806",341,1,3,3,6,3,0,-6,0,2.3,-0.6,-3 -"807",341,1,4,6,6.03652827157496,0.0365282715749573,0,-6,0,2.3,-0.6,-3 -"808",342,1,1,0,0.0400952264417688,0.0400952264417688,0,7,1,6.4,-0.300000000000001,0 -"809",343,1,1,0,2,2,0,-4,0,3.4,-1.1,1 -"810",343,1,2,2,3,1,0,-4,0,3.4,-1.1,1 -"811",343,1,3,3,5.56078661252465,2.56078661252465,0,-4,0,3.4,-1.1,1 -"812",344,1,1,0,2,2,0,-8,0,3.7,-2,-3 -"813",344,1,2,2,3,1,0,-8,0,3.7,-2,-3 -"814",344,1,3,3,6,3,0,-8,0,3.7,-2,-3 -"815",344,1,4,6,6.5,0.5,0,-8,0,3.7,-2,-3 -"816",344,1,5,6.5,8,1.5,0,-8,0,3.7,-2,-3 -"817",344,1,6,8,10,2,0,-8,0,3.7,-2,-3 -"818",345,1,1,0,2,2,0,10,0,-6.9,-0.0999999999999996,-4 -"819",345,1,2,2,3,1,0,10,0,-6.9,-0.0999999999999996,-4 -"820",345,1,3,3,6,3,0,10,0,-6.9,-0.0999999999999996,-4 -"821",345,1,4,6,6.5,0.5,0,10,0,-6.9,-0.0999999999999996,-4 -"822",345,1,5,6.5,8,1.5,0,10,0,-6.9,-0.0999999999999996,-4 -"823",345,1,6,8,10,2,0,10,0,-6.9,-0.0999999999999996,-4 -"824",346,1,1,0,2,2,0,14,0,-1.1,-1,-2 -"825",346,1,2,2,2.70996107758262,0.709961077582624,1,14,0,-1.1,-1,-2 -"826",347,1,1,0,0.635586688915186,0.635586688915186,0,-12,0,1.8,0.5,-1 -"827",348,1,1,0,2,2,0,6,1,1,-0.4,0 -"828",348,1,2,2,2.11035276246031,0.110352762460306,0,6,1,1,-0.4,0 -"829",349,1,1,0,2,2,0,-6,1,-1,-0.4,5 -"830",349,1,2,2,3,1,0,-6,1,-1,-0.4,5 -"831",349,1,3,3,6,3,0,-6,1,-1,-0.4,5 -"832",349,1,4,6,6.5,0.5,0,-6,1,-1,-0.4,5 -"833",349,1,5,6.5,8,1.5,0,-6,1,-1,-0.4,5 -"834",349,1,6,8,9.93868105603912,1.93868105603912,1,-6,1,-1,-0.4,5 -"835",350,1,1,0,0.187108438306415,0.187108438306415,1,-20,0,-0.600000000000001,0.899999999999999,1 -"836",351,1,1,0,0.463843833454329,0.463843833454329,1,17,0,1.4,-0.300000000000001,1 -"837",352,1,1,0,0.777180635469904,0.777180635469904,0,7,0,0.399999999999999,0.699999999999999,-3 -"838",353,1,1,0,1.14279874973112,1.14279874973112,1,31,1,4.3,-1.6,-3 -"839",354,1,1,0,0.348174300141175,0.348174300141175,0,6,0,-1.1,0.399999999999999,10 -"840",355,1,1,0,0.0674242204589085,0.0674242204589085,1,15,0,0.399999999999999,0.100000000000001,4 -"841",356,1,1,0,2,2,0,-4,0,6,0.800000000000001,-2 -"842",356,1,2,2,3,1,0,-4,0,6,0.800000000000001,-2 -"843",356,1,3,3,6,3,0,-4,0,6,0.800000000000001,-2 -"844",356,1,4,6,6.5,0.5,0,-4,0,6,0.800000000000001,-2 -"845",356,1,5,6.5,7.12535567790152,0.625355677901516,1,-4,0,6,0.800000000000001,-2 -"846",357,1,1,0,2,2,0,-2,0,-0.5,-0.699999999999999,-1 -"847",357,1,2,2,2.88375298803203,0.883752988032027,1,-2,0,-0.5,-0.699999999999999,-1 -"848",358,1,1,0,0.58153372340817,0.58153372340817,0,-23,1,-4,-1.5,-3 -"849",359,1,1,0,0.915285384431128,0.915285384431128,0,4,1,2.7,0.399999999999999,-3 -"850",360,1,1,0,0.191447777466831,0.191447777466831,1,20,0,0.100000000000001,0.5,-1 -"851",361,1,1,0,0.933792709949319,0.933792709949319,1,-3,0,-5.8,1.3,0 -"852",362,1,1,0,1.42453846877091,1.42453846877091,1,2,1,3.3,0.300000000000001,9 -"853",363,1,1,0,0.293943654688151,0.293943654688151,1,-20,0,-1.1,0.399999999999999,5 -"854",364,1,1,0,2,2,0,-2,0,-3.8,-1.3,10 -"855",364,1,2,2,3,1,0,-2,0,-3.8,-1.3,10 -"856",364,1,3,3,6,3,0,-2,0,-3.8,-1.3,10 -"857",364,1,4,6,6.5,0.5,0,-2,0,-3.8,-1.3,10 -"858",364,1,5,6.5,7.72648847265075,1.22648847265075,1,-2,0,-3.8,-1.3,10 -"859",365,1,1,0,1.66864697201634,1.66864697201634,0,12,1,-1.6,-1.5,0 -"860",366,1,1,0,1.85541363319185,1.85541363319185,1,-9,0,-2.4,-0.0999999999999996,4 -"861",367,1,1,0,2,2,0,3,1,3.8,0.100000000000001,-6 -"862",367,1,2,2,2.53776711586016,0.537767115860157,0,3,1,3.8,0.100000000000001,-6 -"863",368,1,1,0,1.16792369007517,1.16792369007517,1,8,0,-6,0.199999999999999,-1 -"864",369,1,1,0,1.20650093487135,1.20650093487135,0,-6,1,6.3,-0.6,0 -"865",370,1,1,0,1.38598377184582,1.38598377184582,1,1,1,-4.1,-0.6,1 -"866",371,1,1,0,2,2,0,-21,1,0.700000000000003,2.5,-1 -"867",371,1,2,2,2.93224939649053,0.932249396490533,0,-21,1,0.700000000000003,2.5,-1 -"868",372,1,1,0,2,2,0,17,0,1.6,-1,-4 -"869",372,1,2,2,3,1,0,17,0,1.6,-1,-4 -"870",372,1,3,3,5.78043902494757,2.78043902494757,1,17,0,1.6,-1,-4 -"871",373,1,1,0,0.424687522419613,0.424687522419613,1,13,0,3,-0.199999999999999,-5 -"872",374,1,1,0,2,2,0,7,0,0.100000000000001,0.800000000000001,2 -"873",374,1,2,2,2.73204517135458,0.73204517135458,1,7,0,0.100000000000001,0.800000000000001,2 -"874",375,1,1,0,0.560222846433946,0.560222846433946,1,6,1,4,1.7,3 -"875",376,1,1,0,2,2,0,10,1,-5.3,-1.4,8 -"876",376,1,2,2,3,1,0,10,1,-5.3,-1.4,8 -"877",376,1,3,3,6,3,0,10,1,-5.3,-1.4,8 -"878",376,1,4,6,6.5,0.5,0,10,1,-5.3,-1.4,8 -"879",376,1,5,6.5,8,1.5,0,10,1,-5.3,-1.4,8 -"880",376,1,6,8,9.55282774015158,1.55282774015158,0,10,1,-5.3,-1.4,8 -"881",377,1,1,0,2,2,0,18,1,-2,-0.800000000000001,-5 -"882",377,1,2,2,3,1,0,18,1,-2,-0.800000000000001,-5 -"883",377,1,3,3,5.78355991248253,2.78355991248253,0,18,1,-2,-0.800000000000001,-5 -"884",378,1,1,0,2,2,0,-5,0,-4.7,-1.2,-1 -"885",378,1,2,2,3,1,0,-5,0,-4.7,-1.2,-1 -"886",378,1,3,3,5.88936029936666,2.88936029936666,0,-5,0,-4.7,-1.2,-1 -"887",379,1,1,0,2,2,0,,1,-3.4,-1.2,2 -"888",379,1,2,2,2.04252490861932,0.042524908619324,1,,1,-3.4,-1.2,2 -"889",380,1,1,0,2,2,0,4,1,7.1,0,1 -"890",380,1,2,2,3,1,0,4,1,7.1,0,1 -"891",380,1,3,3,6,3,0,4,1,7.1,0,1 -"892",380,1,4,6,6.5,0.5,0,4,1,7.1,0,1 -"893",380,1,5,6.5,8,1.5,0,4,1,7.1,0,1 -"894",380,1,6,8,9.16736503858584,1.16736503858584,0,4,1,7.1,0,1 -"895",381,1,1,0,2,2,0,7,1,-7,-2.5,0 -"896",381,1,2,2,3,1,0,7,1,-7,-2.5,0 -"897",381,1,3,3,6,3,0,7,1,-7,-2.5,0 -"898",381,1,4,6,6.5,0.5,0,7,1,-7,-2.5,0 -"899",381,1,5,6.5,8,1.5,0,7,1,-7,-2.5,0 -"900",381,1,6,8,10,2,0,7,1,-7,-2.5,0 -"901",382,1,1,0,0.607041946751458,0.607041946751458,1,1,1,-1.5,-0.699999999999999,2 -"902",383,1,1,0,2,2,0,14,0,-6.9,-2,-3 -"903",383,1,2,2,3,1,0,14,0,-6.9,-2,-3 -"904",383,1,3,3,6,3,0,14,0,-6.9,-2,-3 -"905",383,1,4,6,6.5,0.5,0,14,0,-6.9,-2,-3 -"906",383,1,5,6.5,8,1.5,0,14,0,-6.9,-2,-3 -"907",383,1,6,8,10,2,0,14,0,-6.9,-2,-3 -"908",384,1,1,0,1.44476452724692,1.44476452724692,1,15,0,-3.8,0.399999999999999,5 -"909",385,1,1,0,1.07490252948769,1.07490252948769,0,-9,0,-1.3,-0.800000000000001,3 -"910",386,1,1,0,0.135266422502904,0.135266422502904,0,-8,0,1.8,0.699999999999999,4 -"911",387,1,1,0,1.23518953763335,1.23518953763335,0,-9,1,3.3,0.899999999999999,-3 -"912",388,1,1,0,0.776816918449002,0.776816918449002,1,2,1,-2.5,-2.3,-2 -"913",389,1,1,0,1.14708420265795,1.14708420265795,1,9,1,-1,0.699999999999999,1 -"914",390,1,1,0,2,2,0,-9,0,-2.6,-1.6,-2 -"915",390,1,2,2,3,1,0,-9,0,-2.6,-1.6,-2 -"916",390,1,3,3,5.11334275065492,2.11334275065492,0,-9,0,-2.6,-1.6,-2 -"917",391,1,1,0,2,2,0,9,0,-0.700000000000003,-0.699999999999999,-7 -"918",391,1,2,2,2.43822044163072,0.438220441630718,0,9,0,-0.700000000000003,-0.699999999999999,-7 -"919",392,1,1,0,2,2,0,-7,0,-0.899999999999999,1.3,-6 -"920",392,1,2,2,3,1,0,-7,0,-0.899999999999999,1.3,-6 -"921",392,1,3,3,6,3,0,-7,0,-0.899999999999999,1.3,-6 -"922",392,1,4,6,6.02883697527948,0.0288369752794838,0,-7,0,-0.899999999999999,1.3,-6 -"923",393,1,1,0,2,2,0,-9,0,-2.1,0.800000000000001,-6 -"924",393,1,2,2,3,1,0,-9,0,-2.1,0.800000000000001,-6 -"925",393,1,3,3,6,3,0,-9,0,-2.1,0.800000000000001,-6 -"926",393,1,4,6,6.5,0.5,0,-9,0,-2.1,0.800000000000001,-6 -"927",393,1,5,6.5,7.21635774882938,0.716357748829379,0,-9,0,-2.1,0.800000000000001,-6 -"928",394,1,1,0,2,2,0,5,0,-5.2,-1.3,-9 -"929",394,1,2,2,3,1,0,5,0,-5.2,-1.3,-9 -"930",394,1,3,3,6,3,0,5,0,-5.2,-1.3,-9 -"931",394,1,4,6,6.5,0.5,0,5,0,-5.2,-1.3,-9 -"932",394,1,5,6.5,8,1.5,0,5,0,-5.2,-1.3,-9 -"933",394,1,6,8,10,2,0,5,0,-5.2,-1.3,-9 -"934",395,1,1,0,0.367778673285007,0.367778673285007,0,19,1,11.9,-0.0999999999999996,7 -"935",396,1,1,0,0.759119010634241,0.759119010634241,0,0,1,-5.4,-0.5,-3 -"936",397,1,1,0,1.19996273359599,1.19996273359599,0,-17,1,3.8,-0.199999999999999,4 -"937",398,1,1,0,1.52428897560894,1.52428897560894,1,23,0,0.899999999999999,0.899999999999999,-2 -"938",399,1,1,0,1.67617547452164,1.67617547452164,0,17,0,2,0.100000000000001,-3 -"939",400,1,1,0,2,2,0,14,1,-4.4,-0.5,-9 -"940",400,1,2,2,2.87086562994862,0.870865629948618,0,14,1,-4.4,-0.5,-9 -"941",401,1,1,0,0.419872486072043,0.419872486072043,1,-5,0,-8.1,0.899999999999999,3 -"942",402,1,1,0,1.49868279524913,1.49868279524913,0,-14,0,5.8,1.1,-10 -"943",403,1,1,0,0.185879697185758,0.185879697185758,1,23,1,3.2,0.699999999999999,4 -"944",404,1,1,0,2,2,0,-3,1,-1.3,-1.1,4 -"945",404,1,2,2,3,1,0,-3,1,-1.3,-1.1,4 -"946",404,1,3,3,4.8055820780222,1.8055820780222,0,-3,1,-1.3,-1.1,4 -"947",405,1,1,0,1.5612977791729,1.5612977791729,1,-11,0,3.8,0.800000000000001,1 -"948",406,1,1,0,0.278285154157609,0.278285154157609,1,-11,0,8.8,-0.199999999999999,8 -"949",407,1,1,0,2,2,0,-16,0,2.8,-1.8,-3 -"950",407,1,2,2,3,1,0,-16,0,2.8,-1.8,-3 -"951",407,1,3,3,6,3,0,-16,0,2.8,-1.8,-3 -"952",407,1,4,6,6.16476594862193,0.164765948621926,0,-16,0,2.8,-1.8,-3 -"953",408,1,1,0,1.00729795023706,1.00729795023706,1,6,1,-2.8,0.699999999999999,2 -"954",409,1,1,0,0.508266824823535,0.508266824823535,1,-14,0,1.6,2,-4 -"955",410,1,1,0,0.672125407407013,0.672125407407013,0,30,1,-4.7,1.9,-5 -"956",411,1,1,0,1.67523798798869,1.67523798798869,1,-10,0,5.9,0.800000000000001,11 -"957",412,1,1,0,2,2,0,18,0,-0.100000000000001,0,2 -"958",412,1,2,2,2.07782982055972,0.077829820559719,1,18,0,-0.100000000000001,0,2 -"959",413,1,1,0,1.70397011120512,1.70397011120512,1,-32,0,-4.1,0.699999999999999,8 -"960",414,1,1,0,2,2,0,17,1,0.799999999999997,0.899999999999999,-8 -"961",414,1,2,2,3,1,0,17,1,0.799999999999997,0.899999999999999,-8 -"962",414,1,3,3,4.7728856360247,1.7728856360247,0,17,1,0.799999999999997,0.899999999999999,-8 -"963",415,1,1,0,2,2,0,4,0,1.4,0.399999999999999,-8 -"964",415,1,2,2,3,1,0,4,0,1.4,0.399999999999999,-8 -"965",415,1,3,3,6,3,0,4,0,1.4,0.399999999999999,-8 -"966",415,1,4,6,6.14397540409403,0.143975404094026,0,4,0,1.4,0.399999999999999,-8 -"967",416,1,1,0,0.106969296764834,0.106969296764834,1,12,1,1,1.4,1 -"968",417,1,1,0,2,2,0,-21,0,1.2,-1.2,5 -"969",417,1,2,2,3,1,0,-21,0,1.2,-1.2,5 -"970",417,1,3,3,6,3,0,-21,0,1.2,-1.2,5 -"971",417,1,4,6,6.5,0.5,0,-21,0,1.2,-1.2,5 -"972",417,1,5,6.5,8,1.5,0,-21,0,1.2,-1.2,5 -"973",417,1,6,8,8.26681257028107,0.266812570281067,1,-21,0,1.2,-1.2,5 -"974",418,1,1,0,0.364379126857407,0.364379126857407,1,19,,-2.5,0.600000000000001,1 -"975",419,1,1,0,2,2,0,-10,1,-4.2,0.100000000000001,6 -"976",419,1,2,2,3,1,0,-10,1,-4.2,0.100000000000001,6 -"977",419,1,3,3,6,3,0,-10,1,-4.2,0.100000000000001,6 -"978",419,1,4,6,6.5,0.5,0,-10,1,-4.2,0.100000000000001,6 -"979",419,1,5,6.5,8,1.5,0,-10,1,-4.2,0.100000000000001,6 -"980",419,1,6,8,10,2,0,-10,1,-4.2,0.100000000000001,6 -"981",420,1,1,0,1.07786538715866,1.07786538715866,1,11,0,-3.2,0.300000000000001,-3 -"982",421,1,1,0,2,2,0,-13,1,8.09999999999999,-0.4,5 -"983",421,1,2,2,3,1,0,-13,1,8.09999999999999,-0.4,5 -"984",421,1,3,3,4.90720944176433,1.90720944176433,0,-13,1,8.09999999999999,-0.4,5 -"985",422,1,1,0,0.343946290728888,0.343946290728888,1,10,0,-0.200000000000003,-0.4,-2 -"986",423,1,1,0,0.190762458429002,0.190762458429002,0,4,0,-1.3,1.2,-1 -"987",424,1,1,0,2,2,0,-27,1,4.7,1.7,-5 -"988",424,1,2,2,3,1,0,-27,1,4.7,1.7,-5 -"989",424,1,3,3,5.84341573115055,2.84341573115055,0,-27,1,4.7,1.7,-5 -"990",425,1,1,0,2,2,0,-15,0,-2.3,-1.8,-4 -"991",425,1,2,2,2.00565046601054,0.00565046601054125,0,-15,0,-2.3,-1.8,-4 -"992",426,1,1,0,0.654793380978561,0.654793380978561,1,5,0,-0.100000000000001,0.300000000000001,8 -"993",427,1,1,0,2,2,0,14,0,0,0.300000000000001,4 -"994",427,1,2,2,3,1,0,14,0,0,0.300000000000001,4 -"995",427,1,3,3,4.68514012431772,1.68514012431772,1,14,0,0,0.300000000000001,4 -"996",428,1,1,0,1.17558017864597,1.17558017864597,0,-22,0,-4.1,1.9,-2 -"997",429,1,1,0,0.852649502304363,0.852649502304363,1,6,0,1.5,0.800000000000001,1 -"998",430,1,1,0,2,2,0,-14,1,6,-0.9,1 -"999",430,1,2,2,3,1,0,-14,1,6,-0.9,1 -"1000",430,1,3,3,5.91645442475576,2.91645442475576,0,-14,1,6,-0.9,1 -"1001",431,1,1,0,1.48481651877236,1.48481651877236,1,-5,1,2.1,0.800000000000001,-1 -"1002",432,1,1,0,1.34634072012961,1.34634072012961,1,19,0,-1.4,-1.1,5 -"1003",433,1,1,0,1.91999876066296,1.91999876066296,0,3,1,5.2,0.699999999999999,1 -"1004",434,1,1,0,0.18853569633544,0.18853569633544,0,-4,1,4.7,-1.5,0 -"1005",435,1,1,0,2,2,0,-5,1,-4.6,-1.4,6 -"1006",435,1,2,2,3,1,0,-5,1,-4.6,-1.4,6 -"1007",435,1,3,3,6,3,0,-5,1,-4.6,-1.4,6 -"1008",435,1,4,6,6.5,0.5,0,-5,1,-4.6,-1.4,6 -"1009",435,1,5,6.5,8,1.5,0,-5,1,-4.6,-1.4,6 -"1010",435,1,6,8,10,2,0,-5,1,-4.6,-1.4,6 -"1011",436,1,1,0,0.217912823823216,0.217912823823216,1,10,0,12.1,1.1,1 -"1012",437,1,1,0,2,2,0,-9,1,-2.7,-0.6,-1 -"1013",437,1,2,2,3,1,0,-9,1,-2.7,-0.6,-1 -"1014",437,1,3,3,5.69557379011083,2.69557379011083,0,-9,1,-2.7,-0.6,-1 -"1015",438,1,1,0,2,2,0,-16,0,-2.5,,-5 -"1016",438,1,2,2,3,1,0,-16,0,-2.5,,-5 -"1017",438,1,3,3,6,3,0,-16,0,-2.5,,-5 -"1018",438,1,4,6,6.5,0.5,0,-16,0,-2.5,,-5 -"1019",438,1,5,6.5,8,1.5,0,-16,0,-2.5,,-5 -"1020",438,1,6,8,10,2,0,-16,0,-2.5,,-5 -"1021",439,1,1,0,2,2,0,-1,,2.9,-0.5,-5 -"1022",439,1,2,2,3,1,0,-1,,2.9,-0.5,-5 -"1023",439,1,3,3,6,3,0,-1,,2.9,-0.5,-5 -"1024",439,1,4,6,6.18242681351143,0.182426813511429,0,-1,,2.9,-0.5,-5 -"1025",440,1,1,0,0.383739442408774,0.383739442408774,1,-12,1,-6.7,-0.699999999999999,-3 -"1026",441,1,1,0,0.471372463250384,0.471372463250384,1,-2,1,-4.1,-0.300000000000001,10 -"1027",442,1,1,0,2,2,0,11,0,-5.1,-1.2,-1 -"1028",442,1,2,2,3,1,0,11,0,-5.1,-1.2,-1 -"1029",442,1,3,3,5.17713685272293,2.17713685272293,1,11,0,-5.1,-1.2,-1 -"1030",443,1,1,0,2,2,0,-2,0,1.1,-0.699999999999999,-4 -"1031",443,1,2,2,3,1,0,-2,0,1.1,-0.699999999999999,-4 -"1032",443,1,3,3,6,3,0,-2,0,1.1,-0.699999999999999,-4 -"1033",443,1,4,6,6.5,0.5,0,-2,0,1.1,-0.699999999999999,-4 -"1034",443,1,5,6.5,8,1.5,0,-2,0,1.1,-0.699999999999999,-4 -"1035",443,1,6,8,10,2,0,-2,0,1.1,-0.699999999999999,-4 -"1036",444,1,1,0,2,2,0,-15,1,-5.6,0.600000000000001,-7 -"1037",444,1,2,2,3,1,0,-15,1,-5.6,0.600000000000001,-7 -"1038",444,1,3,3,6,3,0,-15,1,-5.6,0.600000000000001,-7 -"1039",444,1,4,6,6.5,0.5,0,-15,1,-5.6,0.600000000000001,-7 -"1040",444,1,5,6.5,8,1.5,0,-15,1,-5.6,0.600000000000001,-7 -"1041",444,1,6,8,10,2,0,-15,1,-5.6,0.600000000000001,-7 -"1042",445,1,1,0,0.538125642200977,0.538125642200977,0,-23,0,0.899999999999999,0.699999999999999,-9 -"1043",446,1,1,0,2,2,0,-10,0,5.7,-0.4,-4 -"1044",446,1,2,2,3,1,0,-10,0,5.7,-0.4,-4 -"1045",446,1,3,3,6,3,0,-10,0,5.7,-0.4,-4 -"1046",446,1,4,6,6.5,0.5,0,-10,0,5.7,-0.4,-4 -"1047",446,1,5,6.5,8,1.5,0,-10,0,5.7,-0.4,-4 -"1048",446,1,6,8,8.69851980427283,0.698519804272834,0,-10,0,5.7,-0.4,-4 -"1049",447,1,1,0,2,2,0,9,0,0.799999999999997,0.5,-9 -"1050",447,1,2,2,3,1,0,9,0,0.799999999999997,0.5,-9 -"1051",447,1,3,3,3.92004644168824,0.920046441688244,0,9,0,0.799999999999997,0.5,-9 -"1052",448,1,1,0,1.74155711399082,1.74155711399082,0,-12,0,4,-1.8,0 -"1053",449,1,1,0,1.17932771587299,1.17932771587299,0,-38,0,-6.6,0.100000000000001,2 -"1054",450,1,1,0,0.850069222637212,0.850069222637212,1,16,1,-3.9,0.399999999999999,1 -"1055",451,1,1,0,2,2,0,5,1,7.9,-0.4,-4 -"1056",451,1,2,2,3,1,0,5,1,7.9,-0.4,-4 -"1057",451,1,3,3,6,3,0,5,1,7.9,-0.4,-4 -"1058",451,1,4,6,6.5,0.5,0,5,1,7.9,-0.4,-4 -"1059",451,1,5,6.5,8,1.5,0,5,1,7.9,-0.4,-4 -"1060",451,1,6,8,10,2,0,5,1,7.9,-0.4,-4 -"1061",452,1,1,0,0.217482154835753,0.217482154835753,1,-8,0,-3.8,0.699999999999999,0 -"1062",453,1,1,0,2,2,0,17,0,2.1,0,-7 -"1063",453,1,2,2,2.16700118571967,0.167001185719667,0,17,0,2.1,0,-7 -"1064",454,1,1,0,1.46379501358423,1.46379501358423,1,2,0,-7.4,0.300000000000001,-7 -"1065",455,1,1,0,2,2,0,5,0,-10.6,-0.9,-14 -"1066",455,1,2,2,3,1,0,5,0,-10.6,-0.9,-14 -"1067",455,1,3,3,5.36631643495453,2.36631643495453,0,5,0,-10.6,-0.9,-14 -"1068",456,1,1,0,0.821604710982116,0.821604710982116,0,12,0,-2.5,0.399999999999999,6 -"1069",457,1,1,0,0.3247849878804,0.3247849878804,1,-1,0,4.9,1.4,-1 -"1070",458,1,1,0,2,2,0,-3,0,-3.3,-0.699999999999999,-6 -"1071",458,1,2,2,3,1,0,-3,0,-3.3,-0.699999999999999,-6 -"1072",458,1,3,3,6,3,0,-3,0,-3.3,-0.699999999999999,-6 -"1073",458,1,4,6,6.5,0.5,0,-3,0,-3.3,-0.699999999999999,-6 -"1074",458,1,5,6.5,8,1.5,0,-3,0,-3.3,-0.699999999999999,-6 -"1075",458,1,6,8,10,2,0,-3,0,-3.3,-0.699999999999999,-6 -"1076",459,1,1,0,0.0452184887956795,0.0452184887956795,1,5,0,4.9,-0.199999999999999,3 -"1077",460,1,1,0,1.66948421244643,1.66948421244643,1,4,1,6.1,1.2,8 -"1078",461,1,1,0,0.588957403182469,0.588957403182469,1,7,0,2.6,1.4,6 -"1079",462,1,1,0,1.94796788902255,1.94796788902255,1,-5,0,-1.1,0.699999999999999,-4 -"1080",463,1,1,0,1.13578688513075,1.13578688513075,0,-13,0,-0.600000000000001,-1,3 -"1081",464,1,1,0,2,2,0,-9,0,,0.600000000000001,-5 -"1082",464,1,2,2,3,1,0,-9,0,,0.600000000000001,-5 -"1083",464,1,3,3,6,3,0,-9,0,,0.600000000000001,-5 -"1084",464,1,4,6,6.5,0.5,0,-9,0,,0.600000000000001,-5 -"1085",464,1,5,6.5,8,1.5,0,-9,0,,0.600000000000001,-5 -"1086",464,1,6,8,10,2,0,-9,0,,0.600000000000001,-5 -"1087",465,1,1,0,2,2,0,-18,0,0.399999999999999,0.5,-7 -"1088",465,1,2,2,2.99761791619932,0.997617916199317,0,-18,0,0.399999999999999,0.5,-7 -"1089",466,1,1,0,2,2,0,-1,0,1.9,-1.4,2 -"1090",466,1,2,2,2.39686029225557,0.396860292255571,1,-1,0,1.9,-1.4,2 -"1091",467,1,1,0,0.264787158330464,0.264787158330464,1,26,0,5.5,1.7,2 -"1092",468,1,1,0,0.206764981161067,0.206764981161067,1,-17,0,-0.100000000000001,0.5,12 -"1093",469,1,1,0,0.0636112261519503,0.0636112261519503,0,30,0,-4.3,0.199999999999999,-10 -"1094",470,1,1,0,2,2,0,-15,1,-4.5,-0.300000000000001,3 -"1095",470,1,2,2,3,1,0,-15,1,-4.5,-0.300000000000001,3 -"1096",470,1,3,3,6,3,0,-15,1,-4.5,-0.300000000000001,3 -"1097",470,1,4,6,6.28846101922853,0.288461019228533,1,-15,1,-4.5,-0.300000000000001,3 -"1098",471,1,1,0,0.0437683481912931,0.0437683481912931,1,-16,1,-2.2,2.6,3 -"1099",472,1,1,0,0.101256173962108,0.101256173962108,0,-6,0,1.5,2.1,4 -"1100",473,1,1,0,1.33709595468332,1.33709595468332,1,-33,0,-1,0.100000000000001,-1 -"1101",474,1,1,0,0.673107908935972,0.673107908935972,1,17,0,-6,-0.0999999999999996,1 -"1102",475,1,1,0,2,2,0,-8,1,4.6,0.600000000000001,-7 -"1103",475,1,2,2,3,1,0,-8,1,4.6,0.600000000000001,-7 -"1104",475,1,3,3,6,3,0,-8,1,4.6,0.600000000000001,-7 -"1105",475,1,4,6,6.5,0.5,0,-8,1,4.6,0.600000000000001,-7 -"1106",475,1,5,6.5,8,1.5,0,-8,1,4.6,0.600000000000001,-7 -"1107",475,1,6,8,10,2,0,-8,1,4.6,0.600000000000001,-7 -"1108",476,1,1,0,2,2,0,-16,0,9.3,-0.6,-1 -"1109",476,1,2,2,3,1,0,-16,0,9.3,-0.6,-1 -"1110",476,1,3,3,6,3,0,-16,0,9.3,-0.6,-1 -"1111",476,1,4,6,6.5,0.5,0,-16,0,9.3,-0.6,-1 -"1112",476,1,5,6.5,8,1.5,0,-16,0,9.3,-0.6,-1 -"1113",476,1,6,8,10,2,0,-16,0,9.3,-0.6,-1 -"1114",477,1,1,0,2,2,0,9,1,1.3,-0.5,-3 -"1115",477,1,2,2,3,1,0,9,1,1.3,-0.5,-3 -"1116",477,1,3,3,3.62734676847544,0.627346768475436,0,9,1,1.3,-0.5,-3 -"1117",478,1,1,0,2,2,0,22,1,2.9,1.1,-3 -"1118",478,1,2,2,3,1,0,22,1,2.9,1.1,-3 -"1119",478,1,3,3,5.88941078336475,2.88941078336475,1,22,1,2.9,1.1,-3 -"1120",479,1,1,0,0.114807344968725,0.114807344968725,0,4,1,8.59999999999999,0.899999999999999,4 -"1121",480,1,1,0,0.71615071859449,0.71615071859449,1,29,1,4.1,1.1,5 -"1122",481,1,1,0,2,2,0,-19,1,3.2,1.2,-9 -"1123",481,1,2,2,3,1,0,-19,1,3.2,1.2,-9 -"1124",481,1,3,3,5.00646011945003,2.00646011945003,0,-19,1,3.2,1.2,-9 -"1125",482,1,1,0,2,2,0,-7,0,5.5,-0.699999999999999,0 -"1126",482,1,2,2,3,1,0,-7,0,5.5,-0.699999999999999,0 -"1127",482,1,3,3,6,3,0,-7,0,5.5,-0.699999999999999,0 -"1128",482,1,4,6,6.5,0.5,0,-7,0,5.5,-0.699999999999999,0 -"1129",482,1,5,6.5,8,1.5,0,-7,0,5.5,-0.699999999999999,0 -"1130",482,1,6,8,10,2,0,-7,0,5.5,-0.699999999999999,0 -"1131",483,1,1,0,2,2,0,-18,0,-4.3,0.600000000000001,-1 -"1132",483,1,2,2,3,1,0,-18,0,-4.3,0.600000000000001,-1 -"1133",483,1,3,3,6,3,0,-18,0,-4.3,0.600000000000001,-1 -"1134",483,1,4,6,6.5,0.5,0,-18,0,-4.3,0.600000000000001,-1 -"1135",483,1,5,6.5,6.64016936206024,0.14016936206024,1,-18,0,-4.3,0.600000000000001,-1 -"1136",484,1,1,0,2,2,0,-14,1,-3.6,-0.300000000000001,0 -"1137",484,1,2,2,3,1,0,-14,1,-3.6,-0.300000000000001,0 -"1138",484,1,3,3,3.7803762372801,0.780376237280101,0,-14,1,-3.6,-0.300000000000001,0 -"1139",485,1,1,0,2,2,0,-18,,-6.6,-0.0999999999999996,-2 -"1140",485,1,2,2,3,1,0,-18,,-6.6,-0.0999999999999996,-2 -"1141",485,1,3,3,3.67638092427892,0.676380924278922,0,-18,,-6.6,-0.0999999999999996,-2 -"1142",486,1,1,0,2,2,0,-13,0,6.8,-1.1,0 -"1143",486,1,2,2,3,1,0,-13,0,6.8,-1.1,0 -"1144",486,1,3,3,4.43994295164325,1.43994295164325,0,-13,0,6.8,-1.1,0 -"1145",487,1,1,0,0.152870409104098,0.152870409104098,1,25,0,0.200000000000003,2.2,1 -"1146",488,1,1,0,0.00984695967569014,0.00984695967569014,1,-1,0,-4.8,-0.0999999999999996,5 -"1147",489,1,1,0,1.86858291519692,1.86858291519692,1,-1,0,5,1.2,-9 -"1148",490,1,1,0,0.192211714380248,0.192211714380248,1,-12,0,-5.5,0.800000000000001,0 -"1149",491,1,1,0,2,2,0,-1,0,6.6,-0.0999999999999996,0 -"1150",491,1,2,2,3,1,0,-1,0,6.6,-0.0999999999999996,0 -"1151",491,1,3,3,3.77704180703484,0.77704180703484,0,-1,0,6.6,-0.0999999999999996,0 -"1152",492,1,1,0,2,2,0,7,1,-2.5,-0.300000000000001,-2 -"1153",492,1,2,2,3,1,0,7,1,-2.5,-0.300000000000001,-2 -"1154",492,1,3,3,6,3,0,7,1,-2.5,-0.300000000000001,-2 -"1155",492,1,4,6,6.5,0.5,0,7,1,-2.5,-0.300000000000001,-2 -"1156",492,1,5,6.5,8,1.5,0,7,1,-2.5,-0.300000000000001,-2 -"1157",492,1,6,8,9.48013241329429,1.48013241329429,1,7,1,-2.5,-0.300000000000001,-2 -"1158",493,1,1,0,0.440334533428587,0.440334533428587,1,5,1,-1.4,-0.9,3 -"1159",494,1,1,0,0.0890548186404758,0.0890548186404758,1,10,0,2.5,0.800000000000001,-3 -"1160",495,1,1,0,2,2,0,-20,0,2.4,-1.9,11 -"1161",495,1,2,2,2.66731594341535,0.667315943415351,0,-20,0,2.4,-1.9,11 -"1162",496,1,1,0,0.795728714587082,0.795728714587082,1,-3,0,-2.1,0.899999999999999,5 -"1163",497,1,1,0,0.774441264368714,0.774441264368714,1,-5,1,1.1,0.800000000000001,2 -"1164",498,1,1,0,2,2,0,-17,0,2.8,-1.1,1 -"1165",498,1,2,2,3,1,0,-17,0,2.8,-1.1,1 -"1166",498,1,3,3,6,3,0,-17,0,2.8,-1.1,1 -"1167",498,1,4,6,6.5,0.5,0,-17,0,2.8,-1.1,1 -"1168",498,1,5,6.5,8,1.5,0,-17,0,2.8,-1.1,1 -"1169",498,1,6,8,10,2,0,-17,0,2.8,-1.1,1 -"1170",499,1,1,0,0.303605951025305,0.303605951025305,1,10,1,6.4,0.399999999999999,5 -"1171",500,1,1,0,1.99656354664492,1.99656354664492,0,-1,1,-0.399999999999999,0.600000000000001,1 -"1172",501,1,1,0,2,2,0,-9,1,3.5,0.899999999999999,3 -"1173",501,1,2,2,3,1,0,-9,1,3.5,0.899999999999999,3 -"1174",501,1,3,3,6,3,0,-9,1,3.5,0.899999999999999,3 -"1175",501,1,4,6,6.00339091183764,0.00339091183764444,1,-9,1,3.5,0.899999999999999,3 -"1176",502,1,1,0,2,2,0,-7,1,-4.7,-0.5,11 -"1177",502,1,2,2,3,1,0,-7,1,-4.7,-0.5,11 -"1178",502,1,3,3,6,3,0,-7,1,-4.7,-0.5,11 -"1179",502,1,4,6,6.5,0.5,0,-7,1,-4.7,-0.5,11 -"1180",502,1,5,6.5,8,1.5,0,-7,1,-4.7,-0.5,11 -"1181",502,1,6,8,9.56889690585563,1.56889690585563,0,-7,1,-4.7,-0.5,11 -"1182",503,1,1,0,2,2,0,8,0,-2.6,-0.699999999999999,1 -"1183",503,1,2,2,3,1,0,8,0,-2.6,-0.699999999999999,1 -"1184",503,1,3,3,3.3681263073662,0.368126307366197,0,8,0,-2.6,-0.699999999999999,1 -"1185",504,1,1,0,0.550904554958991,0.550904554958991,1,-2,0,5.8,0.199999999999999,-6 -"1186",505,1,1,0,1.75928987763993,1.75928987763993,1,-19,0,-1.6,0.899999999999999,5 -"1187",506,1,1,0,2,2,0,13,1,-4.8,-1.2,3 -"1188",506,1,2,2,3,1,0,13,1,-4.8,-1.2,3 -"1189",506,1,3,3,6,3,0,13,1,-4.8,-1.2,3 -"1190",506,1,4,6,6.5,0.5,0,13,1,-4.8,-1.2,3 -"1191",506,1,5,6.5,8,1.5,0,13,1,-4.8,-1.2,3 -"1192",506,1,6,8,9.94262441004902,1.94262441004902,1,13,1,-4.8,-1.2,3 -"1193",507,1,1,0,0.255120296424816,0.255120296424816,1,-12,0,,1.3,-1 -"1194",508,1,1,0,1.99351217081318,1.99351217081318,1,1,1,5.1,-0.199999999999999,5 -"1195",509,1,1,0,2,2,0,2,1,-4.1,0.800000000000001,-2 -"1196",509,1,2,2,3,1,0,2,1,-4.1,0.800000000000001,-2 -"1197",509,1,3,3,6,3,0,2,1,-4.1,0.800000000000001,-2 -"1198",509,1,4,6,6.5,0.5,0,2,1,-4.1,0.800000000000001,-2 -"1199",509,1,5,6.5,6.88812533308735,0.388125333087349,0,2,1,-4.1,0.800000000000001,-2 -"1200",510,1,1,0,2,2,0,-3,0,-0.5,-1.6,-4 -"1201",510,1,2,2,3,1,0,-3,0,-0.5,-1.6,-4 -"1202",510,1,3,3,5.29419305634829,2.29419305634829,0,-3,0,-0.5,-1.6,-4 -"1203",511,1,1,0,2,2,0,-4,0,1.1,-0.4,-7 -"1204",511,1,2,2,3,1,0,-4,0,1.1,-0.4,-7 -"1205",511,1,3,3,6,3,0,-4,0,1.1,-0.4,-7 -"1206",511,1,4,6,6.5,0.5,0,-4,0,1.1,-0.4,-7 -"1207",511,1,5,6.5,8,1.5,0,-4,0,1.1,-0.4,-7 -"1208",511,1,6,8,10,2,0,-4,0,1.1,-0.4,-7 -"1209",512,1,1,0,2,2,0,3,0,-6.7,0.600000000000001,0 -"1210",512,1,2,2,3,1,0,3,0,-6.7,0.600000000000001,0 -"1211",512,1,3,3,4.59753996958384,1.59753996958384,0,3,0,-6.7,0.600000000000001,0 -"1212",513,1,1,0,0.187194422440212,0.187194422440212,1,16,1,1.6,0.600000000000001,6 -"1213",514,1,1,0,2,2,0,-3,0,3,0.300000000000001,2 -"1214",514,1,2,2,2.18129585110467,0.181295851104672,0,-3,0,3,0.300000000000001,2 -"1215",515,1,1,0,0.699385734100499,0.699385734100499,0,-11,1,6.4,-0.5,3 -"1216",516,1,1,0,2,2,0,-8,1,1.5,-2.3,-5 -"1217",516,1,2,2,3,1,0,-8,1,1.5,-2.3,-5 -"1218",516,1,3,3,3.16706565594008,0.167065655940082,0,-8,1,1.5,-2.3,-5 -"1219",517,1,1,0,0.322271075608221,0.322271075608221,1,41,0,-6.3,-0.4,-4 -"1220",518,1,1,0,2,2,0,19,0,-2.3,-1,-11 -"1221",518,1,2,2,3,1,0,19,0,-2.3,-1,-11 -"1222",518,1,3,3,4.59142476161446,1.59142476161446,0,19,0,-2.3,-1,-11 -"1223",519,1,1,0,1.59884573842447,1.59884573842447,0,-15,1,5.8,-0.800000000000001,-4 -"1224",520,1,1,0,1.12433185544346,1.12433185544346,1,20,1,-4.1,0.199999999999999,2 -"1225",521,1,1,0,2,2,0,-11,1,1.4,0.5, -"1226",521,1,2,2,3,1,0,-11,1,1.4,0.5, -"1227",521,1,3,3,6,3,0,-11,1,1.4,0.5, -"1228",521,1,4,6,6.5,0.5,0,-11,1,1.4,0.5, -"1229",521,1,5,6.5,7.72954372435842,1.22954372435842,0,-11,1,1.4,0.5, -"1230",522,1,1,0,1.50452994754366,1.50452994754366,1,-22,0,7.8,2.1,-5 -"1231",523,1,1,0,2,2,0,12,1,3.7,-1.7,3 -"1232",523,1,2,2,3,1,0,12,1,3.7,-1.7,3 -"1233",523,1,3,3,6,3,0,12,1,3.7,-1.7,3 -"1234",523,1,4,6,6.5,0.5,0,12,1,3.7,-1.7,3 -"1235",523,1,5,6.5,6.76197299101372,0.261972991013717,0,12,1,3.7,-1.7,3 -"1236",524,1,1,0,0.379613295856378,0.379613295856378,0,-5,0,-1,-1.4,-8 -"1237",525,1,1,0,0.0166524799595639,0.0166524799595639,1,35,0,-1.7,-0.199999999999999,18 -"1238",526,1,1,0,2,2,0,14,1,4.6,-2,2 -"1239",526,1,2,2,2.24422378914978,0.244223789149775,0,14,1,4.6,-2,2 -"1240",527,1,1,0,1.30833461914648,1.30833461914648,0,-4,1,3.4,-0.199999999999999,-1 -"1241",528,1,1,0,1.06422266130914,1.06422266130914,1,8,0,4.9,0.199999999999999,4 -"1242",529,1,1,0,0.872928058425667,0.872928058425667,0,-2,1,3.6,-0.9,-10 -"1243",530,1,1,0,0.624603847528776,0.624603847528776,1,-4,0,-5.1,0,1 -"1244",531,1,1,0,2,2,0,-5,0,-3,-1.2,0 -"1245",531,1,2,2,3,1,0,-5,0,-3,-1.2,0 -"1246",531,1,3,3,4.84728577850787,1.84728577850787,0,-5,0,-3,-1.2,0 -"1247",532,1,1,0,2,2,0,2,1,4.1,-0.0999999999999996,2 -"1248",532,1,2,2,3,1,0,2,1,4.1,-0.0999999999999996,2 -"1249",532,1,3,3,3.56012013000104,0.560120130001038,0,2,1,4.1,-0.0999999999999996,2 -"1250",533,1,1,0,2,2,0,20,1,4.6,0.899999999999999,2 -"1251",533,1,2,2,2.0683201273381,0.0683201273380966,1,20,1,4.6,0.899999999999999,2 -"1252",534,1,1,0,1.10435577589992,1.10435577589992,1,-12,1,-3.2,-0.6,18 -"1253",535,1,1,0,1.8225079287101,1.8225079287101,1,-18,0,-1.2,0.600000000000001,9 -"1254",536,1,1,0,2,2,0,-22,0,5.7,0.699999999999999,0 -"1255",536,1,2,2,3,1,0,-22,0,5.7,0.699999999999999,0 -"1256",536,1,3,3,6,3,0,-22,0,5.7,0.699999999999999,0 -"1257",536,1,4,6,6.5,0.5,0,-22,0,5.7,0.699999999999999,0 -"1258",536,1,5,6.5,8,1.5,0,-22,0,5.7,0.699999999999999,0 -"1259",536,1,6,8,10,2,0,-22,0,5.7,0.699999999999999,0 -"1260",537,1,1,0,1.30111885582283,1.30111885582283,1,32,1,4.1,-1.8,3 -"1261",538,1,1,0,0.0431818251704386,0.0431818251704386,0,-1,1,2.5,-2.2,-6 -"1262",539,1,1,0,0.488669507797165,0.488669507797165,1,5,0,-1.3,0.800000000000001,1 -"1263",540,1,1,0,2,2,0,11,1,2.6,-0.199999999999999,-5 -"1264",540,1,2,2,2.42545920604815,0.425459206048152,0,11,1,2.6,-0.199999999999999,-5 -"1265",541,1,1,0,0.1224039568477,0.1224039568477,1,18,0,2.8,1.5,2 -"1266",542,1,1,0,0.976710595851798,0.976710595851798,1,,0,,-1.1,3 -"1267",543,1,1,0,0.461281285233994,0.461281285233994,1,13,1,1.5,-0.0999999999999996,4 -"1268",544,1,1,0,2,2,0,-4,0,-1.7,-0.4,4 -"1269",544,1,2,2,3,1,0,-4,0,-1.7,-0.4,4 -"1270",544,1,3,3,6,3,0,-4,0,-1.7,-0.4,4 -"1271",544,1,4,6,6.5,0.5,0,-4,0,-1.7,-0.4,4 -"1272",544,1,5,6.5,7.06318522630672,0.563185226306723,0,-4,0,-1.7,-0.4,4 -"1273",545,1,1,0,0.292720762294652,0.292720762294652,1,17,0,-0.200000000000003,-0.300000000000001,-3 -"1274",546,1,1,0,2,2,0,-14,0,-4.5,-0.699999999999999,-1 -"1275",546,1,2,2,3,1,0,-14,0,-4.5,-0.699999999999999,-1 -"1276",546,1,3,3,5.04805609439728,2.04805609439728,0,-14,0,-4.5,-0.699999999999999,-1 -"1277",547,1,1,0,2,2,0,36,1,1.4,-0.199999999999999,-6 -"1278",547,1,2,2,2.17831796692135,0.178317966921355,0,36,1,1.4,-0.199999999999999,-6 -"1279",548,1,1,0,0.0614860450131264,0.0614860450131264,1,11,1,0.399999999999999,0.800000000000001,2 -"1280",549,1,1,0,2,2,0,2,1,2.9,-0.199999999999999,10 -"1281",549,1,2,2,3,1,0,2,1,2.9,-0.199999999999999,10 -"1282",549,1,3,3,4.96975831060342,1.96975831060342,0,2,1,2.9,-0.199999999999999,10 -"1283",550,1,1,0,2,2,0,-10,1,0.799999999999997,-2.3,1 -"1284",550,1,2,2,3,1,0,-10,1,0.799999999999997,-2.3,1 -"1285",550,1,3,3,5.17746056116266,2.17746056116267,0,-10,1,0.799999999999997,-2.3,1 -"1286",551,1,1,0,0.948692095729562,0.948692095729562,1,11,0,-6.7,0.199999999999999,-5 -"1287",552,1,1,0,0.467526324231501,0.467526324231501,0,-3,1,-0.399999999999999,-0.5,3 -"1288",553,1,1,0,2,2,0,-19,0,3.3,-0.0999999999999996,-3 -"1289",553,1,2,2,3,1,0,-19,0,3.3,-0.0999999999999996,-3 -"1290",553,1,3,3,6,3,0,-19,0,3.3,-0.0999999999999996,-3 -"1291",553,1,4,6,6.5,0.5,0,-19,0,3.3,-0.0999999999999996,-3 -"1292",553,1,5,6.5,8,1.5,0,-19,0,3.3,-0.0999999999999996,-3 -"1293",553,1,6,8,9.44553337281041,1.44553337281041,0,-19,0,3.3,-0.0999999999999996,-3 -"1294",554,1,1,0,0.74777081295367,0.74777081295367,1,10,1,3.3,-0.699999999999999,-1 -"1295",555,1,1,,,,,-1,1,0.600000000000001,0.100000000000001,6 -"1296",555,1,2,,,,,-1,1,0.600000000000001,0.100000000000001,6 -"1297",555,1,3,,,,,-1,1,0.600000000000001,0.100000000000001,6 -"1298",556,1,1,0,1.0721980175442,1.0721980175442,1,-8,1,4.6,-1.1,5 -"1299",557,1,1,0,2,2,0,-12,0,3.9,0.399999999999999,-1 -"1300",557,1,2,2,3,1,0,-12,0,3.9,0.399999999999999,-1 -"1301",557,1,3,3,6,3,0,-12,0,3.9,0.399999999999999,-1 -"1302",557,1,4,6,6.5,0.5,0,-12,0,3.9,0.399999999999999,-1 -"1303",557,1,5,6.5,8,1.5,0,-12,0,3.9,0.399999999999999,-1 -"1304",557,1,6,8,8.49556473772199,0.495564737721994,1,-12,0,3.9,0.399999999999999,-1 -"1305",558,1,1,0,1.8143323513935,1.8143323513935,1,-21,0,5.9,-0.5,6 -"1306",559,1,1,0,0.259128686830835,0.259128686830835,0,19,1,7.1,-0.300000000000001,2 -"1307",560,1,1,0,0.705357759674589,0.705357759674589,0,3,0,-6.6,-0.699999999999999,-10 -"1308",561,1,1,,,,,-25,0,0.200000000000003,-0.9,-6 -"1309",561,1,2,,,,,-25,0,0.200000000000003,-0.9,-6 -"1310",561,1,3,,,,,-25,0,0.200000000000003,-0.9,-6 -"1311",562,1,1,0,1.94588098323943,1.94588098323943,0,9,0,-10.1,0,-2 -"1312",563,1,1,0,1.6113556475423,1.6113556475423,1,-5,1,-4,0.800000000000001,-7 -"1313",564,1,1,0,2,2,0,-6,0,-4.3,-1.2,-3 -"1314",564,1,2,2,3,1,0,-6,0,-4.3,-1.2,-3 -"1315",564,1,3,3,5.15313873783057,2.15313873783057,0,-6,0,-4.3,-1.2,-3 -"1316",565,1,1,0,1.97994255136402,1.97994255136402,1,3,0,0.700000000000003,-1.4,-4 -"1317",566,1,1,,,,,-17,0,-1.1,-0.199999999999999,9 -"1318",567,1,1,0,1.96828082287892,1.96828082287892,0,-7,1,4.5,0.300000000000001,9 -"1319",568,1,1,0,1.36714793126263,1.36714793126263,0,1,0,-2.6,1,-8 -"1320",569,1,1,0,2,2,0,3,0,1.9,0.699999999999999,-6 -"1321",569,1,2,2,3,1,0,3,0,1.9,0.699999999999999,-6 -"1322",569,1,3,3,6,3,0,3,0,1.9,0.699999999999999,-6 -"1323",569,1,4,6,6.5,0.5,0,3,0,1.9,0.699999999999999,-6 -"1324",569,1,5,6.5,8,1.5,0,3,0,1.9,0.699999999999999,-6 -"1325",569,1,6,8,8.95837480829551,0.958374808295508,1,3,0,1.9,0.699999999999999,-6 -"1326",570,1,1,0,2,2,0,-18,0,0,-0.0999999999999996,4 -"1327",570,1,2,2,3,1,0,-18,0,0,-0.0999999999999996,4 -"1328",570,1,3,3,3.00246209352887,0.0024620935288699,0,-18,0,0,-0.0999999999999996,4 -"1329",571,1,1,0,1.06410197682506,1.06410197682506,0,2,1,-0.600000000000001,-0.9,0 -"1330",572,1,1,0,2,2,0,1,0,-0.399999999999999,-2.5,3 -"1331",572,1,2,2,2.14935453921434,0.149354539214336,1,1,0,-0.399999999999999,-2.5,3 -"1332",573,1,1,0,0.983303617624489,0.983303617624489,0,3,1,0.399999999999999,-0.9,-2 -"1333",574,1,1,0,0.515052556790314,0.515052556790314,0,-11,1,2.2,-0.4,3 -"1334",575,1,1,0,1.63381212262143,1.63381212262143,0,-13,1,-10.5,-0.699999999999999,-3 -"1335",576,1,1,0,0.166828732333986,0.166828732333986,1,7,1,-4.5,0.800000000000001,16 -"1336",577,1,1,0,0.0257932619543425,0.0257932619543425,1,10,0,-2.6,-0.4,7 -"1337",578,1,1,0,0.685083360506436,0.685083360506436,1,5,1,2.5,-0.300000000000001,6 -"1338",579,1,1,0,2,2,0,-6,0,-11.4,-1.2,-1 -"1339",579,1,2,2,3,1,0,-6,0,-11.4,-1.2,-1 -"1340",579,1,3,3,6,3,0,-6,0,-11.4,-1.2,-1 -"1341",579,1,4,6,6.12038803144102,0.120388031441023,0,-6,0,-11.4,-1.2,-1 -"1342",580,1,1,0,0.627856451604986,0.627856451604986,0,3,0,-7.6,-1.9,-1 -"1343",581,1,1,0,2,2,0,-27,0,1.5,0.5,8 -"1344",581,1,2,2,3,1,0,-27,0,1.5,0.5,8 -"1345",581,1,3,3,6,3,0,-27,0,1.5,0.5,8 -"1346",581,1,4,6,6.21347357517354,0.213473575173538,1,-27,0,1.5,0.5,8 -"1347",582,1,1,0,2,2,0,5,1,-6,0.399999999999999,4 -"1348",582,1,2,2,3,1,0,5,1,-6,0.399999999999999,4 -"1349",582,1,3,3,6,3,0,5,1,-6,0.399999999999999,4 -"1350",582,1,4,6,6.5,0.5,0,5,1,-6,0.399999999999999,4 -"1351",582,1,5,6.5,8,1.5,0,5,1,-6,0.399999999999999,4 -"1352",582,1,6,8,9.75159271280097,1.75159271280097,0,5,1,-6,0.399999999999999,4 -"1353",583,1,1,0,0.412176348832501,0.412176348832501,1,13,0,-2.8,0.600000000000001,5 -"1354",584,1,1,0,0.312766531215647,0.312766531215647,1,28,0,-1.8,0.199999999999999,0 -"1355",585,1,1,0,0.00685830379677614,0.00685830379677614,1,26,1,0.200000000000003,1.1,0 -"1356",586,1,1,0,1.10777080372163,1.10777080372163,1,0,1,-0.799999999999997,1.6,4 -"1357",587,1,1,0,2,2,0,5,0,0.100000000000001,0.399999999999999,-8 -"1358",587,1,2,2,2.69667380016794,0.696673800167939,1,5,0,0.100000000000001,0.399999999999999,-8 -"1359",588,1,1,0,2,2,0,-8,0,2.2,-0.199999999999999,-5 -"1360",588,1,2,2,3,1,0,-8,0,2.2,-0.199999999999999,-5 -"1361",588,1,3,3,4.47081409953879,1.47081409953878,0,-8,0,2.2,-0.199999999999999,-5 -"1362",589,1,1,0,2,2,0,-19,1,-7.3,-1.1,6 -"1363",589,1,2,2,3,1,0,-19,1,-7.3,-1.1,6 -"1364",589,1,3,3,6,3,0,-19,1,-7.3,-1.1,6 -"1365",589,1,4,6,6.5,0.5,0,-19,1,-7.3,-1.1,6 -"1366",589,1,5,6.5,7.71234486047716,1.21234486047716,1,-19,1,-7.3,-1.1,6 -"1367",590,1,1,0,0.993966057460983,0.993966057460983,0,6,0,-1.8,-1,1 -"1368",591,1,1,0,0.473417789973421,0.473417789973421,1,11,0,-4.9,2.5,7 -"1369",592,1,1,0,2,2,0,-4,1,0.399999999999999,-0.300000000000001,-5 -"1370",592,1,2,2,3,1,0,-4,1,0.399999999999999,-0.300000000000001,-5 -"1371",592,1,3,3,5.38447097380205,2.38447097380205,0,-4,1,0.399999999999999,-0.300000000000001,-5 -"1372",593,1,1,0,0.160826208946361,0.160826208946361,1,10,1,-4.6,2.4,2 -"1373",594,1,1,0,2,2,0,8,1,-0.299999999999997,0.5,2 -"1374",594,1,2,2,3,1,0,8,1,-0.299999999999997,0.5,2 -"1375",594,1,3,3,6,3,0,8,1,-0.299999999999997,0.5,2 -"1376",594,1,4,6,6.5,0.5,0,8,1,-0.299999999999997,0.5,2 -"1377",594,1,5,6.5,7.46726899487107,0.967268994871067,0,8,1,-0.299999999999997,0.5,2 -"1378",595,1,1,0,0.222871047764728,0.222871047764728,1,-11,1,3.4,1.2,-1 -"1379",596,1,1,0,2,2,0,-12,0,0.200000000000003,-0.5,-7 -"1380",596,1,2,2,2.00193143999451,0.00193143999450525,0,-12,0,0.200000000000003,-0.5,-7 -"1381",597,1,1,0,0.321126191331088,0.321126191331088,1,24,0,1.6,-0.699999999999999,-5 -"1382",598,1,1,0,2,2,0,-33,1,0.399999999999999,0.899999999999999,1 -"1383",598,1,2,2,3,1,0,-33,1,0.399999999999999,0.899999999999999,1 -"1384",598,1,3,3,3.47596202476451,0.475962024764514,0,-33,1,0.399999999999999,0.899999999999999,1 -"1385",599,1,1,0,1.62046429311324,1.62046429311324,1,5,1,7,1.2,0 -"1386",600,1,1,0,2,2,0,0,1,-1.9,-2,-7 -"1387",600,1,2,2,3,1,0,0,1,-1.9,-2,-7 -"1388",600,1,3,3,6,3,0,0,1,-1.9,-2,-7 -"1389",600,1,4,6,6.34495128732038,0.344951287320376,0,0,1,-1.9,-2,-7 -"1390",601,1,1,0,2,2,0,-8,0,-2.6,-0.6,1 -"1391",601,1,2,2,3,1,0,-8,0,-2.6,-0.6,1 -"1392",601,1,3,3,6,3,0,-8,0,-2.6,-0.6,1 -"1393",601,1,4,6,6.5,0.5,0,-8,0,-2.6,-0.6,1 -"1394",601,1,5,6.5,8,1.5,0,-8,0,-2.6,-0.6,1 -"1395",601,1,6,8,10,2,0,-8,0,-2.6,-0.6,1 -"1396",602,1,1,0,1.67755731595144,1.67755731595144,0,3,0,1.7,-0.9,-5 -"1397",603,1,1,0,2,2,0,-14,0,-2.2,-0.4,-4 -"1398",603,1,2,2,3,1,0,-14,0,-2.2,-0.4,-4 -"1399",603,1,3,3,6,3,0,-14,0,-2.2,-0.4,-4 -"1400",603,1,4,6,6.5,0.5,0,-14,0,-2.2,-0.4,-4 -"1401",603,1,5,6.5,8,1.5,0,-14,0,-2.2,-0.4,-4 -"1402",603,1,6,8,10,2,0,-14,0,-2.2,-0.4,-4 -"1403",604,1,1,0,0.652697024167318,0.652697024167318,0,20,1,-2.7,0.199999999999999,3 -"1404",605,1,1,0,2,2,0,-8,1,5,-0.6,1 -"1405",605,1,2,2,3,1,0,-8,1,5,-0.6,1 -"1406",605,1,3,3,5.33244948626488,2.33244948626488,0,-8,1,5,-0.6,1 -"1407",606,1,1,0,2,2,0,14,1,4.8,-2.1,-6 -"1408",606,1,2,2,3,1,0,14,1,4.8,-2.1,-6 -"1409",606,1,3,3,6,3,0,14,1,4.8,-2.1,-6 -"1410",606,1,4,6,6.5,0.5,0,14,1,4.8,-2.1,-6 -"1411",606,1,5,6.5,8,1.5,0,14,1,4.8,-2.1,-6 -"1412",606,1,6,8,10,2,0,14,1,4.8,-2.1,-6 -"1413",607,1,1,0,2,2,0,-2,0,-4.7,-0.9,-2 -"1414",607,1,2,2,3,1,0,-2,0,-4.7,-0.9,-2 -"1415",607,1,3,3,6,3,0,-2,0,-4.7,-0.9,-2 -"1416",607,1,4,6,6.5,0.5,0,-2,0,-4.7,-0.9,-2 -"1417",607,1,5,6.5,8,1.5,0,-2,0,-4.7,-0.9,-2 -"1418",607,1,6,8,9.37813130424033,1.37813130424033,0,-2,0,-4.7,-0.9,-2 -"1419",608,1,1,0,0.648958145969204,0.648958145969204,0,0,0,-0.700000000000003,1.5,2 -"1420",609,1,1,0,2,2,0,11,0,-1.7,-0.199999999999999,-2 -"1421",609,1,2,2,3,1,0,11,0,-1.7,-0.199999999999999,-2 -"1422",609,1,3,3,3.84492692201488,0.844926922014881,1,11,0,-1.7,-0.199999999999999,-2 -"1423",610,1,1,0,0.131088379532139,0.131088379532139,1,2,1,1.2,0.300000000000001,9 -"1424",611,1,1,0,0.876667574604281,0.876667574604281,0,-7,0,3.8,-0.199999999999999,2 -"1425",612,1,1,0,0.114840173663684,0.114840173663684,1,10,0,-1.2,1.6,-4 -"1426",613,1,1,0,2,2,0,9,1,2,-0.800000000000001,2 -"1427",613,1,2,2,3,1,0,9,1,2,-0.800000000000001,2 -"1428",613,1,3,3,5.64240371195453,2.64240371195453,0,9,1,2,-0.800000000000001,2 -"1429",614,1,1,0,2,2,0,2,1,-4.4,0.399999999999999,-6 -"1430",614,1,2,2,3,1,0,2,1,-4.4,0.399999999999999,-6 -"1431",614,1,3,3,6,3,0,2,1,-4.4,0.399999999999999,-6 -"1432",614,1,4,6,6.5,0.5,0,2,1,-4.4,0.399999999999999,-6 -"1433",614,1,5,6.5,8,1.5,0,2,1,-4.4,0.399999999999999,-6 -"1434",614,1,6,8,10,2,0,2,1,-4.4,0.399999999999999,-6 -"1435",615,1,1,0,2,2,0,-3,1,-3,0.399999999999999,-4 -"1436",615,1,2,2,3,1,0,-3,1,-3,0.399999999999999,-4 -"1437",615,1,3,3,6,3,0,-3,1,-3,0.399999999999999,-4 -"1438",615,1,4,6,6.5,0.5,0,-3,1,-3,0.399999999999999,-4 -"1439",615,1,5,6.5,8,1.5,0,-3,1,-3,0.399999999999999,-4 -"1440",615,1,6,8,9.03853059328614,1.03853059328614,0,-3,1,-3,0.399999999999999,-4 -"1441",616,1,1,0,0.15182184660442,0.15182184660442,1,-4,1,0.5,1.6,-3 -"1442",617,1,1,0,2,2,0,-7,1,-1.4,-0.199999999999999,0 -"1443",617,1,2,2,3,1,0,-7,1,-1.4,-0.199999999999999,0 -"1444",617,1,3,3,3.96537376357597,0.965373763575967,0,-7,1,-1.4,-0.199999999999999,0 -"1445",618,1,1,0,0.645413082946445,0.645413082946445,1,-5,1,-2.7,-2.4,-7 -"1446",619,1,1,0,2,2,0,-9,0,-2.6,0.399999999999999,-7 -"1447",619,1,2,2,2.68287354315446,0.682873543154465,0,-9,0,-2.6,0.399999999999999,-7 -"1448",620,1,1,0,1.33636379275346,1.33636379275346,1,5,1,1.1,1.2,8 -"1449",621,1,1,0,0.193275981686877,0.193275981686877,1,6,0,0.700000000000003,-0.800000000000001,3 -"1450",622,1,1,0,0.288074799396701,0.288074799396701,1,11,1,-0.299999999999997,0.199999999999999,-5 -"1451",623,1,1,0,0.366360038654189,0.366360038654189,1,-2,0,-2.2,1.1,-9 -"1452",624,1,1,0,2,2,0,16,1,6.4,-1,3 -"1453",624,1,2,2,2.95969064348601,0.959690643486009,1,16,1,6.4,-1,3 -"1454",625,1,1,0,0.409628098035332,0.409628098035332,1,7,1,0.299999999999997,0.100000000000001,0 -"1455",626,1,1,0,1.14304334664709,1.14304334664709,1,30,1,5.9,0.100000000000001,-4 -"1456",627,1,1,0,1.86661301497636,1.86661301497636,1,1,0,-8.5,-1.1,5 -"1457",628,1,1,0,0.174072399025162,0.174072399025162,0,-18,1,3.1,-0.199999999999999,6 -"1458",629,1,1,0,1.93970564311779,1.93970564311779,0,-22,1,-1.9,-1,3 -"1459",630,1,1,0,2,2,0,11,0,-2.4,-1,10 -"1460",630,1,2,2,2.39617687042404,0.396176870424043,1,11,0,-2.4,-1,10 -"1461",631,1,1,0,0.205012778231301,0.205012778231301,1,,0,-3.3,0.300000000000001,7 -"1462",632,1,1,0,2,2,0,-14,1,6.3,-1.1,2 -"1463",632,1,2,2,3,1,0,-14,1,6.3,-1.1,2 -"1464",632,1,3,3,6,3,0,-14,1,6.3,-1.1,2 -"1465",632,1,4,6,6.5,0.5,0,-14,1,6.3,-1.1,2 -"1466",632,1,5,6.5,8,1.5,0,-14,1,6.3,-1.1,2 -"1467",632,1,6,8,10,2,0,-14,1,6.3,-1.1,2 -"1468",633,1,1,0,2,2,0,2,1,6.5,-1.2,0 -"1469",633,1,2,2,2.01416039858984,0.0141603985898379,0,2,1,6.5,-1.2,0 -"1470",634,1,1,0,1.77440898887813,1.77440898887813,1,16,0,0.799999999999997,-0.300000000000001,-3 -"1471",635,1,1,0,0.0686697579783424,0.0686697579783424,1,24,0,4.2,0.899999999999999,-4 -"1472",636,1,1,0,1.96872301945021,1.96872301945021,0,-6,1,-0.799999999999997,-1.5,-4 -"1473",637,1,1,0,1.09816280852806,1.09816280852806,0,-3,0,3.8,1,-9 -"1474",638,1,1,0,2,2,0,13,1,1.8,1.5,-3 -"1475",638,1,2,2,2.1617372818555,0.161737281855497,0,13,1,1.8,1.5,-3 -"1476",639,1,1,0,0.168354628907259,0.168354628907259,0,-10,0,,-1.6,-3 -"1477",640,1,1,0,0.98937121342105,0.98937121342105,1,29,0,0.399999999999999,0.399999999999999,-3 -"1478",641,1,1,0,0.193902877633977,0.193902877633977,0,2,1,-2.3,-1.4,9 -"1479",642,1,1,0,0.0780448611012087,0.0780448611012087,0,-17,1,-1.1,0.399999999999999,-4 -"1480",643,1,1,0,0.528082628398178,0.528082628398178,0,-5,1,0.799999999999997,-2.4,-8 -"1481",644,1,1,0,2,2,0,-8,1,0.399999999999999,0.399999999999999,4 -"1482",644,1,2,2,3,1,0,-8,1,0.399999999999999,0.399999999999999,4 -"1483",644,1,3,3,4.74916344354909,1.74916344354909,0,-8,1,0.399999999999999,0.399999999999999,4 -"1484",645,1,1,,,,,-12,0,-3.5,1.4,5 -"1485",646,1,1,0,0.863225923477778,0.863225923477778,1,-7,1,6,-1.6,-2 -"1486",647,1,1,0,1.99083410084583,1.99083410084583,1,-8,1,0.299999999999997,-0.9,-10 -"1487",648,1,1,0,2,2,0,6,0,5.9,-0.5,6 -"1488",648,1,2,2,3,1,0,6,0,5.9,-0.5,6 -"1489",648,1,3,3,6,3,0,6,0,5.9,-0.5,6 -"1490",648,1,4,6,6.5,0.5,0,6,0,5.9,-0.5,6 -"1491",648,1,5,6.5,7.78658380090257,1.28658380090257,0,6,0,5.9,-0.5,6 -"1492",649,1,1,0,0.730943528631009,0.730943528631009,1,4,0,0.299999999999997,0.5,4 -"1493",650,1,1,0,1.21350884522737,1.21350884522737,1,2,0,0.600000000000001,-2.4,-1 -"1494",651,1,1,0,2,2,0,0,0,1.2,-0.800000000000001,9 -"1495",651,1,2,2,3,1,0,0,0,1.2,-0.800000000000001,9 -"1496",651,1,3,3,3.79891342310167,0.798913423101666,1,0,0,1.2,-0.800000000000001,9 -"1497",652,1,1,0,1.81608796443047,1.81608796443047,0,-13,1,-5.9,-1.3,-1 -"1498",653,1,1,0,2,2,0,2,1,-5,0.100000000000001,-9 -"1499",653,1,2,2,2.28420260997555,0.28420260997555,0,2,1,-5,0.100000000000001,-9 -"1500",654,1,1,0,0.49402860081658,0.49402860081658,0,15,1,-3.4,-1.2,-5 -"1501",655,1,1,0,2,2,0,-19,0,-2.3,0.800000000000001,-8 -"1502",655,1,2,2,3,1,0,-19,0,-2.3,0.800000000000001,-8 -"1503",655,1,3,3,6,3,0,-19,0,-2.3,0.800000000000001,-8 -"1504",655,1,4,6,6.5,0.5,0,-19,0,-2.3,0.800000000000001,-8 -"1505",655,1,5,6.5,6.92601961908021,0.426019619080214,0,-19,0,-2.3,0.800000000000001,-8 -"1506",656,1,1,0,0.15860369461236,0.15860369461236,1,22,0,4.2,-1.4,7 -"1507",657,1,1,0,0.261137681567906,0.261137681567906,0,9,1,2.7,0.399999999999999,9 -"1508",658,1,1,0,0.952113252343228,0.952113252343228,1,5,0,4.3,-0.4,-2 -"1509",659,1,1,0,2,2,0,-30,1,-2.6,0.100000000000001,-1 -"1510",659,1,2,2,3,1,0,-30,1,-2.6,0.100000000000001,-1 -"1511",659,1,3,3,6,3,0,-30,1,-2.6,0.100000000000001,-1 -"1512",659,1,4,6,6.5,0.5,0,-30,1,-2.6,0.100000000000001,-1 -"1513",659,1,5,6.5,8,1.5,0,-30,1,-2.6,0.100000000000001,-1 -"1514",659,1,6,8,10,2,0,-30,1,-2.6,0.100000000000001,-1 -"1515",660,1,1,0,2,2,0,-4,1,0.200000000000003,0.300000000000001,3 -"1516",660,1,2,2,3,1,0,-4,1,0.200000000000003,0.300000000000001,3 -"1517",660,1,3,3,4.47705588700029,1.47705588700029,0,-4,1,0.200000000000003,0.300000000000001,3 -"1518",661,1,1,0,0.634017600051278,0.634017600051278,0,-22,0,-3.6,-0.4,0 -"1519",662,1,1,0,0.0453522276653267,0.0453522276653267,1,1,1,-4.5,0.399999999999999,-4 -"1520",663,1,1,0,2,2,0,-4,1,4.5,-1.5,-12 -"1521",663,1,2,2,3,1,0,-4,1,4.5,-1.5,-12 -"1522",663,1,3,3,6,3,0,-4,1,4.5,-1.5,-12 -"1523",663,1,4,6,6.5,0.5,0,-4,1,4.5,-1.5,-12 -"1524",663,1,5,6.5,6.57222466485991,0.0722246648599129,0,-4,1,4.5,-1.5,-12 -"1525",664,1,1,0,0.916626887789515,0.916626887789515,1,8,0,7,0.399999999999999,4 -"1526",665,1,1,0,2,2,0,8,1,-14.8,-1.2,2 -"1527",665,1,2,2,3,1,0,8,1,-14.8,-1.2,2 -"1528",665,1,3,3,5.82794142915944,2.82794142915944,0,8,1,-14.8,-1.2,2 -"1529",666,1,1,0,0.168266937303147,0.168266937303147,1,14,0,2.5,-0.5,-7 -"1530",667,1,1,0,1.73261311462366,1.73261311462366,1,-4,1,-7.3,1,10 -"1531",668,1,1,0,1.36116065319564,1.36116065319564,1,15,0,0.799999999999997,-1,-2 -"1532",669,1,1,0,0.438836021570586,0.438836021570586,0,-3,1,-6.6,0.5,-1 -"1533",670,1,1,0,0.0526987812065223,0.0526987812065223,0,8,1,3.1,1.2,-2 -"1534",671,1,1,0,1.31924592971932,1.31924592971932,1,-1,1,-1.2,1.6,5 -"1535",672,1,1,0,2,2,0,-2,1,4.8,0.199999999999999,-6 -"1536",672,1,2,2,3,1,0,-2,1,4.8,0.199999999999999,-6 -"1537",672,1,3,3,6,3,0,-2,1,4.8,0.199999999999999,-6 -"1538",672,1,4,6,6.06961115922104,0.0696111592210427,1,-2,1,4.8,0.199999999999999,-6 -"1539",673,1,1,0,2,2,0,1,1,1,1.2,-5 -"1540",673,1,2,2,3,1,0,1,1,1,1.2,-5 -"1541",673,1,3,3,5.84307764872287,2.84307764872287,0,1,1,1,1.2,-5 -"1542",674,1,1,0,0.125753779851109,0.125753779851109,0,-21,0,-0.200000000000003,0.399999999999999,3 -"1543",675,1,1,0,2,2,0,-2,1,2.3,1.7,4 -"1544",675,1,2,2,3,1,0,-2,1,2.3,1.7,4 -"1545",675,1,3,3,6,3,0,-2,1,2.3,1.7,4 -"1546",675,1,4,6,6.5,0.5,0,-2,1,2.3,1.7,4 -"1547",675,1,5,6.5,7.04234201715895,0.542342017158946,0,-2,1,2.3,1.7,4 -"1548",676,1,1,0,1.4535985261599,1.4535985261599,0,-10,0,-5.4,0.600000000000001,-13 -"1549",677,1,1,0,2,2,0,-39,1,,0.399999999999999,1 -"1550",677,1,2,2,3,1,0,-39,1,,0.399999999999999,1 -"1551",677,1,3,3,6,3,0,-39,1,,0.399999999999999,1 -"1552",677,1,4,6,6.5,0.5,0,-39,1,,0.399999999999999,1 -"1553",677,1,5,6.5,8,1.5,0,-39,1,,0.399999999999999,1 -"1554",677,1,6,8,10,2,0,-39,1,,0.399999999999999,1 -"1555",678,1,1,0,2,2,0,-5,0,0.700000000000003,-0.6,-2 -"1556",678,1,2,2,2.0021494420907,0.00214944209069939,1,-5,0,0.700000000000003,-0.6,-2 -"1557",679,1,1,0,2,2,0,20,0,2.1,-1.5,-2 -"1558",679,1,2,2,3,1,0,20,0,2.1,-1.5,-2 -"1559",679,1,3,3,3.02984634683658,0.0298463468365829,1,20,0,2.1,-1.5,-2 -"1560",680,1,1,0,0.00963169499927858,0.00963169499927858,1,11,0,1,0.199999999999999,1 -"1561",681,1,1,0,2,2,0,-10,1,-6,-1.7,-8 -"1562",681,1,2,2,3,1,0,-10,1,-6,-1.7,-8 -"1563",681,1,3,3,6,3,0,-10,1,-6,-1.7,-8 -"1564",681,1,4,6,6.5,0.5,0,-10,1,-6,-1.7,-8 -"1565",681,1,5,6.5,8,1.5,0,-10,1,-6,-1.7,-8 -"1566",681,1,6,8,9.27039102996802,1.27039102996802,0,-10,1,-6,-1.7,-8 -"1567",682,1,1,0,0.696287797561889,0.696287797561889,1,-8,0,3.1,0.199999999999999,2 -"1568",683,1,1,0,0.0322133979258273,0.0322133979258273,1,2,1,-3.7,1.6,2 -"1569",684,1,1,0,2,2,0,-19,1,2.4,-0.199999999999999,-1 -"1570",684,1,2,2,3,1,0,-19,1,2.4,-0.199999999999999,-1 -"1571",684,1,3,3,3.94463099917981,0.944630999179813,0,-19,1,2.4,-0.199999999999999,-1 -"1572",685,1,1,0,0.407005823797335,0.407005823797335,1,-14,0,1.7,0.600000000000001,-5 -"1573",686,1,1,0,0.591719228935945,0.591719228935945,1,-9,1,2,-0.0999999999999996,6 -"1574",687,1,1,0,2,2,0,-10,0,1.3,-0.699999999999999,3 -"1575",687,1,2,2,3,1,0,-10,0,1.3,-0.699999999999999,3 -"1576",687,1,3,3,4.36113659022012,1.36113659022012,0,-10,0,1.3,-0.699999999999999,3 -"1577",688,1,1,0,0.0942079796494929,0.0942079796494929,1,23,0,4.2,0.100000000000001,-1 -"1578",689,1,1,0,0.298004153688043,0.298004153688043,1,25,0,-4,-0.0999999999999996,6 -"1579",690,1,1,0,1.52659559988007,1.52659559988007,0,-22,1,-5.7,0,10 -"1580",691,1,1,0,2,2,0,-3,0,5.2,-1.5,0 -"1581",691,1,2,2,2.57143651972413,0.571436519724126,1,-3,0,5.2,-1.5,0 -"1582",692,1,1,0,2,2,0,-29,1,-0.399999999999999,0.100000000000001,3 -"1583",692,1,2,2,3,1,0,-29,1,-0.399999999999999,0.100000000000001,3 -"1584",692,1,3,3,6,3,0,-29,1,-0.399999999999999,0.100000000000001,3 -"1585",692,1,4,6,6.5,0.5,0,-29,1,-0.399999999999999,0.100000000000001,3 -"1586",692,1,5,6.5,8,1.5,0,-29,1,-0.399999999999999,0.100000000000001,3 -"1587",692,1,6,8,10,2,0,-29,1,-0.399999999999999,0.100000000000001,3 -"1588",693,1,1,0,0.81853161417782,0.81853161417782,1,7,1,-2.5,-0.699999999999999,6 -"1589",694,1,1,0,2,2,0,-4,1,-0.200000000000003,-1.7,0 -"1590",694,1,2,2,3,1,0,-4,1,-0.200000000000003,-1.7,0 -"1591",694,1,3,3,4.02354463942828,1.02354463942828,1,-4,1,-0.200000000000003,-1.7,0 -"1592",695,1,1,0,1.32231598380106,1.32231598380106,1,3,1,5.6,1,7 -"1593",696,1,1,0,2,2,0,6,1,-0.600000000000001,0.5,-8 -"1594",696,1,2,2,3,1,0,6,1,-0.600000000000001,0.5,-8 -"1595",696,1,3,3,6,3,0,6,1,-0.600000000000001,0.5,-8 -"1596",696,1,4,6,6.5,0.5,0,6,1,-0.600000000000001,0.5,-8 -"1597",696,1,5,6.5,8,1.5,0,6,1,-0.600000000000001,0.5,-8 -"1598",696,1,6,8,10,2,0,6,1,-0.600000000000001,0.5,-8 -"1599",697,1,1,0,2,2,0,16,1,0.100000000000001,-1.5,12 -"1600",697,1,2,2,2.62588219518274,0.62588219518274,0,16,1,0.100000000000001,-1.5,12 -"1601",698,1,1,0,2,2,0,0,1,-4.5,-0.5,-8 -"1602",698,1,2,2,3,1,0,0,1,-4.5,-0.5,-8 -"1603",698,1,3,3,6,3,0,0,1,-4.5,-0.5,-8 -"1604",698,1,4,6,6.5,0.5,0,0,1,-4.5,-0.5,-8 -"1605",698,1,5,6.5,6.52715689241482,0.0271568924148183,0,0,1,-4.5,-0.5,-8 -"1606",699,1,1,0,2,2,0,-5,0,-10.6,0.100000000000001,-3 -"1607",699,1,2,2,3,1,0,-5,0,-10.6,0.100000000000001,-3 -"1608",699,1,3,3,6,3,0,-5,0,-10.6,0.100000000000001,-3 -"1609",699,1,4,6,6.5,0.5,0,-5,0,-10.6,0.100000000000001,-3 -"1610",699,1,5,6.5,8,1.5,0,-5,0,-10.6,0.100000000000001,-3 -"1611",699,1,6,8,10,2,0,-5,0,-10.6,0.100000000000001,-3 -"1612",700,1,1,0,2,2,0,11,1,1.5,-0.9,-5 -"1613",700,1,2,2,2.63517676951991,0.635176769519913,0,11,1,1.5,-0.9,-5 -"1614",701,1,1,0,0.746296980107152,0.746296980107152,0,2,0,-1.3,1.7,1 -"1615",702,1,1,0,2,2,0,15,1,3.8,-0.6,5 -"1616",702,1,2,2,3,1,0,15,1,3.8,-0.6,5 -"1617",702,1,3,3,6,3,0,15,1,3.8,-0.6,5 -"1618",702,1,4,6,6.5,0.5,0,15,1,3.8,-0.6,5 -"1619",702,1,5,6.5,6.64003934039585,0.140039340395845,1,15,1,3.8,-0.6,5 -"1620",703,1,1,0,2,2,0,-23,1,-1.6,-0.0999999999999996,-6 -"1621",703,1,2,2,3,1,0,-23,1,-1.6,-0.0999999999999996,-6 -"1622",703,1,3,3,6,3,0,-23,1,-1.6,-0.0999999999999996,-6 -"1623",703,1,4,6,6.5,0.5,0,-23,1,-1.6,-0.0999999999999996,-6 -"1624",703,1,5,6.5,7.82297597927499,1.32297597927499,0,-23,1,-1.6,-0.0999999999999996,-6 -"1625",704,1,1,0,0.483564007043408,0.483564007043408,1,26,1,-6.4,-0.199999999999999,2 -"1626",705,1,1,0,1.04619526274603,1.04619526274603,1,-7,1,3.3,0.199999999999999,1 -"1627",706,1,1,0,0.0735325381268706,0.0735325381268706,1,10,0,1.3,0.699999999999999,4 -"1628",707,1,1,0,2,2,0,-8,1,2.7,-0.0999999999999996,-1 -"1629",707,1,2,2,3,1,0,-8,1,2.7,-0.0999999999999996,-1 -"1630",707,1,3,3,6,3,0,-8,1,2.7,-0.0999999999999996,-1 -"1631",707,1,4,6,6.5,0.5,0,-8,1,2.7,-0.0999999999999996,-1 -"1632",707,1,5,6.5,8,1.5,0,-8,1,2.7,-0.0999999999999996,-1 -"1633",707,1,6,8,10,2,0,-8,1,2.7,-0.0999999999999996,-1 -"1634",708,1,1,0,2,2,0,-15,0,-2.9,-0.5,-10 -"1635",708,1,2,2,3,1,0,-15,0,-2.9,-0.5,-10 -"1636",708,1,3,3,6,3,0,-15,0,-2.9,-0.5,-10 -"1637",708,1,4,6,6.5,0.5,0,-15,0,-2.9,-0.5,-10 -"1638",708,1,5,6.5,8,1.5,0,-15,0,-2.9,-0.5,-10 -"1639",708,1,6,8,10,2,0,-15,0,-2.9,-0.5,-10 -"1640",709,1,1,0,0.750216440414283,0.750216440414283,1,15,0,5.1,0.800000000000001,-7 -"1641",710,1,1,0,2,2,0,7,1,0.799999999999997,-1.8,-3 -"1642",710,1,2,2,3,1,0,7,1,0.799999999999997,-1.8,-3 -"1643",710,1,3,3,4.44456839183952,1.44456839183952,0,7,1,0.799999999999997,-1.8,-3 -"1644",711,1,1,0,2,2,0,14,0,-0.200000000000003,-1.2,-2 -"1645",711,1,2,2,3,1,0,14,0,-0.200000000000003,-1.2,-2 -"1646",711,1,3,3,6,3,0,14,0,-0.200000000000003,-1.2,-2 -"1647",711,1,4,6,6.5,0.5,0,14,0,-0.200000000000003,-1.2,-2 -"1648",711,1,5,6.5,6.97435240867703,0.47435240867703,1,14,0,-0.200000000000003,-1.2,-2 -"1649",712,1,1,0,0.285053380865232,0.285053380865232,1,-2,0,-0.600000000000001,-0.5,-4 -"1650",713,1,1,0,0.233023156794273,0.233023156794273,0,4,0,1.5,-1.2,3 -"1651",714,1,1,0,2,2,0,-8,1,1.4,-0.699999999999999,-3 -"1652",714,1,2,2,3,1,0,-8,1,1.4,-0.699999999999999,-3 -"1653",714,1,3,3,6,3,0,-8,1,1.4,-0.699999999999999,-3 -"1654",714,1,4,6,6.5,0.5,0,-8,1,1.4,-0.699999999999999,-3 -"1655",714,1,5,6.5,8,1.5,0,-8,1,1.4,-0.699999999999999,-3 -"1656",714,1,6,8,10,2,0,-8,1,1.4,-0.699999999999999,-3 -"1657",715,1,1,0,2,2,0,-2,0,-0.600000000000001,-2.3,2 -"1658",715,1,2,2,3,1,0,-2,0,-0.600000000000001,-2.3,2 -"1659",715,1,3,3,6,3,0,-2,0,-0.600000000000001,-2.3,2 -"1660",715,1,4,6,6.5,0.5,0,-2,0,-0.600000000000001,-2.3,2 -"1661",715,1,5,6.5,8,1.5,0,-2,0,-0.600000000000001,-2.3,2 -"1662",715,1,6,8,10,2,0,-2,0,-0.600000000000001,-2.3,2 -"1663",716,1,1,0,0.251021397476683,0.251021397476683,0,-20,0,-7.6,-1.8,3 -"1664",717,1,1,0,0.519973310845317,0.519973310845317,1,-2,0,3.8,-0.0999999999999996,8 -"1665",718,1,1,0,2,2,0,0,,-8.3,-0.199999999999999,10 -"1666",718,1,2,2,3,1,0,0,,-8.3,-0.199999999999999,10 -"1667",718,1,3,3,6,3,0,0,,-8.3,-0.199999999999999,10 -"1668",718,1,4,6,6.5,0.5,0,0,,-8.3,-0.199999999999999,10 -"1669",718,1,5,6.5,6.7232560551137,0.223256055113697,1,0,,-8.3,-0.199999999999999,10 -"1670",719,1,1,0,0.284668772149308,0.284668772149308,1,-17,0,-3.1,-1,0 -"1671",720,1,1,0,0.415565753958828,0.415565753958828,1,7,1,6.9,1.3,6 -"1672",721,1,1,0,0.973660934376088,0.973660934376088,0,12,1,0.299999999999997,-0.800000000000001,-7 -"1673",722,1,1,0,1.10969904638402,1.10969904638402,1,26,1,-1.5,-1.4,0 -"1674",723,1,1,0,0.586262883761531,0.586262883761531,1,1,0,6.7,1.4,5 -"1675",724,1,1,0,1.1294964951988,1.1294964951988,0,10,1,3.2,0.699999999999999,-14 -"1676",725,1,1,0,1.14546141653117,1.14546141653117,0,1,0,-2,0.600000000000001,-4 -"1677",726,1,1,0,2,2,0,11,1,-3,-0.6,1 -"1678",726,1,2,2,3,1,0,11,1,-3,-0.6,1 -"1679",726,1,3,3,5.22916811746139,2.22916811746139,0,11,1,-3,-0.6,1 -"1680",727,1,1,0,2,2,0,-8,1,4.8,0.800000000000001,-6 -"1681",727,1,2,2,2.87208657247857,0.872086572478571,1,-8,1,4.8,0.800000000000001,-6 -"1682",728,1,1,0,2,2,0,2,1,4.7,-0.4,-2 -"1683",728,1,2,2,3,1,0,2,1,4.7,-0.4,-2 -"1684",728,1,3,3,6,3,0,2,1,4.7,-0.4,-2 -"1685",728,1,4,6,6.5,0.5,0,2,1,4.7,-0.4,-2 -"1686",728,1,5,6.5,8,1.5,0,2,1,4.7,-0.4,-2 -"1687",728,1,6,8,8.55970546801229,0.559705468012291,0,2,1,4.7,-0.4,-2 -"1688",729,1,1,0,2,2,0,6,1,5.6,-0.5,-7 -"1689",729,1,2,2,3,1,0,6,1,5.6,-0.5,-7 -"1690",729,1,3,3,6,3,0,6,1,5.6,-0.5,-7 -"1691",729,1,4,6,6.5,0.5,0,6,1,5.6,-0.5,-7 -"1692",729,1,5,6.5,7.38023167262962,0.880231672629622,0,6,1,5.6,-0.5,-7 -"1693",730,1,1,0,1.01471758509279,1.01471758509279,1,9,0,,-0.699999999999999,-5 -"1694",731,1,1,0,0.51837641062488,0.51837641062488,1,7,0,-5.8,-0.699999999999999,14 -"1695",732,1,1,0,0.115590417001848,0.115590417001848,1,13,0,-1.8,-1.1,-6 -"1696",733,1,1,0,2,2,0,-4,1,-5.3,-1.1,-7 -"1697",733,1,2,2,3,1,0,-4,1,-5.3,-1.1,-7 -"1698",733,1,3,3,6,3,0,-4,1,-5.3,-1.1,-7 -"1699",733,1,4,6,6.5,0.5,0,-4,1,-5.3,-1.1,-7 -"1700",733,1,5,6.5,8,1.5,0,-4,1,-5.3,-1.1,-7 -"1701",733,1,6,8,10,2,0,-4,1,-5.3,-1.1,-7 -"1702",734,1,1,0,0.869462945793517,0.869462945793517,1,0,1,-9.2,1.5,13 -"1703",735,1,1,0,0.201308217296402,0.201308217296402,1,1,0,-1.3,0.100000000000001,-4 -"1704",736,1,1,0,2,2,0,-17,1,7.1,-2,-6 -"1705",736,1,2,2,3,1,0,-17,1,7.1,-2,-6 -"1706",736,1,3,3,6,3,0,-17,1,7.1,-2,-6 -"1707",736,1,4,6,6.5,0.5,0,-17,1,7.1,-2,-6 -"1708",736,1,5,6.5,8,1.5,0,-17,1,7.1,-2,-6 -"1709",736,1,6,8,10,2,0,-17,1,7.1,-2,-6 -"1710",737,1,1,0,0.818979239247835,0.818979239247835,1,-8,0,-0.200000000000003,1.4,-3 -"1711",738,1,1,0,2,2,0,-10,1,-1,0.399999999999999, -"1712",738,1,2,2,3,1,0,-10,1,-1,0.399999999999999, -"1713",738,1,3,3,3.95605284408345,0.956052844083454,0,-10,1,-1,0.399999999999999, -"1714",739,1,1,0,0.230017094631256,0.230017094631256,0,8,1,0.600000000000001,0.100000000000001,3 -"1715",740,1,1,0,0.255508803152062,0.255508803152062,1,15,0,-1.3,0.199999999999999,3 -"1716",741,1,1,0,0.954077486295028,0.954077486295028,1,17,0,2.4,-0.699999999999999,-2 -"1717",742,1,1,0,2,2,0,-3,1,3.2,0, -"1718",742,1,2,2,2.89272306460515,0.892723064605154,0,-3,1,3.2,0, -"1719",743,1,1,0,0.54071174550804,0.54071174550804,0,7,0,-8.7,-0.800000000000001,3 -"1720",744,1,1,0,0.593241838186627,0.593241838186627,1,15,0,7.8,0.699999999999999,4 -"1721",745,1,1,0,2,2,0,11,1,2.3,-1,-6 -"1722",745,1,2,2,3,1,0,11,1,2.3,-1,-6 -"1723",745,1,3,3,6,3,0,11,1,2.3,-1,-6 -"1724",745,1,4,6,6.5,0.5,0,11,1,2.3,-1,-6 -"1725",745,1,5,6.5,8,1.5,0,11,1,2.3,-1,-6 -"1726",745,1,6,8,10,2,0,11,1,2.3,-1,-6 -"1727",746,1,1,0,2,2,0,-24,0,2.3,-0.6,-4 -"1728",746,1,2,2,3,1,0,-24,0,2.3,-0.6,-4 -"1729",746,1,3,3,6,3,0,-24,0,2.3,-0.6,-4 -"1730",746,1,4,6,6.5,0.5,0,-24,0,2.3,-0.6,-4 -"1731",746,1,5,6.5,8,1.5,0,-24,0,2.3,-0.6,-4 -"1732",746,1,6,8,10,2,0,-24,0,2.3,-0.6,-4 -"1733",747,1,1,0,2,2,0,-9,0,4.4,0.699999999999999,7 -"1734",747,1,2,2,3,1,0,-9,0,4.4,0.699999999999999,7 -"1735",747,1,3,3,4.17744131158525,1.17744131158525,1,-9,0,4.4,0.699999999999999,7 -"1736",748,1,1,0,1.59777613559327,1.59777613559327,0,-27,0,-0.399999999999999,-0.300000000000001,7 -"1737",749,1,1,0,2,2,0,-2,0,-3.5,0.800000000000001,-8 -"1738",749,1,2,2,3,1,0,-2,0,-3.5,0.800000000000001,-8 -"1739",749,1,3,3,4.23367984494857,1.23367984494857,0,-2,0,-3.5,0.800000000000001,-8 -"1740",750,1,1,0,1.18243455706114,1.18243455706114,1,-4,0,5.4,-0.0999999999999996,3 -"1741",751,1,1,0,2,2,0,-7,1,7.3,1.5,2 -"1742",751,1,2,2,3,1,0,-7,1,7.3,1.5,2 -"1743",751,1,3,3,6,3,0,-7,1,7.3,1.5,2 -"1744",751,1,4,6,6.5,0.5,0,-7,1,7.3,1.5,2 -"1745",751,1,5,6.5,7.83303289086617,1.33303289086617,0,-7,1,7.3,1.5,2 -"1746",752,1,1,0,0.275163704087327,0.275163704087327,0,4,0,0.799999999999997,1.7,-4 -"1747",753,1,1,0,0.252144894824389,0.252144894824389,1,2,0,-1.6,2.3,6 -"1748",754,1,1,0,2,2,0,9,1,4.6,-0.5,2 -"1749",754,1,2,2,3,1,0,9,1,4.6,-0.5,2 -"1750",754,1,3,3,6,3,0,9,1,4.6,-0.5,2 -"1751",754,1,4,6,6.5,0.5,0,9,1,4.6,-0.5,2 -"1752",754,1,5,6.5,8,1.5,0,9,1,4.6,-0.5,2 -"1753",754,1,6,8,10,2,0,9,1,4.6,-0.5,2 -"1754",755,1,1,0,2,2,0,4,0,-1.7,-0.0999999999999996,0 -"1755",755,1,2,2,3,1,0,4,0,-1.7,-0.0999999999999996,0 -"1756",755,1,3,3,6,3,0,4,0,-1.7,-0.0999999999999996,0 -"1757",755,1,4,6,6.5,0.5,0,4,0,-1.7,-0.0999999999999996,0 -"1758",755,1,5,6.5,8,1.5,0,4,0,-1.7,-0.0999999999999996,0 -"1759",755,1,6,8,9.60833261352596,1.60833261352596,1,4,0,-1.7,-0.0999999999999996,0 -"1760",756,1,1,0,2,2,0,-12,1,4.8,-1.5,0 -"1761",756,1,2,2,3,1,0,-12,1,4.8,-1.5,0 -"1762",756,1,3,3,4.62395767893938,1.62395767893938,0,-12,1,4.8,-1.5,0 -"1763",757,1,1,0,0.965580648399735,0.965580648399735,0,-22,1,9.09999999999999,1.8,4 -"1764",758,1,1,0,2,2,0,-20,0,5.8,-0.199999999999999,-1 -"1765",758,1,2,2,3,1,0,-20,0,5.8,-0.199999999999999,-1 -"1766",758,1,3,3,3.50600522600793,0.506005226007933,0,-20,0,5.8,-0.199999999999999,-1 -"1767",759,1,1,0,2,2,0,-24,1,3.9,0.899999999999999,-7 -"1768",759,1,2,2,2.6766026796161,0.676602679616104,0,-24,1,3.9,0.899999999999999,-7 -"1769",760,1,1,0,0.461027848947528,0.461027848947528,1,26,0,3.5,1.8,-1 -"1770",761,1,1,0,0.618229685973902,0.618229685973902,1,-1,0,7,-1.1,7 -"1771",762,1,1,0,2,2,0,-13,0,-3.3,-0.4,-2 -"1772",762,1,2,2,3,1,0,-13,0,-3.3,-0.4,-2 -"1773",762,1,3,3,3.26806010815586,0.268060108155861,0,-13,0,-3.3,-0.4,-2 -"1774",763,1,1,0,2,2,0,-19,1,2.6,0.100000000000001,-5 -"1775",763,1,2,2,3,1,0,-19,1,2.6,0.100000000000001,-5 -"1776",763,1,3,3,6,3,0,-19,1,2.6,0.100000000000001,-5 -"1777",763,1,4,6,6.5,0.5,0,-19,1,2.6,0.100000000000001,-5 -"1778",763,1,5,6.5,8,1.5,0,-19,1,2.6,0.100000000000001,-5 -"1779",763,1,6,8,10,2,0,-19,1,2.6,0.100000000000001,-5 -"1780",764,1,1,0,1.30632695437613,1.30632695437613,1,-13,0,-2.4,0.5,-2 -"1781",765,1,1,0,2,2,0,11,1,5.3,-0.800000000000001,-2 -"1782",765,1,2,2,3,1,0,11,1,5.3,-0.800000000000001,-2 -"1783",765,1,3,3,6,3,0,11,1,5.3,-0.800000000000001,-2 -"1784",765,1,4,6,6.5,0.5,0,11,1,5.3,-0.800000000000001,-2 -"1785",765,1,5,6.5,8,1.5,0,11,1,5.3,-0.800000000000001,-2 -"1786",765,1,6,8,10,2,0,11,1,5.3,-0.800000000000001,-2 -"1787",766,1,1,0,1.54731642051272,1.54731642051272,1,2,1,1.6,0.899999999999999,4 -"1788",767,1,1,0,2,2,0,-5,0,2.7,-2.1,-1 -"1789",767,1,2,2,3,1,0,-5,0,2.7,-2.1,-1 -"1790",767,1,3,3,5.08123386831776,2.08123386831776,0,-5,0,2.7,-2.1,-1 -"1791",768,1,1,0,0.0506787141276454,0.0506787141276454,1,15,1,-3.6,1.8,1 -"1792",769,1,1,0,2,2,0,-10,0,-3.2,0.199999999999999,-2 -"1793",769,1,2,2,3,1,0,-10,0,-3.2,0.199999999999999,-2 -"1794",769,1,3,3,6,3,0,-10,0,-3.2,0.199999999999999,-2 -"1795",769,1,4,6,6.5,0.5,0,-10,0,-3.2,0.199999999999999,-2 -"1796",769,1,5,6.5,8,1.5,0,-10,0,-3.2,0.199999999999999,-2 -"1797",769,1,6,8,10,2,0,-10,0,-3.2,0.199999999999999,-2 -"1798",770,1,1,0,2,2,0,-21,0,-1.4,0.5,7 -"1799",770,1,2,2,3,1,0,-21,0,-1.4,0.5,7 -"1800",770,1,3,3,6,3,0,-21,0,-1.4,0.5,7 -"1801",770,1,4,6,6.5,0.5,0,-21,0,-1.4,0.5,7 -"1802",770,1,5,6.5,8,1.5,0,-21,0,-1.4,0.5,7 -"1803",770,1,6,8,10,2,0,-21,0,-1.4,0.5,7 -"1804",771,1,1,0,1.22591471202071,1.22591471202071,1,16,1,-1.5,1.2,-4 -"1805",772,1,1,0,0.0699354384526838,0.0699354384526838,0,5,0,-2.8,1.2,0 -"1806",773,1,1,0,0.216880157150329,0.216880157150329,1,-13,0,-1.3,0.800000000000001,10 -"1807",774,1,1,0,2,2,0,2,0,-3.1,0.100000000000001,-1 -"1808",774,1,2,2,3,1,0,2,0,-3.1,0.100000000000001,-1 -"1809",774,1,3,3,6,3,0,2,0,-3.1,0.100000000000001,-1 -"1810",774,1,4,6,6.5,0.5,0,2,0,-3.1,0.100000000000001,-1 -"1811",774,1,5,6.5,6.95585060110821,0.455850601108206,1,2,0,-3.1,0.100000000000001,-1 -"1812",775,1,1,0,2,2,0,8,1,3.7,0.199999999999999,-6 -"1813",775,1,2,2,3,1,0,8,1,3.7,0.199999999999999,-6 -"1814",775,1,3,3,3.63751885491794,0.637518854917937,0,8,1,3.7,0.199999999999999,-6 -"1815",776,1,1,0,1.99870599697925,1.99870599697925,0,-3,0,-3.1,-0.5,-3 -"1816",777,1,1,0,0.116353775625417,0.116353775625417,1,3,1,3.2,1.3,4 -"1817",778,1,1,0,2,2,0,4,1,-0.200000000000003,-0.199999999999999,-2 -"1818",778,1,2,2,3,1,0,4,1,-0.200000000000003,-0.199999999999999,-2 -"1819",778,1,3,3,6,3,0,4,1,-0.200000000000003,-0.199999999999999,-2 -"1820",778,1,4,6,6.5,0.5,0,4,1,-0.200000000000003,-0.199999999999999,-2 -"1821",778,1,5,6.5,8,1.5,0,4,1,-0.200000000000003,-0.199999999999999,-2 -"1822",778,1,6,8,10,2,0,4,1,-0.200000000000003,-0.199999999999999,-2 -"1823",779,1,1,0,0.74342166520916,0.74342166520916,1,18,0,-2.1,-0.5,-1 -"1824",780,1,1,0,2,2,0,-1,1,1.5,-0.9,-4 -"1825",780,1,2,2,3,1,0,-1,1,1.5,-0.9,-4 -"1826",780,1,3,3,6,3,0,-1,1,1.5,-0.9,-4 -"1827",780,1,4,6,6.5,0.5,0,-1,1,1.5,-0.9,-4 -"1828",780,1,5,6.5,6.74880521870234,0.248805218702337,0,-1,1,1.5,-0.9,-4 -"1829",781,1,1,0,2,2,0,-18,1,8.5,1,-3 -"1830",781,1,2,2,3,1,0,-18,1,8.5,1,-3 -"1831",781,1,3,3,3.7773002181768,0.7773002181768,1,-18,1,8.5,1,-3 -"1832",782,1,1,0,1.70696339814161,1.70696339814161,1,4,1,,0.899999999999999,2 -"1833",783,1,1,0,0.357216386154242,0.357216386154242,1,23,0,-5.1,0,-4 -"1834",784,1,1,,,,,-8,0,-7.7,-0.6,3 -"1835",784,1,2,,,,,-8,0,-7.7,-0.6,3 -"1836",784,1,3,,,,,-8,0,-7.7,-0.6,3 -"1837",785,1,1,0,2,2,0,-17,1,2.9,-0.9,-2 -"1838",785,1,2,2,3,1,0,-17,1,2.9,-0.9,-2 -"1839",785,1,3,3,6,3,0,-17,1,2.9,-0.9,-2 -"1840",785,1,4,6,6.5,0.5,0,-17,1,2.9,-0.9,-2 -"1841",785,1,5,6.5,8,1.5,0,-17,1,2.9,-0.9,-2 -"1842",785,1,6,8,8.72318156915069,0.723181569150689,0,-17,1,2.9,-0.9,-2 -"1843",786,1,1,0,0.255078058100149,0.255078058100149,0,7,1,0.5,-0.699999999999999,-7 -"1844",787,1,1,0,1.71373321956406,1.71373321956406,0,-14,1,6.1,-0.800000000000001,-3 -"1845",788,1,1,0,1.28334172677994,1.28334172677994,0,-1,0,3.8,-1.9,-3 -"1846",789,1,1,0,2,2,0,-25,1,-3.5,-0.9,-4 -"1847",789,1,2,2,3,1,0,-25,1,-3.5,-0.9,-4 -"1848",789,1,3,3,5.92278739468674,2.92278739468674,0,-25,1,-3.5,-0.9,-4 -"1849",790,1,1,0,2,2,0,-16,1,-3.1,-0.0999999999999996,8 -"1850",790,1,2,2,3,1,0,-16,1,-3.1,-0.0999999999999996,8 -"1851",790,1,3,3,3.10465589310586,0.104655893105863,0,-16,1,-3.1,-0.0999999999999996,8 -"1852",791,1,1,0,2,2,0,-22,0,3.3,0.699999999999999,2 -"1853",791,1,2,2,3,1,0,-22,0,3.3,0.699999999999999,2 -"1854",791,1,3,3,6,3,0,-22,0,3.3,0.699999999999999,2 -"1855",791,1,4,6,6.18195219352635,0.181952193526349,0,-22,0,3.3,0.699999999999999,2 -"1856",792,1,1,0,2,2,0,10,1,-0.799999999999997,-1.4,2 -"1857",792,1,2,2,3,1,0,10,1,-0.799999999999997,-1.4,2 -"1858",792,1,3,3,3.94475250405752,0.944752504057517,0,10,1,-0.799999999999997,-1.4,2 -"1859",793,1,1,0,2,2,0,-14,0,2.5,1.4,2 -"1860",793,1,2,2,3,1,0,-14,0,2.5,1.4,2 -"1861",793,1,3,3,4.91085358338262,1.91085358338262,0,-14,0,2.5,1.4,2 -"1862",794,1,1,0,0.895118901789992,0.895118901789992,1,7,0,2.9,0.5,-4 -"1863",795,1,1,0,1.49300779867779,1.49300779867779,0,21,1,3,-0.4,-1 -"1864",796,1,1,0,0.506639152010947,0.506639152010947,1,-4,0,1.1,-0.199999999999999,7 -"1865",797,1,1,0,1.04879654863615,1.04879654863615,1,15,0,-7,1,0 -"1866",798,1,1,0,1.41880729919412,1.41880729919412,0,-17,0,-6,0.399999999999999,0 -"1867",799,1,1,0,1.34248731209616,1.34248731209616,1,-5,0,0.299999999999997,0.899999999999999,2 -"1868",800,1,1,0,0.0704781210146715,0.0704781210146715,0,-20,1,-3.9,1.2,-10 -"1869",801,1,1,0,1.42657160298433,1.42657160298433,0,-16,0,0.5,-0.800000000000001,-4 -"1870",802,1,1,0,2,2,0,-12,1,-9.9,-0.6,1 -"1871",802,1,2,2,3,1,0,-12,1,-9.9,-0.6,1 -"1872",802,1,3,3,6,3,0,-12,1,-9.9,-0.6,1 -"1873",802,1,4,6,6.5,0.5,0,-12,1,-9.9,-0.6,1 -"1874",802,1,5,6.5,8,1.5,0,-12,1,-9.9,-0.6,1 -"1875",802,1,6,8,10,2,0,-12,1,-9.9,-0.6,1 -"1876",803,1,1,0,2,2,0,-18,0,-0.899999999999999,-0.300000000000001,-8 -"1877",803,1,2,2,3,1,0,-18,0,-0.899999999999999,-0.300000000000001,-8 -"1878",803,1,3,3,3.52159235523495,0.521592355234951,0,-18,0,-0.899999999999999,-0.300000000000001,-8 -"1879",804,1,1,0,0.0101553228992862,0.0101553228992862,1,-29,0,9.2,0.600000000000001,3 -"1880",805,1,1,0,2,2,0,-13,0,-4.7,-0.9,1 -"1881",805,1,2,2,2.26012861351519,0.260128613515192,0,-13,0,-4.7,-0.9,1 -"1882",806,1,1,0,0.0553404218744639,0.0553404218744639,0,-8,0,3.6,-0.5,1 -"1883",807,1,1,0,0.100245592671707,0.100245592671707,1,5,0,-1.2,0.800000000000001,1 -"1884",808,1,1,0,1.25424790246313,1.25424790246313,1,20,1,2.2,-1,1 -"1885",809,1,1,0,2,2,0,19,1,-1.2,-1.1,4 -"1886",809,1,2,2,3,1,0,19,1,-1.2,-1.1,4 -"1887",809,1,3,3,3.00125444934778,0.00125444934778113,0,19,1,-1.2,-1.1,4 -"1888",810,1,1,0,1.02751733705597,1.02751733705597,1,28,1,9.8,0,-4 -"1889",811,1,1,0,2,2,0,-4,0,1.9,-0.4,-1 -"1890",811,1,2,2,3,1,0,-4,0,1.9,-0.4,-1 -"1891",811,1,3,3,6,3,0,-4,0,1.9,-0.4,-1 -"1892",811,1,4,6,6.5,0.5,0,-4,0,1.9,-0.4,-1 -"1893",811,1,5,6.5,8,1.5,0,-4,0,1.9,-0.4,-1 -"1894",811,1,6,8,8.16195576042667,0.161955760426668,1,-4,0,1.9,-0.4,-1 -"1895",812,1,1,0,1.04579689883906,1.04579689883906,1,-5,1,3.3,0.300000000000001,0 -"1896",813,1,1,0,0.605693006372553,0.605693006372553,1,16,0,-3.7,0,1 -"1897",814,1,1,0,2,2,0,-15,0,-4.3,0.699999999999999,-8 -"1898",814,1,2,2,3,1,0,-15,0,-4.3,0.699999999999999,-8 -"1899",814,1,3,3,6,3,0,-15,0,-4.3,0.699999999999999,-8 -"1900",814,1,4,6,6.5,0.5,0,-15,0,-4.3,0.699999999999999,-8 -"1901",814,1,5,6.5,8,1.5,0,-15,0,-4.3,0.699999999999999,-8 -"1902",814,1,6,8,8.0814036606802,0.0814036606802015,1,-15,0,-4.3,0.699999999999999,-8 -"1903",815,1,1,0,1.73383686961099,1.73383686961099,0,-28,1,-3.2,-1.3,6 -"1904",816,1,1,0,1.07416030843822,1.07416030843822,1,2,1,4.3,-1.1,2 -"1905",817,1,1,0,1.04225954670986,1.04225954670986,1,10,0,4.3,-0.300000000000001,-1 -"1906",818,1,1,0,0.751769969293418,0.751769969293418,1,-9,1,-6.5,1,1 -"1907",819,1,1,0,0.0604281495499123,0.0604281495499123,1,-24,1,-0.899999999999999,1.2,9 -"1908",820,1,1,0,1.14501922469656,1.14501922469656,0,22,1,0.200000000000003,0.199999999999999,-3 -"1909",821,1,1,0,1.97097176629128,1.97097176629128,0,-12,1,-2.9,-1.6,2 -"1910",822,1,1,0,1.66056171614532,1.66056171614532,1,-7,1,3.8,0,3 -"1911",823,1,1,0,1.06901547383335,1.06901547383335,1,41,0,-0.299999999999997,-0.0999999999999996,-1 -"1912",824,1,1,0,1.40207771422648,1.40207771422648,1,22,1,-2,-0.4,-7 -"1913",825,1,1,0,2,2,0,7,1,4.4,-0.300000000000001,3 -"1914",825,1,2,2,3,1,0,7,1,4.4,-0.300000000000001,3 -"1915",825,1,3,3,6,3,0,7,1,4.4,-0.300000000000001,3 -"1916",825,1,4,6,6.5,0.5,0,7,1,4.4,-0.300000000000001,3 -"1917",825,1,5,6.5,6.8366195468507,0.336619546850696,1,7,1,4.4,-0.300000000000001,3 -"1918",826,1,1,0,2,2,0,-16,1,-9.4,0.399999999999999,-7 -"1919",826,1,2,2,3,1,0,-16,1,-9.4,0.399999999999999,-7 -"1920",826,1,3,3,6,3,0,-16,1,-9.4,0.399999999999999,-7 -"1921",826,1,4,6,6.5,0.5,0,-16,1,-9.4,0.399999999999999,-7 -"1922",826,1,5,6.5,8,1.5,0,-16,1,-9.4,0.399999999999999,-7 -"1923",826,1,6,8,10,2,0,-16,1,-9.4,0.399999999999999,-7 -"1924",827,1,1,0,0.829171675630732,0.829171675630732,1,37,0,0.700000000000003,-0.199999999999999,0 -"1925",828,1,1,0,0.196447324339139,0.196447324339139,1,8,0,1.2,-0.199999999999999,5 -"1926",829,1,1,0,2,2,0,-10,1,3.7,0.199999999999999,3 -"1927",829,1,2,2,3,1,0,-10,1,3.7,0.199999999999999,3 -"1928",829,1,3,3,4.55504898130499,1.55504898130499,0,-10,1,3.7,0.199999999999999,3 -"1929",830,1,1,0,1.08294071757677,1.08294071757677,1,13,1,-4.4,-2,3 -"1930",831,1,1,0,0.387072992105301,0.387072992105301,1,24,0,1.9,-0.699999999999999,1 -"1931",832,1,1,0,0.887685744931813,0.887685744931813,1,18,1,0.5,-0.6,-2 -"1932",833,1,1,0,0.417964745341582,0.417964745341582,1,-19,1,1.8,1.5,2 -"1933",834,1,1,0,0.0104060710282795,0.0104060710282795,1,20,0,0.100000000000001,0.600000000000001,0 -"1934",835,1,1,0,1.55359901956636,1.55359901956636,1,3,0,3.1,0.199999999999999,-3 -"1935",836,1,1,0,2,2,0,-9,0,-2.8,-1,-7 -"1936",836,1,2,2,3,1,0,-9,0,-2.8,-1,-7 -"1937",836,1,3,3,6,3,0,-9,0,-2.8,-1,-7 -"1938",836,1,4,6,6.5,0.5,0,-9,0,-2.8,-1,-7 -"1939",836,1,5,6.5,8,1.5,0,-9,0,-2.8,-1,-7 -"1940",836,1,6,8,8.35878244016583,0.358782440165829,0,-9,0,-2.8,-1,-7 -"1941",837,1,1,0,2,2,0,9,1,5.6,-0.0999999999999996,-2 -"1942",837,1,2,2,3,1,0,9,1,5.6,-0.0999999999999996,-2 -"1943",837,1,3,3,3.13035661062246,0.130356610622461,1,9,1,5.6,-0.0999999999999996,-2 -"1944",838,1,1,0,0.418528019581061,0.418528019581061,1,53,0,5.5,0.699999999999999,-1 -"1945",839,1,1,0,2,2,0,-11,1,4.5,-1.1,-4 -"1946",839,1,2,2,3,1,0,-11,1,4.5,-1.1,-4 -"1947",839,1,3,3,3.25933439775399,0.259334397753992,0,-11,1,4.5,-1.1,-4 -"1948",840,1,1,0,1.23497467032302,1.23497467032302,1,15,0,1.2,0.399999999999999,6 -"1949",841,1,1,0,2,2,0,2,1,-3.9,0.399999999999999,1 -"1950",841,1,2,2,2.2804571790859,0.280457179085903,1,2,1,-3.9,0.399999999999999,1 -"1951",842,1,1,0,1.79255107988114,1.79255107988114,0,-12,0,-5.7,0,4 -"1952",843,1,1,0,2,2,0,-2,1,5.1,-0.5,-6 -"1953",843,1,2,2,3,1,0,-2,1,5.1,-0.5,-6 -"1954",843,1,3,3,6,3,0,-2,1,5.1,-0.5,-6 -"1955",843,1,4,6,6.5,0.5,0,-2,1,5.1,-0.5,-6 -"1956",843,1,5,6.5,8,1.5,0,-2,1,5.1,-0.5,-6 -"1957",843,1,6,8,10,2,0,-2,1,5.1,-0.5,-6 -"1958",844,1,1,0,2,2,0,34,1,-2.2,-0.199999999999999,-1 -"1959",844,1,2,2,3,1,0,34,1,-2.2,-0.199999999999999,-1 -"1960",844,1,3,3,3.67972435244188,0.679724352441885,1,34,1,-2.2,-0.199999999999999,-1 -"1961",845,1,1,0,2,2,0,11,1,3.5,-1.4,-1 -"1962",845,1,2,2,3,1,0,11,1,3.5,-1.4,-1 -"1963",845,1,3,3,6,3,0,11,1,3.5,-1.4,-1 -"1964",845,1,4,6,6.5,0.5,0,11,1,3.5,-1.4,-1 -"1965",845,1,5,6.5,8,1.5,0,11,1,3.5,-1.4,-1 -"1966",845,1,6,8,9.34150942852559,1.34150942852559,1,11,1,3.5,-1.4,-1 -"1967",846,1,1,0,2,2,0,-10,1,-1.7,0.199999999999999,1 -"1968",846,1,2,2,3,1,0,-10,1,-1.7,0.199999999999999,1 -"1969",846,1,3,3,5.97247109461427,2.97247109461427,0,-10,1,-1.7,0.199999999999999,1 -"1970",847,1,1,0,0.800235021849941,0.800235021849941,0,11,1,2.4,-0.199999999999999,-1 -"1971",848,1,1,0,2,2,0,6,1,-2.5,-0.699999999999999,-2 -"1972",848,1,2,2,3,1,0,6,1,-2.5,-0.699999999999999,-2 -"1973",848,1,3,3,6,3,0,6,1,-2.5,-0.699999999999999,-2 -"1974",848,1,4,6,6.5,0.5,0,6,1,-2.5,-0.699999999999999,-2 -"1975",848,1,5,6.5,7.02827339718845,0.52827339718845,0,6,1,-2.5,-0.699999999999999,-2 -"1976",849,1,1,0,0.546571622040351,0.546571622040351,1,-2,,2.9,0.399999999999999,-9 -"1977",850,1,1,0,1.71125287948671,1.71125287948671,0,-14,1,-8.3,0.199999999999999,-2 -"1978",851,1,1,0,2,2,0,-1,1,-1.9,0.399999999999999,-3 -"1979",851,1,2,2,3,1,0,-1,1,-1.9,0.399999999999999,-3 -"1980",851,1,3,3,5.13798442362939,2.13798442362939,0,-1,1,-1.9,0.399999999999999,-3 -"1981",852,1,1,0,2,2,0,7,0,3.9,0.100000000000001,-1 -"1982",852,1,2,2,3,1,0,7,0,3.9,0.100000000000001,-1 -"1983",852,1,3,3,6,3,0,7,0,3.9,0.100000000000001,-1 -"1984",852,1,4,6,6.5,0.5,0,7,0,3.9,0.100000000000001,-1 -"1985",852,1,5,6.5,7.23283277525419,0.732832775254188,0,7,0,3.9,0.100000000000001,-1 -"1986",853,1,1,0,1.40976966052782,1.40976966052782,0,16,1,5,-2.2,4 -"1987",854,1,1,0,0.424235858109045,0.424235858109045,0,-7,1,7.7,-1,5 -"1988",855,1,1,0,0.806842596627783,0.806842596627783,0,-17,0,0.5,0.100000000000001,0 -"1989",856,1,1,0,2,2,0,7,1,6.6,-0.6,-5 -"1990",856,1,2,2,3,1,0,7,1,6.6,-0.6,-5 -"1991",856,1,3,3,3.36258589478359,0.362585894783586,0,7,1,6.6,-0.6,-5 -"1992",857,1,1,0,2,2,0,4,1,-8.6,-0.5,2 -"1993",857,1,2,2,3,1,0,4,1,-8.6,-0.5,2 -"1994",857,1,3,3,6,3,0,4,1,-8.6,-0.5,2 -"1995",857,1,4,6,6.5,0.5,0,4,1,-8.6,-0.5,2 -"1996",857,1,5,6.5,8,1.5,0,4,1,-8.6,-0.5,2 -"1997",857,1,6,8,10,2,0,4,1,-8.6,-0.5,2 -"1998",858,1,1,0,2,2,0,-5,0,-4.7,-0.0999999999999996,-8 -"1999",858,1,2,2,2.2779548465284,0.277954846528401,1,-5,0,-4.7,-0.0999999999999996,-8 -"2000",859,1,1,0,2,2,0,-5,0,-2.1,-0.0999999999999996,-4 -"2001",859,1,2,2,3,1,0,-5,0,-2.1,-0.0999999999999996,-4 -"2002",859,1,3,3,5.89528742380646,2.89528742380646,0,-5,0,-2.1,-0.0999999999999996,-4 -"2003",860,1,1,0,2,2,0,4,1,-0.200000000000003,0,2 -"2004",860,1,2,2,3,1,0,4,1,-0.200000000000003,0,2 -"2005",860,1,3,3,4.06610262596662,1.06610262596662,0,4,1,-0.200000000000003,0,2 -"2006",861,1,1,0,2,2,0,-27,0,4.6,-0.5,-3 -"2007",861,1,2,2,3,1,0,-27,0,4.6,-0.5,-3 -"2008",861,1,3,3,3.09324881401695,0.0932488140169453,0,-27,0,4.6,-0.5,-3 -"2009",862,1,1,,,,,6,0,8.3,0.399999999999999,-6 -"2010",862,1,2,,,,,6,0,8.3,0.399999999999999,-6 -"2011",863,1,1,0,2,2,0,-13,1,2,-0.300000000000001,-4 -"2012",863,1,2,2,3,1,0,-13,1,2,-0.300000000000001,-4 -"2013",863,1,3,3,6,3,0,-13,1,2,-0.300000000000001,-4 -"2014",863,1,4,6,6.5,0.5,0,-13,1,2,-0.300000000000001,-4 -"2015",863,1,5,6.5,8,1.5,0,-13,1,2,-0.300000000000001,-4 -"2016",863,1,6,8,10,2,0,-13,1,2,-0.300000000000001,-4 -"2017",864,1,1,0,0.117096306554577,0.117096306554577,1,-16,0,,0.399999999999999,-3 -"2018",865,1,1,0,2,2,0,-23,1,1.8,0.600000000000001,4 -"2019",865,1,2,2,3,1,0,-23,1,1.8,0.600000000000001,4 -"2020",865,1,3,3,4.91763991621652,1.91763991621652,0,-23,1,1.8,0.600000000000001,4 -"2021",866,1,1,0,0.0865712929157002,0.0865712929157002,1,-7,0,-0.700000000000003,-0.6,3 -"2022",867,1,1,0,2,2,0,-11,1,1,-1.9,9 -"2023",867,1,2,2,3,1,0,-11,1,1,-1.9,9 -"2024",867,1,3,3,3.58593672445289,0.58593672445289,1,-11,1,1,-1.9,9 -"2025",868,1,1,0,2,2,0,-17,1,0.5,0.300000000000001,2 -"2026",868,1,2,2,2.92644948240016,0.92644948240016,1,-17,1,0.5,0.300000000000001,2 -"2027",869,1,1,0,2,2,0,7,1,-2.1,0.199999999999999,-3 -"2028",869,1,2,2,3,1,0,7,1,-2.1,0.199999999999999,-3 -"2029",869,1,3,3,6,3,0,7,1,-2.1,0.199999999999999,-3 -"2030",869,1,4,6,6.27035999971258,0.270359999712577,1,7,1,-2.1,0.199999999999999,-3 -"2031",870,1,1,0,0.0381896395984927,0.0381896395984927,0,-4,0,0,0,-2 -"2032",871,1,1,0,0.420369086857443,0.420369086857443,1,-14,0,-2.9,0,0 -"2033",872,1,1,0,1.00630648698041,1.00630648698041,0,4,1,-2.3,-1.2,-2 -"2034",873,1,1,0,0.499033502563504,0.499033502563504,1,-12,0,3.4,0,9 -"2035",874,1,1,0,0.17751162674026,0.17751162674026,1,-6,0,-4.1,1.3,-1 -"2036",875,1,1,0,2,2,0,1,1,-3.7,-0.199999999999999,0 -"2037",875,1,2,2,2.1278077853883,0.127807785388295,0,1,1,-3.7,-0.199999999999999,0 -"2038",876,1,1,0,1.38049888915159,1.38049888915159,0,2,1,4.3,0.699999999999999,-4 -"2039",877,1,1,0,2,2,0,-18,1,-4.2,-0.6,-1 -"2040",877,1,2,2,3,1,0,-18,1,-4.2,-0.6,-1 -"2041",877,1,3,3,5.25318264662072,2.25318264662072,0,-18,1,-4.2,-0.6,-1 -"2042",878,1,1,0,1.56212073038279,1.56212073038279,1,9,0,0.5,1.4,0 -"2043",879,1,1,0,1.09384041693121,1.09384041693121,0,17,1,-5.7,1.5,3 -"2044",880,1,1,0,0.351520097205366,0.351520097205366,1,8,1,-1.9,1.6,6 -"2045",881,1,1,0,2,2,0,16,0,-2.7,-2,-2 -"2046",881,1,2,2,3,1,0,16,0,-2.7,-2,-2 -"2047",881,1,3,3,6,3,0,16,0,-2.7,-2,-2 -"2048",881,1,4,6,6.5,0.5,0,16,0,-2.7,-2,-2 -"2049",881,1,5,6.5,6.90906998861868,0.409069988618678,1,16,0,-2.7,-2,-2 -"2050",882,1,1,0,2,2,0,-16,0,2.5,-0.800000000000001,-3 -"2051",882,1,2,2,3,1,0,-16,0,2.5,-0.800000000000001,-3 -"2052",882,1,3,3,6,3,0,-16,0,2.5,-0.800000000000001,-3 -"2053",882,1,4,6,6.5,0.5,0,-16,0,2.5,-0.800000000000001,-3 -"2054",882,1,5,6.5,8,1.5,0,-16,0,2.5,-0.800000000000001,-3 -"2055",882,1,6,8,8.62412018880662,0.624120188806619,1,-16,0,2.5,-0.800000000000001,-3 -"2056",883,1,1,0,1.2311929520738,1.2311929520738,1,-9,1,-1.5,0.5,8 -"2057",884,1,1,0,0.0779297803811551,0.0779297803811551,1,11,0,6.4,2.3,4 -"2058",885,1,1,0,2,2,0,2,0,-9.1,-0.6,6 -"2059",885,1,2,2,2.93173386526063,0.931733865260631,0,2,0,-9.1,-0.6,6 -"2060",886,1,1,0,0.120900030160022,0.120900030160022,1,41,1,-1,0.399999999999999,1 diff --git a/tests/testthat/data_files/SURVIVAL/EXPAND_MISSING/expand_missing_study2.csv b/tests/testthat/data_files/SURVIVAL/EXPAND_MISSING/expand_missing_study2.csv deleted file mode 100644 index 675b6c0c..00000000 --- a/tests/testthat/data_files/SURVIVAL/EXPAND_MISSING/expand_missing_study2.csv +++ /dev/null @@ -1,1641 +0,0 @@ -"","id","study.id","time.id","starttime","endtime","survtime","cens","age.60","female","noise.56","pm10.16","bmi.26" -"1",887,2,1,0,0.196300917262276,0.196300917262276,0,24,1,5.8,-1,1 -"2",888,2,1,0,0.542430636927564,0.542430636927564,1,18,0,2.7,1.1,5 -"3",889,2,1,0,0.546026255780797,0.546026255780797,1,-5,,6.6,0.199999999999999,-1 -"4",890,2,1,0,1.73248204329244,1.73248204329244,1,-2,0,-5.6,1.9,2 -"5",891,2,1,0,2,2,0,-23,1,0.799999999999997,-2.4,3 -"6",891,2,2,2,3,1,0,-23,1,0.799999999999997,-2.4,3 -"7",891,2,3,3,6,3,0,-23,1,0.799999999999997,-2.4,3 -"8",891,2,4,6,6.5,0.5,0,-23,1,0.799999999999997,-2.4,3 -"9",891,2,5,6.5,7.06817637560529,0.568176375605294,0,-23,1,0.799999999999997,-2.4,3 -"10",892,2,1,0,2,2,0,-4,0,-3.4,-1.9,-3 -"11",892,2,2,2,3,1,0,-4,0,-3.4,-1.9,-3 -"12",892,2,3,3,3.24335713246977,0.243357132469767,0,-4,0,-3.4,-1.9,-3 -"13",893,2,1,0,2,2,0,-16,0,0,0.699999999999999,1 -"14",893,2,2,2,3,1,0,-16,0,0,0.699999999999999,1 -"15",893,2,3,3,6,3,0,-16,0,0,0.699999999999999,1 -"16",893,2,4,6,6.5,0.5,0,-16,0,0,0.699999999999999,1 -"17",893,2,5,6.5,8,1.5,0,-16,0,0,0.699999999999999,1 -"18",893,2,6,8,10,2,0,-16,0,0,0.699999999999999,1 -"19",894,2,1,0,0.576974129098982,0.576974129098982,1,-6,1,-0.899999999999999,0.699999999999999,3 -"20",895,2,1,0,2,2,0,-6,0,3.4,0.699999999999999,4 -"21",895,2,2,2,3,1,0,-6,0,3.4,0.699999999999999,4 -"22",895,2,3,3,6,3,0,-6,0,3.4,0.699999999999999,4 -"23",895,2,4,6,6.43918335774491,0.43918335774491,1,-6,0,3.4,0.699999999999999,4 -"24",896,2,1,0,1.21680835264623,1.21680835264623,0,-10,1,1.8,0.699999999999999,-1 -"25",897,2,1,0,0.274686461135159,0.274686461135159,1,-5,0,-0.700000000000003,-0.199999999999999,0 -"26",898,2,1,0,2,2,0,-6,1,-1.5,-0.5,-1 -"27",898,2,2,2,3,1,0,-6,1,-1.5,-0.5,-1 -"28",898,2,3,3,6,3,0,-6,1,-1.5,-0.5,-1 -"29",898,2,4,6,6.5,0.5,0,-6,1,-1.5,-0.5,-1 -"30",898,2,5,6.5,8,1.5,0,-6,1,-1.5,-0.5,-1 -"31",898,2,6,8,8.16296572756398,0.162965727563982,1,-6,1,-1.5,-0.5,-1 -"32",899,2,1,0,2,2,0,6,0,-0.299999999999997,-0.300000000000001,5 -"33",899,2,2,2,3,1,0,6,0,-0.299999999999997,-0.300000000000001,5 -"34",899,2,3,3,6,3,0,6,0,-0.299999999999997,-0.300000000000001,5 -"35",899,2,4,6,6.5,0.5,0,6,0,-0.299999999999997,-0.300000000000001,5 -"36",899,2,5,6.5,6.53055155381138,0.0305515538113776,1,6,0,-0.299999999999997,-0.300000000000001,5 -"37",900,2,1,0,0.161696477043842,0.161696477043842,1,8,1,-2.5,0.699999999999999,4 -"38",901,2,1,0,2,2,0,-19,1,,-2.1,-8 -"39",901,2,2,2,3,1,0,-19,1,,-2.1,-8 -"40",901,2,3,3,6,3,0,-19,1,,-2.1,-8 -"41",901,2,4,6,6.5,0.5,0,-19,1,,-2.1,-8 -"42",901,2,5,6.5,8,1.5,0,-19,1,,-2.1,-8 -"43",901,2,6,8,8.26124088795664,0.261240887956636,0,-19,1,,-2.1,-8 -"44",902,2,1,0,2,2,0,25,1,-0.100000000000001,1.2,-2 -"45",902,2,2,2,2.36345797543954,0.36345797543954,1,25,1,-0.100000000000001,1.2,-2 -"46",903,2,1,0,1.6849118023863,1.6849118023863,1,-20,1,-0.100000000000001,1.2,2 -"47",904,2,1,0,2,2,0,3,1,,0,-4 -"48",904,2,2,2,2.64314961428299,0.64314961428299,0,3,1,,0,-4 -"49",905,2,1,0,0.36888075230752,0.36888075230752,0,-16,0,4.8,1.5,0 -"50",906,2,1,0,1.43840951236455,1.43840951236455,1,-1,1,-7.9,0.399999999999999,-7 -"51",907,2,1,0,0.141395710992472,0.141395710992472,0,22,1,1.1,0.199999999999999,-5 -"52",908,2,1,0,1.97134104828504,1.97134104828504,1,-4,0,2.9,1.1,-2 -"53",909,2,1,0,2,2,0,-4,1,3.3,0.699999999999999,2 -"54",909,2,2,2,3,1,0,-4,1,3.3,0.699999999999999,2 -"55",909,2,3,3,6,3,0,-4,1,3.3,0.699999999999999,2 -"56",909,2,4,6,6.5,0.5,0,-4,1,3.3,0.699999999999999,2 -"57",909,2,5,6.5,8,1.5,0,-4,1,3.3,0.699999999999999,2 -"58",909,2,6,8,10,2,0,-4,1,3.3,0.699999999999999,2 -"59",910,2,1,0,0.490036672718431,0.490036672718431,0,14,0,2.4,0.5,-2 -"60",911,2,1,0,2,2,0,2,1,1.2,1.4,-3 -"61",911,2,2,2,3,1,0,2,1,1.2,1.4,-3 -"62",911,2,3,3,6,3,0,2,1,1.2,1.4,-3 -"63",911,2,4,6,6.46373566521385,0.463735665213851,1,2,1,1.2,1.4,-3 -"64",912,2,1,0,2,2,0,-15,0,6,-1.5,5 -"65",912,2,2,2,3,1,0,-15,0,6,-1.5,5 -"66",912,2,3,3,5.55621451443384,2.55621451443384,0,-15,0,6,-1.5,5 -"67",913,2,1,0,0.110935226766834,0.110935226766834,1,-13,0,11.1,-0.6,-1 -"68",914,2,1,0,1.04868381378825,1.04868381378825,0,10,1,0.600000000000001,-0.0999999999999996,-6 -"69",915,2,1,0,0.998537590815521,0.998537590815521,1,-4,0,0.700000000000003,1.4,0 -"70",916,2,1,0,0.113795045365363,0.113795045365363,1,0,0,4.1,-0.4,8 -"71",917,2,1,0,2,2,0,-17,0,1,0,0 -"72",917,2,2,2,2.50133916110806,0.501339161108064,1,-17,0,1,0,0 -"73",918,2,1,0,2,2,0,-11,1,2,-1.6,-4 -"74",918,2,2,2,3,1,0,-11,1,2,-1.6,-4 -"75",918,2,3,3,5.50400741284981,2.50400741284981,0,-11,1,2,-1.6,-4 -"76",919,2,1,0,0.674815265299786,0.674815265299786,1,-6,0,-0.5,-1.1,-1 -"77",920,2,1,0,0.157868092098923,0.157868092098923,1,20,0,1.1,2.3,2 -"78",921,2,1,0,2,2,0,-1,1,-3.3,-1,-3 -"79",921,2,2,2,3,1,0,-1,1,-3.3,-1,-3 -"80",921,2,3,3,6,3,0,-1,1,-3.3,-1,-3 -"81",921,2,4,6,6.5,0.5,0,-1,1,-3.3,-1,-3 -"82",921,2,5,6.5,7.3113400829634,0.811340082963396,0,-1,1,-3.3,-1,-3 -"83",922,2,1,0,2,2,0,9,1,-2.5,,-9 -"84",922,2,2,2,3,1,0,9,1,-2.5,,-9 -"85",922,2,3,3,6,3,0,9,1,-2.5,,-9 -"86",922,2,4,6,6.5,0.5,0,9,1,-2.5,,-9 -"87",922,2,5,6.5,8,1.5,0,9,1,-2.5,,-9 -"88",922,2,6,8,10,2,0,9,1,-2.5,,-9 -"89",923,2,1,0,2,2,0,-1,1,5.2,0.399999999999999,-2 -"90",923,2,2,2,3,1,0,-1,1,5.2,0.399999999999999,-2 -"91",923,2,3,3,6,3,0,-1,1,5.2,0.399999999999999,-2 -"92",923,2,4,6,6.5,0.5,0,-1,1,5.2,0.399999999999999,-2 -"93",923,2,5,6.5,8,1.5,0,-1,1,5.2,0.399999999999999,-2 -"94",923,2,6,8,10,2,0,-1,1,5.2,0.399999999999999,-2 -"95",924,2,1,0,0.161299893680113,0.161299893680113,1,7,0,0,0.699999999999999,5 -"96",925,2,1,0,0.137341217402648,0.137341217402648,1,-2,1,-10,2,3 -"97",926,2,1,0,0.21918319439046,0.21918319439046,1,25,1,-6.4,-0.5,6 -"98",927,2,1,0,2,2,0,-26,1,0,-1.4,-6 -"99",927,2,2,2,3,1,0,-26,1,0,-1.4,-6 -"100",927,2,3,3,6,3,0,-26,1,0,-1.4,-6 -"101",927,2,4,6,6.5,0.5,0,-26,1,0,-1.4,-6 -"102",927,2,5,6.5,8,1.5,0,-26,1,0,-1.4,-6 -"103",927,2,6,8,10,2,0,-26,1,0,-1.4,-6 -"104",928,2,1,0,2,2,0,4,0,4.3,-1.1,0 -"105",928,2,2,2,3,1,0,4,0,4.3,-1.1,0 -"106",928,2,3,3,6,3,0,4,0,4.3,-1.1,0 -"107",928,2,4,6,6.5,0.5,0,4,0,4.3,-1.1,0 -"108",928,2,5,6.5,8,1.5,0,4,0,4.3,-1.1,0 -"109",928,2,6,8,8.55513384009718,0.555133840097179,0,4,0,4.3,-1.1,0 -"110",929,2,1,0,2,2,0,-7,1,-6.2,-1.1,1 -"111",929,2,2,2,3,1,0,-7,1,-6.2,-1.1,1 -"112",929,2,3,3,6,3,0,-7,1,-6.2,-1.1,1 -"113",929,2,4,6,6.5,0.5,0,-7,1,-6.2,-1.1,1 -"114",929,2,5,6.5,8,1.5,0,-7,1,-6.2,-1.1,1 -"115",929,2,6,8,10,2,0,-7,1,-6.2,-1.1,1 -"116",930,2,1,0,2,2,0,-5,1,-3,0.399999999999999,8 -"117",930,2,2,2,3,1,0,-5,1,-3,0.399999999999999,8 -"118",930,2,3,3,6,3,0,-5,1,-3,0.399999999999999,8 -"119",930,2,4,6,6.5,0.5,0,-5,1,-3,0.399999999999999,8 -"120",930,2,5,6.5,8,1.5,0,-5,1,-3,0.399999999999999,8 -"121",930,2,6,8,9.61783127039721,1.61783127039721,0,-5,1,-3,0.399999999999999,8 -"122",931,2,1,0,2,2,0,-7,1,4.7,1.1,0 -"123",931,2,2,2,2.11831506970422,0.118315069704224,0,-7,1,4.7,1.1,0 -"124",932,2,1,0,2,2,0,,0,-1.1,0.199999999999999,7 -"125",932,2,2,2,3,1,0,,0,-1.1,0.199999999999999,7 -"126",932,2,3,3,3.10388040525932,0.103880405259323,0,,0,-1.1,0.199999999999999,7 -"127",933,2,1,0,2,2,0,8,1,-1.7,0.100000000000001,-3 -"128",933,2,2,2,3,1,0,8,1,-1.7,0.100000000000001,-3 -"129",933,2,3,3,6,3,0,8,1,-1.7,0.100000000000001,-3 -"130",933,2,4,6,6.5,0.5,0,8,1,-1.7,0.100000000000001,-3 -"131",933,2,5,6.5,8,1.5,0,8,1,-1.7,0.100000000000001,-3 -"132",933,2,6,8,10,2,0,8,1,-1.7,0.100000000000001,-3 -"133",934,2,1,0,0.736859145636794,0.736859145636794,1,13,1,-1.4,-0.9,6 -"134",935,2,1,0,0.661440496417457,0.661440496417457,0,0,1,7.7,-1.2,-10 -"135",936,2,1,0,1.26216488182418,1.26216488182418,1,15,0,-3.9,0,7 -"136",937,2,1,0,0.265544233088738,0.265544233088738,1,-22,1,-3.8,0.600000000000001,10 -"137",938,2,1,0,2,2,0,13,1,-2.1,0.300000000000001,-1 -"138",938,2,2,2,3,1,0,13,1,-2.1,0.300000000000001,-1 -"139",938,2,3,3,3.20356497014341,0.203564970143406,1,13,1,-2.1,0.300000000000001,-1 -"140",939,2,1,,,,,5,0,-5,0.100000000000001,-6 -"141",940,2,1,0,2,2,0,-26,0,0.200000000000003,0.199999999999999,1 -"142",940,2,2,2,2.0789481676279,0.0789481676278966,1,-26,0,0.200000000000003,0.199999999999999,1 -"143",941,2,1,0,1.94023445130689,1.94023445130689,1,24,0,2.7,1.6,-7 -"144",942,2,1,0,0.0115002888381714,0.0115002888381714,0,-25,1,7.1,0.100000000000001,0 -"145",943,2,1,0,2,2,0,8,0,-7.1,0.100000000000001,-8 -"146",943,2,2,2,3,1,0,8,0,-7.1,0.100000000000001,-8 -"147",943,2,3,3,6,3,0,8,0,-7.1,0.100000000000001,-8 -"148",943,2,4,6,6.5,0.5,0,8,0,-7.1,0.100000000000001,-8 -"149",943,2,5,6.5,8,1.5,0,8,0,-7.1,0.100000000000001,-8 -"150",943,2,6,8,10,2,0,8,0,-7.1,0.100000000000001,-8 -"151",944,2,1,0,2,2,0,-3,1,4.3,0.899999999999999,1 -"152",944,2,2,2,3,1,0,-3,1,4.3,0.899999999999999,1 -"153",944,2,3,3,3.28341182326079,0.283411823260789,0,-3,1,4.3,0.899999999999999,1 -"154",945,2,1,0,2,2,0,-18,1,2.5,-0.0999999999999996,-1 -"155",945,2,2,2,3,1,0,-18,1,2.5,-0.0999999999999996,-1 -"156",945,2,3,3,6,3,0,-18,1,2.5,-0.0999999999999996,-1 -"157",945,2,4,6,6.5,0.5,0,-18,1,2.5,-0.0999999999999996,-1 -"158",945,2,5,6.5,8,1.5,0,-18,1,2.5,-0.0999999999999996,-1 -"159",945,2,6,8,9.04164037575084,1.04164037575085,0,-18,1,2.5,-0.0999999999999996,-1 -"160",946,2,1,0,2,2,0,-10,1,2.1,-0.300000000000001,1 -"161",946,2,2,2,3,1,0,-10,1,2.1,-0.300000000000001,1 -"162",946,2,3,3,6,3,0,-10,1,2.1,-0.300000000000001,1 -"163",946,2,4,6,6.5,0.5,0,-10,1,2.1,-0.300000000000001,1 -"164",946,2,5,6.5,8,1.5,0,-10,1,2.1,-0.300000000000001,1 -"165",946,2,6,8,10,2,0,-10,1,2.1,-0.300000000000001,1 -"166",947,2,1,0,2,2,0,-15,1,-0.799999999999997,-1.4,6 -"167",947,2,2,2,3,1,0,-15,1,-0.799999999999997,-1.4,6 -"168",947,2,3,3,6,3,0,-15,1,-0.799999999999997,-1.4,6 -"169",947,2,4,6,6.5,0.5,0,-15,1,-0.799999999999997,-1.4,6 -"170",947,2,5,6.5,8,1.5,0,-15,1,-0.799999999999997,-1.4,6 -"171",947,2,6,8,10,2,0,-15,1,-0.799999999999997,-1.4,6 -"172",948,2,1,0,2,2,0,-18,1,0.899999999999999,-0.5,-7 -"173",948,2,2,2,3,1,0,-18,1,0.899999999999999,-0.5,-7 -"174",948,2,3,3,6,3,0,-18,1,0.899999999999999,-0.5,-7 -"175",948,2,4,6,6.5,0.5,0,-18,1,0.899999999999999,-0.5,-7 -"176",948,2,5,6.5,8,1.5,0,-18,1,0.899999999999999,-0.5,-7 -"177",948,2,6,8,8.38391419673494,0.38391419673494,0,-18,1,0.899999999999999,-0.5,-7 -"178",949,2,1,0,2,2,0,8,1,1.4,1.6,-10 -"179",949,2,2,2,2.11323692948241,0.113236929482413,1,8,1,1.4,1.6,-10 -"180",950,2,1,0,1.35309840129187,1.35309840129187,0,7,1,-1.9,0.800000000000001, -"181",951,2,1,0,1.60499118434201,1.60499118434201,1,-15,0,0.899999999999999,0.699999999999999,2 -"182",952,2,1,0,2,2,0,8,1,3.3,-1,3 -"183",952,2,2,2,3,1,0,8,1,3.3,-1,3 -"184",952,2,3,3,6,3,0,8,1,3.3,-1,3 -"185",952,2,4,6,6.5,0.5,0,8,1,3.3,-1,3 -"186",952,2,5,6.5,8,1.5,0,8,1,3.3,-1,3 -"187",952,2,6,8,10,2,0,8,1,3.3,-1,3 -"188",953,2,1,0,2,2,0,-28,1,3.1,0.600000000000001,-3 -"189",953,2,2,2,3,1,0,-28,1,3.1,0.600000000000001,-3 -"190",953,2,3,3,6,3,0,-28,1,3.1,0.600000000000001,-3 -"191",953,2,4,6,6.5,0.5,0,-28,1,3.1,0.600000000000001,-3 -"192",953,2,5,6.5,8,1.5,0,-28,1,3.1,0.600000000000001,-3 -"193",953,2,6,8,10,2,0,-28,1,3.1,0.600000000000001,-3 -"194",954,2,1,0,2,2,0,-19,0,-5.9,1.4,-2 -"195",954,2,2,2,3,1,0,-19,0,-5.9,1.4,-2 -"196",954,2,3,3,6,3,0,-19,0,-5.9,1.4,-2 -"197",954,2,4,6,6.01550338587866,0.0155033858786617,1,-19,0,-5.9,1.4,-2 -"198",955,2,1,0,0.816327965255323,0.816327965255323,1,8,1,-0.5,1.8,1 -"199",956,2,1,0,0.787083818277312,0.787083818277312,1,1,0,3.1,0.100000000000001,-9 -"200",957,2,1,0,2,2,0,-14,1,-2.2,-0.699999999999999, -"201",957,2,2,2,3,1,0,-14,1,-2.2,-0.699999999999999, -"202",957,2,3,3,6,3,0,-14,1,-2.2,-0.699999999999999, -"203",957,2,4,6,6.5,0.5,0,-14,1,-2.2,-0.699999999999999, -"204",957,2,5,6.5,7.15919811769744,0.659198117697437,0,-14,1,-2.2,-0.699999999999999, -"205",958,2,1,0,2,2,0,-15,1,0.399999999999999,0.300000000000001,-2 -"206",958,2,2,2,3,1,0,-15,1,0.399999999999999,0.300000000000001,-2 -"207",958,2,3,3,6,3,0,-15,1,0.399999999999999,0.300000000000001,-2 -"208",958,2,4,6,6.5,0.5,0,-15,1,0.399999999999999,0.300000000000001,-2 -"209",958,2,5,6.5,7.3103729849268,0.810372984926795,0,-15,1,0.399999999999999,0.300000000000001,-2 -"210",959,2,1,0,0.485846262346801,0.485846262346801,1,10,0,-2.7,3,2 -"211",960,2,1,0,2,2,0,-4,1,-7.8,-1.3,-3 -"212",960,2,2,2,3,1,0,-4,1,-7.8,-1.3,-3 -"213",960,2,3,3,6,3,0,-4,1,-7.8,-1.3,-3 -"214",960,2,4,6,6.5,0.5,0,-4,1,-7.8,-1.3,-3 -"215",960,2,5,6.5,7.77655810529436,1.27655810529437,0,-4,1,-7.8,-1.3,-3 -"216",961,2,1,0,2,2,0,11,1,3.3,0.699999999999999,-5 -"217",961,2,2,2,3,1,0,11,1,3.3,0.699999999999999,-5 -"218",961,2,3,3,3.33784482685513,0.337844826855126,0,11,1,3.3,0.699999999999999,-5 -"219",962,2,1,0,0.754164388006271,0.754164388006271,1,17,1,2.1,-0.199999999999999,4 -"220",963,2,1,0,0.252539031068838,0.252539031068838,1,25,1,5,0.699999999999999,3 -"221",964,2,1,0,2,2,0,-2,0,-7.1,-1,0 -"222",964,2,2,2,2.78995682789907,0.789956827899073,0,-2,0,-7.1,-1,0 -"223",965,2,1,0,0.161764793603214,0.161764793603214,0,4,,-1.2,0.300000000000001,-2 -"224",966,2,1,0,2,2,0,-26,1,-0.899999999999999,-0.300000000000001,-7 -"225",966,2,2,2,2.54827246075837,0.548272460758373,0,-26,1,-0.899999999999999,-0.300000000000001,-7 -"226",967,2,1,0,0.664088735355152,0.664088735355152,1,19,0,-0.899999999999999,-1,4 -"227",968,2,1,0,2,2,0,7,1,2.3,0,-2 -"228",968,2,2,2,3,1,0,7,1,2.3,0,-2 -"229",968,2,3,3,6,3,0,7,1,2.3,0,-2 -"230",968,2,4,6,6.5,0.5,0,7,1,2.3,0,-2 -"231",968,2,5,6.5,6.60232962360477,0.102329623604774,0,7,1,2.3,0,-2 -"232",969,2,1,0,2,2,0,-1,1,4.3,-1.3,1 -"233",969,2,2,2,3,1,0,-1,1,4.3,-1.3,1 -"234",969,2,3,3,6,3,0,-1,1,4.3,-1.3,1 -"235",969,2,4,6,6.5,0.5,0,-1,1,4.3,-1.3,1 -"236",969,2,5,6.5,8,1.5,0,-1,1,4.3,-1.3,1 -"237",969,2,6,8,10,2,0,-1,1,4.3,-1.3,1 -"238",970,2,1,0,2,2,0,-25,0,0.399999999999999,1.9,-1 -"239",970,2,2,2,3,1,0,-25,0,0.399999999999999,1.9,-1 -"240",970,2,3,3,4.05495052855999,1.05495052855999,0,-25,0,0.399999999999999,1.9,-1 -"241",971,2,1,0,2,2,0,-19,1,3.1,0.600000000000001,-1 -"242",971,2,2,2,3,1,0,-19,1,3.1,0.600000000000001,-1 -"243",971,2,3,3,6,3,0,-19,1,3.1,0.600000000000001,-1 -"244",971,2,4,6,6.5,0.5,0,-19,1,3.1,0.600000000000001,-1 -"245",971,2,5,6.5,8,1.5,0,-19,1,3.1,0.600000000000001,-1 -"246",971,2,6,8,10,2,0,-19,1,3.1,0.600000000000001,-1 -"247",972,2,1,0,0.60374613063173,0.60374613063173,1,32,1,4.6,-0.300000000000001,-12 -"248",973,2,1,0,1.5198730422255,1.5198730422255,0,-18,0,-4.7,-0.0999999999999996,3 -"249",974,2,1,0,1.63982553001412,1.63982553001412,1,-8,0,12.6,0.199999999999999,-4 -"250",975,2,1,0,2,2,0,3,1,1.8,1.3,-2 -"251",975,2,2,2,3,1,0,3,1,1.8,1.3,-2 -"252",975,2,3,3,6,3,0,3,1,1.8,1.3,-2 -"253",975,2,4,6,6.5,0.5,0,3,1,1.8,1.3,-2 -"254",975,2,5,6.5,7.86608700945942,1.36608700945942,1,3,1,1.8,1.3,-2 -"255",976,2,1,0,2,2,0,-9,1,2.8,-1.5,-4 -"256",976,2,2,2,2.32079078304805,0.320790783048048,0,-9,1,2.8,-1.5,-4 -"257",977,2,1,0,0.395910137183964,0.395910137183964,1,0,1,-1.1,1.2,8 -"258",978,2,1,0,2,2,0,-4,1,-2.6,-1,1 -"259",978,2,2,2,3,1,0,-4,1,-2.6,-1,1 -"260",978,2,3,3,6,3,0,-4,1,-2.6,-1,1 -"261",978,2,4,6,6.5,0.5,0,-4,1,-2.6,-1,1 -"262",978,2,5,6.5,8,1.5,0,-4,1,-2.6,-1,1 -"263",978,2,6,8,10,2,0,-4,1,-2.6,-1,1 -"264",979,2,1,0,0.351445283400222,0.351445283400222,1,18,1,6.1,0.300000000000001,-2 -"265",980,2,1,0,0.740716033294314,0.740716033294314,0,6,0,4.9,0.5,-2 -"266",981,2,1,0,1.52437698555023,1.52437698555023,1,5,0,-4.2,-0.800000000000001,9 -"267",982,2,1,0,2,2,0,-10,1,-3.2,-1.3,-3 -"268",982,2,2,2,2.8468336907613,0.846833690761298,0,-10,1,-3.2,-1.3,-3 -"269",983,2,1,0,2,2,0,13,1,2.3,0,-6 -"270",983,2,2,2,2.05410037708602,0.0541003770860204,0,13,1,2.3,0,-6 -"271",984,2,1,0,0.347924948996205,0.347924948996205,0,8,1,-2.7,-1.1,2 -"272",985,2,1,0,2,2,0,-21,1,-0.600000000000001,-1.2,-2 -"273",985,2,2,2,3,1,0,-21,1,-0.600000000000001,-1.2,-2 -"274",985,2,3,3,6,3,0,-21,1,-0.600000000000001,-1.2,-2 -"275",985,2,4,6,6.5,0.5,0,-21,1,-0.600000000000001,-1.2,-2 -"276",985,2,5,6.5,8,1.5,0,-21,1,-0.600000000000001,-1.2,-2 -"277",985,2,6,8,10,2,0,-21,1,-0.600000000000001,-1.2,-2 -"278",986,2,1,0,1.41513317659756,1.41513317659756,0,9,1,-6.7,-0.5,-5 -"279",987,2,1,0,2,2,0,-5,0,-0.799999999999997,0.199999999999999,-5 -"280",987,2,2,2,2.73796346176639,0.737963461766389,0,-5,0,-0.799999999999997,0.199999999999999,-5 -"281",988,2,1,0,0.126983597429868,0.126983597429868,0,0,0,8.90000000000001,2,4 -"282",989,2,1,0,2,2,0,-2,1,1.2,-2.5,-8 -"283",989,2,2,2,3,1,0,-2,1,1.2,-2.5,-8 -"284",989,2,3,3,6,3,0,-2,1,1.2,-2.5,-8 -"285",989,2,4,6,6.5,0.5,0,-2,1,1.2,-2.5,-8 -"286",989,2,5,6.5,8,1.5,0,-2,1,1.2,-2.5,-8 -"287",989,2,6,8,8.41897573912199,0.418975739121987,0,-2,1,1.2,-2.5,-8 -"288",990,2,1,0,2,2,0,10,1,-6.6,0.699999999999999,-6 -"289",990,2,2,2,3,1,0,10,1,-6.6,0.699999999999999,-6 -"290",990,2,3,3,5.46829936133787,2.46829936133787,0,10,1,-6.6,0.699999999999999,-6 -"291",991,2,1,0,0.298752516185271,0.298752516185271,0,-9,1,-1,0.399999999999999,-1 -"292",992,2,1,0,1.15137254013425,1.15137254013425,1,8,1,5.6,-0.800000000000001,-9 -"293",993,2,1,0,2,2,0,-17,0,0.799999999999997,0.100000000000001,0 -"294",993,2,2,2,2.66397237883728,0.663972378837276,1,-17,0,0.799999999999997,0.100000000000001,0 -"295",994,2,1,0,2,2,0,-7,1,-1.2,-1,-8 -"296",994,2,2,2,3,1,0,-7,1,-1.2,-1,-8 -"297",994,2,3,3,6,3,0,-7,1,-1.2,-1,-8 -"298",994,2,4,6,6.5,0.5,0,-7,1,-1.2,-1,-8 -"299",994,2,5,6.5,7.67564927745003,1.17564927745003,0,-7,1,-1.2,-1,-8 -"300",995,2,1,0,0.272805417595032,0.272805417595032,1,3,0,3.4,-0.199999999999999,2 -"301",996,2,1,0,2,2,0,18,1,5.7,-0.0999999999999996,4 -"302",996,2,2,2,3,1,0,18,1,5.7,-0.0999999999999996,4 -"303",996,2,3,3,4.14578603121954,1.14578603121954,0,18,1,5.7,-0.0999999999999996,4 -"304",997,2,1,0,1.93854354523188,1.93854354523188,1,6,0,-7.1,0.600000000000001,-5 -"305",998,2,1,0,2,2,0,12,1,7.6,-1.2,1 -"306",998,2,2,2,3,1,0,12,1,7.6,-1.2,1 -"307",998,2,3,3,6,3,0,12,1,7.6,-1.2,1 -"308",998,2,4,6,6.5,0.5,0,12,1,7.6,-1.2,1 -"309",998,2,5,6.5,8,1.5,0,12,1,7.6,-1.2,1 -"310",998,2,6,8,10,2,0,12,1,7.6,-1.2,1 -"311",999,2,1,0,2,2,0,-15,1,2.4,-1.2,-9 -"312",999,2,2,2,3,1,0,-15,1,2.4,-1.2,-9 -"313",999,2,3,3,6,3,0,-15,1,2.4,-1.2,-9 -"314",999,2,4,6,6.5,0.5,0,-15,1,2.4,-1.2,-9 -"315",999,2,5,6.5,7.68443730019822,1.18443730019822,0,-15,1,2.4,-1.2,-9 -"316",1000,2,1,0,2,2,0,-7,0,-1.7,-0.0999999999999996,-11 -"317",1000,2,2,2,3,1,0,-7,0,-1.7,-0.0999999999999996,-11 -"318",1000,2,3,3,5.58694205647581,2.58694205647581,0,-7,0,-1.7,-0.0999999999999996,-11 -"319",1001,2,1,0,0.999935259937979,0.999935259937979,1,41,1,-6.3,-0.6,2 -"320",1002,2,1,0,1.98582281445264,1.98582281445264,0,12,0,7.3,-1.3,-5 -"321",1003,2,1,0,1.05485287950679,1.05485287950679,0,21,1,2.9,1.4,-1 -"322",1004,2,1,0,0.409364279010607,0.409364279010607,1,18,0,-8.3,1.4,-3 -"323",1005,2,1,0,2,2,0,15,1,4.3,-0.9,-1 -"324",1005,2,2,2,3,1,0,15,1,4.3,-0.9,-1 -"325",1005,2,3,3,6,3,0,15,1,4.3,-0.9,-1 -"326",1005,2,4,6,6.5,0.5,0,15,1,4.3,-0.9,-1 -"327",1005,2,5,6.5,8,1.5,0,15,1,4.3,-0.9,-1 -"328",1005,2,6,8,10,2,0,15,1,4.3,-0.9,-1 -"329",1006,2,1,0,2,2,0,0,0,1.8,-2.1,-3 -"330",1006,2,2,2,3,1,0,0,0,1.8,-2.1,-3 -"331",1006,2,3,3,3.752360886565,0.752360886565,0,0,0,1.8,-2.1,-3 -"332",1007,2,1,0,1.43566490391055,1.43566490391055,0,-24,0,1.5,0.199999999999999,-3 -"333",1008,2,1,0,0.0165348422402754,0.0165348422402754,1,28,0,-0.5,-0.0999999999999996,0 -"334",1009,2,1,0,2,2,0,-14,0,-6.1,0.100000000000001,-7 -"335",1009,2,2,2,3,1,0,-14,0,-6.1,0.100000000000001,-7 -"336",1009,2,3,3,6,3,0,-14,0,-6.1,0.100000000000001,-7 -"337",1009,2,4,6,6.5,0.5,0,-14,0,-6.1,0.100000000000001,-7 -"338",1009,2,5,6.5,8,1.5,0,-14,0,-6.1,0.100000000000001,-7 -"339",1009,2,6,8,10,2,0,-14,0,-6.1,0.100000000000001,-7 -"340",1010,2,1,0,0.953514471028606,0.953514471028606,1,32,0,4.7,-0.4,-4 -"341",1011,2,1,0,2,2,0,6,0,-3.6,-0.199999999999999,8 -"342",1011,2,2,2,3,1,0,6,0,-3.6,-0.199999999999999,8 -"343",1011,2,3,3,6,3,0,6,0,-3.6,-0.199999999999999,8 -"344",1011,2,4,6,6.28629481808729,0.286294818087291,1,6,0,-3.6,-0.199999999999999,8 -"345",1012,2,1,0,2,2,0,-7,0,-5,-0.4,-2 -"346",1012,2,2,2,3,1,0,-7,0,-5,-0.4,-2 -"347",1012,2,3,3,6,3,0,-7,0,-5,-0.4,-2 -"348",1012,2,4,6,6.5,0.5,0,-7,0,-5,-0.4,-2 -"349",1012,2,5,6.5,8,1.5,0,-7,0,-5,-0.4,-2 -"350",1012,2,6,8,10,2,0,-7,0,-5,-0.4,-2 -"351",1013,2,1,0,2,2,0,7,1,3.5,0.300000000000001,5 -"352",1013,2,2,2,3,1,0,7,1,3.5,0.300000000000001,5 -"353",1013,2,3,3,6,3,0,7,1,3.5,0.300000000000001,5 -"354",1013,2,4,6,6.5,0.5,0,7,1,3.5,0.300000000000001,5 -"355",1013,2,5,6.5,7.29973533662385,0.799735336623852,0,7,1,3.5,0.300000000000001,5 -"356",1014,2,1,0,0.426648840767266,0.426648840767266,1,4,0,-13.4,-0.4,0 -"357",1015,2,1,0,2,2,0,14,1,7.5,-1.1,-2 -"358",1015,2,2,2,3,1,0,14,1,7.5,-1.1,-2 -"359",1015,2,3,3,6,3,0,14,1,7.5,-1.1,-2 -"360",1015,2,4,6,6.5,0.5,0,14,1,7.5,-1.1,-2 -"361",1015,2,5,6.5,8,1.5,0,14,1,7.5,-1.1,-2 -"362",1015,2,6,8,10,2,0,14,1,7.5,-1.1,-2 -"363",1016,2,1,0,0.157020869147973,0.157020869147973,1,-5,1,1.2,0.800000000000001,-6 -"364",1017,2,1,0,2,2,0,2,1,5.3,1.3,-6 -"365",1017,2,2,2,3,1,0,2,1,5.3,1.3,-6 -"366",1017,2,3,3,6,3,0,2,1,5.3,1.3,-6 -"367",1017,2,4,6,6.5,0.5,0,2,1,5.3,1.3,-6 -"368",1017,2,5,6.5,8,1.5,0,2,1,5.3,1.3,-6 -"369",1017,2,6,8,9.38157630391472,1.38157630391472,1,2,1,5.3,1.3,-6 -"370",1018,2,1,0,0.592392622612396,0.592392622612396,1,14,0,1.1,1.7,-5 -"371",1019,2,1,0,2,2,0,15,1,6.4,-1.1,-1 -"372",1019,2,2,2,3,1,0,15,1,6.4,-1.1,-1 -"373",1019,2,3,3,6,3,0,15,1,6.4,-1.1,-1 -"374",1019,2,4,6,6.05980469830735,0.0598046983073464,0,15,1,6.4,-1.1,-1 -"375",1020,2,1,0,0.10891482761366,0.10891482761366,1,-26,1,9.2,0.199999999999999,2 -"376",1021,2,1,0,0.653030918977124,0.653030918977124,1,-10,0,-0.100000000000001,0.399999999999999,6 -"377",1022,2,1,0,0.0194898014728388,0.0194898014728388,0,-3,0,4.5,0.399999999999999,-5 -"378",1023,2,1,0,1.02679957373588,1.02679957373588,1,-1,0,-1.7,-0.5,5 -"379",1024,2,1,0,1.40379331447308,1.40379331447308,0,17,0,-1.3,-0.699999999999999,-5 -"380",1025,2,1,0,2,2,0,23,0,-1.1,-0.300000000000001,3 -"381",1025,2,2,2,2.13110115311807,0.131101153118068,1,23,0,-1.1,-0.300000000000001,3 -"382",1026,2,1,0,0.849317241590069,0.849317241590069,1,,1,-3.9,-0.300000000000001,-6 -"383",1027,2,1,0,1.79241921820334,1.79241921820334,0,-15,0,-4.1,1.4,1 -"384",1028,2,1,0,2,2,0,-10,0,3.7,0.300000000000001,-6 -"385",1028,2,2,2,3,1,0,-10,0,3.7,0.300000000000001,-6 -"386",1028,2,3,3,6,3,0,-10,0,3.7,0.300000000000001,-6 -"387",1028,2,4,6,6.5,0.5,0,-10,0,3.7,0.300000000000001,-6 -"388",1028,2,5,6.5,7.71323213580892,1.21323213580892,0,-10,0,3.7,0.300000000000001,-6 -"389",1029,2,1,0,1.23800864361653,1.23800864361653,1,-28,0,14.8,0.199999999999999,-4 -"390",1030,2,1,0,0.139444310761049,0.139444310761049,1,-8,1,5.8,1.9,-3 -"391",1031,2,1,0,0.905757825168684,0.905757825168684,1,5,1,-4.4,0.5,0 -"392",1032,2,1,0,2,2,0,0,0,-3.4,-0.300000000000001,-6 -"393",1032,2,2,2,3,1,0,0,0,-3.4,-0.300000000000001,-6 -"394",1032,2,3,3,6,3,0,0,0,-3.4,-0.300000000000001,-6 -"395",1032,2,4,6,6.06910607824523,0.0691060782452301,0,0,0,-3.4,-0.300000000000001,-6 -"396",1033,2,1,0,2,2,0,-7,1,6.3,0.600000000000001,3 -"397",1033,2,2,2,2.15225345319179,0.152253453191788,1,-7,1,6.3,0.600000000000001,3 -"398",1034,2,1,0,0.270981088002243,0.270981088002243,0,12,0,0.200000000000003,2.2,-12 -"399",1035,2,1,0,2,2,0,-18,0,-5.5,-0.6,5 -"400",1035,2,2,2,3,1,0,-18,0,-5.5,-0.6,5 -"401",1035,2,3,3,6,3,0,-18,0,-5.5,-0.6,5 -"402",1035,2,4,6,6.18103858043784,0.181038580437839,0,-18,0,-5.5,-0.6,5 -"403",1036,2,1,0,1.25463636207971,1.25463636207971,1,9,0,-0.600000000000001,-0.0999999999999996,0 -"404",1037,2,1,0,1.60279286334598,1.60279286334598,1,7,0,0.299999999999997,0.600000000000001,0 -"405",1038,2,1,0,1.83657035143916,1.83657035143916,1,0,0,-2.7,0.399999999999999,-5 -"406",1039,2,1,0,2,2,0,-15,1,0.899999999999999,0.800000000000001,1 -"407",1039,2,2,2,3,1,0,-15,1,0.899999999999999,0.800000000000001,1 -"408",1039,2,3,3,6,3,0,-15,1,0.899999999999999,0.800000000000001,1 -"409",1039,2,4,6,6.5,0.5,0,-15,1,0.899999999999999,0.800000000000001,1 -"410",1039,2,5,6.5,8,1.5,0,-15,1,0.899999999999999,0.800000000000001,1 -"411",1039,2,6,8,10,2,0,-15,1,0.899999999999999,0.800000000000001,1 -"412",1040,2,1,0,0.438288793715266,0.438288793715266,0,9,0,-4.5,-0.0999999999999996,-5 -"413",1041,2,1,0,2,2,0,25,1,-2.4,-1.8,2 -"414",1041,2,2,2,2.57306402112132,0.573064021121318,1,25,1,-2.4,-1.8,2 -"415",1042,2,1,0,0.845092834965182,0.845092834965182,0,12,0,-5.6,-0.9,0 -"416",1043,2,1,0,2,2,0,-1,1,8.2,-0.699999999999999,3 -"417",1043,2,2,2,3,1,0,-1,1,8.2,-0.699999999999999,3 -"418",1043,2,3,3,3.18202231988065,0.182022319880647,0,-1,1,8.2,-0.699999999999999,3 -"419",1044,2,1,0,2,2,0,11,1,2.9,-1.1,5 -"420",1044,2,2,2,2.03079155119554,0.0307915511955387,0,11,1,2.9,-1.1,5 -"421",1045,2,1,0,2,2,0,-4,0,1.2,-0.199999999999999,-7 -"422",1045,2,2,2,2.3025012865355,0.302501286535497,0,-4,0,1.2,-0.199999999999999,-7 -"423",1046,2,1,0,0.341647742259402,0.341647742259402,1,18,1,-2,-0.300000000000001,-3 -"424",1047,2,1,0,0.576036399410757,0.576036399410757,1,27,0,-1.4,0.5,6 -"425",1048,2,1,0,2,2,0,9,0,5.7,0,5 -"426",1048,2,2,2,2.99848926429237,0.998489264292369,1,9,0,5.7,0,5 -"427",1049,2,1,0,0.260072399154587,0.260072399154587,1,11,0,3.9,0.699999999999999,-2 -"428",1050,2,1,0,0.0782004479684158,0.0782004479684158,0,15,0,,1.1,-1 -"429",1051,2,1,0,2,2,0,21,0,7.3,,-9 -"430",1051,2,2,2,3,1,0,21,0,7.3,,-9 -"431",1051,2,3,3,4.02874545093613,1.02874545093613,0,21,0,7.3,,-9 -"432",1052,2,1,0,2,2,0,-13,0,-6.4,1.8,-11 -"433",1052,2,2,2,3,1,0,-13,0,-6.4,1.8,-11 -"434",1052,2,3,3,6,3,0,-13,0,-6.4,1.8,-11 -"435",1052,2,4,6,6.5,0.5,0,-13,0,-6.4,1.8,-11 -"436",1052,2,5,6.5,8,1.5,0,-13,0,-6.4,1.8,-11 -"437",1052,2,6,8,8.9658322399814,0.9658322399814,1,-13,0,-6.4,1.8,-11 -"438",1053,2,1,0,0.184465330616589,0.184465330616589,1,5,0,1.3,-0.300000000000001,4 -"439",1054,2,1,0,0.294973933639656,0.294973933639656,1,-13,0,3.3,0.800000000000001,-1 -"440",1055,2,1,0,2,2,0,-17,0,0.899999999999999,-1.3,-7 -"441",1055,2,2,2,3,1,0,-17,0,0.899999999999999,-1.3,-7 -"442",1055,2,3,3,5.96193851794077,2.96193851794077,0,-17,0,0.899999999999999,-1.3,-7 -"443",1056,2,1,0,2,2,0,-27,1,,-1.4,1 -"444",1056,2,2,2,3,1,0,-27,1,,-1.4,1 -"445",1056,2,3,3,6,3,0,-27,1,,-1.4,1 -"446",1056,2,4,6,6.5,0.5,0,-27,1,,-1.4,1 -"447",1056,2,5,6.5,6.64903474911345,0.149034749113453,0,-27,1,,-1.4,1 -"448",1057,2,1,0,1.17187706060549,1.17187706060549,1,2,0,3.4,0.899999999999999,-1 -"449",1058,2,1,0,1.5047574232316,1.5047574232316,0,-14,1,-4.5,0,1 -"450",1059,2,1,0,0.532199168288128,0.532199168288128,1,16,1,4.6,1.3,4 -"451",1060,2,1,0,2,2,0,-1,1,-4.9,-1.6,-1 -"452",1060,2,2,2,3,1,0,-1,1,-4.9,-1.6,-1 -"453",1060,2,3,3,5.8261530371544,2.8261530371544,0,-1,1,-4.9,-1.6,-1 -"454",1061,2,1,0,2,2,0,-22,0,-5.8,-0.4,-4 -"455",1061,2,2,2,3,1,0,-22,0,-5.8,-0.4,-4 -"456",1061,2,3,3,6,3,0,-22,0,-5.8,-0.4,-4 -"457",1061,2,4,6,6.5,0.5,0,-22,0,-5.8,-0.4,-4 -"458",1061,2,5,6.5,8,1.5,0,-22,0,-5.8,-0.4,-4 -"459",1061,2,6,8,10,2,0,-22,0,-5.8,-0.4,-4 -"460",1062,2,1,0,2,2,0,1,1,8,0.199999999999999,5 -"461",1062,2,2,2,3,1,0,1,1,8,0.199999999999999,5 -"462",1062,2,3,3,6,3,0,1,1,8,0.199999999999999,5 -"463",1062,2,4,6,6.5,0.5,0,1,1,8,0.199999999999999,5 -"464",1062,2,5,6.5,8,1.5,0,1,1,8,0.199999999999999,5 -"465",1062,2,6,8,10,2,0,1,1,8,0.199999999999999,5 -"466",1063,2,1,0,0.335291432076939,0.335291432076939,1,-8,0,-2.5,-0.199999999999999,8 -"467",1064,2,1,0,2,2,0,3,1,4.8,-1.4,1 -"468",1064,2,2,2,3,1,0,3,1,4.8,-1.4,1 -"469",1064,2,3,3,6,3,0,3,1,4.8,-1.4,1 -"470",1064,2,4,6,6.5,0.5,0,3,1,4.8,-1.4,1 -"471",1064,2,5,6.5,8,1.5,0,3,1,4.8,-1.4,1 -"472",1064,2,6,8,9.29454196265769,1.29454196265769,0,3,1,4.8,-1.4,1 -"473",1065,2,1,0,2,2,0,2,0,3.5,-0.199999999999999,1 -"474",1065,2,2,2,2.08173952307554,0.0817395230755408,0,2,0,3.5,-0.199999999999999,1 -"475",1066,2,1,0,2,2,0,-17,1,-1.8,-0.199999999999999,4 -"476",1066,2,2,2,3,1,0,-17,1,-1.8,-0.199999999999999,4 -"477",1066,2,3,3,4.67297774539559,1.67297774539559,0,-17,1,-1.8,-0.199999999999999,4 -"478",1067,2,1,0,0.750848353736772,0.750848353736772,1,5,0,-3.7,0.600000000000001,-1 -"479",1068,2,1,0,2,2,0,-15,1,9.59999999999999,-0.800000000000001,2 -"480",1068,2,2,2,3,1,0,-15,1,9.59999999999999,-0.800000000000001,2 -"481",1068,2,3,3,6,3,0,-15,1,9.59999999999999,-0.800000000000001,2 -"482",1068,2,4,6,6.5,0.5,0,-15,1,9.59999999999999,-0.800000000000001,2 -"483",1068,2,5,6.5,8,1.5,0,-15,1,9.59999999999999,-0.800000000000001,2 -"484",1068,2,6,8,9.28704410997702,1.28704410997702,0,-15,1,9.59999999999999,-0.800000000000001,2 -"485",1069,2,1,0,0.301092507774878,0.301092507774878,1,-6,0,-4.7,0.600000000000001,2 -"486",1070,2,1,0,0.333396190006199,0.333396190006199,1,21,0,-0.399999999999999,-1.2,1 -"487",1071,2,1,0,2,2,0,1,1,5.4,-1.9,-5 -"488",1071,2,2,2,2.28363165782233,0.283631657822329,0,1,1,5.4,-1.9,-5 -"489",1072,2,1,0,0.323427705353153,0.323427705353153,1,-28,0,-12.1,1.6,4 -"490",1073,2,1,0,2,2,0,11,1,-2.2,0.100000000000001,0 -"491",1073,2,2,2,3,1,0,11,1,-2.2,0.100000000000001,0 -"492",1073,2,3,3,3.07653655346892,0.0765365534689149,1,11,1,-2.2,0.100000000000001,0 -"493",1074,2,1,0,2,2,0,9,1,-2.5,-1.4,5 -"494",1074,2,2,2,3,1,0,9,1,-2.5,-1.4,5 -"495",1074,2,3,3,4.1042252774414,1.1042252774414,1,9,1,-2.5,-1.4,5 -"496",1075,2,1,0,1.56136629423164,1.56136629423164,1,7,0,4.7,1.2,0 -"497",1076,2,1,0,0.644932437362172,0.644932437362172,1,15,1,1.2,-0.4,-9 -"498",1077,2,1,0,0.435214367921785,0.435214367921785,1,13,1,-7.7,-0.9,5 -"499",1078,2,1,0,1.04117572340978,1.04117572340978,0,0,1,1,-0.800000000000001,9 -"500",1079,2,1,0,0.611156621158216,0.611156621158216,0,-14,0,3,0,3 -"501",1080,2,1,0,1.97318044306608,1.97318044306608,1,-5,1,-2.9,-0.9,5 -"502",1081,2,1,0,2,2,0,13,1,-6.4,0,1 -"503",1081,2,2,2,3,1,0,13,1,-6.4,0,1 -"504",1081,2,3,3,6,3,0,13,1,-6.4,0,1 -"505",1081,2,4,6,6.5,0.5,0,13,1,-6.4,0,1 -"506",1081,2,5,6.5,8,1.5,0,13,1,-6.4,0,1 -"507",1081,2,6,8,10,2,0,13,1,-6.4,0,1 -"508",1082,2,1,0,2,2,0,1,0,2,-1,-4 -"509",1082,2,2,2,3,1,0,1,0,2,-1,-4 -"510",1082,2,3,3,6,3,0,1,0,2,-1,-4 -"511",1082,2,4,6,6.5,0.5,0,1,0,2,-1,-4 -"512",1082,2,5,6.5,8,1.5,0,1,0,2,-1,-4 -"513",1082,2,6,8,9.51400166902557,1.51400166902557,0,1,0,2,-1,-4 -"514",1083,2,1,0,1.8687849105425,1.8687849105425,0,4,0,-2.7,-0.9,-2 -"515",1084,2,1,0,0.804986540226156,0.804986540226156,1,12,1,1.4,0.600000000000001,0 -"516",1085,2,1,0,1.5536718572084,1.5536718572084,0,4,0,-2.6,-0.800000000000001,4 -"517",1086,2,1,0,2,2,0,-17,1,2.5,-1,-7 -"518",1086,2,2,2,2.7269389004046,0.726938900404603,0,-17,1,2.5,-1,-7 -"519",1087,2,1,0,0.953606254024136,0.953606254024136,1,8,0,4.8,-0.199999999999999,1 -"520",1088,2,1,0,2,2,0,14,1,-2.4,-0.800000000000001,-7 -"521",1088,2,2,2,3,1,0,14,1,-2.4,-0.800000000000001,-7 -"522",1088,2,3,3,6,3,0,14,1,-2.4,-0.800000000000001,-7 -"523",1088,2,4,6,6.5,0.5,0,14,1,-2.4,-0.800000000000001,-7 -"524",1088,2,5,6.5,7.42621691540242,0.926216915402424,0,14,1,-2.4,-0.800000000000001,-7 -"525",1089,2,1,0,0.95065232642278,0.95065232642278,1,4,0,-3.6,0.699999999999999,4 -"526",1090,2,1,0,2,2,0,-4,0,2,0,-8 -"527",1090,2,2,2,3,1,0,-4,0,2,0,-8 -"528",1090,2,3,3,6,3,0,-4,0,2,0,-8 -"529",1090,2,4,6,6.5,0.5,0,-4,0,2,0,-8 -"530",1090,2,5,6.5,7.32813438335817,0.828134383358167,0,-4,0,2,0,-8 -"531",1091,2,1,0,0.126971677702329,0.126971677702329,1,18,0,6,-0.300000000000001,5 -"532",1092,2,1,0,2,2,0,-34,0,-3.3,-2.4,1 -"533",1092,2,2,2,3,1,0,-34,0,-3.3,-2.4,1 -"534",1092,2,3,3,6,3,0,-34,0,-3.3,-2.4,1 -"535",1092,2,4,6,6.5,0.5,0,-34,0,-3.3,-2.4,1 -"536",1092,2,5,6.5,8,1.5,0,-34,0,-3.3,-2.4,1 -"537",1092,2,6,8,10,2,0,-34,0,-3.3,-2.4,1 -"538",1093,2,1,0,0.306778457033624,0.306778457033624,1,15,0,0.899999999999999,,-10 -"539",1094,2,1,0,0.493757519803271,0.493757519803271,1,9,0,3.7,0.100000000000001,3 -"540",1095,2,1,0,0.9942884750711,0.9942884750711,1,22,1,-3.3,-0.199999999999999,3 -"541",1096,2,1,0,0.63309431734028,0.63309431734028,1,-3,0,6,0.5,5 -"542",1097,2,1,0,2,2,0,33,1,-4.9,-0.0999999999999996,1 -"543",1097,2,2,2,3,1,0,33,1,-4.9,-0.0999999999999996,1 -"544",1097,2,3,3,6,3,0,33,1,-4.9,-0.0999999999999996,1 -"545",1097,2,4,6,6.5,0.5,0,33,1,-4.9,-0.0999999999999996,1 -"546",1097,2,5,6.5,8,1.5,0,33,1,-4.9,-0.0999999999999996,1 -"547",1097,2,6,8,9.63328933819164,1.63328933819164,1,33,1,-4.9,-0.0999999999999996,1 -"548",1098,2,1,0,2,2,0,6,0,1.3,-0.300000000000001,5 -"549",1098,2,2,2,3,1,0,6,0,1.3,-0.300000000000001,5 -"550",1098,2,3,3,6,3,0,6,0,1.3,-0.300000000000001,5 -"551",1098,2,4,6,6.38807196474969,0.388071964749686,1,6,0,1.3,-0.300000000000001,5 -"552",1099,2,1,0,0.0986367762547121,0.0986367762547121,1,26,0,2.4,0.399999999999999,8 -"553",1100,2,1,0,0.894976155386457,0.894976155386457,0,14,1,0.899999999999999,0.399999999999999,0 -"554",1101,2,1,0,1.00524387188062,1.00524387188062,0,-11,0,-0.100000000000001,0.899999999999999,-2 -"555",1102,2,1,0,2,2,0,-9,1,-2.8,-1.1,0 -"556",1102,2,2,2,3,1,0,-9,1,-2.8,-1.1,0 -"557",1102,2,3,3,6,3,0,-9,1,-2.8,-1.1,0 -"558",1102,2,4,6,6.5,0.5,0,-9,1,-2.8,-1.1,0 -"559",1102,2,5,6.5,8,1.5,0,-9,1,-2.8,-1.1,0 -"560",1102,2,6,8,8.45178072264161,0.451780722641611,1,-9,1,-2.8,-1.1,0 -"561",1103,2,1,0,1.82824822406541,1.82824822406541,0,-16,0,0.100000000000001,-1.8,1 -"562",1104,2,1,0,1.26842910011227,1.26842910011227,1,6,1,-6.2,1.1,-3 -"563",1105,2,1,0,2,2,0,18,0,-2.2,-1,8 -"564",1105,2,2,2,2.03405034415261,0.034050344152607,0,18,0,-2.2,-1,8 -"565",1106,2,1,0,0.109357738057923,0.109357738057923,1,19,0,0.100000000000001,0.699999999999999,-1 -"566",1107,2,1,0,1.32921859812994,1.32921859812994,1,5,1,-4.3,1,2 -"567",1108,2,1,0,0.19728643694326,0.19728643694326,1,15,1,7.6,0.699999999999999,1 -"568",1109,2,1,0,1.18977946832093,1.18977946832093,0,-15,1,-1,-1,2 -"569",1110,2,1,0,0.214245385936909,0.214245385936909,1,12,0,-4.5,-0.6,-7 -"570",1111,2,1,0,2,2,0,-16,0,3.5,-0.800000000000001,4 -"571",1111,2,2,2,2.54660676042674,0.546606760426735,0,-16,0,3.5,-0.800000000000001,4 -"572",1112,2,1,0,0.0331761652839547,0.0331761652839547,1,-5,0,9.5,0.399999999999999,8 -"573",1113,2,1,0,2,2,0,-12,1,-0.5,-1.4,7 -"574",1113,2,2,2,3,1,0,-12,1,-0.5,-1.4,7 -"575",1113,2,3,3,3.05427968996845,0.0542796899684476,0,-12,1,-0.5,-1.4,7 -"576",1114,2,1,0,2,2,0,-9,0,-5.8,-0.6,-5 -"577",1114,2,2,2,3,1,0,-9,0,-5.8,-0.6,-5 -"578",1114,2,3,3,5.98925499797864,2.98925499797864,0,-9,0,-5.8,-0.6,-5 -"579",1115,2,1,0,2,2,0,-10,0,,-0.4,-4 -"580",1115,2,2,2,3,1,0,-10,0,,-0.4,-4 -"581",1115,2,3,3,6,3,0,-10,0,,-0.4,-4 -"582",1115,2,4,6,6.5,0.5,0,-10,0,,-0.4,-4 -"583",1115,2,5,6.5,7.184936478223,0.684936478222999,1,-10,0,,-0.4,-4 -"584",1116,2,1,0,2,2,0,7,1,1,-0.199999999999999,7 -"585",1116,2,2,2,3,1,0,7,1,1,-0.199999999999999,7 -"586",1116,2,3,3,3.05442493814564,0.0544249381456393,0,7,1,1,-0.199999999999999,7 -"587",1117,2,1,0,1.85165582887988,1.85165582887988,1,14,1,2.2,0.800000000000001,1 -"588",1118,2,1,0,2,2,0,-16,0,4.4,-0.5,-5 -"589",1118,2,2,2,3,1,0,-16,0,4.4,-0.5,-5 -"590",1118,2,3,3,3.90238878055118,0.902388780551184,0,-16,0,4.4,-0.5,-5 -"591",1119,2,1,0,0.0231175366958204,0.0231175366958204,1,16,1,1,0.199999999999999,4 -"592",1120,2,1,0,1.64462578477557,1.64462578477557,1,16,0,-3.9,0,1 -"593",1121,2,1,0,2,2,0,14,1,5.5,-0.6,1 -"594",1121,2,2,2,3,1,0,14,1,5.5,-0.6,1 -"595",1121,2,3,3,3.72484464796028,0.724844647960276,0,14,1,5.5,-0.6,1 -"596",1122,2,1,0,0.180259204137708,0.180259204137708,1,18,0,2.1,0.699999999999999,-3 -"597",1123,2,1,0,0.177231531635067,0.177231531635067,1,-12,1,1.2,0.699999999999999,7 -"598",1124,2,1,0,0.413773718090104,0.413773718090104,1,-2,0,3.4,0.399999999999999,-2 -"599",1125,2,1,0,2,2,0,-7,0,1.2,-0.0999999999999996,1 -"600",1125,2,2,2,3,1,0,-7,0,1.2,-0.0999999999999996,1 -"601",1125,2,3,3,6,3,0,-7,0,1.2,-0.0999999999999996,1 -"602",1125,2,4,6,6.5,0.5,0,-7,0,1.2,-0.0999999999999996,1 -"603",1125,2,5,6.5,8,1.5,0,-7,0,1.2,-0.0999999999999996,1 -"604",1125,2,6,8,10,2,0,-7,0,1.2,-0.0999999999999996,1 -"605",1126,2,1,0,0.370803141233774,0.370803141233774,1,5,0,9.90000000000001,-0.9,10 -"606",1127,2,1,0,0.436143629243842,0.436143629243842,1,15,1,-0.600000000000001,1.1,4 -"607",1128,2,1,0,2,2,0,0,0,-3,0.699999999999999,-4 -"608",1128,2,2,2,2.77229222992697,0.772292229926971,1,0,0,-3,0.699999999999999,-4 -"609",1129,2,1,0,1.1585149801489,1.1585149801489,0,8,0,0.600000000000001,0.899999999999999,-5 -"610",1130,2,1,0,2,2,0,10,1,-1.5,-0.0999999999999996,3 -"611",1130,2,2,2,3,1,0,10,1,-1.5,-0.0999999999999996,3 -"612",1130,2,3,3,3.86855824624099,0.868558246240991,0,10,1,-1.5,-0.0999999999999996,3 -"613",1131,2,1,0,0.798949022093648,0.798949022093648,0,-15,0,-1.6,2.6,2 -"614",1132,2,1,0,2,2,0,16,0,-4.2,-1.3,2 -"615",1132,2,2,2,3,1,0,16,0,-4.2,-1.3,2 -"616",1132,2,3,3,3.13251322532167,0.132513225321673,0,16,0,-4.2,-1.3,2 -"617",1133,2,1,0,0.561419980516692,0.561419980516692,1,-1,1,6.4,0.399999999999999,-5 -"618",1134,2,1,0,2,2,0,-5,1,,-0.699999999999999,4 -"619",1134,2,2,2,3,1,0,-5,1,,-0.699999999999999,4 -"620",1134,2,3,3,3.20550850825845,0.205508508258447,0,-5,1,,-0.699999999999999,4 -"621",1135,2,1,0,0.181951958869671,0.181951958869671,1,13,1,-4.8,-0.0999999999999996,3 -"622",1136,2,1,0,2,2,0,-8,0,-5.9,-0.9,-2 -"623",1136,2,2,2,3,1,0,-8,0,-5.9,-0.9,-2 -"624",1136,2,3,3,3.69624431315471,0.69624431315471,0,-8,0,-5.9,-0.9,-2 -"625",1137,2,1,0,0.514402333480557,0.514402333480557,1,1,1,3.8,0.600000000000001,1 -"626",1138,2,1,0,2,2,0,7,1,5.2,,-3 -"627",1138,2,2,2,2.21346480146017,0.213464801460172,1,7,1,5.2,,-3 -"628",1139,2,1,0,0.728981945805516,0.728981945805516,1,-2,0,-0.600000000000001,1,4 -"629",1140,2,1,0,2,2,0,-20,0,-4.4,-2,7 -"630",1140,2,2,2,3,1,0,-20,0,-4.4,-2,7 -"631",1140,2,3,3,6,3,0,-20,0,-4.4,-2,7 -"632",1140,2,4,6,6.5,0.5,0,-20,0,-4.4,-2,7 -"633",1140,2,5,6.5,8,1.5,0,-20,0,-4.4,-2,7 -"634",1140,2,6,8,10,2,0,-20,0,-4.4,-2,7 -"635",1141,2,1,0,1.62642208124329,1.62642208124329,0,-4,0,5,0.899999999999999,3 -"636",1142,2,1,0,2,2,0,-1,0,-1.8,0.899999999999999,3 -"637",1142,2,2,2,3,1,0,-1,0,-1.8,0.899999999999999,3 -"638",1142,2,3,3,5.44005477443597,2.44005477443597,0,-1,0,-1.8,0.899999999999999,3 -"639",1143,2,1,0,2,2,0,-22,1,8.2,0.100000000000001,-4 -"640",1143,2,2,2,3,1,0,-22,1,8.2,0.100000000000001,-4 -"641",1143,2,3,3,3.5411769929251,0.541176992925103,0,-22,1,8.2,0.100000000000001,-4 -"642",1144,2,1,0,1.02750512950237,1.02750512950237,0,9,1,-2.3,-1.2,0 -"643",1145,2,1,0,2,2,0,-6,1,5,-1.9,-4 -"644",1145,2,2,2,3,1,0,-6,1,5,-1.9,-4 -"645",1145,2,3,3,6,3,0,-6,1,5,-1.9,-4 -"646",1145,2,4,6,6.5,0.5,0,-6,1,5,-1.9,-4 -"647",1145,2,5,6.5,8,1.5,0,-6,1,5,-1.9,-4 -"648",1145,2,6,8,10,2,0,-6,1,5,-1.9,-4 -"649",1146,2,1,0,0.484741030939274,0.484741030939274,0,-9,0,-0.5,-1,-1 -"650",1147,2,1,0,1.20498265768594,1.20498265768594,1,-5,0,0,0.800000000000001,-2 -"651",1148,2,1,0,0.106238497567109,0.106238497567109,1,36,0,-0.100000000000001,0.300000000000001,0 -"652",1149,2,1,0,2,2,0,0,1,8.7,1.2,-2 -"653",1149,2,2,2,2.32450430951082,0.324504309510821,1,0,1,8.7,1.2,-2 -"654",1150,2,1,0,2,2,0,-29,0,4.1,,-3 -"655",1150,2,2,2,3,1,0,-29,0,4.1,,-3 -"656",1150,2,3,3,6,3,0,-29,0,4.1,,-3 -"657",1150,2,4,6,6.5,0.5,0,-29,0,4.1,,-3 -"658",1150,2,5,6.5,8,1.5,0,-29,0,4.1,,-3 -"659",1150,2,6,8,10,2,0,-29,0,4.1,,-3 -"660",1151,2,1,0,0.0863224636696352,0.0863224636696352,1,19,1,-0.399999999999999,0.399999999999999,0 -"661",1152,2,1,0,1.17775587017135,1.17775587017135,0,9,0,2.8,-1.8,3 -"662",1153,2,1,0,2,2,0,-16,1,,0.199999999999999,8 -"663",1153,2,2,2,3,1,0,-16,1,,0.199999999999999,8 -"664",1153,2,3,3,6,3,0,-16,1,,0.199999999999999,8 -"665",1153,2,4,6,6.42590733553947,0.425907335539475,0,-16,1,,0.199999999999999,8 -"666",1154,2,1,0,1.66683898783165,1.66683898783165,0,-14,1,0.200000000000003,-0.5,4 -"667",1155,2,1,0,2,2,0,-1,0,0.5,0.300000000000001,-8 -"668",1155,2,2,2,2.06211572750234,0.0621157275023379,0,-1,0,0.5,0.300000000000001,-8 -"669",1156,2,1,0,1.09541138173556,1.09541138173556,1,8,0,-3.7,-0.199999999999999,0 -"670",1157,2,1,0,0.817263759656468,0.817263759656468,1,18,0,2.1,-0.4,-2 -"671",1158,2,1,0,2,2,0,2,0,,1,-6 -"672",1158,2,2,2,3,1,0,2,0,,1,-6 -"673",1158,2,3,3,5.6750825061023,2.6750825061023,0,2,0,,1,-6 -"674",1159,2,1,0,1.20267749904444,1.20267749904444,1,22,1,4.2,0.5,-3 -"675",1160,2,1,0,1.57754810416202,1.57754810416202,0,-1,1,-1.7,0.300000000000001,-1 -"676",1161,2,1,0,0.468486298125603,0.468486298125603,0,13,1,-7.5,-0.5,-4 -"677",1162,2,1,0,0.541349238346344,0.541349238346344,1,-11,0,2.2,0.100000000000001,7 -"678",1163,2,1,0,2,2,0,7,0,-8.5,0.399999999999999,0 -"679",1163,2,2,2,3,1,0,7,0,-8.5,0.399999999999999,0 -"680",1163,2,3,3,6,3,0,7,0,-8.5,0.399999999999999,0 -"681",1163,2,4,6,6.5,0.5,0,7,0,-8.5,0.399999999999999,0 -"682",1163,2,5,6.5,6.52023340852436,0.020233408524362,1,7,0,-8.5,0.399999999999999,0 -"683",1164,2,1,0,2,2,0,1,1,0.5,0.300000000000001,-1 -"684",1164,2,2,2,3,1,0,1,1,0.5,0.300000000000001,-1 -"685",1164,2,3,3,6,3,0,1,1,0.5,0.300000000000001,-1 -"686",1164,2,4,6,6.32977164010283,0.329771640102826,0,1,1,0.5,0.300000000000001,-1 -"687",1165,2,1,0,2,2,0,-13,0,1.1,-0.699999999999999,-9 -"688",1165,2,2,2,3,1,0,-13,0,1.1,-0.699999999999999,-9 -"689",1165,2,3,3,5.63047572869852,2.63047572869852,0,-13,0,1.1,-0.699999999999999,-9 -"690",1166,2,1,0,0.89607618645427,0.89607618645427,1,2,1,4.3,0.199999999999999,0 -"691",1167,2,1,0,0.700566029847473,0.700566029847473,1,24,0,-5.6,0.199999999999999,-1 -"692",1168,2,1,0,0.302052536723696,0.302052536723696,1,-8,0,-5.6,1.2,7 -"693",1169,2,1,0,1.47920665374187,1.47920665374187,0,-1,1,-3,-0.4,1 -"694",1170,2,1,0,2,2,0,-11,0,5.5,1.2,0 -"695",1170,2,2,2,2.2846439637029,0.284643963702896,1,-11,0,5.5,1.2,0 -"696",1171,2,1,0,1.91492368011196,1.91492368011196,1,-13,0,-3.5,0,-4 -"697",1172,2,1,0,2,2,0,-7,1,7.2,0.600000000000001,-1 -"698",1172,2,2,2,3,1,0,-7,1,7.2,0.600000000000001,-1 -"699",1172,2,3,3,6,3,0,-7,1,7.2,0.600000000000001,-1 -"700",1172,2,4,6,6.5,0.5,0,-7,1,7.2,0.600000000000001,-1 -"701",1172,2,5,6.5,8,1.5,0,-7,1,7.2,0.600000000000001,-1 -"702",1172,2,6,8,10,2,0,-7,1,7.2,0.600000000000001,-1 -"703",1173,2,1,0,0.50241803452817,0.50241803452817,1,15,0,5.9,-2.8,5 -"704",1174,2,1,0,2,2,0,1,0,-1.4,-0.199999999999999,-2 -"705",1174,2,2,2,2.19330792247827,0.193307922478268,0,1,0,-1.4,-0.199999999999999,-2 -"706",1175,2,1,0,2,2,0,-27,1,-1,1.9,-2 -"707",1175,2,2,2,3,1,0,-27,1,-1,1.9,-2 -"708",1175,2,3,3,3.82208381793101,0.822083817931005,0,-27,1,-1,1.9,-2 -"709",1176,2,1,0,1.53552574915738,1.53552574915738,1,-21,1,8.7,0.399999999999999,1 -"710",1177,2,1,0,2,2,0,26,1,2.8,1.3,-7 -"711",1177,2,2,2,2.06584735861197,0.0658473586119708,0,26,1,2.8,1.3,-7 -"712",1178,2,1,0,0.0340737884683491,0.0340737884683491,1,5,1,-2.2,1.3,-1 -"713",1179,2,1,0,2,2,0,-26,0,-4.4,-1.8,0 -"714",1179,2,2,2,3,1,0,-26,0,-4.4,-1.8,0 -"715",1179,2,3,3,6,3,0,-26,0,-4.4,-1.8,0 -"716",1179,2,4,6,6.5,0.5,0,-26,0,-4.4,-1.8,0 -"717",1179,2,5,6.5,8,1.5,0,-26,0,-4.4,-1.8,0 -"718",1179,2,6,8,10,2,0,-26,0,-4.4,-1.8,0 -"719",1180,2,1,0,2,2,0,15,1,1.2,1,-4 -"720",1180,2,2,2,3,1,0,15,1,1.2,1,-4 -"721",1180,2,3,3,5.86312076853725,2.86312076853725,0,15,1,1.2,1,-4 -"722",1181,2,1,0,0.332541986746162,0.332541986746162,1,-4,0,-1.6,0.199999999999999,6 -"723",1182,2,1,0,1.89504675229294,1.89504675229294,1,-15,1,-0.399999999999999,0,5 -"724",1183,2,1,0,2,2,0,-14,1,-4,-0.5,10 -"725",1183,2,2,2,3,1,0,-14,1,-4,-0.5,10 -"726",1183,2,3,3,4.60935163515512,1.60935163515512,0,-14,1,-4,-0.5,10 -"727",1184,2,1,0,1.00222621985605,1.00222621985605,1,17,1,0.600000000000001,0.399999999999999,3 -"728",1185,2,1,0,2,2,0,-7,1,-5.2,0.800000000000001,5 -"729",1185,2,2,2,2.37126515652695,0.371265156526952,0,-7,1,-5.2,0.800000000000001,5 -"730",1186,2,1,0,2,2,0,-2,1,1.3,-2,3 -"731",1186,2,2,2,3,1,0,-2,1,1.3,-2,3 -"732",1186,2,3,3,6,3,0,-2,1,1.3,-2,3 -"733",1186,2,4,6,6.5,0.5,0,-2,1,1.3,-2,3 -"734",1186,2,5,6.5,8,1.5,0,-2,1,1.3,-2,3 -"735",1186,2,6,8,10,2,0,-2,1,1.3,-2,3 -"736",1187,2,1,0,0.126410077941238,0.126410077941238,1,21,0,-0.899999999999999,0.899999999999999,-3 -"737",1188,2,1,0,2,2,0,-14,0,-7.5,-1.9,-1 -"738",1188,2,2,2,2.1918008635504,0.191800863550403,0,-14,0,-7.5,-1.9,-1 -"739",1189,2,1,0,1.5367220308944,1.5367220308944,1,-12,1,5.5,-0.5,2 -"740",1190,2,1,0,2,2,0,-21,0,-0.399999999999999,-1.2,6 -"741",1190,2,2,2,3,1,0,-21,0,-0.399999999999999,-1.2,6 -"742",1190,2,3,3,6,3,0,-21,0,-0.399999999999999,-1.2,6 -"743",1190,2,4,6,6.5,0.5,0,-21,0,-0.399999999999999,-1.2,6 -"744",1190,2,5,6.5,8,1.5,0,-21,0,-0.399999999999999,-1.2,6 -"745",1190,2,6,8,8.53732632523398,0.537326325233983,0,-21,0,-0.399999999999999,-1.2,6 -"746",1191,2,1,0,2,2,0,-12,0,-5.9,-2,0 -"747",1191,2,2,2,2.03990514647238,0.0399051464723808,0,-12,0,-5.9,-2,0 -"748",1192,2,1,0,1.28640041105109,1.28640041105109,1,-8,1,7,0.100000000000001,6 -"749",1193,2,1,0,0.380860661614955,0.380860661614955,0,-18,0,6.4,-1.3,3 -"750",1194,2,1,0,0.448530375194502,0.448530375194502,1,2,0,5.9,0.399999999999999,-1 -"751",1195,2,1,0,2,2,0,-1,1,1.2,0.5,1 -"752",1195,2,2,2,3,1,0,-1,1,1.2,0.5,1 -"753",1195,2,3,3,6,3,0,-1,1,1.2,0.5,1 -"754",1195,2,4,6,6.5,0.5,0,-1,1,1.2,0.5,1 -"755",1195,2,5,6.5,8,1.5,0,-1,1,1.2,0.5,1 -"756",1195,2,6,8,9.46332009134815,1.46332009134815,1,-1,1,1.2,0.5,1 -"757",1196,2,1,0,0.63535859862796,0.63535859862796,1,-18,0,11.2,0,5 -"758",1197,2,1,0,1.0910942951694,1.0910942951694,1,-22,0,5.2,-0.699999999999999,1 -"759",1198,2,1,0,2,2,0,-1,1,-2.7,-0.0999999999999996,-3 -"760",1198,2,2,2,2.6083917447222,0.608391744722197,0,-1,1,-2.7,-0.0999999999999996,-3 -"761",1199,2,1,0,1.29205873581637,1.29205873581637,0,0,1,1.5,-0.300000000000001,0 -"762",1200,2,1,0,2,2,0,5,0,3.7,-0.0999999999999996,4 -"763",1200,2,2,2,3,1,0,5,0,3.7,-0.0999999999999996,4 -"764",1200,2,3,3,3.20649280185143,0.206492801851434,0,5,0,3.7,-0.0999999999999996,4 -"765",1201,2,1,0,1.54669564223066,1.54669564223066,1,-19,0,-0.200000000000003,1.3,6 -"766",1202,2,1,0,2,2,0,20,0,-2.4,-0.800000000000001,1 -"767",1202,2,2,2,3,1,0,20,0,-2.4,-0.800000000000001,1 -"768",1202,2,3,3,5.70141161492543,2.70141161492543,0,20,0,-2.4,-0.800000000000001,1 -"769",1203,2,1,0,2,2,0,-19,0,2,1.6,1 -"770",1203,2,2,2,3,1,0,-19,0,2,1.6,1 -"771",1203,2,3,3,3.86306608193605,0.863066081936054,0,-19,0,2,1.6,1 -"772",1204,2,1,0,1.08968839759261,1.08968839759261,0,2,0,1.9,-1.2,1 -"773",1205,2,1,0,1.95596562819542,1.95596562819542,1,5,1,-1.3,0.899999999999999,-3 -"774",1206,2,1,0,0.39470791643273,0.39470791643273,1,-2,1,-3.3,1.1,9 -"775",1207,2,1,0,0.751189171188744,0.751189171188744,1,10,0,8,-0.300000000000001,-5 -"776",1208,2,1,0,0.105682618217666,0.105682618217666,0,0,1,3.7,1.1,-5 -"777",1209,2,1,0,1.14769554691156,1.14769554691156,0,12,1,-0.5,0,-4 -"778",1210,2,1,0,2,2,0,-18,0,-8,1.1,1 -"779",1210,2,2,2,3,1,0,-18,0,-8,1.1,1 -"780",1210,2,3,3,6,3,0,-18,0,-8,1.1,1 -"781",1210,2,4,6,6.42008736774111,0.420087367741106,1,-18,0,-8,1.1,1 -"782",1211,2,1,0,0.188728412722921,0.188728412722921,1,-13,0,-2.5,1.9,4 -"783",1212,2,1,0,2,2,0,-14,0,3.6,-0.0999999999999996,0 -"784",1212,2,2,2,3,1,0,-14,0,3.6,-0.0999999999999996,0 -"785",1212,2,3,3,6,3,0,-14,0,3.6,-0.0999999999999996,0 -"786",1212,2,4,6,6.19468465388913,0.194684653889129,1,-14,0,3.6,-0.0999999999999996,0 -"787",1213,2,1,0,1.21610163006938,1.21610163006938,0,-10,0,0.299999999999997,-0.4,0 -"788",1214,2,1,0,0.259653897311779,0.259653897311779,1,,0,5.3,0.199999999999999,-4 -"789",1215,2,1,0,1.1569722682119,1.1569722682119,1,8,1,-3.9,0.300000000000001,-1 -"790",1216,2,1,0,0.362521141777575,0.362521141777575,0,9,0,-2.1,0.199999999999999,-4 -"791",1217,2,1,0,2,2,0,-4,1,-5.5,0.899999999999999,-5 -"792",1217,2,2,2,3,1,0,-4,1,-5.5,0.899999999999999,-5 -"793",1217,2,3,3,6,3,0,-4,1,-5.5,0.899999999999999,-5 -"794",1217,2,4,6,6.5,0.5,0,-4,1,-5.5,0.899999999999999,-5 -"795",1217,2,5,6.5,7.89329436750641,1.39329436750641,0,-4,1,-5.5,0.899999999999999,-5 -"796",1218,2,1,0,0.377183421954128,0.377183421954128,0,11,1,6.5,-0.0999999999999996,0 -"797",1219,2,1,0,2,2,0,0,0,-2.8,0.300000000000001,-6 -"798",1219,2,2,2,3,1,0,0,0,-2.8,0.300000000000001,-6 -"799",1219,2,3,3,6,3,0,0,0,-2.8,0.300000000000001,-6 -"800",1219,2,4,6,6.5,0.5,0,0,0,-2.8,0.300000000000001,-6 -"801",1219,2,5,6.5,8,1.5,0,0,0,-2.8,0.300000000000001,-6 -"802",1219,2,6,8,8.02509117448629,0.02509117448629,1,0,0,-2.8,0.300000000000001,-6 -"803",1220,2,1,0,2,2,0,13,1,1.6,0.199999999999999,-6 -"804",1220,2,2,2,3,1,0,13,1,1.6,0.199999999999999,-6 -"805",1220,2,3,3,6,3,0,13,1,1.6,0.199999999999999,-6 -"806",1220,2,4,6,6.5,0.5,0,13,1,1.6,0.199999999999999,-6 -"807",1220,2,5,6.5,8,1.5,0,13,1,1.6,0.199999999999999,-6 -"808",1220,2,6,8,8.64471298417514,0.644712984175139,0,13,1,1.6,0.199999999999999,-6 -"809",1221,2,1,0,0.453766691548884,0.453766691548884,1,9,0,-1.8,1.5,-2 -"810",1222,2,1,0,0.457231994012145,0.457231994012145,1,10,0,2.5,0.300000000000001,-3 -"811",1223,2,1,0,2,2,0,-5,0,-0.100000000000001,-0.800000000000001,2 -"812",1223,2,2,2,3,1,0,-5,0,-0.100000000000001,-0.800000000000001,2 -"813",1223,2,3,3,6,3,0,-5,0,-0.100000000000001,-0.800000000000001,2 -"814",1223,2,4,6,6.5,0.5,0,-5,0,-0.100000000000001,-0.800000000000001,2 -"815",1223,2,5,6.5,8,1.5,0,-5,0,-0.100000000000001,-0.800000000000001,2 -"816",1223,2,6,8,10,2,0,-5,0,-0.100000000000001,-0.800000000000001,2 -"817",1224,2,1,0,2,2,0,-45,1,-3.2,1.4,-5 -"818",1224,2,2,2,3,1,0,-45,1,-3.2,1.4,-5 -"819",1224,2,3,3,6,3,0,-45,1,-3.2,1.4,-5 -"820",1224,2,4,6,6.5,0.5,0,-45,1,-3.2,1.4,-5 -"821",1224,2,5,6.5,7.68294960515292,1.18294960515292,0,-45,1,-3.2,1.4,-5 -"822",1225,2,1,0,2,2,0,-15,1,1.2,-0.4,-4 -"823",1225,2,2,2,3,1,0,-15,1,1.2,-0.4,-4 -"824",1225,2,3,3,4.61281129402058,1.61281129402058,0,-15,1,1.2,-0.4,-4 -"825",1226,2,1,0,2,2,0,-35,0,9.59999999999999,-0.300000000000001,2 -"826",1226,2,2,2,3,1,0,-35,0,9.59999999999999,-0.300000000000001,2 -"827",1226,2,3,3,6,3,0,-35,0,9.59999999999999,-0.300000000000001,2 -"828",1226,2,4,6,6.5,0.5,0,-35,0,9.59999999999999,-0.300000000000001,2 -"829",1226,2,5,6.5,8,1.5,0,-35,0,9.59999999999999,-0.300000000000001,2 -"830",1226,2,6,8,10,2,0,-35,0,9.59999999999999,-0.300000000000001,2 -"831",1227,2,1,0,2,2,0,4,1,2.9,-0.5,-2 -"832",1227,2,2,2,2.30646605885717,0.306466058857174,0,4,1,2.9,-0.5,-2 -"833",1228,2,1,0,2,2,0,2,1,-1.4,-1.1,1 -"834",1228,2,2,2,3,1,0,2,1,-1.4,-1.1,1 -"835",1228,2,3,3,6,3,0,2,1,-1.4,-1.1,1 -"836",1228,2,4,6,6.26289964935877,0.262899649358769,0,2,1,-1.4,-1.1,1 -"837",1229,2,1,0,2,2,0,17,0,1.3,0.600000000000001,-12 -"838",1229,2,2,2,3,1,0,17,0,1.3,0.600000000000001,-12 -"839",1229,2,3,3,4.27241519376258,1.27241519376258,0,17,0,1.3,0.600000000000001,-12 -"840",1230,2,1,0,0.549054350485644,0.549054350485644,1,23,1,3.1,0.5,11 -"841",1231,2,1,0,2,2,0,-12,1,3.4,0.5,-1 -"842",1231,2,2,2,3,1,0,-12,1,3.4,0.5,-1 -"843",1231,2,3,3,4.07091911167707,1.07091911167707,0,-12,1,3.4,0.5,-1 -"844",1232,2,1,0,0.224202787055789,0.224202787055789,0,20,1,1.3,0.199999999999999,9 -"845",1233,2,1,0,2,2,0,-7,0,3,-0.4,-6 -"846",1233,2,2,2,3,1,0,-7,0,3,-0.4,-6 -"847",1233,2,3,3,6,3,0,-7,0,3,-0.4,-6 -"848",1233,2,4,6,6.5,0.5,0,-7,0,3,-0.4,-6 -"849",1233,2,5,6.5,8,1.5,0,-7,0,3,-0.4,-6 -"850",1233,2,6,8,9.03358285076168,1.03358285076168,0,-7,0,3,-0.4,-6 -"851",1234,2,1,0,0.0679284256998996,0.0679284256998996,0,-14,1,0.5,0.399999999999999,2 -"852",1235,2,1,0,2,2,0,-1,1,-2.9,-0.4,4 -"853",1235,2,2,2,2.53739154560015,0.537391545600152,1,-1,1,-2.9,-0.4,4 -"854",1236,2,1,0,1.06829946755308,1.06829946755308,1,5,0,-6.9,1.3,9 -"855",1237,2,1,0,2,2,0,-12,1,1.6,-0.4,6 -"856",1237,2,2,2,3,1,0,-12,1,1.6,-0.4,6 -"857",1237,2,3,3,6,3,0,-12,1,1.6,-0.4,6 -"858",1237,2,4,6,6.5,0.5,0,-12,1,1.6,-0.4,6 -"859",1237,2,5,6.5,8,1.5,0,-12,1,1.6,-0.4,6 -"860",1237,2,6,8,10,2,0,-12,1,1.6,-0.4,6 -"861",1238,2,1,0,2,2,0,-16,0,-6.3,0.399999999999999,11 -"862",1238,2,2,2,3,1,0,-16,0,-6.3,0.399999999999999,11 -"863",1238,2,3,3,6,3,0,-16,0,-6.3,0.399999999999999,11 -"864",1238,2,4,6,6.5,0.5,0,-16,0,-6.3,0.399999999999999,11 -"865",1238,2,5,6.5,8,1.5,0,-16,0,-6.3,0.399999999999999,11 -"866",1238,2,6,8,9.64757314373553,1.64757314373553,1,-16,0,-6.3,0.399999999999999,11 -"867",1239,2,1,0,2,2,0,-23,1,1.1,-2.1,1 -"868",1239,2,2,2,3,1,0,-23,1,1.1,-2.1,1 -"869",1239,2,3,3,6,3,0,-23,1,1.1,-2.1,1 -"870",1239,2,4,6,6.5,0.5,0,-23,1,1.1,-2.1,1 -"871",1239,2,5,6.5,8,1.5,0,-23,1,1.1,-2.1,1 -"872",1239,2,6,8,9.71139920669227,1.71139920669227,0,-23,1,1.1,-2.1,1 -"873",1240,2,1,0,2,2,0,3,1,0.299999999999997,0.899999999999999,-3 -"874",1240,2,2,2,3,1,0,3,1,0.299999999999997,0.899999999999999,-3 -"875",1240,2,3,3,4.20251447520382,1.20251447520382,0,3,1,0.299999999999997,0.899999999999999,-3 -"876",1241,2,1,0,0.509770966282016,0.509770966282016,1,24,1,4.4,-0.5,0 -"877",1242,2,1,0,0.554027459309487,0.554027459309487,0,1,1,4.8,0,5 -"878",1243,2,1,0,1.25233940540096,1.25233940540096,1,23,1,0.299999999999997,-0.699999999999999,-1 -"879",1244,2,1,0,0.303999899959234,0.303999899959234,1,-4,0,-9.3,-0.199999999999999,10 -"880",1245,2,1,0,0.484569175530075,0.484569175530075,1,5,0,3.8,0.100000000000001,-2 -"881",1246,2,1,0,2,2,0,-9,0,1.1,0.5,2 -"882",1246,2,2,2,3,1,0,-9,0,1.1,0.5,2 -"883",1246,2,3,3,6,3,0,-9,0,1.1,0.5,2 -"884",1246,2,4,6,6.5,0.5,0,-9,0,1.1,0.5,2 -"885",1246,2,5,6.5,7.73660857597664,1.23660857597664,0,-9,0,1.1,0.5,2 -"886",1247,2,1,0,2,2,0,-22,0,-8.3,-1,4 -"887",1247,2,2,2,3,1,0,-22,0,-8.3,-1,4 -"888",1247,2,3,3,6,3,0,-22,0,-8.3,-1,4 -"889",1247,2,4,6,6.5,0.5,0,-22,0,-8.3,-1,4 -"890",1247,2,5,6.5,7.11995358280769,0.61995358280769,0,-22,0,-8.3,-1,4 -"891",1248,2,1,0,0.854680992924235,0.854680992924235,0,-3,0,5,-0.9,-12 -"892",1249,2,1,0,2,2,0,-4,1,4.7,0.199999999999999,-15 -"893",1249,2,2,2,2.53596738814112,0.535967388141117,1,-4,1,4.7,0.199999999999999,-15 -"894",1250,2,1,0,0.346721358170907,0.346721358170907,1,4,0,0.399999999999999,1.4,1 -"895",1251,2,1,0,1.9226962354864,1.9226962354864,1,9,0,0,0.600000000000001,-3 -"896",1252,2,1,0,0.955904160453949,0.955904160453949,1,13,1,0.399999999999999,0,-2 -"897",1253,2,1,0,0.638451359082921,0.638451359082921,1,16,0,-4.9,1.4,7 -"898",1254,2,1,0,2,2,0,-8,1,0,1,-4 -"899",1254,2,2,2,3,1,0,-8,1,0,1,-4 -"900",1254,2,3,3,5.0740915846226,2.0740915846226,1,-8,1,0,1,-4 -"901",1255,2,1,0,1.22652732729498,1.22652732729498,1,19,0,6.7,0.399999999999999,-3 -"902",1256,2,1,0,2,2,0,0,1,-6,-0.800000000000001,-9 -"903",1256,2,2,2,2.78760513235398,0.78760513235398,0,0,1,-6,-0.800000000000001,-9 -"904",1257,2,1,0,2,2,0,-33,0,3.6,1,3 -"905",1257,2,2,2,3,1,0,-33,0,3.6,1,3 -"906",1257,2,3,3,6,3,0,-33,0,3.6,1,3 -"907",1257,2,4,6,6.5,0.5,0,-33,0,3.6,1,3 -"908",1257,2,5,6.5,7.49325310989323,0.993253109893226,0,-33,0,3.6,1,3 -"909",1258,2,1,0,2,2,0,1,0,6.1,0.399999999999999,3 -"910",1258,2,2,2,3,1,0,1,0,6.1,0.399999999999999,3 -"911",1258,2,3,3,6,3,0,1,0,6.1,0.399999999999999,3 -"912",1258,2,4,6,6.18412197931749,0.184121979317491,1,1,0,6.1,0.399999999999999,3 -"913",1259,2,1,0,0.326423334285255,0.326423334285255,1,44,1,8.59999999999999,-0.300000000000001,-3 -"914",1260,2,1,0,0.874851115223603,0.874851115223603,1,-25,0,-3.3,1.9,2 -"915",1261,2,1,0,2,2,0,-11,1,2.2,-0.300000000000001,0 -"916",1261,2,2,2,3,1,0,-11,1,2.2,-0.300000000000001,0 -"917",1261,2,3,3,6,3,0,-11,1,2.2,-0.300000000000001,0 -"918",1261,2,4,6,6.5,0.5,0,-11,1,2.2,-0.300000000000001,0 -"919",1261,2,5,6.5,6.56237005059952,0.062370050599515,0,-11,1,2.2,-0.300000000000001,0 -"920",1262,2,1,0,2,2,0,-6,0,-5.9,-2.8,-3 -"921",1262,2,2,2,3,1,0,-6,0,-5.9,-2.8,-3 -"922",1262,2,3,3,6,3,0,-6,0,-5.9,-2.8,-3 -"923",1262,2,4,6,6.5,0.5,0,-6,0,-5.9,-2.8,-3 -"924",1262,2,5,6.5,7.19171909493838,0.691719094938383,1,-6,0,-5.9,-2.8,-3 -"925",1263,2,1,0,2,2,0,-19,1,0.100000000000001,0.199999999999999,0 -"926",1263,2,2,2,3,1,0,-19,1,0.100000000000001,0.199999999999999,0 -"927",1263,2,3,3,6,3,0,-19,1,0.100000000000001,0.199999999999999,0 -"928",1263,2,4,6,6.5,0.5,0,-19,1,0.100000000000001,0.199999999999999,0 -"929",1263,2,5,6.5,7.87653444026486,1.37653444026486,0,-19,1,0.100000000000001,0.199999999999999,0 -"930",1264,2,1,0,2,2,0,-37,0,8.3,-0.800000000000001,0 -"931",1264,2,2,2,2.06570778162462,0.0657077816246217,1,-37,0,8.3,-0.800000000000001,0 -"932",1265,2,1,0,2,2,0,-14,1,0.600000000000001,0.399999999999999,3 -"933",1265,2,2,2,2.32652212611721,0.326522126117209,0,-14,1,0.600000000000001,0.399999999999999,3 -"934",1266,2,1,0,1.36937639594812,1.36937639594812,1,1,0,3.4,-1.1,-2 -"935",1267,2,1,0,1.94843917135739,1.94843917135739,0,3,1,1.7,0.5,-5 -"936",1268,2,1,0,0.00777767185116363,0.00777767185116363,1,5,1,4.6,0.399999999999999,3 -"937",1269,2,1,0,0.246036749367798,0.246036749367798,1,-17,1,0.299999999999997,-0.0999999999999996,10 -"938",1270,2,1,0,2,2,0,-15,1,-2.6,-0.6,6 -"939",1270,2,2,2,3,1,0,-15,1,-2.6,-0.6,6 -"940",1270,2,3,3,4.97247408380036,1.97247408380036,0,-15,1,-2.6,-0.6,6 -"941",1271,2,1,0,1.52377477553946,1.52377477553946,1,0,1,6.1,0.100000000000001,1 -"942",1272,2,1,0,1.65427972302302,1.65427972302302,1,5,1,4.1,0.5,-4 -"943",1273,2,1,0,0.0446553775183033,0.0446553775183033,1,20,1,0.5,-1.9,6 -"944",1274,2,1,0,2,2,0,-17,1,-0.799999999999997,-1.1,6 -"945",1274,2,2,2,3,1,0,-17,1,-0.799999999999997,-1.1,6 -"946",1274,2,3,3,6,3,0,-17,1,-0.799999999999997,-1.1,6 -"947",1274,2,4,6,6.34551440232694,0.345514402326939,0,-17,1,-0.799999999999997,-1.1,6 -"948",1275,2,1,0,2,2,0,-14,1,-9.6,-0.9,-7 -"949",1275,2,2,2,3,1,0,-14,1,-9.6,-0.9,-7 -"950",1275,2,3,3,6,3,0,-14,1,-9.6,-0.9,-7 -"951",1275,2,4,6,6.5,0.5,0,-14,1,-9.6,-0.9,-7 -"952",1275,2,5,6.5,8,1.5,0,-14,1,-9.6,-0.9,-7 -"953",1275,2,6,8,10,2,0,-14,1,-9.6,-0.9,-7 -"954",1276,2,1,0,2,2,0,-35,0,-4.7,1.1,3 -"955",1276,2,2,2,3,1,0,-35,0,-4.7,1.1,3 -"956",1276,2,3,3,6,3,0,-35,0,-4.7,1.1,3 -"957",1276,2,4,6,6.5,0.5,0,-35,0,-4.7,1.1,3 -"958",1276,2,5,6.5,8,1.5,0,-35,0,-4.7,1.1,3 -"959",1276,2,6,8,10,2,0,-35,0,-4.7,1.1,3 -"960",1277,2,1,0,2,2,0,-18,0,3.7,0,-1 -"961",1277,2,2,2,3,1,0,-18,0,3.7,0,-1 -"962",1277,2,3,3,4.5238621753926,1.5238621753926,0,-18,0,3.7,0,-1 -"963",1278,2,1,0,2,2,0,10,1,12,-0.9,1 -"964",1278,2,2,2,3,1,0,10,1,12,-0.9,1 -"965",1278,2,3,3,6,3,0,10,1,12,-0.9,1 -"966",1278,2,4,6,6.5,0.5,0,10,1,12,-0.9,1 -"967",1278,2,5,6.5,7.15879856262606,0.658798562626057,0,10,1,12,-0.9,1 -"968",1279,2,1,0,2,2,0,-9,0,-1,-0.6,1 -"969",1279,2,2,2,3,1,0,-9,0,-1,-0.6,1 -"970",1279,2,3,3,6,3,0,-9,0,-1,-0.6,1 -"971",1279,2,4,6,6.5,0.5,0,-9,0,-1,-0.6,1 -"972",1279,2,5,6.5,8,1.5,0,-9,0,-1,-0.6,1 -"973",1279,2,6,8,8.32981425729257,0.329814257292566,0,-9,0,-1,-0.6,1 -"974",1280,2,1,0,0.108946137621162,0.108946137621162,0,-2,1,-6.9,-1.4,2 -"975",1281,2,1,0,2,2,0,2,0,2.1,-0.5,2 -"976",1281,2,2,2,3,1,0,2,0,2.1,-0.5,2 -"977",1281,2,3,3,6,3,0,2,0,2.1,-0.5,2 -"978",1281,2,4,6,6.5,0.5,0,2,0,2.1,-0.5,2 -"979",1281,2,5,6.5,8,1.5,0,2,0,2.1,-0.5,2 -"980",1281,2,6,8,8.30104208565832,0.301042085658321,0,2,0,2.1,-0.5,2 -"981",1282,2,1,0,1.74100264509816,1.74100264509816,1,6,0,4,1,-6 -"982",1283,2,1,0,2,2,0,-12,0,-1.2,0.600000000000001,-8 -"983",1283,2,2,2,3,1,0,-12,0,-1.2,0.600000000000001,-8 -"984",1283,2,3,3,6,3,0,-12,0,-1.2,0.600000000000001,-8 -"985",1283,2,4,6,6.5,0.5,0,-12,0,-1.2,0.600000000000001,-8 -"986",1283,2,5,6.5,8,1.5,0,-12,0,-1.2,0.600000000000001,-8 -"987",1283,2,6,8,10,2,0,-12,0,-1.2,0.600000000000001,-8 -"988",1284,2,1,0,1.51067336488544,1.51067336488544,1,-16,1,0,1.6,-1 -"989",1285,2,1,0,2,2,0,-14,1,2.6,-2,-2 -"990",1285,2,2,2,3,1,0,-14,1,2.6,-2,-2 -"991",1285,2,3,3,6,3,0,-14,1,2.6,-2,-2 -"992",1285,2,4,6,6.5,0.5,0,-14,1,2.6,-2,-2 -"993",1285,2,5,6.5,6.61613169755598,0.116131697555977,0,-14,1,2.6,-2,-2 -"994",1286,2,1,0,2,2,0,5,1,2.5,-0.5,8 -"995",1286,2,2,2,3,1,0,5,1,2.5,-0.5,8 -"996",1286,2,3,3,6,3,0,5,1,2.5,-0.5,8 -"997",1286,2,4,6,6.5,0.5,0,5,1,2.5,-0.5,8 -"998",1286,2,5,6.5,7.97092869623753,1.47092869623753,1,5,1,2.5,-0.5,8 -"999",1287,2,1,0,1.46265690015847,1.46265690015847,0,-16,0,1.7,-1,-9 -"1000",1288,2,1,0,1.50361975089946,1.50361975089946,1,19,1,3,-0.300000000000001,1 -"1001",1289,2,1,0,0.530178363687952,0.530178363687952,0,16,1,2.2,0.600000000000001, -"1002",1290,2,1,0,0.690453544074085,0.690453544074085,0,20,1,-2.8,-0.6,-4 -"1003",1291,2,1,0,1.61274976558091,1.61274976558091,1,1,0,2.9,-1.5,5 -"1004",1292,2,1,0,0.830359998782999,0.830359998782999,1,6,0,3.1,1.1,0 -"1005",1293,2,1,0,2,2,0,-8,0,5.3,-1.3,1 -"1006",1293,2,2,2,3,1,0,-8,0,5.3,-1.3,1 -"1007",1293,2,3,3,6,3,0,-8,0,5.3,-1.3,1 -"1008",1293,2,4,6,6.5,0.5,0,-8,0,5.3,-1.3,1 -"1009",1293,2,5,6.5,8,1.5,0,-8,0,5.3,-1.3,1 -"1010",1293,2,6,8,10,2,0,-8,0,5.3,-1.3,1 -"1011",1294,2,1,0,0.247982929522215,0.247982929522215,1,-3,1,0.200000000000003,-0.199999999999999,-1 -"1012",1295,2,1,0,2,2,0,30,1,-8.6,0, -"1013",1295,2,2,2,3,1,0,30,1,-8.6,0, -"1014",1295,2,3,3,6,3,0,30,1,-8.6,0, -"1015",1295,2,4,6,6.5,0.5,0,30,1,-8.6,0, -"1016",1295,2,5,6.5,8,1.5,0,30,1,-8.6,0, -"1017",1295,2,6,8,9.9377618575423,1.9377618575423,0,30,1,-8.6,0, -"1018",1296,2,1,0,2,2,0,8,1,1.7,-1.2,2 -"1019",1296,2,2,2,3,1,0,8,1,1.7,-1.2,2 -"1020",1296,2,3,3,3.95501371536444,0.955013715364443,0,8,1,1.7,-1.2,2 -"1021",1297,2,1,0,2,2,0,-1,1,-4.3,-0.6,6 -"1022",1297,2,2,2,2.41602617406581,0.416026174065809,0,-1,1,-4.3,-0.6,6 -"1023",1298,2,1,0,0.417085445804731,0.417085445804731,0,-4,1,-3.2,-1.5,9 -"1024",1299,2,1,0,0.453139922221632,0.453139922221632,0,9,1,-1.7,1.3,-2 -"1025",1300,2,1,0,2,2,0,7,1,2.2,-0.0999999999999996,-7 -"1026",1300,2,2,2,3,1,0,7,1,2.2,-0.0999999999999996,-7 -"1027",1300,2,3,3,5.06096801686358,2.06096801686358,0,7,1,2.2,-0.0999999999999996,-7 -"1028",1301,2,1,0,1.29064404736323,1.29064404736323,0,22,0,-2.4,-1,-15 -"1029",1302,2,1,0,0.720698673209629,0.720698673209629,0,-9,1,-1.4,-0.5,-6 -"1030",1303,2,1,0,0.369854406558231,0.369854406558231,0,5,0,0.200000000000003,0.899999999999999,-5 -"1031",1304,2,1,0,0.464266149611393,0.464266149611393,1,17,0,8.8,-0.699999999999999,2 -"1032",1305,2,1,0,2,2,0,-14,0,-1.1,-1,1 -"1033",1305,2,2,2,3,1,0,-14,0,-1.1,-1,1 -"1034",1305,2,3,3,6,3,0,-14,0,-1.1,-1,1 -"1035",1305,2,4,6,6.5,0.5,0,-14,0,-1.1,-1,1 -"1036",1305,2,5,6.5,8,1.5,0,-14,0,-1.1,-1,1 -"1037",1305,2,6,8,10,2,0,-14,0,-1.1,-1,1 -"1038",1306,2,1,0,1.60692575785383,1.60692575785383,1,1,1,5.6,-1.3,-3 -"1039",1307,2,1,0,1.9666199641675,1.9666199641675,1,23,1,-1.3,0.399999999999999,2 -"1040",1308,2,1,0,0.148563869496183,0.148563869496183,1,21,1,10.6,0.300000000000001,-1 -"1041",1309,2,1,0,2,2,0,14,1,-0.600000000000001,0.5,-4 -"1042",1309,2,2,2,3,1,0,14,1,-0.600000000000001,0.5,-4 -"1043",1309,2,3,3,6,3,0,14,1,-0.600000000000001,0.5,-4 -"1044",1309,2,4,6,6.5,0.5,0,14,1,-0.600000000000001,0.5,-4 -"1045",1309,2,5,6.5,8,1.5,0,14,1,-0.600000000000001,0.5,-4 -"1046",1309,2,6,8,8.1952153353847,0.195215335384704,0,14,1,-0.600000000000001,0.5,-4 -"1047",1310,2,1,0,2,2,0,-27,1,-4.4,0.800000000000001,-5 -"1048",1310,2,2,2,2.97563000293069,0.975630002930686,0,-27,1,-4.4,0.800000000000001,-5 -"1049",1311,2,1,0,1.38139669846069,1.38139669846069,1,-13,0,-0.5,-0.699999999999999,3 -"1050",1312,2,1,0,1.77087554943841,1.77087554943841,0,-25,1,2.9,-0.300000000000001,0 -"1051",1313,2,1,0,1.24071007736917,1.24071007736917,1,10,0,1.4,-0.4,-2 -"1052",1314,2,1,0,0.493215134564454,0.493215134564454,0,17,1,-3.8,-0.0999999999999996,-4 -"1053",1315,2,1,0,0.192226476803008,0.192226476803008,1,-19,0,1.8,1.2,9 -"1054",1316,2,1,0,2,2,0,,1,0.100000000000001,-0.800000000000001,10 -"1055",1316,2,2,2,3,1,0,,1,0.100000000000001,-0.800000000000001,10 -"1056",1316,2,3,3,4.18660487524441,1.18660487524441,0,,1,0.100000000000001,-0.800000000000001,10 -"1057",1317,2,1,0,0.251403314154105,0.251403314154105,1,8,1,-5.9,2.6,-2 -"1058",1318,2,1,0,0.104111109062193,0.104111109062193,1,28,0,-8.1,2.1,2 -"1059",1319,2,1,0,1.67955645707509,1.67955645707509,0,-10,1,-3.6,-1.4,-3 -"1060",1320,2,1,0,0.962541580724237,0.962541580724237,1,15,0,-1.7,-0.5,4 -"1061",1321,2,1,0,1.82746030562596,1.82746030562596,1,-32,0,2.1,-0.0999999999999996,8 -"1062",1322,2,1,0,2,2,0,-9,0,5.9,-0.699999999999999,-1 -"1063",1322,2,2,2,3,1,0,-9,0,5.9,-0.699999999999999,-1 -"1064",1322,2,3,3,6,3,0,-9,0,5.9,-0.699999999999999,-1 -"1065",1322,2,4,6,6.41218577356817,0.412185773568171,0,-9,0,5.9,-0.699999999999999,-1 -"1066",1323,2,1,0,2,2,0,-29,1,4.8,1,2 -"1067",1323,2,2,2,3,1,0,-29,1,4.8,1,2 -"1068",1323,2,3,3,6,3,0,-29,1,4.8,1,2 -"1069",1323,2,4,6,6.5,0.5,0,-29,1,4.8,1,2 -"1070",1323,2,5,6.5,7.84156579837324,1.34156579837324,0,-29,1,4.8,1,2 -"1071",1324,2,1,0,0.18937357798626,0.18937357798626,1,28,0,-2.4,0.5,3 -"1072",1325,2,1,0,0.748070318476395,0.748070318476395,1,-1,0,-8,1.7,5 -"1073",1326,2,1,0,2,2,0,-15,0,-0.299999999999997,-0.6,-5 -"1074",1326,2,2,2,3,1,0,-15,0,-0.299999999999997,-0.6,-5 -"1075",1326,2,3,3,6,3,0,-15,0,-0.299999999999997,-0.6,-5 -"1076",1326,2,4,6,6.5,0.5,0,-15,0,-0.299999999999997,-0.6,-5 -"1077",1326,2,5,6.5,8,1.5,0,-15,0,-0.299999999999997,-0.6,-5 -"1078",1326,2,6,8,10,2,0,-15,0,-0.299999999999997,-0.6,-5 -"1079",1327,2,1,0,0.725269303925157,0.725269303925157,0,12,0,-2.4,0.800000000000001,-9 -"1080",1328,2,1,0,1.78089538909567,1.78089538909567,0,9,1,-4,1.4,-4 -"1081",1329,2,1,0,0.169522574107955,0.169522574107955,1,-5,0,,1.6,-1 -"1082",1330,2,1,0,2,2,0,6,1,1.6,-1,4 -"1083",1330,2,2,2,3,1,0,6,1,1.6,-1,4 -"1084",1330,2,3,3,6,3,0,6,1,1.6,-1,4 -"1085",1330,2,4,6,6.19676042162617,0.196760421626169,0,6,1,1.6,-1,4 -"1086",1331,2,1,0,0.0880558943025384,0.0880558943025384,0,2,0,-2,1.6,1 -"1087",1332,2,1,0,1.54802299362324,1.54802299362324,1,21,1,-4,0,-4 -"1088",1333,2,1,0,0.652350365551151,0.652350365551151,1,-2,0,3.3,-0.699999999999999,-2 -"1089",1334,2,1,0,1.35704518617396,1.35704518617396,0,-10,1,3.5,-0.800000000000001,-1 -"1090",1335,2,1,0,1.80749637940498,1.80749637940498,0,-1,0,0.5,0.100000000000001,-6 -"1091",1336,2,1,0,2,2,0,-7,0,2.9,-1.2,-4 -"1092",1336,2,2,2,3,1,0,-7,0,2.9,-1.2,-4 -"1093",1336,2,3,3,6,3,0,-7,0,2.9,-1.2,-4 -"1094",1336,2,4,6,6.5,0.5,0,-7,0,2.9,-1.2,-4 -"1095",1336,2,5,6.5,8,1.5,0,-7,0,2.9,-1.2,-4 -"1096",1336,2,6,8,10,2,0,-7,0,2.9,-1.2,-4 -"1097",1337,2,1,0,1.0285260725771,1.0285260725771,0,-10,1,-2.1,0,7 -"1098",1338,2,1,0,0.327049569387623,0.327049569387623,0,9,1,-3.3,-2.2,-1 -"1099",1339,2,1,0,2,2,0,-5,1,0.799999999999997,-0.5,3 -"1100",1339,2,2,2,3,1,0,-5,1,0.799999999999997,-0.5,3 -"1101",1339,2,3,3,6,3,0,-5,1,0.799999999999997,-0.5,3 -"1102",1339,2,4,6,6.5,0.5,0,-5,1,0.799999999999997,-0.5,3 -"1103",1339,2,5,6.5,7.31008507971826,0.810085079718255,1,-5,1,0.799999999999997,-0.5,3 -"1104",1340,2,1,0,2,2,0,-18,0,4.4,0.5,-3 -"1105",1340,2,2,2,3,1,0,-18,0,4.4,0.5,-3 -"1106",1340,2,3,3,6,3,0,-18,0,4.4,0.5,-3 -"1107",1340,2,4,6,6.05404043756377,0.0540404375637732,0,-18,0,4.4,0.5,-3 -"1108",1341,2,1,0,2,2,0,-10,0,0.299999999999997,0.300000000000001,-1 -"1109",1341,2,2,2,3,1,0,-10,0,0.299999999999997,0.300000000000001,-1 -"1110",1341,2,3,3,6,3,0,-10,0,0.299999999999997,0.300000000000001,-1 -"1111",1341,2,4,6,6.06219395747146,0.0621939574714563,0,-10,0,0.299999999999997,0.300000000000001,-1 -"1112",1342,2,1,0,0.92154823672938,0.92154823672938,0,-22,1,-4.5,-0.699999999999999,3 -"1113",1343,2,1,0,2,2,0,-13,0,5.1,0,-12 -"1114",1343,2,2,2,3,1,0,-13,0,5.1,0,-12 -"1115",1343,2,3,3,5.41577971525942,2.41577971525942,0,-13,0,5.1,0,-12 -"1116",1344,2,1,0,2,2,0,-6,0,-5.8,-0.5,4 -"1117",1344,2,2,2,3,1,0,-6,0,-5.8,-0.5,4 -"1118",1344,2,3,3,6,3,0,-6,0,-5.8,-0.5,4 -"1119",1344,2,4,6,6.5,0.5,0,-6,0,-5.8,-0.5,4 -"1120",1344,2,5,6.5,7.12190020512302,0.621900205123016,1,-6,0,-5.8,-0.5,4 -"1121",1345,2,1,0,2,2,0,-9,1,0.299999999999997,0.5,1 -"1122",1345,2,2,2,2.18682997110909,0.186829971109095,0,-9,1,0.299999999999997,0.5,1 -"1123",1346,2,1,0,0.0721061239702687,0.0721061239702687,0,12,0,-0.200000000000003,1.7,-6 -"1124",1347,2,1,0,0.661031478404967,0.661031478404967,0,-1,0,7.1,-0.300000000000001,3 -"1125",1348,2,1,0,0.745451226646672,0.745451226646672,0,17,1,2.4,-0.300000000000001,3 -"1126",1349,2,1,0,0.437359316971495,0.437359316971495,1,,1,-5.2,-1.2,2 -"1127",1350,2,1,0,2,2,0,9,0,-2.7,-1,-6 -"1128",1350,2,2,2,3,1,0,9,0,-2.7,-1,-6 -"1129",1350,2,3,3,6,3,0,9,0,-2.7,-1,-6 -"1130",1350,2,4,6,6.5,0.5,0,9,0,-2.7,-1,-6 -"1131",1350,2,5,6.5,8,1.5,0,9,0,-2.7,-1,-6 -"1132",1350,2,6,8,10,2,0,9,0,-2.7,-1,-6 -"1133",1351,2,1,0,2,2,0,1,1,1.9,-1.6,-1 -"1134",1351,2,2,2,3,1,0,1,1,1.9,-1.6,-1 -"1135",1351,2,3,3,3.62622553514881,0.626225535148806,0,1,1,1.9,-1.6,-1 -"1136",1352,2,1,0,0.494900865585638,0.494900865585638,1,-10,1,-5.3,1.2,5 -"1137",1353,2,1,0,2,2,0,14,1,2.2,0.100000000000001,-2 -"1138",1353,2,2,2,3,1,0,14,1,2.2,0.100000000000001,-2 -"1139",1353,2,3,3,6,3,0,14,1,2.2,0.100000000000001,-2 -"1140",1353,2,4,6,6.5,0.5,0,14,1,2.2,0.100000000000001,-2 -"1141",1353,2,5,6.5,8,1.5,0,14,1,2.2,0.100000000000001,-2 -"1142",1353,2,6,8,10,2,0,14,1,2.2,0.100000000000001,-2 -"1143",1354,2,1,0,2,2,0,0,0,1.6,-0.6,0 -"1144",1354,2,2,2,3,1,0,0,0,1.6,-0.6,0 -"1145",1354,2,3,3,5.16623190591837,2.16623190591837,0,0,0,1.6,-0.6,0 -"1146",1355,2,1,0,2,2,0,13,1,-3.2,-0.800000000000001,-12 -"1147",1355,2,2,2,3,1,0,13,1,-3.2,-0.800000000000001,-12 -"1148",1355,2,3,3,6,3,0,13,1,-3.2,-0.800000000000001,-12 -"1149",1355,2,4,6,6.5,0.5,0,13,1,-3.2,-0.800000000000001,-12 -"1150",1355,2,5,6.5,8,1.5,0,13,1,-3.2,-0.800000000000001,-12 -"1151",1355,2,6,8,10,2,0,13,1,-3.2,-0.800000000000001,-12 -"1152",1356,2,1,0,0.130859200648476,0.130859200648476,0,6,1,-2.7,0.5,2 -"1153",1357,2,1,0,2,2,0,-25,1,-5.3,0.800000000000001,5 -"1154",1357,2,2,2,3,1,0,-25,1,-5.3,0.800000000000001,5 -"1155",1357,2,3,3,6,3,0,-25,1,-5.3,0.800000000000001,5 -"1156",1357,2,4,6,6.5,0.5,0,-25,1,-5.3,0.800000000000001,5 -"1157",1357,2,5,6.5,8,1.5,0,-25,1,-5.3,0.800000000000001,5 -"1158",1357,2,6,8,8.1536886238844,0.153688623884398,0,-25,1,-5.3,0.800000000000001,5 -"1159",1358,2,1,0,2,2,0,-10,0,10.8,0.5,-2 -"1160",1358,2,2,2,3,1,0,-10,0,10.8,0.5,-2 -"1161",1358,2,3,3,6,3,0,-10,0,10.8,0.5,-2 -"1162",1358,2,4,6,6.5,0.5,0,-10,0,10.8,0.5,-2 -"1163",1358,2,5,6.5,8,1.5,0,-10,0,10.8,0.5,-2 -"1164",1358,2,6,8,10,2,0,-10,0,10.8,0.5,-2 -"1165",1359,2,1,,,,,22,0,-4.5,2.3,7 -"1166",1360,2,1,0,1.86058672219489,1.86058672219489,1,-34,0,-1.5,1.3,0 -"1167",1361,2,1,0,1.84342215893564,1.84342215893564,1,12,0,5.4,0.199999999999999,3 -"1168",1362,2,1,0,0.66893554369593,0.66893554369593,1,24,0,-2,-1.6,-1 -"1169",1363,2,1,0,2,2,0,11,0,5.6,,4 -"1170",1363,2,2,2,2.36171301392602,0.36171301392602,1,11,0,5.6,,4 -"1171",1364,2,1,0,2,2,0,5,1,0.700000000000003,0.199999999999999,-1 -"1172",1364,2,2,2,3,1,0,5,1,0.700000000000003,0.199999999999999,-1 -"1173",1364,2,3,3,6,3,0,5,1,0.700000000000003,0.199999999999999,-1 -"1174",1364,2,4,6,6.5,0.5,0,5,1,0.700000000000003,0.199999999999999,-1 -"1175",1364,2,5,6.5,8,1.5,0,5,1,0.700000000000003,0.199999999999999,-1 -"1176",1364,2,6,8,10,2,0,5,1,0.700000000000003,0.199999999999999,-1 -"1177",1365,2,1,0,0.755778362215409,0.755778362215409,0,7,1,3.2,0,5 -"1178",1366,2,1,0,0.530393935396258,0.530393935396258,0,17,1,-3.4,0.800000000000001,-6 -"1179",1367,2,1,0,2,2,0,-13,1,3.4,0.699999999999999,8 -"1180",1367,2,2,2,3,1,0,-13,1,3.4,0.699999999999999,8 -"1181",1367,2,3,3,4.13414807132132,1.13414807132132,0,-13,1,3.4,0.699999999999999,8 -"1182",1368,2,1,0,2,2,0,-20,1,-0.700000000000003,-0.6,-6 -"1183",1368,2,2,2,2.40193826172883,0.401938261728831,0,-20,1,-0.700000000000003,-0.6,-6 -"1184",1369,2,1,0,2,2,0,20,1,0.799999999999997,-0.9,-3 -"1185",1369,2,2,2,3,1,0,20,1,0.799999999999997,-0.9,-3 -"1186",1369,2,3,3,6,3,0,20,1,0.799999999999997,-0.9,-3 -"1187",1369,2,4,6,6.5,0.5,0,20,1,0.799999999999997,-0.9,-3 -"1188",1369,2,5,6.5,6.74524989686136,0.245249896861358,0,20,1,0.799999999999997,-0.9,-3 -"1189",1370,2,1,0,1.88427458320932,1.88427458320932,0,-13,1,-2.2,1.1,-11 -"1190",1371,2,1,0,2,2,0,1,0,-7,0.899999999999999,-1 -"1191",1371,2,2,2,3,1,0,1,0,-7,0.899999999999999,-1 -"1192",1371,2,3,3,6,3,0,1,0,-7,0.899999999999999,-1 -"1193",1371,2,4,6,6.5,0.5,0,1,0,-7,0.899999999999999,-1 -"1194",1371,2,5,6.5,7.1718197544946,0.671819754494595,0,1,0,-7,0.899999999999999,-1 -"1195",1372,2,1,0,1.46584201524255,1.46584201524255,0,9,1,0.899999999999999,-1.2,-6 -"1196",1373,2,1,0,2,2,0,25,0,-8.7,-1.1,-3 -"1197",1373,2,2,2,2.88269647783043,0.882696477830433,0,25,0,-8.7,-1.1,-3 -"1198",1374,2,1,0,0.0435531506121649,0.0435531506121649,1,11,0,-3.6,1,-3 -"1199",1375,2,1,0,2,2,0,-4,1,3.1,0.600000000000001,0 -"1200",1375,2,2,2,2.87459559868179,0.87459559868179,0,-4,1,3.1,0.600000000000001,0 -"1201",1376,2,1,0,2,2,0,-21,0,3,-0.0999999999999996,2 -"1202",1376,2,2,2,3,1,0,-21,0,3,-0.0999999999999996,2 -"1203",1376,2,3,3,6,3,0,-21,0,3,-0.0999999999999996,2 -"1204",1376,2,4,6,6.5,0.5,0,-21,0,3,-0.0999999999999996,2 -"1205",1376,2,5,6.5,8,1.5,0,-21,0,3,-0.0999999999999996,2 -"1206",1376,2,6,8,8.01751614633534,0.0175161463353394,0,-21,0,3,-0.0999999999999996,2 -"1207",1377,2,1,0,2,2,0,17,0,-1.5,-0.300000000000001,4 -"1208",1377,2,2,2,3,1,0,17,0,-1.5,-0.300000000000001,4 -"1209",1377,2,3,3,3.15212127129957,0.152121271299567,1,17,0,-1.5,-0.300000000000001,4 -"1210",1378,2,1,0,2,2,0,-12,0,-7.1,-1.1,2 -"1211",1378,2,2,2,2.16459464730521,0.164594647305214,0,-12,0,-7.1,-1.1,2 -"1212",1379,2,1,0,2,2,0,2,0,-6,,-9 -"1213",1379,2,2,2,2.02572531682797,0.0257253168279702,1,2,0,-6,,-9 -"1214",1380,2,1,0,1.07112952946288,1.07112952946288,1,-6,1,-0.700000000000003,1.1,-4 -"1215",1381,2,1,,,,,7,1,-0.299999999999997,-0.199999999999999,1 -"1216",1382,2,1,0,0.968450280773761,0.968450280773761,1,16,0,-1,-1.1,7 -"1217",1383,2,1,0,2,2,0,13,1,0.100000000000001,0.199999999999999,0 -"1218",1383,2,2,2,3,1,0,13,1,0.100000000000001,0.199999999999999,0 -"1219",1383,2,3,3,4.71882772363803,1.71882772363803,1,13,1,0.100000000000001,0.199999999999999,0 -"1220",1384,2,1,0,1.07820831716507,1.07820831716507,1,0,1,-3.5,0.699999999999999,1 -"1221",1385,2,1,0,2,2,0,10,1,-1.3,-0.199999999999999,-4 -"1222",1385,2,2,2,3,1,0,10,1,-1.3,-0.199999999999999,-4 -"1223",1385,2,3,3,6,3,0,10,1,-1.3,-0.199999999999999,-4 -"1224",1385,2,4,6,6.5,0.5,0,10,1,-1.3,-0.199999999999999,-4 -"1225",1385,2,5,6.5,8,1.5,0,10,1,-1.3,-0.199999999999999,-4 -"1226",1385,2,6,8,10,2,0,10,1,-1.3,-0.199999999999999,-4 -"1227",1386,2,1,0,2,2,0,-22,1,-5.6,-0.0999999999999996,0 -"1228",1386,2,2,2,3,1,0,-22,1,-5.6,-0.0999999999999996,0 -"1229",1386,2,3,3,6,3,0,-22,1,-5.6,-0.0999999999999996,0 -"1230",1386,2,4,6,6.5,0.5,0,-22,1,-5.6,-0.0999999999999996,0 -"1231",1386,2,5,6.5,7.31842178165258,0.81842178165258,1,-22,1,-5.6,-0.0999999999999996,0 -"1232",1387,2,1,0,2,2,0,-3,1,-2.3,1.1,2 -"1233",1387,2,2,2,3,1,0,-3,1,-2.3,1.1,2 -"1234",1387,2,3,3,6,3,0,-3,1,-2.3,1.1,2 -"1235",1387,2,4,6,6.5,0.5,0,-3,1,-2.3,1.1,2 -"1236",1387,2,5,6.5,8,1.5,0,-3,1,-2.3,1.1,2 -"1237",1387,2,6,8,10,2,0,-3,1,-2.3,1.1,2 -"1238",1388,2,1,0,0.0622440673820832,0.0622440673820832,1,-10,1,-4.1,1,1 -"1239",1389,2,1,0,0.723074599259878,0.723074599259878,1,12,0,1.7,0,-6 -"1240",1390,2,1,0,2,2,0,-25,1,2.3,1,-1 -"1241",1390,2,2,2,2.68333520870146,0.68333520870146,0,-25,1,2.3,1,-1 -"1242",1391,2,1,0,2,2,0,19,1,-1.7,-0.800000000000001,3 -"1243",1391,2,2,2,3,1,0,19,1,-1.7,-0.800000000000001,3 -"1244",1391,2,3,3,4.40607892950458,1.40607892950458,0,19,1,-1.7,-0.800000000000001,3 -"1245",1392,2,1,0,0.658089855034855,0.658089855034855,1,26,0,1.7,-1.3,10 -"1246",1393,2,1,0,1.03939309015924,1.03939309015924,1,16,1,-3.5,-0.0999999999999996,4 -"1247",1394,2,1,0,0.0975340315441983,0.0975340315441983,1,-4,1,7.4,-0.0999999999999996,5 -"1248",1395,2,1,0,0.519093963329223,0.519093963329223,0,2,1,-0.899999999999999,1.4,2 -"1249",1396,2,1,0,1.53633959396638,1.53633959396638,0,6,0,1.2,-0.199999999999999,1 -"1250",1397,2,1,0,0.342785597078455,0.342785597078455,1,13,0,0.600000000000001,-0.300000000000001,-1 -"1251",1398,2,1,0,0.0747504945711214,0.0747504945711214,1,-2,1,-0.399999999999999,0.699999999999999,4 -"1252",1399,2,1,0,0.366111166416221,0.366111166416221,1,5,0,-4.3,0.600000000000001,-7 -"1253",1400,2,1,0,0.603133288682546,0.603133288682546,1,-19,1,-1.3,0.5,1 -"1254",1401,2,1,0,2,2,0,-3,0,-3.4,0.600000000000001,-7 -"1255",1401,2,2,2,3,1,0,-3,0,-3.4,0.600000000000001,-7 -"1256",1401,2,3,3,3.72230041191012,0.722300411910123,0,-3,0,-3.4,0.600000000000001,-7 -"1257",1402,2,1,0,2,2,0,0,0,3.5,-1.1,5 -"1258",1402,2,2,2,3,1,0,0,0,3.5,-1.1,5 -"1259",1402,2,3,3,3.83404380539465,0.83404380539465,1,0,0,3.5,-1.1,5 -"1260",1403,2,1,0,0.183153193272342,0.183153193272342,1,-1,0,4.8,-1.4,4 -"1261",1404,2,1,0,2,2,0,0,1,0.700000000000003,0.600000000000001,0 -"1262",1404,2,2,2,3,1,0,0,1,0.700000000000003,0.600000000000001,0 -"1263",1404,2,3,3,6,3,0,0,1,0.700000000000003,0.600000000000001,0 -"1264",1404,2,4,6,6.5,0.5,0,0,1,0.700000000000003,0.600000000000001,0 -"1265",1404,2,5,6.5,8,1.5,0,0,1,0.700000000000003,0.600000000000001,0 -"1266",1404,2,6,8,9.3088564666388,1.3088564666388,1,0,1,0.700000000000003,0.600000000000001,0 -"1267",1405,2,1,0,1.12753347346723,1.12753347346723,1,24,0,-1,-0.199999999999999,-5 -"1268",1406,2,1,0,2,2,0,-36,1,4.9,1.4,0 -"1269",1406,2,2,2,3,1,0,-36,1,4.9,1.4,0 -"1270",1406,2,3,3,4.26995065607518,1.26995065607519,0,-36,1,4.9,1.4,0 -"1271",1407,2,1,0,2,2,0,-16,0,1,-0.6,-4 -"1272",1407,2,2,2,3,1,0,-16,0,1,-0.6,-4 -"1273",1407,2,3,3,6,3,0,-16,0,1,-0.6,-4 -"1274",1407,2,4,6,6.2011442349896,0.201144234989598,1,-16,0,1,-0.6,-4 -"1275",1408,2,1,0,2,2,0,-12,0,3.7,2.2,-1 -"1276",1408,2,2,2,3,1,0,-12,0,3.7,2.2,-1 -"1277",1408,2,3,3,5.58990966859779,2.58990966859779,0,-12,0,3.7,2.2,-1 -"1278",1409,2,1,0,1.34690495638572,1.34690495638572,1,20,0,2.4,-1.7,4 -"1279",1410,2,1,0,1.46034335966028,1.46034335966028,1,-3,1,0,1.5,-12 -"1280",1411,2,1,0,0.321417748798778,0.321417748798778,1,4,1,-0.100000000000001,0.300000000000001,6 -"1281",1412,2,1,0,0.366684633119445,0.366684633119445,1,-3,0,-4.7,0.300000000000001,1 -"1282",1413,2,1,0,2,2,0,-1,1,4.8,-0.6,4 -"1283",1413,2,2,2,3,1,0,-1,1,4.8,-0.6,4 -"1284",1413,2,3,3,6,3,0,-1,1,4.8,-0.6,4 -"1285",1413,2,4,6,6.5,0.5,0,-1,1,4.8,-0.6,4 -"1286",1413,2,5,6.5,8,1.5,0,-1,1,4.8,-0.6,4 -"1287",1413,2,6,8,10,2,0,-1,1,4.8,-0.6,4 -"1288",1414,2,1,0,2,2,0,-19,0,-1.6,-0.6,-6 -"1289",1414,2,2,2,3,1,0,-19,0,-1.6,-0.6,-6 -"1290",1414,2,3,3,6,3,0,-19,0,-1.6,-0.6,-6 -"1291",1414,2,4,6,6.5,0.5,0,-19,0,-1.6,-0.6,-6 -"1292",1414,2,5,6.5,8,1.5,0,-19,0,-1.6,-0.6,-6 -"1293",1414,2,6,8,10,2,0,-19,0,-1.6,-0.6,-6 -"1294",1415,2,1,0,2,2,0,9,0,1.5,-0.699999999999999,-3 -"1295",1415,2,2,2,3,1,0,9,0,1.5,-0.699999999999999,-3 -"1296",1415,2,3,3,6,3,0,9,0,1.5,-0.699999999999999,-3 -"1297",1415,2,4,6,6.5,0.5,0,9,0,1.5,-0.699999999999999,-3 -"1298",1415,2,5,6.5,8,1.5,0,9,0,1.5,-0.699999999999999,-3 -"1299",1415,2,6,8,9.86639326907633,1.86639326907634,1,9,0,1.5,-0.699999999999999,-3 -"1300",1416,2,1,0,2,2,0,11,1,2.5,-0.5,-1 -"1301",1416,2,2,2,3,1,0,11,1,2.5,-0.5,-1 -"1302",1416,2,3,3,4.42402973112752,1.42402973112752,0,11,1,2.5,-0.5,-1 -"1303",1417,2,1,0,2,2,0,17,0,-2.6,0.899999999999999,-8 -"1304",1417,2,2,2,3,1,0,17,0,-2.6,0.899999999999999,-8 -"1305",1417,2,3,3,6,3,0,17,0,-2.6,0.899999999999999,-8 -"1306",1417,2,4,6,6.5,0.5,0,17,0,-2.6,0.899999999999999,-8 -"1307",1417,2,5,6.5,8,1.5,0,17,0,-2.6,0.899999999999999,-8 -"1308",1417,2,6,8,10,2,0,17,0,-2.6,0.899999999999999,-8 -"1309",1418,2,1,0,1.90768521458056,1.90768521458056,0,6,1,0.100000000000001,-0.300000000000001,0 -"1310",1419,2,1,0,1.13962779576004,1.13962779576004,0,-20,0,8,-2,-5 -"1311",1420,2,1,0,2,2,0,-3,1,-3.3,-0.300000000000001,6 -"1312",1420,2,2,2,3,1,0,-3,1,-3.3,-0.300000000000001,6 -"1313",1420,2,3,3,6,3,0,-3,1,-3.3,-0.300000000000001,6 -"1314",1420,2,4,6,6.5,0.5,0,-3,1,-3.3,-0.300000000000001,6 -"1315",1420,2,5,6.5,8,1.5,0,-3,1,-3.3,-0.300000000000001,6 -"1316",1420,2,6,8,10,2,0,-3,1,-3.3,-0.300000000000001,6 -"1317",1421,2,1,0,2,2,0,-2,1,-1,-1.2,-1 -"1318",1421,2,2,2,3,1,0,-2,1,-1,-1.2,-1 -"1319",1421,2,3,3,6,3,0,-2,1,-1,-1.2,-1 -"1320",1421,2,4,6,6.5,0.5,0,-2,1,-1,-1.2,-1 -"1321",1421,2,5,6.5,8,1.5,0,-2,1,-1,-1.2,-1 -"1322",1421,2,6,8,10,2,0,-2,1,-1,-1.2,-1 -"1323",1422,2,1,0,2,2,0,-24,,-2.9,-1.2,-3 -"1324",1422,2,2,2,3,1,0,-24,,-2.9,-1.2,-3 -"1325",1422,2,3,3,5.02861679006672,2.02861679006672,0,-24,,-2.9,-1.2,-3 -"1326",1423,2,1,0,2,2,0,-3,1,-3,0.699999999999999,-6 -"1327",1423,2,2,2,3,1,0,-3,1,-3,0.699999999999999,-6 -"1328",1423,2,3,3,4.04859372597651,1.04859372597651,0,-3,1,-3,0.699999999999999,-6 -"1329",1424,2,1,0,0.0869810534319128,0.0869810534319128,0,-1,0,-0.200000000000003,-1.8,2 -"1330",1425,2,1,0,2,2,0,-11,0,5.1,0.699999999999999,0 -"1331",1425,2,2,2,2.61491540529468,0.614915405294681,1,-11,0,5.1,0.699999999999999,0 -"1332",1426,2,1,0,2,2,0,-15,1,8.2,1.1,2 -"1333",1426,2,2,2,3,1,0,-15,1,8.2,1.1,2 -"1334",1426,2,3,3,6,3,0,-15,1,8.2,1.1,2 -"1335",1426,2,4,6,6.5,0.5,0,-15,1,8.2,1.1,2 -"1336",1426,2,5,6.5,8,1.5,0,-15,1,8.2,1.1,2 -"1337",1426,2,6,8,10,2,0,-15,1,8.2,1.1,2 -"1338",1427,2,1,0,0.816825684284033,0.816825684284033,0,5,0,-3.2,-0.699999999999999,-9 -"1339",1428,2,1,0,2,2,0,-1,1,-2.6,0,-3 -"1340",1428,2,2,2,3,1,0,-1,1,-2.6,0,-3 -"1341",1428,2,3,3,6,3,0,-1,1,-2.6,0,-3 -"1342",1428,2,4,6,6.5,0.5,0,-1,1,-2.6,0,-3 -"1343",1428,2,5,6.5,8,1.5,0,-1,1,-2.6,0,-3 -"1344",1428,2,6,8,10,2,0,-1,1,-2.6,0,-3 -"1345",1429,2,1,0,2,2,0,2,1,,-0.199999999999999,-4 -"1346",1429,2,2,2,3,1,0,2,1,,-0.199999999999999,-4 -"1347",1429,2,3,3,6,3,0,2,1,,-0.199999999999999,-4 -"1348",1429,2,4,6,6.5,0.5,0,2,1,,-0.199999999999999,-4 -"1349",1429,2,5,6.5,8,1.5,0,2,1,,-0.199999999999999,-4 -"1350",1429,2,6,8,10,2,0,2,1,,-0.199999999999999,-4 -"1351",1430,2,1,0,2,2,0,-27,1,-0.200000000000003,-1,0 -"1352",1430,2,2,2,3,1,0,-27,1,-0.200000000000003,-1,0 -"1353",1430,2,3,3,6,3,0,-27,1,-0.200000000000003,-1,0 -"1354",1430,2,4,6,6.5,0.5,0,-27,1,-0.200000000000003,-1,0 -"1355",1430,2,5,6.5,8,1.5,0,-27,1,-0.200000000000003,-1,0 -"1356",1430,2,6,8,8.97600936460447,0.976009364604472,0,-27,1,-0.200000000000003,-1,0 -"1357",1431,2,1,0,0.902169115995978,0.902169115995978,1,21,1,-1.9,0.699999999999999,0 -"1358",1432,2,1,0,1.67403691072956,1.67403691072956,1,-9,0,-3.9,2.1,-2 -"1359",1433,2,1,0,2,2,0,-26,1,-0.600000000000001,1.8,-1 -"1360",1433,2,2,2,3,1,0,-26,1,-0.600000000000001,1.8,-1 -"1361",1433,2,3,3,6,3,0,-26,1,-0.600000000000001,1.8,-1 -"1362",1433,2,4,6,6.5,0.5,0,-26,1,-0.600000000000001,1.8,-1 -"1363",1433,2,5,6.5,8,1.5,0,-26,1,-0.600000000000001,1.8,-1 -"1364",1433,2,6,8,10,2,0,-26,1,-0.600000000000001,1.8,-1 -"1365",1434,2,1,0,2,2,0,-27,1,-4.2,-0.199999999999999,11 -"1366",1434,2,2,2,2.18464366437143,0.184643664371427,0,-27,1,-4.2,-0.199999999999999,11 -"1367",1435,2,1,0,1.01968146261703,1.01968146261703,1,12,0,0.299999999999997,0,2 -"1368",1436,2,1,0,0.720260389334398,0.720260389334398,1,-14,1,2.9,0.399999999999999,8 -"1369",1437,2,1,0,0.24353561308874,0.24353561308874,1,11,1,1,1.4,2 -"1370",1438,2,1,0,2,2,0,-19,0,-0.299999999999997,-0.300000000000001,7 -"1371",1438,2,2,2,2.54315311866593,0.54315311866593,1,-19,0,-0.299999999999997,-0.300000000000001,7 -"1372",1439,2,1,0,0.844433027474113,0.844433027474113,1,-27,0,5.5,0.5,-5 -"1373",1440,2,1,0,2,2,0,8,1,0.700000000000003,-1.3,-5 -"1374",1440,2,2,2,2.27863971802348,0.278639718023478,0,8,1,0.700000000000003,-1.3,-5 -"1375",1441,2,1,0,2,2,0,-25,1,3.4,-0.699999999999999,7 -"1376",1441,2,2,2,2.18590588648048,0.185905886480478,0,-25,1,3.4,-0.699999999999999,7 -"1377",1442,2,1,0,2,2,0,6,1,-2.7,0.399999999999999,1 -"1378",1442,2,2,2,3,1,0,6,1,-2.7,0.399999999999999,1 -"1379",1442,2,3,3,3.4895088612827,0.489508861282698,0,6,1,-2.7,0.399999999999999,1 -"1380",1443,2,1,0,0.897811379719307,0.897811379719307,1,34,0,-3.9,-0.6,1 -"1381",1444,2,1,0,0.257163170763509,0.257163170763509,1,32,0,-4,1.7,-1 -"1382",1445,2,1,0,1.10321003849993,1.10321003849993,0,-17,1,5.6,-0.6,6 -"1383",1446,2,1,0,1.75413308342944,1.75413308342944,1,12,0,2.5,0.300000000000001,2 -"1384",1447,2,1,0,2,2,0,-12,1,-9.7,-0.0999999999999996,1 -"1385",1447,2,2,2,3,1,0,-12,1,-9.7,-0.0999999999999996,1 -"1386",1447,2,3,3,4.20284987725034,1.20284987725034,0,-12,1,-9.7,-0.0999999999999996,1 -"1387",1448,2,1,0,2,2,0,-22,1,0.899999999999999,-0.800000000000001,1 -"1388",1448,2,2,2,3,1,0,-22,1,0.899999999999999,-0.800000000000001,1 -"1389",1448,2,3,3,6,3,0,-22,1,0.899999999999999,-0.800000000000001,1 -"1390",1448,2,4,6,6.5,0.5,0,-22,1,0.899999999999999,-0.800000000000001,1 -"1391",1448,2,5,6.5,8,1.5,0,-22,1,0.899999999999999,-0.800000000000001,1 -"1392",1448,2,6,8,10,2,0,-22,1,0.899999999999999,-0.800000000000001,1 -"1393",1449,2,1,0,2,2,0,-9,0,5.8,-1.4,-8 -"1394",1449,2,2,2,3,1,0,-9,0,5.8,-1.4,-8 -"1395",1449,2,3,3,6,3,0,-9,0,5.8,-1.4,-8 -"1396",1449,2,4,6,6.5,0.5,0,-9,0,5.8,-1.4,-8 -"1397",1449,2,5,6.5,8,1.5,0,-9,0,5.8,-1.4,-8 -"1398",1449,2,6,8,10,2,0,-9,0,5.8,-1.4,-8 -"1399",1450,2,1,0,2,2,0,-16,0,3.4,-1.8,-4 -"1400",1450,2,2,2,3,1,0,-16,0,3.4,-1.8,-4 -"1401",1450,2,3,3,4.3223739403372,1.3223739403372,0,-16,0,3.4,-1.8,-4 -"1402",1451,2,1,0,1.45233155575047,1.45233155575047,0,-13,1,7.9,-0.6,5 -"1403",1452,2,1,0,2,2,0,-30,0,-3.1,-1.1,2 -"1404",1452,2,2,2,3,1,0,-30,0,-3.1,-1.1,2 -"1405",1452,2,3,3,6,3,0,-30,0,-3.1,-1.1,2 -"1406",1452,2,4,6,6.5,0.5,0,-30,0,-3.1,-1.1,2 -"1407",1452,2,5,6.5,8,1.5,0,-30,0,-3.1,-1.1,2 -"1408",1452,2,6,8,9.76221252342322,1.76221252342322,0,-30,0,-3.1,-1.1,2 -"1409",1453,2,1,0,2,2,0,22,0,0.600000000000001,-0.5,-7 -"1410",1453,2,2,2,3,1,0,22,0,0.600000000000001,-0.5,-7 -"1411",1453,2,3,3,6,3,0,22,0,0.600000000000001,-0.5,-7 -"1412",1453,2,4,6,6.5,0.5,0,22,0,0.600000000000001,-0.5,-7 -"1413",1453,2,5,6.5,6.78844892276778,0.288448922767783,1,22,0,0.600000000000001,-0.5,-7 -"1414",1454,2,1,0,2,2,0,3,1,-4.5,1.2,1 -"1415",1454,2,2,2,3,1,0,3,1,-4.5,1.2,1 -"1416",1454,2,3,3,3.98615915913962,0.986159159139623,1,3,1,-4.5,1.2,1 -"1417",1455,2,1,0,0.132740765435597,0.132740765435597,0,4,0,-3.2,0.300000000000001,2 -"1418",1456,2,1,0,2,2,0,-20,1,-1.4,-0.199999999999999,8 -"1419",1456,2,2,2,2.94659168128502,0.946591681285018,0,-20,1,-1.4,-0.199999999999999,8 -"1420",1457,2,1,0,0.736259057282149,0.736259057282149,0,-11,0,3.9,0.199999999999999,2 -"1421",1458,2,1,0,2,2,0,-11,1,-3.6,-0.4, -"1422",1458,2,2,2,3,1,0,-11,1,-3.6,-0.4, -"1423",1458,2,3,3,6,3,0,-11,1,-3.6,-0.4, -"1424",1458,2,4,6,6.5,0.5,0,-11,1,-3.6,-0.4, -"1425",1458,2,5,6.5,8,1.5,0,-11,1,-3.6,-0.4, -"1426",1458,2,6,8,8.72869921805808,0.728699218058077,0,-11,1,-3.6,-0.4, -"1427",1459,2,1,0,1.77448767695516,1.77448767695516,1,-2,1,0.700000000000003,1.7,-1 -"1428",1460,2,1,0,0.15522453366514,0.15522453366514,0,-11,1,-6.2,0.100000000000001,8 -"1429",1461,2,1,0,0.73147244913038,0.73147244913038,0,7,1,0.5,0.399999999999999, -"1430",1462,2,1,0,0.446135621589724,0.446135621589724,0,-32,1,4.5,2.3,2 -"1431",1463,2,1,0,2,2,0,6,0,0.100000000000001,-1.5,-2 -"1432",1463,2,2,2,3,1,0,6,0,0.100000000000001,-1.5,-2 -"1433",1463,2,3,3,6,3,0,6,0,0.100000000000001,-1.5,-2 -"1434",1463,2,4,6,6.5,0.5,0,6,0,0.100000000000001,-1.5,-2 -"1435",1463,2,5,6.5,7.13563120595162,0.635631205951624,0,6,0,0.100000000000001,-1.5,-2 -"1436",1464,2,1,0,2,2,0,-20,1,-2,-0.699999999999999,-2 -"1437",1464,2,2,2,3,1,0,-20,1,-2,-0.699999999999999,-2 -"1438",1464,2,3,3,6,3,0,-20,1,-2,-0.699999999999999,-2 -"1439",1464,2,4,6,6.5,0.5,0,-20,1,-2,-0.699999999999999,-2 -"1440",1464,2,5,6.5,8,1.5,0,-20,1,-2,-0.699999999999999,-2 -"1441",1464,2,6,8,10,2,0,-20,1,-2,-0.699999999999999,-2 -"1442",1465,2,1,0,2,2,0,12,1,-5.3,-0.4,1 -"1443",1465,2,2,2,3,1,0,12,1,-5.3,-0.4,1 -"1444",1465,2,3,3,6,3,0,12,1,-5.3,-0.4,1 -"1445",1465,2,4,6,6.07793455023724,0.0779345502372445,0,12,1,-5.3,-0.4,1 -"1446",1466,2,1,0,0.319572508207951,0.319572508207951,1,14,1,6.9,1,6 -"1447",1467,2,1,0,2,2,0,,0,-0.200000000000003,0.300000000000001,-3 -"1448",1467,2,2,2,3,1,0,,0,-0.200000000000003,0.300000000000001,-3 -"1449",1467,2,3,3,4.5654192843902,1.5654192843902,1,,0,-0.200000000000003,0.300000000000001,-3 -"1450",1468,2,1,0,0.878375292028245,0.878375292028245,0,6,1,1.7,-0.699999999999999,3 -"1451",1469,2,1,0,0.228811186097245,0.228811186097245,0,-15,0,2.9,0.5,2 -"1452",1470,2,1,0,2,2,0,-10,1,-5.5,2.6,3 -"1453",1470,2,2,2,2.87586496385811,0.875864963858114,1,-10,1,-5.5,2.6,3 -"1454",1471,2,1,0,0.106208412140128,0.106208412140128,1,21,0,-1.1,0.199999999999999,6 -"1455",1472,2,1,0,1.40994646531655,1.40994646531655,1,-18,0,0.600000000000001,-0.199999999999999,-2 -"1456",1473,2,1,0,1.41972373820162,1.41972373820162,1,-8,1,-3.5,-0.199999999999999,4 -"1457",1474,2,1,0,2,2,0,-13,1,1.3,-0.699999999999999,-2 -"1458",1474,2,2,2,3,1,0,-13,1,1.3,-0.699999999999999,-2 -"1459",1474,2,3,3,6,3,0,-13,1,1.3,-0.699999999999999,-2 -"1460",1474,2,4,6,6.5,0.5,0,-13,1,1.3,-0.699999999999999,-2 -"1461",1474,2,5,6.5,7.96235534699125,1.46235534699125,0,-13,1,1.3,-0.699999999999999,-2 -"1462",1475,2,1,0,2,2,0,3,1,-2.9,0,-6 -"1463",1475,2,2,2,2.351733099124,0.351733099123996,0,3,1,-2.9,0,-6 -"1464",1476,2,1,0,1.2896599746237,1.2896599746237,1,-18,1,-2,1.7,6 -"1465",1477,2,1,0,2,2,0,-20,1,1.6,-1,-12 -"1466",1477,2,2,2,3,1,0,-20,1,1.6,-1,-12 -"1467",1477,2,3,3,6,3,0,-20,1,1.6,-1,-12 -"1468",1477,2,4,6,6.5,0.5,0,-20,1,1.6,-1,-12 -"1469",1477,2,5,6.5,8,1.5,0,-20,1,1.6,-1,-12 -"1470",1477,2,6,8,8.41901327322199,0.419013273221993,0,-20,1,1.6,-1,-12 -"1471",1478,2,1,0,2,2,0,-23,1,2.8,0.199999999999999,-2 -"1472",1478,2,2,2,3,1,0,-23,1,2.8,0.199999999999999,-2 -"1473",1478,2,3,3,3.80808417495772,0.808084174957724,0,-23,1,2.8,0.199999999999999,-2 -"1474",1479,2,1,0,2,2,0,-4,0,-7.4,-0.6,-5 -"1475",1479,2,2,2,3,1,0,-4,0,-7.4,-0.6,-5 -"1476",1479,2,3,3,6,3,0,-4,0,-7.4,-0.6,-5 -"1477",1479,2,4,6,6.5,0.5,0,-4,0,-7.4,-0.6,-5 -"1478",1479,2,5,6.5,8,1.5,0,-4,0,-7.4,-0.6,-5 -"1479",1479,2,6,8,8.12954805605859,0.129548056058593,0,-4,0,-7.4,-0.6,-5 -"1480",1480,2,1,0,0.025309600655153,0.025309600655153,1,24,0,-3.4,-1.1,5 -"1481",1481,2,1,0,2,2,0,-19,0,5.6,-2,3 -"1482",1481,2,2,2,2.71196804736604,0.711968047366043,0,-19,0,5.6,-2,3 -"1483",1482,2,1,0,0.140796215442515,0.140796215442515,1,-6,1,-1.3,0.300000000000001,1 -"1484",1483,2,1,0,2,2,0,-4,0,-0.600000000000001,-0.699999999999999,0 -"1485",1483,2,2,2,3,1,0,-4,0,-0.600000000000001,-0.699999999999999,0 -"1486",1483,2,3,3,4.9516598953323,1.9516598953323,0,-4,0,-0.600000000000001,-0.699999999999999,0 -"1487",1484,2,1,0,0.930962748160916,0.930962748160916,0,4,1,0.100000000000001,-1.2, -"1488",1485,2,1,0,2,2,0,-46,1,-1.2,-0.0999999999999996,9 -"1489",1485,2,2,2,3,1,0,-46,1,-1.2,-0.0999999999999996,9 -"1490",1485,2,3,3,6,3,0,-46,1,-1.2,-0.0999999999999996,9 -"1491",1485,2,4,6,6.5,0.5,0,-46,1,-1.2,-0.0999999999999996,9 -"1492",1485,2,5,6.5,8,1.5,0,-46,1,-1.2,-0.0999999999999996,9 -"1493",1485,2,6,8,10,2,0,-46,1,-1.2,-0.0999999999999996,9 -"1494",1486,2,1,0,0.769806200645577,0.769806200645577,0,15,0,0.200000000000003,-0.5,-4 -"1495",1487,2,1,0,2,2,0,2,1,-0.100000000000001,-0.4,5 -"1496",1487,2,2,2,3,1,0,2,1,-0.100000000000001,-0.4,5 -"1497",1487,2,3,3,6,3,0,2,1,-0.100000000000001,-0.4,5 -"1498",1487,2,4,6,6.5,0.5,0,2,1,-0.100000000000001,-0.4,5 -"1499",1487,2,5,6.5,8,1.5,0,2,1,-0.100000000000001,-0.4,5 -"1500",1487,2,6,8,10,2,0,2,1,-0.100000000000001,-0.4,5 -"1501",1488,2,1,0,1.61966363686422,1.61966363686422,1,-14,0,2.7,0.899999999999999,-4 -"1502",1489,2,1,0,0.734611675513435,0.734611675513435,1,17,1,-5.7,-0.699999999999999,-2 -"1503",1490,2,1,0,1.20365371953482,1.20365371953482,1,-1,0,4.3,-0.199999999999999,-1 -"1504",1491,2,1,0,2,2,0,8,1,-1.3,-0.4,-7 -"1505",1491,2,2,2,3,1,0,8,1,-1.3,-0.4,-7 -"1506",1491,2,3,3,6,3,0,8,1,-1.3,-0.4,-7 -"1507",1491,2,4,6,6.5,0.5,0,8,1,-1.3,-0.4,-7 -"1508",1491,2,5,6.5,8,1.5,0,8,1,-1.3,-0.4,-7 -"1509",1491,2,6,8,10,2,0,8,1,-1.3,-0.4,-7 -"1510",1492,2,1,0,1.57038342813035,1.57038342813035,0,-8,1,3.7,-0.699999999999999,4 -"1511",1493,2,1,0,2,2,0,-38,0,4.8,0.399999999999999,9 -"1512",1493,2,2,2,3,1,0,-38,0,4.8,0.399999999999999,9 -"1513",1493,2,3,3,5.08024958816087,2.08024958816088,0,-38,0,4.8,0.399999999999999,9 -"1514",1494,2,1,0,2,2,0,7,0,-8.1,0.100000000000001,3 -"1515",1494,2,2,2,3,1,0,7,0,-8.1,0.100000000000001,3 -"1516",1494,2,3,3,4.79147079159799,1.79147079159799,1,7,0,-8.1,0.100000000000001,3 -"1517",1495,2,1,0,0.700509367340269,0.700509367340269,1,2,0,-4.2,-1.1,3 -"1518",1496,2,1,0,2,2,0,11,0,0.600000000000001,-0.5,-6 -"1519",1496,2,2,2,3,1,0,11,0,0.600000000000001,-0.5,-6 -"1520",1496,2,3,3,5.29221265587342,2.29221265587342,0,11,0,0.600000000000001,-0.5,-6 -"1521",1497,2,1,0,2,2,0,-15,0,5.2,0.800000000000001,8 -"1522",1497,2,2,2,2.42942030019864,0.429420300198636,0,-15,0,5.2,0.800000000000001,8 -"1523",1498,2,1,0,0.370674816318394,0.370674816318394,1,9,0,-1.9,0.600000000000001,0 -"1524",1499,2,1,0,2,2,0,11,1,-0.5,-1,-3 -"1525",1499,2,2,2,3,1,0,11,1,-0.5,-1,-3 -"1526",1499,2,3,3,6,3,0,11,1,-0.5,-1,-3 -"1527",1499,2,4,6,6.5,0.5,0,11,1,-0.5,-1,-3 -"1528",1499,2,5,6.5,8,1.5,0,11,1,-0.5,-1,-3 -"1529",1499,2,6,8,10,2,0,11,1,-0.5,-1,-3 -"1530",1500,2,1,0,1.98371270267654,1.98371270267654,1,-29,1,1.3,2.3,2 -"1531",1501,2,1,0,0.802827188345665,0.802827188345665,1,0,1,2.5,2,-2 -"1532",1502,2,1,0,1.07762848799462,1.07762848799462,1,13,1,1,-0.9,5 -"1533",1503,2,1,0,1.65814473273036,1.65814473273036,1,-7,1,5.7,-0.6,3 -"1534",1504,2,1,0,2,2,0,-21,1,-0.5,1.3,2 -"1535",1504,2,2,2,3,1,0,-21,1,-0.5,1.3,2 -"1536",1504,2,3,3,6,3,0,-21,1,-0.5,1.3,2 -"1537",1504,2,4,6,6.5,0.5,0,-21,1,-0.5,1.3,2 -"1538",1504,2,5,6.5,8,1.5,0,-21,1,-0.5,1.3,2 -"1539",1504,2,6,8,10,2,0,-21,1,-0.5,1.3,2 -"1540",1505,2,1,0,1.29103320319407,1.29103320319407,0,-23,0,-1.1,-0.0999999999999996,3 -"1541",1506,2,1,0,2,2,0,4,0,,-0.9,-1 -"1542",1506,2,2,2,3,1,0,4,0,,-0.9,-1 -"1543",1506,2,3,3,6,3,0,4,0,,-0.9,-1 -"1544",1506,2,4,6,6.5,0.5,0,4,0,,-0.9,-1 -"1545",1506,2,5,6.5,8,1.5,0,4,0,,-0.9,-1 -"1546",1506,2,6,8,10,2,0,4,0,,-0.9,-1 -"1547",1507,2,1,0,2,2,0,-24,1,1.1,-0.9,3 -"1548",1507,2,2,2,3,1,0,-24,1,1.1,-0.9,3 -"1549",1507,2,3,3,6,3,0,-24,1,1.1,-0.9,3 -"1550",1507,2,4,6,6.5,0.5,0,-24,1,1.1,-0.9,3 -"1551",1507,2,5,6.5,8,1.5,0,-24,1,1.1,-0.9,3 -"1552",1507,2,6,8,9.0128309281274,1.0128309281274,1,-24,1,1.1,-0.9,3 -"1553",1508,2,1,0,0.052336836919375,0.052336836919375,1,-15,1,0,1.3,3 -"1554",1509,2,1,0,1.25675356256158,1.25675356256158,0,-14,1,-3.1,-0.800000000000001,7 -"1555",1510,2,1,0,1.67730983712813,1.67730983712813,1,7,1,0.399999999999999,-0.9,-5 -"1556",1511,2,1,0,1.42135162297182,1.42135162297182,0,-2,0,1.6,-0.699999999999999,1 -"1557",1512,2,1,0,1.35675442623156,1.35675442623156,1,-3,0,-1.1,0.399999999999999,5 -"1558",1513,2,1,0,0.472475529669297,0.472475529669297,1,-2,1,-5.9,2.3,-8 -"1559",1514,2,1,0,2,2,0,11,1,5.5,0.300000000000001,6 -"1560",1514,2,2,2,2.99952807494217,0.999528074942172,1,11,1,5.5,0.300000000000001,6 -"1561",1515,2,1,0,2,2,0,3,0,-9.2,-1.7,-5 -"1562",1515,2,2,2,3,1,0,3,0,-9.2,-1.7,-5 -"1563",1515,2,3,3,4.76210737953703,1.76210737953703,0,3,0,-9.2,-1.7,-5 -"1564",1516,2,1,0,0.368219791283305,0.368219791283305,1,16,1,-2.1,0.600000000000001,6 -"1565",1517,2,1,0,1.03645590005459,1.03645590005459,0,5,1,7.4,1.1,5 -"1566",1518,2,1,0,1.4799751509228,1.4799751509228,1,30,0,7.3,-0.6,-5 -"1567",1519,2,1,0,1.364145205887,1.364145205887,0,-24,0,3.8,0.300000000000001,-7 -"1568",1520,2,1,0,0.107962456645088,0.107962456645088,0,0,0,-2.5,0.600000000000001,13 -"1569",1521,2,1,0,2,2,0,0,0,-4.5,2.1,-8 -"1570",1521,2,2,2,3,1,0,0,0,-4.5,2.1,-8 -"1571",1521,2,3,3,6,3,0,0,0,-4.5,2.1,-8 -"1572",1521,2,4,6,6.5,0.5,0,0,0,-4.5,2.1,-8 -"1573",1521,2,5,6.5,7.83398665444276,1.33398665444276,1,0,0,-4.5,2.1,-8 -"1574",1522,2,1,0,2,2,0,,1,-3.6,-1.6, -"1575",1522,2,2,2,3,1,0,,1,-3.6,-1.6, -"1576",1522,2,3,3,6,3,0,,1,-3.6,-1.6, -"1577",1522,2,4,6,6.5,0.5,0,,1,-3.6,-1.6, -"1578",1522,2,5,6.5,8,1.5,0,,1,-3.6,-1.6, -"1579",1522,2,6,8,10,2,0,,1,-3.6,-1.6, -"1580",1523,2,1,0,2,2,0,-20,0,4.8,-0.5,-2 -"1581",1523,2,2,2,3,1,0,-20,0,4.8,-0.5,-2 -"1582",1523,2,3,3,6,3,0,-20,0,4.8,-0.5,-2 -"1583",1523,2,4,6,6.5,0.5,0,-20,0,4.8,-0.5,-2 -"1584",1523,2,5,6.5,8,1.5,0,-20,0,4.8,-0.5,-2 -"1585",1523,2,6,8,10,2,0,-20,0,4.8,-0.5,-2 -"1586",1524,2,1,0,1.64111184306847,1.64111184306847,0,,1,-3.6,-0.199999999999999,-6 -"1587",1525,2,1,0,1.41706921570476,1.41706921570476,1,-11,1,6,1.4,8 -"1588",1526,2,1,0,2,2,0,5,1,-6.8,0.699999999999999,1 -"1589",1526,2,2,2,3,1,0,5,1,-6.8,0.699999999999999,1 -"1590",1526,2,3,3,6,3,0,5,1,-6.8,0.699999999999999,1 -"1591",1526,2,4,6,6.5,0.5,0,5,1,-6.8,0.699999999999999,1 -"1592",1526,2,5,6.5,8,1.5,0,5,1,-6.8,0.699999999999999,1 -"1593",1526,2,6,8,10,2,0,5,1,-6.8,0.699999999999999,1 -"1594",1527,2,1,0,0.0584889481899124,0.0584889481899124,1,13,0,7.3,0.899999999999999,4 -"1595",1528,2,1,0,2,2,0,-15,0,-4.8,-0.699999999999999,-3 -"1596",1528,2,2,2,2.20344490005185,0.203444900051845,0,-15,0,-4.8,-0.699999999999999,-3 -"1597",1529,2,1,0,0.568173399087702,0.568173399087702,1,10,1,-5,0.800000000000001,-3 -"1598",1530,2,1,0,0.31689284972773,0.31689284972773,1,-3,1,2.6,-0.6,4 -"1599",1531,2,1,0,1.95316484983069,1.95316484983069,0,3,1,-1.7,-0.800000000000001,-4 -"1600",1532,2,1,0,2,2,0,-25,0,-1.5,1.3,-2 -"1601",1532,2,2,2,3,1,0,-25,0,-1.5,1.3,-2 -"1602",1532,2,3,3,4.36368988911238,1.36368988911238,0,-25,0,-1.5,1.3,-2 -"1603",1533,2,1,0,0.0341663922896845,0.0341663922896845,0,8,0,0.700000000000003,0.699999999999999,-3 -"1604",1534,2,1,0,2,2,0,-11,0,-2.2,0.300000000000001,4 -"1605",1534,2,2,2,3,1,0,-11,0,-2.2,0.300000000000001,4 -"1606",1534,2,3,3,4.49040107811285,1.49040107811285,0,-11,0,-2.2,0.300000000000001,4 -"1607",1535,2,1,0,2,2,0,-1,1,1.8,1,-10 -"1608",1535,2,2,2,3,1,0,-1,1,1.8,1,-10 -"1609",1535,2,3,3,6,3,0,-1,1,1.8,1,-10 -"1610",1535,2,4,6,6.5,0.5,0,-1,1,1.8,1,-10 -"1611",1535,2,5,6.5,8,1.5,0,-1,1,1.8,1,-10 -"1612",1535,2,6,8,9.18665623579406,1.18665623579406,0,-1,1,1.8,1,-10 -"1613",1536,2,1,0,0.477986527478711,0.477986527478711,1,15,1,-1.5,0.600000000000001,1 -"1614",1537,2,1,0,2,2,0,-19,0,-5,-1.2,-4 -"1615",1537,2,2,2,3,1,0,-19,0,-5,-1.2,-4 -"1616",1537,2,3,3,6,3,0,-19,0,-5,-1.2,-4 -"1617",1537,2,4,6,6.5,0.5,0,-19,0,-5,-1.2,-4 -"1618",1537,2,5,6.5,8,1.5,0,-19,0,-5,-1.2,-4 -"1619",1537,2,6,8,10,2,0,-19,0,-5,-1.2,-4 -"1620",1538,2,1,0,2,2,0,-2,1,3.4,-1.1,-5 -"1621",1538,2,2,2,3,1,0,-2,1,3.4,-1.1,-5 -"1622",1538,2,3,3,6,3,0,-2,1,3.4,-1.1,-5 -"1623",1538,2,4,6,6.5,0.5,0,-2,1,3.4,-1.1,-5 -"1624",1538,2,5,6.5,8,1.5,0,-2,1,3.4,-1.1,-5 -"1625",1538,2,6,8,10,2,0,-2,1,3.4,-1.1,-5 -"1626",1539,2,1,0,2,2,0,10,1,3.9,0.800000000000001,-1 -"1627",1539,2,2,2,3,1,0,10,1,3.9,0.800000000000001,-1 -"1628",1539,2,3,3,6,3,0,10,1,3.9,0.800000000000001,-1 -"1629",1539,2,4,6,6.5,0.5,0,10,1,3.9,0.800000000000001,-1 -"1630",1539,2,5,6.5,8,1.5,0,10,1,3.9,0.800000000000001,-1 -"1631",1539,2,6,8,10,2,0,10,1,3.9,0.800000000000001,-1 -"1632",1540,2,1,0,0.456374917839872,0.456374917839872,1,11,1,-8.2,-0.6,-5 -"1633",1541,2,1,0,0.0815842808056195,0.0815842808056195,1,28,0,-9.9,-0.0999999999999996,-2 -"1634",1542,2,1,0,0.376938298683741,0.376938298683741,1,12,1,-3.7,0.699999999999999,-1 -"1635",1543,2,1,0,2,2,0,-7,1,0,-0.800000000000001,-9 -"1636",1543,2,2,2,3,1,0,-7,1,0,-0.800000000000001,-9 -"1637",1543,2,3,3,3.38640428652877,0.386404286528772,0,-7,1,0,-0.800000000000001,-9 -"1638",1544,2,1,0,2,2,0,3,0,-4,-0.199999999999999,-1 -"1639",1544,2,2,2,2.45649071547845,0.456490715478452,1,3,0,-4,-0.199999999999999,-1 -"1640",1545,2,1,0,0.329321306108181,0.329321306108181,1,-15,0,-7.4,-0.0999999999999996,-4 diff --git a/tests/testthat/data_files/SURVIVAL/EXPAND_MISSING/expand_missing_study3.csv b/tests/testthat/data_files/SURVIVAL/EXPAND_MISSING/expand_missing_study3.csv deleted file mode 100644 index f28516f5..00000000 --- a/tests/testthat/data_files/SURVIVAL/EXPAND_MISSING/expand_missing_study3.csv +++ /dev/null @@ -1,2689 +0,0 @@ -"","id","study.id","time.id","starttime","endtime","survtime","cens","age.60","female","noise.56","pm10.16","bmi.26" -"1",1546,3,1,0,2,2,0,-3,1,1.3,0,-7 -"2",1546,3,2,2,3,1,0,-3,1,1.3,0,-7 -"3",1546,3,3,3,6,3,0,-3,1,1.3,0,-7 -"4",1546,3,4,6,6.5,0.5,0,-3,1,1.3,0,-7 -"5",1546,3,5,6.5,8,1.5,0,-3,1,1.3,0,-7 -"6",1546,3,6,8,8.025658515,0.025658515,0,-3,1,1.3,0,-7 -"7",1547,3,1,0,2,2,0,0,0,3.9,-1.3,3 -"8",1547,3,2,2,3,1,0,0,0,3.9,-1.3,3 -"9",1547,3,3,3,6,3,0,0,0,3.9,-1.3,3 -"10",1547,3,4,6,6.5,0.5,0,0,0,3.9,-1.3,3 -"11",1547,3,5,6.5,8,1.5,0,0,0,3.9,-1.3,3 -"12",1547,3,6,8,8.436530311,0.436530311,1,0,0,3.9,-1.3,3 -"13",1548,3,1,0,0.056829119,0.056829119,1,-1,0,3.6,1.3,12 -"14",1549,3,1,0,0.500206519,0.500206519,1,3,0,-2.5,0.7,3 -"15",1550,3,1,0,0.838206874,0.838206874,1,-11,0,4.1,0.8,1 -"16",1551,3,1,0,1.301886423,1.301886423,1,12,0,-6.4,-0.7,-2 -"17",1552,3,1,0,0.998427214,0.998427214,1,8,1,7.4,1.1,2 -"18",1553,3,1,0,2,2,0,-7,1,1,-1.6,-1 -"19",1553,3,2,2,3,1,0,-7,1,1,-1.6,-1 -"20",1553,3,3,3,6,3,0,-7,1,1,-1.6,-1 -"21",1553,3,4,6,6.5,0.5,0,-7,1,1,-1.6,-1 -"22",1553,3,5,6.5,8,1.5,0,-7,1,1,-1.6,-1 -"23",1553,3,6,8,8.085646845,0.085646845,0,-7,1,1,-1.6,-1 -"24",1554,3,1,0,2,2,0,13,1,2,-1.4,3 -"25",1554,3,2,2,3,1,0,13,1,2,-1.4,3 -"26",1554,3,3,3,6,3,0,13,1,2,-1.4,3 -"27",1554,3,4,6,6.5,0.5,0,13,1,2,-1.4,3 -"28",1554,3,5,6.5,7.913687811,1.413687811,0,13,1,2,-1.4,3 -"29",1555,3,1,0,2,2,0,5,1,-7.3,-1.2,8 -"30",1555,3,2,2,3,1,0,5,1,-7.3,-1.2,8 -"31",1555,3,3,3,5.207776032,2.207776032,0,5,1,-7.3,-1.2,8 -"32",1556,3,1,0,2,2,0,-2,1,1.6,-1.6, -"33",1556,3,2,2,3,1,0,-2,1,1.6,-1.6, -"34",1556,3,3,3,6,3,0,-2,1,1.6,-1.6, -"35",1556,3,4,6,6.5,0.5,0,-2,1,1.6,-1.6, -"36",1556,3,5,6.5,8,1.5,0,-2,1,1.6,-1.6, -"37",1556,3,6,8,10,2,0,-2,1,1.6,-1.6, -"38",1557,3,1,0,2,2,0,-31,0,5.8,0.9,4 -"39",1557,3,2,2,3,1,0,-31,0,5.8,0.9,4 -"40",1557,3,3,3,4.996464792,1.996464792,0,-31,0,5.8,0.9,4 -"41",1558,3,1,0,1.094422865,1.094422865,0,-28,0,-5.6,1.2,-9 -"42",1559,3,1,0,0.281486,0.281486,0,4,1,0.8,-0.7,2 -"43",1560,3,1,0,2,2,0,-33,0,1.8,0.3,-4 -"44",1560,3,2,2,3,1,0,-33,0,1.8,0.3,-4 -"45",1560,3,3,3,6,3,0,-33,0,1.8,0.3,-4 -"46",1560,3,4,6,6.5,0.5,0,-33,0,1.8,0.3,-4 -"47",1560,3,5,6.5,8,1.5,0,-33,0,1.8,0.3,-4 -"48",1560,3,6,8,10,2,0,-33,0,1.8,0.3,-4 -"49",1561,3,1,0,2,2,0,1,0,-1.9,-0.1,-2 -"50",1561,3,2,2,3,1,0,1,0,-1.9,-0.1,-2 -"51",1561,3,3,3,6,3,0,1,0,-1.9,-0.1,-2 -"52",1561,3,4,6,6.5,0.5,0,1,0,-1.9,-0.1,-2 -"53",1561,3,5,6.5,8,1.5,0,1,0,-1.9,-0.1,-2 -"54",1561,3,6,8,8.45525892,0.45525892,1,1,0,-1.9,-0.1,-2 -"55",1562,3,1,0,2,2,0,-3,0,-1.5,0.5,-3 -"56",1562,3,2,2,3,1,0,-3,0,-1.5,0.5,-3 -"57",1562,3,3,3,5.940701228,2.940701228,0,-3,0,-1.5,0.5,-3 -"58",1563,3,1,0,0.475868902,0.475868902,1,5,1,0.5,1.1,14 -"59",1564,3,1,0,2,2,0,-13,0,-6.4,-2.1,-4 -"60",1564,3,2,2,3,1,0,-13,0,-6.4,-2.1,-4 -"61",1564,3,3,3,4.483878328,1.483878328,0,-13,0,-6.4,-2.1,-4 -"62",1565,3,1,,,,,-4,0,-3.2,1.4,6 -"63",1566,3,1,0,2,2,0,-27,1,-0.9,0.3,-3 -"64",1566,3,2,2,3,1,0,-27,1,-0.9,0.3,-3 -"65",1566,3,3,3,3.670973198,0.670973198,0,-27,1,-0.9,0.3,-3 -"66",1567,3,1,0,2,2,0,-20,0,1.7,-1.1,-5 -"67",1567,3,2,2,3,1,0,-20,0,1.7,-1.1,-5 -"68",1567,3,3,3,4.122493482,1.122493482,0,-20,0,1.7,-1.1,-5 -"69",1568,3,1,0,0.082112111,0.082112111,1,36,0,-2.2,-0.3,3 -"70",1569,3,1,0,0.246774602,0.246774602,0,-24,1,-11.8,1,2 -"71",1570,3,1,0,2,2,0,-27,0,2.8,0.7,-5 -"72",1570,3,2,2,3,1,0,-27,0,2.8,0.7,-5 -"73",1570,3,3,3,6,3,0,-27,0,2.8,0.7,-5 -"74",1570,3,4,6,6.34325888,0.34325888,0,-27,0,2.8,0.7,-5 -"75",1571,3,1,0,0.596057512,0.596057512,1,23,0,-1.9,-0.7,-3 -"76",1572,3,1,0,0.349045938,0.349045938,1,18,0,-4.7,0, -"77",1573,3,1,0,1.603992532,1.603992532,1,12,0,4.8,-0.1,1 -"78",1574,3,1,0,0.158175123,0.158175123,1,23,1,-4.5,0.6,7 -"79",1575,3,1,0,2,2,0,6,1,1.1,-1.6,-3 -"80",1575,3,2,2,3,1,0,6,1,1.1,-1.6,-3 -"81",1575,3,3,3,5.595638087,2.595638087,0,6,1,1.1,-1.6,-3 -"82",1576,3,1,0,2,2,0,-1,0,3.9,0.2,-1 -"83",1576,3,2,2,2.297021983,0.297021983,0,-1,0,3.9,0.2,-1 -"84",1577,3,1,0,0.725314705,0.725314705,0,22,0,0.9,-0.1,5 -"85",1578,3,1,0,2,2,0,-17,0,3,-0.3,0 -"86",1578,3,2,2,2.898327731,0.898327731,0,-17,0,3,-0.3,0 -"87",1579,3,1,0,0.393369343,0.393369343,1,11,1,5.2,1.3,-1 -"88",1580,3,1,0,0.266641789,0.266641789,1,1,0,-2.1,-0.6,5 -"89",1581,3,1,0,1.090301869,1.090301869,1,20,0,-5.1,-0.1,5 -"90",1582,3,1,0,1.480190142,1.480190142,1,-21,1,2,-0.1,10 -"91",1583,3,1,0,2,2,0,0,1,4.6,-0.1,-5 -"92",1583,3,2,2,3,1,0,0,1,4.6,-0.1,-5 -"93",1583,3,3,3,6,3,0,0,1,4.6,-0.1,-5 -"94",1583,3,4,6,6.5,0.5,0,0,1,4.6,-0.1,-5 -"95",1583,3,5,6.5,8,1.5,0,0,1,4.6,-0.1,-5 -"96",1583,3,6,8,10,2,0,0,1,4.6,-0.1,-5 -"97",1584,3,1,0,2,2,0,9,0,-5.9,-0.4,0 -"98",1584,3,2,2,2.713952848,0.713952848,0,9,0,-5.9,-0.4,0 -"99",1585,3,1,0,0.131872807,0.131872807,1,33,1,4,-0.1,-1 -"100",1586,3,1,0,2,2,0,-5,0,3,-1.9,2 -"101",1586,3,2,2,2.871803995,0.871803995,1,-5,0,3,-1.9,2 -"102",1587,3,1,0,2,2,0,-35,0,-6.8,-0.5,5 -"103",1587,3,2,2,3,1,0,-35,0,-6.8,-0.5,5 -"104",1587,3,3,3,6,3,0,-35,0,-6.8,-0.5,5 -"105",1587,3,4,6,6.5,0.5,0,-35,0,-6.8,-0.5,5 -"106",1587,3,5,6.5,8,1.5,0,-35,0,-6.8,-0.5,5 -"107",1587,3,6,8,9.442285914,1.442285914,0,-35,0,-6.8,-0.5,5 -"108",1588,3,1,0,2,2,0,2,1,0,-0.8,2 -"109",1588,3,2,2,3,1,0,2,1,0,-0.8,2 -"110",1588,3,3,3,6,3,0,2,1,0,-0.8,2 -"111",1588,3,4,6,6.5,0.5,0,2,1,0,-0.8,2 -"112",1588,3,5,6.5,8,1.5,0,2,1,0,-0.8,2 -"113",1588,3,6,8,10,2,0,2,1,0,-0.8,2 -"114",1589,3,1,0,0.106739085,0.106739085,1,12,0,1.8,1.6,-1 -"115",1590,3,1,0,0.9464457,0.9464457,1,5,1,9.2,0.1,9 -"116",1591,3,1,0,1.407452957,1.407452957,1,-16,0,4.1,1.7,5 -"117",1592,3,1,0,2,2,0,-19,1,-6.4,-1,-6 -"118",1592,3,2,2,3,1,0,-19,1,-6.4,-1,-6 -"119",1592,3,3,3,6,3,0,-19,1,-6.4,-1,-6 -"120",1592,3,4,6,6.5,0.5,0,-19,1,-6.4,-1,-6 -"121",1592,3,5,6.5,8,1.5,0,-19,1,-6.4,-1,-6 -"122",1592,3,6,8,10,2,0,-19,1,-6.4,-1,-6 -"123",1593,3,1,0,2,2,0,-2,1,2.1,-1,3 -"124",1593,3,2,2,3,1,0,-2,1,2.1,-1,3 -"125",1593,3,3,3,3.997112684,0.997112684,0,-2,1,2.1,-1,3 -"126",1594,3,1,0,2,2,0,17,1,4.2,-1,-3 -"127",1594,3,2,2,3,1,0,17,1,4.2,-1,-3 -"128",1594,3,3,3,5.911152927,2.911152927,0,17,1,4.2,-1,-3 -"129",1595,3,1,0,0.277360671,0.277360671,1,19,0,0.1,0.8,3 -"130",1596,3,1,0,2,2,0,3,1,-0.9,0.5,-9 -"131",1596,3,2,2,3,1,0,3,1,-0.9,0.5,-9 -"132",1596,3,3,3,6,3,0,3,1,-0.9,0.5,-9 -"133",1596,3,4,6,6.5,0.5,0,3,1,-0.9,0.5,-9 -"134",1596,3,5,6.5,8,1.5,0,3,1,-0.9,0.5,-9 -"135",1596,3,6,8,10,2,0,3,1,-0.9,0.5,-9 -"136",1597,3,1,0,1.199794425,1.199794425,1,-13,1,0.7,-0.8,1 -"137",1598,3,1,0,1.98645006,1.98645006,1,1,1,1.5,-0.2,0 -"138",1599,3,1,0,0.877659715,0.877659715,0,8,0,-6,-0.7,11 -"139",1600,3,1,0,1.502659824,1.502659824,1,-18,1,7,0.7,-1 -"140",1601,3,1,0,2,2,0,-7,1,-1.2,1.1,6 -"141",1601,3,2,2,3,1,0,-7,1,-1.2,1.1,6 -"142",1601,3,3,3,6,3,0,-7,1,-1.2,1.1,6 -"143",1601,3,4,6,6.5,0.5,0,-7,1,-1.2,1.1,6 -"144",1601,3,5,6.5,6.865511569,0.365511569,0,-7,1,-1.2,1.1,6 -"145",1602,3,1,0,2,2,0,6,1,5.1,-0.9,0 -"146",1602,3,2,2,3,1,0,6,1,5.1,-0.9,0 -"147",1602,3,3,3,6,3,0,6,1,5.1,-0.9,0 -"148",1602,3,4,6,6.5,0.5,0,6,1,5.1,-0.9,0 -"149",1602,3,5,6.5,8,1.5,0,6,1,5.1,-0.9,0 -"150",1602,3,6,8,10,2,0,6,1,5.1,-0.9,0 -"151",1603,3,1,0,0.408528432,0.408528432,0,1,1,3.6,-0.2,2 -"152",1604,3,1,0,1.036762724,1.036762724,0,7,1,-3.3,1.3,0 -"153",1605,3,1,0,2,2,0,-7,0,-0.1,0,0 -"154",1605,3,2,2,2.678368473,0.678368473,0,-7,0,-0.1,0,0 -"155",1606,3,1,0,2,2,0,-19,1,0.8,-1.2,0 -"156",1606,3,2,2,3,1,0,-19,1,0.8,-1.2,0 -"157",1606,3,3,3,6,3,0,-19,1,0.8,-1.2,0 -"158",1606,3,4,6,6.5,0.5,0,-19,1,0.8,-1.2,0 -"159",1606,3,5,6.5,8,1.5,0,-19,1,0.8,-1.2,0 -"160",1606,3,6,8,8.47786383,0.47786383,0,-19,1,0.8,-1.2,0 -"161",1607,3,1,0,2,2,0,-3,1,-5.3,-0.8,3 -"162",1607,3,2,2,3,1,0,-3,1,-5.3,-0.8,3 -"163",1607,3,3,3,6,3,0,-3,1,-5.3,-0.8,3 -"164",1607,3,4,6,6.5,0.5,0,-3,1,-5.3,-0.8,3 -"165",1607,3,5,6.5,7.859832417,1.359832417,1,-3,1,-5.3,-0.8,3 -"166",1608,3,1,0,1.553149728,1.553149728,1,-14,1,3.4,1.4,-4 -"167",1609,3,1,0,0.010648029,0.010648029,1,13,0,-4.1,1.3,4 -"168",1610,3,1,0,1.252412709,1.252412709,1,-2,1,4.2,-0.6,6 -"169",1611,3,1,0,2,2,0,23,1,-0.3,1.1,-11 -"170",1611,3,2,2,3,1,0,23,1,-0.3,1.1,-11 -"171",1611,3,3,3,6,3,0,23,1,-0.3,1.1,-11 -"172",1611,3,4,6,6.5,0.5,0,23,1,-0.3,1.1,-11 -"173",1611,3,5,6.5,8,1.5,0,23,1,-0.3,1.1,-11 -"174",1611,3,6,8,10,2,0,23,1,-0.3,1.1,-11 -"175",1612,3,1,0,0.672376248,0.672376248,0,-12,1,1.9,-0.5,-2 -"176",1613,3,1,0,2,2,0,7,0,1.7,-1.7,-3 -"177",1613,3,2,2,3,1,0,7,0,1.7,-1.7,-3 -"178",1613,3,3,3,6,3,0,7,0,1.7,-1.7,-3 -"179",1613,3,4,6,6.5,0.5,0,7,0,1.7,-1.7,-3 -"180",1613,3,5,6.5,8,1.5,0,7,0,1.7,-1.7,-3 -"181",1613,3,6,8,10,2,0,7,0,1.7,-1.7,-3 -"182",1614,3,1,0,0.639274268,0.639274268,0,17,1,-1.2,-0.7,2 -"183",1615,3,1,0,2,2,0,-13,0,-0.3,-0.6,8 -"184",1615,3,2,2,2.562416302,0.562416302,1,-13,0,-0.3,-0.6,8 -"185",1616,3,1,0,0.019573684,0.019573684,1,16,0,1.1,0.5,2 -"186",1617,3,1,0,1.691684678,1.691684678,1,-7,1,-1.8,0.5,4 -"187",1618,3,1,0,1.463341228,1.463341228,1,20,0,2.1,-0.9,4 -"188",1619,3,1,0,2,2,0,-10,1,-1.9,-0.4,-8 -"189",1619,3,2,2,3,1,0,-10,1,-1.9,-0.4,-8 -"190",1619,3,3,3,3.659841052,0.659841052,0,-10,1,-1.9,-0.4,-8 -"191",1620,3,1,0,1.07299847,1.07299847,1,15,1,-3.8,1.1,-2 -"192",1621,3,1,0,2,2,0,-15,1,1,0.5,4 -"193",1621,3,2,2,3,1,0,-15,1,1,0.5,4 -"194",1621,3,3,3,6,3,0,-15,1,1,0.5,4 -"195",1621,3,4,6,6.5,0.5,0,-15,1,1,0.5,4 -"196",1621,3,5,6.5,8,1.5,0,-15,1,1,0.5,4 -"197",1621,3,6,8,10,2,0,-15,1,1,0.5,4 -"198",1622,3,1,0,2,2,0,-3,1,-1.7,0.7,-8 -"199",1622,3,2,2,2.962789908,0.962789908,0,-3,1,-1.7,0.7,-8 -"200",1623,3,1,0,2,2,0,-22,1,-3,-0.1,6 -"201",1623,3,2,2,3,1,0,-22,1,-3,-0.1,6 -"202",1623,3,3,3,6,3,0,-22,1,-3,-0.1,6 -"203",1623,3,4,6,6.5,0.5,0,-22,1,-3,-0.1,6 -"204",1623,3,5,6.5,8,1.5,0,-22,1,-3,-0.1,6 -"205",1623,3,6,8,10,2,0,-22,1,-3,-0.1,6 -"206",1624,3,1,0,1.446377183,1.446377183,1,-14,0,-3.1,-1,4 -"207",1625,3,1,0,0.76506547,0.76506547,1,-11,0,1.8,1,3 -"208",1626,3,1,0,0.47508924,0.47508924,1,11,1,4.3,-0.8,4 -"209",1627,3,1,0,0.542538359,0.542538359,1,0,1,3.9,-0.1,5 -"210",1628,3,1,0,2,2,0,-8,1,3.8,-0.3,-4 -"211",1628,3,2,2,2.615324415,0.615324415,0,-8,1,3.8,-0.3,-4 -"212",1629,3,1,0,0.350107297,0.350107297,1,-3,1,0.9,-1.3,3 -"213",1630,3,1,0,0.276822364,0.276822364,1,23,0,-1.4,0,-1 -"214",1631,3,1,0,1.784433627,1.784433627,1,-21,1,0.5,-0.4,6 -"215",1632,3,1,0,0.71555691,0.71555691,0,-27,0,4,0.6,2 -"216",1633,3,1,0,0.373874579,0.373874579,1,10,0,1.9,-0.5,9 -"217",1634,3,1,0,1.98985075,1.98985075,1,-3,0,-4.5,1.2,2 -"218",1635,3,1,0,2,2,0,3,0,-0.3,-0.1,1 -"219",1635,3,2,2,3,1,0,3,0,-0.3,-0.1,1 -"220",1635,3,3,3,6,3,0,3,0,-0.3,-0.1,1 -"221",1635,3,4,6,6.5,0.5,0,3,0,-0.3,-0.1,1 -"222",1635,3,5,6.5,6.839444838,0.339444838,1,3,0,-0.3,-0.1,1 -"223",1636,3,1,0,1.267393597,1.267393597,1,20,0,0.7,0.2,-7 -"224",1637,3,1,0,2,2,0,-18,1,5.5,0.2,3 -"225",1637,3,2,2,3,1,0,-18,1,5.5,0.2,3 -"226",1637,3,3,3,3.162912541,0.162912541,0,-18,1,5.5,0.2,3 -"227",1638,3,1,0,0.160055714,0.160055714,1,23,1,2.3,3.1,2 -"228",1639,3,1,0,0.577852216,0.577852216,0,25,0,-6.4,-0.8, -"229",1640,3,1,0,1.458882676,1.458882676,1,-1,0,2,-2.2,1 -"230",1641,3,1,0,2,2,0,0,1,1.5,-1.4,7 -"231",1641,3,2,2,3,1,0,0,1,1.5,-1.4,7 -"232",1641,3,3,3,6,3,0,0,1,1.5,-1.4,7 -"233",1641,3,4,6,6.5,0.5,0,0,1,1.5,-1.4,7 -"234",1641,3,5,6.5,8,1.5,0,0,1,1.5,-1.4,7 -"235",1641,3,6,8,10,2,0,0,1,1.5,-1.4,7 -"236",1642,3,1,0,1.6446259,1.6446259,1,-21,0,-1.2,-0.1,0 -"237",1643,3,1,0,1.136967268,1.136967268,1,-7,1,0.2,1,2 -"238",1644,3,1,0,2,2,0,-2,1,-1.6,-0.9,3 -"239",1644,3,2,2,3,1,0,-2,1,-1.6,-0.9,3 -"240",1644,3,3,3,6,3,0,-2,1,-1.6,-0.9,3 -"241",1644,3,4,6,6.5,0.5,0,-2,1,-1.6,-0.9,3 -"242",1644,3,5,6.5,8,1.5,0,-2,1,-1.6,-0.9,3 -"243",1644,3,6,8,10,2,0,-2,1,-1.6,-0.9,3 -"244",1645,3,1,0,1.675042794,1.675042794,1,-3,0,-0.5,-0.2,3 -"245",1646,3,1,0,1.496712361,1.496712361,0,-27,1,0.8,-1.5,1 -"246",1647,3,1,0,0.385659676,0.385659676,0,-8,1,3.9,-0.8,-10 -"247",1648,3,1,0,2,2,0,-25,1,1.1,1.1,1 -"248",1648,3,2,2,3,1,0,-25,1,1.1,1.1,1 -"249",1648,3,3,3,6,3,0,-25,1,1.1,1.1,1 -"250",1648,3,4,6,6.5,0.5,0,-25,1,1.1,1.1,1 -"251",1648,3,5,6.5,8,1.5,0,-25,1,1.1,1.1,1 -"252",1648,3,6,8,10,2,0,-25,1,1.1,1.1,1 -"253",1649,3,1,0,2,2,0,-20,1,3.4,-2.1,7 -"254",1649,3,2,2,3,1,0,-20,1,3.4,-2.1,7 -"255",1649,3,3,3,6,3,0,-20,1,3.4,-2.1,7 -"256",1649,3,4,6,6.5,0.5,0,-20,1,3.4,-2.1,7 -"257",1649,3,5,6.5,8,1.5,0,-20,1,3.4,-2.1,7 -"258",1649,3,6,8,8.081064333,0.081064333,0,-20,1,3.4,-2.1,7 -"259",1650,3,1,0,2,2,0,2,0,-0.7,0,-6 -"260",1650,3,2,2,2.422405584,0.422405584,0,2,0,-0.7,0,-6 -"261",1651,3,1,0,0.989659424,0.989659424,1,-1,0,6.9,-0.3,0 -"262",1652,3,1,0,0.508788424,0.508788424,1,0,0,4.5,0.3,-3 -"263",1653,3,1,0,2,2,0,27,0,2.6,-0.8,3 -"264",1653,3,2,2,3,1,0,27,0,2.6,-0.8,3 -"265",1653,3,3,3,3.039369083,0.039369083,0,27,0,2.6,-0.8,3 -"266",1654,3,1,0,2,2,0,-10,1,-2.4,-0.8,1 -"267",1654,3,2,2,3,1,0,-10,1,-2.4,-0.8,1 -"268",1654,3,3,3,6,3,0,-10,1,-2.4,-0.8,1 -"269",1654,3,4,6,6.5,0.5,0,-10,1,-2.4,-0.8,1 -"270",1654,3,5,6.5,7.289038726,0.789038726,0,-10,1,-2.4,-0.8,1 -"271",1655,3,1,0,0.934364851,0.934364851,1,19,1,8.1,-0.4,-5 -"272",1656,3,1,0,0.670789229,0.670789229,0,9,0,-5.1,0,-6 -"273",1657,3,1,0,2,2,0,-13,0,-6.6,-0.1,-4 -"274",1657,3,2,2,3,1,0,-13,0,-6.6,-0.1,-4 -"275",1657,3,3,3,6,3,0,-13,0,-6.6,-0.1,-4 -"276",1657,3,4,6,6.5,0.5,0,-13,0,-6.6,-0.1,-4 -"277",1657,3,5,6.5,8,1.5,0,-13,0,-6.6,-0.1,-4 -"278",1657,3,6,8,10,2,0,-13,0,-6.6,-0.1,-4 -"279",1658,3,1,0,0.519219646,0.519219646,0,-7,0,4.2,1.1,0 -"280",1659,3,1,0,1.188729704,1.188729704,1,2,0,-3.5,0.3,-2 -"281",1660,3,1,0,0.83428084,0.83428084,0,11,1,2.3,-0.9,-6 -"282",1661,3,1,0,0.677474357,0.677474357,1,-18,0,-0.4,0.8,5 -"283",1662,3,1,0,0.11272811,0.11272811,1,27,1,0.8,-0.5,0 -"284",1663,3,1,0,0.103376989,0.103376989,0,8,1,5.3,-0.9,4 -"285",1664,3,1,0,1.160793892,1.160793892,1,17,1,4.3,-0.9,3 -"286",1665,3,1,0,0.399608833,0.399608833,0,13,0,1.4,0.6,5 -"287",1666,3,1,0,2,2,0,17,1,12.4,0.1,-2 -"288",1666,3,2,2,3,1,0,17,1,12.4,0.1,-2 -"289",1666,3,3,3,6,3,0,17,1,12.4,0.1,-2 -"290",1666,3,4,6,6.5,0.5,0,17,1,12.4,0.1,-2 -"291",1666,3,5,6.5,7.530026923,1.030026923,1,17,1,12.4,0.1,-2 -"292",1667,3,1,0,0.084790976,0.084790976,1,-4,0,-4.7,0.8,5 -"293",1668,3,1,0,1.934030908,1.934030908,1,-6,1,-2.6,1.1,-8 -"294",1669,3,1,0,0.131872321,0.131872321,0,1,0,-7.2,0.1,-2 -"295",1670,3,1,0,0.885132998,0.885132998,1,1,0,-0.9,-0.9,-1 -"296",1671,3,1,0,2,2,0,13,1,5.9,-0.2,-3 -"297",1671,3,2,2,2.779752575,0.779752575,0,13,1,5.9,-0.2,-3 -"298",1672,3,1,0,2,2,0,7,1,2.6,-0.7,-2 -"299",1672,3,2,2,3,1,0,7,1,2.6,-0.7,-2 -"300",1672,3,3,3,6,3,0,7,1,2.6,-0.7,-2 -"301",1672,3,4,6,6.5,0.5,0,7,1,2.6,-0.7,-2 -"302",1672,3,5,6.5,8,1.5,0,7,1,2.6,-0.7,-2 -"303",1672,3,6,8,10,2,0,7,1,2.6,-0.7,-2 -"304",1673,3,1,0,1.540400701,1.540400701,1,-23,1,-4.7,0.8,-6 -"305",1674,3,1,0,2,2,0,-6,0,7.9,-1.2,0 -"306",1674,3,2,2,3,1,0,-6,0,7.9,-1.2,0 -"307",1674,3,3,3,6,3,0,-6,0,7.9,-1.2,0 -"308",1674,3,4,6,6.5,0.5,0,-6,0,7.9,-1.2,0 -"309",1674,3,5,6.5,7.578334834,1.078334834,1,-6,0,7.9,-1.2,0 -"310",1675,3,1,0,0.400784455,0.400784455,1,-15,0,-4,0.7,2 -"311",1676,3,1,0,1.446155205,1.446155205,0,-9,0,10.9,-0.7,3 -"312",1677,3,1,0,1.745407047,1.745407047,1,-8,0,-6.9,,-9 -"313",1678,3,1,0,2,2,0,-6,0,6.5,1,-3 -"314",1678,3,2,2,2.218091195,0.218091195,0,-6,0,6.5,1,-3 -"315",1679,3,1,0,2,2,0,-16,0,4.4,0.5,6 -"316",1679,3,2,2,2.732431376,0.732431376,0,-16,0,4.4,0.5,6 -"317",1680,3,1,0,2,2,0,-5,0,1,-0.6,3 -"318",1680,3,2,2,3,1,0,-5,0,1,-0.6,3 -"319",1680,3,3,3,6,3,0,-5,0,1,-0.6,3 -"320",1680,3,4,6,6.5,0.5,0,-5,0,1,-0.6,3 -"321",1680,3,5,6.5,8,1.5,0,-5,0,1,-0.6,3 -"322",1680,3,6,8,10,2,0,-5,0,1,-0.6,3 -"323",1681,3,1,0,2,2,0,-1,0,0.5,0,-8 -"324",1681,3,2,2,3,1,0,-1,0,0.5,0,-8 -"325",1681,3,3,3,6,3,0,-1,0,0.5,0,-8 -"326",1681,3,4,6,6.5,0.5,0,-1,0,0.5,0,-8 -"327",1681,3,5,6.5,8,1.5,0,-1,0,0.5,0,-8 -"328",1681,3,6,8,8.191606297,0.191606297,0,-1,0,0.5,0,-8 -"329",1682,3,1,0,2,2,0,-17,1,-1.1,,4 -"330",1682,3,2,2,2.199518404,0.199518404,0,-17,1,-1.1,,4 -"331",1683,3,1,0,2,2,0,3,1,-1.3,1.1,-2 -"332",1683,3,2,2,2.287567643,0.287567643,1,3,1,-1.3,1.1,-2 -"333",1684,3,1,0,2,2,0,21,0,2.1,-1.6,4 -"334",1684,3,2,2,3,1,0,21,0,2.1,-1.6,4 -"335",1684,3,3,3,6,3,0,21,0,2.1,-1.6,4 -"336",1684,3,4,6,6.5,0.5,0,21,0,2.1,-1.6,4 -"337",1684,3,5,6.5,7.606633391,1.106633391,0,21,0,2.1,-1.6,4 -"338",1685,3,1,0,0.515268149,0.515268149,1,12,0,3.2,0.9,2 -"339",1686,3,1,0,0.951308982,0.951308982,1,8,1,1,-0.3,-2 -"340",1687,3,1,0,2,2,0,14,0,-6.6,,3 -"341",1687,3,2,2,2.335769627,0.335769627,0,14,0,-6.6,,3 -"342",1688,3,1,0,2,2,0,3,0,0.1,-0.7,0 -"343",1688,3,2,2,3,1,0,3,0,0.1,-0.7,0 -"344",1688,3,3,3,5.000390746,2.000390746,0,3,0,0.1,-0.7,0 -"345",1689,3,1,0,2,2,0,-17,1,2.7,-0.4,-1 -"346",1689,3,2,2,3,1,0,-17,1,2.7,-0.4,-1 -"347",1689,3,3,3,6,3,0,-17,1,2.7,-0.4,-1 -"348",1689,3,4,6,6.5,0.5,0,-17,1,2.7,-0.4,-1 -"349",1689,3,5,6.5,8,1.5,0,-17,1,2.7,-0.4,-1 -"350",1689,3,6,8,10,2,0,-17,1,2.7,-0.4,-1 -"351",1690,3,1,0,2,2,0,-6,1,3.4,-0.8,-2 -"352",1690,3,2,2,3,1,0,-6,1,3.4,-0.8,-2 -"353",1690,3,3,3,6,3,0,-6,1,3.4,-0.8,-2 -"354",1690,3,4,6,6.5,0.5,0,-6,1,3.4,-0.8,-2 -"355",1690,3,5,6.5,8,1.5,0,-6,1,3.4,-0.8,-2 -"356",1690,3,6,8,10,2,0,-6,1,3.4,-0.8,-2 -"357",1691,3,1,0,2,2,0,10,0,2.6,0.7,-9 -"358",1691,3,2,2,3,1,0,10,0,2.6,0.7,-9 -"359",1691,3,3,3,6,3,0,10,0,2.6,0.7,-9 -"360",1691,3,4,6,6.5,0.5,0,10,0,2.6,0.7,-9 -"361",1691,3,5,6.5,8,1.5,0,10,0,2.6,0.7,-9 -"362",1691,3,6,8,10,2,0,10,0,2.6,0.7,-9 -"363",1692,3,1,0,2,2,0,-9,1,-1.6,-1.1,-3 -"364",1692,3,2,2,3,1,0,-9,1,-1.6,-1.1,-3 -"365",1692,3,3,3,5.929808765,2.929808765,0,-9,1,-1.6,-1.1,-3 -"366",1693,3,1,0,2,2,0,-5,0,-6.8,1.6,2 -"367",1693,3,2,2,3,1,0,-5,0,-6.8,1.6,2 -"368",1693,3,3,3,3.134783276,0.134783276,1,-5,0,-6.8,1.6,2 -"369",1694,3,1,0,2,2,0,-4,1,0.4,-1,0 -"370",1694,3,2,2,3,1,0,-4,1,0.4,-1,0 -"371",1694,3,3,3,6,3,0,-4,1,0.4,-1,0 -"372",1694,3,4,6,6.5,0.5,0,-4,1,0.4,-1,0 -"373",1694,3,5,6.5,8,1.5,0,-4,1,0.4,-1,0 -"374",1694,3,6,8,10,2,0,-4,1,0.4,-1,0 -"375",1695,3,1,0,2,2,0,8,1,-1.5,0.2,4 -"376",1695,3,2,2,2.713872786,0.713872786,1,8,1,-1.5,0.2,4 -"377",1696,3,1,0,1.891910825,1.891910825,1,-2,1,-4,1.6,-6 -"378",1697,3,1,0,2,2,0,-7,1,-0.4,-0.1,-5 -"379",1697,3,2,2,3,1,0,-7,1,-0.4,-0.1,-5 -"380",1697,3,3,3,6,3,0,-7,1,-0.4,-0.1,-5 -"381",1697,3,4,6,6.5,0.5,0,-7,1,-0.4,-0.1,-5 -"382",1697,3,5,6.5,8,1.5,0,-7,1,-0.4,-0.1,-5 -"383",1697,3,6,8,9.804747623,1.804747623,0,-7,1,-0.4,-0.1,-5 -"384",1698,3,1,0,0.802445117,0.802445117,1,2,0,10.2,0.2,3 -"385",1699,3,1,0,1.581098284,1.581098284,0,8,1,-0.8,-0.4,-9 -"386",1700,3,1,0,0.653604698,0.653604698,1,-9,0,4.4,-0.4,10 -"387",1701,3,1,0,0.340164988,0.340164988,1,5,0,-1,-0.1,9 -"388",1702,3,1,0,0.040761253,0.040761253,1,9,0,-0.8,0.2,2 -"389",1703,3,1,0,0.028988103,0.028988103,1,11,0,7.9,1.1,14 -"390",1704,3,1,0,2,2,0,-15,1,,-0.7,-4 -"391",1704,3,2,2,3,1,0,-15,1,,-0.7,-4 -"392",1704,3,3,3,6,3,0,-15,1,,-0.7,-4 -"393",1704,3,4,6,6.5,0.5,0,-15,1,,-0.7,-4 -"394",1704,3,5,6.5,8,1.5,0,-15,1,,-0.7,-4 -"395",1704,3,6,8,8.98769588,0.98769588,1,-15,1,,-0.7,-4 -"396",1705,3,1,0,0.000553179,0.000553179,1,7,0,5.9,1.2,1 -"397",1706,3,1,0,1.092324615,1.092324615,1,26,1,3.8,-0.1,2 -"398",1707,3,1,0,0.810044055,0.810044055,0,1,0,4.8,0.5,-1 -"399",1708,3,1,0,0.533953409,0.533953409,1,12,1,-0.7,0.1,1 -"400",1709,3,1,0,2,2,0,-6,1,-2.2,-1.2,-1 -"401",1709,3,2,2,3,1,0,-6,1,-2.2,-1.2,-1 -"402",1709,3,3,3,6,3,0,-6,1,-2.2,-1.2,-1 -"403",1709,3,4,6,6.5,0.5,0,-6,1,-2.2,-1.2,-1 -"404",1709,3,5,6.5,7.834913616,1.334913616,0,-6,1,-2.2,-1.2,-1 -"405",1710,3,1,0,1.897216827,1.897216827,0,0,0,-9,0.1,1 -"406",1711,3,1,0,0.244799925,0.244799925,1,-4,0,1,0.9,3 -"407",1712,3,1,0,0.382282185,0.382282185,0,-21,0,0.5,0.3, -"408",1713,3,1,0,0.104945645,0.104945645,0,-9,0,-1.9,2,5 -"409",1714,3,1,0,0.33130395,0.33130395,0,-14,0,6.3,1.1,2 -"410",1715,3,1,0,1.199906685,1.199906685,0,-15,0,6.6,0.5,-5 -"411",1716,3,1,0,2,2,0,2,1,-3.2,-0.2,0 -"412",1716,3,2,2,3,1,0,2,1,-3.2,-0.2,0 -"413",1716,3,3,3,6,3,0,2,1,-3.2,-0.2,0 -"414",1716,3,4,6,6.5,0.5,0,2,1,-3.2,-0.2,0 -"415",1716,3,5,6.5,8,1.5,0,2,1,-3.2,-0.2,0 -"416",1716,3,6,8,10,2,0,2,1,-3.2,-0.2,0 -"417",1717,3,1,0,1.496421386,1.496421386,1,30,1,5.8,-0.8,0 -"418",1718,3,1,0,1.517204249,1.517204249,1,2,0,2.4,0.2,-2 -"419",1719,3,1,0,2,2,0,-1,1,-0.5,-0.9,-2 -"420",1719,3,2,2,2.390291732,0.390291732,0,-1,1,-0.5,-0.9,-2 -"421",1720,3,1,0,2,2,0,-37,1,-0.3,-0.4,-5 -"422",1720,3,2,2,3,1,0,-37,1,-0.3,-0.4,-5 -"423",1720,3,3,3,6,3,0,-37,1,-0.3,-0.4,-5 -"424",1720,3,4,6,6.234788875,0.234788875,0,-37,1,-0.3,-0.4,-5 -"425",1721,3,1,0,2,2,0,6,0,8.2,0,-4 -"426",1721,3,2,2,3,1,0,6,0,8.2,0,-4 -"427",1721,3,3,3,6,3,0,6,0,8.2,0,-4 -"428",1721,3,4,6,6.5,0.5,0,6,0,8.2,0,-4 -"429",1721,3,5,6.5,6.932384261,0.432384261,1,6,0,8.2,0,-4 -"430",1722,3,1,0,2,2,0,1,1,-2.4,-1.1,1 -"431",1722,3,2,2,3,1,0,1,1,-2.4,-1.1,1 -"432",1722,3,3,3,6,3,0,1,1,-2.4,-1.1,1 -"433",1722,3,4,6,6.5,0.5,0,1,1,-2.4,-1.1,1 -"434",1722,3,5,6.5,7.371861465,0.871861465,0,1,1,-2.4,-1.1,1 -"435",1723,3,1,0,2,2,0,3,1,2.3,-1.2,-6 -"436",1723,3,2,2,3,1,0,3,1,2.3,-1.2,-6 -"437",1723,3,3,3,4.01544989,1.01544989,0,3,1,2.3,-1.2,-6 -"438",1724,3,1,0,0.074345464,0.074345464,1,17,0,0.3,0.7,4 -"439",1725,3,1,0,0.621678403,0.621678403,1,14,1,-3.8,0.3,-11 -"440",1726,3,1,0,0.416841255,0.416841255,0,-6,0,-3.9,0.5,1 -"441",1727,3,1,0,1.13832654,1.13832654,1,8,0,2.1,-0.2,6 -"442",1728,3,1,0,1.438937734,1.438937734,0,-30,,7,-1,-2 -"443",1729,3,1,0,2,2,0,-16,1,-5.3,0.7,1 -"444",1729,3,2,2,2.372990563,0.372990563,0,-16,1,-5.3,0.7,1 -"445",1730,3,1,0,2,2,0,10,1,3.3,-0.6,7 -"446",1730,3,2,2,3,1,0,10,1,3.3,-0.6,7 -"447",1730,3,3,3,4.083951292,1.083951292,1,10,1,3.3,-0.6,7 -"448",1731,3,1,0,0.529096109,0.529096109,0,-8,1,-4.8,0.5,-4 -"449",1732,3,1,0,1.409201734,1.409201734,1,-8,1,-1,1,-8 -"450",1733,3,1,0,2,2,0,-18,1,3.3,1.2,-3 -"451",1733,3,2,2,3,1,0,-18,1,3.3,1.2,-3 -"452",1733,3,3,3,4.239269097,1.239269097,0,-18,1,3.3,1.2,-3 -"453",1734,3,1,0,0.480063951,0.480063951,1,2,0,0.2,1,5 -"454",1735,3,1,0,0.130962253,0.130962253,0,8,0,3.9,0.9,-4 -"455",1736,3,1,0,0.185060724,0.185060724,1,24,1,2.8,-1.8,10 -"456",1737,3,1,0,0.655688253,0.655688253,1,3,0,6.1,-0.6,3 -"457",1738,3,1,0,2,2,0,-7,0,0.2,0.1,1 -"458",1738,3,2,2,3,1,0,-7,0,0.2,0.1,1 -"459",1738,3,3,3,3.121789087,0.121789087,0,-7,0,0.2,0.1,1 -"460",1739,3,1,0,0.868176921,0.868176921,1,4,0,2.8,-0.5,0 -"461",1740,3,1,0,2,2,0,-37,0,-2.8,-1.2,-6 -"462",1740,3,2,2,3,1,0,-37,0,-2.8,-1.2,-6 -"463",1740,3,3,3,4.409004536,1.409004536,0,-37,0,-2.8,-1.2,-6 -"464",1741,3,1,0,2,2,0,31,0,-3.1,-1.2,-7 -"465",1741,3,2,2,3,1,0,31,0,-3.1,-1.2,-7 -"466",1741,3,3,3,6,3,0,31,0,-3.1,-1.2,-7 -"467",1741,3,4,6,6.5,0.5,0,31,0,-3.1,-1.2,-7 -"468",1741,3,5,6.5,8,1.5,0,31,0,-3.1,-1.2,-7 -"469",1741,3,6,8,10,2,0,31,0,-3.1,-1.2,-7 -"470",1742,3,1,0,2,2,0,12,1,6.5,0.9,-2 -"471",1742,3,2,2,3,1,0,12,1,6.5,0.9,-2 -"472",1742,3,3,3,6,3,0,12,1,6.5,0.9,-2 -"473",1742,3,4,6,6.5,0.5,0,12,1,6.5,0.9,-2 -"474",1742,3,5,6.5,7.05056273,0.55056273,1,12,1,6.5,0.9,-2 -"475",1743,3,1,0,0.777569418,0.777569418,1,10,1,-4.3,1.1,2 -"476",1744,3,1,0,2,2,0,-1,0,-0.9,-0.2, -"477",1744,3,2,2,2.086018687,0.086018687,0,-1,0,-0.9,-0.2, -"478",1745,3,1,0,0.403066201,0.403066201,1,-15,0,-3.8,2,7 -"479",1746,3,1,0,1.201486588,1.201486588,1,1,0,6.5,1.1,-4 -"480",1747,3,1,0,1.960539678,1.960539678,1,1,1,4.1,-0.4,1 -"481",1748,3,1,0,1.016644142,1.016644142,0,-11,0,8.1,-0.4,3 -"482",1749,3,1,0,0.372561426,0.372561426,1,16,,4.9,0.9,3 -"483",1750,3,1,0,2,2,0,-21,0,3.3,0,-8 -"484",1750,3,2,2,3,1,0,-21,0,3.3,0,-8 -"485",1750,3,3,3,5.196247581,2.196247581,0,-21,0,3.3,0,-8 -"486",1751,3,1,0,1.113624719,1.113624719,1,24,0,-2.6,-0.6,-2 -"487",1752,3,1,0,1.178564427,1.178564427,0,-20,0,1,-0.3,3 -"488",1753,3,1,0,2,2,0,-10,0,1.5,0.6,4 -"489",1753,3,2,2,3,1,0,-10,0,1.5,0.6,4 -"490",1753,3,3,3,6,3,0,-10,0,1.5,0.6,4 -"491",1753,3,4,6,6.5,0.5,0,-10,0,1.5,0.6,4 -"492",1753,3,5,6.5,8,1.5,0,-10,0,1.5,0.6,4 -"493",1753,3,6,8,10,2,0,-10,0,1.5,0.6,4 -"494",1754,3,1,0,2,2,0,,0,-6.1,-0.6,-5 -"495",1754,3,2,2,3,1,0,,0,-6.1,-0.6,-5 -"496",1754,3,3,3,6,3,0,,0,-6.1,-0.6,-5 -"497",1754,3,4,6,6.5,0.5,0,,0,-6.1,-0.6,-5 -"498",1754,3,5,6.5,6.902217969,0.402217969,0,,0,-6.1,-0.6,-5 -"499",1755,3,1,0,0.080817122,0.080817122,1,-14,0,1.4,0.7,2 -"500",1756,3,1,0,1.804194438,1.804194438,1,0,1,-3.6,1.4,3 -"501",1757,3,1,0,1.898819357,1.898819357,0,9,1,-6.7,-1.5,12 -"502",1758,3,1,0,0.207445696,0.207445696,0,16,0,-2.1,-1,9 -"503",1759,3,1,,,,,16,0,-3.3,-0.2,8 -"504",1760,3,1,0,2,2,0,10,0,2.9,-0.9,-5 -"505",1760,3,2,2,3,1,0,10,0,2.9,-0.9,-5 -"506",1760,3,3,3,6,3,0,10,0,2.9,-0.9,-5 -"507",1760,3,4,6,6.5,0.5,0,10,0,2.9,-0.9,-5 -"508",1760,3,5,6.5,8,1.5,0,10,0,2.9,-0.9,-5 -"509",1760,3,6,8,9.135084981,1.135084981,0,10,0,2.9,-0.9,-5 -"510",1761,3,1,0,2,2,0,-6,1,5,-0.9,-6 -"511",1761,3,2,2,3,1,0,-6,1,5,-0.9,-6 -"512",1761,3,3,3,6,3,0,-6,1,5,-0.9,-6 -"513",1761,3,4,6,6.5,0.5,0,-6,1,5,-0.9,-6 -"514",1761,3,5,6.5,8,1.5,0,-6,1,5,-0.9,-6 -"515",1761,3,6,8,9.815484817,1.815484817,0,-6,1,5,-0.9,-6 -"516",1762,3,1,0,2,2,0,-20,1,0.1,0.1,-2 -"517",1762,3,2,2,3,1,0,-20,1,0.1,0.1,-2 -"518",1762,3,3,3,6,3,0,-20,1,0.1,0.1,-2 -"519",1762,3,4,6,6.5,0.5,0,-20,1,0.1,0.1,-2 -"520",1762,3,5,6.5,8,1.5,0,-20,1,0.1,0.1,-2 -"521",1762,3,6,8,8.932877528,0.932877528,0,-20,1,0.1,0.1,-2 -"522",1763,3,1,0,1.030106389,1.030106389,1,-5,0,-5.1,-0.1,6 -"523",1764,3,1,0,1.707983357,1.707983357,1,-5,0,0.6,0.6,0 -"524",1765,3,1,0,1.042443221,1.042443221,0,-12,0,-4,-2,-2 -"525",1766,3,1,0,2,2,0,-8,1,4.8,0.3,-10 -"526",1766,3,2,2,2.223381271,0.223381271,0,-8,1,4.8,0.3,-10 -"527",1767,3,1,0,2,2,0,-2,0,-4.9,0.9,0 -"528",1767,3,2,2,2.504339248,0.504339248,1,-2,0,-4.9,0.9,0 -"529",1768,3,1,0,0.539405122,0.539405122,0,6,1,0.9,0,-2 -"530",1769,3,1,0,2,2,0,-29,0,-0.2,0.1,6 -"531",1769,3,2,2,3,1,0,-29,0,-0.2,0.1,6 -"532",1769,3,3,3,6,3,0,-29,0,-0.2,0.1,6 -"533",1769,3,4,6,6.5,0.5,0,-29,0,-0.2,0.1,6 -"534",1769,3,5,6.5,7.51835628,1.01835628,0,-29,0,-0.2,0.1,6 -"535",1770,3,1,0,0.220168872,0.220168872,1,-26,0,7.6,1.1,4 -"536",1771,3,1,0,2,2,0,-10,0,1.7,0.4,-6 -"537",1771,3,2,2,3,1,0,-10,0,1.7,0.4,-6 -"538",1771,3,3,3,6,3,0,-10,0,1.7,0.4,-6 -"539",1771,3,4,6,6.5,0.5,0,-10,0,1.7,0.4,-6 -"540",1771,3,5,6.5,8,1.5,0,-10,0,1.7,0.4,-6 -"541",1771,3,6,8,10,2,0,-10,0,1.7,0.4,-6 -"542",1772,3,1,0,0.616787561,0.616787561,0,0,1,-0.9,-1,3 -"543",1773,3,1,0,2,2,0,-7,1,1.8,1,-2 -"544",1773,3,2,2,3,1,0,-7,1,1.8,1,-2 -"545",1773,3,3,3,6,3,0,-7,1,1.8,1,-2 -"546",1773,3,4,6,6.5,0.5,0,-7,1,1.8,1,-2 -"547",1773,3,5,6.5,6.860099601,0.360099601,0,-7,1,1.8,1,-2 -"548",1774,3,1,0,2,2,0,8,1,0.2,-1,7 -"549",1774,3,2,2,3,1,0,8,1,0.2,-1,7 -"550",1774,3,3,3,4.421002913,1.421002913,0,8,1,0.2,-1,7 -"551",1775,3,1,0,2,2,0,-5,1,7.4,0,4 -"552",1775,3,2,2,3,1,0,-5,1,7.4,0,4 -"553",1775,3,3,3,6,3,0,-5,1,7.4,0,4 -"554",1775,3,4,6,6.5,0.5,0,-5,1,7.4,0,4 -"555",1775,3,5,6.5,6.56177795,0.06177795,1,-5,1,7.4,0,4 -"556",1776,3,1,0,1.927633966,1.927633966,1,-20,,2.7,2,-6 -"557",1777,3,1,0,0.017305022,0.017305022,0,1,0,-7.3,0,-2 -"558",1778,3,1,0,2,2,0,7,1,5.2,-1.9,-6 -"559",1778,3,2,2,3,1,0,7,1,5.2,-1.9,-6 -"560",1778,3,3,3,6,3,0,7,1,5.2,-1.9,-6 -"561",1778,3,4,6,6.5,0.5,0,7,1,5.2,-1.9,-6 -"562",1778,3,5,6.5,8,1.5,0,7,1,5.2,-1.9,-6 -"563",1778,3,6,8,10,2,0,7,1,5.2,-1.9,-6 -"564",1779,3,1,0,2,2,0,0,1,3.8,-0.1,7 -"565",1779,3,2,2,3,1,0,0,1,3.8,-0.1,7 -"566",1779,3,3,3,6,3,0,0,1,3.8,-0.1,7 -"567",1779,3,4,6,6.174378196,0.174378196,0,0,1,3.8,-0.1,7 -"568",1780,3,1,0,2,2,0,-24,1,9.7,-1.2,5 -"569",1780,3,2,2,3,1,0,-24,1,9.7,-1.2,5 -"570",1780,3,3,3,4.655759823,1.655759823,0,-24,1,9.7,-1.2,5 -"571",1781,3,1,0,2,2,0,22,1,-3.6,0,-5 -"572",1781,3,2,2,2.481672524,0.481672524,0,22,1,-3.6,0,-5 -"573",1782,3,1,0,2,2,0,-17,0,-8.3,1.9,-4 -"574",1782,3,2,2,3,1,0,-17,0,-8.3,1.9,-4 -"575",1782,3,3,3,6,3,0,-17,0,-8.3,1.9,-4 -"576",1782,3,4,6,6.5,0.5,0,-17,0,-8.3,1.9,-4 -"577",1782,3,5,6.5,8,1.5,0,-17,0,-8.3,1.9,-4 -"578",1782,3,6,8,8.741507309,0.741507309,1,-17,0,-8.3,1.9,-4 -"579",1783,3,1,0,1.517877676,1.517877676,1,-1,1,2.4,0.4,-6 -"580",1784,3,1,0,0.228030226,0.228030226,1,11,1,-3.2,0.8,-4 -"581",1785,3,1,0,0.56424725,0.56424725,0,11,1,-4.7,-0.1,1 -"582",1786,3,1,0,0.195856878,0.195856878,1,28,0,6.3,0.5,-5 -"583",1787,3,1,0,2,2,0,29,,-1.1,-1.3,-14 -"584",1787,3,2,2,3,1,0,29,,-1.1,-1.3,-14 -"585",1787,3,3,3,5.714259381,2.714259381,1,29,,-1.1,-1.3,-14 -"586",1788,3,1,0,2,2,0,-10,0,0.8,-0.8,1 -"587",1788,3,2,2,3,1,0,-10,0,0.8,-0.8,1 -"588",1788,3,3,3,3.117743518,0.117743518,0,-10,0,0.8,-0.8,1 -"589",1789,3,1,0,0.243177057,0.243177057,0,5,0,3.1,0.2,-9 -"590",1790,3,1,0,1.661083081,1.661083081,0,16,1,3.4,-0.2, -"591",1791,3,1,0,1.269498322,1.269498322,0,8,1,-0.5,-0.4,0 -"592",1792,3,1,0,2,2,0,-32,0,-1.2,0.5,7 -"593",1792,3,2,2,3,1,0,-32,0,-1.2,0.5,7 -"594",1792,3,3,3,4.782284545,1.782284545,0,-32,0,-1.2,0.5,7 -"595",1793,3,1,0,0.9877408,0.9877408,1,-6,0,2.9,1.2,5 -"596",1794,3,1,0,2,2,0,-2,0,0.6,0.4,-7 -"597",1794,3,2,2,3,1,0,-2,0,0.6,0.4,-7 -"598",1794,3,3,3,6,3,0,-2,0,0.6,0.4,-7 -"599",1794,3,4,6,6.382943844,0.382943844,0,-2,0,0.6,0.4,-7 -"600",1795,3,1,0,1.512989053,1.512989053,1,-16,0,7,-0.5,-6 -"601",1796,3,1,0,0.016857738,0.016857738,0,2,1,-3.4,-2,5 -"602",1797,3,1,0,2,2,0,-26,1,-0.4,0,7 -"603",1797,3,2,2,3,1,0,-26,1,-0.4,0,7 -"604",1797,3,3,3,4.319016044,1.319016044,0,-26,1,-0.4,0,7 -"605",1798,3,1,0,2,2,0,-18,1,-7.9,-0.1,-4 -"606",1798,3,2,2,2.230339962,0.230339962,0,-18,1,-7.9,-0.1,-4 -"607",1799,3,1,0,1.687999002,1.687999002,1,20,0,-3.8,1.7,-13 -"608",1800,3,1,0,0.198849255,0.198849255,0,2,0,-6.2,-0.9,0 -"609",1801,3,1,0,0.411631451,0.411631451,1,25,0,7.2,-0.3,2 -"610",1802,3,1,0,0.476032541,0.476032541,1,5,0,-4.1,-0.8,2 -"611",1803,3,1,0,1.072459813,1.072459813,1,4,1,-3.5,0.4,5 -"612",1804,3,1,0,2,2,0,8,1,-1.2,-0.1,-13 -"613",1804,3,2,2,3,1,0,8,1,-1.2,-0.1,-13 -"614",1804,3,3,3,6,3,0,8,1,-1.2,-0.1,-13 -"615",1804,3,4,6,6.5,0.5,0,8,1,-1.2,-0.1,-13 -"616",1804,3,5,6.5,7.089128312,0.589128312,0,8,1,-1.2,-0.1,-13 -"617",1805,3,1,0,1.722179937,1.722179937,1,-12,1,6.3,-0.3,4 -"618",1806,3,1,0,1.747003985,1.747003985,0,1,,1.2,-2,4 -"619",1807,3,1,0,0.498290145,0.498290145,1,1,1,3.2,0.1,5 -"620",1808,3,1,0,2,2,0,0,0,-5.6,0.4,0 -"621",1808,3,2,2,3,1,0,0,0,-5.6,0.4,0 -"622",1808,3,3,3,6,3,0,0,0,-5.6,0.4,0 -"623",1808,3,4,6,6.289685681,0.289685681,0,0,0,-5.6,0.4,0 -"624",1809,3,1,0,0.064526312,0.064526312,1,13,0,0.8,2.1,2 -"625",1810,3,1,0,0.089291403,0.089291403,1,-7,0,2.6,1,5 -"626",1811,3,1,0,1.899924496,1.899924496,0,-4,1,-3.9,-0.1,-8 -"627",1812,3,1,0,1.329843731,1.329843731,1,0,0,-0.2,0,-6 -"628",1813,3,1,0,2,2,0,21,1,-1.2,-0.4,-2 -"629",1813,3,2,2,3,1,0,21,1,-1.2,-0.4,-2 -"630",1813,3,3,3,6,3,0,21,1,-1.2,-0.4,-2 -"631",1813,3,4,6,6.5,0.5,0,21,1,-1.2,-0.4,-2 -"632",1813,3,5,6.5,8,1.5,0,21,1,-1.2,-0.4,-2 -"633",1813,3,6,8,10,2,0,21,1,-1.2,-0.4,-2 -"634",1814,3,1,0,0.48037997,0.48037997,1,10,0,,0.3,5 -"635",1815,3,1,0,1.149944508,1.149944508,1,-9,0,10.9,1.4,-5 -"636",1816,3,1,0,0.540505593,0.540505593,1,-15,0,-4.2,-1.1,2 -"637",1817,3,1,0,2,2,0,-23,1,-3.2,1.5,2 -"638",1817,3,2,2,3,1,0,-23,1,-3.2,1.5,2 -"639",1817,3,3,3,3.563036853,0.563036853,0,-23,1,-3.2,1.5,2 -"640",1818,3,1,0,0.639062999,0.639062999,0,12,1,3.6,-0.1,-8 -"641",1819,3,1,0,0.100866643,0.100866643,1,26,0,-1.1,1.5,0 -"642",1820,3,1,0,2,2,0,-25,0,-4.9,-0.5,-2 -"643",1820,3,2,2,3,1,0,-25,0,-4.9,-0.5,-2 -"644",1820,3,3,3,3.358979212,0.358979212,0,-25,0,-4.9,-0.5,-2 -"645",1821,3,1,0,0.254501351,0.254501351,1,18,0,0.3,1.6,-6 -"646",1822,3,1,0,2,2,0,12,0,,-1.5,-2 -"647",1822,3,2,2,3,1,0,12,0,,-1.5,-2 -"648",1822,3,3,3,4.731487328,1.731487328,0,12,0,,-1.5,-2 -"649",1823,3,1,0,1.775552806,1.775552806,1,-2,1,-3.5,0.4,-2 -"650",1824,3,1,0,0.198027544,0.198027544,0,-1,1,-5.3,0.4,4 -"651",1825,3,1,0,2,2,0,-1,1,-2,-0.3,6 -"652",1825,3,2,2,2.602125267,0.602125267,1,-1,1,-2,-0.3,6 -"653",1826,3,1,0,2,2,0,11,0,8.6,-0.3,-5 -"654",1826,3,2,2,3,1,0,11,0,8.6,-0.3,-5 -"655",1826,3,3,3,6,3,0,11,0,8.6,-0.3,-5 -"656",1826,3,4,6,6.5,0.5,0,11,0,8.6,-0.3,-5 -"657",1826,3,5,6.5,8,1.5,0,11,0,8.6,-0.3,-5 -"658",1826,3,6,8,10,2,0,11,0,8.6,-0.3,-5 -"659",1827,3,1,0,2,2,0,-14,1,-1.3,-0.8,3 -"660",1827,3,2,2,3,1,0,-14,1,-1.3,-0.8,3 -"661",1827,3,3,3,6,3,0,-14,1,-1.3,-0.8,3 -"662",1827,3,4,6,6.01865445,0.01865445,0,-14,1,-1.3,-0.8,3 -"663",1828,3,1,0,1.959405978,1.959405978,1,-2,1,-3.2,-0.7,3 -"664",1829,3,1,0,0.449404871,0.449404871,0,10,1,9.4,1.3,-2 -"665",1830,3,1,0,2,2,0,6,1,3.4,-0.8,-1 -"666",1830,3,2,2,3,1,0,6,1,3.4,-0.8,-1 -"667",1830,3,3,3,6,3,0,6,1,3.4,-0.8,-1 -"668",1830,3,4,6,6.5,0.5,0,6,1,3.4,-0.8,-1 -"669",1830,3,5,6.5,7.520835988,1.020835988,1,6,1,3.4,-0.8,-1 -"670",1831,3,1,0,0.348473297,0.348473297,1,22,0,0.7,0.8,4 -"671",1832,3,1,0,2,2,0,-13,0,-0.4,0.9,7 -"672",1832,3,2,2,2.758705114,0.758705114,1,-13,0,-0.4,0.9,7 -"673",1833,3,1,0,2,2,0,-18,1,3.6,0.3,-5 -"674",1833,3,2,2,3,1,0,-18,1,3.6,0.3,-5 -"675",1833,3,3,3,5.258985108,2.258985108,0,-18,1,3.6,0.3,-5 -"676",1834,3,1,0,2,2,0,-3,1,6.5,0.1,-3 -"677",1834,3,2,2,3,1,0,-3,1,6.5,0.1,-3 -"678",1834,3,3,3,6,3,0,-3,1,6.5,0.1,-3 -"679",1834,3,4,6,6.5,0.5,0,-3,1,6.5,0.1,-3 -"680",1834,3,5,6.5,8,1.5,0,-3,1,6.5,0.1,-3 -"681",1834,3,6,8,10,2,0,-3,1,6.5,0.1,-3 -"682",1835,3,1,0,0.768773324,0.768773324,1,19,0,-0.3,-1.1,0 -"683",1836,3,1,0,0.148430971,0.148430971,1,3,0,7.8,-0.6,0 -"684",1837,3,1,0,0.584232012,0.584232012,1,8,1,-4.4,0.4,-1 -"685",1838,3,1,0,0.09194428,0.09194428,1,17,0,4,-0.6,7 -"686",1839,3,1,0,2,2,0,-17,0,4.5,0.1,-3 -"687",1839,3,2,2,3,1,0,-17,0,4.5,0.1,-3 -"688",1839,3,3,3,6,3,0,-17,0,4.5,0.1,-3 -"689",1839,3,4,6,6.5,0.5,0,-17,0,4.5,0.1,-3 -"690",1839,3,5,6.5,6.539088852,0.039088852,0,-17,0,4.5,0.1,-3 -"691",1840,3,1,0,2,2,0,0,0,-1.3,-0.9,-4 -"692",1840,3,2,2,3,1,0,0,0,-1.3,-0.9,-4 -"693",1840,3,3,3,5.490638985,2.490638985,1,0,0,-1.3,-0.9,-4 -"694",1841,3,1,0,0.274619814,0.274619814,0,-3,0,5.8,0.5,1 -"695",1842,3,1,0,0.094117648,0.094117648,1,5,0,-1.4,-0.1,6 -"696",1843,3,1,0,0.201807162,0.201807162,1,-17,1,5.6,-1,9 -"697",1844,3,1,0,1.40315323,1.40315323,1,0,0,7.3,-0.8,-1 -"698",1845,3,1,0,1.813900966,1.813900966,0,14,0,-5,-1.4,1 -"699",1846,3,1,0,2,2,0,-9,1,6.3,1.2,-3 -"700",1846,3,2,2,3,1,0,-9,1,6.3,1.2,-3 -"701",1846,3,3,3,6,3,0,-9,1,6.3,1.2,-3 -"702",1846,3,4,6,6.049136742,0.049136742,1,-9,1,6.3,1.2,-3 -"703",1847,3,1,0,2,2,0,13,0,-2.2,-0.2,-1 -"704",1847,3,2,2,3,1,0,13,0,-2.2,-0.2,-1 -"705",1847,3,3,3,5.887724303,2.887724303,0,13,0,-2.2,-0.2,-1 -"706",1848,3,1,0,2,2,0,2,1,7.1,0.5,-4 -"707",1848,3,2,2,3,1,0,2,1,7.1,0.5,-4 -"708",1848,3,3,3,5.895341506,2.895341506,0,2,1,7.1,0.5,-4 -"709",1849,3,1,0,0.854745818,0.854745818,1,-16,1,-5.2,1.5,4 -"710",1850,3,1,0,2,2,0,-16,0,3.4,0.4,2 -"711",1850,3,2,2,3,1,0,-16,0,3.4,0.4,2 -"712",1850,3,3,3,6,3,0,-16,0,3.4,0.4,2 -"713",1850,3,4,6,6.5,0.5,0,-16,0,3.4,0.4,2 -"714",1850,3,5,6.5,8,1.5,0,-16,0,3.4,0.4,2 -"715",1850,3,6,8,10,2,0,-16,0,3.4,0.4,2 -"716",1851,3,1,0,1.233629196,1.233629196,0,-36,0,-8.5,0.9,-4 -"717",1852,3,1,0,0.384617486,0.384617486,1,14,0,1.3,-0.1,6 -"718",1853,3,1,0,0.047118579,0.047118579,1,14,0,1.9,-1.2,0 -"719",1854,3,1,0,2,2,0,3,0,1,0.4,8 -"720",1854,3,2,2,2.671037532,0.671037532,1,3,0,1,0.4,8 -"721",1855,3,1,0,2,2,0,14,1,0.5,2.1,-7 -"722",1855,3,2,2,2.786607863,0.786607863,1,14,1,0.5,2.1,-7 -"723",1856,3,1,0,1.039712359,1.039712359,0,-24,0,-1.1,-0.5,-4 -"724",1857,3,1,0,0.979129927,0.979129927,1,2,0,2.3,-0.9,9 -"725",1858,3,1,0,0.040995872,0.040995872,1,14,0,0.8,1.4,2 -"726",1859,3,1,0,2,2,0,-28,1,-7,-0.3,-6 -"727",1859,3,2,2,2.661210384,0.661210384,0,-28,1,-7,-0.3,-6 -"728",1860,3,1,0,2,2,0,-15,1,-1.4,-1.3,-5 -"729",1860,3,2,2,2.078660881,0.078660881,0,-15,1,-1.4,-1.3,-5 -"730",1861,3,1,0,2,2,0,-8,1,-0.8,0,2 -"731",1861,3,2,2,3,1,0,-8,1,-0.8,0,2 -"732",1861,3,3,3,3.931151214,0.931151214,0,-8,1,-0.8,0,2 -"733",1862,3,1,0,0.702727283,0.702727283,1,-1,1,5.5,2.4,1 -"734",1863,3,1,0,2,2,0,13,0,-4.9,-2.3,6 -"735",1863,3,2,2,2.050452325,0.050452325,1,13,0,-4.9,-2.3,6 -"736",1864,3,1,0,2,2,0,-1,0,0.8,2.1,-6 -"737",1864,3,2,2,3,1,0,-1,0,0.8,2.1,-6 -"738",1864,3,3,3,6,3,0,-1,0,0.8,2.1,-6 -"739",1864,3,4,6,6.5,0.5,0,-1,0,0.8,2.1,-6 -"740",1864,3,5,6.5,7.076699383,0.576699383,0,-1,0,0.8,2.1,-6 -"741",1865,3,1,0,2,2,0,1,1,1.5,-0.4,1 -"742",1865,3,2,2,3,1,0,1,1,1.5,-0.4,1 -"743",1865,3,3,3,6,3,0,1,1,1.5,-0.4,1 -"744",1865,3,4,6,6.5,0.5,0,1,1,1.5,-0.4,1 -"745",1865,3,5,6.5,8,1.5,0,1,1,1.5,-0.4,1 -"746",1865,3,6,8,8.853022453,0.853022453,1,1,1,1.5,-0.4,1 -"747",1866,3,1,0,2,2,0,-6,1,4,-0.5,0 -"748",1866,3,2,2,3,1,0,-6,1,4,-0.5,0 -"749",1866,3,3,3,6,3,0,-6,1,4,-0.5,0 -"750",1866,3,4,6,6.5,0.5,0,-6,1,4,-0.5,0 -"751",1866,3,5,6.5,8,1.5,0,-6,1,4,-0.5,0 -"752",1866,3,6,8,8.574013826,0.574013826,0,-6,1,4,-0.5,0 -"753",1867,3,1,0,0.165276501,0.165276501,1,-21,0,-0.7,1.4,-8 -"754",1868,3,1,0,0.609194319,0.609194319,1,7,1,0.3,0.4,2 -"755",1869,3,1,0,0.905408965,0.905408965,0,15,1,1.9,-0.1,3 -"756",1870,3,1,0,0.749507011,0.749507011,1,-24,1,-2.4,0,1 -"757",1871,3,1,0,0.857482588,0.857482588,1,8,1,-0.7,-0.8,-5 -"758",1872,3,1,0,1.053765845,1.053765845,1,-3,0,3.2,-0.6,2 -"759",1873,3,1,0,1.131466226,1.131466226,1,10,0,-2,0.1,10 -"760",1874,3,1,0,1.307588118,1.307588118,0,-7,1,3.1,-0.3,-1 -"761",1875,3,1,0,1.076371798,1.076371798,0,14,1,1.3,0.6,2 -"762",1876,3,1,0,2,2,0,-2,1,-1.5,2.1,-4 -"763",1876,3,2,2,2.009270074,0.009270074,0,-2,1,-1.5,2.1,-4 -"764",1877,3,1,0,0.570755485,0.570755485,1,-2,0,-1,0,2 -"765",1878,3,1,0,0.078784038,0.078784038,1,0,0,-9.5,0.4,-5 -"766",1879,3,1,0,0.06959785,0.06959785,1,6,0,0.5,-0.2,-1 -"767",1880,3,1,0,0.951098717,0.951098717,1,1,0,-3.7,-1,-2 -"768",1881,3,1,0,0.061832028,0.061832028,1,-4,0,1.1,2.6,-5 -"769",1882,3,1,0,0.423665829,0.423665829,1,-15,0,5.1,0.2,2 -"770",1883,3,1,0,2,2,0,20,0,0,-0.7,-1 -"771",1883,3,2,2,3,1,0,20,0,0,-0.7,-1 -"772",1883,3,3,3,6,3,0,20,0,0,-0.7,-1 -"773",1883,3,4,6,6.5,0.5,0,20,0,0,-0.7,-1 -"774",1883,3,5,6.5,8,1.5,0,20,0,0,-0.7,-1 -"775",1883,3,6,8,10,2,0,20,0,0,-0.7,-1 -"776",1884,3,1,0,0.896451827,0.896451827,1,19,1,-2,-0.3,12 -"777",1885,3,1,0,0.093605364,0.093605364,1,13,0,-0.2,0.9,6 -"778",1886,3,1,0,0.330855907,0.330855907,0,11,1,-2.4,-0.7,0 -"779",1887,3,1,0,0.539893363,0.539893363,1,-7,0,-0.6,0.8,0 -"780",1888,3,1,0,1.475760708,1.475760708,0,1,0,-1.6,0.4,-3 -"781",1889,3,1,0,0.812363972,0.812363972,1,19,1,1,-0.9,-5 -"782",1890,3,1,0,0.470870768,0.470870768,1,-1,0,5.7,1.7,9 -"783",1891,3,1,0,0.75447199,0.75447199,1,9,1,0.1,-0.1,-5 -"784",1892,3,1,0,1.188231711,1.188231711,1,-20,1,-5.2,2,3 -"785",1893,3,1,0,2,2,0,-5,0,3,0.7,-5 -"786",1893,3,2,2,3,1,0,-5,0,3,0.7,-5 -"787",1893,3,3,3,6,3,0,-5,0,3,0.7,-5 -"788",1893,3,4,6,6.5,0.5,0,-5,0,3,0.7,-5 -"789",1893,3,5,6.5,8,1.5,0,-5,0,3,0.7,-5 -"790",1893,3,6,8,10,2,0,-5,0,3,0.7,-5 -"791",1894,3,1,0,1.808070535,1.808070535,0,-2,0,-2.6,-1.9,3 -"792",1895,3,1,0,0.527167609,0.527167609,1,-5,0,-4.2,-0.2,8 -"793",1896,3,1,0,2,2,0,-9,0,-4,0.5,0 -"794",1896,3,2,2,3,1,0,-9,0,-4,0.5,0 -"795",1896,3,3,3,3.287382055,0.287382055,0,-9,0,-4,0.5,0 -"796",1897,3,1,0,2,2,0,5,0,-3.1,-1.2,-2 -"797",1897,3,2,2,3,1,0,5,0,-3.1,-1.2,-2 -"798",1897,3,3,3,4.744852648,1.744852648,0,5,0,-3.1,-1.2,-2 -"799",1898,3,1,0,0.088902581,0.088902581,1,1,0,4.5,2.1,1 -"800",1899,3,1,0,0.17197821,0.17197821,0,-17,1,5.8,1.2,-1 -"801",1900,3,1,0,2,2,0,-2,1,0.2,-0.2,8 -"802",1900,3,2,2,2.965277862,0.965277862,0,-2,1,0.2,-0.2,8 -"803",1901,3,1,0,2,2,0,15,1,-0.4,-0.2,2 -"804",1901,3,2,2,3,1,0,15,1,-0.4,-0.2,2 -"805",1901,3,3,3,6,3,0,15,1,-0.4,-0.2,2 -"806",1901,3,4,6,6.416641808,0.416641808,0,15,1,-0.4,-0.2,2 -"807",1902,3,1,0,0.570172058,0.570172058,1,4,0,-1.8,1.7,-4 -"808",1903,3,1,0,2,2,0,13,0,-4.4,0.8,-5 -"809",1903,3,2,2,3,1,0,13,0,-4.4,0.8,-5 -"810",1903,3,3,3,6,3,0,13,0,-4.4,0.8,-5 -"811",1903,3,4,6,6.5,0.5,0,13,0,-4.4,0.8,-5 -"812",1903,3,5,6.5,6.956565952,0.456565952,0,13,0,-4.4,0.8,-5 -"813",1904,3,1,0,0.352348841,0.352348841,0,-4,0,1.8,2.2,5 -"814",1905,3,1,0,0.163057073,0.163057073,1,24,1,-1.7,1,5 -"815",1906,3,1,0,0.566437033,0.566437033,1,14,1,2.7,1.3,1 -"816",1907,3,1,0,1.514624428,1.514624428,1,3,1,-0.2,-0.1,-5 -"817",1908,3,1,0,0.042515642,0.042515642,0,-19,0,2.2,1.1,3 -"818",1909,3,1,0,2,2,0,-9,0,-3.8,1.1,-8 -"819",1909,3,2,2,3,1,0,-9,0,-3.8,1.1,-8 -"820",1909,3,3,3,6,3,0,-9,0,-3.8,1.1,-8 -"821",1909,3,4,6,6.5,0.5,0,-9,0,-3.8,1.1,-8 -"822",1909,3,5,6.5,6.970064726,0.470064726,1,-9,0,-3.8,1.1,-8 -"823",1910,3,1,0,2,2,0,-41,1,1.8,-1.6,-7 -"824",1910,3,2,2,3,1,0,-41,1,1.8,-1.6,-7 -"825",1910,3,3,3,6,3,0,-41,1,1.8,-1.6,-7 -"826",1910,3,4,6,6.5,0.5,0,-41,1,1.8,-1.6,-7 -"827",1910,3,5,6.5,8,1.5,0,-41,1,1.8,-1.6,-7 -"828",1910,3,6,8,10,2,0,-41,1,1.8,-1.6,-7 -"829",1911,3,1,0,2,2,0,-2,1,6,0.2,7 -"830",1911,3,2,2,3,1,0,-2,1,6,0.2,7 -"831",1911,3,3,3,4.619336951,1.619336951,1,-2,1,6,0.2,7 -"832",1912,3,1,0,2,2,0,15,1,-5.9,-1.2,-5 -"833",1912,3,2,2,3,1,0,15,1,-5.9,-1.2,-5 -"834",1912,3,3,3,3.044172905,0.044172905,0,15,1,-5.9,-1.2,-5 -"835",1913,3,1,0,2,2,0,7,1,3.7,0.6,3 -"836",1913,3,2,2,3,1,0,7,1,3.7,0.6,3 -"837",1913,3,3,3,5.805059751,2.805059751,1,7,1,3.7,0.6,3 -"838",1914,3,1,0,0.612199102,0.612199102,1,13,1,11,0.3,0 -"839",1915,3,1,0,1.157183494,1.157183494,0,-6,0,3.9,-0.4,-12 -"840",1916,3,1,0,2,2,0,-16,1,-1.4,-2.3,8 -"841",1916,3,2,2,3,1,0,-16,1,-1.4,-2.3,8 -"842",1916,3,3,3,6,3,0,-16,1,-1.4,-2.3,8 -"843",1916,3,4,6,6.5,0.5,0,-16,1,-1.4,-2.3,8 -"844",1916,3,5,6.5,8,1.5,0,-16,1,-1.4,-2.3,8 -"845",1916,3,6,8,10,2,0,-16,1,-1.4,-2.3,8 -"846",1917,3,1,0,0.296160963,0.296160963,1,23,0,-2.7,-0.2,5 -"847",1918,3,1,0,2,2,0,12,0,-1.6,-0.9,-1 -"848",1918,3,2,2,2.643540795,0.643540795,1,12,0,-1.6,-0.9,-1 -"849",1919,3,1,0,0.306067532,0.306067532,0,-24,0,-4.4,-0.3,-3 -"850",1920,3,1,0,2,2,0,-12,0,3.6,-1.1,-8 -"851",1920,3,2,2,3,1,0,-12,0,3.6,-1.1,-8 -"852",1920,3,3,3,4.534197849,1.534197849,0,-12,0,3.6,-1.1,-8 -"853",1921,3,1,0,2,2,0,7,1,1.3,0.4,-5 -"854",1921,3,2,2,3,1,0,7,1,1.3,0.4,-5 -"855",1921,3,3,3,6,3,0,7,1,1.3,0.4,-5 -"856",1921,3,4,6,6.5,0.5,0,7,1,1.3,0.4,-5 -"857",1921,3,5,6.5,6.646684333,0.146684333,1,7,1,1.3,0.4,-5 -"858",1922,3,1,0,1.402332878,1.402332878,0,11,1,-1.3,-0.1,-10 -"859",1923,3,1,0,1.779203245,1.779203245,1,-2,0,0.5,0.5,1 -"860",1924,3,1,0,0.500541123,0.500541123,1,-4,0,3.7,1.1,-3 -"861",1925,3,1,0,1.720347091,1.720347091,1,-14,0,-2.6,-0.2,-5 -"862",1926,3,1,0,2,2,0,8,0,1.5,-0.3,7 -"863",1926,3,2,2,3,1,0,8,0,1.5,-0.3,7 -"864",1926,3,3,3,4.691476394,1.691476394,0,8,0,1.5,-0.3,7 -"865",1927,3,1,0,2,2,0,-14,0,-2.2,-1.3,0 -"866",1927,3,2,2,3,1,0,-14,0,-2.2,-1.3,0 -"867",1927,3,3,3,4.218559791,1.218559791,0,-14,0,-2.2,-1.3,0 -"868",1928,3,1,0,2,2,0,-12,1,-2.3,-0.9,-8 -"869",1928,3,2,2,3,1,0,-12,1,-2.3,-0.9,-8 -"870",1928,3,3,3,6,3,0,-12,1,-2.3,-0.9,-8 -"871",1928,3,4,6,6.5,0.5,0,-12,1,-2.3,-0.9,-8 -"872",1928,3,5,6.5,8,1.5,0,-12,1,-2.3,-0.9,-8 -"873",1928,3,6,8,10,2,0,-12,1,-2.3,-0.9,-8 -"874",1929,3,1,0,0.901416191,0.901416191,1,15,0,-2.9,1.5,-8 -"875",1930,3,1,0,0.614866985,0.614866985,0,-1,1,1.6,1,2 -"876",1931,3,1,0,2,2,0,-21,1,0.8,-0.5,7 -"877",1931,3,2,2,3,1,0,-21,1,0.8,-0.5,7 -"878",1931,3,3,3,6,3,0,-21,1,0.8,-0.5,7 -"879",1931,3,4,6,6.5,0.5,0,-21,1,0.8,-0.5,7 -"880",1931,3,5,6.5,8,1.5,0,-21,1,0.8,-0.5,7 -"881",1931,3,6,8,10,2,0,-21,1,0.8,-0.5,7 -"882",1932,3,1,,,,,-15,0,1.2,0.2,5 -"883",1933,3,1,0,2,2,0,-1,1,6,-1.5,7 -"884",1933,3,2,2,3,1,0,-1,1,6,-1.5,7 -"885",1933,3,3,3,6,3,0,-1,1,6,-1.5,7 -"886",1933,3,4,6,6.5,0.5,0,-1,1,6,-1.5,7 -"887",1933,3,5,6.5,8,1.5,0,-1,1,6,-1.5,7 -"888",1933,3,6,8,9.482474796,1.482474796,1,-1,1,6,-1.5,7 -"889",1934,3,1,0,2,2,0,-38,0,1.4,1.7,-4 -"890",1934,3,2,2,3,1,0,-38,0,1.4,1.7,-4 -"891",1934,3,3,3,6,3,0,-38,0,1.4,1.7,-4 -"892",1934,3,4,6,6.5,0.5,0,-38,0,1.4,1.7,-4 -"893",1934,3,5,6.5,8,1.5,0,-38,0,1.4,1.7,-4 -"894",1934,3,6,8,10,2,0,-38,0,1.4,1.7,-4 -"895",1935,3,1,0,0.587925074,0.587925074,0,1,0,-1.8,0.2,0 -"896",1936,3,1,0,0.148556892,0.148556892,1,6,0,-1.1,-0.3,5 -"897",1937,3,1,0,0.658178171,0.658178171,1,20,1,2,0.5,-4 -"898",1938,3,1,0,2,2,0,-3,1,2.2,-2.1,8 -"899",1938,3,2,2,3,1,0,-3,1,2.2,-2.1,8 -"900",1938,3,3,3,6,3,0,-3,1,2.2,-2.1,8 -"901",1938,3,4,6,6.5,0.5,0,-3,1,2.2,-2.1,8 -"902",1938,3,5,6.5,8,1.5,0,-3,1,2.2,-2.1,8 -"903",1938,3,6,8,10,2,0,-3,1,2.2,-2.1,8 -"904",1939,3,1,0,1.304468848,1.304468848,1,0,0,5.9,0.5,2 -"905",1940,3,1,0,1.240109697,1.240109697,0,6,0,-3.1,0.3,-4 -"906",1941,3,1,0,0.339440308,0.339440308,1,7,0,5.1,-0.5,3 -"907",1942,3,1,0,2,2,0,-11,1,6.8,0.3,-4 -"908",1942,3,2,2,3,1,0,-11,1,6.8,0.3,-4 -"909",1942,3,3,3,6,3,0,-11,1,6.8,0.3,-4 -"910",1942,3,4,6,6.5,0.5,0,-11,1,6.8,0.3,-4 -"911",1942,3,5,6.5,8,1.5,0,-11,1,6.8,0.3,-4 -"912",1942,3,6,8,10,2,0,-11,1,6.8,0.3,-4 -"913",1943,3,1,0,0.80264035,0.80264035,0,-32,0,5.3,0.8,4 -"914",1944,3,1,0,0.484346207,0.484346207,0,0,1,-0.9,0.7,2 -"915",1945,3,1,0,2,2,0,-8,1,-1.4,0.9,-9 -"916",1945,3,2,2,3,1,0,-8,1,-1.4,0.9,-9 -"917",1945,3,3,3,6,3,0,-8,1,-1.4,0.9,-9 -"918",1945,3,4,6,6.5,0.5,0,-8,1,-1.4,0.9,-9 -"919",1945,3,5,6.5,8,1.5,0,-8,1,-1.4,0.9,-9 -"920",1945,3,6,8,10,2,0,-8,1,-1.4,0.9,-9 -"921",1946,3,1,0,0.297333248,0.297333248,1,11,1,-2,-1.6,0 -"922",1947,3,1,0,2,2,0,-1,1,6.1,-0.6,1 -"923",1947,3,2,2,2.605995199,0.605995199,1,-1,1,6.1,-0.6,1 -"924",1948,3,1,0,2,2,0,23,1,-10.3,0,-9 -"925",1948,3,2,2,3,1,0,23,1,-10.3,0,-9 -"926",1948,3,3,3,4.495466445,1.495466445,0,23,1,-10.3,0,-9 -"927",1949,3,1,0,0.161558499,0.161558499,1,24,0,-5,2.4,5 -"928",1950,3,1,0,0.871697731,0.871697731,1,14,1,-3.6,0.8,7 -"929",1951,3,1,0,1.409757278,1.409757278,1,12,1,1.4,-0.6,-9 -"930",1952,3,1,0,2,2,0,13,1,1.3,-0.1,-4 -"931",1952,3,2,2,2.577670145,0.577670145,0,13,1,1.3,-0.1,-4 -"932",1953,3,1,0,0.043321561,0.043321561,1,4,0,7.1,-0.1,8 -"933",1954,3,1,0,0.012530406,0.012530406,1,36,0,-2,0.2,6 -"934",1955,3,1,0,2,2,0,-32,0,3.9,-1.5,0 -"935",1955,3,2,2,2.794566227,0.794566227,0,-32,0,3.9,-1.5,0 -"936",1956,3,1,0,1.348348943,1.348348943,1,26,1,-3.7,0.5,1 -"937",1957,3,1,0,0.07750235,0.07750235,1,-24,0,9.4,0.7,-3 -"938",1958,3,1,0,2,2,0,-4,0,-5.9,2.2,-10 -"939",1958,3,2,2,3,1,0,-4,0,-5.9,2.2,-10 -"940",1958,3,3,3,6,3,0,-4,0,-5.9,2.2,-10 -"941",1958,3,4,6,6.5,0.5,0,-4,0,-5.9,2.2,-10 -"942",1958,3,5,6.5,8,1.5,0,-4,0,-5.9,2.2,-10 -"943",1958,3,6,8,10,2,0,-4,0,-5.9,2.2,-10 -"944",1959,3,1,0,2,2,0,-22,1,3.7,-1.1,3 -"945",1959,3,2,2,3,1,0,-22,1,3.7,-1.1,3 -"946",1959,3,3,3,6,3,0,-22,1,3.7,-1.1,3 -"947",1959,3,4,6,6.5,0.5,0,-22,1,3.7,-1.1,3 -"948",1959,3,5,6.5,8,1.5,0,-22,1,3.7,-1.1,3 -"949",1959,3,6,8,8.006038022,0.006038022,1,-22,1,3.7,-1.1,3 -"950",1960,3,1,0,0.454071106,0.454071106,1,-5,0,0.6,1.5,0 -"951",1961,3,1,0,2,2,0,-6,0,-8.4,0.5,-5 -"952",1961,3,2,2,3,1,0,-6,0,-8.4,0.5,-5 -"953",1961,3,3,3,6,3,0,-6,0,-8.4,0.5,-5 -"954",1961,3,4,6,6.5,0.5,0,-6,0,-8.4,0.5,-5 -"955",1961,3,5,6.5,8,1.5,0,-6,0,-8.4,0.5,-5 -"956",1961,3,6,8,10,2,0,-6,0,-8.4,0.5,-5 -"957",1962,3,1,0,0.570252644,0.570252644,1,-21,1,-3.7,1.8,3 -"958",1963,3,1,0,0.930353392,0.930353392,1,1,0,1,0.7,5 -"959",1964,3,1,0,2,2,0,-13,0,,-0.4,3 -"960",1964,3,2,2,3,1,0,-13,0,,-0.4,3 -"961",1964,3,3,3,6,3,0,-13,0,,-0.4,3 -"962",1964,3,4,6,6.5,0.5,0,-13,0,,-0.4,3 -"963",1964,3,5,6.5,8,1.5,0,-13,0,,-0.4,3 -"964",1964,3,6,8,9.200302107,1.200302107,1,-13,0,,-0.4,3 -"965",1965,3,1,0,2,2,0,9,0,-7,1.2,0 -"966",1965,3,2,2,3,1,0,9,0,-7,1.2,0 -"967",1965,3,3,3,4.84596909,1.84596909,1,9,0,-7,1.2,0 -"968",1966,3,1,0,2,2,0,-7,1,-2.7,1.5,-5 -"969",1966,3,2,2,3,1,0,-7,1,-2.7,1.5,-5 -"970",1966,3,3,3,6,3,0,-7,1,-2.7,1.5,-5 -"971",1966,3,4,6,6.5,0.5,0,-7,1,-2.7,1.5,-5 -"972",1966,3,5,6.5,8,1.5,0,-7,1,-2.7,1.5,-5 -"973",1966,3,6,8,10,2,0,-7,1,-2.7,1.5,-5 -"974",1967,3,1,0,0.251776106,0.251776106,1,3,1,-3.9,-0.1,1 -"975",1968,3,1,0,0.544735388,0.544735388,1,5,0,-9.7,0.3,-7 -"976",1969,3,1,0,2,2,0,-9,1,-1.9,0.9,1 -"977",1969,3,2,2,3,1,0,-9,1,-1.9,0.9,1 -"978",1969,3,3,3,6,3,0,-9,1,-1.9,0.9,1 -"979",1969,3,4,6,6.301258196,0.301258196,1,-9,1,-1.9,0.9,1 -"980",1970,3,1,0,0.623555925,0.623555925,1,19,0,-10.9,1.7,-3 -"981",1971,3,1,0,2,2,0,-4,1,10.4,-0.1,3 -"982",1971,3,2,2,3,1,0,-4,1,10.4,-0.1,3 -"983",1971,3,3,3,6,3,0,-4,1,10.4,-0.1,3 -"984",1971,3,4,6,6.5,0.5,0,-4,1,10.4,-0.1,3 -"985",1971,3,5,6.5,8,1.5,0,-4,1,10.4,-0.1,3 -"986",1971,3,6,8,10,2,0,-4,1,10.4,-0.1,3 -"987",1972,3,1,0,2,2,0,-26,0,2.5,-0.6,-7 -"988",1972,3,2,2,2.197842888,0.197842888,0,-26,0,2.5,-0.6,-7 -"989",1973,3,1,0,2,2,0,,0,-0.6,0.5,-4 -"990",1973,3,2,2,2.389999684,0.389999684,1,,0,-0.6,0.5,-4 -"991",1974,3,1,0,0.091769472,0.091769472,1,13,1,-4.1,2.5,3 -"992",1975,3,1,0,0.996045647,0.996045647,0,2,1,3,-0.4,0 -"993",1976,3,1,0,2,2,0,-18,0,-5.2,-1.1,3 -"994",1976,3,2,2,3,1,0,-18,0,-5.2,-1.1,3 -"995",1976,3,3,3,4.324468784,1.324468784,0,-18,0,-5.2,-1.1,3 -"996",1977,3,1,0,2,2,0,-5,0,5.3,-0.2,0 -"997",1977,3,2,2,2.083346113,0.083346113,0,-5,0,5.3,-0.2,0 -"998",1978,3,1,0,0.134940331,0.134940331,1,3,0,-2.4,1.2,8 -"999",1979,3,1,0,0.620050505,0.620050505,0,4,1,2.4,0.6,5 -"1000",1980,3,1,0,2,2,0,-1,1,-2.9,0.4,4 -"1001",1980,3,2,2,3,1,0,-1,1,-2.9,0.4,4 -"1002",1980,3,3,3,6,3,0,-1,1,-2.9,0.4,4 -"1003",1980,3,4,6,6.5,0.5,0,-1,1,-2.9,0.4,4 -"1004",1980,3,5,6.5,8,1.5,0,-1,1,-2.9,0.4,4 -"1005",1980,3,6,8,8.005617512,0.005617512,1,-1,1,-2.9,0.4,4 -"1006",1981,3,1,0,2,2,0,-6,1,0.4,-0.8,2 -"1007",1981,3,2,2,3,1,0,-6,1,0.4,-0.8,2 -"1008",1981,3,3,3,3.67118193,0.67118193,0,-6,1,0.4,-0.8,2 -"1009",1982,3,1,0,2,2,0,7,0,6.2,-2.4,-1 -"1010",1982,3,2,2,3,1,0,7,0,6.2,-2.4,-1 -"1011",1982,3,3,3,5.662033258,2.662033258,0,7,0,6.2,-2.4,-1 -"1012",1983,3,1,0,2,2,0,-26,1,,0.2,-3 -"1013",1983,3,2,2,3,1,0,-26,1,,0.2,-3 -"1014",1983,3,3,3,3.57804641,0.57804641,0,-26,1,,0.2,-3 -"1015",1984,3,1,0,2,2,0,-13,0,2.5,-0.7,-4 -"1016",1984,3,2,2,3,1,0,-13,0,2.5,-0.7,-4 -"1017",1984,3,3,3,6,3,0,-13,0,2.5,-0.7,-4 -"1018",1984,3,4,6,6.5,0.5,0,-13,0,2.5,-0.7,-4 -"1019",1984,3,5,6.5,8,1.5,0,-13,0,2.5,-0.7,-4 -"1020",1984,3,6,8,10,2,0,-13,0,2.5,-0.7,-4 -"1021",1985,3,1,0,1.124944682,1.124944682,0,-6,1,0.9,0.6,-5 -"1022",1986,3,1,0,0.898251759,0.898251759,0,-7,0,2.5,0.7,8 -"1023",1987,3,1,0,2,2,0,18,1,0.3,1.6,-9 -"1024",1987,3,2,2,3,1,0,18,1,0.3,1.6,-9 -"1025",1987,3,3,3,5.336709431,2.336709431,0,18,1,0.3,1.6,-9 -"1026",1988,3,1,0,0.931782329,0.931782329,0,-12,1,2.6,-0.5,-2 -"1027",1989,3,1,0,0.110479038,0.110479038,1,16,1,2.5,1.9,4 -"1028",1990,3,1,0,0.892315348,0.892315348,1,-20,0,6.1,0.1,-3 -"1029",1991,3,1,0,1.225667551,1.225667551,1,14,0,2.7,0.6,10 -"1030",1992,3,1,0,0.33572726,0.33572726,1,14,0,8.2,0.1,-5 -"1031",1993,3,1,0,1.699631285,1.699631285,1,-28,0,-6.1,-0.8,6 -"1032",1994,3,1,0,2,2,0,7,1,-7.7,0.5,3 -"1033",1994,3,2,2,3,1,0,7,1,-7.7,0.5,3 -"1034",1994,3,3,3,6,3,0,7,1,-7.7,0.5,3 -"1035",1994,3,4,6,6.5,0.5,0,7,1,-7.7,0.5,3 -"1036",1994,3,5,6.5,8,1.5,0,7,1,-7.7,0.5,3 -"1037",1994,3,6,8,8.713947114,0.713947114,1,7,1,-7.7,0.5,3 -"1038",1995,3,1,0,0.127449425,0.127449425,1,-5,0,-4.8,-1.2,6 -"1039",1996,3,1,0,2,2,0,-16,1,-7.8,-0.1,-6 -"1040",1996,3,2,2,3,1,0,-16,1,-7.8,-0.1,-6 -"1041",1996,3,3,3,6,3,0,-16,1,-7.8,-0.1,-6 -"1042",1996,3,4,6,6.5,0.5,0,-16,1,-7.8,-0.1,-6 -"1043",1996,3,5,6.5,8,1.5,0,-16,1,-7.8,-0.1,-6 -"1044",1996,3,6,8,10,2,0,-16,1,-7.8,-0.1,-6 -"1045",1997,3,1,,,,,14,0,-10.3,-0.7,1 -"1046",1998,3,1,0,2,2,0,-18,1,-5.9,-0.2,-9 -"1047",1998,3,2,2,3,1,0,-18,1,-5.9,-0.2,-9 -"1048",1998,3,3,3,6,3,0,-18,1,-5.9,-0.2,-9 -"1049",1998,3,4,6,6.33037489,0.33037489,0,-18,1,-5.9,-0.2,-9 -"1050",1999,3,1,0,2,2,0,-13,1,-0.1,0.2,-7 -"1051",1999,3,2,2,2.43618467,0.43618467,0,-13,1,-0.1,0.2,-7 -"1052",2000,3,1,0,1.703122009,1.703122009,1,-7,0,5.4,1.8,-5 -"1053",2001,3,1,0,2,2,0,-17,0,6.1,0.3,-2 -"1054",2001,3,2,2,3,1,0,-17,0,6.1,0.3,-2 -"1055",2001,3,3,3,6,3,0,-17,0,6.1,0.3,-2 -"1056",2001,3,4,6,6.5,0.5,0,-17,0,6.1,0.3,-2 -"1057",2001,3,5,6.5,6.528841663,0.028841663,1,-17,0,6.1,0.3,-2 -"1058",2002,3,1,0,0.808711086,0.808711086,1,12,0,-2.1,-0.9,4 -"1059",2003,3,1,0,0.075053163,0.075053163,1,17,0,8.2,0.7,2 -"1060",2004,3,1,0,1.152216309,1.152216309,0,-14,1,-3.4,0.6,-3 -"1061",2005,3,1,0,0.096852229,0.096852229,0,6,0,-3.7,1.4,-2 -"1062",2006,3,1,0,2,2,0,16,1,-4.2,0.3,-2 -"1063",2006,3,2,2,3,1,0,16,1,-4.2,0.3,-2 -"1064",2006,3,3,3,4.68688337,1.68688337,0,16,1,-4.2,0.3,-2 -"1065",2007,3,1,0,2,2,0,-12,1,5.8,-0.1,-1 -"1066",2007,3,2,2,3,1,0,-12,1,5.8,-0.1,-1 -"1067",2007,3,3,3,3.499212883,0.499212883,0,-12,1,5.8,-0.1,-1 -"1068",2008,3,1,0,0.761813239,0.761813239,1,-7,0,-1,-0.8,5 -"1069",2009,3,1,0,1.475708325,1.475708325,1,-6,0,-5.3,0.3,0 -"1070",2010,3,1,0,1.346698433,1.346698433,0,4,1,-5.3,-0.8,-1 -"1071",2011,3,1,0,2,2,0,5,1,7.1,0.3,-7 -"1072",2011,3,2,2,2.023708026,0.023708026,0,5,1,7.1,0.3,-7 -"1073",2012,3,1,0,0.363297809,0.363297809,1,8,0,-2.6,-0.7,2 -"1074",2013,3,1,0,1.822757838,1.822757838,1,-1,0,-3.6,-1.2,3 -"1075",2014,3,1,0,0.200766051,0.200766051,1,35,1,0.8,1.2,-2 -"1076",2015,3,1,0,0.38236103,0.38236103,1,3,0,-0.9,-0.4,3 -"1077",2016,3,1,0,2,2,0,-6,0,1.7,-0.7,-1 -"1078",2016,3,2,2,3,1,0,-6,0,1.7,-0.7,-1 -"1079",2016,3,3,3,4.97457381,1.97457381,0,-6,0,1.7,-0.7,-1 -"1080",2017,3,1,0,0.340793253,0.340793253,0,11,1,5,0.6,1 -"1081",2018,3,1,0,2,2,0,5,1,-4.6,-2.2,-4 -"1082",2018,3,2,2,3,1,0,5,1,-4.6,-2.2,-4 -"1083",2018,3,3,3,6,3,0,5,1,-4.6,-2.2,-4 -"1084",2018,3,4,6,6.5,0.5,0,5,1,-4.6,-2.2,-4 -"1085",2018,3,5,6.5,8,1.5,0,5,1,-4.6,-2.2,-4 -"1086",2018,3,6,8,10,2,0,5,1,-4.6,-2.2,-4 -"1087",2019,3,1,0,1.034354216,1.034354216,0,-13,1,-1,1.8,0 -"1088",2020,3,1,0,0.811651564,0.811651564,1,11,0,-3.5,2,-6 -"1089",2021,3,1,0,2,2,0,-14,0,3.4,0.7,-4 -"1090",2021,3,2,2,3,1,0,-14,0,3.4,0.7,-4 -"1091",2021,3,3,3,5.085070279,2.085070279,0,-14,0,3.4,0.7,-4 -"1092",2022,3,1,0,0.792258625,0.792258625,0,3,1,0.1,-1.3,2 -"1093",2023,3,1,0,2,2,0,-16,0,-6.3,-2.6,-3 -"1094",2023,3,2,2,3,1,0,-16,0,-6.3,-2.6,-3 -"1095",2023,3,3,3,6,3,0,-16,0,-6.3,-2.6,-3 -"1096",2023,3,4,6,6.5,0.5,0,-16,0,-6.3,-2.6,-3 -"1097",2023,3,5,6.5,8,1.5,0,-16,0,-6.3,-2.6,-3 -"1098",2023,3,6,8,9.880355842,1.880355842,0,-16,0,-6.3,-2.6,-3 -"1099",2024,3,1,0,0.422504877,0.422504877,1,15,1,8.9,-0.1,1 -"1100",2025,3,1,0,0.285273364,0.285273364,1,5,0,-0.6,1.7,-1 -"1101",2026,3,1,0,2,2,0,-21,0,-12.9,-0.7,3 -"1102",2026,3,2,2,3,1,0,-21,0,-12.9,-0.7,3 -"1103",2026,3,3,3,3.079604069,0.079604069,0,-21,0,-12.9,-0.7,3 -"1104",2027,3,1,0,0.279344837,0.279344837,0,-8,1,0.2,-1.6,-6 -"1105",2028,3,1,0,1.253978126,1.253978126,0,-7,1,4.8,-0.4,1 -"1106",2029,3,1,0,2,2,0,-14,0,-3.1,0.8,2 -"1107",2029,3,2,2,3,1,0,-14,0,-3.1,0.8,2 -"1108",2029,3,3,3,3.101650617,0.101650617,1,-14,0,-3.1,0.8,2 -"1109",2030,3,1,0,0.509886292,0.509886292,0,-12,0,-2,-1.1,6 -"1110",2031,3,1,0,2,2,0,-7,0,2.3,-0.4,-6 -"1111",2031,3,2,2,3,1,0,-7,0,2.3,-0.4,-6 -"1112",2031,3,3,3,4.737750615,1.737750615,0,-7,0,2.3,-0.4,-6 -"1113",2032,3,1,0,0.878929718,0.878929718,1,14,1,-4.3,0.5,10 -"1114",2033,3,1,0,1.181185267,1.181185267,1,-6,0,1.5,-1.4,1 -"1115",2034,3,1,0,2,2,0,-5,0,-6.4,0,-5 -"1116",2034,3,2,2,3,1,0,-5,0,-6.4,0,-5 -"1117",2034,3,3,3,6,3,0,-5,0,-6.4,0,-5 -"1118",2034,3,4,6,6.5,0.5,0,-5,0,-6.4,0,-5 -"1119",2034,3,5,6.5,8,1.5,0,-5,0,-6.4,0,-5 -"1120",2034,3,6,8,8.348360722,0.348360722,0,-5,0,-6.4,0,-5 -"1121",2035,3,1,0,2,2,0,2,0,-2.8,0.4,4 -"1122",2035,3,2,2,3,1,0,2,0,-2.8,0.4,4 -"1123",2035,3,3,3,6,3,0,2,0,-2.8,0.4,4 -"1124",2035,3,4,6,6.5,0.5,0,2,0,-2.8,0.4,4 -"1125",2035,3,5,6.5,8,1.5,0,2,0,-2.8,0.4,4 -"1126",2035,3,6,8,8.386187048,0.386187048,1,2,0,-2.8,0.4,4 -"1127",2036,3,1,0,0.081949968,0.081949968,1,41,0,-3.8,1.9,-4 -"1128",2037,3,1,0,0.814672996,0.814672996,1,-3,1,6.1,-1.9,5 -"1129",2038,3,1,0,1.110512483,1.110512483,1,5,0,-2,,-2 -"1130",2039,3,1,0,0.579792593,0.579792593,1,20,0,1.5,0,0 -"1131",2040,3,1,0,2,2,0,-23,1,-2.8,-1.1,0 -"1132",2040,3,2,2,3,1,0,-23,1,-2.8,-1.1,0 -"1133",2040,3,3,3,6,3,0,-23,1,-2.8,-1.1,0 -"1134",2040,3,4,6,6.025306788,0.025306788,0,-23,1,-2.8,-1.1,0 -"1135",2041,3,1,0,0.874834698,0.874834698,1,25,0,4.4,-0.3,8 -"1136",2042,3,1,0,0.991096953,0.991096953,1,-1,0,-1.8,-0.6,4 -"1137",2043,3,1,0,0.003434742,0.003434742,0,-10,1,2.3,0.4,-1 -"1138",2044,3,1,0,2,2,0,16,0,2,-1.5, -"1139",2044,3,2,2,3,1,0,16,0,2,-1.5, -"1140",2044,3,3,3,6,3,0,16,0,2,-1.5, -"1141",2044,3,4,6,6.5,0.5,0,16,0,2,-1.5, -"1142",2044,3,5,6.5,7.189869377,0.689869377,0,16,0,2,-1.5, -"1143",2045,3,1,0,1.33224991,1.33224991,1,-10,1,-0.3,1.5,-5 -"1144",2046,3,1,0,0.32639012,0.32639012,0,7,1,-0.9,-0.2,-1 -"1145",2047,3,1,0,0.323422191,0.323422191,1,6,0,-5.2,1.5,4 -"1146",2048,3,1,0,0.121303934,0.121303934,1,39,1,-4.3,-1.1,7 -"1147",2049,3,1,0,2,2,0,-2,1,-3,1.4,-4 -"1148",2049,3,2,2,3,1,0,-2,1,-3,1.4,-4 -"1149",2049,3,3,3,5.870380853,2.870380853,0,-2,1,-3,1.4,-4 -"1150",2050,3,1,0,1.304193259,1.304193259,1,13,0,-10.2,0.4,8 -"1151",2051,3,1,0,2,2,0,8,1,-3.1,-0.2,-4 -"1152",2051,3,2,2,3,1,0,8,1,-3.1,-0.2,-4 -"1153",2051,3,3,3,6,3,0,8,1,-3.1,-0.2,-4 -"1154",2051,3,4,6,6.5,0.5,0,8,1,-3.1,-0.2,-4 -"1155",2051,3,5,6.5,8,1.5,0,8,1,-3.1,-0.2,-4 -"1156",2051,3,6,8,10,2,0,8,1,-3.1,-0.2,-4 -"1157",2052,3,1,0,2,2,0,-13,1,-5.1,1.2,-3 -"1158",2052,3,2,2,3,1,0,-13,1,-5.1,1.2,-3 -"1159",2052,3,3,3,6,3,0,-13,1,-5.1,1.2,-3 -"1160",2052,3,4,6,6.5,0.5,0,-13,1,-5.1,1.2,-3 -"1161",2052,3,5,6.5,8,1.5,0,-13,1,-5.1,1.2,-3 -"1162",2052,3,6,8,9.275367428,1.275367428,1,-13,1,-5.1,1.2,-3 -"1163",2053,3,1,0,1.336050431,1.336050431,0,-1,1,7.7,1,-6 -"1164",2054,3,1,0,0.23039005,0.23039005,0,-9,1,-1.4,0.2,10 -"1165",2055,3,1,0,0.704978068,0.704978068,1,14,1,2.4,-0.1,-1 -"1166",2056,3,1,0,0.838133015,0.838133015,1,5,0,1.2,1.4,-5 -"1167",2057,3,1,0,2,2,0,-11,1,4.9,-1.5,-3 -"1168",2057,3,2,2,3,1,0,-11,1,4.9,-1.5,-3 -"1169",2057,3,3,3,3.202672015,0.202672015,0,-11,1,4.9,-1.5,-3 -"1170",2058,3,1,,,,,14,0,1.3,0.3,-2 -"1171",2059,3,1,0,1.656033198,1.656033198,0,-16,1,2.5,-1.3,4 -"1172",2060,3,1,0,0.098321837,0.098321837,1,13,1,1.9,0.9,1 -"1173",2061,3,1,0,2,2,0,-1,1,-3.1,-0.1,-7 -"1174",2061,3,2,2,3,1,0,-1,1,-3.1,-0.1,-7 -"1175",2061,3,3,3,6,3,0,-1,1,-3.1,-0.1,-7 -"1176",2061,3,4,6,6.5,0.5,0,-1,1,-3.1,-0.1,-7 -"1177",2061,3,5,6.5,8,1.5,0,-1,1,-3.1,-0.1,-7 -"1178",2061,3,6,8,8.955502983,0.955502983,0,-1,1,-3.1,-0.1,-7 -"1179",2062,3,1,0,0.690924019,0.690924019,1,5,0,8.1,-0.9,-8 -"1180",2063,3,1,0,1.387085425,1.387085425,0,4,,0.4,-2,-1 -"1181",2064,3,1,0,1.947387491,1.947387491,1,-1,0,4.2,-0.7,-2 -"1182",2065,3,1,0,0.100753552,0.100753552,1,2,1,-0.1,1,5 -"1183",2066,3,1,0,0.004448598,0.004448598,1,20,0,4.5,1.5,-10 -"1184",2067,3,1,0,0.050364122,0.050364122,1,8,0,-4.3,2.2,-1 -"1185",2068,3,1,0,0.550871168,0.550871168,1,6,0,-3.5,1,1 -"1186",2069,3,1,0,2,2,0,-16,0,1.2,0.2,6 -"1187",2069,3,2,2,3,1,0,-16,0,1.2,0.2,6 -"1188",2069,3,3,3,6,3,0,-16,0,1.2,0.2,6 -"1189",2069,3,4,6,6.5,0.5,0,-16,0,1.2,0.2,6 -"1190",2069,3,5,6.5,7.662286878,1.162286878,0,-16,0,1.2,0.2,6 -"1191",2070,3,1,0,2,2,0,3,1,-3.2,0.7,-5 -"1192",2070,3,2,2,3,1,0,3,1,-3.2,0.7,-5 -"1193",2070,3,3,3,5.241756942,2.241756942,0,3,1,-3.2,0.7,-5 -"1194",2071,3,1,0,2,2,0,-16,0,4.5,-1,-1 -"1195",2071,3,2,2,2.334595162,0.334595162,0,-16,0,4.5,-1,-1 -"1196",2072,3,1,0,2,2,0,8,0,-0.4,0,1 -"1197",2072,3,2,2,3,1,0,8,0,-0.4,0,1 -"1198",2072,3,3,3,6,3,0,8,0,-0.4,0,1 -"1199",2072,3,4,6,6.5,0.5,0,8,0,-0.4,0,1 -"1200",2072,3,5,6.5,8,1.5,0,8,0,-0.4,0,1 -"1201",2072,3,6,8,10,2,0,8,0,-0.4,0,1 -"1202",2073,3,1,0,1.667959303,1.667959303,1,-11,1,2,-0.2,4 -"1203",2074,3,1,0,0.534935768,0.534935768,0,-8,0,-4.1,0.1,-3 -"1204",2075,3,1,0,2,2,0,0,1,1.8,-1.9,4 -"1205",2075,3,2,2,3,1,0,0,1,1.8,-1.9,4 -"1206",2075,3,3,3,6,3,0,0,1,1.8,-1.9,4 -"1207",2075,3,4,6,6.5,0.5,0,0,1,1.8,-1.9,4 -"1208",2075,3,5,6.5,8,1.5,0,0,1,1.8,-1.9,4 -"1209",2075,3,6,8,10,2,0,0,1,1.8,-1.9,4 -"1210",2076,3,1,0,0.122326456,0.122326456,1,25,0,3.9,0.5,5 -"1211",2077,3,1,0,0.086831698,0.086831698,0,0,1,2,0.7, -"1212",2078,3,1,0,0.185405162,0.185405162,1,15,1,0.2,-0.2,-4 -"1213",2079,3,1,0,2,2,0,-11,0,-3.1,0.8,1 -"1214",2079,3,2,2,3,1,0,-11,0,-3.1,0.8,1 -"1215",2079,3,3,3,6,3,0,-11,0,-3.1,0.8,1 -"1216",2079,3,4,6,6.5,0.5,0,-11,0,-3.1,0.8,1 -"1217",2079,3,5,6.5,7.925595583,1.425595583,0,-11,0,-3.1,0.8,1 -"1218",2080,3,1,0,2,2,0,-20,0,-7,0.3,0 -"1219",2080,3,2,2,3,1,0,-20,0,-7,0.3,0 -"1220",2080,3,3,3,5.343725274,2.343725274,0,-20,0,-7,0.3,0 -"1221",2081,3,1,0,0.436642462,0.436642462,0,6,0,1.9,1.5,-4 -"1222",2082,3,1,0,0.267304377,0.267304377,0,11,0,-0.2,-0.3,-2 -"1223",2083,3,1,0,1.91070428,1.91070428,0,-1,0,-6.2,-1.7,2 -"1224",2084,3,1,0,2,2,0,17,1,2.3,1.2,-10 -"1225",2084,3,2,2,3,1,0,17,1,2.3,1.2,-10 -"1226",2084,3,3,3,5.474724212,2.474724212,1,17,1,2.3,1.2,-10 -"1227",2085,3,1,0,2,2,0,-7,0,-2.2,-0.8,2 -"1228",2085,3,2,2,3,1,0,-7,0,-2.2,-0.8,2 -"1229",2085,3,3,3,6,3,0,-7,0,-2.2,-0.8,2 -"1230",2085,3,4,6,6.5,0.5,0,-7,0,-2.2,-0.8,2 -"1231",2085,3,5,6.5,8,1.5,0,-7,0,-2.2,-0.8,2 -"1232",2085,3,6,8,10,2,0,-7,0,-2.2,-0.8,2 -"1233",2086,3,1,0,0.705982605,0.705982605,1,23,1,5.5,0.7,-1 -"1234",2087,3,1,0,0.487003369,0.487003369,1,0,0,-7.9,1.5,6 -"1235",2088,3,1,0,0.291834599,0.291834599,1,1,1,-5.1,0.5,7 -"1236",2089,3,1,0,2,2,0,1,1,-5,-0.6,0 -"1237",2089,3,2,2,3,1,0,1,1,-5,-0.6,0 -"1238",2089,3,3,3,4.139908029,1.139908029,0,1,1,-5,-0.6,0 -"1239",2090,3,1,0,2,2,0,-1,0,-1,-1.2,-1 -"1240",2090,3,2,2,3,1,0,-1,0,-1,-1.2,-1 -"1241",2090,3,3,3,6,3,0,-1,0,-1,-1.2,-1 -"1242",2090,3,4,6,6.5,0.5,0,-1,0,-1,-1.2,-1 -"1243",2090,3,5,6.5,8,1.5,0,-1,0,-1,-1.2,-1 -"1244",2090,3,6,8,10,2,0,-1,0,-1,-1.2,-1 -"1245",2091,3,1,0,2,2,0,-36,0,-0.5,-0.4,-2 -"1246",2091,3,2,2,3,1,0,-36,0,-0.5,-0.4,-2 -"1247",2091,3,3,3,6,3,0,-36,0,-0.5,-0.4,-2 -"1248",2091,3,4,6,6.5,0.5,0,-36,0,-0.5,-0.4,-2 -"1249",2091,3,5,6.5,8,1.5,0,-36,0,-0.5,-0.4,-2 -"1250",2091,3,6,8,10,2,0,-36,0,-0.5,-0.4,-2 -"1251",2092,3,1,0,0.681674294,0.681674294,1,20,1,6.3,0.9,8 -"1252",2093,3,1,0,0.977666226,0.977666226,0,-29,0,3.3,1,-6 -"1253",2094,3,1,0,2,2,0,-15,1,-0.7,-0.9,-5 -"1254",2094,3,2,2,3,1,0,-15,1,-0.7,-0.9,-5 -"1255",2094,3,3,3,6,3,0,-15,1,-0.7,-0.9,-5 -"1256",2094,3,4,6,6.5,0.5,0,-15,1,-0.7,-0.9,-5 -"1257",2094,3,5,6.5,7.487079107,0.987079107,0,-15,1,-0.7,-0.9,-5 -"1258",2095,3,1,0,0.675451802,0.675451802,0,19,0,-1.9,-1.2,5 -"1259",2096,3,1,0,0.656538604,0.656538604,1,-13,0,5.5,2.3,8 -"1260",2097,3,1,0,0.214898406,0.214898406,0,13,0,-1.9,-3.1,0 -"1261",2098,3,1,0,2,2,0,4,1,0.3,0.4,7 -"1262",2098,3,2,2,2.996887902,0.996887902,1,4,1,0.3,0.4,7 -"1263",2099,3,1,0,2,2,0,5,0,-5.1,0.3,-2 -"1264",2099,3,2,2,3,1,0,5,0,-5.1,0.3,-2 -"1265",2099,3,3,3,6,3,0,5,0,-5.1,0.3,-2 -"1266",2099,3,4,6,6.346550163,0.346550163,1,5,0,-5.1,0.3,-2 -"1267",2100,3,1,0,2,2,0,3,1,-3.3,-0.2,3 -"1268",2100,3,2,2,3,1,0,3,1,-3.3,-0.2,3 -"1269",2100,3,3,3,6,3,0,3,1,-3.3,-0.2,3 -"1270",2100,3,4,6,6.5,0.5,0,3,1,-3.3,-0.2,3 -"1271",2100,3,5,6.5,6.651315637,0.151315637,1,3,1,-3.3,-0.2,3 -"1272",2101,3,1,0,0.063461415,0.063461415,0,9,0,-2.6,0.7,0 -"1273",2102,3,1,0,0.14439973,0.14439973,0,-17,0,0.1,-0.1,-4 -"1274",2103,3,1,0,1.671873607,1.671873607,0,-7,0,-2.4,-0.5,-1 -"1275",2104,3,1,0,2,2,0,0,1,0.5,-0.8,-3 -"1276",2104,3,2,2,3,1,0,0,1,0.5,-0.8,-3 -"1277",2104,3,3,3,6,3,0,0,1,0.5,-0.8,-3 -"1278",2104,3,4,6,6.5,0.5,0,0,1,0.5,-0.8,-3 -"1279",2104,3,5,6.5,8,1.5,0,0,1,0.5,-0.8,-3 -"1280",2104,3,6,8,10,2,0,0,1,0.5,-0.8,-3 -"1281",2105,3,1,0,2,2,0,4,1,2.7,-0.2,5 -"1282",2105,3,2,2,3,1,0,4,1,2.7,-0.2,5 -"1283",2105,3,3,3,5.214314192,2.214314192,1,4,1,2.7,-0.2,5 -"1284",2106,3,1,0,1.008032072,1.008032072,1,14,1,-0.9,0.2,7 -"1285",2107,3,1,0,0.294280429,0.294280429,0,-22,0,-0.1,0,-1 -"1286",2108,3,1,0,0.900205156,0.900205156,0,17,1,1.5,-0.6,-13 -"1287",2109,3,1,0,0.835349516,0.835349516,0,12,1,-2.9,0.1,-6 -"1288",2110,3,1,0,2,2,0,3,1,5.9,0.6,-7 -"1289",2110,3,2,2,3,1,0,3,1,5.9,0.6,-7 -"1290",2110,3,3,3,6,3,0,3,1,5.9,0.6,-7 -"1291",2110,3,4,6,6.5,0.5,0,3,1,5.9,0.6,-7 -"1292",2110,3,5,6.5,8,1.5,0,3,1,5.9,0.6,-7 -"1293",2110,3,6,8,10,2,0,3,1,5.9,0.6,-7 -"1294",2111,3,1,0,0.444265104,0.444265104,1,-9,1,3.4,1.7,1 -"1295",2112,3,1,0,2,2,0,1,1,5,1.1,-5 -"1296",2112,3,2,2,3,1,0,1,1,5,1.1,-5 -"1297",2112,3,3,3,3.568432753,0.568432753,0,1,1,5,1.1,-5 -"1298",2113,3,1,0,0.739650464,0.739650464,1,,0,-6,0.2,-3 -"1299",2114,3,1,0,1.80519057,1.80519057,1,16,1,7.6,-1.3,-3 -"1300",2115,3,1,0,2,2,0,8,0,-17.8,-0.3,-10 -"1301",2115,3,2,2,3,1,0,8,0,-17.8,-0.3,-10 -"1302",2115,3,3,3,6,3,0,8,0,-17.8,-0.3,-10 -"1303",2115,3,4,6,6.5,0.5,0,8,0,-17.8,-0.3,-10 -"1304",2115,3,5,6.5,8,1.5,0,8,0,-17.8,-0.3,-10 -"1305",2115,3,6,8,10,2,0,8,0,-17.8,-0.3,-10 -"1306",2116,3,1,0,2,2,0,-14,1,1.7,-0.2, -"1307",2116,3,2,2,3,1,0,-14,1,1.7,-0.2, -"1308",2116,3,3,3,6,3,0,-14,1,1.7,-0.2, -"1309",2116,3,4,6,6.5,0.5,0,-14,1,1.7,-0.2, -"1310",2116,3,5,6.5,8,1.5,0,-14,1,1.7,-0.2, -"1311",2116,3,6,8,10,2,0,-14,1,1.7,-0.2, -"1312",2117,3,1,0,2,2,0,9,1,1,0,3 -"1313",2117,3,2,2,3,1,0,9,1,1,0,3 -"1314",2117,3,3,3,6,3,0,9,1,1,0,3 -"1315",2117,3,4,6,6.046450381,0.046450381,1,9,1,1,0,3 -"1316",2118,3,1,0,0.204911352,0.204911352,1,34,0,-4.2,0.8,10 -"1317",2119,3,1,0,2,2,0,7,1,-2.4,1.3,-2 -"1318",2119,3,2,2,3,1,0,7,1,-2.4,1.3,-2 -"1319",2119,3,3,3,5.104324094,2.104324094,0,7,1,-2.4,1.3,-2 -"1320",2120,3,1,0,2,2,0,2,0,-2.3,-0.4,-4 -"1321",2120,3,2,2,3,1,0,2,0,-2.3,-0.4,-4 -"1322",2120,3,3,3,3.570606646,0.570606646,0,2,0,-2.3,-0.4,-4 -"1323",2121,3,1,0,2,2,0,-7,1,-1,0.2,-6 -"1324",2121,3,2,2,3,1,0,-7,1,-1,0.2,-6 -"1325",2121,3,3,3,3.233924196,0.233924196,0,-7,1,-1,0.2,-6 -"1326",2122,3,1,0,0.204985455,0.204985455,0,-1,1,-0.6,-1.8,-4 -"1327",2123,3,1,0,1.38057477,1.38057477,1,15,0,7.5,0,0 -"1328",2124,3,1,0,0.687305163,0.687305163,1,2,0,-1.8,1.1,-2 -"1329",2125,3,1,0,2,2,0,-10,1,-2.4,-0.2,2 -"1330",2125,3,2,2,3,1,0,-10,1,-2.4,-0.2,2 -"1331",2125,3,3,3,6,3,0,-10,1,-2.4,-0.2,2 -"1332",2125,3,4,6,6.5,0.5,0,-10,1,-2.4,-0.2,2 -"1333",2125,3,5,6.5,7.656227739,1.156227739,0,-10,1,-2.4,-0.2,2 -"1334",2126,3,1,0,2,2,0,-16,1,0.1,1.1,-1 -"1335",2126,3,2,2,3,1,0,-16,1,0.1,1.1,-1 -"1336",2126,3,3,3,6,3,0,-16,1,0.1,1.1,-1 -"1337",2126,3,4,6,6.5,0.5,0,-16,1,0.1,1.1,-1 -"1338",2126,3,5,6.5,8,1.5,0,-16,1,0.1,1.1,-1 -"1339",2126,3,6,8,9.883291625,1.883291625,1,-16,1,0.1,1.1,-1 -"1340",2127,3,1,0,0.912593797,0.912593797,0,9,1,7.6,,1 -"1341",2128,3,1,0,0.03009091,0.03009091,1,16,0,-1.8,1.5,13 -"1342",2129,3,1,0,2,2,0,-20,1,2.6,-0.9,6 -"1343",2129,3,2,2,3,1,0,-20,1,2.6,-0.9,6 -"1344",2129,3,3,3,6,3,0,-20,1,2.6,-0.9,6 -"1345",2129,3,4,6,6.5,0.5,0,-20,1,2.6,-0.9,6 -"1346",2129,3,5,6.5,8,1.5,0,-20,1,2.6,-0.9,6 -"1347",2129,3,6,8,10,2,0,-20,1,2.6,-0.9,6 -"1348",2130,3,1,0,0.154903256,0.154903256,0,-14,1,-2.2,0.2,-7 -"1349",2131,3,1,0,0.131891918,0.131891918,1,-23,0,2.5,0.9,3 -"1350",2132,3,1,0,2,2,0,-3,0,2.3,-1,-1 -"1351",2132,3,2,2,2.765787778,0.765787778,1,-3,0,2.3,-1,-1 -"1352",2133,3,1,0,1.29986755,1.29986755,0,-9,1,-2.2,-0.1,-5 -"1353",2134,3,1,0,2,2,0,-3,1,5.1,-0.5,4 -"1354",2134,3,2,2,3,1,0,-3,1,5.1,-0.5,4 -"1355",2134,3,3,3,6,3,0,-3,1,5.1,-0.5,4 -"1356",2134,3,4,6,6.5,0.5,0,-3,1,5.1,-0.5,4 -"1357",2134,3,5,6.5,8,1.5,0,-3,1,5.1,-0.5,4 -"1358",2134,3,6,8,10,2,0,-3,1,5.1,-0.5,4 -"1359",2135,3,1,0,1.004027692,1.004027692,0,10,1,6.9,-0.5,-4 -"1360",2136,3,1,0,1.796425387,1.796425387,0,-1,1,1.3,0.3,-9 -"1361",2137,3,1,0,0.21941795,0.21941795,1,1,1,-4.1,-1,5 -"1362",2138,3,1,0,2,2,0,10,0,3.9,0.2,-2 -"1363",2138,3,2,2,3,1,0,10,0,3.9,0.2,-2 -"1364",2138,3,3,3,6,3,0,10,0,3.9,0.2,-2 -"1365",2138,3,4,6,6.076888364,0.076888364,1,10,0,3.9,0.2,-2 -"1366",2139,3,1,0,1.16627725,1.16627725,0,12,1,0.6,-0.1,6 -"1367",2140,3,1,0,1.152902007,1.152902007,0,-2,0,-2.7,-1.8,3 -"1368",2141,3,1,0,0.528725699,0.528725699,1,14,0,-1.7,0.4,2 -"1369",2142,3,1,0,0.289176465,0.289176465,1,9,0,0.8,1.7,5 -"1370",2143,3,1,0,1.474298999,1.474298999,1,10,0,-3,0.8,4 -"1371",2144,3,1,0,2,2,0,-13,0,5.3,-0.9,3 -"1372",2144,3,2,2,2.538323354,0.538323354,0,-13,0,5.3,-0.9,3 -"1373",2145,3,1,0,0.764454502,0.764454502,1,32,1,4.6,-0.2,2 -"1374",2146,3,1,0,2,2,0,1,,6.3,-0.6,-6 -"1375",2146,3,2,2,3,1,0,1,,6.3,-0.6,-6 -"1376",2146,3,3,3,6,3,0,1,,6.3,-0.6,-6 -"1377",2146,3,4,6,6.5,0.5,0,1,,6.3,-0.6,-6 -"1378",2146,3,5,6.5,8,1.5,0,1,,6.3,-0.6,-6 -"1379",2146,3,6,8,10,2,0,1,,6.3,-0.6,-6 -"1380",2147,3,1,0,0.890495471,0.890495471,1,-9,1,3.7,0.1,4 -"1381",2148,3,1,0,1.883192418,1.883192418,0,-3,1,8.4,-0.7,1 -"1382",2149,3,1,0,0.316113701,0.316113701,0,17,1,1.7,0.6,0 -"1383",2150,3,1,0,2,2,0,3,0,1.9,-0.2,-2 -"1384",2150,3,2,2,3,1,0,3,0,1.9,-0.2,-2 -"1385",2150,3,3,3,6,3,0,3,0,1.9,-0.2,-2 -"1386",2150,3,4,6,6.5,0.5,0,3,0,1.9,-0.2,-2 -"1387",2150,3,5,6.5,7.923456032,1.423456032,1,3,0,1.9,-0.2,-2 -"1388",2151,3,1,0,2,2,0,-2,0,-6.2,0.3,2 -"1389",2151,3,2,2,3,1,0,-2,0,-6.2,0.3,2 -"1390",2151,3,3,3,3.786911314,0.786911314,0,-2,0,-6.2,0.3,2 -"1391",2152,3,1,0,2,2,0,-10,1,-1.5,-0.3,6 -"1392",2152,3,2,2,2.002656266,0.002656266,0,-10,1,-1.5,-0.3,6 -"1393",2153,3,1,0,0.037741426,0.037741426,0,3,1,-4.5,-0.7,2 -"1394",2154,3,1,0,2,2,0,16,1,2.5,-1.1,8 -"1395",2154,3,2,2,2.035068858,0.035068858,0,16,1,2.5,-1.1,8 -"1396",2155,3,1,0,1.756495712,1.756495712,1,-7,1,4.7,-0.2,4 -"1397",2156,3,1,0,0.119662546,0.119662546,1,26,0,4.6,0.5,-4 -"1398",2157,3,1,0,2,2,0,7,1,-1.1,-0.4,-3 -"1399",2157,3,2,2,3,1,0,7,1,-1.1,-0.4,-3 -"1400",2157,3,3,3,5.418258097,2.418258097,0,7,1,-1.1,-0.4,-3 -"1401",2158,3,1,0,1.62345909,1.62345909,0,-7,1,-16.4,0.9,1 -"1402",2159,3,1,0,0.277486293,0.277486293,1,-3,0,-6.4,-0.8,5 -"1403",2160,3,1,0,2,2,0,-8,1,-3.8,0.4,-7 -"1404",2160,3,2,2,3,1,0,-8,1,-3.8,0.4,-7 -"1405",2160,3,3,3,6,3,0,-8,1,-3.8,0.4,-7 -"1406",2160,3,4,6,6.5,0.5,0,-8,1,-3.8,0.4,-7 -"1407",2160,3,5,6.5,8,1.5,0,-8,1,-3.8,0.4,-7 -"1408",2160,3,6,8,9.724306943,1.724306943,0,-8,1,-3.8,0.4,-7 -"1409",2161,3,1,0,1.188105229,1.188105229,1,18,0,3.4,-0.4,7 -"1410",2162,3,1,0,2,2,0,-26,0,-4.5,-0.3,5 -"1411",2162,3,2,2,3,1,0,-26,0,-4.5,-0.3,5 -"1412",2162,3,3,3,3.436273615,0.436273615,0,-26,0,-4.5,-0.3,5 -"1413",2163,3,1,0,2,2,0,-6,1,1.2,-1,-6 -"1414",2163,3,2,2,3,1,0,-6,1,1.2,-1,-6 -"1415",2163,3,3,3,6,3,0,-6,1,1.2,-1,-6 -"1416",2163,3,4,6,6.5,0.5,0,-6,1,1.2,-1,-6 -"1417",2163,3,5,6.5,8,1.5,0,-6,1,1.2,-1,-6 -"1418",2163,3,6,8,10,2,0,-6,1,1.2,-1,-6 -"1419",2164,3,1,0,2,2,0,-3,1,8.7,-1.3,-4 -"1420",2164,3,2,2,3,1,0,-3,1,8.7,-1.3,-4 -"1421",2164,3,3,3,6,3,0,-3,1,8.7,-1.3,-4 -"1422",2164,3,4,6,6.5,0.5,0,-3,1,8.7,-1.3,-4 -"1423",2164,3,5,6.5,8,1.5,0,-3,1,8.7,-1.3,-4 -"1424",2164,3,6,8,10,2,0,-3,1,8.7,-1.3,-4 -"1425",2165,3,1,0,2,2,0,-6,1,-4.3,-0.2,-14 -"1426",2165,3,2,2,2.909111944,0.909111944,0,-6,1,-4.3,-0.2,-14 -"1427",2166,3,1,0,2,2,0,-16,1,3.2,-0.7,-4 -"1428",2166,3,2,2,3,1,0,-16,1,3.2,-0.7,-4 -"1429",2166,3,3,3,6,3,0,-16,1,3.2,-0.7,-4 -"1430",2166,3,4,6,6.5,0.5,0,-16,1,3.2,-0.7,-4 -"1431",2166,3,5,6.5,8,1.5,0,-16,1,3.2,-0.7,-4 -"1432",2166,3,6,8,8.402521016,0.402521016,0,-16,1,3.2,-0.7,-4 -"1433",2167,3,1,0,0.386133678,0.386133678,1,9,0,4.1,0.6,8 -"1434",2168,3,1,0,1.052679171,1.052679171,0,-9,1,-4.3,-1.5,2 -"1435",2169,3,1,0,0.265241508,0.265241508,0,4,0,0.3,-1.8,5 -"1436",2170,3,1,0,2,2,0,3,1,4,-0.8,-1 -"1437",2170,3,2,2,3,1,0,3,1,4,-0.8,-1 -"1438",2170,3,3,3,6,3,0,3,1,4,-0.8,-1 -"1439",2170,3,4,6,6.5,0.5,0,3,1,4,-0.8,-1 -"1440",2170,3,5,6.5,8,1.5,0,3,1,4,-0.8,-1 -"1441",2170,3,6,8,9.929559672,1.929559672,0,3,1,4,-0.8,-1 -"1442",2171,3,1,0,0.577863177,0.577863177,0,-30,0,0.8,-0.6,-15 -"1443",2172,3,1,0,2,2,0,1,0,-6.4,-1.6,6 -"1444",2172,3,2,2,2.020005265,0.020005265,1,1,0,-6.4,-1.6,6 -"1445",2173,3,1,0,0.073968475,0.073968475,1,-24,1,5.6,-0.4,8 -"1446",2174,3,1,0,0.370035455,0.370035455,0,-8,0,-6.8,0.3,3 -"1447",2175,3,1,0,0.592257233,0.592257233,0,-17,1,-3.6,-0.7,-4 -"1448",2176,3,1,0,0.273380034,0.273380034,1,7,0,-5.9,-0.4,0 -"1449",2177,3,1,0,2,2,0,-34,1,1.5,-1.3,4 -"1450",2177,3,2,2,3,1,0,-34,1,1.5,-1.3,4 -"1451",2177,3,3,3,6,3,0,-34,1,1.5,-1.3,4 -"1452",2177,3,4,6,6.5,0.5,0,-34,1,1.5,-1.3,4 -"1453",2177,3,5,6.5,8,1.5,0,-34,1,1.5,-1.3,4 -"1454",2177,3,6,8,8.030876774,0.030876774,0,-34,1,1.5,-1.3,4 -"1455",2178,3,1,0,1.310689029,1.310689029,1,-9,0,-0.2,-1.2,7 -"1456",2179,3,1,0,2,2,0,-16,1,-2.9,0.6,4 -"1457",2179,3,2,2,3,1,0,-16,1,-2.9,0.6,4 -"1458",2179,3,3,3,6,3,0,-16,1,-2.9,0.6,4 -"1459",2179,3,4,6,6.5,0.5,1,-16,1,-2.9,0.6,4 -"1460",2180,3,1,0,1.127186292,1.127186292,0,11,1,-1.7,-0.1,-3 -"1461",2181,3,1,0,0.651876993,0.651876993,0,-17,0,-0.4,-0.5,-5 -"1462",2182,3,1,0,0.938273344,0.938273344,0,-9,1,5.3,-0.7,3 -"1463",2183,3,1,0,2,2,0,-24,0,-8.3,2.3,0 -"1464",2183,3,2,2,2.644002728,0.644002728,1,-24,0,-8.3,2.3,0 -"1465",2184,3,1,0,2,2,0,-8,1,-1.5,0.6,-11 -"1466",2184,3,2,2,3,1,0,-8,1,-1.5,0.6,-11 -"1467",2184,3,3,3,6,3,0,-8,1,-1.5,0.6,-11 -"1468",2184,3,4,6,6.5,0.5,0,-8,1,-1.5,0.6,-11 -"1469",2184,3,5,6.5,8,1.5,0,-8,1,-1.5,0.6,-11 -"1470",2184,3,6,8,10,2,0,-8,1,-1.5,0.6,-11 -"1471",2185,3,1,0,1.170283011,1.170283011,0,0,0,7.4,0.4,-6 -"1472",2186,3,1,0,0.20362285,0.20362285,1,16,0,2.1,1.3,3 -"1473",2187,3,1,0,2,2,0,-14,1,0.2,-0.9,9 -"1474",2187,3,2,2,2.361668986,0.361668986,0,-14,1,0.2,-0.9,9 -"1475",2188,3,1,0,2,2,0,-3,1,1.5,-2.9,2 -"1476",2188,3,2,2,2.482119895,0.482119895,1,-3,1,1.5,-2.9,2 -"1477",2189,3,1,0,2,2,0,-19,0,-0.1,-0.8,6 -"1478",2189,3,2,2,2.201886655,0.201886655,1,-19,0,-0.1,-0.8,6 -"1479",2190,3,1,0,0.440426608,0.440426608,1,28,1,-1.9,0,2 -"1480",2191,3,1,0,2,2,0,19,1,0.9,0.4,-10 -"1481",2191,3,2,2,3,1,0,19,1,0.9,0.4,-10 -"1482",2191,3,3,3,4.348658153,1.348658153,0,19,1,0.9,0.4,-10 -"1483",2192,3,1,0,0.912402861,0.912402861,1,18,1,12,-0.1,-2 -"1484",2193,3,1,0,1.417600022,1.417600022,0,-22,1,6.2,-1.7,4 -"1485",2194,3,1,0,2,2,0,4,1,9.5,0.8,-11 -"1486",2194,3,2,2,3,1,0,4,1,9.5,0.8,-11 -"1487",2194,3,3,3,4.266942382,1.266942382,0,4,1,9.5,0.8,-11 -"1488",2195,3,1,0,1.230335521,1.230335521,1,-17,0,-0.8,1.6,2 -"1489",2196,3,1,0,2,2,0,-31,0,-1.2,0.5,9 -"1490",2196,3,2,2,3,1,0,-31,0,-1.2,0.5,9 -"1491",2196,3,3,3,6,3,0,-31,0,-1.2,0.5,9 -"1492",2196,3,4,6,6.5,0.5,0,-31,0,-1.2,0.5,9 -"1493",2196,3,5,6.5,8,1.5,0,-31,0,-1.2,0.5,9 -"1494",2196,3,6,8,8.103980503,0.103980503,1,-31,0,-1.2,0.5,9 -"1495",2197,3,1,0,2,2,0,6,1,-4,1.2,7 -"1496",2197,3,2,2,2.70860009,0.70860009,1,6,1,-4,1.2,7 -"1497",2198,3,1,0,2,2,0,-1,1,7.3,0.3,11 -"1498",2198,3,2,2,3,1,0,-1,1,7.3,0.3,11 -"1499",2198,3,3,3,6,3,0,-1,1,7.3,0.3,11 -"1500",2198,3,4,6,6.5,0.5,0,-1,1,7.3,0.3,11 -"1501",2198,3,5,6.5,6.887017672,0.387017672,1,-1,1,7.3,0.3,11 -"1502",2199,3,1,0,1.754089289,1.754089289,1,7,0,4.1,0.1,2 -"1503",2200,3,1,,,,,11,0,0,1.4,4 -"1504",2201,3,1,0,2,2,0,-8,0,2.2,-1.2,0 -"1505",2201,3,2,2,2.037201543,0.037201543,0,-8,0,2.2,-1.2,0 -"1506",2202,3,1,0,2,2,0,-4,1,-7.4,-0.3,-5 -"1507",2202,3,2,2,3,1,0,-4,1,-7.4,-0.3,-5 -"1508",2202,3,3,3,4.018289102,1.018289102,0,-4,1,-7.4,-0.3,-5 -"1509",2203,3,1,0,1.259524872,1.259524872,1,15,1,-0.8,1.4,5 -"1510",2204,3,1,0,0.112843616,0.112843616,1,15,0,2.4,-0.7,8 -"1511",2205,3,1,0,2,2,0,-22,1,-10.2,-1.3,-2 -"1512",2205,3,2,2,3,1,0,-22,1,-10.2,-1.3,-2 -"1513",2205,3,3,3,6,3,0,-22,1,-10.2,-1.3,-2 -"1514",2205,3,4,6,6.5,0.5,0,-22,1,-10.2,-1.3,-2 -"1515",2205,3,5,6.5,8,1.5,0,-22,1,-10.2,-1.3,-2 -"1516",2205,3,6,8,10,2,0,-22,1,-10.2,-1.3,-2 -"1517",2206,3,1,0,2,2,0,-12,0,3.5,-0.3,4 -"1518",2206,3,2,2,2.654149431,0.654149431,1,-12,0,3.5,-0.3,4 -"1519",2207,3,1,0,0.546944285,0.546944285,0,0,0,2.5,-0.5,5 -"1520",2208,3,1,0,1.989894742,1.989894742,1,-6,0,0.9,-0.3,8 -"1521",2209,3,1,,,,,9,1,2.9,1.1,-5 -"1522",2210,3,1,0,0.541077193,0.541077193,1,5,0,7.8,0.6,-6 -"1523",2211,3,1,0,2,2,0,-3,1,-2.6,-1.8,9 -"1524",2211,3,2,2,3,1,0,-3,1,-2.6,-1.8,9 -"1525",2211,3,3,3,6,3,0,-3,1,-2.6,-1.8,9 -"1526",2211,3,4,6,6.5,0.5,0,-3,1,-2.6,-1.8,9 -"1527",2211,3,5,6.5,8,1.5,0,-3,1,-2.6,-1.8,9 -"1528",2211,3,6,8,10,2,0,-3,1,-2.6,-1.8,9 -"1529",2212,3,1,0,1.475059739,1.475059739,0,-8,1,-0.4,0.4,1 -"1530",2213,3,1,0,2,2,0,-14,1,6.6,-3.3,1 -"1531",2213,3,2,2,3,1,0,-14,1,6.6,-3.3,1 -"1532",2213,3,3,3,6,3,0,-14,1,6.6,-3.3,1 -"1533",2213,3,4,6,6.5,0.5,0,-14,1,6.6,-3.3,1 -"1534",2213,3,5,6.5,8,1.5,0,-14,1,6.6,-3.3,1 -"1535",2213,3,6,8,10,2,0,-14,1,6.6,-3.3,1 -"1536",2214,3,1,0,0.730390725,0.730390725,1,26,1,3.3,-0.7,2 -"1537",2215,3,1,0,1.268617234,1.268617234,1,9,1,6.4,0.4,-1 -"1538",2216,3,1,0,0.392729758,0.392729758,1,1,0,-1.7,-0.9,-8 -"1539",2217,3,1,0,1.42352113,1.42352113,1,-17,0,1.5,0.6,-10 -"1540",2218,3,1,0,0.969200528,0.969200528,1,2,0,-1.9,0.5,-1 -"1541",2219,3,1,0,1.012947588,1.012947588,1,9,0,3.7,0.1,9 -"1542",2220,3,1,0,2,2,0,-13,0,0,-1.7,4 -"1543",2220,3,2,2,3,1,0,-13,0,0,-1.7,4 -"1544",2220,3,3,3,5.68876301,2.68876301,0,-13,0,0,-1.7,4 -"1545",2221,3,1,0,1.683503605,1.683503605,1,24,0,-1.7,-1.4,5 -"1546",2222,3,1,0,1.223943883,1.223943883,1,-12,1,-4.4,0.3,-6 -"1547",2223,3,1,0,0.561645603,0.561645603,1,12,0,-1.2,-0.3,8 -"1548",2224,3,1,0,2,2,0,-12,0,5.3,0.1,-2 -"1549",2224,3,2,2,3,1,0,-12,0,5.3,0.1,-2 -"1550",2224,3,3,3,6,3,0,-12,0,5.3,0.1,-2 -"1551",2224,3,4,6,6.5,0.5,0,-12,0,5.3,0.1,-2 -"1552",2224,3,5,6.5,7.216280506,0.716280506,0,-12,0,5.3,0.1,-2 -"1553",2225,3,1,0,2,2,0,1,1,,-0.2,4 -"1554",2225,3,2,2,3,1,0,1,1,,-0.2,4 -"1555",2225,3,3,3,6,3,0,1,1,,-0.2,4 -"1556",2225,3,4,6,6.5,0.5,0,1,1,,-0.2,4 -"1557",2225,3,5,6.5,8,1.5,0,1,1,,-0.2,4 -"1558",2225,3,6,8,9.784400908,1.784400908,1,1,1,,-0.2,4 -"1559",2226,3,1,0,0.331135443,0.331135443,1,29,0,-3.4,0.9,2 -"1560",2227,3,1,0,2,2,0,-1,0,0.3,1,-14 -"1561",2227,3,2,2,3,1,0,-1,0,0.3,1,-14 -"1562",2227,3,3,3,3.051178654,0.051178654,0,-1,0,0.3,1,-14 -"1563",2228,3,1,0,1.709213111,1.709213111,0,4,0,5.1,0.1,-14 -"1564",2229,3,1,0,2,2,0,-3,0,-0.4,-0.9,2 -"1565",2229,3,2,2,2.67059973,0.67059973,0,-3,0,-0.4,-0.9,2 -"1566",2230,3,1,0,1.494265834,1.494265834,0,-25,0,0.6,0.1,-6 -"1567",2231,3,1,0,2,2,0,-15,0,3.3,-0.8,5 -"1568",2231,3,2,2,2.802287179,0.802287179,0,-15,0,3.3,-0.8,5 -"1569",2232,3,1,0,1.509792056,1.509792056,1,-9,0,-11.4,1,-2 -"1570",2233,3,1,0,2,2,0,12,0,5.1,-0.4,-15 -"1571",2233,3,2,2,3,1,0,12,0,5.1,-0.4,-15 -"1572",2233,3,3,3,6,3,0,12,0,5.1,-0.4,-15 -"1573",2233,3,4,6,6.5,0.5,0,12,0,5.1,-0.4,-15 -"1574",2233,3,5,6.5,8,1.5,0,12,0,5.1,-0.4,-15 -"1575",2233,3,6,8,10,2,0,12,0,5.1,-0.4,-15 -"1576",2234,3,1,0,0.13739739,0.13739739,1,4,0,-6.6,0.2,8 -"1577",2235,3,1,0,1.397498532,1.397498532,1,18,1,-3.4,-0.2,-2 -"1578",2236,3,1,0,1.941651722,1.941651722,1,-1,1,-4.5,1.3,10 -"1579",2237,3,1,0,2,2,0,-10,0,-2.7,-0.8,-4 -"1580",2237,3,2,2,3,1,0,-10,0,-2.7,-0.8,-4 -"1581",2237,3,3,3,6,3,0,-10,0,-2.7,-0.8,-4 -"1582",2237,3,4,6,6.5,0.5,0,-10,0,-2.7,-0.8,-4 -"1583",2237,3,5,6.5,8,1.5,0,-10,0,-2.7,-0.8,-4 -"1584",2237,3,6,8,10,2,0,-10,0,-2.7,-0.8,-4 -"1585",2238,3,1,0,2,2,0,20,0,0.9,-0.8,-1 -"1586",2238,3,2,2,3,1,0,20,0,0.9,-0.8,-1 -"1587",2238,3,3,3,5.265432467,2.265432467,1,20,0,0.9,-0.8,-1 -"1588",2239,3,1,0,2,2,0,-17,0,2.5,-0.1,-9 -"1589",2239,3,2,2,3,1,0,-17,0,2.5,-0.1,-9 -"1590",2239,3,3,3,6,3,0,-17,0,2.5,-0.1,-9 -"1591",2239,3,4,6,6.5,0.5,0,-17,0,2.5,-0.1,-9 -"1592",2239,3,5,6.5,8,1.5,0,-17,0,2.5,-0.1,-9 -"1593",2239,3,6,8,10,2,0,-17,0,2.5,-0.1,-9 -"1594",2240,3,1,0,2,2,0,-17,1,6.5,-0.3,-5 -"1595",2240,3,2,2,3,1,0,-17,1,6.5,-0.3,-5 -"1596",2240,3,3,3,6,3,0,-17,1,6.5,-0.3,-5 -"1597",2240,3,4,6,6.5,0.5,0,-17,1,6.5,-0.3,-5 -"1598",2240,3,5,6.5,8,1.5,0,-17,1,6.5,-0.3,-5 -"1599",2240,3,6,8,10,2,0,-17,1,6.5,-0.3,-5 -"1600",2241,3,1,0,0.63305566,0.63305566,1,22,1,2.1,-0.7,5 -"1601",2242,3,1,0,0.242311201,0.242311201,0,13,1,-1.6,-0.9,-11 -"1602",2243,3,1,0,2,2,0,-8,0,-2.4,0.6,-6 -"1603",2243,3,2,2,3,1,0,-8,0,-2.4,0.6,-6 -"1604",2243,3,3,3,5.913558835,2.913558835,0,-8,0,-2.4,0.6,-6 -"1605",2244,3,1,0,2,2,0,-11,0,0.1,1.2,-9 -"1606",2244,3,2,2,3,1,0,-11,0,0.1,1.2,-9 -"1607",2244,3,3,3,6,3,0,-11,0,0.1,1.2,-9 -"1608",2244,3,4,6,6.48295031,0.48295031,0,-11,0,0.1,1.2,-9 -"1609",2245,3,1,0,1.791022483,1.791022483,1,17,1,3.2,0.2,2 -"1610",2246,3,1,0,0.538918998,0.538918998,1,-9,0,-3.2,-0.3,1 -"1611",2247,3,1,0,0.155498882,0.155498882,1,2,0,6.5,0.2,-7 -"1612",2248,3,1,0,0.315267607,0.315267607,0,12,0,5.9,0.4,8 -"1613",2249,3,1,0,2,2,0,-30,0,0.4,1.3,3 -"1614",2249,3,2,2,2.735378195,0.735378195,1,-30,0,0.4,1.3,3 -"1615",2250,3,1,0,2,2,0,-6,0,4.6,-0.7,-5 -"1616",2250,3,2,2,3,1,0,-6,0,4.6,-0.7,-5 -"1617",2250,3,3,3,5.044327147,2.044327147,1,-6,0,4.6,-0.7,-5 -"1618",2251,3,1,0,2,2,0,-12,0,-0.5,-0.1,-4 -"1619",2251,3,2,2,3,1,0,-12,0,-0.5,-0.1,-4 -"1620",2251,3,3,3,5.495498589,2.495498589,0,-12,0,-0.5,-0.1,-4 -"1621",2252,3,1,0,1.47881005,1.47881005,0,1,1,-4.9,-0.3,-1 -"1622",2253,3,1,0,2,2,0,-1,1,-3.3,1.5,1 -"1623",2253,3,2,2,2.689463837,0.689463837,1,-1,1,-3.3,1.5,1 -"1624",2254,3,1,0,1.613166065,1.613166065,0,7,0,-8.4,-1,6 -"1625",2255,3,1,0,2,2,0,-5,0,-10.1,0.1,-7 -"1626",2255,3,2,2,3,1,0,-5,0,-10.1,0.1,-7 -"1627",2255,3,3,3,4.280617792,1.280617792,0,-5,0,-10.1,0.1,-7 -"1628",2256,3,1,0,0.527412117,0.527412117,1,13,1,4,0.3,11 -"1629",2257,3,1,0,2,2,0,-8,0,2.3,0.2,4 -"1630",2257,3,2,2,3,1,0,-8,0,2.3,0.2,4 -"1631",2257,3,3,3,6,3,0,-8,0,2.3,0.2,4 -"1632",2257,3,4,6,6.5,0.5,0,-8,0,2.3,0.2,4 -"1633",2257,3,5,6.5,8,1.5,0,-8,0,2.3,0.2,4 -"1634",2257,3,6,8,10,2,0,-8,0,2.3,0.2,4 -"1635",2258,3,1,0,0.314611021,0.314611021,1,10,1,8.7,0.5,4 -"1636",2259,3,1,0,2,2,0,9,1,0,,-5 -"1637",2259,3,2,2,3,1,0,9,1,0,,-5 -"1638",2259,3,3,3,6,3,0,9,1,0,,-5 -"1639",2259,3,4,6,6.5,0.5,0,9,1,0,,-5 -"1640",2259,3,5,6.5,8,1.5,0,9,1,0,,-5 -"1641",2259,3,6,8,9.580193596,1.580193596,0,9,1,0,,-5 -"1642",2260,3,1,0,2,2,0,-5,1,2.3,-0.9,-2 -"1643",2260,3,2,2,3,1,0,-5,1,2.3,-0.9,-2 -"1644",2260,3,3,3,3.284411704,0.284411704,0,-5,1,2.3,-0.9,-2 -"1645",2261,3,1,0,1.208214857,1.208214857,1,31,1,5.1,-0.5,1 -"1646",2262,3,1,0,2,2,0,-12,0,-3.9,1.2,4 -"1647",2262,3,2,2,3,1,0,-12,0,-3.9,1.2,4 -"1648",2262,3,3,3,6,3,0,-12,0,-3.9,1.2,4 -"1649",2262,3,4,6,6.5,0.5,0,-12,0,-3.9,1.2,4 -"1650",2262,3,5,6.5,7.838155804,1.338155804,1,-12,0,-3.9,1.2,4 -"1651",2263,3,1,0,1.000445047,1.000445047,0,0,1,-0.3,-0.7,-7 -"1652",2264,3,1,0,1.751767787,1.751767787,0,-19,0,1.1,1.4,-2 -"1653",2265,3,1,0,1.645058266,1.645058266,1,35,0,-0.9,0.1,-1 -"1654",2266,3,1,0,2,2,0,9,0,3.6,-0.6,6 -"1655",2266,3,2,2,3,1,0,9,0,3.6,-0.6,6 -"1656",2266,3,3,3,6,3,0,9,0,3.6,-0.6,6 -"1657",2266,3,4,6,6.5,0.5,0,9,0,3.6,-0.6,6 -"1658",2266,3,5,6.5,8,1.5,0,9,0,3.6,-0.6,6 -"1659",2266,3,6,8,10,2,0,9,0,3.6,-0.6,6 -"1660",2267,3,1,0,2,2,0,-11,1,-3,-0.7,-15 -"1661",2267,3,2,2,3,1,0,-11,1,-3,-0.7,-15 -"1662",2267,3,3,3,6,3,0,-11,1,-3,-0.7,-15 -"1663",2267,3,4,6,6.5,0.5,0,-11,1,-3,-0.7,-15 -"1664",2267,3,5,6.5,7.588665348,1.088665348,0,-11,1,-3,-0.7,-15 -"1665",2268,3,1,0,2,2,0,15,1,3.9,1.1,-5 -"1666",2268,3,2,2,3,1,0,15,1,3.9,1.1,-5 -"1667",2268,3,3,3,6,3,0,15,1,3.9,1.1,-5 -"1668",2268,3,4,6,6.5,0.5,0,15,1,3.9,1.1,-5 -"1669",2268,3,5,6.5,8,1.5,0,15,1,3.9,1.1,-5 -"1670",2268,3,6,8,8.928145831,0.928145831,1,15,1,3.9,1.1,-5 -"1671",2269,3,1,0,0.856550426,0.856550426,0,0,1,1,-0.5,-3 -"1672",2270,3,1,0,2,2,0,5,0,-9.2,0.5,0 -"1673",2270,3,2,2,2.255957865,0.255957865,0,5,0,-9.2,0.5,0 -"1674",2271,3,1,0,0.902113376,0.902113376,0,-4,1,2.2,0.3,-4 -"1675",2272,3,1,0,2,2,0,-3,1,-4.4,0.8,5 -"1676",2272,3,2,2,3,1,0,-3,1,-4.4,0.8,5 -"1677",2272,3,3,3,3.376711369,0.376711369,0,-3,1,-4.4,0.8,5 -"1678",2273,3,1,0,2,2,0,-2,0,-3.8,-1.1,-3 -"1679",2273,3,2,2,3,1,0,-2,0,-3.8,-1.1,-3 -"1680",2273,3,3,3,6,3,0,-2,0,-3.8,-1.1,-3 -"1681",2273,3,4,6,6.5,0.5,0,-2,0,-3.8,-1.1,-3 -"1682",2273,3,5,6.5,8,1.5,0,-2,0,-3.8,-1.1,-3 -"1683",2273,3,6,8,9.374239962,1.374239962,1,-2,0,-3.8,-1.1,-3 -"1684",2274,3,1,0,0.833724913,0.833724913,1,17,0,8.6,1.3,1 -"1685",2275,3,1,0,0.402342379,0.402342379,0,,1,3.2,-0.7,0 -"1686",2276,3,1,0,1.948480255,1.948480255,1,-2,1,-4.1,1,6 -"1687",2277,3,1,0,0.757749906,0.757749906,1,-14,,-4.9,-0.4,1 -"1688",2278,3,1,0,0.576948448,0.576948448,1,-11,1,-3.9,1.1,-6 -"1689",2279,3,1,0,0.162207027,0.162207027,1,9,0,-2.1,0.5,-6 -"1690",2280,3,1,0,1.073330562,1.073330562,1,25,1,,2.7,0 -"1691",2281,3,1,0,0.275588833,0.275588833,1,-3,0,4.6,-1,9 -"1692",2282,3,1,0,0.975945651,0.975945651,0,-2,1,,-1,7 -"1693",2283,3,1,0,0.477082174,0.477082174,1,-7,0,7.9,1,-5 -"1694",2284,3,1,0,2,2,0,-7,0,8.1,-1.1,2 -"1695",2284,3,2,2,3,1,0,-7,0,8.1,-1.1,2 -"1696",2284,3,3,3,3.998420871,0.998420871,0,-7,0,8.1,-1.1,2 -"1697",2285,3,1,0,2,2,0,8,1,2.5,0.5,3 -"1698",2285,3,2,2,3,1,0,8,1,2.5,0.5,3 -"1699",2285,3,3,3,3.714915466,0.714915466,0,8,1,2.5,0.5,3 -"1700",2286,3,1,0,2,2,0,-22,1,-2.2,-1.5,-1 -"1701",2286,3,2,2,3,1,0,-22,1,-2.2,-1.5,-1 -"1702",2286,3,3,3,4.608970048,1.608970048,0,-22,1,-2.2,-1.5,-1 -"1703",2287,3,1,0,2,2,0,4,1,-1.5,0.9,5 -"1704",2287,3,2,2,3,1,0,4,1,-1.5,0.9,5 -"1705",2287,3,3,3,3.284400016,0.284400016,1,4,1,-1.5,0.9,5 -"1706",2288,3,1,0,2,2,0,3,1,2.3,1.6,2 -"1707",2288,3,2,2,3,1,0,3,1,2.3,1.6,2 -"1708",2288,3,3,3,5.944830974,2.944830974,1,3,1,2.3,1.6,2 -"1709",2289,3,1,0,1.416497968,1.416497968,1,12,1,7.6,0.9,1 -"1710",2290,3,1,0,1.836928035,1.836928035,0,2,1,-4.2,0.9,1 -"1711",2291,3,1,0,1.60574185,1.60574185,1,-1,0,-2.5,0.4,10 -"1712",2292,3,1,0,0.954918148,0.954918148,1,3,0,1.4,-0.6,-1 -"1713",2293,3,1,0,0.176751058,0.176751058,1,9,1,2.6,0.8,0 -"1714",2294,3,1,0,2,2,0,-16,1,4,-0.2,2 -"1715",2294,3,2,2,3,1,0,-16,1,4,-0.2,2 -"1716",2294,3,3,3,3.489654909,0.489654909,0,-16,1,4,-0.2,2 -"1717",2295,3,1,0,2,2,0,2,1,-0.7,0.1,2 -"1718",2295,3,2,2,3,1,0,2,1,-0.7,0.1,2 -"1719",2295,3,3,3,6,3,0,2,1,-0.7,0.1,2 -"1720",2295,3,4,6,6.5,0.5,0,2,1,-0.7,0.1,2 -"1721",2295,3,5,6.5,8,1.5,0,2,1,-0.7,0.1,2 -"1722",2295,3,6,8,10,2,0,2,1,-0.7,0.1,2 -"1723",2296,3,1,0,2,2,0,2,0,-1.4,-0.6,2 -"1724",2296,3,2,2,2.093871517,0.093871517,1,2,0,-1.4,-0.6,2 -"1725",2297,3,1,0,2,2,0,-14,1,-3,-0.4,0 -"1726",2297,3,2,2,3,1,0,-14,1,-3,-0.4,0 -"1727",2297,3,3,3,6,3,0,-14,1,-3,-0.4,0 -"1728",2297,3,4,6,6.5,0.5,0,-14,1,-3,-0.4,0 -"1729",2297,3,5,6.5,8,1.5,0,-14,1,-3,-0.4,0 -"1730",2297,3,6,8,9.249724603,1.249724603,0,-14,1,-3,-0.4,0 -"1731",2298,3,1,0,0.329269799,0.329269799,0,2,0,3.3,0,2 -"1732",2299,3,1,0,2,2,0,-7,1,4.6,-0.9,-1 -"1733",2299,3,2,2,3,1,0,-7,1,4.6,-0.9,-1 -"1734",2299,3,3,3,6,3,0,-7,1,4.6,-0.9,-1 -"1735",2299,3,4,6,6.5,0.5,0,-7,1,4.6,-0.9,-1 -"1736",2299,3,5,6.5,7.495106499,0.995106499,0,-7,1,4.6,-0.9,-1 -"1737",2300,3,1,0,2,2,0,-8,1,3.2,-0.2,-2 -"1738",2300,3,2,2,3,1,0,-8,1,3.2,-0.2,-2 -"1739",2300,3,3,3,3.954047753,0.954047753,0,-8,1,3.2,-0.2,-2 -"1740",2301,3,1,0,2,2,0,8,0,-5.4,-1.3,-7 -"1741",2301,3,2,2,3,1,0,8,0,-5.4,-1.3,-7 -"1742",2301,3,3,3,6,3,0,8,0,-5.4,-1.3,-7 -"1743",2301,3,4,6,6.5,0.5,0,8,0,-5.4,-1.3,-7 -"1744",2301,3,5,6.5,8,1.5,0,8,0,-5.4,-1.3,-7 -"1745",2301,3,6,8,8.963643972,0.963643972,0,8,0,-5.4,-1.3,-7 -"1746",2302,3,1,0,2,2,0,-16,1,-3.4,-0.1,4 -"1747",2302,3,2,2,3,1,0,-16,1,-3.4,-0.1,4 -"1748",2302,3,3,3,6,3,0,-16,1,-3.4,-0.1,4 -"1749",2302,3,4,6,6.5,0.5,0,-16,1,-3.4,-0.1,4 -"1750",2302,3,5,6.5,6.989412269,0.489412269,0,-16,1,-3.4,-0.1,4 -"1751",2303,3,1,0,2,2,0,10,1,0.8,2.2,-3 -"1752",2303,3,2,2,3,1,0,10,1,0.8,2.2,-3 -"1753",2303,3,3,3,4.10881842,1.10881842,1,10,1,0.8,2.2,-3 -"1754",2304,3,1,0,2,2,0,,0,2.1,-2.5,-1 -"1755",2304,3,2,2,3,1,0,,0,2.1,-2.5,-1 -"1756",2304,3,3,3,6,3,0,,0,2.1,-2.5,-1 -"1757",2304,3,4,6,6.5,0.5,0,,0,2.1,-2.5,-1 -"1758",2304,3,5,6.5,8,1.5,0,,0,2.1,-2.5,-1 -"1759",2304,3,6,8,10,2,0,,0,2.1,-2.5,-1 -"1760",2305,3,1,0,2,2,0,12,1,-0.3,-0.6,2 -"1761",2305,3,2,2,3,1,0,12,1,-0.3,-0.6,2 -"1762",2305,3,3,3,3.340272905,0.340272905,0,12,1,-0.3,-0.6,2 -"1763",2306,3,1,0,1.708079152,1.708079152,1,-10,0,3.8,-0.6,-4 -"1764",2307,3,1,0,2,2,0,13,0,-0.3,-1.4,-7 -"1765",2307,3,2,2,3,1,0,13,0,-0.3,-1.4,-7 -"1766",2307,3,3,3,5.270874559,2.270874559,0,13,0,-0.3,-1.4,-7 -"1767",2308,3,1,0,0.077402913,0.077402913,1,-5,0,-6.4,0.3,5 -"1768",2309,3,1,0,2,2,0,-28,1,1,-0.2,-3 -"1769",2309,3,2,2,2.099376232,0.099376232,0,-28,1,1,-0.2,-3 -"1770",2310,3,1,0,2,2,0,-13,1,-2,-2,-1 -"1771",2310,3,2,2,3,1,0,-13,1,-2,-2,-1 -"1772",2310,3,3,3,4.196812468,1.196812468,0,-13,1,-2,-2,-1 -"1773",2311,3,1,0,2,2,0,-3,0,5.7,-0.6,3 -"1774",2311,3,2,2,3,1,0,-3,0,5.7,-0.6,3 -"1775",2311,3,3,3,4.898326225,1.898326225,0,-3,0,5.7,-0.6,3 -"1776",2312,3,1,0,0.083219176,0.083219176,1,-2,0,-1.8,-0.1,4 -"1777",2313,3,1,0,0.218457435,0.218457435,0,-29,0,-1.3,-0.9,-6 -"1778",2314,3,1,0,2,2,0,-2,1,-4.8,1,0 -"1779",2314,3,2,2,3,1,0,-2,1,-4.8,1,0 -"1780",2314,3,3,3,4.515117344,1.515117344,0,-2,1,-4.8,1,0 -"1781",2315,3,1,0,2,2,0,9,1,0.4,0.5,-5 -"1782",2315,3,2,2,3,1,0,9,1,0.4,0.5,-5 -"1783",2315,3,3,3,6,3,0,9,1,0.4,0.5,-5 -"1784",2315,3,4,6,6.5,0.5,0,9,1,0.4,0.5,-5 -"1785",2315,3,5,6.5,8,1.5,0,9,1,0.4,0.5,-5 -"1786",2315,3,6,8,8.408087814,0.408087814,1,9,1,0.4,0.5,-5 -"1787",2316,3,1,0,2,2,0,-14,1,-12.4,1.4,-4 -"1788",2316,3,2,2,3,1,0,-14,1,-12.4,1.4,-4 -"1789",2316,3,3,3,6,3,0,-14,1,-12.4,1.4,-4 -"1790",2316,3,4,6,6.5,0.5,0,-14,1,-12.4,1.4,-4 -"1791",2316,3,5,6.5,8,1.5,0,-14,1,-12.4,1.4,-4 -"1792",2316,3,6,8,10,2,0,-14,1,-12.4,1.4,-4 -"1793",2317,3,1,0,0.553509983,0.553509983,1,34,0,-7.8,0,2 -"1794",2318,3,1,0,1.72861539,1.72861539,0,-8,1,-1.6,1,1 -"1795",2319,3,1,0,0.490687986,0.490687986,1,0,0,0.3,-0.3,3 -"1796",2320,3,1,0,2,2,0,6,0,-3.8,-2.1,-2 -"1797",2320,3,2,2,2.179433984,0.179433984,0,6,0,-3.8,-2.1,-2 -"1798",2321,3,1,0,2,2,0,3,0,-0.2,-0.9,2 -"1799",2321,3,2,2,3,1,0,3,0,-0.2,-0.9,2 -"1800",2321,3,3,3,3.364351701,0.364351701,0,3,0,-0.2,-0.9,2 -"1801",2322,3,1,0,1.696590121,1.696590121,0,30,1,-5,-0.7,1 -"1802",2323,3,1,0,0.048539775,0.048539775,1,3,0,-0.1,2.7,15 -"1803",2324,3,1,0,0.233440891,0.233440891,0,9,0,-3.3,-0.2,-5 -"1804",2325,3,1,0,0.469652985,0.469652985,1,31,0,-1.2,-1.2,4 -"1805",2326,3,1,0,0.105992432,0.105992432,0,21,,-4.6,-0.3,8 -"1806",2327,3,1,0,1.742061833,1.742061833,1,-4,1,-1.9,-0.2,3 -"1807",2328,3,1,0,2,2,0,-19,1,-1.7,-0.9,-8 -"1808",2328,3,2,2,3,1,0,-19,1,-1.7,-0.9,-8 -"1809",2328,3,3,3,4.255765466,1.255765466,0,-19,1,-1.7,-0.9,-8 -"1810",2329,3,1,0,2,2,0,-10,1,-1.4,-0.3,3 -"1811",2329,3,2,2,3,1,0,-10,1,-1.4,-0.3,3 -"1812",2329,3,3,3,6,3,0,-10,1,-1.4,-0.3,3 -"1813",2329,3,4,6,6.5,0.5,0,-10,1,-1.4,-0.3,3 -"1814",2329,3,5,6.5,8,1.5,0,-10,1,-1.4,-0.3,3 -"1815",2329,3,6,8,10,2,0,-10,1,-1.4,-0.3,3 -"1816",2330,3,1,0,0.249493362,0.249493362,1,22,1,6.2,1,-3 -"1817",2331,3,1,0,2,2,0,-12,0,-3.9,0,-1 -"1818",2331,3,2,2,3,1,0,-12,0,-3.9,0,-1 -"1819",2331,3,3,3,3.152188411,0.152188411,0,-12,0,-3.9,0,-1 -"1820",2332,3,1,0,1.36119908,1.36119908,1,6,0,-0.1,0,-3 -"1821",2333,3,1,0,0.568675637,0.568675637,1,21,0,-1,-2.1,7 -"1822",2334,3,1,0,2,2,0,-20,0,-5.6,0.1,-4 -"1823",2334,3,2,2,3,1,0,-20,0,-5.6,0.1,-4 -"1824",2334,3,3,3,4.356014815,1.356014815,0,-20,0,-5.6,0.1,-4 -"1825",2335,3,1,0,0.682325617,0.682325617,1,18,1,4.1,1.4,0 -"1826",2336,3,1,0,0.568640313,0.568640313,1,-15,1,5.6,0.5,-1 -"1827",2337,3,1,0,2,2,0,-11,0,4.4,-1.1,2 -"1828",2337,3,2,2,3,1,0,-11,0,4.4,-1.1,2 -"1829",2337,3,3,3,6,3,0,-11,0,4.4,-1.1,2 -"1830",2337,3,4,6,6.5,0.5,0,-11,0,4.4,-1.1,2 -"1831",2337,3,5,6.5,8,1.5,0,-11,0,4.4,-1.1,2 -"1832",2337,3,6,8,10,2,0,-11,0,4.4,-1.1,2 -"1833",2338,3,1,0,2,2,0,-21,0,4,0.7,1 -"1834",2338,3,2,2,2.339400466,0.339400466,0,-21,0,4,0.7,1 -"1835",2339,3,1,0,0.339495983,0.339495983,1,0,0,-1.9,-0.2,-5 -"1836",2340,3,1,0,0.771050291,0.771050291,1,31,1,5.4,-1.3,-1 -"1837",2341,3,1,0,1.309969053,1.309969053,1,0,0,1.7,-0.3,7 -"1838",2342,3,1,0,2,2,0,8,1,-2.6,-0.9,3 -"1839",2342,3,2,2,3,1,0,8,1,-2.6,-0.9,3 -"1840",2342,3,3,3,6,3,0,8,1,-2.6,-0.9,3 -"1841",2342,3,4,6,6.5,0.5,0,8,1,-2.6,-0.9,3 -"1842",2342,3,5,6.5,8,1.5,0,8,1,-2.6,-0.9,3 -"1843",2342,3,6,8,10,2,0,8,1,-2.6,-0.9,3 -"1844",2343,3,1,0,0.426167039,0.426167039,1,14,1,0.4,-0.2,-1 -"1845",2344,3,1,0,0.20846423,0.20846423,1,16,0,8,1.2,1 -"1846",2345,3,1,0,1.756363433,1.756363433,0,-16,1,-5.5,0.6,2 -"1847",2346,3,1,0,2,2,0,22,0,-5,-0.5,-7 -"1848",2346,3,2,2,3,1,0,22,0,-5,-0.5,-7 -"1849",2346,3,3,3,5.086075051,2.086075051,0,22,0,-5,-0.5,-7 -"1850",2347,3,1,0,0.58027315,0.58027315,1,-20,1,-7.2,1.5,3 -"1851",2348,3,1,0,2,2,0,10,1,-2.8,-1.6,-4 -"1852",2348,3,2,2,3,1,0,10,1,-2.8,-1.6,-4 -"1853",2348,3,3,3,6,3,0,10,1,-2.8,-1.6,-4 -"1854",2348,3,4,6,6.5,0.5,0,10,1,-2.8,-1.6,-4 -"1855",2348,3,5,6.5,8,1.5,0,10,1,-2.8,-1.6,-4 -"1856",2348,3,6,8,9.58338982,1.58338982,0,10,1,-2.8,-1.6,-4 -"1857",2349,3,1,0,0.513809519,0.513809519,1,-1,1,2.6,0.8,1 -"1858",2350,3,1,0,0.109215365,0.109215365,0,-4,1,3.4,0.9,-6 -"1859",2351,3,1,0,1.069588616,1.069588616,1,6,0,-1.1,-0.2,-6 -"1860",2352,3,1,0,1.604329769,1.604329769,1,8,0,-2.2,-0.1,6 -"1861",2353,3,1,0,0.307153319,0.307153319,1,11,1,3.8,1.1,11 -"1862",2354,3,1,0,2,2,0,-12,0,-8.9,-0.3,-7 -"1863",2354,3,2,2,3,1,0,-12,0,-8.9,-0.3,-7 -"1864",2354,3,3,3,4.095504079,1.095504079,1,-12,0,-8.9,-0.3,-7 -"1865",2355,3,1,0,2,2,0,-18,0,5.3,-0.2,4 -"1866",2355,3,2,2,3,1,0,-18,0,5.3,-0.2,4 -"1867",2355,3,3,3,6,3,0,-18,0,5.3,-0.2,4 -"1868",2355,3,4,6,6.5,0.5,0,-18,0,5.3,-0.2,4 -"1869",2355,3,5,6.5,8,1.5,0,-18,0,5.3,-0.2,4 -"1870",2355,3,6,8,8.352372336,0.352372336,0,-18,0,5.3,-0.2,4 -"1871",2356,3,1,0,0.019574508,0.019574508,0,12,1,-7.7,1.2,4 -"1872",2357,3,1,0,2,2,0,-6,0,1.4,-0.9,-7 -"1873",2357,3,2,2,2.495882693,0.495882693,1,-6,0,1.4,-0.9,-7 -"1874",2358,3,1,0,0.680750349,0.680750349,0,-5,0,-6.9,0.4,-1 -"1875",2359,3,1,0,2,2,0,5,1,3,0.8,-6 -"1876",2359,3,2,2,3,1,0,5,1,3,0.8,-6 -"1877",2359,3,3,3,6,3,0,5,1,3,0.8,-6 -"1878",2359,3,4,6,6.5,0.5,0,5,1,3,0.8,-6 -"1879",2359,3,5,6.5,6.820264011,0.320264011,0,5,1,3,0.8,-6 -"1880",2360,3,1,0,1.67151359,1.67151359,0,-4,0,-1.4,-2,-3 -"1881",2361,3,1,0,2,2,0,-11,1,5.5,1.5,-5 -"1882",2361,3,2,2,3,1,0,-11,1,5.5,1.5,-5 -"1883",2361,3,3,3,4.151583373,1.151583373,0,-11,1,5.5,1.5,-5 -"1884",2362,3,1,0,0.633277362,0.633277362,1,12,1,-0.2,0.2,3 -"1885",2363,3,1,0,2,2,0,-9,0,3.2,-0.7,7 -"1886",2363,3,2,2,3,1,0,-9,0,3.2,-0.7,7 -"1887",2363,3,3,3,6,3,0,-9,0,3.2,-0.7,7 -"1888",2363,3,4,6,6.298061553,0.298061553,0,-9,0,3.2,-0.7,7 -"1889",2364,3,1,0,0.696769418,0.696769418,1,6,0,-3.8,0,-5 -"1890",2365,3,1,0,2,2,0,-2,0,7.2,0,-6 -"1891",2365,3,2,2,3,1,0,-2,0,7.2,0,-6 -"1892",2365,3,3,3,4.814515513,1.814515513,0,-2,0,7.2,0,-6 -"1893",2366,3,1,0,2,2,0,12,0,-1.9,0.2,-7 -"1894",2366,3,2,2,2.630506611,0.630506611,1,12,0,-1.9,0.2,-7 -"1895",2367,3,1,0,2,2,0,-11,1,1.8,-0.7,-5 -"1896",2367,3,2,2,3,1,0,-11,1,1.8,-0.7,-5 -"1897",2367,3,3,3,4.174042088,1.174042088,0,-11,1,1.8,-0.7,-5 -"1898",2368,3,1,0,1.60418353,1.60418353,0,,1,-5.3,1,-4 -"1899",2369,3,1,0,2,2,0,12,1,-0.5,-0.6,-3 -"1900",2369,3,2,2,3,1,0,12,1,-0.5,-0.6,-3 -"1901",2369,3,3,3,6,3,0,12,1,-0.5,-0.6,-3 -"1902",2369,3,4,6,6.5,0.5,0,12,1,-0.5,-0.6,-3 -"1903",2369,3,5,6.5,8,1.5,0,12,1,-0.5,-0.6,-3 -"1904",2369,3,6,8,10,2,0,12,1,-0.5,-0.6,-3 -"1905",2370,3,1,0,0.054310782,0.054310782,1,8,1,-4.8,2.1,6 -"1906",2371,3,1,0,0.784862822,0.784862822,1,-14,1,-7.4,,-8 -"1907",2372,3,1,0,0.073204998,0.073204998,1,22,1,0.9,1.2,3 -"1908",2373,3,1,0,2,2,0,9,1,3.4,-0.4,-1 -"1909",2373,3,2,2,3,1,0,9,1,3.4,-0.4,-1 -"1910",2373,3,3,3,6,3,0,9,1,3.4,-0.4,-1 -"1911",2373,3,4,6,6.5,0.5,0,9,1,3.4,-0.4,-1 -"1912",2373,3,5,6.5,8,1.5,0,9,1,3.4,-0.4,-1 -"1913",2373,3,6,8,10,2,0,9,1,3.4,-0.4,-1 -"1914",2374,3,1,0,0.396740031,0.396740031,0,-5,1,1,-0.7,1 -"1915",2375,3,1,0,2,2,0,7,0,5.1,-2.1,-3 -"1916",2375,3,2,2,3,1,0,7,0,5.1,-2.1,-3 -"1917",2375,3,3,3,6,3,0,7,0,5.1,-2.1,-3 -"1918",2375,3,4,6,6.5,0.5,0,7,0,5.1,-2.1,-3 -"1919",2375,3,5,6.5,8,1.5,0,7,0,5.1,-2.1,-3 -"1920",2375,3,6,8,10,2,0,7,0,5.1,-2.1,-3 -"1921",2376,3,1,0,2,2,0,-9,1,1.2,-0.3,-2 -"1922",2376,3,2,2,3,1,0,-9,1,1.2,-0.3,-2 -"1923",2376,3,3,3,6,3,0,-9,1,1.2,-0.3,-2 -"1924",2376,3,4,6,6.258811184,0.258811184,1,-9,1,1.2,-0.3,-2 -"1925",2377,3,1,0,0.021658736,0.021658736,1,7,0,7.9,0.1,7 -"1926",2378,3,1,0,1.213133691,1.213133691,0,-1,0,-3.4,-0.6,5 -"1927",2379,3,1,0,0.636187755,0.636187755,1,16,1,6.5,-0.7,-9 -"1928",2380,3,1,0,2,2,0,-12,0,-2.2,-0.9,-8 -"1929",2380,3,2,2,3,1,0,-12,0,-2.2,-0.9,-8 -"1930",2380,3,3,3,5.207838948,2.207838948,0,-12,0,-2.2,-0.9,-8 -"1931",2381,3,1,0,2,2,0,-21,1,-0.2,1.3,4 -"1932",2381,3,2,2,3,1,0,-21,1,-0.2,1.3,4 -"1933",2381,3,3,3,6,3,0,-21,1,-0.2,1.3,4 -"1934",2381,3,4,6,6.5,0.5,0,-21,1,-0.2,1.3,4 -"1935",2381,3,5,6.5,6.5417796,0.0417796,0,-21,1,-0.2,1.3,4 -"1936",2382,3,1,0,0.467109162,0.467109162,1,7,0,-6.3,-1.4,-8 -"1937",2383,3,1,0,0.659515485,0.659515485,1,31,1,-2.2,1,-2 -"1938",2384,3,1,0,0.01597089,0.01597089,1,-1,1,-2.4,2,0 -"1939",2385,3,1,0,2,2,0,0,0,3.4,0.9,2 -"1940",2385,3,2,2,2.593545024,0.593545024,1,0,0,3.4,0.9,2 -"1941",2386,3,1,0,2,2,0,-19,0,-3.9,-0.5,-3 -"1942",2386,3,2,2,3,1,0,-19,0,-3.9,-0.5,-3 -"1943",2386,3,3,3,6,3,0,-19,0,-3.9,-0.5,-3 -"1944",2386,3,4,6,6.5,0.5,0,-19,0,-3.9,-0.5,-3 -"1945",2386,3,5,6.5,8,1.5,0,-19,0,-3.9,-0.5,-3 -"1946",2386,3,6,8,9.456345648,1.456345648,0,-19,0,-3.9,-0.5,-3 -"1947",2387,3,1,0,0.683984532,0.683984532,1,-27,1,-3,0.5,14 -"1948",2388,3,1,0,2,2,0,-35,1,3.6,-1,6 -"1949",2388,3,2,2,3,1,0,-35,1,3.6,-1,6 -"1950",2388,3,3,3,6,3,0,-35,1,3.6,-1,6 -"1951",2388,3,4,6,6.5,0.5,0,-35,1,3.6,-1,6 -"1952",2388,3,5,6.5,8,1.5,0,-35,1,3.6,-1,6 -"1953",2388,3,6,8,10,2,0,-35,1,3.6,-1,6 -"1954",2389,3,1,0,0.144424334,0.144424334,1,15,0,4.8,0.4,6 -"1955",2390,3,1,0,0.552764878,0.552764878,1,-17,0,1.1,-0.3,-1 -"1956",2391,3,1,0,2,2,0,12,0,-1.1,-1.5,-3 -"1957",2391,3,2,2,3,1,0,12,0,-1.1,-1.5,-3 -"1958",2391,3,3,3,6,3,0,12,0,-1.1,-1.5,-3 -"1959",2391,3,4,6,6.253721994,0.253721994,0,12,0,-1.1,-1.5,-3 -"1960",2392,3,1,0,0.249737189,0.249737189,1,-19,1,0,-1.1,3 -"1961",2393,3,1,0,0.030391825,0.030391825,1,8,1,-1,0.2,2 -"1962",2394,3,1,0,0.815796397,0.815796397,0,-5,1,-3.1,-1.3,-4 -"1963",2395,3,1,0,0.422218501,0.422218501,1,4,0,-0.9,-0.2,10 -"1964",2396,3,1,0,2,2,0,-10,0,0.6,0.4,-3 -"1965",2396,3,2,2,3,1,0,-10,0,0.6,0.4,-3 -"1966",2396,3,3,3,5.715120302,2.715120302,0,-10,0,0.6,0.4,-3 -"1967",2397,3,1,0,0.032132664,0.032132664,1,17,0,6.1,0.3,-3 -"1968",2398,3,1,,,,,-23,1,1.8,-0.1,-1 -"1969",2398,3,2,,,,,-23,1,1.8,-0.1,-1 -"1970",2398,3,3,,,,,-23,1,1.8,-0.1,-1 -"1971",2398,3,4,,,,,-23,1,1.8,-0.1,-1 -"1972",2398,3,5,,,,,-23,1,1.8,-0.1,-1 -"1973",2399,3,1,0,0.643165338,0.643165338,1,5,1,1.2,0.7,2 -"1974",2400,3,1,0,2,2,0,-6,1,1.4,-1.8,4 -"1975",2400,3,2,2,3,1,0,-6,1,1.4,-1.8,4 -"1976",2400,3,3,3,6,3,0,-6,1,1.4,-1.8,4 -"1977",2400,3,4,6,6.203415151,0.203415151,1,-6,1,1.4,-1.8,4 -"1978",2401,3,1,0,1.072237797,1.072237797,1,10,1,6.8,0.3,2 -"1979",2402,3,1,0,2,2,0,-11,1,3.4,0.8,3 -"1980",2402,3,2,2,2.818532955,0.818532955,1,-11,1,3.4,0.8,3 -"1981",2403,3,1,0,1.049989015,1.049989015,1,7,1,8.4,0.1,10 -"1982",2404,3,1,0,1.506047502,1.506047502,1,-8,0,-2.1,-1.3,2 -"1983",2405,3,1,0,0.808264947,0.808264947,0,7,1,3.2,-1.6,4 -"1984",2406,3,1,0,2,2,0,-14,1,1.1,-0.6,2 -"1985",2406,3,2,2,3,1,0,-14,1,1.1,-0.6,2 -"1986",2406,3,3,3,6,3,0,-14,1,1.1,-0.6,2 -"1987",2406,3,4,6,6.5,0.5,0,-14,1,1.1,-0.6,2 -"1988",2406,3,5,6.5,8,1.5,0,-14,1,1.1,-0.6,2 -"1989",2406,3,6,8,10,2,0,-14,1,1.1,-0.6,2 -"1990",2407,3,1,0,0.667625278,0.667625278,1,9,0,2.8,0.6,-7 -"1991",2408,3,1,0,0.3085855,0.3085855,1,-24,1,-2.9,-1.2,-2 -"1992",2409,3,1,0,0.123327387,0.123327387,0,27,1,5.4,0.1,1 -"1993",2410,3,1,0,0.692664828,0.692664828,0,9,0,-2.7,0.5,4 -"1994",2411,3,1,0,2,2,0,0,1,-3.5,-0.1,1 -"1995",2411,3,2,2,2.920624433,0.920624433,0,0,1,-3.5,-0.1,1 -"1996",2412,3,1,0,0.072892279,0.072892279,1,18,0,3.1,1,13 -"1997",2413,3,1,0,2,2,0,-2,1,6.2,1.3,-1 -"1998",2413,3,2,2,3,1,0,-2,1,6.2,1.3,-1 -"1999",2413,3,3,3,6,3,0,-2,1,6.2,1.3,-1 -"2000",2413,3,4,6,6.5,0.5,0,-2,1,6.2,1.3,-1 -"2001",2413,3,5,6.5,6.991283999,0.491283999,1,-2,1,6.2,1.3,-1 -"2002",2414,3,1,0,2,2,0,5,1,3,0.2,1 -"2003",2414,3,2,2,3,1,0,5,1,3,0.2,1 -"2004",2414,3,3,3,6,3,0,5,1,3,0.2,1 -"2005",2414,3,4,6,6.078804617,0.078804617,1,5,1,3,0.2,1 -"2006",2415,3,1,0,2,2,0,2,1,-5.9,-0.2,-3 -"2007",2415,3,2,2,3,1,0,2,1,-5.9,-0.2,-3 -"2008",2415,3,3,3,6,3,0,2,1,-5.9,-0.2,-3 -"2009",2415,3,4,6,6.5,0.5,0,2,1,-5.9,-0.2,-3 -"2010",2415,3,5,6.5,8,1.5,0,2,1,-5.9,-0.2,-3 -"2011",2415,3,6,8,10,2,0,2,1,-5.9,-0.2,-3 -"2012",2416,3,1,0,1.996078401,1.996078401,0,3,1,0.1,-0.5,-2 -"2013",2417,3,1,0,2,2,0,25,1,-7.1,-1.6,-4 -"2014",2417,3,2,2,3,1,0,25,1,-7.1,-1.6,-4 -"2015",2417,3,3,3,3.912253984,0.912253984,0,25,1,-7.1,-1.6,-4 -"2016",2418,3,1,0,2,2,0,-16,1,-6,-0.9,-2 -"2017",2418,3,2,2,2.377317001,0.377317001,1,-16,1,-6,-0.9,-2 -"2018",2419,3,1,0,0.037811259,0.037811259,0,-6,1,0.6,0.8,-5 -"2019",2420,3,1,0,2,2,0,15,0,-5.6,1.7,-6 -"2020",2420,3,2,2,2.398593281,0.398593281,1,15,0,-5.6,1.7,-6 -"2021",2421,3,1,0,2,2,0,-5,1,1.8,0.1,3 -"2022",2421,3,2,2,3,1,0,-5,1,1.8,0.1,3 -"2023",2421,3,3,3,6,3,0,-5,1,1.8,0.1,3 -"2024",2421,3,4,6,6.5,0.5,0,-5,1,1.8,0.1,3 -"2025",2421,3,5,6.5,7.962880751,1.462880751,0,-5,1,1.8,0.1,3 -"2026",2422,3,1,0,0.262030036,0.262030036,1,-4,0,-2.7,-1.2,3 -"2027",2423,3,1,0,0.039511241,0.039511241,1,,0,-0.3,0.1,-2 -"2028",2424,3,1,0,2,2,0,-27,0,1.8,0.8,1 -"2029",2424,3,2,2,3,1,0,-27,0,1.8,0.8,1 -"2030",2424,3,3,3,4.500658112,1.500658112,0,-27,0,1.8,0.8,1 -"2031",2425,3,1,0,2,2,0,7,1,-1.1,-0.9,1 -"2032",2425,3,2,2,3,1,0,7,1,-1.1,-0.9,1 -"2033",2425,3,3,3,4.332572785,1.332572785,0,7,1,-1.1,-0.9,1 -"2034",2426,3,1,0,1.340079949,1.340079949,1,4,0,-1.4,-0.7,7 -"2035",2427,3,1,0,2,2,0,-1,0,-4.7,-2.3,-1 -"2036",2427,3,2,2,2.554416843,0.554416843,1,-1,0,-4.7,-2.3,-1 -"2037",2428,3,1,,,,,-20,1,3.1,0.9,-2 -"2038",2428,3,2,,,,,-20,1,3.1,0.9,-2 -"2039",2428,3,3,,,,,-20,1,3.1,0.9,-2 -"2040",2428,3,4,,,,,-20,1,3.1,0.9,-2 -"2041",2428,3,5,,,,,-20,1,3.1,0.9,-2 -"2042",2428,3,6,,,,,-20,1,3.1,0.9,-2 -"2043",2429,3,1,0,2,2,0,-14,1,7,-0.1,-1 -"2044",2429,3,2,2,3,1,0,-14,1,7,-0.1,-1 -"2045",2429,3,3,3,6,3,0,-14,1,7,-0.1,-1 -"2046",2429,3,4,6,6.5,0.5,0,-14,1,7,-0.1,-1 -"2047",2429,3,5,6.5,8,1.5,0,-14,1,7,-0.1,-1 -"2048",2429,3,6,8,8.329767813,0.329767813,1,-14,1,7,-0.1,-1 -"2049",2430,3,1,0,2,2,0,-26,0,0.1,-0.4,6 -"2050",2430,3,2,2,3,1,0,-26,0,0.1,-0.4,6 -"2051",2430,3,3,3,6,3,0,-26,0,0.1,-0.4,6 -"2052",2430,3,4,6,6.5,0.5,0,-26,0,0.1,-0.4,6 -"2053",2430,3,5,6.5,8,1.5,0,-26,0,0.1,-0.4,6 -"2054",2430,3,6,8,8.415912489,0.415912489,0,-26,0,0.1,-0.4,6 -"2055",2431,3,1,0,2,2,0,-25,1,-4.4,0.4,-2 -"2056",2431,3,2,2,3,1,0,-25,1,-4.4,0.4,-2 -"2057",2431,3,3,3,6,3,0,-25,1,-4.4,0.4,-2 -"2058",2431,3,4,6,6.5,0.5,0,-25,1,-4.4,0.4,-2 -"2059",2431,3,5,6.5,8,1.5,0,-25,1,-4.4,0.4,-2 -"2060",2431,3,6,8,10,2,0,-25,1,-4.4,0.4,-2 -"2061",2432,3,1,0,1.135634228,1.135634228,1,31,1,-1.2,-0.8,0 -"2062",2433,3,1,0,0.91432842,0.91432842,1,0,0,4.1,1.2,4 -"2063",2434,3,1,0,1.772328557,1.772328557,0,-1,1,-2.1,-0.6,-1 -"2064",2435,3,1,0,2,2,0,-10,1,-7.2,0,1 -"2065",2435,3,2,2,2.027137928,0.027137928,0,-10,1,-7.2,0,1 -"2066",2436,3,1,0,0.58612117,0.58612117,0,0,0,-1.6,0,2 -"2067",2437,3,1,0,2,2,0,-6,1,-4.2,1.2,-1 -"2068",2437,3,2,2,2.422421175,0.422421175,0,-6,1,-4.2,1.2,-1 -"2069",2438,3,1,0,0.592192167,0.592192167,1,10,1,5.1,0.3,2 -"2070",2439,3,1,0,2,2,0,13,1,0,0.1,3 -"2071",2439,3,2,2,3,1,0,13,1,0,0.1,3 -"2072",2439,3,3,3,5.240672178,2.240672178,1,13,1,0,0.1,3 -"2073",2440,3,1,0,0.795269987,0.795269987,0,10,1,4.9,0,2 -"2074",2441,3,1,0,0.433887688,0.433887688,1,28,1,-3.1,1.3,-3 -"2075",2442,3,1,0,1.49684126,1.49684126,1,-5,0,1.9,-0.6,-2 -"2076",2443,3,1,,,,,10,0,0.8,-0.8,1 -"2077",2443,3,2,,,,,10,0,0.8,-0.8,1 -"2078",2443,3,3,,,,,10,0,0.8,-0.8,1 -"2079",2443,3,4,,,,,10,0,0.8,-0.8,1 -"2080",2443,3,5,,,,,10,0,0.8,-0.8,1 -"2081",2444,3,1,0,0.242103885,0.242103885,1,9,1,3.2,1.5,1 -"2082",2445,3,1,0,2,2,0,-11,1,-5.1,-0.5,1 -"2083",2445,3,2,2,3,1,0,-11,1,-5.1,-0.5,1 -"2084",2445,3,3,3,6,3,0,-11,1,-5.1,-0.5,1 -"2085",2445,3,4,6,6.5,0.5,0,-11,1,-5.1,-0.5,1 -"2086",2445,3,5,6.5,8,1.5,0,-11,1,-5.1,-0.5,1 -"2087",2445,3,6,8,9.393074646,1.393074646,0,-11,1,-5.1,-0.5,1 -"2088",2446,3,1,0,2,2,0,1,0,-3.2,0,-1 -"2089",2446,3,2,2,3,1,0,1,0,-3.2,0,-1 -"2090",2446,3,3,3,6,3,0,1,0,-3.2,0,-1 -"2091",2446,3,4,6,6.5,0.5,0,1,0,-3.2,0,-1 -"2092",2446,3,5,6.5,6.950727676,0.450727676,0,1,0,-3.2,0,-1 -"2093",2447,3,1,0,2,2,0,8,1,1.4,-0.3,-2 -"2094",2447,3,2,2,3,1,0,8,1,1.4,-0.3,-2 -"2095",2447,3,3,3,5.636930628,2.636930628,0,8,1,1.4,-0.3,-2 -"2096",2448,3,1,0,1.072452991,1.072452991,1,24,1,-2.1,0.7,10 -"2097",2449,3,1,0,2,2,0,-12,1,-6.2,0,-4 -"2098",2449,3,2,2,3,1,0,-12,1,-6.2,0,-4 -"2099",2449,3,3,3,6,3,0,-12,1,-6.2,0,-4 -"2100",2449,3,4,6,6.5,0.5,0,-12,1,-6.2,0,-4 -"2101",2449,3,5,6.5,8,1.5,0,-12,1,-6.2,0,-4 -"2102",2449,3,6,8,10,2,0,-12,1,-6.2,0,-4 -"2103",2450,3,1,0,0.020379815,0.020379815,1,14,1,-3.7,-0.5,3 -"2104",2451,3,1,0,2,2,0,-8,1,-0.3,-0.7,-1 -"2105",2451,3,2,2,3,1,0,-8,1,-0.3,-0.7,-1 -"2106",2451,3,3,3,6,3,0,-8,1,-0.3,-0.7,-1 -"2107",2451,3,4,6,6.133601018,0.133601018,0,-8,1,-0.3,-0.7,-1 -"2108",2452,3,1,0,2,2,0,1,1,-0.8,0.4,-9 -"2109",2452,3,2,2,3,1,0,1,1,-0.8,0.4,-9 -"2110",2452,3,3,3,5.385860399,2.385860399,0,1,1,-0.8,0.4,-9 -"2111",2453,3,1,0,0.195126989,0.195126989,0,-28,0,-1.5,-1.3,0 -"2112",2454,3,1,0,2,2,0,-19,1,-1.2,0.1,-6 -"2113",2454,3,2,2,3,1,0,-19,1,-1.2,0.1,-6 -"2114",2454,3,3,3,6,3,0,-19,1,-1.2,0.1,-6 -"2115",2454,3,4,6,6.5,0.5,0,-19,1,-1.2,0.1,-6 -"2116",2454,3,5,6.5,8,1.5,0,-19,1,-1.2,0.1,-6 -"2117",2454,3,6,8,10,2,0,-19,1,-1.2,0.1,-6 -"2118",2455,3,1,0,0.607512469,0.607512469,1,-38,0,6,0.5,-5 -"2119",2456,3,1,0,2,2,0,-3,0,3.4,-0.2,3 -"2120",2456,3,2,2,2.925453973,0.925453973,0,-3,0,3.4,-0.2,3 -"2121",2457,3,1,0,2,2,0,-3,1,-6,0.7,-8 -"2122",2457,3,2,2,2.244197276,0.244197276,0,-3,1,-6,0.7,-8 -"2123",2458,3,1,0,0.083972599,0.083972599,1,3,1,6.3,-1.2,7 -"2124",2459,3,1,0,2,2,0,-3,1,-1.7,0.2,3 -"2125",2459,3,2,2,3,1,0,-3,1,-1.7,0.2,3 -"2126",2459,3,3,3,6,3,0,-3,1,-1.7,0.2,3 -"2127",2459,3,4,6,6.5,0.5,0,-3,1,-1.7,0.2,3 -"2128",2459,3,5,6.5,6.704931454,0.204931454,0,-3,1,-1.7,0.2,3 -"2129",2460,3,1,0,0.511146454,0.511146454,0,11,1,-7.2,-0.7,2 -"2130",2461,3,1,0,0.788488571,0.788488571,0,5,0,2.8,-1.1,-6 -"2131",2462,3,1,0,2,2,0,5,1,5.4,-0.6,7 -"2132",2462,3,2,2,2.589638133,0.589638133,0,5,1,5.4,-0.6,7 -"2133",2463,3,1,0,0.531862064,0.531862064,1,7,1,1.7,-0.4,-1 -"2134",2464,3,1,0,0.354853313,0.354853313,0,-10,0,3.9,0.7,0 -"2135",2465,3,1,0,2,2,0,-1,1,2.9,1.2,0 -"2136",2465,3,2,2,3,1,0,-1,1,2.9,1.2,0 -"2137",2465,3,3,3,6,3,0,-1,1,2.9,1.2,0 -"2138",2465,3,4,6,6.5,0.5,0,-1,1,2.9,1.2,0 -"2139",2465,3,5,6.5,8,1.5,0,-1,1,2.9,1.2,0 -"2140",2465,3,6,8,9.196406668,1.196406668,1,-1,1,2.9,1.2,0 -"2141",2466,3,1,0,1.864882651,1.864882651,1,12,0,1.9,0,-2 -"2142",2467,3,1,0,2,2,0,-25,0,-4.8,-1,-10 -"2143",2467,3,2,2,3,1,0,-25,0,-4.8,-1,-10 -"2144",2467,3,3,3,3.861130223,0.861130223,0,-25,0,-4.8,-1,-10 -"2145",2468,3,1,0,2,2,0,11,1,3.5,0,-8 -"2146",2468,3,2,2,3,1,0,11,1,3.5,0,-8 -"2147",2468,3,3,3,6,3,0,11,1,3.5,0,-8 -"2148",2468,3,4,6,6.5,0.5,0,11,1,3.5,0,-8 -"2149",2468,3,5,6.5,8,1.5,0,11,1,3.5,0,-8 -"2150",2468,3,6,8,10,2,0,11,1,3.5,0,-8 -"2151",2469,3,1,0,1.548013026,1.548013026,0,-17,1,-5.3,-0.6,-4 -"2152",2470,3,1,0,1.137609734,1.137609734,0,-8,1,-4.8,-0.2,-6 -"2153",2471,3,1,0,0.933496521,0.933496521,0,-20,0,-1.2,0.3,-11 -"2154",2472,3,1,0,1.566298664,1.566298664,1,-2,1,3.5,-0.5,8 -"2155",2473,3,1,0,2,2,0,0,1,,0.4,-6 -"2156",2473,3,2,2,3,1,0,0,1,,0.4,-6 -"2157",2473,3,3,3,6,3,0,0,1,,0.4,-6 -"2158",2473,3,4,6,6.5,0.5,0,0,1,,0.4,-6 -"2159",2473,3,5,6.5,8,1.5,0,0,1,,0.4,-6 -"2160",2473,3,6,8,10,2,0,0,1,,0.4,-6 -"2161",2474,3,1,0,2,2,0,-12,0,-3,0.6,1 -"2162",2474,3,2,2,3,1,0,-12,0,-3,0.6,1 -"2163",2474,3,3,3,3.699545731,0.699545731,0,-12,0,-3,0.6,1 -"2164",2475,3,1,0,1.002416101,1.002416101,0,-15,0,-8.5,-1.8,-1 -"2165",2476,3,1,0,1.461775447,1.461775447,0,-20,1,-1.8,1.2,-4 -"2166",2477,3,1,0,1.66892568,1.66892568,0,-43,1,-0.6,,-1 -"2167",2478,3,1,0,0.912734229,0.912734229,1,15,1,-3.9,-0.2,4 -"2168",2479,3,1,0,0.583910403,0.583910403,1,9,1,-1.7,0.3,-2 -"2169",2480,3,1,0,2,2,0,-16,1,-1.4,0,-1 -"2170",2480,3,2,2,3,1,0,-16,1,-1.4,0,-1 -"2171",2480,3,3,3,6,3,0,-16,1,-1.4,0,-1 -"2172",2480,3,4,6,6.5,0.5,0,-16,1,-1.4,0,-1 -"2173",2480,3,5,6.5,7.853702347,1.353702347,1,-16,1,-1.4,0,-1 -"2174",2481,3,1,0,2,2,0,-14,1,1,0.6,-1 -"2175",2481,3,2,2,3,1,0,-14,1,1,0.6,-1 -"2176",2481,3,3,3,6,3,0,-14,1,1,0.6,-1 -"2177",2481,3,4,6,6.5,0.5,0,-14,1,1,0.6,-1 -"2178",2481,3,5,6.5,7.435254647,0.935254647,0,-14,1,1,0.6,-1 -"2179",2482,3,1,0,0.969340336,0.969340336,1,15,1,-5.7,2,-8 -"2180",2483,3,1,0,2,2,0,14,1,2.9,-0.2,3 -"2181",2483,3,2,2,2.367650451,0.367650451,0,14,1,2.9,-0.2,3 -"2182",2484,3,1,0,1.987732197,1.987732197,0,0,1,-1.5,0.9,1 -"2183",2485,3,1,0,2,2,0,-5,1,2.3,0.7,-5 -"2184",2485,3,2,2,2.164242473,0.164242473,1,-5,1,2.3,0.7,-5 -"2185",2486,3,1,0,0.990497196,0.990497196,0,-27,1,2.7,1.8,6 -"2186",2487,3,1,0,2,2,0,-3,1,-0.5,0,-6 -"2187",2487,3,2,2,3,1,0,-3,1,-0.5,0,-6 -"2188",2487,3,3,3,4.074439857,1.074439857,1,-3,1,-0.5,0,-6 -"2189",2488,3,1,0,0.616912785,0.616912785,1,-6,1,2.7,1,-1 -"2190",2489,3,1,0,1.717689851,1.717689851,1,12,0,-7.1,0.3,-8 -"2191",2490,3,1,0,0.724862386,0.724862386,1,18,1,-1.7,0.1,-6 -"2192",2491,3,1,0,1.979015039,1.979015039,1,6,1,-8.9,-1.3,-2 -"2193",2492,3,1,0,2,2,0,6,1,-7,-0.5,1 -"2194",2492,3,2,2,3,1,0,6,1,-7,-0.5,1 -"2195",2492,3,3,3,6,3,0,6,1,-7,-0.5,1 -"2196",2492,3,4,6,6.06761728,0.06761728,0,6,1,-7,-0.5,1 -"2197",2493,3,1,0,0.328182247,0.328182247,1,19,0,-2.9,1.2,3 -"2198",2494,3,1,0,1.773267633,1.773267633,1,-7,0,5.3,-0.7,4 -"2199",2495,3,1,0,0.806983396,0.806983396,0,3,1,-2.6,-0.5,-3 -"2200",2496,3,1,0,0.147730792,0.147730792,1,2,0,-0.8,-1.3,-5 -"2201",2497,3,1,0,1.880686452,1.880686452,1,-13,1,5.9,0.8,-2 -"2202",2498,3,1,0,1.669553025,1.669553025,0,6,1,13.6,-0.2,-8 -"2203",2499,3,1,0,2,2,0,-15,0,2.2,1.3,1 -"2204",2499,3,2,2,2.884544897,0.884544897,1,-15,0,2.2,1.3,1 -"2205",2500,3,1,0,2,2,0,7,1,-0.5,0.8,-12 -"2206",2500,3,2,2,3,1,0,7,1,-0.5,0.8,-12 -"2207",2500,3,3,3,6,3,0,7,1,-0.5,0.8,-12 -"2208",2500,3,4,6,6.5,0.5,0,7,1,-0.5,0.8,-12 -"2209",2500,3,5,6.5,7.187921569,0.687921569,0,7,1,-0.5,0.8,-12 -"2210",2501,3,1,0,1.87003801,1.87003801,1,3,1,-3.3,0.7,-5 -"2211",2502,3,1,0,0.799118701,0.799118701,0,3,1,-7.9,1,-4 -"2212",2503,3,1,0,0.690793455,0.690793455,0,-5,0,1.7,-1,-3 -"2213",2504,3,1,0,2,2,0,-9,0,4.6,0.6,-4 -"2214",2504,3,2,2,3,1,0,-9,0,4.6,0.6,-4 -"2215",2504,3,3,3,6,3,0,-9,0,4.6,0.6,-4 -"2216",2504,3,4,6,6.5,0.5,0,-9,0,4.6,0.6,-4 -"2217",2504,3,5,6.5,7.673039962,1.173039962,1,-9,0,4.6,0.6,-4 -"2218",2505,3,1,0,2,2,0,-25,1,2.1,-2.1,-3 -"2219",2505,3,2,2,3,1,0,-25,1,2.1,-2.1,-3 -"2220",2505,3,3,3,6,3,0,-25,1,2.1,-2.1,-3 -"2221",2505,3,4,6,6.5,0.5,0,-25,1,2.1,-2.1,-3 -"2222",2505,3,5,6.5,8,1.5,0,-25,1,2.1,-2.1,-3 -"2223",2505,3,6,8,9.219003757,1.219003757,0,-25,1,2.1,-2.1,-3 -"2224",2506,3,1,0,2,2,0,7,0,4.4,-0.8,4 -"2225",2506,3,2,2,3,1,0,7,0,4.4,-0.8,4 -"2226",2506,3,3,3,6,3,0,7,0,4.4,-0.8,4 -"2227",2506,3,4,6,6.5,0.5,0,7,0,4.4,-0.8,4 -"2228",2506,3,5,6.5,8,1.5,0,7,0,4.4,-0.8,4 -"2229",2506,3,6,8,10,2,0,7,0,4.4,-0.8,4 -"2230",2507,3,1,0,2,2,0,-16,0,5.7,0.5,-1 -"2231",2507,3,2,2,3,1,0,-16,0,5.7,0.5,-1 -"2232",2507,3,3,3,6,3,0,-16,0,5.7,0.5,-1 -"2233",2507,3,4,6,6.5,0.5,0,-16,0,5.7,0.5,-1 -"2234",2507,3,5,6.5,8,1.5,0,-16,0,5.7,0.5,-1 -"2235",2507,3,6,8,10,2,0,-16,0,5.7,0.5,-1 -"2236",2508,3,1,0,1.720170618,1.720170618,1,3,1,5.7,0.6,4 -"2237",2509,3,1,0,1.961836546,1.961836546,0,-9,1,-5.9,-0.7,-8 -"2238",2510,3,1,0,0.072366597,0.072366597,1,14,0,9.2,0.1,7 -"2239",2511,3,1,0,1.78470131,1.78470131,0,23,0,-3.9,-0.9,-3 -"2240",2512,3,1,0,2,2,0,0,1,5.5,0.5,-7 -"2241",2512,3,2,2,3,1,0,0,1,5.5,0.5,-7 -"2242",2512,3,3,3,6,3,0,0,1,5.5,0.5,-7 -"2243",2512,3,4,6,6.5,0.5,0,0,1,5.5,0.5,-7 -"2244",2512,3,5,6.5,8,1.5,0,0,1,5.5,0.5,-7 -"2245",2512,3,6,8,8.572038357,0.572038357,1,0,1,5.5,0.5,-7 -"2246",2513,3,1,0,0.904804372,0.904804372,1,24,0,1.4,-0.7,4 -"2247",2514,3,1,0,0.088442892,0.088442892,0,-18,0,-13.7,0,-8 -"2248",2515,3,1,0,1.351151925,1.351151925,1,16,1,3.9,-0.6,-3 -"2249",2516,3,1,0,1.186953813,1.186953813,1,7,1,-1.1,-0.4,7 -"2250",2517,3,1,0,1.76028848,1.76028848,1,-8,1,2.4,0.2,1 -"2251",2518,3,1,0,2,2,0,-24,1,-7.6,0,-8 -"2252",2518,3,2,2,3,1,0,-24,1,-7.6,0,-8 -"2253",2518,3,3,3,6,3,0,-24,1,-7.6,0,-8 -"2254",2518,3,4,6,6.5,0.5,0,-24,1,-7.6,0,-8 -"2255",2518,3,5,6.5,8,1.5,0,-24,1,-7.6,0,-8 -"2256",2518,3,6,8,10,2,0,-24,1,-7.6,0,-8 -"2257",2519,3,1,0,0.082253632,0.082253632,1,0,1,-3.7,0.7,-8 -"2258",2520,3,1,0,1.880354983,1.880354983,1,24,1,-2.1,-0.3,0 -"2259",2521,3,1,0,1.651539502,1.651539502,0,-13,1,0,0.8,4 -"2260",2522,3,1,0,1.312975075,1.312975075,0,1,1,0.4,-2.9,3 -"2261",2523,3,1,0,1.415292145,1.415292145,1,-6,1,-1.8,-0.9,-1 -"2262",2524,3,1,0,0.603647697,0.603647697,1,6,0,8.2,0.4,-7 -"2263",2525,3,1,0,0.784661456,0.784661456,1,28,1,-1.7,0.3,10 -"2264",2526,3,1,0,2,2,0,-7,0,-7.8,1.9,-6 -"2265",2526,3,2,2,2.614317467,0.614317467,1,-7,0,-7.8,1.9,-6 -"2266",2527,3,1,0,2,2,0,-22,1,2.3,-2.4,-9 -"2267",2527,3,2,2,3,1,0,-22,1,2.3,-2.4,-9 -"2268",2527,3,3,3,6,3,0,-22,1,2.3,-2.4,-9 -"2269",2527,3,4,6,6.441087074,0.441087074,0,-22,1,2.3,-2.4,-9 -"2270",2528,3,1,0,2,2,0,24,1,-1.4,-0.5,-6 -"2271",2528,3,2,2,3,1,0,24,1,-1.4,-0.5,-6 -"2272",2528,3,3,3,6,3,0,24,1,-1.4,-0.5,-6 -"2273",2528,3,4,6,6.5,0.5,0,24,1,-1.4,-0.5,-6 -"2274",2528,3,5,6.5,8,1.5,0,24,1,-1.4,-0.5,-6 -"2275",2528,3,6,8,8.103752426,0.103752426,1,24,1,-1.4,-0.5,-6 -"2276",2529,3,1,0,2,2,0,2,0,-0.4,0.2,0 -"2277",2529,3,2,2,2.100270923,0.100270923,1,2,0,-0.4,0.2,0 -"2278",2530,3,1,0,2,2,0,-16,0,-0.8,-1.5,-1 -"2279",2530,3,2,2,3,1,0,-16,0,-0.8,-1.5,-1 -"2280",2530,3,3,3,3.161310179,0.161310179,0,-16,0,-0.8,-1.5,-1 -"2281",2531,3,1,0,0.492673525,0.492673525,1,2,0,4.2,-0.1,6 -"2282",2532,3,1,0,0.121606861,0.121606861,1,,0,5.6,0.9,-3 -"2283",2533,3,1,0,2,2,0,-9,0,-4.1,0,-8 -"2284",2533,3,2,2,3,1,0,-9,0,-4.1,0,-8 -"2285",2533,3,3,3,6,3,0,-9,0,-4.1,0,-8 -"2286",2533,3,4,6,6.5,0.5,0,-9,0,-4.1,0,-8 -"2287",2533,3,5,6.5,8,1.5,0,-9,0,-4.1,0,-8 -"2288",2533,3,6,8,10,2,0,-9,0,-4.1,0,-8 -"2289",2534,3,1,0,0.508680549,0.508680549,1,9,1,9,-0.6,8 -"2290",2535,3,1,0,1.44470267,1.44470267,1,26,1,1.6,-0.1,2 -"2291",2536,3,1,0,2,2,0,8,1,2.7,0.7,2 -"2292",2536,3,2,2,3,1,0,8,1,2.7,0.7,2 -"2293",2536,3,3,3,4.477780571,1.477780571,0,8,1,2.7,0.7,2 -"2294",2537,3,1,0,2,2,0,-10,1,0.9,-1.4,-6 -"2295",2537,3,2,2,3,1,0,-10,1,0.9,-1.4,-6 -"2296",2537,3,3,3,6,3,0,-10,1,0.9,-1.4,-6 -"2297",2537,3,4,6,6.5,0.5,0,-10,1,0.9,-1.4,-6 -"2298",2537,3,5,6.5,8,1.5,0,-10,1,0.9,-1.4,-6 -"2299",2537,3,6,8,10,2,0,-10,1,0.9,-1.4,-6 -"2300",2538,3,1,0,1.91406358,1.91406358,1,-9,0,3.4,-0.4,-6 -"2301",2539,3,1,0,0.73858701,0.73858701,1,10,1,,1.8,7 -"2302",2540,3,1,0,1.730009548,1.730009548,1,-16,0,-0.9,0.1,-1 -"2303",2541,3,1,0,0.549022635,0.549022635,1,-8,0,6.3,1.3,5 -"2304",2542,3,1,0,2,2,0,-1,1,2.8,0.6,0 -"2305",2542,3,2,2,3,1,0,-1,1,2.8,0.6,0 -"2306",2542,3,3,3,4.26767677,1.26767677,0,-1,1,2.8,0.6,0 -"2307",2543,3,1,0,2,2,0,2,1,8.2,0.2,2 -"2308",2543,3,2,2,2.340262149,0.340262149,0,2,1,8.2,0.2,2 -"2309",2544,3,1,0,0.356837064,0.356837064,1,9,0,-1.6,-0.8,-3 -"2310",2545,3,1,0,1.086142011,1.086142011,1,-14,0,-1.9,0.7,0 -"2311",2546,3,1,0,0.267809235,0.267809235,1,10,1,-5.4,-0.5,0 -"2312",2547,3,1,0,2,2,0,14,0,1.3,1.1,-5 -"2313",2547,3,2,2,3,1,0,14,0,1.3,1.1,-5 -"2314",2547,3,3,3,6,3,0,14,0,1.3,1.1,-5 -"2315",2547,3,4,6,6.150162967,0.150162967,1,14,0,1.3,1.1,-5 -"2316",2548,3,1,0,0.42176241,0.42176241,1,11,0,-2.9,-0.5,-2 -"2317",2549,3,1,0,2,2,0,-8,0,-0.6,-0.3,1 -"2318",2549,3,2,2,3,1,0,-8,0,-0.6,-0.3,1 -"2319",2549,3,3,3,6,3,0,-8,0,-0.6,-0.3,1 -"2320",2549,3,4,6,6.5,0.5,0,-8,0,-0.6,-0.3,1 -"2321",2549,3,5,6.5,8,1.5,0,-8,0,-0.6,-0.3,1 -"2322",2549,3,6,8,8.59839453,0.59839453,1,-8,0,-0.6,-0.3,1 -"2323",2550,3,1,0,2,2,0,13,0,5.9,-2,1 -"2324",2550,3,2,2,3,1,0,13,0,5.9,-2,1 -"2325",2550,3,3,3,6,3,0,13,0,5.9,-2,1 -"2326",2550,3,4,6,6.5,0.5,0,13,0,5.9,-2,1 -"2327",2550,3,5,6.5,7.719173053,1.219173053,1,13,0,5.9,-2,1 -"2328",2551,3,1,0,0.504223992,0.504223992,0,6,1,-7.6,0.8,4 -"2329",2552,3,1,0,2,2,0,-5,1,-7.4,2,0 -"2330",2552,3,2,2,3,1,0,-5,1,-7.4,2,0 -"2331",2552,3,3,3,5.871445046,2.871445046,1,-5,1,-7.4,2,0 -"2332",2553,3,1,0,1.074522342,1.074522342,0,-25,0,8.9,0.3,-2 -"2333",2554,3,1,0,2,2,0,-30,0,4.7,1.1,3 -"2334",2554,3,2,2,2.372562898,0.372562898,1,-30,0,4.7,1.1,3 -"2335",2555,3,1,0,0.3523184,0.3523184,1,15,0,8.6,1.7,-1 -"2336",2556,3,1,0,2,2,0,2,1,-5.7,0,-2 -"2337",2556,3,2,2,3,1,0,2,1,-5.7,0,-2 -"2338",2556,3,3,3,6,3,0,2,1,-5.7,0,-2 -"2339",2556,3,4,6,6.5,0.5,0,2,1,-5.7,0,-2 -"2340",2556,3,5,6.5,6.717241297,0.217241297,1,2,1,-5.7,0,-2 -"2341",2557,3,1,0,1.038723245,1.038723245,1,18,1,-7.5,1,-4 -"2342",2558,3,1,0,2,2,0,6,1,-2.6,0.5,-8 -"2343",2558,3,2,2,3,1,0,6,1,-2.6,0.5,-8 -"2344",2558,3,3,3,6,3,0,6,1,-2.6,0.5,-8 -"2345",2558,3,4,6,6.5,0.5,0,6,1,-2.6,0.5,-8 -"2346",2558,3,5,6.5,8,1.5,0,6,1,-2.6,0.5,-8 -"2347",2558,3,6,8,10,2,0,6,1,-2.6,0.5,-8 -"2348",2559,3,1,0,0.553645457,0.553645457,1,18,0,8.9,0.3,-2 -"2349",2560,3,1,0,1.924326339,1.924326339,1,-6,0,-7.6,0.1,1 -"2350",2561,3,1,0,0.960655199,0.960655199,1,-3,0,0,0.5,6 -"2351",2562,3,1,0,1.468713864,1.468713864,0,7,1,-4.2,0.7,5 -"2352",2563,3,1,0,2,2,0,-6,1,0.3,0,-6 -"2353",2563,3,2,2,3,1,0,-6,1,0.3,0,-6 -"2354",2563,3,3,3,6,3,0,-6,1,0.3,0,-6 -"2355",2563,3,4,6,6.5,0.5,0,-6,1,0.3,0,-6 -"2356",2563,3,5,6.5,8,1.5,0,-6,1,0.3,0,-6 -"2357",2563,3,6,8,8.671409054,0.671409054,0,-6,1,0.3,0,-6 -"2358",2564,3,1,0,1.430004803,1.430004803,0,-17,1,-1.5,-1.4,3 -"2359",2565,3,1,0,2,2,0,12,0,-7.6,-1.4,-2 -"2360",2565,3,2,2,3,1,0,12,0,-7.6,-1.4,-2 -"2361",2565,3,3,3,6,3,0,12,0,-7.6,-1.4,-2 -"2362",2565,3,4,6,6.161494461,0.161494461,0,12,0,-7.6,-1.4,-2 -"2363",2566,3,1,0,0.779029101,0.779029101,1,14,1,2.3,1.1,3 -"2364",2567,3,1,0,2,2,0,0,0,-1.6,-1.4,-6 -"2365",2567,3,2,2,3,1,0,0,0,-1.6,-1.4,-6 -"2366",2567,3,3,3,6,3,0,0,0,-1.6,-1.4,-6 -"2367",2567,3,4,6,6.5,0.5,0,0,0,-1.6,-1.4,-6 -"2368",2567,3,5,6.5,8,1.5,0,0,0,-1.6,-1.4,-6 -"2369",2567,3,6,8,10,2,0,0,0,-1.6,-1.4,-6 -"2370",2568,3,1,0,1.974229506,1.974229506,1,8,1,2.9,-0.6,7 -"2371",2569,3,1,0,0.052734881,0.052734881,0,21,0,-2.4,-0.5,0 -"2372",2570,3,1,0,1.578556423,1.578556423,0,-2,1,-1.8,-1.2,-10 -"2373",2571,3,1,0,2,2,0,,1,3.2,-0.3,1 -"2374",2571,3,2,2,2.089833282,0.089833282,0,,1,3.2,-0.3,1 -"2375",2572,3,1,0,1.192875593,1.192875593,0,2,1,6.3,0.2,-8 -"2376",2573,3,1,0,1.691182564,1.691182564,0,12,1,-0.6,-0.7,3 -"2377",2574,3,1,0,2,2,0,-18,1,-3.6,0.3,3 -"2378",2574,3,2,2,3,1,0,-18,1,-3.6,0.3,3 -"2379",2574,3,3,3,3.493796353,0.493796353,0,-18,1,-3.6,0.3,3 -"2380",2575,3,1,0,1.480044856,1.480044856,0,-5,1,3.6,0.3,3 -"2381",2576,3,1,0,2,2,0,0,0,-6.2,0.3,4 -"2382",2576,3,2,2,2.274964845,0.274964845,1,0,0,-6.2,0.3,4 -"2383",2577,3,1,0,1.705753918,1.705753918,1,-4,0,5.5,0.3,4 -"2384",2578,3,1,0,2,2,0,-19,1,1.4,0.6,-6 -"2385",2578,3,2,2,3,1,0,-19,1,1.4,0.6,-6 -"2386",2578,3,3,3,6,3,0,-19,1,1.4,0.6,-6 -"2387",2578,3,4,6,6.5,0.5,0,-19,1,1.4,0.6,-6 -"2388",2578,3,5,6.5,8,1.5,0,-19,1,1.4,0.6,-6 -"2389",2578,3,6,8,10,2,0,-19,1,1.4,0.6,-6 -"2390",2579,3,1,0,2,2,0,24,1,0.8,0.3,-5 -"2391",2579,3,2,2,3,1,0,24,1,0.8,0.3,-5 -"2392",2579,3,3,3,4.430521954,1.430521954,0,24,1,0.8,0.3,-5 -"2393",2580,3,1,0,0.225839466,0.225839466,1,-14,,2.9,-0.1,5 -"2394",2581,3,1,0,1.777799028,1.777799028,1,,1,-2.9,-1,9 -"2395",2582,3,1,0,2,2,0,11,1,8,0.7,1 -"2396",2582,3,2,2,3,1,0,11,1,8,0.7,1 -"2397",2582,3,3,3,3.359387116,0.359387116,0,11,1,8,0.7,1 -"2398",2583,3,1,0,0.027318737,0.027318737,0,-3,0,,1,4 -"2399",2584,3,1,0,0.255117721,0.255117721,1,7,0,1.1,2.1,4 -"2400",2585,3,1,0,2,2,0,14,1,6.3,-0.3,-4 -"2401",2585,3,2,2,3,1,0,14,1,6.3,-0.3,-4 -"2402",2585,3,3,3,6,3,0,14,1,6.3,-0.3,-4 -"2403",2585,3,4,6,6.5,0.5,0,14,1,6.3,-0.3,-4 -"2404",2585,3,5,6.5,7.132957328,0.632957328,0,14,1,6.3,-0.3,-4 -"2405",2586,3,1,0,1.420478584,1.420478584,0,-10,0,-2.7,-0.9,3 -"2406",2587,3,1,0,1.202117528,1.202117528,0,-28,1,1.8,0.3,4 -"2407",2588,3,1,0,0.653729473,0.653729473,1,20,1,1.8,0.4,5 -"2408",2589,3,1,0,2,2,0,-11,1,2.2,0.4,-1 -"2409",2589,3,2,2,2.118650171,0.118650171,0,-11,1,2.2,0.4,-1 -"2410",2590,3,1,0,1.126355654,1.126355654,1,15,1,-0.5,-1.3,4 -"2411",2591,3,1,0,2,2,0,-20,0,2.6,0.5,0 -"2412",2591,3,2,2,3,1,0,-20,0,2.6,0.5,0 -"2413",2591,3,3,3,5.275602524,2.275602524,0,-20,0,2.6,0.5,0 -"2414",2592,3,1,0,0.998231834,0.998231834,1,4,1,4.3,-2.1,6 -"2415",2593,3,1,0,0.398233737,0.398233737,0,0,0,-6.4,-0.5,2 -"2416",2594,3,1,0,0.159271233,0.159271233,1,0,1,0,-0.3,6 -"2417",2595,3,1,0,2,2,0,-24,0,-3.3,-0.4,2 -"2418",2595,3,2,2,3,1,0,-24,0,-3.3,-0.4,2 -"2419",2595,3,3,3,6,3,0,-24,0,-3.3,-0.4,2 -"2420",2595,3,4,6,6.5,0.5,0,-24,0,-3.3,-0.4,2 -"2421",2595,3,5,6.5,8,1.5,0,-24,0,-3.3,-0.4,2 -"2422",2595,3,6,8,10,2,0,-24,0,-3.3,-0.4,2 -"2423",2596,3,1,0,2,2,0,23,1,0.5,-0.9,-4 -"2424",2596,3,2,2,3,1,0,23,1,0.5,-0.9,-4 -"2425",2596,3,3,3,6,3,0,23,1,0.5,-0.9,-4 -"2426",2596,3,4,6,6.412030438,0.412030438,0,23,1,0.5,-0.9,-4 -"2427",2597,3,1,0,2,2,0,2,1,-2.2,-1,1 -"2428",2597,3,2,2,3,1,0,2,1,-2.2,-1,1 -"2429",2597,3,3,3,4.492762613,1.492762613,0,2,1,-2.2,-1,1 -"2430",2598,3,1,0,1.12001507,1.12001507,0,-2,0,1.5,,-2 -"2431",2599,3,1,0,0.576358317,0.576358317,0,-1,1,-5.6,-0.5,0 -"2432",2600,3,1,0,0.702438903,0.702438903,1,26,1,-2.9,0.1,5 -"2433",2601,3,1,0,2,2,0,-18,0,0,-1.5,7 -"2434",2601,3,2,2,3,1,0,-18,0,0,-1.5,7 -"2435",2601,3,3,3,6,3,0,-18,0,0,-1.5,7 -"2436",2601,3,4,6,6.5,0.5,0,-18,0,0,-1.5,7 -"2437",2601,3,5,6.5,8,1.5,0,-18,0,0,-1.5,7 -"2438",2601,3,6,8,8.420333092,0.420333092,0,-18,0,0,-1.5,7 -"2439",2602,3,1,0,1.837912104,1.837912104,1,1,0,0.6,1.1,7 -"2440",2603,3,1,0,2,2,0,0,0,-4.8,-1.5,-2 -"2441",2603,3,2,2,2.587574704,0.587574704,0,0,0,-4.8,-1.5,-2 -"2442",2604,3,1,0,2,2,0,-11,0,0.9,-0.5,3 -"2443",2604,3,2,2,3,1,0,-11,0,0.9,-0.5,3 -"2444",2604,3,3,3,5.576167853,2.576167853,0,-11,0,0.9,-0.5,3 -"2445",2605,3,1,0,2,2,0,-20,1,-0.8,0.6,-2 -"2446",2605,3,2,2,2.863463622,0.863463622,1,-20,1,-0.8,0.6,-2 -"2447",2606,3,1,0,2,2,0,-1,1,0.8,0.3,3 -"2448",2606,3,2,2,3,1,0,-1,1,0.8,0.3,3 -"2449",2606,3,3,3,6,3,0,-1,1,0.8,0.3,3 -"2450",2606,3,4,6,6.5,0.5,0,-1,1,0.8,0.3,3 -"2451",2606,3,5,6.5,8,1.5,0,-1,1,0.8,0.3,3 -"2452",2606,3,6,8,8.600195638,0.600195638,0,-1,1,0.8,0.3,3 -"2453",2607,3,1,0,2,2,0,-4,1,-6.5,-0.6,3 -"2454",2607,3,2,2,3,1,0,-4,1,-6.5,-0.6,3 -"2455",2607,3,3,3,4.849385923,1.849385923,0,-4,1,-6.5,-0.6,3 -"2456",2608,3,1,0,1.71153455,1.71153455,0,-14,0,-5.8,0.7,-2 -"2457",2609,3,1,0,2,2,0,-22,0,-0.4,0.3,-2 -"2458",2609,3,2,2,3,1,0,-22,0,-0.4,0.3,-2 -"2459",2609,3,3,3,6,3,0,-22,0,-0.4,0.3,-2 -"2460",2609,3,4,6,6.5,0.5,0,-22,0,-0.4,0.3,-2 -"2461",2609,3,5,6.5,8,1.5,0,-22,0,-0.4,0.3,-2 -"2462",2609,3,6,8,8.917440695,0.917440695,1,-22,0,-0.4,0.3,-2 -"2463",2610,3,1,0,1.01797346,1.01797346,0,16,0,1.5,0.2,3 -"2464",2611,3,1,0,2,2,0,-9,1,-1.1,-1,-4 -"2465",2611,3,2,2,2.134362143,0.134362143,0,-9,1,-1.1,-1,-4 -"2466",2612,3,1,0,0.17349036,0.17349036,1,23,0,-10,-0.6,-4 -"2467",2613,3,1,0,1.541428998,1.541428998,1,7,1,3.1,1.2,-1 -"2468",2614,3,1,0,0.118564432,0.118564432,1,-10,1,-4.2,3.3,6 -"2469",2615,3,1,0,0.494185795,0.494185795,1,23,1,1.7,1.4,-1 -"2470",2616,3,1,0,2,2,0,-3,1,2.8,-1,0 -"2471",2616,3,2,2,3,1,0,-3,1,2.8,-1,0 -"2472",2616,3,3,3,6,3,0,-3,1,2.8,-1,0 -"2473",2616,3,4,6,6.5,0.5,0,-3,1,2.8,-1,0 -"2474",2616,3,5,6.5,6.536943303,0.036943303,0,-3,1,2.8,-1,0 -"2475",2617,3,1,0,2,2,0,23,0,3.5,-1.6,8 -"2476",2617,3,2,2,2.342889768,0.342889768,1,23,0,3.5,-1.6,8 -"2477",2618,3,1,0,0.065784745,0.065784745,1,2,1,-3.7,0.3,8 -"2478",2619,3,1,0,0.909547663,0.909547663,1,-15,0,-2.4,1.3,-1 -"2479",2620,3,1,0,2,2,0,21,1,11.3,0.3,-15 -"2480",2620,3,2,2,3,1,0,21,1,11.3,0.3,-15 -"2481",2620,3,3,3,6,3,0,21,1,11.3,0.3,-15 -"2482",2620,3,4,6,6.227317896,0.227317896,0,21,1,11.3,0.3,-15 -"2483",2621,3,1,0,0.038632466,0.038632466,1,25,0,-1.1,-0.5,1 -"2484",2622,3,1,0,0.150744768,0.150744768,1,46,0,0.3,1,5 -"2485",2623,3,1,0,2,2,0,-6,0,2.3,-0.8,6 -"2486",2623,3,2,2,2.422910139,0.422910139,1,-6,0,2.3,-0.8,6 -"2487",2624,3,1,0,1.894442534,1.894442534,1,-5,1,-2.8,-1.5,0 -"2488",2625,3,1,0,1.008216527,1.008216527,1,5,1,-6.6,-0.7,1 -"2489",2626,3,1,0,0.062909342,0.062909342,1,23,0,2.4,-0.5,7 -"2490",2627,3,1,0,0.901733995,0.901733995,1,9,0,-0.7,-0.1,0 -"2491",2628,3,1,0,0.041271521,0.041271521,1,30,0,-6.5,2,10 -"2492",2629,3,1,0,2,2,0,12,1,-0.5,-1.5,-1 -"2493",2629,3,2,2,3,1,0,12,1,-0.5,-1.5,-1 -"2494",2629,3,3,3,6,3,0,12,1,-0.5,-1.5,-1 -"2495",2629,3,4,6,6.5,0.5,0,12,1,-0.5,-1.5,-1 -"2496",2629,3,5,6.5,8,1.5,0,12,1,-0.5,-1.5,-1 -"2497",2629,3,6,8,10,2,0,12,1,-0.5,-1.5,-1 -"2498",2630,3,1,0,0.824984182,0.824984182,1,-12,0,4,-1.1,0 -"2499",2631,3,1,0,0.800185312,0.800185312,1,6,1,-5.2,-0.5,-1 -"2500",2632,3,1,0,0.731258253,0.731258253,1,-9,0,0.4,-0.4,-1 -"2501",2633,3,1,0,0.575193397,0.575193397,1,-4,0,6.4,-1,-2 -"2502",2634,3,1,0,1.788864534,1.788864534,1,-17,1,0.5,0.4,11 -"2503",2635,3,1,0,2,2,0,-9,1,0.3,-0.5,-4 -"2504",2635,3,2,2,3,1,0,-9,1,0.3,-0.5,-4 -"2505",2635,3,3,3,6,3,0,-9,1,0.3,-0.5,-4 -"2506",2635,3,4,6,6.5,0.5,0,-9,1,0.3,-0.5,-4 -"2507",2635,3,5,6.5,8,1.5,0,-9,1,0.3,-0.5,-4 -"2508",2635,3,6,8,10,2,0,-9,1,0.3,-0.5,-4 -"2509",2636,3,1,0,0.732521071,0.732521071,1,-14,0,1.8,0.4,9 -"2510",2637,3,1,0,0.406102354,0.406102354,0,-14,0,-2.5,0.6,8 -"2511",2638,3,1,0,1.546764849,1.546764849,0,-27,1,-3.7,-0.1,-7 -"2512",2639,3,1,0,0.020474679,0.020474679,1,10,0,-3.6,0.2,4 -"2513",2640,3,1,0,2,2,0,-2,1,-0.6,-1.3,1 -"2514",2640,3,2,2,3,1,0,-2,1,-0.6,-1.3,1 -"2515",2640,3,3,3,6,3,0,-2,1,-0.6,-1.3,1 -"2516",2640,3,4,6,6.5,0.5,0,-2,1,-0.6,-1.3,1 -"2517",2640,3,5,6.5,8,1.5,0,-2,1,-0.6,-1.3,1 -"2518",2640,3,6,8,10,2,0,-2,1,-0.6,-1.3,1 -"2519",2641,3,1,0,0.346294581,0.346294581,0,1,0,7.8,-0.6,-6 -"2520",2642,3,1,0,2,2,0,-12,1,3.7,0,-14 -"2521",2642,3,2,2,3,1,0,-12,1,3.7,0,-14 -"2522",2642,3,3,3,6,3,0,-12,1,3.7,0,-14 -"2523",2642,3,4,6,6.5,0.5,0,-12,1,3.7,0,-14 -"2524",2642,3,5,6.5,8,1.5,0,-12,1,3.7,0,-14 -"2525",2642,3,6,8,10,2,0,-12,1,3.7,0,-14 -"2526",2643,3,1,0,0.762852781,0.762852781,1,5,0,1.7,-0.1,3 -"2527",2644,3,1,0,0.655784318,0.655784318,1,12,0,-3.1,0.2,4 -"2528",2645,3,1,0,2,2,0,-18,0,2.1,-0.4,-1 -"2529",2645,3,2,2,3,1,0,-18,0,2.1,-0.4,-1 -"2530",2645,3,3,3,6,3,0,-18,0,2.1,-0.4,-1 -"2531",2645,3,4,6,6.359029262,0.359029262,0,-18,0,2.1,-0.4,-1 -"2532",2646,3,1,0,1.254574142,1.254574142,0,-21,1,-3.3,-0.1,-1 -"2533",2647,3,1,0,2,2,0,-16,0,2.9,0.7,3 -"2534",2647,3,2,2,3,1,0,-16,0,2.9,0.7,3 -"2535",2647,3,3,3,6,3,0,-16,0,2.9,0.7,3 -"2536",2647,3,4,6,6.403371021,0.403371021,0,-16,0,2.9,0.7,3 -"2537",2648,3,1,0,0.055122097,0.055122097,1,37,0,-6,0.6,1 -"2538",2649,3,1,0,0.182580105,0.182580105,0,3,0,10.6,0,-2 -"2539",2650,3,1,0,1.425878682,1.425878682,1,17,1,-1.3,0.2,-4 -"2540",2651,3,1,0,0.480255981,0.480255981,1,-8,0,7.6,1.3,11 -"2541",2652,3,1,0,1.987280055,1.987280055,1,-3,0,-6.6,,-4 -"2542",2653,3,1,0,2,2,0,3,1,-7.7,0,2 -"2543",2653,3,2,2,3,1,0,3,1,-7.7,0,2 -"2544",2653,3,3,3,5.792616397,2.792616397,0,3,1,-7.7,0,2 -"2545",2654,3,1,0,2,2,0,-2,0,0.4,-1.3,-7 -"2546",2654,3,2,2,3,1,0,-2,0,0.4,-1.3,-7 -"2547",2654,3,3,3,3.589494111,0.589494111,0,-2,0,0.4,-1.3,-7 -"2548",2655,3,1,0,0.671182405,0.671182405,1,46,1,-3.7,0,6 -"2549",2656,3,1,0,0.122237892,0.122237892,1,24,0,-1.1,-0.6,-1 -"2550",2657,3,1,0,2,2,0,-37,1,3.8,-0.2,-8 -"2551",2657,3,2,2,3,1,0,-37,1,3.8,-0.2,-8 -"2552",2657,3,3,3,6,3,0,-37,1,3.8,-0.2,-8 -"2553",2657,3,4,6,6.5,0.5,0,-37,1,3.8,-0.2,-8 -"2554",2657,3,5,6.5,8,1.5,0,-37,1,3.8,-0.2,-8 -"2555",2657,3,6,8,10,2,0,-37,1,3.8,-0.2,-8 -"2556",2658,3,1,0,2,2,0,3,1,-4.4,0.5,-1 -"2557",2658,3,2,2,2.723306883,0.723306883,0,3,1,-4.4,0.5,-1 -"2558",2659,3,1,0,2,2,0,-29,0,-4.5,-1.8,-3 -"2559",2659,3,2,2,3,1,0,-29,0,-4.5,-1.8,-3 -"2560",2659,3,3,3,6,3,0,-29,0,-4.5,-1.8,-3 -"2561",2659,3,4,6,6.5,0.5,0,-29,0,-4.5,-1.8,-3 -"2562",2659,3,5,6.5,8,1.5,0,-29,0,-4.5,-1.8,-3 -"2563",2659,3,6,8,10,2,0,-29,0,-4.5,-1.8,-3 -"2564",2660,3,1,0,2,2,0,-1,0,-3.4,-1.9,6 -"2565",2660,3,2,2,3,1,0,-1,0,-3.4,-1.9,6 -"2566",2660,3,3,3,6,3,0,-1,0,-3.4,-1.9,6 -"2567",2660,3,4,6,6.5,0.5,0,-1,0,-3.4,-1.9,6 -"2568",2660,3,5,6.5,8,1.5,0,-1,0,-3.4,-1.9,6 -"2569",2660,3,6,8,10,2,0,-1,0,-3.4,-1.9,6 -"2570",2661,3,1,0,0.441227232,0.441227232,1,21,0,1.9,-2,11 -"2571",2662,3,1,,,,,-23,0,6.4,0.6,2 -"2572",2662,3,2,,,,,-23,0,6.4,0.6,2 -"2573",2662,3,3,,,,,-23,0,6.4,0.6,2 -"2574",2663,3,1,0,0.732095947,0.732095947,1,21,1,-3.4,-0.4,1 -"2575",2664,3,1,0,2,2,0,-9,0,2.7,,-8 -"2576",2664,3,2,2,3,1,0,-9,0,2.7,,-8 -"2577",2664,3,3,3,6,3,0,-9,0,2.7,,-8 -"2578",2664,3,4,6,6.5,0.5,0,-9,0,2.7,,-8 -"2579",2664,3,5,6.5,8,1.5,0,-9,0,2.7,,-8 -"2580",2664,3,6,8,10,2,0,-9,0,2.7,,-8 -"2581",2665,3,1,0,2,2,0,-10,1,-2.5,0.2,-4 -"2582",2665,3,2,2,3,1,0,-10,1,-2.5,0.2,-4 -"2583",2665,3,3,3,6,3,0,-10,1,-2.5,0.2,-4 -"2584",2665,3,4,6,6.002590663,0.002590663,0,-10,1,-2.5,0.2,-4 -"2585",2666,3,1,0,2,2,0,19,0,0.8,-1.2, -"2586",2666,3,2,2,3,1,0,19,0,0.8,-1.2, -"2587",2666,3,3,3,6,3,0,19,0,0.8,-1.2, -"2588",2666,3,4,6,6.5,0.5,0,19,0,0.8,-1.2, -"2589",2666,3,5,6.5,8,1.5,0,19,0,0.8,-1.2, -"2590",2666,3,6,8,10,2,0,19,0,0.8,-1.2, -"2591",2667,3,1,0,0.318663149,0.318663149,0,29,1,-2,0.7,1 -"2592",2668,3,1,0,1.023349721,1.023349721,1,1,0,-1.3,0.2,1 -"2593",2669,3,1,0,1.666163158,1.666163158,1,-4,0,1.4,0.3,4 -"2594",2670,3,1,0,0.191307173,0.191307173,1,-24,0,10.1,1.5,-1 -"2595",2671,3,1,0,0.109763573,0.109763573,0,6,1,2.1,-0.1,2 -"2596",2672,3,1,0,0.928004199,0.928004199,1,11,1,4.9,0.8,-7 -"2597",2673,3,1,0,0.426854388,0.426854388,1,9,1,0.7,1.2,-9 -"2598",2674,3,1,0,0.468187822,0.468187822,1,33,0,3.3,-0.1,0 -"2599",2675,3,1,0,2,2,0,4,0,-4.3,-1.4,-8 -"2600",2675,3,2,2,3,1,0,4,0,-4.3,-1.4,-8 -"2601",2675,3,3,3,6,3,0,4,0,-4.3,-1.4,-8 -"2602",2675,3,4,6,6.5,0.5,0,4,0,-4.3,-1.4,-8 -"2603",2675,3,5,6.5,8,1.5,0,4,0,-4.3,-1.4,-8 -"2604",2675,3,6,8,10,2,0,4,0,-4.3,-1.4,-8 -"2605",2676,3,1,0,2,2,0,-2,0,-4.4,,-3 -"2606",2676,3,2,2,3,1,0,-2,0,-4.4,,-3 -"2607",2676,3,3,3,6,3,0,-2,0,-4.4,,-3 -"2608",2676,3,4,6,6.5,0.5,0,-2,0,-4.4,,-3 -"2609",2676,3,5,6.5,8,1.5,0,-2,0,-4.4,,-3 -"2610",2676,3,6,8,10,2,0,-2,0,-4.4,,-3 -"2611",2677,3,1,0,0.075241894,0.075241894,1,25,1,-5.5,-1.7,-12 -"2612",2678,3,1,0,0.837097788,0.837097788,1,-13,0,1.4,0.1,-2 -"2613",2679,3,1,0,2,2,0,3,1,-5,1.3,-2 -"2614",2679,3,2,2,3,1,0,3,1,-5,1.3,-2 -"2615",2679,3,3,3,6,3,0,3,1,-5,1.3,-2 -"2616",2679,3,4,6,6.5,0.5,0,3,1,-5,1.3,-2 -"2617",2679,3,5,6.5,8,1.5,0,3,1,-5,1.3,-2 -"2618",2679,3,6,8,8.687476914,0.687476914,0,3,1,-5,1.3,-2 -"2619",2680,3,1,0,1.730688635,1.730688635,0,-8,0,11.8,-0.5,3 -"2620",2681,3,1,0,1.53064852,1.53064852,1,16,1,-6,-1.3,0 -"2621",2682,3,1,0,1.39946386,1.39946386,1,-14,0,-3,-0.2,9 -"2622",2683,3,1,0,0.338343236,0.338343236,0,-31,1,-5.5,1.3,-1 -"2623",2684,3,1,0,1.791172344,1.791172344,1,-18,0,-4.3,0.2,3 -"2624",2685,3,1,0,1.051093877,1.051093877,1,-1,0,6.2,-0.1,6 -"2625",2686,3,1,0,1.990588155,1.990588155,1,1,0,0.8,0.5,1 -"2626",2687,3,1,0,2,2,0,-6,0,-0.4,-1,-5 -"2627",2687,3,2,2,3,1,0,-6,0,-0.4,-1,-5 -"2628",2687,3,3,3,6,3,0,-6,0,-0.4,-1,-5 -"2629",2687,3,4,6,6.5,0.5,0,-6,0,-0.4,-1,-5 -"2630",2687,3,5,6.5,6.728267373,0.228267373,0,-6,0,-0.4,-1,-5 -"2631",2688,3,1,0,1.587123017,1.587123017,1,2,1,0.8,-0.7,-8 -"2632",2689,3,1,0,2,2,0,-23,1,-1.5,0.8,1 -"2633",2689,3,2,2,3,1,0,-23,1,-1.5,0.8,1 -"2634",2689,3,3,3,5.994875355,2.994875355,0,-23,1,-1.5,0.8,1 -"2635",2690,3,1,0,1.646491336,1.646491336,1,12,0,0.7,-0.3,7 -"2636",2691,3,1,0,0.811605261,0.811605261,1,12,1,-5.8,1.9,2 -"2637",2692,3,1,0,0.978960928,0.978960928,1,2,0,4.5,0,-5 -"2638",2693,3,1,0,0.535637575,0.535637575,1,-18,1,2.8,1.3, -"2639",2694,3,1,0,2,2,0,-10,0,3.7,0,3 -"2640",2694,3,2,2,3,1,0,-10,0,3.7,0,3 -"2641",2694,3,3,3,4.142969224,1.142969224,0,-10,0,3.7,0,3 -"2642",2695,3,1,0,2,2,0,-10,0,3.2,-0.5,0 -"2643",2695,3,2,2,3,1,0,-10,0,3.2,-0.5,0 -"2644",2695,3,3,3,6,3,0,-10,0,3.2,-0.5,0 -"2645",2695,3,4,6,6.5,0.5,0,-10,0,3.2,-0.5,0 -"2646",2695,3,5,6.5,8,1.5,0,-10,0,3.2,-0.5,0 -"2647",2695,3,6,8,10,2,0,-10,0,3.2,-0.5,0 -"2648",2696,3,1,0,2,2,0,5,1,-2.7,-1,1 -"2649",2696,3,2,2,3,1,0,5,1,-2.7,-1,1 -"2650",2696,3,3,3,5.909645675,2.909645675,0,5,1,-2.7,-1,1 -"2651",2697,3,1,0,2,2,0,10,0,-2.3,-1,0 -"2652",2697,3,2,2,2.470830494,0.470830494,0,10,0,-2.3,-1,0 -"2653",2698,3,1,0,0.28949542,0.28949542,0,-15,0,1.8,-1.1,-3 -"2654",2699,3,1,0,2,2,0,-23,0,-3.7,1.2,2 -"2655",2699,3,2,2,3,1,0,-23,0,-3.7,1.2,2 -"2656",2699,3,3,3,6,3,0,-23,0,-3.7,1.2,2 -"2657",2699,3,4,6,6.5,0.5,0,-23,0,-3.7,1.2,2 -"2658",2699,3,5,6.5,8,1.5,0,-23,0,-3.7,1.2,2 -"2659",2699,3,6,8,10,2,0,-23,0,-3.7,1.2,2 -"2660",2700,3,1,0,2,2,0,8,1,-1.3,-0.9,-1 -"2661",2700,3,2,2,3,1,0,8,1,-1.3,-0.9,-1 -"2662",2700,3,3,3,6,3,0,8,1,-1.3,-0.9,-1 -"2663",2700,3,4,6,6.5,0.5,0,8,1,-1.3,-0.9,-1 -"2664",2700,3,5,6.5,8,1.5,0,8,1,-1.3,-0.9,-1 -"2665",2700,3,6,8,9.4305124,1.4305124,0,8,1,-1.3,-0.9,-1 -"2666",2701,3,1,0,0.276445645,0.276445645,1,-10,0,1.4,2.3,7 -"2667",2702,3,1,0,0.539659162,0.539659162,1,17,1,3.4,1.2,3 -"2668",2703,3,1,0,2,2,0,5,1,5.6,-0.4,-6 -"2669",2703,3,2,2,3,1,0,5,1,5.6,-0.4,-6 -"2670",2703,3,3,3,6,3,0,5,1,5.6,-0.4,-6 -"2671",2703,3,4,6,6.5,0.5,0,5,1,5.6,-0.4,-6 -"2672",2703,3,5,6.5,8,1.5,0,5,1,5.6,-0.4,-6 -"2673",2703,3,6,8,10,2,0,5,1,5.6,-0.4,-6 -"2674",2704,3,1,0,0.830058124,0.830058124,1,-7,0,2.8,0.2,1 -"2675",2705,3,1,0,2,2,0,-18,1,3.8,-1.1,3 -"2676",2705,3,2,2,3,1,0,-18,1,3.8,-1.1,3 -"2677",2705,3,3,3,3.981301403,0.981301403,0,-18,1,3.8,-1.1,3 -"2678",2706,3,1,0,2,2,0,-9,0,2.4,0.2,-2 -"2679",2706,3,2,2,2.363675889,0.363675889,0,-9,0,2.4,0.2,-2 -"2680",2707,3,1,0,0.355286128,0.355286128,1,25,0,-4.2,1.4,-6 -"2681",2708,3,1,0,0.909153928,0.909153928,0,-8,0,-1.7,-1,10 -"2682",2709,3,1,0,2,2,0,17,1,0.8,-0.2,0 -"2683",2709,3,2,2,3,1,0,17,1,0.8,-0.2,0 -"2684",2709,3,3,3,3.903158958,0.903158958,0,17,1,0.8,-0.2,0 -"2685",2710,3,1,0,2,2,0,-9,0,0.5,-1.3,-3 -"2686",2710,3,2,2,2.380016416,0.380016416,0,-9,0,0.5,-1.3,-3 -"2687",2711,3,1,0,0.000878118,0.000878118,0,-3,1,-3.5,1.2,0 -"2688",2712,3,1,0,0.003670336,0.003670336,1,15,1,1.9,0,-1 diff --git a/tests/testthat/data_files/SURVIVAL/EXPAND_NO_MISSING/EXPAND_NO_MISSING1.rda b/tests/testthat/data_files/SURVIVAL/EXPAND_NO_MISSING/EXPAND_NO_MISSING1.rda deleted file mode 100644 index 6a845fbb..00000000 Binary files a/tests/testthat/data_files/SURVIVAL/EXPAND_NO_MISSING/EXPAND_NO_MISSING1.rda and /dev/null differ diff --git a/tests/testthat/data_files/SURVIVAL/EXPAND_NO_MISSING/EXPAND_NO_MISSING2.rda b/tests/testthat/data_files/SURVIVAL/EXPAND_NO_MISSING/EXPAND_NO_MISSING2.rda deleted file mode 100644 index 3640776a..00000000 Binary files a/tests/testthat/data_files/SURVIVAL/EXPAND_NO_MISSING/EXPAND_NO_MISSING2.rda and /dev/null differ diff --git a/tests/testthat/data_files/SURVIVAL/EXPAND_NO_MISSING/EXPAND_NO_MISSING3.rda b/tests/testthat/data_files/SURVIVAL/EXPAND_NO_MISSING/EXPAND_NO_MISSING3.rda deleted file mode 100644 index b1603264..00000000 Binary files a/tests/testthat/data_files/SURVIVAL/EXPAND_NO_MISSING/EXPAND_NO_MISSING3.rda and /dev/null differ diff --git a/tests/testthat/data_files/SURVIVAL/EXPAND_NO_MISSING/expand_no_missing_study1.csv b/tests/testthat/data_files/SURVIVAL/EXPAND_NO_MISSING/expand_no_missing_study1.csv deleted file mode 100644 index f51196c2..00000000 --- a/tests/testthat/data_files/SURVIVAL/EXPAND_NO_MISSING/expand_no_missing_study1.csv +++ /dev/null @@ -1,2061 +0,0 @@ -"","id","study.id","time.id","starttime","endtime","survtime","cens","age.60","female","noise.56","pm10.16","bmi.26" -"1",1,1,1,0,2,2,0,8,1,1.7,-0.0999999999999996,-4 -"2",1,1,2,2,3,1,0,8,1,1.7,-0.0999999999999996,-4 -"3",1,1,3,3,6,3,0,8,1,1.7,-0.0999999999999996,-4 -"4",1,1,4,6,6.5,0.5,0,8,1,1.7,-0.0999999999999996,-4 -"5",1,1,5,6.5,8,1.5,0,8,1,1.7,-0.0999999999999996,-4 -"6",1,1,6,8,9.02520104030031,1.02520104030031,1,8,1,1.7,-0.0999999999999996,-4 -"7",2,1,1,0,2,2,0,16,1,0.700000000000003,0.899999999999999,-6 -"8",2,1,2,2,3,1,0,16,1,0.700000000000003,0.899999999999999,-6 -"9",2,1,3,3,6,3,0,16,1,0.700000000000003,0.899999999999999,-6 -"10",2,1,4,6,6.5,0.5,0,16,1,0.700000000000003,0.899999999999999,-6 -"11",2,1,5,6.5,8,1.5,0,16,1,0.700000000000003,0.899999999999999,-6 -"12",2,1,6,8,10,2,0,16,1,0.700000000000003,0.899999999999999,-6 -"13",3,1,1,0,0.378650156946772,0.378650156946772,0,-5,1,1.6,-1.3,-4 -"14",4,1,1,0,0.0870743756568584,0.0870743756568584,1,13,0,3.5,0.399999999999999,4 -"15",5,1,1,0,1.42473609994182,1.42473609994182,1,26,0,0.100000000000001,-1.8,-1 -"16",6,1,1,0,1.6941922902486,1.6941922902486,1,8,1,-1.6,-0.0999999999999996,2 -"17",7,1,1,0,0.270970961746664,0.270970961746664,1,-6,0,-0.600000000000001,0,4 -"18",8,1,1,0,2,2,0,1,0,2.8,-1.4,4 -"19",8,1,2,2,3,1,0,1,0,2.8,-1.4,4 -"20",8,1,3,3,6,3,0,1,0,2.8,-1.4,4 -"21",8,1,4,6,6.5,0.5,0,1,0,2.8,-1.4,4 -"22",8,1,5,6.5,8,1.5,0,1,0,2.8,-1.4,4 -"23",8,1,6,8,8.2008007855637,0.200800785563699,1,1,0,2.8,-1.4,4 -"24",9,1,1,0,1.16552506386783,1.16552506386783,0,30,1,-6.7,1.1,-3 -"25",10,1,1,0,0.435115445818863,0.435115445818863,0,-25,0,-8.6,0.5,-7 -"26",11,1,1,0,0.915496980545059,0.915496980545059,1,21,1,-8.1,0.5,-3 -"27",12,1,1,0,0.0799408651994374,0.0799408651994374,1,15,1,7,1.1,4 -"28",13,1,1,0,0.0861761396946597,0.0861761396946597,0,2,1,-3,-0.5,9 -"29",14,1,1,0,1.22713447425019,1.22713447425019,1,4,1,-3.4,-1.2,3 -"30",15,1,1,0,2,2,0,4,1,4.5,-0.699999999999999,-2 -"31",15,1,2,2,3,1,0,4,1,4.5,-0.699999999999999,-2 -"32",15,1,3,3,6,3,0,4,1,4.5,-0.699999999999999,-2 -"33",15,1,4,6,6.5,0.5,0,4,1,4.5,-0.699999999999999,-2 -"34",15,1,5,6.5,7.77149110771578,1.27149110771578,1,4,1,4.5,-0.699999999999999,-2 -"35",16,1,1,0,1.4405131202252,1.4405131202252,0,-2,1,2.2,1.6,-6 -"36",17,1,1,0,0.207443730926746,0.207443730926746,1,-10,1,2.2,-0.0999999999999996,6 -"37",18,1,1,0,2,2,0,-14,0,0.299999999999997,-0.9,5 -"38",18,1,2,2,3,1,0,-14,0,0.299999999999997,-0.9,5 -"39",18,1,3,3,6,3,0,-14,0,0.299999999999997,-0.9,5 -"40",18,1,4,6,6.5,0.5,0,-14,0,0.299999999999997,-0.9,5 -"41",18,1,5,6.5,6.805803987782,0.305803987782002,1,-14,0,0.299999999999997,-0.9,5 -"42",19,1,1,0,2,2,0,3,1,10.9,-0.6,0 -"43",19,1,2,2,2.15353124849828,0.153531248498276,0,3,1,10.9,-0.6,0 -"44",20,1,1,0,0.20287446468001,0.20287446468001,1,22,0,-4.5,-1,-3 -"45",21,1,1,0,0.238178428608884,0.238178428608884,1,28,0,-8.9,-1.3,-1 -"46",22,1,1,0,1.35831114471987,1.35831114471987,1,21,1,-4.6,1.5,0 -"47",23,1,1,0,2,2,0,-16,1,-6,0.100000000000001,-4 -"48",23,1,2,2,3,1,0,-16,1,-6,0.100000000000001,-4 -"49",23,1,3,3,6,3,0,-16,1,-6,0.100000000000001,-4 -"50",23,1,4,6,6.5,0.5,0,-16,1,-6,0.100000000000001,-4 -"51",23,1,5,6.5,8,1.5,0,-16,1,-6,0.100000000000001,-4 -"52",23,1,6,8,10,2,0,-16,1,-6,0.100000000000001,-4 -"53",24,1,1,0,0.489256291577085,0.489256291577085,1,8,0,4.6,0.100000000000001,9 -"54",25,1,1,0,2,2,0,10,0,-7.8,-0.4,0 -"55",25,1,2,2,3,1,0,10,0,-7.8,-0.4,0 -"56",25,1,3,3,6,3,0,10,0,-7.8,-0.4,0 -"57",25,1,4,6,6.5,0.5,0,10,0,-7.8,-0.4,0 -"58",25,1,5,6.5,7.84174491234614,1.34174491234614,1,10,0,-7.8,-0.4,0 -"59",26,1,1,0,0.860845332816662,0.860845332816662,0,-21,0,-3.5,-1.1,4 -"60",27,1,1,0,2,2,0,26,1,-1.3,-1.3,-4 -"61",27,1,2,2,3,1,0,26,1,-1.3,-1.3,-4 -"62",27,1,3,3,6,3,0,26,1,-1.3,-1.3,-4 -"63",27,1,4,6,6.5,0.5,0,26,1,-1.3,-1.3,-4 -"64",27,1,5,6.5,8,1.5,0,26,1,-1.3,-1.3,-4 -"65",27,1,6,8,10,2,0,26,1,-1.3,-1.3,-4 -"66",28,1,1,0,0.852618124792396,0.852618124792396,0,10,0,-6.8,-0.199999999999999,5 -"67",29,1,1,0,0.947317818609948,0.947317818609948,1,26,0,-1.9,0.5,-4 -"68",30,1,1,0,1.96193205769325,1.96193205769325,1,-5,0,3.8,1,2 -"69",31,1,1,0,2,2,0,22,1,-3.9,-0.4,-5 -"70",31,1,2,2,3,1,0,22,1,-3.9,-0.4,-5 -"71",31,1,3,3,6,3,0,22,1,-3.9,-0.4,-5 -"72",31,1,4,6,6.5,0.5,0,22,1,-3.9,-0.4,-5 -"73",31,1,5,6.5,8,1.5,0,22,1,-3.9,-0.4,-5 -"74",31,1,6,8,9.06459689809511,1.06459689809511,0,22,1,-3.9,-0.4,-5 -"75",32,1,1,0,1.07323429692121,1.07323429692121,0,-19,0,8,-1,-9 -"76",33,1,1,0,0.651621203979986,0.651621203979986,0,0,1,0.799999999999997,3,-2 -"77",34,1,1,0,0.957976548052497,0.957976548052497,1,18,1,-3.8,0.300000000000001,3 -"78",35,1,1,0,2,2,0,-1,1,3.4,0.399999999999999,-4 -"79",35,1,2,2,3,1,0,-1,1,3.4,0.399999999999999,-4 -"80",35,1,3,3,4.65879691600504,1.65879691600504,0,-1,1,3.4,0.399999999999999,-4 -"81",36,1,1,0,2,2,0,21,1,6.8,-0.9,1 -"82",36,1,2,2,3,1,0,21,1,6.8,-0.9,1 -"83",36,1,3,3,4.18239252128781,1.18239252128781,1,21,1,6.8,-0.9,1 -"84",37,1,1,0,0.0450935524976549,0.0450935524976549,1,-13,0,4.7,1.4,4 -"85",38,1,1,0,2,2,0,-13,1,6.6,-0.0999999999999996,-8 -"86",38,1,2,2,3,1,0,-13,1,6.6,-0.0999999999999996,-8 -"87",38,1,3,3,6,3,0,-13,1,6.6,-0.0999999999999996,-8 -"88",38,1,4,6,6.5,0.5,0,-13,1,6.6,-0.0999999999999996,-8 -"89",38,1,5,6.5,8,1.5,0,-13,1,6.6,-0.0999999999999996,-8 -"90",38,1,6,8,8.04203543492983,0.0420354349298318,0,-13,1,6.6,-0.0999999999999996,-8 -"91",39,1,1,0,0.666056404945622,0.666056404945622,1,1,1,-4.3,-1.5,4 -"92",40,1,1,0,2,2,0,-14,1,-1.3,-1.5,0 -"93",40,1,2,2,2.40828367365261,0.408283673652615,0,-14,1,-1.3,-1.5,0 -"94",41,1,1,0,1.09514172202714,1.09514172202714,1,-6,0,-2.4,-0.0999999999999996,3 -"95",42,1,1,0,2,2,0,-21,0,1.5,-0.800000000000001,-5 -"96",42,1,2,2,3,1,0,-21,0,1.5,-0.800000000000001,-5 -"97",42,1,3,3,6,3,0,-21,0,1.5,-0.800000000000001,-5 -"98",42,1,4,6,6.5,0.5,0,-21,0,1.5,-0.800000000000001,-5 -"99",42,1,5,6.5,8,1.5,0,-21,0,1.5,-0.800000000000001,-5 -"100",42,1,6,8,10,2,0,-21,0,1.5,-0.800000000000001,-5 -"101",43,1,1,0,0.154941967612161,0.154941967612161,1,13,1,-5.5,0.899999999999999,4 -"102",44,1,1,0,2,2,0,-25,0,2.3,0.100000000000001,3 -"103",44,1,2,2,3,1,0,-25,0,2.3,0.100000000000001,3 -"104",44,1,3,3,5.83454587233425,2.83454587233425,1,-25,0,2.3,0.100000000000001,3 -"105",45,1,1,0,0.901013019040136,0.901013019040136,1,10,0,-1.8,1.5,2 -"106",46,1,1,0,2,2,0,-14,1,-0.5,-1.2,-12 -"107",46,1,2,2,2.08587145029988,0.0858714502998819,0,-14,1,-0.5,-1.2,-12 -"108",47,1,1,0,2,2,0,9,1,1.2,0,-7 -"109",47,1,2,2,3,1,0,9,1,1.2,0,-7 -"110",47,1,3,3,6,3,0,9,1,1.2,0,-7 -"111",47,1,4,6,6.5,0.5,0,9,1,1.2,0,-7 -"112",47,1,5,6.5,8,1.5,0,9,1,1.2,0,-7 -"113",47,1,6,8,10,2,0,9,1,1.2,0,-7 -"114",48,1,1,0,0.276953243524173,0.276953243524173,1,11,1,5.8,1,-3 -"115",49,1,1,0,2,2,0,-11,1,0.899999999999999,0.300000000000001,2 -"116",49,1,2,2,3,1,0,-11,1,0.899999999999999,0.300000000000001,2 -"117",49,1,3,3,6,3,0,-11,1,0.899999999999999,0.300000000000001,2 -"118",49,1,4,6,6.5,0.5,0,-11,1,0.899999999999999,0.300000000000001,2 -"119",49,1,5,6.5,8,1.5,0,-11,1,0.899999999999999,0.300000000000001,2 -"120",49,1,6,8,10,2,0,-11,1,0.899999999999999,0.300000000000001,2 -"121",50,1,1,0,0.331783418267577,0.331783418267577,1,-5,0,-2.3,-0.5,2 -"122",51,1,1,0,1.67353369009088,1.67353369009088,1,14,0,4.1,-0.4,-1 -"123",52,1,1,0,0.508792130127853,0.508792130127853,1,-2,0,6.2,-0.800000000000001,4 -"124",53,1,1,0,0.0138671162059254,0.0138671162059254,1,19,1,-1.6,1.9,-4 -"125",54,1,1,0,2,2,0,-24,1,-3.7,0,-4 -"126",54,1,2,2,3,1,0,-24,1,-3.7,0,-4 -"127",54,1,3,3,6,3,0,-24,1,-3.7,0,-4 -"128",54,1,4,6,6.5,0.5,0,-24,1,-3.7,0,-4 -"129",54,1,5,6.5,8,1.5,0,-24,1,-3.7,0,-4 -"130",54,1,6,8,8.44453226470276,0.444532264702763,0,-24,1,-3.7,0,-4 -"131",55,1,1,0,1.2987658554929,1.2987658554929,1,-16,0,-4.2,1,0 -"132",56,1,1,0,1.71372999209612,1.71372999209612,0,-7,0,1.6,-0.5,-2 -"133",57,1,1,0,0.122637755769792,0.122637755769792,1,19,0,5.4,0,2 -"134",58,1,1,0,2,2,0,-16,1,-6.5,-0.800000000000001,-5 -"135",58,1,2,2,3,1,0,-16,1,-6.5,-0.800000000000001,-5 -"136",58,1,3,3,6,3,0,-16,1,-6.5,-0.800000000000001,-5 -"137",58,1,4,6,6.5,0.5,0,-16,1,-6.5,-0.800000000000001,-5 -"138",58,1,5,6.5,7.098300501924,0.598300501924002,0,-16,1,-6.5,-0.800000000000001,-5 -"139",59,1,1,0,2,2,0,-9,0,7.9,1.3,-2 -"140",59,1,2,2,2.42864552741066,0.428645527410659,1,-9,0,7.9,1.3,-2 -"141",60,1,1,0,2,2,0,-7,0,7.8,-0.199999999999999,-1 -"142",60,1,2,2,3,1,0,-7,0,7.8,-0.199999999999999,-1 -"143",60,1,3,3,3.65547354011623,0.65547354011623,0,-7,0,7.8,-0.199999999999999,-1 -"144",61,1,1,0,2,2,0,-27,0,-7,-0.699999999999999,-2 -"145",61,1,2,2,3,1,0,-27,0,-7,-0.699999999999999,-2 -"146",61,1,3,3,6,3,0,-27,0,-7,-0.699999999999999,-2 -"147",61,1,4,6,6.5,0.5,0,-27,0,-7,-0.699999999999999,-2 -"148",61,1,5,6.5,7.52830015670305,1.02830015670305,0,-27,0,-7,-0.699999999999999,-2 -"149",62,1,1,0,1.27800139287584,1.27800139287584,1,-4,0,-1.9,1.3,1 -"150",63,1,1,0,1.01352810835984,1.01352810835984,0,-3,0,-5.3,0.199999999999999,5 -"151",64,1,1,0,2,2,0,-10,1,1.1,-1.1,5 -"152",64,1,2,2,3,1,0,-10,1,1.1,-1.1,5 -"153",64,1,3,3,4.75179598339954,1.75179598339954,1,-10,1,1.1,-1.1,5 -"154",65,1,1,0,2,2,0,6,1,4.3,0.800000000000001,-2 -"155",65,1,2,2,3,1,0,6,1,4.3,0.800000000000001,-2 -"156",65,1,3,3,6,3,0,6,1,4.3,0.800000000000001,-2 -"157",65,1,4,6,6.5,0.5,0,6,1,4.3,0.800000000000001,-2 -"158",65,1,5,6.5,8,1.5,0,6,1,4.3,0.800000000000001,-2 -"159",65,1,6,8,8.0218301320642,0.0218301320642015,0,6,1,4.3,0.800000000000001,-2 -"160",66,1,1,0,2,2,0,1,1,3.1,-1.4,1 -"161",66,1,2,2,3,1,0,1,1,3.1,-1.4,1 -"162",66,1,3,3,6,3,0,1,1,3.1,-1.4,1 -"163",66,1,4,6,6.5,0.5,0,1,1,3.1,-1.4,1 -"164",66,1,5,6.5,8,1.5,0,1,1,3.1,-1.4,1 -"165",66,1,6,8,10,2,0,1,1,3.1,-1.4,1 -"166",67,1,1,0,2,2,0,-11,1,-1.2,-1.4,2 -"167",67,1,2,2,3,1,0,-11,1,-1.2,-1.4,2 -"168",67,1,3,3,6,3,0,-11,1,-1.2,-1.4,2 -"169",67,1,4,6,6.5,0.5,0,-11,1,-1.2,-1.4,2 -"170",67,1,5,6.5,8,1.5,0,-11,1,-1.2,-1.4,2 -"171",67,1,6,8,10,2,0,-11,1,-1.2,-1.4,2 -"172",68,1,1,0,2,2,0,3,1,-4.9,0.100000000000001,-5 -"173",68,1,2,2,3,1,0,3,1,-4.9,0.100000000000001,-5 -"174",68,1,3,3,4.7442026983621,1.7442026983621,0,3,1,-4.9,0.100000000000001,-5 -"175",69,1,1,0,0.712430730598467,0.712430730598467,1,-1,1,3.1,0.800000000000001,4 -"176",70,1,1,0,2,2,0,15,0,-0.5,-1.1,-1 -"177",70,1,2,2,3,1,0,15,0,-0.5,-1.1,-1 -"178",70,1,3,3,6,3,0,15,0,-0.5,-1.1,-1 -"179",70,1,4,6,6.5,0.5,0,15,0,-0.5,-1.1,-1 -"180",70,1,5,6.5,8,1.5,0,15,0,-0.5,-1.1,-1 -"181",70,1,6,8,10,2,0,15,0,-0.5,-1.1,-1 -"182",71,1,1,0,2,2,0,-22,0,0,-0.6,6 -"183",71,1,2,2,3,1,0,-22,0,0,-0.6,6 -"184",71,1,3,3,5.27518935008381,2.27518935008381,0,-22,0,0,-0.6,6 -"185",72,1,1,0,1.87171430750557,1.87171430750557,0,-21,0,-0.100000000000001,0.699999999999999,-2 -"186",73,1,1,0,2,2,0,11,1,-6.4,-0.6,5 -"187",73,1,2,2,3,1,0,11,1,-6.4,-0.6,5 -"188",73,1,3,3,4.01183699758839,1.01183699758839,0,11,1,-6.4,-0.6,5 -"189",74,1,1,0,0.143503861018392,0.143503861018392,1,-9,1,4.5,0,-1 -"190",75,1,1,0,0.249901118157596,0.249901118157596,1,8,1,5.1,0.800000000000001,-2 -"191",76,1,1,0,0.17442393725393,0.17442393725393,1,6,1,-3,1.2,4 -"192",77,1,1,0,1.52799369537845,1.52799369537845,1,27,1,-1,0,-8 -"193",78,1,1,0,2,2,0,-17,0,-5.4,-0.9,-1 -"194",78,1,2,2,3,1,0,-17,0,-5.4,-0.9,-1 -"195",78,1,3,3,6,3,0,-17,0,-5.4,-0.9,-1 -"196",78,1,4,6,6.5,0.5,0,-17,0,-5.4,-0.9,-1 -"197",78,1,5,6.5,8,1.5,0,-17,0,-5.4,-0.9,-1 -"198",78,1,6,8,10,2,0,-17,0,-5.4,-0.9,-1 -"199",79,1,1,0,0.65649123645075,0.65649123645075,1,10,0,2.4,1.2,2 -"200",80,1,1,0,2,2,0,-2,0,1.1,-0.199999999999999,-9 -"201",80,1,2,2,3,1,0,-2,0,1.1,-0.199999999999999,-9 -"202",80,1,3,3,6,3,0,-2,0,1.1,-0.199999999999999,-9 -"203",80,1,4,6,6.5,0.5,0,-2,0,1.1,-0.199999999999999,-9 -"204",80,1,5,6.5,8,1.5,0,-2,0,1.1,-0.199999999999999,-9 -"205",80,1,6,8,10,2,0,-2,0,1.1,-0.199999999999999,-9 -"206",81,1,1,0,0.395295872237747,0.395295872237747,0,-4,1,0.100000000000001,-1.5,5 -"207",82,1,1,0,0.373969653306631,0.373969653306631,1,-12,0,5.2,1.8,6 -"208",83,1,1,0,2,2,0,-17,1,3.6,1.2,3 -"209",83,1,2,2,3,1,0,-17,1,3.6,1.2,3 -"210",83,1,3,3,6,3,0,-17,1,3.6,1.2,3 -"211",83,1,4,6,6.5,0.5,0,-17,1,3.6,1.2,3 -"212",83,1,5,6.5,8,1.5,0,-17,1,3.6,1.2,3 -"213",83,1,6,8,10,2,0,-17,1,3.6,1.2,3 -"214",84,1,1,0,2,2,0,-8,0,-2,-0.4,0 -"215",84,1,2,2,3,1,0,-8,0,-2,-0.4,0 -"216",84,1,3,3,4.26955558675629,1.26955558675629,1,-8,0,-2,-0.4,0 -"217",85,1,1,0,0.0228078932406999,0.0228078932406999,1,36,0,4.6,0.199999999999999,-4 -"218",86,1,1,0,0.242717225909382,0.242717225909382,0,12,0,-3.1,0.5,6 -"219",87,1,1,0,2,2,0,11,1,6,-0.6,-3 -"220",87,1,2,2,3,1,0,11,1,6,-0.6,-3 -"221",87,1,3,3,6,3,0,11,1,6,-0.6,-3 -"222",87,1,4,6,6.16274922151344,0.162749221513445,1,11,1,6,-0.6,-3 -"223",88,1,1,0,1.38858856506398,1.38858856506398,0,-1,1,-6,0.399999999999999,4 -"224",89,1,1,0,0.0458699106876642,0.0458699106876642,1,31,1,-3.5,-0.0999999999999996,4 -"225",90,1,1,0,2,2,0,-6,0,0.799999999999997,-1.7,2 -"226",90,1,2,2,3,1,0,-6,0,0.799999999999997,-1.7,2 -"227",90,1,3,3,6,3,0,-6,0,0.799999999999997,-1.7,2 -"228",90,1,4,6,6.5,0.5,0,-6,0,0.799999999999997,-1.7,2 -"229",90,1,5,6.5,8,1.5,0,-6,0,0.799999999999997,-1.7,2 -"230",90,1,6,8,10,2,0,-6,0,0.799999999999997,-1.7,2 -"231",91,1,1,0,1.14607217861491,1.14607217861491,0,-5,0,6.3,-0.4,-1 -"232",92,1,1,0,0.0522144457225193,0.0522144457225193,1,17,0,-1.6,1.3,6 -"233",93,1,1,0,2,2,0,-36,0,0.600000000000001,-1.4,-2 -"234",93,1,2,2,3,1,0,-36,0,0.600000000000001,-1.4,-2 -"235",93,1,3,3,6,3,0,-36,0,0.600000000000001,-1.4,-2 -"236",93,1,4,6,6.5,0.5,0,-36,0,0.600000000000001,-1.4,-2 -"237",93,1,5,6.5,8,1.5,0,-36,0,0.600000000000001,-1.4,-2 -"238",93,1,6,8,8.93144666277005,0.93144666277005,0,-36,0,0.600000000000001,-1.4,-2 -"239",94,1,1,0,0.673346473088764,0.673346473088764,1,9,0,-4.8,0.600000000000001,4 -"240",95,1,1,0,2,2,0,-31,1,-1.1,0.800000000000001,-1 -"241",95,1,2,2,3,1,0,-31,1,-1.1,0.800000000000001,-1 -"242",95,1,3,3,6,3,0,-31,1,-1.1,0.800000000000001,-1 -"243",95,1,4,6,6.5,0.5,0,-31,1,-1.1,0.800000000000001,-1 -"244",95,1,5,6.5,8,1.5,0,-31,1,-1.1,0.800000000000001,-1 -"245",95,1,6,8,10,2,0,-31,1,-1.1,0.800000000000001,-1 -"246",96,1,1,0,1.68477964880353,1.68477964880353,1,-8,0,4.8,0.199999999999999,3 -"247",97,1,1,0,2,2,0,-18,0,-0.100000000000001,1.1,-3 -"248",97,1,2,2,3,1,0,-18,0,-0.100000000000001,1.1,-3 -"249",97,1,3,3,3.04904585867334,0.0490458586733353,0,-18,0,-0.100000000000001,1.1,-3 -"250",98,1,1,0,2,2,0,-10,1,2.2,-0.699999999999999,3 -"251",98,1,2,2,3,1,0,-10,1,2.2,-0.699999999999999,3 -"252",98,1,3,3,4.01954234686972,1.01954234686972,0,-10,1,2.2,-0.699999999999999,3 -"253",99,1,1,0,1.83475536347078,1.83475536347078,1,9,0,-0.600000000000001,-2.6,-2 -"254",100,1,1,0,1.33335883711666,1.33335883711666,1,4,0,-4,0.5,-3 -"255",101,1,1,0,1.97054326963873,1.97054326963873,1,19,1,6.6,0.699999999999999,-11 -"256",102,1,1,0,2,2,0,-24,0,-2.8,0.199999999999999,0 -"257",102,1,2,2,3,1,0,-24,0,-2.8,0.199999999999999,0 -"258",102,1,3,3,4.51608955863592,1.51608955863592,0,-24,0,-2.8,0.199999999999999,0 -"259",103,1,1,0,0.778811774756532,0.778811774756532,1,11,0,-6.2,0.399999999999999,11 -"260",104,1,1,0,2,2,0,-12,1,-0.899999999999999,0.600000000000001,1 -"261",104,1,2,2,3,1,0,-12,1,-0.899999999999999,0.600000000000001,1 -"262",104,1,3,3,5.34579899557815,2.34579899557815,0,-12,1,-0.899999999999999,0.600000000000001,1 -"263",105,1,1,0,0.496465661540958,0.496465661540958,0,-36,1,-1.1,1,-1 -"264",106,1,1,0,1.2408407121783,1.2408407121783,1,2,0,6.3,-1.3,0 -"265",107,1,1,0,1.85358800057094,1.85358800057094,1,8,0,-3.7,0.399999999999999,-9 -"266",108,1,1,0,2,2,0,9,1,4.4,-0.0999999999999996,5 -"267",108,1,2,2,3,1,0,9,1,4.4,-0.0999999999999996,5 -"268",108,1,3,3,6,3,0,9,1,4.4,-0.0999999999999996,5 -"269",108,1,4,6,6.03229451886473,0.0322945188647275,0,9,1,4.4,-0.0999999999999996,5 -"270",109,1,1,0,2,2,0,-21,0,-4,0.399999999999999,-12 -"271",109,1,2,2,2.25915192539573,0.259151925395729,0,-21,0,-4,0.399999999999999,-12 -"272",110,1,1,0,2,2,0,9,1,-3.3,-1.2,-1 -"273",110,1,2,2,3,1,0,9,1,-3.3,-1.2,-1 -"274",110,1,3,3,6,3,0,9,1,-3.3,-1.2,-1 -"275",110,1,4,6,6.5,0.5,0,9,1,-3.3,-1.2,-1 -"276",110,1,5,6.5,8,1.5,0,9,1,-3.3,-1.2,-1 -"277",110,1,6,8,10,2,0,9,1,-3.3,-1.2,-1 -"278",111,1,1,0,0.325152826402772,0.325152826402772,1,5,0,4.5,1.1,13 -"279",112,1,1,0,1.25686535041525,1.25686535041525,1,-6,0,4.7,-0.0999999999999996,-4 -"280",113,1,1,0,1.55208718831898,1.55208718831898,1,11,1,6,-0.800000000000001,5 -"281",114,1,1,0,0.435924975615466,0.435924975615466,1,-19,1,0,1,-5 -"282",115,1,1,0,2,2,0,24,1,0.600000000000001,0.699999999999999,-9 -"283",115,1,2,2,3,1,0,24,1,0.600000000000001,0.699999999999999,-9 -"284",115,1,3,3,5.23509212109797,2.23509212109797,0,24,1,0.600000000000001,0.699999999999999,-9 -"285",116,1,1,0,0.0637783181329911,0.0637783181329911,1,13,0,6.4,1.4,-4 -"286",117,1,1,0,2,2,0,8,0,-2.4,-0.0999999999999996,2 -"287",117,1,2,2,3,1,0,8,0,-2.4,-0.0999999999999996,2 -"288",117,1,3,3,4.23267280881659,1.23267280881659,0,8,0,-2.4,-0.0999999999999996,2 -"289",118,1,1,0,0.718886975309205,0.718886975309205,1,17,0,6.7,-0.5,-6 -"290",119,1,1,0,1.56599357527231,1.56599357527231,1,-27,0,2.6,0.300000000000001,-3 -"291",120,1,1,0,0.463905361004219,0.463905361004219,1,9,0,2.3,-1.2,5 -"292",121,1,1,0,2,2,0,-16,1,1.4,-1.3,13 -"293",121,1,2,2,3,1,0,-16,1,1.4,-1.3,13 -"294",121,1,3,3,5.64880480967354,2.64880480967354,0,-16,1,1.4,-1.3,13 -"295",122,1,1,0,0.670138037251177,0.670138037251177,0,7,1,-1.6,-0.300000000000001,-4 -"296",123,1,1,0,1.58179680764229,1.58179680764229,0,-9,1,1.9,1.3,5 -"297",124,1,1,0,2,2,0,3,0,-2.1,0.399999999999999,9 -"298",124,1,2,2,2.30676930407626,0.306769304076255,1,3,0,-2.1,0.399999999999999,9 -"299",125,1,1,0,2,2,0,3,0,-3.5,-1,0 -"300",125,1,2,2,3,1,0,3,0,-3.5,-1,0 -"301",125,1,3,3,4.72591208890843,1.72591208890843,0,3,0,-3.5,-1,0 -"302",126,1,1,0,2,2,0,-36,0,3,-1,4 -"303",126,1,2,2,3,1,0,-36,0,3,-1,4 -"304",126,1,3,3,6,3,0,-36,0,3,-1,4 -"305",126,1,4,6,6.5,0.5,0,-36,0,3,-1,4 -"306",126,1,5,6.5,8,1.5,0,-36,0,3,-1,4 -"307",126,1,6,8,9.00654705965807,1.00654705965807,1,-36,0,3,-1,4 -"308",127,1,1,0,2,2,0,-7,0,-0.399999999999999,-0.9,3 -"309",127,1,2,2,3,1,0,-7,0,-0.399999999999999,-0.9,3 -"310",127,1,3,3,6,3,0,-7,0,-0.399999999999999,-0.9,3 -"311",127,1,4,6,6.5,0.5,0,-7,0,-0.399999999999999,-0.9,3 -"312",127,1,5,6.5,8,1.5,0,-7,0,-0.399999999999999,-0.9,3 -"313",127,1,6,8,10,2,0,-7,0,-0.399999999999999,-0.9,3 -"314",128,1,1,0,0.183209488413559,0.183209488413559,0,-19,0,3.9,-0.300000000000001,10 -"315",129,1,1,0,2,2,0,5,1,-2,-0.699999999999999,3 -"316",129,1,2,2,3,1,0,5,1,-2,-0.699999999999999,3 -"317",129,1,3,3,5.52811822554447,2.52811822554447,0,5,1,-2,-0.699999999999999,3 -"318",130,1,1,0,2,2,0,8,1,-7.2,0.800000000000001,1 -"319",130,1,2,2,3,1,0,8,1,-7.2,0.800000000000001,1 -"320",130,1,3,3,5.38768522974699,2.38768522974699,1,8,1,-7.2,0.800000000000001,1 -"321",131,1,1,0,2,2,0,-15,1,9.7,-1,-10 -"322",131,1,2,2,3,1,0,-15,1,9.7,-1,-10 -"323",131,1,3,3,6,3,0,-15,1,9.7,-1,-10 -"324",131,1,4,6,6.5,0.5,0,-15,1,9.7,-1,-10 -"325",131,1,5,6.5,8,1.5,0,-15,1,9.7,-1,-10 -"326",131,1,6,8,8.27183773623601,0.271837736236009,1,-15,1,9.7,-1,-10 -"327",132,1,1,0,2,2,0,-8,1,7.4,-0.699999999999999,-12 -"328",132,1,2,2,2.7199850649485,0.719985064948501,0,-8,1,7.4,-0.699999999999999,-12 -"329",133,1,1,0,2,2,0,8,1,5.9,-0.300000000000001,-7 -"330",133,1,2,2,3,1,0,8,1,5.9,-0.300000000000001,-7 -"331",133,1,3,3,5.23886680312787,2.23886680312787,0,8,1,5.9,-0.300000000000001,-7 -"332",134,1,1,0,0.448333139926894,0.448333139926894,1,6,0,1.2,-0.9,6 -"333",135,1,1,0,2,2,0,-40,1,5.2,1.2,2 -"334",135,1,2,2,3,1,0,-40,1,5.2,1.2,2 -"335",135,1,3,3,3.75580071064811,0.755800710648109,0,-40,1,5.2,1.2,2 -"336",136,1,1,0,1.85781629308954,1.85781629308954,0,8,1,3.9,-2.4,1 -"337",137,1,1,0,1.67048557167707,1.67048557167707,0,12,1,-5.2,-2.7,0 -"338",138,1,1,0,0.690803363531592,0.690803363531592,1,8,1,8.8,-0.699999999999999,4 -"339",139,1,1,0,0.0941704056769874,0.0941704056769874,0,-14,0,-0.600000000000001,-0.699999999999999,1 -"340",140,1,1,0,2,2,0,-2,0,-5.1,-0.4,-11 -"341",140,1,2,2,3,1,0,-2,0,-5.1,-0.4,-11 -"342",140,1,3,3,3.81544685355194,0.815446853551943,0,-2,0,-5.1,-0.4,-11 -"343",141,1,1,0,2,2,0,-2,1,-5.9,-0.5,1 -"344",141,1,2,2,3,1,0,-2,1,-5.9,-0.5,1 -"345",141,1,3,3,5.960693221114,2.960693221114,0,-2,1,-5.9,-0.5,1 -"346",142,1,1,0,0.412162469938368,0.412162469938368,0,15,0,1.7,-0.0999999999999996,-5 -"347",143,1,1,0,2,2,0,-6,1,-8.3,-0.6,2 -"348",143,1,2,2,3,1,0,-6,1,-8.3,-0.6,2 -"349",143,1,3,3,6,3,0,-6,1,-8.3,-0.6,2 -"350",143,1,4,6,6.5,0.5,0,-6,1,-8.3,-0.6,2 -"351",143,1,5,6.5,7.0485315700047,0.548531570004699,0,-6,1,-8.3,-0.6,2 -"352",144,1,1,0,2,2,0,13,0,-0.5,-1.4,-2 -"353",144,1,2,2,3,1,0,13,0,-0.5,-1.4,-2 -"354",144,1,3,3,6,3,0,13,0,-0.5,-1.4,-2 -"355",144,1,4,6,6.5,0.5,0,13,0,-0.5,-1.4,-2 -"356",144,1,5,6.5,8,1.5,0,13,0,-0.5,-1.4,-2 -"357",144,1,6,8,10,2,0,13,0,-0.5,-1.4,-2 -"358",145,1,1,0,2,2,0,22,1,-0.799999999999997,0.300000000000001,-5 -"359",145,1,2,2,3,1,0,22,1,-0.799999999999997,0.300000000000001,-5 -"360",145,1,3,3,6,3,0,22,1,-0.799999999999997,0.300000000000001,-5 -"361",145,1,4,6,6.5,0.5,0,22,1,-0.799999999999997,0.300000000000001,-5 -"362",145,1,5,6.5,8,1.5,0,22,1,-0.799999999999997,0.300000000000001,-5 -"363",145,1,6,8,10,2,0,22,1,-0.799999999999997,0.300000000000001,-5 -"364",146,1,1,0,2,2,0,-7,0,-4.3,0.399999999999999,6 -"365",146,1,2,2,2.62374578289096,0.623745782890956,0,-7,0,-4.3,0.399999999999999,6 -"366",147,1,1,0,2,2,0,-31,1,0.799999999999997,-0.199999999999999,6 -"367",147,1,2,2,3,1,0,-31,1,0.799999999999997,-0.199999999999999,6 -"368",147,1,3,3,6,3,0,-31,1,0.799999999999997,-0.199999999999999,6 -"369",147,1,4,6,6.5,0.5,0,-31,1,0.799999999999997,-0.199999999999999,6 -"370",147,1,5,6.5,8,1.5,0,-31,1,0.799999999999997,-0.199999999999999,6 -"371",147,1,6,8,9.550821160024,1.550821160024,0,-31,1,0.799999999999997,-0.199999999999999,6 -"372",148,1,1,0,0.543468897061735,0.543468897061735,1,32,1,-2.1,1.1,-5 -"373",149,1,1,0,2,2,0,6,1,-6.9,0.199999999999999,-3 -"374",149,1,2,2,3,1,0,6,1,-6.9,0.199999999999999,-3 -"375",149,1,3,3,6,3,0,6,1,-6.9,0.199999999999999,-3 -"376",149,1,4,6,6.5,0.5,0,6,1,-6.9,0.199999999999999,-3 -"377",149,1,5,6.5,8,1.5,0,6,1,-6.9,0.199999999999999,-3 -"378",149,1,6,8,10,2,0,6,1,-6.9,0.199999999999999,-3 -"379",150,1,1,0,0.037351882135465,0.037351882135465,0,2,0,4.4,0.100000000000001,-6 -"380",151,1,1,0,1.49076098816842,1.49076098816842,1,1,1,10,-0.300000000000001,4 -"381",152,1,1,0,1.50596218840163,1.50596218840163,1,13,1,7.4,0,0 -"382",153,1,1,0,1.63866688235749,1.63866688235749,0,10,0,-1.5,-0.0999999999999996,6 -"383",154,1,1,0,2,2,0,-8,0,1.6,0.300000000000001,0 -"384",154,1,2,2,2.55920439375315,0.559204393753153,1,-8,0,1.6,0.300000000000001,0 -"385",155,1,1,0,0.113288852271183,0.113288852271183,0,-11,0,-0.200000000000003,0,4 -"386",156,1,1,0,2,2,0,-3,1,-12.7,1,0 -"387",156,1,2,2,3,1,0,-3,1,-12.7,1,0 -"388",156,1,3,3,6,3,0,-3,1,-12.7,1,0 -"389",156,1,4,6,6.5,0.5,0,-3,1,-12.7,1,0 -"390",156,1,5,6.5,8,1.5,0,-3,1,-12.7,1,0 -"391",156,1,6,8,10,2,0,-3,1,-12.7,1,0 -"392",157,1,1,0,1.82780210748175,1.82780210748175,0,9,1,-2.9,-0.9,-10 -"393",158,1,1,0,2,2,0,-28,1,-5.2,0.399999999999999,-3 -"394",158,1,2,2,3,1,0,-28,1,-5.2,0.399999999999999,-3 -"395",158,1,3,3,4.56510552710246,1.56510552710246,0,-28,1,-5.2,0.399999999999999,-3 -"396",159,1,1,0,2,2,0,6,0,-3.9,-0.6,0 -"397",159,1,2,2,3,1,0,6,0,-3.9,-0.6,0 -"398",159,1,3,3,3.63456110391947,0.634561103919472,1,6,0,-3.9,-0.6,0 -"399",160,1,1,0,2,2,0,-21,1,3.9,2.2,3 -"400",160,1,2,2,3,1,0,-21,1,3.9,2.2,3 -"401",160,1,3,3,6,3,0,-21,1,3.9,2.2,3 -"402",160,1,4,6,6.5,0.5,0,-21,1,3.9,2.2,3 -"403",160,1,5,6.5,6.88816925142504,0.388169251425043,0,-21,1,3.9,2.2,3 -"404",161,1,1,0,0.706085564442944,0.706085564442944,1,-4,1,1.3,-0.6,6 -"405",162,1,1,0,1.38431453754578,1.38431453754578,1,37,1,1.7,-0.6,-5 -"406",163,1,1,0,0.614190304751206,0.614190304751206,1,-14,0,3,0.399999999999999,-1 -"407",164,1,1,0,2,2,0,-4,0,-7.4,-2.4,-4 -"408",164,1,2,2,2.84852976022927,0.848529760229274,0,-4,0,-7.4,-2.4,-4 -"409",165,1,1,0,1.0001479489376,1.0001479489376,1,20,0,-4.4,0.199999999999999,11 -"410",166,1,1,0,2,2,0,-2,1,10.4,0.899999999999999,-1 -"411",166,1,2,2,3,1,0,-2,1,10.4,0.899999999999999,-1 -"412",166,1,3,3,5.16820837056756,2.16820837056756,0,-2,1,10.4,0.899999999999999,-1 -"413",167,1,1,0,2,2,0,-5,1,1.3,0,-6 -"414",167,1,2,2,3,1,0,-5,1,1.3,0,-6 -"415",167,1,3,3,5.38380973535817,2.38380973535817,0,-5,1,1.3,0,-6 -"416",168,1,1,0,0.116580222531269,0.116580222531269,1,10,1,-2.8,-0.4,2 -"417",169,1,1,0,0.553369403073491,0.553369403073491,1,13,0,0.399999999999999,-2.2,3 -"418",170,1,1,0,2,2,0,-19,0,3,1.4,-5 -"419",170,1,2,2,3,1,0,-19,0,3,1.4,-5 -"420",170,1,3,3,6,3,0,-19,0,3,1.4,-5 -"421",170,1,4,6,6.5,0.5,0,-19,0,3,1.4,-5 -"422",170,1,5,6.5,8,1.5,0,-19,0,3,1.4,-5 -"423",170,1,6,8,9.09627843917537,1.09627843917537,1,-19,0,3,1.4,-5 -"424",171,1,1,0,2,2,0,-20,1,-3.7,-0.9,-2 -"425",171,1,2,2,3,1,0,-20,1,-3.7,-0.9,-2 -"426",171,1,3,3,3.27764891289296,0.277648912892963,0,-20,1,-3.7,-0.9,-2 -"427",172,1,1,0,1.24732476584477,1.24732476584477,1,-1,1,1.9,1.5,11 -"428",173,1,1,0,0.304013330396319,0.304013330396319,1,11,1,2.1,-0.6,7 -"429",174,1,1,0,2,2,0,-25,1,2.8,0.899999999999999,-1 -"430",174,1,2,2,3,1,0,-25,1,2.8,0.899999999999999,-1 -"431",174,1,3,3,6,3,0,-25,1,2.8,0.899999999999999,-1 -"432",174,1,4,6,6.5,0.5,0,-25,1,2.8,0.899999999999999,-1 -"433",174,1,5,6.5,8,1.5,0,-25,1,2.8,0.899999999999999,-1 -"434",174,1,6,8,10,2,0,-25,1,2.8,0.899999999999999,-1 -"435",175,1,1,0,0.11344558658343,0.11344558658343,1,-9,1,0.700000000000003,0.699999999999999,1 -"436",176,1,1,0,2,2,0,-14,1,1,-1,-4 -"437",176,1,2,2,3,1,0,-14,1,1,-1,-4 -"438",176,1,3,3,4.85569206865891,1.85569206865891,0,-14,1,1,-1,-4 -"439",177,1,1,0,2,2,0,-26,1,-2.9,1,-5 -"440",177,1,2,2,2.86818506285559,0.868185062855585,0,-26,1,-2.9,1,-5 -"441",178,1,1,0,2,2,0,-34,1,-2.9,0.399999999999999,2 -"442",178,1,2,2,3,1,0,-34,1,-2.9,0.399999999999999,2 -"443",178,1,3,3,6,3,0,-34,1,-2.9,0.399999999999999,2 -"444",178,1,4,6,6.5,0.5,0,-34,1,-2.9,0.399999999999999,2 -"445",178,1,5,6.5,8,1.5,0,-34,1,-2.9,0.399999999999999,2 -"446",178,1,6,8,10,2,0,-34,1,-2.9,0.399999999999999,2 -"447",179,1,1,0,0.515338530220008,0.515338530220008,1,-11,0,-2.5,1.6,5 -"448",180,1,1,0,2,2,0,-12,1,-6,0.100000000000001,-5 -"449",180,1,2,2,3,1,0,-12,1,-6,0.100000000000001,-5 -"450",180,1,3,3,6,3,0,-12,1,-6,0.100000000000001,-5 -"451",180,1,4,6,6.5,0.5,0,-12,1,-6,0.100000000000001,-5 -"452",180,1,5,6.5,6.61829843303818,0.118298433038176,0,-12,1,-6,0.100000000000001,-5 -"453",181,1,1,0,2,2,0,19,1,3.6,-0.9,-1 -"454",181,1,2,2,3,1,0,19,1,3.6,-0.9,-1 -"455",181,1,3,3,5.06319002187401,2.06319002187401,0,19,1,3.6,-0.9,-1 -"456",182,1,1,0,1.60435160985153,1.60435160985153,1,-1,0,-9.8,1,2 -"457",183,1,1,0,2,2,0,0,0,-7.3,-1.1,-3 -"458",183,1,2,2,3,1,0,0,0,-7.3,-1.1,-3 -"459",183,1,3,3,6,3,0,0,0,-7.3,-1.1,-3 -"460",183,1,4,6,6.5,0.5,0,0,0,-7.3,-1.1,-3 -"461",183,1,5,6.5,8,1.5,0,0,0,-7.3,-1.1,-3 -"462",183,1,6,8,9.86597623286895,1.86597623286895,0,0,0,-7.3,-1.1,-3 -"463",184,1,1,0,2,2,0,-3,1,6.7,0,-1 -"464",184,1,2,2,3,1,0,-3,1,6.7,0,-1 -"465",184,1,3,3,5.34301424127543,2.34301424127543,0,-3,1,6.7,0,-1 -"466",185,1,1,0,2,2,0,-43,1,4.6,1.6,10 -"467",185,1,2,2,2.4009296994246,0.400929699424598,0,-43,1,4.6,1.6,10 -"468",186,1,1,0,2,2,0,-16,1,5,-1.5,0 -"469",186,1,2,2,2.12714772852687,0.127147728526871,0,-16,1,5,-1.5,0 -"470",187,1,1,0,1.36800566663767,1.36800566663767,1,3,1,-1.9,-0.800000000000001,-2 -"471",188,1,1,0,2,2,0,-14,0,1.2,-0.699999999999999,2 -"472",188,1,2,2,3,1,0,-14,0,1.2,-0.699999999999999,2 -"473",188,1,3,3,6,3,0,-14,0,1.2,-0.699999999999999,2 -"474",188,1,4,6,6.44007610214853,0.440076102148529,0,-14,0,1.2,-0.699999999999999,2 -"475",189,1,1,0,2,2,0,-12,0,-1.7,-1.6,2 -"476",189,1,2,2,3,1,0,-12,0,-1.7,-1.6,2 -"477",189,1,3,3,6,3,0,-12,0,-1.7,-1.6,2 -"478",189,1,4,6,6.5,0.5,0,-12,0,-1.7,-1.6,2 -"479",189,1,5,6.5,8,1.5,0,-12,0,-1.7,-1.6,2 -"480",189,1,6,8,10,2,0,-12,0,-1.7,-1.6,2 -"481",190,1,1,0,0.357000337169002,0.357000337169002,0,19,0,-2.1,1.2,-4 -"482",191,1,1,0,2,2,0,-16,1,-1,-1,-2 -"483",191,1,2,2,3,1,0,-16,1,-1,-1,-2 -"484",191,1,3,3,4.69576263598928,1.69576263598928,1,-16,1,-1,-1,-2 -"485",192,1,1,0,2,2,0,11,1,1.3,-0.0999999999999996,-7 -"486",192,1,2,2,2.29602859112545,0.296028591125446,0,11,1,1.3,-0.0999999999999996,-7 -"487",193,1,1,0,2,2,0,-26,0,-0.100000000000001,1.4,0 -"488",193,1,2,2,2.8119002343709,0.811900234370898,0,-26,0,-0.100000000000001,1.4,0 -"489",194,1,1,0,2,2,0,10,1,0.399999999999999,-0.4,1 -"490",194,1,2,2,3,1,0,10,1,0.399999999999999,-0.4,1 -"491",194,1,3,3,6,3,0,10,1,0.399999999999999,-0.4,1 -"492",194,1,4,6,6.5,0.5,0,10,1,0.399999999999999,-0.4,1 -"493",194,1,5,6.5,8,1.5,0,10,1,0.399999999999999,-0.4,1 -"494",194,1,6,8,10,2,0,10,1,0.399999999999999,-0.4,1 -"495",195,1,1,0,0.32370750506778,0.32370750506778,1,22,1,1.2,-0.199999999999999,1 -"496",196,1,1,0,0.659627598753196,0.659627598753196,0,-2,0,0.600000000000001,-0.6,6 -"497",197,1,1,0,2,2,0,6,1,-1.1,0.600000000000001,2 -"498",197,1,2,2,2.93116632856682,0.931166328566818,1,6,1,-1.1,0.600000000000001,2 -"499",198,1,1,0,0.121809764600107,0.121809764600107,1,5,1,8,0.399999999999999,-2 -"500",199,1,1,0,2,2,0,15,0,-1.9,-0.5,-1 -"501",199,1,2,2,3,1,0,15,0,-1.9,-0.5,-1 -"502",199,1,3,3,6,3,0,15,0,-1.9,-0.5,-1 -"503",199,1,4,6,6.5,0.5,0,15,0,-1.9,-0.5,-1 -"504",199,1,5,6.5,6.85193485627715,0.351934856277146,1,15,0,-1.9,-0.5,-1 -"505",200,1,1,0,2,2,0,5,1,5.3,0.600000000000001,-9 -"506",200,1,2,2,2.21801035305279,0.218010353052795,0,5,1,5.3,0.600000000000001,-9 -"507",201,1,1,0,0.434040724290995,0.434040724290995,1,-1,0,4.4,0.100000000000001,-10 -"508",202,1,1,0,2,2,0,-17,0,0.700000000000003,0.899999999999999,2 -"509",202,1,2,2,3,1,0,-17,0,0.700000000000003,0.899999999999999,2 -"510",202,1,3,3,3.96546042005786,0.965460420057857,0,-17,0,0.700000000000003,0.899999999999999,2 -"511",203,1,1,0,2,2,0,-20,0,-3.6,-1,0 -"512",203,1,2,2,3,1,0,-20,0,-3.6,-1,0 -"513",203,1,3,3,6,3,0,-20,0,-3.6,-1,0 -"514",203,1,4,6,6.18370868617832,0.183708686178322,0,-20,0,-3.6,-1,0 -"515",204,1,1,0,0.649280320857334,0.649280320857334,0,-2,1,2.2,-1.3,-13 -"516",205,1,1,0,0.321920306420802,0.321920306420802,1,20,1,-0.5,0.699999999999999,0 -"517",206,1,1,0,0.373260667211079,0.373260667211079,1,21,0,0.5,0.399999999999999,4 -"518",207,1,1,0,2,2,0,-16,1,1.7,0.199999999999999,0 -"519",207,1,2,2,3,1,0,-16,1,1.7,0.199999999999999,0 -"520",207,1,3,3,6,3,0,-16,1,1.7,0.199999999999999,0 -"521",207,1,4,6,6.5,0.5,0,-16,1,1.7,0.199999999999999,0 -"522",207,1,5,6.5,8,1.5,0,-16,1,1.7,0.199999999999999,0 -"523",207,1,6,8,10,2,0,-16,1,1.7,0.199999999999999,0 -"524",208,1,1,0,2,2,0,12,0,-5.4,0.300000000000001,1 -"525",208,1,2,2,3,1,0,12,0,-5.4,0.300000000000001,1 -"526",208,1,3,3,3.29683978937297,0.296839789372967,1,12,0,-5.4,0.300000000000001,1 -"527",209,1,1,0,0.168135483708985,0.168135483708985,1,-17,1,5.6,0.199999999999999,1 -"528",210,1,1,0,2,2,0,8,1,-3.6,-1.6,-7 -"529",210,1,2,2,3,1,0,8,1,-3.6,-1.6,-7 -"530",210,1,3,3,6,3,0,8,1,-3.6,-1.6,-7 -"531",210,1,4,6,6.5,0.5,0,8,1,-3.6,-1.6,-7 -"532",210,1,5,6.5,8,1.5,0,8,1,-3.6,-1.6,-7 -"533",210,1,6,8,10,2,0,8,1,-3.6,-1.6,-7 -"534",211,1,1,0,1.71995058840129,1.71995058840129,1,0,0,-4,-0.699999999999999,1 -"535",212,1,1,0,1.78346358703044,1.78346358703044,1,15,1,-0.899999999999999,0.600000000000001,-2 -"536",213,1,1,0,0.542961128215312,0.542961128215312,1,11,0,-3.6,0.199999999999999,-2 -"537",214,1,1,0,0.0498079766685843,0.0498079766685843,1,17,1,-5.5,0.199999999999999,-6 -"538",215,1,1,0,0.923931887295448,0.923931887295448,0,-2,0,0,1.5,-6 -"539",216,1,1,0,2,2,0,0,0,-4.9,0.399999999999999,-3 -"540",216,1,2,2,3,1,0,0,0,-4.9,0.399999999999999,-3 -"541",216,1,3,3,6,3,0,0,0,-4.9,0.399999999999999,-3 -"542",216,1,4,6,6.5,0.5,0,0,0,-4.9,0.399999999999999,-3 -"543",216,1,5,6.5,8,1.5,0,0,0,-4.9,0.399999999999999,-3 -"544",216,1,6,8,8.55123010824759,0.551230108247585,0,0,0,-4.9,0.399999999999999,-3 -"545",217,1,1,0,0.111998434073306,0.111998434073306,1,7,0,-6.3,0.600000000000001,3 -"546",218,1,1,0,0.868583910716144,0.868583910716144,1,-6,0,-3.8,0.5,-2 -"547",219,1,1,0,0.0986703130710544,0.0986703130710544,1,1,0,2.5,0.300000000000001,-5 -"548",220,1,1,0,2,2,0,-18,0,2.9,-0.699999999999999,-4 -"549",220,1,2,2,3,1,0,-18,0,2.9,-0.699999999999999,-4 -"550",220,1,3,3,6,3,0,-18,0,2.9,-0.699999999999999,-4 -"551",220,1,4,6,6.5,0.5,0,-18,0,2.9,-0.699999999999999,-4 -"552",220,1,5,6.5,8,1.5,0,-18,0,2.9,-0.699999999999999,-4 -"553",220,1,6,8,8.11301515588519,0.113015155885187,1,-18,0,2.9,-0.699999999999999,-4 -"554",221,1,1,0,2,2,0,-2,1,3.4,-0.800000000000001,0 -"555",221,1,2,2,3,1,0,-2,1,3.4,-0.800000000000001,0 -"556",221,1,3,3,5.39332918988938,2.39332918988938,0,-2,1,3.4,-0.800000000000001,0 -"557",222,1,1,0,0.0943215961262827,0.0943215961262827,1,5,0,-5,0.5,-1 -"558",223,1,1,0,0.227887208265714,0.227887208265714,0,-24,0,-9,-0.0999999999999996,1 -"559",224,1,1,0,0.0273399910063325,0.0273399910063325,0,-15,1,0.5,-0.0999999999999996,0 -"560",225,1,1,0,1.29233300487392,1.29233300487392,1,-28,1,1.2,1.7,-1 -"561",226,1,1,0,1.11830349875874,1.11830349875874,0,18,1,0.600000000000001,-0.300000000000001,3 -"562",227,1,1,0,2,2,0,20,1,5.1,-0.5,-4 -"563",227,1,2,2,3,1,0,20,1,5.1,-0.5,-4 -"564",227,1,3,3,6,3,0,20,1,5.1,-0.5,-4 -"565",227,1,4,6,6.5,0.5,0,20,1,5.1,-0.5,-4 -"566",227,1,5,6.5,8,1.5,0,20,1,5.1,-0.5,-4 -"567",227,1,6,8,8.9539649094485,0.953964909448497,0,20,1,5.1,-0.5,-4 -"568",228,1,1,0,0.831946010288743,0.831946010288743,0,1,1,0.100000000000001,-0.800000000000001,-3 -"569",229,1,1,0,0.272845085559852,0.272845085559852,0,5,0,-0.5,-0.199999999999999,-2 -"570",230,1,1,0,2,2,0,0,0,4.1,-0.0999999999999996,1 -"571",230,1,2,2,3,1,0,0,0,4.1,-0.0999999999999996,1 -"572",230,1,3,3,6,3,0,0,0,4.1,-0.0999999999999996,1 -"573",230,1,4,6,6.5,0.5,0,0,0,4.1,-0.0999999999999996,1 -"574",230,1,5,6.5,8,1.5,0,0,0,4.1,-0.0999999999999996,1 -"575",230,1,6,8,10,2,0,0,0,4.1,-0.0999999999999996,1 -"576",231,1,1,0,2,2,0,7,0,-6.5,-1.1,3 -"577",231,1,2,2,2.1171034252457,0.117103425245705,0,7,0,-6.5,-1.1,3 -"578",232,1,1,0,2,2,0,-35,0,-5.9,1.9,1 -"579",232,1,2,2,3,1,0,-35,0,-5.9,1.9,1 -"580",232,1,3,3,6,3,0,-35,0,-5.9,1.9,1 -"581",232,1,4,6,6.5,0.5,0,-35,0,-5.9,1.9,1 -"582",232,1,5,6.5,8,1.5,0,-35,0,-5.9,1.9,1 -"583",232,1,6,8,10,2,0,-35,0,-5.9,1.9,1 -"584",233,1,1,0,0.0476031228542356,0.0476031228542356,1,26,0,-1.2,0.100000000000001,0 -"585",234,1,1,0,0.179746208475179,0.179746208475179,1,10,0,-2,0.100000000000001,-9 -"586",235,1,1,0,0.265906424593537,0.265906424593537,1,1,0,-2.5,-1,-2 -"587",236,1,1,0,0.229962643594422,0.229962643594422,1,13,1,2.7,-1.3,1 -"588",237,1,1,0,0.272757502128181,0.272757502128181,1,-3,1,-4.5,0.800000000000001,1 -"589",238,1,1,0,1.75720357833798,1.75720357833798,1,11,1,-5.7,-0.800000000000001,-6 -"590",239,1,1,0,2,2,0,-5,1,-2.8,-0.5,-2 -"591",239,1,2,2,2.80065060937039,0.800650609370391,0,-5,1,-2.8,-0.5,-2 -"592",240,1,1,0,2,2,0,-28,1,3,-0.199999999999999,-6 -"593",240,1,2,2,3,1,0,-28,1,3,-0.199999999999999,-6 -"594",240,1,3,3,3.02073066318129,0.0207306631812858,0,-28,1,3,-0.199999999999999,-6 -"595",241,1,1,0,1.11457120308023,1.11457120308023,0,7,0,-3.6,0.5,-1 -"596",242,1,1,0,1.95810994518478,1.95810994518478,0,-13,0,1.4,-0.5,-5 -"597",243,1,1,0,0.382143068372456,0.382143068372456,1,10,1,5.7,2.3,-5 -"598",244,1,1,0,1.00326029171007,1.00326029171007,1,38,1,-3.7,-0.300000000000001,-4 -"599",245,1,1,0,2,2,0,12,1,-5.3,0.699999999999999,2 -"600",245,1,2,2,2.30886169338475,0.308861693384746,0,12,1,-5.3,0.699999999999999,2 -"601",246,1,1,0,1.11470143809235,1.11470143809235,0,-11,0,-4.1,-0.699999999999999,-15 -"602",247,1,1,0,0.618403519332169,0.618403519332169,1,-12,1,-4.9,1.4,4 -"603",248,1,1,0,2,2,0,-18,1,-8,0.300000000000001,8 -"604",248,1,2,2,2.81818361537589,0.818183615375887,0,-18,1,-8,0.300000000000001,8 -"605",249,1,1,0,0.664467260631991,0.664467260631991,1,-14,1,3.6,-0.0999999999999996,5 -"606",250,1,1,0,2,2,0,-13,1,-1.7,0.5,0 -"607",250,1,2,2,3,1,0,-13,1,-1.7,0.5,0 -"608",250,1,3,3,6,3,0,-13,1,-1.7,0.5,0 -"609",250,1,4,6,6.5,0.5,0,-13,1,-1.7,0.5,0 -"610",250,1,5,6.5,8,1.5,0,-13,1,-1.7,0.5,0 -"611",250,1,6,8,10,2,0,-13,1,-1.7,0.5,0 -"612",251,1,1,0,2,2,0,-39,1,7.2,1.7,-7 -"613",251,1,2,2,2.41791947970301,0.417919479703007,0,-39,1,7.2,1.7,-7 -"614",252,1,1,0,0.663907826733802,0.663907826733802,0,-21,1,0.299999999999997,0.5,12 -"615",253,1,1,0,2,2,0,-29,1,-3.4,0.899999999999999,-3 -"616",253,1,2,2,3,1,0,-29,1,-3.4,0.899999999999999,-3 -"617",253,1,3,3,6,3,0,-29,1,-3.4,0.899999999999999,-3 -"618",253,1,4,6,6.5,0.5,0,-29,1,-3.4,0.899999999999999,-3 -"619",253,1,5,6.5,7.31919872653604,0.81919872653604,0,-29,1,-3.4,0.899999999999999,-3 -"620",254,1,1,0,1.35920742767963,1.35920742767963,0,3,1,6.7,0.800000000000001,0 -"621",255,1,1,0,0.55304035400749,0.55304035400749,1,-8,0,1.5,0.399999999999999,13 -"622",256,1,1,0,0.173903723124011,0.173903723124011,1,31,1,7.4,1.2,4 -"623",257,1,1,0,0.500466173424969,0.500466173424969,0,-5,0,-4.7,-0.699999999999999,-9 -"624",258,1,1,0,2,2,0,-23,0,-2.6,-0.199999999999999,4 -"625",258,1,2,2,2.97648018086564,0.976480180865642,0,-23,0,-2.6,-0.199999999999999,4 -"626",259,1,1,0,0.394977858896956,0.394977858896956,1,3,1,1.4,1.6,0 -"627",260,1,1,0,1.94529251122657,1.94529251122657,1,1,1,-4,0.800000000000001,-5 -"628",261,1,1,0,0.201704519321975,0.201704519321975,1,18,1,1.3,-1.3,1 -"629",262,1,1,0,0.472291087094747,0.472291087094747,1,14,1,-2.6,0,-4 -"630",263,1,1,0,0.749856187348364,0.749856187348364,1,16,1,0.799999999999997,0.199999999999999,12 -"631",264,1,1,0,0.564092450766188,0.564092450766188,1,13,0,-0.700000000000003,-0.800000000000001,8 -"632",265,1,1,0,2,2,0,-8,1,0.5,-1.4,6 -"633",265,1,2,2,2.23479039584251,0.234790395842507,0,-8,1,0.5,-1.4,6 -"634",266,1,1,0,0.803438373655433,0.803438373655433,1,11,0,1,0.899999999999999,2 -"635",267,1,1,0,0.850754752482696,0.850754752482696,1,31,1,0.899999999999999,0.899999999999999,-2 -"636",268,1,1,0,1.3613462594278,1.3613462594278,1,-8,1,5.7,0.5,6 -"637",269,1,1,0,1.05141004374942,1.05141004374942,1,11,1,3.6,0.199999999999999,7 -"638",270,1,1,0,0.72171087601028,0.72171087601028,0,-2,0,-2,0,-3 -"639",271,1,1,0,0.16490950870112,0.16490950870112,1,12,1,6.3,1.1,-5 -"640",272,1,1,0,2,2,0,9,1,1.9,-0.199999999999999,-6 -"641",272,1,2,2,3,1,0,9,1,1.9,-0.199999999999999,-6 -"642",272,1,3,3,6,3,0,9,1,1.9,-0.199999999999999,-6 -"643",272,1,4,6,6.5,0.5,0,9,1,1.9,-0.199999999999999,-6 -"644",272,1,5,6.5,8,1.5,0,9,1,1.9,-0.199999999999999,-6 -"645",272,1,6,8,10,2,0,9,1,1.9,-0.199999999999999,-6 -"646",273,1,1,0,2,2,0,-12,1,2.8,0,8 -"647",273,1,2,2,3,1,0,-12,1,2.8,0,8 -"648",273,1,3,3,6,3,0,-12,1,2.8,0,8 -"649",273,1,4,6,6.30512339849228,0.305123398492278,0,-12,1,2.8,0,8 -"650",274,1,1,0,2,2,0,-42,1,-3.3,0,2 -"651",274,1,2,2,3,1,0,-42,1,-3.3,0,2 -"652",274,1,3,3,6,3,0,-42,1,-3.3,0,2 -"653",274,1,4,6,6.5,0.5,0,-42,1,-3.3,0,2 -"654",274,1,5,6.5,8,1.5,0,-42,1,-3.3,0,2 -"655",274,1,6,8,9.72363293381717,1.72363293381717,0,-42,1,-3.3,0,2 -"656",275,1,1,0,1.44156039762779,1.44156039762779,0,-39,1,-0.299999999999997,-0.9,-4 -"657",276,1,1,0,2,2,0,-5,0,-0.700000000000003,0.600000000000001,0 -"658",276,1,2,2,3,1,0,-5,0,-0.700000000000003,0.600000000000001,0 -"659",276,1,3,3,6,3,0,-5,0,-0.700000000000003,0.600000000000001,0 -"660",276,1,4,6,6.5,0.5,0,-5,0,-0.700000000000003,0.600000000000001,0 -"661",276,1,5,6.5,6.87585200885066,0.375852008850663,0,-5,0,-0.700000000000003,0.600000000000001,0 -"662",277,1,1,0,1.14529045905279,1.14529045905279,1,-5,0,0.299999999999997,-0.6,6 -"663",278,1,1,0,2,2,0,5,1,-1,1.1,0 -"664",278,1,2,2,2.24937170188917,0.249371701889168,1,5,1,-1,1.1,0 -"665",279,1,1,0,2,2,0,-24,1,-3.1,-0.300000000000001,-12 -"666",279,1,2,2,3,1,0,-24,1,-3.1,-0.300000000000001,-12 -"667",279,1,3,3,6,3,0,-24,1,-3.1,-0.300000000000001,-12 -"668",279,1,4,6,6.5,0.5,0,-24,1,-3.1,-0.300000000000001,-12 -"669",279,1,5,6.5,8,1.5,0,-24,1,-3.1,-0.300000000000001,-12 -"670",279,1,6,8,10,2,0,-24,1,-3.1,-0.300000000000001,-12 -"671",280,1,1,0,2,2,0,-8,1,-1.1,0,0 -"672",280,1,2,2,3,1,0,-8,1,-1.1,0,0 -"673",280,1,3,3,3.98290883928891,0.982908839288909,0,-8,1,-1.1,0,0 -"674",281,1,1,0,0.569028059157599,0.569028059157599,1,-16,0,3,-0.300000000000001,14 -"675",282,1,1,0,1.39462246480754,1.39462246480754,1,0,0,1,0.600000000000001,3 -"676",283,1,1,0,2,2,0,-19,0,4.4,-1.3,7 -"677",283,1,2,2,3,1,0,-19,0,4.4,-1.3,7 -"678",283,1,3,3,4.31591442966804,1.31591442966804,1,-19,0,4.4,-1.3,7 -"679",284,1,1,0,2,2,0,-10,0,1.2,0.600000000000001,-8 -"680",284,1,2,2,3,1,0,-10,0,1.2,0.600000000000001,-8 -"681",284,1,3,3,6,3,0,-10,0,1.2,0.600000000000001,-8 -"682",284,1,4,6,6.5,0.5,0,-10,0,1.2,0.600000000000001,-8 -"683",284,1,5,6.5,7.97236343113234,1.47236343113234,1,-10,0,1.2,0.600000000000001,-8 -"684",285,1,1,0,2,2,0,-8,0,-1.3,0.899999999999999,-4 -"685",285,1,2,2,3,1,0,-8,0,-1.3,0.899999999999999,-4 -"686",285,1,3,3,6,3,0,-8,0,-1.3,0.899999999999999,-4 -"687",285,1,4,6,6.5,0.5,0,-8,0,-1.3,0.899999999999999,-4 -"688",285,1,5,6.5,8,1.5,0,-8,0,-1.3,0.899999999999999,-4 -"689",285,1,6,8,9.44992835490948,1.44992835490948,0,-8,0,-1.3,0.899999999999999,-4 -"690",286,1,1,0,0.0357888624982297,0.0357888624982297,0,8,0,-0.700000000000003,1.5,1 -"691",287,1,1,0,2,2,0,-20,0,6.5,-1.1,-3 -"692",287,1,2,2,2.72173083607585,0.721730836075853,0,-20,0,6.5,-1.1,-3 -"693",288,1,1,0,0.655949430017875,0.655949430017875,1,-13,0,-0.799999999999997,0.100000000000001,-2 -"694",289,1,1,0,0.302146484167701,0.302146484167701,1,43,1,-5.8,-0.4,2 -"695",290,1,1,0,1.8657783733235,1.8657783733235,1,-5,0,2.3,-0.5,0 -"696",291,1,1,0,2,2,0,-5,1,-4.8,-1.1,-11 -"697",291,1,2,2,3,1,0,-5,1,-4.8,-1.1,-11 -"698",291,1,3,3,3.5263629873475,0.526362987347501,0,-5,1,-4.8,-1.1,-11 -"699",292,1,1,0,1.85726975999216,1.85726975999216,1,-8,0,1,-0.5,2 -"700",293,1,1,0,2,2,0,12,0,-3.5,0.899999999999999,-11 -"701",293,1,2,2,3,1,0,12,0,-3.5,0.899999999999999,-11 -"702",293,1,3,3,6,3,0,12,0,-3.5,0.899999999999999,-11 -"703",293,1,4,6,6.5,0.5,0,12,0,-3.5,0.899999999999999,-11 -"704",293,1,5,6.5,7.31364817328336,0.813648173283355,0,12,0,-3.5,0.899999999999999,-11 -"705",294,1,1,0,2,2,0,-2,1,-0.700000000000003,0.300000000000001,-5 -"706",294,1,2,2,3,1,0,-2,1,-0.700000000000003,0.300000000000001,-5 -"707",294,1,3,3,6,3,0,-2,1,-0.700000000000003,0.300000000000001,-5 -"708",294,1,4,6,6.5,0.5,0,-2,1,-0.700000000000003,0.300000000000001,-5 -"709",294,1,5,6.5,8,1.5,0,-2,1,-0.700000000000003,0.300000000000001,-5 -"710",294,1,6,8,10,2,0,-2,1,-0.700000000000003,0.300000000000001,-5 -"711",295,1,1,0,0.14690393555585,0.14690393555585,0,-2,0,-3.8,0,-7 -"712",296,1,1,0,1.15315458167531,1.15315458167531,1,-2,0,-3.9,0.399999999999999,0 -"713",297,1,1,0,2,2,0,-14,0,-6.8,-0.800000000000001,5 -"714",297,1,2,2,3,1,0,-14,0,-6.8,-0.800000000000001,5 -"715",297,1,3,3,4.90183873702025,1.90183873702025,1,-14,0,-6.8,-0.800000000000001,5 -"716",298,1,1,0,2,2,0,-13,0,-3.6,-0.5,-7 -"717",298,1,2,2,3,1,0,-13,0,-3.6,-0.5,-7 -"718",298,1,3,3,6,3,0,-13,0,-3.6,-0.5,-7 -"719",298,1,4,6,6.5,0.5,0,-13,0,-3.6,-0.5,-7 -"720",298,1,5,6.5,7.31441137998991,0.814411379989905,0,-13,0,-3.6,-0.5,-7 -"721",299,1,1,0,0.639087858737735,0.639087858737735,1,-2,0,0.5,0.199999999999999,4 -"722",300,1,1,0,0.344658913160662,0.344658913160662,0,5,1,4.6,-0.9,-1 -"723",301,1,1,0,2,2,0,-9,0,-6.4,-1.5,-2 -"724",301,1,2,2,3,1,0,-9,0,-6.4,-1.5,-2 -"725",301,1,3,3,6,3,0,-9,0,-6.4,-1.5,-2 -"726",301,1,4,6,6.5,0.5,0,-9,0,-6.4,-1.5,-2 -"727",301,1,5,6.5,8,1.5,0,-9,0,-6.4,-1.5,-2 -"728",301,1,6,8,10,2,0,-9,0,-6.4,-1.5,-2 -"729",302,1,1,0,1.39031626856431,1.39031626856431,0,-34,0,0.399999999999999,-0.4,1 -"730",303,1,1,0,1.68248551838557,1.68248551838557,0,8,0,-2.4,-1.3,0 -"731",304,1,1,0,2,2,0,23,0,8.7,-2.5,4 -"732",304,1,2,2,3,1,0,23,0,8.7,-2.5,4 -"733",304,1,3,3,3.01338890720068,0.013388907200683,0,23,0,8.7,-2.5,4 -"734",305,1,1,0,1.87555102544597,1.87555102544597,1,-9,1,6.7,-0.0999999999999996,4 -"735",306,1,1,0,2,2,0,-13,1,5.1,1.2,-7 -"736",306,1,2,2,3,1,0,-13,1,5.1,1.2,-7 -"737",306,1,3,3,6,3,0,-13,1,5.1,1.2,-7 -"738",306,1,4,6,6.5,0.5,0,-13,1,5.1,1.2,-7 -"739",306,1,5,6.5,6.82975518136275,0.329755181362752,0,-13,1,5.1,1.2,-7 -"740",307,1,1,0,0.0900727773467165,0.0900727773467165,0,-4,1,-10.8,-0.199999999999999,-2 -"741",308,1,1,0,1.86586312625716,1.86586312625716,1,4,1,8.2,-0.0999999999999996,0 -"742",309,1,1,0,2,2,0,-4,1,3.6,-0.199999999999999,0 -"743",309,1,2,2,3,1,0,-4,1,3.6,-0.199999999999999,0 -"744",309,1,3,3,3.72036875190971,0.720368751909709,0,-4,1,3.6,-0.199999999999999,0 -"745",310,1,1,0,0.0273269267326722,0.0273269267326722,1,-14,1,3.5,0.300000000000001,2 -"746",311,1,1,0,1.46337490643365,1.46337490643365,0,3,1,-2,-0.699999999999999,2 -"747",312,1,1,0,2,2,0,0,0,2.4,-1.1,-10 -"748",312,1,2,2,3,1,0,0,0,2.4,-1.1,-10 -"749",312,1,3,3,5.27486788326666,2.27486788326666,0,0,0,2.4,-1.1,-10 -"750",313,1,1,0,2,2,0,-4,0,1.5,-0.800000000000001,-7 -"751",313,1,2,2,3,1,0,-4,0,1.5,-0.800000000000001,-7 -"752",313,1,3,3,6,3,0,-4,0,1.5,-0.800000000000001,-7 -"753",313,1,4,6,6.5,0.5,0,-4,0,1.5,-0.800000000000001,-7 -"754",313,1,5,6.5,8,1.5,0,-4,0,1.5,-0.800000000000001,-7 -"755",313,1,6,8,8.19724390576141,0.197243905761411,0,-4,0,1.5,-0.800000000000001,-7 -"756",314,1,1,0,0.117103461091782,0.117103461091782,1,24,0,8.5,0.100000000000001,2 -"757",315,1,1,0,2,2,0,-3,1,1.7,-1.6,4 -"758",315,1,2,2,3,1,0,-3,1,1.7,-1.6,4 -"759",315,1,3,3,6,3,0,-3,1,1.7,-1.6,4 -"760",315,1,4,6,6.5,0.5,0,-3,1,1.7,-1.6,4 -"761",315,1,5,6.5,8,1.5,0,-3,1,1.7,-1.6,4 -"762",315,1,6,8,10,2,0,-3,1,1.7,-1.6,4 -"763",316,1,1,0,2,2,0,4,1,-3.9,0.899999999999999,2 -"764",316,1,2,2,2.41717324675494,0.417173246754939,1,4,1,-3.9,0.899999999999999,2 -"765",317,1,1,0,0.172151874800763,0.172151874800763,1,21,0,-2.5,-1,-8 -"766",318,1,1,0,0.643916359592057,0.643916359592057,1,22,0,13.8,1.2,-12 -"767",319,1,1,0,0.202312886464647,0.202312886464647,0,8,1,-0.100000000000001,0.100000000000001,-12 -"768",320,1,1,0,0.321760138247728,0.321760138247728,0,-5,1,-2.6,-1.1,-5 -"769",321,1,1,0,1.96996567856499,1.96996567856499,1,-14,0,-9.1,0.399999999999999,4 -"770",322,1,1,0,0.53932343707153,0.53932343707153,1,16,0,0,1.6,3 -"771",323,1,1,0,2,2,0,13,0,-4.2,0.5,-3 -"772",323,1,2,2,2.03715112193102,0.0371511219310249,0,13,0,-4.2,0.5,-3 -"773",324,1,1,0,0.410529157449035,0.410529157449035,1,16,0,-3.4,-1.6,0 -"774",325,1,1,0,2,2,0,24,1,1.7,-1.8,6 -"775",325,1,2,2,3,1,0,24,1,1.7,-1.8,6 -"776",325,1,3,3,6,3,0,24,1,1.7,-1.8,6 -"777",325,1,4,6,6.5,0.5,0,24,1,1.7,-1.8,6 -"778",325,1,5,6.5,6.88654869435497,0.386548694354966,0,24,1,1.7,-1.8,6 -"779",326,1,1,0,0.0299863936974053,0.0299863936974053,1,15,0,2.2,1.4,-1 -"780",327,1,1,0,0.732478535900223,0.732478535900223,1,8,1,2.8,1.1,-7 -"781",328,1,1,0,0.920660303773878,0.920660303773878,1,13,0,-4.5,0.600000000000001,10 -"782",329,1,1,0,2,2,0,1,1,-2.6,-1.3,-2 -"783",329,1,2,2,3,1,0,1,1,-2.6,-1.3,-2 -"784",329,1,3,3,4.03812033348404,1.03812033348404,0,1,1,-2.6,-1.3,-2 -"785",330,1,1,0,0.789382447993398,0.789382447993398,0,0,0,-1,-0.0999999999999996,12 -"786",331,1,1,0,0.550583277635063,0.550583277635063,1,2,1,-6.5,0,2 -"787",332,1,1,0,2,2,0,3,1,-4.1,-0.699999999999999,2 -"788",332,1,2,2,2.69701505977659,0.69701505977659,1,3,1,-4.1,-0.699999999999999,2 -"789",333,1,1,0,1.98690881372411,1.98690881372411,0,-3,0,3.4,-1,5 -"790",334,1,1,0,1.083885986955,1.083885986955,0,-7,1,4.2,1.1,-10 -"791",335,1,1,0,0.808660699639497,0.808660699639497,0,-34,0,-1.5,-1.3,-7 -"792",336,1,1,0,0.0263298010228302,0.0263298010228302,1,-2,0,-3.3,-0.199999999999999,5 -"793",337,1,1,0,1.210849703699,1.210849703699,1,0,0,-3.8,0.600000000000001,0 -"794",338,1,1,0,2,2,0,-21,1,0.200000000000003,2.1,-6 -"795",338,1,2,2,3,1,0,-21,1,0.200000000000003,2.1,-6 -"796",338,1,3,3,6,3,0,-21,1,0.200000000000003,2.1,-6 -"797",338,1,4,6,6.5,0.5,0,-21,1,0.200000000000003,2.1,-6 -"798",338,1,5,6.5,8,1.5,0,-21,1,0.200000000000003,2.1,-6 -"799",338,1,6,8,9.74570777787967,1.74570777787967,1,-21,1,0.200000000000003,2.1,-6 -"800",339,1,1,0,2,2,0,-1,1,1.7,0.899999999999999,6 -"801",339,1,2,2,3,1,0,-1,1,1.7,0.899999999999999,6 -"802",339,1,3,3,5.37486530688427,2.37486530688427,0,-1,1,1.7,0.899999999999999,6 -"803",340,1,1,0,0.134841205426238,0.134841205426238,1,14,1,-4.7,1.7,4 -"804",341,1,1,0,2,2,0,-6,0,2.3,-0.6,-3 -"805",341,1,2,2,3,1,0,-6,0,2.3,-0.6,-3 -"806",341,1,3,3,6,3,0,-6,0,2.3,-0.6,-3 -"807",341,1,4,6,6.03652827157496,0.0365282715749573,0,-6,0,2.3,-0.6,-3 -"808",342,1,1,0,0.0400952264417688,0.0400952264417688,0,7,1,6.4,-0.300000000000001,0 -"809",343,1,1,0,2,2,0,-4,0,3.4,-1.1,1 -"810",343,1,2,2,3,1,0,-4,0,3.4,-1.1,1 -"811",343,1,3,3,5.56078661252465,2.56078661252465,0,-4,0,3.4,-1.1,1 -"812",344,1,1,0,2,2,0,-8,0,3.7,-2,-3 -"813",344,1,2,2,3,1,0,-8,0,3.7,-2,-3 -"814",344,1,3,3,6,3,0,-8,0,3.7,-2,-3 -"815",344,1,4,6,6.5,0.5,0,-8,0,3.7,-2,-3 -"816",344,1,5,6.5,8,1.5,0,-8,0,3.7,-2,-3 -"817",344,1,6,8,10,2,0,-8,0,3.7,-2,-3 -"818",345,1,1,0,2,2,0,10,0,-6.9,-0.0999999999999996,-4 -"819",345,1,2,2,3,1,0,10,0,-6.9,-0.0999999999999996,-4 -"820",345,1,3,3,6,3,0,10,0,-6.9,-0.0999999999999996,-4 -"821",345,1,4,6,6.5,0.5,0,10,0,-6.9,-0.0999999999999996,-4 -"822",345,1,5,6.5,8,1.5,0,10,0,-6.9,-0.0999999999999996,-4 -"823",345,1,6,8,10,2,0,10,0,-6.9,-0.0999999999999996,-4 -"824",346,1,1,0,2,2,0,14,0,-1.1,-1,-2 -"825",346,1,2,2,2.70996107758262,0.709961077582624,1,14,0,-1.1,-1,-2 -"826",347,1,1,0,0.635586688915186,0.635586688915186,0,-12,0,1.8,0.5,-1 -"827",348,1,1,0,2,2,0,6,1,1,-0.4,0 -"828",348,1,2,2,2.11035276246031,0.110352762460306,0,6,1,1,-0.4,0 -"829",349,1,1,0,2,2,0,-6,1,-1,-0.4,5 -"830",349,1,2,2,3,1,0,-6,1,-1,-0.4,5 -"831",349,1,3,3,6,3,0,-6,1,-1,-0.4,5 -"832",349,1,4,6,6.5,0.5,0,-6,1,-1,-0.4,5 -"833",349,1,5,6.5,8,1.5,0,-6,1,-1,-0.4,5 -"834",349,1,6,8,9.93868105603912,1.93868105603912,1,-6,1,-1,-0.4,5 -"835",350,1,1,0,0.187108438306415,0.187108438306415,1,-20,0,-0.600000000000001,0.899999999999999,1 -"836",351,1,1,0,0.463843833454329,0.463843833454329,1,17,0,1.4,-0.300000000000001,1 -"837",352,1,1,0,0.777180635469904,0.777180635469904,0,7,0,0.399999999999999,0.699999999999999,-3 -"838",353,1,1,0,1.14279874973112,1.14279874973112,1,31,1,4.3,-1.6,-3 -"839",354,1,1,0,0.348174300141175,0.348174300141175,0,6,0,-1.1,0.399999999999999,10 -"840",355,1,1,0,0.0674242204589085,0.0674242204589085,1,15,0,0.399999999999999,0.100000000000001,4 -"841",356,1,1,0,2,2,0,-4,0,6,0.800000000000001,-2 -"842",356,1,2,2,3,1,0,-4,0,6,0.800000000000001,-2 -"843",356,1,3,3,6,3,0,-4,0,6,0.800000000000001,-2 -"844",356,1,4,6,6.5,0.5,0,-4,0,6,0.800000000000001,-2 -"845",356,1,5,6.5,7.12535567790152,0.625355677901516,1,-4,0,6,0.800000000000001,-2 -"846",357,1,1,0,2,2,0,-2,0,-0.5,-0.699999999999999,-1 -"847",357,1,2,2,2.88375298803203,0.883752988032027,1,-2,0,-0.5,-0.699999999999999,-1 -"848",358,1,1,0,0.58153372340817,0.58153372340817,0,-23,1,-4,-1.5,-3 -"849",359,1,1,0,0.915285384431128,0.915285384431128,0,4,1,2.7,0.399999999999999,-3 -"850",360,1,1,0,0.191447777466831,0.191447777466831,1,20,0,0.100000000000001,0.5,-1 -"851",361,1,1,0,0.933792709949319,0.933792709949319,1,-3,0,-5.8,1.3,0 -"852",362,1,1,0,1.42453846877091,1.42453846877091,1,2,1,3.3,0.300000000000001,9 -"853",363,1,1,0,0.293943654688151,0.293943654688151,1,-20,0,-1.1,0.399999999999999,5 -"854",364,1,1,0,2,2,0,-2,0,-3.8,-1.3,10 -"855",364,1,2,2,3,1,0,-2,0,-3.8,-1.3,10 -"856",364,1,3,3,6,3,0,-2,0,-3.8,-1.3,10 -"857",364,1,4,6,6.5,0.5,0,-2,0,-3.8,-1.3,10 -"858",364,1,5,6.5,7.72648847265075,1.22648847265075,1,-2,0,-3.8,-1.3,10 -"859",365,1,1,0,1.66864697201634,1.66864697201634,0,12,1,-1.6,-1.5,0 -"860",366,1,1,0,1.85541363319185,1.85541363319185,1,-9,0,-2.4,-0.0999999999999996,4 -"861",367,1,1,0,2,2,0,3,1,3.8,0.100000000000001,-6 -"862",367,1,2,2,2.53776711586016,0.537767115860157,0,3,1,3.8,0.100000000000001,-6 -"863",368,1,1,0,1.16792369007517,1.16792369007517,1,8,0,-6,0.199999999999999,-1 -"864",369,1,1,0,1.20650093487135,1.20650093487135,0,-6,1,6.3,-0.6,0 -"865",370,1,1,0,1.38598377184582,1.38598377184582,1,1,1,-4.1,-0.6,1 -"866",371,1,1,0,2,2,0,-21,1,0.700000000000003,2.5,-1 -"867",371,1,2,2,2.93224939649053,0.932249396490533,0,-21,1,0.700000000000003,2.5,-1 -"868",372,1,1,0,2,2,0,17,0,1.6,-1,-4 -"869",372,1,2,2,3,1,0,17,0,1.6,-1,-4 -"870",372,1,3,3,5.78043902494757,2.78043902494757,1,17,0,1.6,-1,-4 -"871",373,1,1,0,0.424687522419613,0.424687522419613,1,13,0,3,-0.199999999999999,-5 -"872",374,1,1,0,2,2,0,7,0,0.100000000000001,0.800000000000001,2 -"873",374,1,2,2,2.73204517135458,0.73204517135458,1,7,0,0.100000000000001,0.800000000000001,2 -"874",375,1,1,0,0.560222846433946,0.560222846433946,1,6,1,4,1.7,3 -"875",376,1,1,0,2,2,0,10,1,-5.3,-1.4,8 -"876",376,1,2,2,3,1,0,10,1,-5.3,-1.4,8 -"877",376,1,3,3,6,3,0,10,1,-5.3,-1.4,8 -"878",376,1,4,6,6.5,0.5,0,10,1,-5.3,-1.4,8 -"879",376,1,5,6.5,8,1.5,0,10,1,-5.3,-1.4,8 -"880",376,1,6,8,9.55282774015158,1.55282774015158,0,10,1,-5.3,-1.4,8 -"881",377,1,1,0,2,2,0,18,1,-2,-0.800000000000001,-5 -"882",377,1,2,2,3,1,0,18,1,-2,-0.800000000000001,-5 -"883",377,1,3,3,5.78355991248253,2.78355991248253,0,18,1,-2,-0.800000000000001,-5 -"884",378,1,1,0,2,2,0,-5,0,-4.7,-1.2,-1 -"885",378,1,2,2,3,1,0,-5,0,-4.7,-1.2,-1 -"886",378,1,3,3,5.88936029936666,2.88936029936666,0,-5,0,-4.7,-1.2,-1 -"887",379,1,1,0,2,2,0,2,1,-3.4,-1.2,2 -"888",379,1,2,2,2.04252490861932,0.042524908619324,1,2,1,-3.4,-1.2,2 -"889",380,1,1,0,2,2,0,4,1,7.1,0,1 -"890",380,1,2,2,3,1,0,4,1,7.1,0,1 -"891",380,1,3,3,6,3,0,4,1,7.1,0,1 -"892",380,1,4,6,6.5,0.5,0,4,1,7.1,0,1 -"893",380,1,5,6.5,8,1.5,0,4,1,7.1,0,1 -"894",380,1,6,8,9.16736503858584,1.16736503858584,0,4,1,7.1,0,1 -"895",381,1,1,0,2,2,0,7,1,-7,-2.5,0 -"896",381,1,2,2,3,1,0,7,1,-7,-2.5,0 -"897",381,1,3,3,6,3,0,7,1,-7,-2.5,0 -"898",381,1,4,6,6.5,0.5,0,7,1,-7,-2.5,0 -"899",381,1,5,6.5,8,1.5,0,7,1,-7,-2.5,0 -"900",381,1,6,8,10,2,0,7,1,-7,-2.5,0 -"901",382,1,1,0,0.607041946751458,0.607041946751458,1,1,1,-1.5,-0.699999999999999,2 -"902",383,1,1,0,2,2,0,14,0,-6.9,-2,-3 -"903",383,1,2,2,3,1,0,14,0,-6.9,-2,-3 -"904",383,1,3,3,6,3,0,14,0,-6.9,-2,-3 -"905",383,1,4,6,6.5,0.5,0,14,0,-6.9,-2,-3 -"906",383,1,5,6.5,8,1.5,0,14,0,-6.9,-2,-3 -"907",383,1,6,8,10,2,0,14,0,-6.9,-2,-3 -"908",384,1,1,0,1.44476452724692,1.44476452724692,1,15,0,-3.8,0.399999999999999,5 -"909",385,1,1,0,1.07490252948769,1.07490252948769,0,-9,0,-1.3,-0.800000000000001,3 -"910",386,1,1,0,0.135266422502904,0.135266422502904,0,-8,0,1.8,0.699999999999999,4 -"911",387,1,1,0,1.23518953763335,1.23518953763335,0,-9,1,3.3,0.899999999999999,-3 -"912",388,1,1,0,0.776816918449002,0.776816918449002,1,2,1,-2.5,-2.3,-2 -"913",389,1,1,0,1.14708420265795,1.14708420265795,1,9,1,-1,0.699999999999999,1 -"914",390,1,1,0,2,2,0,-9,0,-2.6,-1.6,-2 -"915",390,1,2,2,3,1,0,-9,0,-2.6,-1.6,-2 -"916",390,1,3,3,5.11334275065492,2.11334275065492,0,-9,0,-2.6,-1.6,-2 -"917",391,1,1,0,2,2,0,9,0,-0.700000000000003,-0.699999999999999,-7 -"918",391,1,2,2,2.43822044163072,0.438220441630718,0,9,0,-0.700000000000003,-0.699999999999999,-7 -"919",392,1,1,0,2,2,0,-7,0,-0.899999999999999,1.3,-6 -"920",392,1,2,2,3,1,0,-7,0,-0.899999999999999,1.3,-6 -"921",392,1,3,3,6,3,0,-7,0,-0.899999999999999,1.3,-6 -"922",392,1,4,6,6.02883697527948,0.0288369752794838,0,-7,0,-0.899999999999999,1.3,-6 -"923",393,1,1,0,2,2,0,-9,0,-2.1,0.800000000000001,-6 -"924",393,1,2,2,3,1,0,-9,0,-2.1,0.800000000000001,-6 -"925",393,1,3,3,6,3,0,-9,0,-2.1,0.800000000000001,-6 -"926",393,1,4,6,6.5,0.5,0,-9,0,-2.1,0.800000000000001,-6 -"927",393,1,5,6.5,7.21635774882938,0.716357748829379,0,-9,0,-2.1,0.800000000000001,-6 -"928",394,1,1,0,2,2,0,5,0,-5.2,-1.3,-9 -"929",394,1,2,2,3,1,0,5,0,-5.2,-1.3,-9 -"930",394,1,3,3,6,3,0,5,0,-5.2,-1.3,-9 -"931",394,1,4,6,6.5,0.5,0,5,0,-5.2,-1.3,-9 -"932",394,1,5,6.5,8,1.5,0,5,0,-5.2,-1.3,-9 -"933",394,1,6,8,10,2,0,5,0,-5.2,-1.3,-9 -"934",395,1,1,0,0.367778673285007,0.367778673285007,0,19,1,11.9,-0.0999999999999996,7 -"935",396,1,1,0,0.759119010634241,0.759119010634241,0,0,1,-5.4,-0.5,-3 -"936",397,1,1,0,1.19996273359599,1.19996273359599,0,-17,1,3.8,-0.199999999999999,4 -"937",398,1,1,0,1.52428897560894,1.52428897560894,1,23,0,0.899999999999999,0.899999999999999,-2 -"938",399,1,1,0,1.67617547452164,1.67617547452164,0,17,0,2,0.100000000000001,-3 -"939",400,1,1,0,2,2,0,14,1,-4.4,-0.5,-9 -"940",400,1,2,2,2.87086562994862,0.870865629948618,0,14,1,-4.4,-0.5,-9 -"941",401,1,1,0,0.419872486072043,0.419872486072043,1,-5,0,-8.1,0.899999999999999,3 -"942",402,1,1,0,1.49868279524913,1.49868279524913,0,-14,0,5.8,1.1,-10 -"943",403,1,1,0,0.185879697185758,0.185879697185758,1,23,1,3.2,0.699999999999999,4 -"944",404,1,1,0,2,2,0,-3,1,-1.3,-1.1,4 -"945",404,1,2,2,3,1,0,-3,1,-1.3,-1.1,4 -"946",404,1,3,3,4.8055820780222,1.8055820780222,0,-3,1,-1.3,-1.1,4 -"947",405,1,1,0,1.5612977791729,1.5612977791729,1,-11,0,3.8,0.800000000000001,1 -"948",406,1,1,0,0.278285154157609,0.278285154157609,1,-11,0,8.8,-0.199999999999999,8 -"949",407,1,1,0,2,2,0,-16,0,2.8,-1.8,-3 -"950",407,1,2,2,3,1,0,-16,0,2.8,-1.8,-3 -"951",407,1,3,3,6,3,0,-16,0,2.8,-1.8,-3 -"952",407,1,4,6,6.16476594862193,0.164765948621926,0,-16,0,2.8,-1.8,-3 -"953",408,1,1,0,1.00729795023706,1.00729795023706,1,6,1,-2.8,0.699999999999999,2 -"954",409,1,1,0,0.508266824823535,0.508266824823535,1,-14,0,1.6,2,-4 -"955",410,1,1,0,0.672125407407013,0.672125407407013,0,30,1,-4.7,1.9,-5 -"956",411,1,1,0,1.67523798798869,1.67523798798869,1,-10,0,5.9,0.800000000000001,11 -"957",412,1,1,0,2,2,0,18,0,-0.100000000000001,0,2 -"958",412,1,2,2,2.07782982055972,0.077829820559719,1,18,0,-0.100000000000001,0,2 -"959",413,1,1,0,1.70397011120512,1.70397011120512,1,-32,0,-4.1,0.699999999999999,8 -"960",414,1,1,0,2,2,0,17,1,0.799999999999997,0.899999999999999,-8 -"961",414,1,2,2,3,1,0,17,1,0.799999999999997,0.899999999999999,-8 -"962",414,1,3,3,4.7728856360247,1.7728856360247,0,17,1,0.799999999999997,0.899999999999999,-8 -"963",415,1,1,0,2,2,0,4,0,1.4,0.399999999999999,-8 -"964",415,1,2,2,3,1,0,4,0,1.4,0.399999999999999,-8 -"965",415,1,3,3,6,3,0,4,0,1.4,0.399999999999999,-8 -"966",415,1,4,6,6.14397540409403,0.143975404094026,0,4,0,1.4,0.399999999999999,-8 -"967",416,1,1,0,0.106969296764834,0.106969296764834,1,12,1,1,1.4,1 -"968",417,1,1,0,2,2,0,-21,0,1.2,-1.2,5 -"969",417,1,2,2,3,1,0,-21,0,1.2,-1.2,5 -"970",417,1,3,3,6,3,0,-21,0,1.2,-1.2,5 -"971",417,1,4,6,6.5,0.5,0,-21,0,1.2,-1.2,5 -"972",417,1,5,6.5,8,1.5,0,-21,0,1.2,-1.2,5 -"973",417,1,6,8,8.26681257028107,0.266812570281067,1,-21,0,1.2,-1.2,5 -"974",418,1,1,0,0.364379126857407,0.364379126857407,1,19,1,-2.5,0.600000000000001,1 -"975",419,1,1,0,2,2,0,-10,1,-4.2,0.100000000000001,6 -"976",419,1,2,2,3,1,0,-10,1,-4.2,0.100000000000001,6 -"977",419,1,3,3,6,3,0,-10,1,-4.2,0.100000000000001,6 -"978",419,1,4,6,6.5,0.5,0,-10,1,-4.2,0.100000000000001,6 -"979",419,1,5,6.5,8,1.5,0,-10,1,-4.2,0.100000000000001,6 -"980",419,1,6,8,10,2,0,-10,1,-4.2,0.100000000000001,6 -"981",420,1,1,0,1.07786538715866,1.07786538715866,1,11,0,-3.2,0.300000000000001,-3 -"982",421,1,1,0,2,2,0,-13,1,8.09999999999999,-0.4,5 -"983",421,1,2,2,3,1,0,-13,1,8.09999999999999,-0.4,5 -"984",421,1,3,3,4.90720944176433,1.90720944176433,0,-13,1,8.09999999999999,-0.4,5 -"985",422,1,1,0,0.343946290728888,0.343946290728888,1,10,0,-0.200000000000003,-0.4,-2 -"986",423,1,1,0,0.190762458429002,0.190762458429002,0,4,0,-1.3,1.2,-1 -"987",424,1,1,0,2,2,0,-27,1,4.7,1.7,-5 -"988",424,1,2,2,3,1,0,-27,1,4.7,1.7,-5 -"989",424,1,3,3,5.84341573115055,2.84341573115055,0,-27,1,4.7,1.7,-5 -"990",425,1,1,0,2,2,0,-15,0,-2.3,-1.8,-4 -"991",425,1,2,2,2.00565046601054,0.00565046601054125,0,-15,0,-2.3,-1.8,-4 -"992",426,1,1,0,0.654793380978561,0.654793380978561,1,5,0,-0.100000000000001,0.300000000000001,8 -"993",427,1,1,0,2,2,0,14,0,0,0.300000000000001,4 -"994",427,1,2,2,3,1,0,14,0,0,0.300000000000001,4 -"995",427,1,3,3,4.68514012431772,1.68514012431772,1,14,0,0,0.300000000000001,4 -"996",428,1,1,0,1.17558017864597,1.17558017864597,0,-22,0,-4.1,1.9,-2 -"997",429,1,1,0,0.852649502304363,0.852649502304363,1,6,0,1.5,0.800000000000001,1 -"998",430,1,1,0,2,2,0,-14,1,6,-0.9,1 -"999",430,1,2,2,3,1,0,-14,1,6,-0.9,1 -"1000",430,1,3,3,5.91645442475576,2.91645442475576,0,-14,1,6,-0.9,1 -"1001",431,1,1,0,1.48481651877236,1.48481651877236,1,-5,1,2.1,0.800000000000001,-1 -"1002",432,1,1,0,1.34634072012961,1.34634072012961,1,19,0,-1.4,-1.1,5 -"1003",433,1,1,0,1.91999876066296,1.91999876066296,0,3,1,5.2,0.699999999999999,1 -"1004",434,1,1,0,0.18853569633544,0.18853569633544,0,-4,1,4.7,-1.5,0 -"1005",435,1,1,0,2,2,0,-5,1,-4.6,-1.4,6 -"1006",435,1,2,2,3,1,0,-5,1,-4.6,-1.4,6 -"1007",435,1,3,3,6,3,0,-5,1,-4.6,-1.4,6 -"1008",435,1,4,6,6.5,0.5,0,-5,1,-4.6,-1.4,6 -"1009",435,1,5,6.5,8,1.5,0,-5,1,-4.6,-1.4,6 -"1010",435,1,6,8,10,2,0,-5,1,-4.6,-1.4,6 -"1011",436,1,1,0,0.217912823823216,0.217912823823216,1,10,0,12.1,1.1,1 -"1012",437,1,1,0,2,2,0,-9,1,-2.7,-0.6,-1 -"1013",437,1,2,2,3,1,0,-9,1,-2.7,-0.6,-1 -"1014",437,1,3,3,5.69557379011083,2.69557379011083,0,-9,1,-2.7,-0.6,-1 -"1015",438,1,1,0,2,2,0,-16,0,-2.5,0.199999999999999,-5 -"1016",438,1,2,2,3,1,0,-16,0,-2.5,0.199999999999999,-5 -"1017",438,1,3,3,6,3,0,-16,0,-2.5,0.199999999999999,-5 -"1018",438,1,4,6,6.5,0.5,0,-16,0,-2.5,0.199999999999999,-5 -"1019",438,1,5,6.5,8,1.5,0,-16,0,-2.5,0.199999999999999,-5 -"1020",438,1,6,8,10,2,0,-16,0,-2.5,0.199999999999999,-5 -"1021",439,1,1,0,2,2,0,-1,1,2.9,-0.5,-5 -"1022",439,1,2,2,3,1,0,-1,1,2.9,-0.5,-5 -"1023",439,1,3,3,6,3,0,-1,1,2.9,-0.5,-5 -"1024",439,1,4,6,6.18242681351143,0.182426813511429,0,-1,1,2.9,-0.5,-5 -"1025",440,1,1,0,0.383739442408774,0.383739442408774,1,-12,1,-6.7,-0.699999999999999,-3 -"1026",441,1,1,0,0.471372463250384,0.471372463250384,1,-2,1,-4.1,-0.300000000000001,10 -"1027",442,1,1,0,2,2,0,11,0,-5.1,-1.2,-1 -"1028",442,1,2,2,3,1,0,11,0,-5.1,-1.2,-1 -"1029",442,1,3,3,5.17713685272293,2.17713685272293,1,11,0,-5.1,-1.2,-1 -"1030",443,1,1,0,2,2,0,-2,0,1.1,-0.699999999999999,-4 -"1031",443,1,2,2,3,1,0,-2,0,1.1,-0.699999999999999,-4 -"1032",443,1,3,3,6,3,0,-2,0,1.1,-0.699999999999999,-4 -"1033",443,1,4,6,6.5,0.5,0,-2,0,1.1,-0.699999999999999,-4 -"1034",443,1,5,6.5,8,1.5,0,-2,0,1.1,-0.699999999999999,-4 -"1035",443,1,6,8,10,2,0,-2,0,1.1,-0.699999999999999,-4 -"1036",444,1,1,0,2,2,0,-15,1,-5.6,0.600000000000001,-7 -"1037",444,1,2,2,3,1,0,-15,1,-5.6,0.600000000000001,-7 -"1038",444,1,3,3,6,3,0,-15,1,-5.6,0.600000000000001,-7 -"1039",444,1,4,6,6.5,0.5,0,-15,1,-5.6,0.600000000000001,-7 -"1040",444,1,5,6.5,8,1.5,0,-15,1,-5.6,0.600000000000001,-7 -"1041",444,1,6,8,10,2,0,-15,1,-5.6,0.600000000000001,-7 -"1042",445,1,1,0,0.538125642200977,0.538125642200977,0,-23,0,0.899999999999999,0.699999999999999,-9 -"1043",446,1,1,0,2,2,0,-10,0,5.7,-0.4,-4 -"1044",446,1,2,2,3,1,0,-10,0,5.7,-0.4,-4 -"1045",446,1,3,3,6,3,0,-10,0,5.7,-0.4,-4 -"1046",446,1,4,6,6.5,0.5,0,-10,0,5.7,-0.4,-4 -"1047",446,1,5,6.5,8,1.5,0,-10,0,5.7,-0.4,-4 -"1048",446,1,6,8,8.69851980427283,0.698519804272834,0,-10,0,5.7,-0.4,-4 -"1049",447,1,1,0,2,2,0,9,0,0.799999999999997,0.5,-9 -"1050",447,1,2,2,3,1,0,9,0,0.799999999999997,0.5,-9 -"1051",447,1,3,3,3.92004644168824,0.920046441688244,0,9,0,0.799999999999997,0.5,-9 -"1052",448,1,1,0,1.74155711399082,1.74155711399082,0,-12,0,4,-1.8,0 -"1053",449,1,1,0,1.17932771587299,1.17932771587299,0,-38,0,-6.6,0.100000000000001,2 -"1054",450,1,1,0,0.850069222637212,0.850069222637212,1,16,1,-3.9,0.399999999999999,1 -"1055",451,1,1,0,2,2,0,5,1,7.9,-0.4,-4 -"1056",451,1,2,2,3,1,0,5,1,7.9,-0.4,-4 -"1057",451,1,3,3,6,3,0,5,1,7.9,-0.4,-4 -"1058",451,1,4,6,6.5,0.5,0,5,1,7.9,-0.4,-4 -"1059",451,1,5,6.5,8,1.5,0,5,1,7.9,-0.4,-4 -"1060",451,1,6,8,10,2,0,5,1,7.9,-0.4,-4 -"1061",452,1,1,0,0.217482154835753,0.217482154835753,1,-8,0,-3.8,0.699999999999999,0 -"1062",453,1,1,0,2,2,0,17,0,2.1,0,-7 -"1063",453,1,2,2,2.16700118571967,0.167001185719667,0,17,0,2.1,0,-7 -"1064",454,1,1,0,1.46379501358423,1.46379501358423,1,2,0,-7.4,0.300000000000001,-7 -"1065",455,1,1,0,2,2,0,5,0,-10.6,-0.9,-14 -"1066",455,1,2,2,3,1,0,5,0,-10.6,-0.9,-14 -"1067",455,1,3,3,5.36631643495453,2.36631643495453,0,5,0,-10.6,-0.9,-14 -"1068",456,1,1,0,0.821604710982116,0.821604710982116,0,12,0,-2.5,0.399999999999999,6 -"1069",457,1,1,0,0.3247849878804,0.3247849878804,1,-1,0,4.9,1.4,-1 -"1070",458,1,1,0,2,2,0,-3,0,-3.3,-0.699999999999999,-6 -"1071",458,1,2,2,3,1,0,-3,0,-3.3,-0.699999999999999,-6 -"1072",458,1,3,3,6,3,0,-3,0,-3.3,-0.699999999999999,-6 -"1073",458,1,4,6,6.5,0.5,0,-3,0,-3.3,-0.699999999999999,-6 -"1074",458,1,5,6.5,8,1.5,0,-3,0,-3.3,-0.699999999999999,-6 -"1075",458,1,6,8,10,2,0,-3,0,-3.3,-0.699999999999999,-6 -"1076",459,1,1,0,0.0452184887956795,0.0452184887956795,1,5,0,4.9,-0.199999999999999,3 -"1077",460,1,1,0,1.66948421244643,1.66948421244643,1,4,1,6.1,1.2,8 -"1078",461,1,1,0,0.588957403182469,0.588957403182469,1,7,0,2.6,1.4,6 -"1079",462,1,1,0,1.94796788902255,1.94796788902255,1,-5,0,-1.1,0.699999999999999,-4 -"1080",463,1,1,0,1.13578688513075,1.13578688513075,0,-13,0,-0.600000000000001,-1,3 -"1081",464,1,1,0,2,2,0,-9,0,5.5,0.600000000000001,-5 -"1082",464,1,2,2,3,1,0,-9,0,5.5,0.600000000000001,-5 -"1083",464,1,3,3,6,3,0,-9,0,5.5,0.600000000000001,-5 -"1084",464,1,4,6,6.5,0.5,0,-9,0,5.5,0.600000000000001,-5 -"1085",464,1,5,6.5,8,1.5,0,-9,0,5.5,0.600000000000001,-5 -"1086",464,1,6,8,10,2,0,-9,0,5.5,0.600000000000001,-5 -"1087",465,1,1,0,2,2,0,-18,0,0.399999999999999,0.5,-7 -"1088",465,1,2,2,2.99761791619932,0.997617916199317,0,-18,0,0.399999999999999,0.5,-7 -"1089",466,1,1,0,2,2,0,-1,0,1.9,-1.4,2 -"1090",466,1,2,2,2.39686029225557,0.396860292255571,1,-1,0,1.9,-1.4,2 -"1091",467,1,1,0,0.264787158330464,0.264787158330464,1,26,0,5.5,1.7,2 -"1092",468,1,1,0,0.206764981161067,0.206764981161067,1,-17,0,-0.100000000000001,0.5,12 -"1093",469,1,1,0,0.0636112261519503,0.0636112261519503,0,30,0,-4.3,0.199999999999999,-10 -"1094",470,1,1,0,2,2,0,-15,1,-4.5,-0.300000000000001,3 -"1095",470,1,2,2,3,1,0,-15,1,-4.5,-0.300000000000001,3 -"1096",470,1,3,3,6,3,0,-15,1,-4.5,-0.300000000000001,3 -"1097",470,1,4,6,6.28846101922853,0.288461019228533,1,-15,1,-4.5,-0.300000000000001,3 -"1098",471,1,1,0,0.0437683481912931,0.0437683481912931,1,-16,1,-2.2,2.6,3 -"1099",472,1,1,0,0.101256173962108,0.101256173962108,0,-6,0,1.5,2.1,4 -"1100",473,1,1,0,1.33709595468332,1.33709595468332,1,-33,0,-1,0.100000000000001,-1 -"1101",474,1,1,0,0.673107908935972,0.673107908935972,1,17,0,-6,-0.0999999999999996,1 -"1102",475,1,1,0,2,2,0,-8,1,4.6,0.600000000000001,-7 -"1103",475,1,2,2,3,1,0,-8,1,4.6,0.600000000000001,-7 -"1104",475,1,3,3,6,3,0,-8,1,4.6,0.600000000000001,-7 -"1105",475,1,4,6,6.5,0.5,0,-8,1,4.6,0.600000000000001,-7 -"1106",475,1,5,6.5,8,1.5,0,-8,1,4.6,0.600000000000001,-7 -"1107",475,1,6,8,10,2,0,-8,1,4.6,0.600000000000001,-7 -"1108",476,1,1,0,2,2,0,-16,0,9.3,-0.6,-1 -"1109",476,1,2,2,3,1,0,-16,0,9.3,-0.6,-1 -"1110",476,1,3,3,6,3,0,-16,0,9.3,-0.6,-1 -"1111",476,1,4,6,6.5,0.5,0,-16,0,9.3,-0.6,-1 -"1112",476,1,5,6.5,8,1.5,0,-16,0,9.3,-0.6,-1 -"1113",476,1,6,8,10,2,0,-16,0,9.3,-0.6,-1 -"1114",477,1,1,0,2,2,0,9,1,1.3,-0.5,-3 -"1115",477,1,2,2,3,1,0,9,1,1.3,-0.5,-3 -"1116",477,1,3,3,3.62734676847544,0.627346768475436,0,9,1,1.3,-0.5,-3 -"1117",478,1,1,0,2,2,0,22,1,2.9,1.1,-3 -"1118",478,1,2,2,3,1,0,22,1,2.9,1.1,-3 -"1119",478,1,3,3,5.88941078336475,2.88941078336475,1,22,1,2.9,1.1,-3 -"1120",479,1,1,0,0.114807344968725,0.114807344968725,0,4,1,8.59999999999999,0.899999999999999,4 -"1121",480,1,1,0,0.71615071859449,0.71615071859449,1,29,1,4.1,1.1,5 -"1122",481,1,1,0,2,2,0,-19,1,3.2,1.2,-9 -"1123",481,1,2,2,3,1,0,-19,1,3.2,1.2,-9 -"1124",481,1,3,3,5.00646011945003,2.00646011945003,0,-19,1,3.2,1.2,-9 -"1125",482,1,1,0,2,2,0,-7,0,5.5,-0.699999999999999,0 -"1126",482,1,2,2,3,1,0,-7,0,5.5,-0.699999999999999,0 -"1127",482,1,3,3,6,3,0,-7,0,5.5,-0.699999999999999,0 -"1128",482,1,4,6,6.5,0.5,0,-7,0,5.5,-0.699999999999999,0 -"1129",482,1,5,6.5,8,1.5,0,-7,0,5.5,-0.699999999999999,0 -"1130",482,1,6,8,10,2,0,-7,0,5.5,-0.699999999999999,0 -"1131",483,1,1,0,2,2,0,-18,0,-4.3,0.600000000000001,-1 -"1132",483,1,2,2,3,1,0,-18,0,-4.3,0.600000000000001,-1 -"1133",483,1,3,3,6,3,0,-18,0,-4.3,0.600000000000001,-1 -"1134",483,1,4,6,6.5,0.5,0,-18,0,-4.3,0.600000000000001,-1 -"1135",483,1,5,6.5,6.64016936206024,0.14016936206024,1,-18,0,-4.3,0.600000000000001,-1 -"1136",484,1,1,0,2,2,0,-14,1,-3.6,-0.300000000000001,0 -"1137",484,1,2,2,3,1,0,-14,1,-3.6,-0.300000000000001,0 -"1138",484,1,3,3,3.7803762372801,0.780376237280101,0,-14,1,-3.6,-0.300000000000001,0 -"1139",485,1,1,0,2,2,0,-18,1,-6.6,-0.0999999999999996,-2 -"1140",485,1,2,2,3,1,0,-18,1,-6.6,-0.0999999999999996,-2 -"1141",485,1,3,3,3.67638092427892,0.676380924278922,0,-18,1,-6.6,-0.0999999999999996,-2 -"1142",486,1,1,0,2,2,0,-13,0,6.8,-1.1,0 -"1143",486,1,2,2,3,1,0,-13,0,6.8,-1.1,0 -"1144",486,1,3,3,4.43994295164325,1.43994295164325,0,-13,0,6.8,-1.1,0 -"1145",487,1,1,0,0.152870409104098,0.152870409104098,1,25,0,0.200000000000003,2.2,1 -"1146",488,1,1,0,0.00984695967569014,0.00984695967569014,1,-1,0,-4.8,-0.0999999999999996,5 -"1147",489,1,1,0,1.86858291519692,1.86858291519692,1,-1,0,5,1.2,-9 -"1148",490,1,1,0,0.192211714380248,0.192211714380248,1,-12,0,-5.5,0.800000000000001,0 -"1149",491,1,1,0,2,2,0,-1,0,6.6,-0.0999999999999996,0 -"1150",491,1,2,2,3,1,0,-1,0,6.6,-0.0999999999999996,0 -"1151",491,1,3,3,3.77704180703484,0.77704180703484,0,-1,0,6.6,-0.0999999999999996,0 -"1152",492,1,1,0,2,2,0,7,1,-2.5,-0.300000000000001,-2 -"1153",492,1,2,2,3,1,0,7,1,-2.5,-0.300000000000001,-2 -"1154",492,1,3,3,6,3,0,7,1,-2.5,-0.300000000000001,-2 -"1155",492,1,4,6,6.5,0.5,0,7,1,-2.5,-0.300000000000001,-2 -"1156",492,1,5,6.5,8,1.5,0,7,1,-2.5,-0.300000000000001,-2 -"1157",492,1,6,8,9.48013241329429,1.48013241329429,1,7,1,-2.5,-0.300000000000001,-2 -"1158",493,1,1,0,0.440334533428587,0.440334533428587,1,5,1,-1.4,-0.9,3 -"1159",494,1,1,0,0.0890548186404758,0.0890548186404758,1,10,0,2.5,0.800000000000001,-3 -"1160",495,1,1,0,2,2,0,-20,0,2.4,-1.9,11 -"1161",495,1,2,2,2.66731594341535,0.667315943415351,0,-20,0,2.4,-1.9,11 -"1162",496,1,1,0,0.795728714587082,0.795728714587082,1,-3,0,-2.1,0.899999999999999,5 -"1163",497,1,1,0,0.774441264368714,0.774441264368714,1,-5,1,1.1,0.800000000000001,2 -"1164",498,1,1,0,2,2,0,-17,0,2.8,-1.1,1 -"1165",498,1,2,2,3,1,0,-17,0,2.8,-1.1,1 -"1166",498,1,3,3,6,3,0,-17,0,2.8,-1.1,1 -"1167",498,1,4,6,6.5,0.5,0,-17,0,2.8,-1.1,1 -"1168",498,1,5,6.5,8,1.5,0,-17,0,2.8,-1.1,1 -"1169",498,1,6,8,10,2,0,-17,0,2.8,-1.1,1 -"1170",499,1,1,0,0.303605951025305,0.303605951025305,1,10,1,6.4,0.399999999999999,5 -"1171",500,1,1,0,1.99656354664492,1.99656354664492,0,-1,1,-0.399999999999999,0.600000000000001,1 -"1172",501,1,1,0,2,2,0,-9,1,3.5,0.899999999999999,3 -"1173",501,1,2,2,3,1,0,-9,1,3.5,0.899999999999999,3 -"1174",501,1,3,3,6,3,0,-9,1,3.5,0.899999999999999,3 -"1175",501,1,4,6,6.00339091183764,0.00339091183764444,1,-9,1,3.5,0.899999999999999,3 -"1176",502,1,1,0,2,2,0,-7,1,-4.7,-0.5,11 -"1177",502,1,2,2,3,1,0,-7,1,-4.7,-0.5,11 -"1178",502,1,3,3,6,3,0,-7,1,-4.7,-0.5,11 -"1179",502,1,4,6,6.5,0.5,0,-7,1,-4.7,-0.5,11 -"1180",502,1,5,6.5,8,1.5,0,-7,1,-4.7,-0.5,11 -"1181",502,1,6,8,9.56889690585563,1.56889690585563,0,-7,1,-4.7,-0.5,11 -"1182",503,1,1,0,2,2,0,8,0,-2.6,-0.699999999999999,1 -"1183",503,1,2,2,3,1,0,8,0,-2.6,-0.699999999999999,1 -"1184",503,1,3,3,3.3681263073662,0.368126307366197,0,8,0,-2.6,-0.699999999999999,1 -"1185",504,1,1,0,0.550904554958991,0.550904554958991,1,-2,0,5.8,0.199999999999999,-6 -"1186",505,1,1,0,1.75928987763993,1.75928987763993,1,-19,0,-1.6,0.899999999999999,5 -"1187",506,1,1,0,2,2,0,13,1,-4.8,-1.2,3 -"1188",506,1,2,2,3,1,0,13,1,-4.8,-1.2,3 -"1189",506,1,3,3,6,3,0,13,1,-4.8,-1.2,3 -"1190",506,1,4,6,6.5,0.5,0,13,1,-4.8,-1.2,3 -"1191",506,1,5,6.5,8,1.5,0,13,1,-4.8,-1.2,3 -"1192",506,1,6,8,9.94262441004902,1.94262441004902,1,13,1,-4.8,-1.2,3 -"1193",507,1,1,0,0.255120296424816,0.255120296424816,1,-12,0,3.8,1.3,-1 -"1194",508,1,1,0,1.99351217081318,1.99351217081318,1,1,1,5.1,-0.199999999999999,5 -"1195",509,1,1,0,2,2,0,2,1,-4.1,0.800000000000001,-2 -"1196",509,1,2,2,3,1,0,2,1,-4.1,0.800000000000001,-2 -"1197",509,1,3,3,6,3,0,2,1,-4.1,0.800000000000001,-2 -"1198",509,1,4,6,6.5,0.5,0,2,1,-4.1,0.800000000000001,-2 -"1199",509,1,5,6.5,6.88812533308735,0.388125333087349,0,2,1,-4.1,0.800000000000001,-2 -"1200",510,1,1,0,2,2,0,-3,0,-0.5,-1.6,-4 -"1201",510,1,2,2,3,1,0,-3,0,-0.5,-1.6,-4 -"1202",510,1,3,3,5.29419305634829,2.29419305634829,0,-3,0,-0.5,-1.6,-4 -"1203",511,1,1,0,2,2,0,-4,0,1.1,-0.4,-7 -"1204",511,1,2,2,3,1,0,-4,0,1.1,-0.4,-7 -"1205",511,1,3,3,6,3,0,-4,0,1.1,-0.4,-7 -"1206",511,1,4,6,6.5,0.5,0,-4,0,1.1,-0.4,-7 -"1207",511,1,5,6.5,8,1.5,0,-4,0,1.1,-0.4,-7 -"1208",511,1,6,8,10,2,0,-4,0,1.1,-0.4,-7 -"1209",512,1,1,0,2,2,0,3,0,-6.7,0.600000000000001,0 -"1210",512,1,2,2,3,1,0,3,0,-6.7,0.600000000000001,0 -"1211",512,1,3,3,4.59753996958384,1.59753996958384,0,3,0,-6.7,0.600000000000001,0 -"1212",513,1,1,0,0.187194422440212,0.187194422440212,1,16,1,1.6,0.600000000000001,6 -"1213",514,1,1,0,2,2,0,-3,0,3,0.300000000000001,2 -"1214",514,1,2,2,2.18129585110467,0.181295851104672,0,-3,0,3,0.300000000000001,2 -"1215",515,1,1,0,0.699385734100499,0.699385734100499,0,-11,1,6.4,-0.5,3 -"1216",516,1,1,0,2,2,0,-8,1,1.5,-2.3,-5 -"1217",516,1,2,2,3,1,0,-8,1,1.5,-2.3,-5 -"1218",516,1,3,3,3.16706565594008,0.167065655940082,0,-8,1,1.5,-2.3,-5 -"1219",517,1,1,0,0.322271075608221,0.322271075608221,1,41,0,-6.3,-0.4,-4 -"1220",518,1,1,0,2,2,0,19,0,-2.3,-1,-11 -"1221",518,1,2,2,3,1,0,19,0,-2.3,-1,-11 -"1222",518,1,3,3,4.59142476161446,1.59142476161446,0,19,0,-2.3,-1,-11 -"1223",519,1,1,0,1.59884573842447,1.59884573842447,0,-15,1,5.8,-0.800000000000001,-4 -"1224",520,1,1,0,1.12433185544346,1.12433185544346,1,20,1,-4.1,0.199999999999999,2 -"1225",521,1,1,0,2,2,0,-11,1,1.4,0.5,3 -"1226",521,1,2,2,3,1,0,-11,1,1.4,0.5,3 -"1227",521,1,3,3,6,3,0,-11,1,1.4,0.5,3 -"1228",521,1,4,6,6.5,0.5,0,-11,1,1.4,0.5,3 -"1229",521,1,5,6.5,7.72954372435842,1.22954372435842,0,-11,1,1.4,0.5,3 -"1230",522,1,1,0,1.50452994754366,1.50452994754366,1,-22,0,7.8,2.1,-5 -"1231",523,1,1,0,2,2,0,12,1,3.7,-1.7,3 -"1232",523,1,2,2,3,1,0,12,1,3.7,-1.7,3 -"1233",523,1,3,3,6,3,0,12,1,3.7,-1.7,3 -"1234",523,1,4,6,6.5,0.5,0,12,1,3.7,-1.7,3 -"1235",523,1,5,6.5,6.76197299101372,0.261972991013717,0,12,1,3.7,-1.7,3 -"1236",524,1,1,0,0.379613295856378,0.379613295856378,0,-5,0,-1,-1.4,-8 -"1237",525,1,1,0,0.0166524799595639,0.0166524799595639,1,35,0,-1.7,-0.199999999999999,18 -"1238",526,1,1,0,2,2,0,14,1,4.6,-2,2 -"1239",526,1,2,2,2.24422378914978,0.244223789149775,0,14,1,4.6,-2,2 -"1240",527,1,1,0,1.30833461914648,1.30833461914648,0,-4,1,3.4,-0.199999999999999,-1 -"1241",528,1,1,0,1.06422266130914,1.06422266130914,1,8,0,4.9,0.199999999999999,4 -"1242",529,1,1,0,0.872928058425667,0.872928058425667,0,-2,1,3.6,-0.9,-10 -"1243",530,1,1,0,0.624603847528776,0.624603847528776,1,-4,0,-5.1,0,1 -"1244",531,1,1,0,2,2,0,-5,0,-3,-1.2,0 -"1245",531,1,2,2,3,1,0,-5,0,-3,-1.2,0 -"1246",531,1,3,3,4.84728577850787,1.84728577850787,0,-5,0,-3,-1.2,0 -"1247",532,1,1,0,2,2,0,2,1,4.1,-0.0999999999999996,2 -"1248",532,1,2,2,3,1,0,2,1,4.1,-0.0999999999999996,2 -"1249",532,1,3,3,3.56012013000104,0.560120130001038,0,2,1,4.1,-0.0999999999999996,2 -"1250",533,1,1,0,2,2,0,20,1,4.6,0.899999999999999,2 -"1251",533,1,2,2,2.0683201273381,0.0683201273380966,1,20,1,4.6,0.899999999999999,2 -"1252",534,1,1,0,1.10435577589992,1.10435577589992,1,-12,1,-3.2,-0.6,18 -"1253",535,1,1,0,1.8225079287101,1.8225079287101,1,-18,0,-1.2,0.600000000000001,9 -"1254",536,1,1,0,2,2,0,-22,0,5.7,0.699999999999999,0 -"1255",536,1,2,2,3,1,0,-22,0,5.7,0.699999999999999,0 -"1256",536,1,3,3,6,3,0,-22,0,5.7,0.699999999999999,0 -"1257",536,1,4,6,6.5,0.5,0,-22,0,5.7,0.699999999999999,0 -"1258",536,1,5,6.5,8,1.5,0,-22,0,5.7,0.699999999999999,0 -"1259",536,1,6,8,10,2,0,-22,0,5.7,0.699999999999999,0 -"1260",537,1,1,0,1.30111885582283,1.30111885582283,1,32,1,4.1,-1.8,3 -"1261",538,1,1,0,0.0431818251704386,0.0431818251704386,0,-1,1,2.5,-2.2,-6 -"1262",539,1,1,0,0.488669507797165,0.488669507797165,1,5,0,-1.3,0.800000000000001,1 -"1263",540,1,1,0,2,2,0,11,1,2.6,-0.199999999999999,-5 -"1264",540,1,2,2,2.42545920604815,0.425459206048152,0,11,1,2.6,-0.199999999999999,-5 -"1265",541,1,1,0,0.1224039568477,0.1224039568477,1,18,0,2.8,1.5,2 -"1266",542,1,1,0,0.976710595851798,0.976710595851798,1,18,0,1.5,-1.1,3 -"1267",543,1,1,0,0.461281285233994,0.461281285233994,1,13,1,1.5,-0.0999999999999996,4 -"1268",544,1,1,0,2,2,0,-4,0,-1.7,-0.4,4 -"1269",544,1,2,2,3,1,0,-4,0,-1.7,-0.4,4 -"1270",544,1,3,3,6,3,0,-4,0,-1.7,-0.4,4 -"1271",544,1,4,6,6.5,0.5,0,-4,0,-1.7,-0.4,4 -"1272",544,1,5,6.5,7.06318522630672,0.563185226306723,0,-4,0,-1.7,-0.4,4 -"1273",545,1,1,0,0.292720762294652,0.292720762294652,1,17,0,-0.200000000000003,-0.300000000000001,-3 -"1274",546,1,1,0,2,2,0,-14,0,-4.5,-0.699999999999999,-1 -"1275",546,1,2,2,3,1,0,-14,0,-4.5,-0.699999999999999,-1 -"1276",546,1,3,3,5.04805609439728,2.04805609439728,0,-14,0,-4.5,-0.699999999999999,-1 -"1277",547,1,1,0,2,2,0,36,1,1.4,-0.199999999999999,-6 -"1278",547,1,2,2,2.17831796692135,0.178317966921355,0,36,1,1.4,-0.199999999999999,-6 -"1279",548,1,1,0,0.0614860450131264,0.0614860450131264,1,11,1,0.399999999999999,0.800000000000001,2 -"1280",549,1,1,0,2,2,0,2,1,2.9,-0.199999999999999,10 -"1281",549,1,2,2,3,1,0,2,1,2.9,-0.199999999999999,10 -"1282",549,1,3,3,4.96975831060342,1.96975831060342,0,2,1,2.9,-0.199999999999999,10 -"1283",550,1,1,0,2,2,0,-10,1,0.799999999999997,-2.3,1 -"1284",550,1,2,2,3,1,0,-10,1,0.799999999999997,-2.3,1 -"1285",550,1,3,3,5.17746056116266,2.17746056116267,0,-10,1,0.799999999999997,-2.3,1 -"1286",551,1,1,0,0.948692095729562,0.948692095729562,1,11,0,-6.7,0.199999999999999,-5 -"1287",552,1,1,0,0.467526324231501,0.467526324231501,0,-3,1,-0.399999999999999,-0.5,3 -"1288",553,1,1,0,2,2,0,-19,0,3.3,-0.0999999999999996,-3 -"1289",553,1,2,2,3,1,0,-19,0,3.3,-0.0999999999999996,-3 -"1290",553,1,3,3,6,3,0,-19,0,3.3,-0.0999999999999996,-3 -"1291",553,1,4,6,6.5,0.5,0,-19,0,3.3,-0.0999999999999996,-3 -"1292",553,1,5,6.5,8,1.5,0,-19,0,3.3,-0.0999999999999996,-3 -"1293",553,1,6,8,9.44553337281041,1.44553337281041,0,-19,0,3.3,-0.0999999999999996,-3 -"1294",554,1,1,0,0.74777081295367,0.74777081295367,1,10,1,3.3,-0.699999999999999,-1 -"1295",555,1,1,0,2,2,0,-1,1,0.600000000000001,0.100000000000001,6 -"1296",555,1,2,2,3,1,0,-1,1,0.600000000000001,0.100000000000001,6 -"1297",555,1,3,3,3.80228036713265,0.80228036713265,0,-1,1,0.600000000000001,0.100000000000001,6 -"1298",556,1,1,0,1.0721980175442,1.0721980175442,1,-8,1,4.6,-1.1,5 -"1299",557,1,1,0,2,2,0,-12,0,3.9,0.399999999999999,-1 -"1300",557,1,2,2,3,1,0,-12,0,3.9,0.399999999999999,-1 -"1301",557,1,3,3,6,3,0,-12,0,3.9,0.399999999999999,-1 -"1302",557,1,4,6,6.5,0.5,0,-12,0,3.9,0.399999999999999,-1 -"1303",557,1,5,6.5,8,1.5,0,-12,0,3.9,0.399999999999999,-1 -"1304",557,1,6,8,8.49556473772199,0.495564737721994,1,-12,0,3.9,0.399999999999999,-1 -"1305",558,1,1,0,1.8143323513935,1.8143323513935,1,-21,0,5.9,-0.5,6 -"1306",559,1,1,0,0.259128686830835,0.259128686830835,0,19,1,7.1,-0.300000000000001,2 -"1307",560,1,1,0,0.705357759674589,0.705357759674589,0,3,0,-6.6,-0.699999999999999,-10 -"1308",561,1,1,0,2,2,0,-25,0,0.200000000000003,-0.9,-6 -"1309",561,1,2,2,3,1,0,-25,0,0.200000000000003,-0.9,-6 -"1310",561,1,3,3,4.372317195995,1.372317195995,0,-25,0,0.200000000000003,-0.9,-6 -"1311",562,1,1,0,1.94588098323943,1.94588098323943,0,9,0,-10.1,0,-2 -"1312",563,1,1,0,1.6113556475423,1.6113556475423,1,-5,1,-4,0.800000000000001,-7 -"1313",564,1,1,0,2,2,0,-6,0,-4.3,-1.2,-3 -"1314",564,1,2,2,3,1,0,-6,0,-4.3,-1.2,-3 -"1315",564,1,3,3,5.15313873783057,2.15313873783057,0,-6,0,-4.3,-1.2,-3 -"1316",565,1,1,0,1.97994255136402,1.97994255136402,1,3,0,0.700000000000003,-1.4,-4 -"1317",566,1,1,0,0.207091862170003,0.207091862170003,1,-17,0,-1.1,-0.199999999999999,9 -"1318",567,1,1,0,1.96828082287892,1.96828082287892,0,-7,1,4.5,0.300000000000001,9 -"1319",568,1,1,0,1.36714793126263,1.36714793126263,0,1,0,-2.6,1,-8 -"1320",569,1,1,0,2,2,0,3,0,1.9,0.699999999999999,-6 -"1321",569,1,2,2,3,1,0,3,0,1.9,0.699999999999999,-6 -"1322",569,1,3,3,6,3,0,3,0,1.9,0.699999999999999,-6 -"1323",569,1,4,6,6.5,0.5,0,3,0,1.9,0.699999999999999,-6 -"1324",569,1,5,6.5,8,1.5,0,3,0,1.9,0.699999999999999,-6 -"1325",569,1,6,8,8.95837480829551,0.958374808295508,1,3,0,1.9,0.699999999999999,-6 -"1326",570,1,1,0,2,2,0,-18,0,0,-0.0999999999999996,4 -"1327",570,1,2,2,3,1,0,-18,0,0,-0.0999999999999996,4 -"1328",570,1,3,3,3.00246209352887,0.0024620935288699,0,-18,0,0,-0.0999999999999996,4 -"1329",571,1,1,0,1.06410197682506,1.06410197682506,0,2,1,-0.600000000000001,-0.9,0 -"1330",572,1,1,0,2,2,0,1,0,-0.399999999999999,-2.5,3 -"1331",572,1,2,2,2.14935453921434,0.149354539214336,1,1,0,-0.399999999999999,-2.5,3 -"1332",573,1,1,0,0.983303617624489,0.983303617624489,0,3,1,0.399999999999999,-0.9,-2 -"1333",574,1,1,0,0.515052556790314,0.515052556790314,0,-11,1,2.2,-0.4,3 -"1334",575,1,1,0,1.63381212262143,1.63381212262143,0,-13,1,-10.5,-0.699999999999999,-3 -"1335",576,1,1,0,0.166828732333986,0.166828732333986,1,7,1,-4.5,0.800000000000001,16 -"1336",577,1,1,0,0.0257932619543425,0.0257932619543425,1,10,0,-2.6,-0.4,7 -"1337",578,1,1,0,0.685083360506436,0.685083360506436,1,5,1,2.5,-0.300000000000001,6 -"1338",579,1,1,0,2,2,0,-6,0,-11.4,-1.2,-1 -"1339",579,1,2,2,3,1,0,-6,0,-11.4,-1.2,-1 -"1340",579,1,3,3,6,3,0,-6,0,-11.4,-1.2,-1 -"1341",579,1,4,6,6.12038803144102,0.120388031441023,0,-6,0,-11.4,-1.2,-1 -"1342",580,1,1,0,0.627856451604986,0.627856451604986,0,3,0,-7.6,-1.9,-1 -"1343",581,1,1,0,2,2,0,-27,0,1.5,0.5,8 -"1344",581,1,2,2,3,1,0,-27,0,1.5,0.5,8 -"1345",581,1,3,3,6,3,0,-27,0,1.5,0.5,8 -"1346",581,1,4,6,6.21347357517354,0.213473575173538,1,-27,0,1.5,0.5,8 -"1347",582,1,1,0,2,2,0,5,1,-6,0.399999999999999,4 -"1348",582,1,2,2,3,1,0,5,1,-6,0.399999999999999,4 -"1349",582,1,3,3,6,3,0,5,1,-6,0.399999999999999,4 -"1350",582,1,4,6,6.5,0.5,0,5,1,-6,0.399999999999999,4 -"1351",582,1,5,6.5,8,1.5,0,5,1,-6,0.399999999999999,4 -"1352",582,1,6,8,9.75159271280097,1.75159271280097,0,5,1,-6,0.399999999999999,4 -"1353",583,1,1,0,0.412176348832501,0.412176348832501,1,13,0,-2.8,0.600000000000001,5 -"1354",584,1,1,0,0.312766531215647,0.312766531215647,1,28,0,-1.8,0.199999999999999,0 -"1355",585,1,1,0,0.00685830379677614,0.00685830379677614,1,26,1,0.200000000000003,1.1,0 -"1356",586,1,1,0,1.10777080372163,1.10777080372163,1,0,1,-0.799999999999997,1.6,4 -"1357",587,1,1,0,2,2,0,5,0,0.100000000000001,0.399999999999999,-8 -"1358",587,1,2,2,2.69667380016794,0.696673800167939,1,5,0,0.100000000000001,0.399999999999999,-8 -"1359",588,1,1,0,2,2,0,-8,0,2.2,-0.199999999999999,-5 -"1360",588,1,2,2,3,1,0,-8,0,2.2,-0.199999999999999,-5 -"1361",588,1,3,3,4.47081409953879,1.47081409953878,0,-8,0,2.2,-0.199999999999999,-5 -"1362",589,1,1,0,2,2,0,-19,1,-7.3,-1.1,6 -"1363",589,1,2,2,3,1,0,-19,1,-7.3,-1.1,6 -"1364",589,1,3,3,6,3,0,-19,1,-7.3,-1.1,6 -"1365",589,1,4,6,6.5,0.5,0,-19,1,-7.3,-1.1,6 -"1366",589,1,5,6.5,7.71234486047716,1.21234486047716,1,-19,1,-7.3,-1.1,6 -"1367",590,1,1,0,0.993966057460983,0.993966057460983,0,6,0,-1.8,-1,1 -"1368",591,1,1,0,0.473417789973421,0.473417789973421,1,11,0,-4.9,2.5,7 -"1369",592,1,1,0,2,2,0,-4,1,0.399999999999999,-0.300000000000001,-5 -"1370",592,1,2,2,3,1,0,-4,1,0.399999999999999,-0.300000000000001,-5 -"1371",592,1,3,3,5.38447097380205,2.38447097380205,0,-4,1,0.399999999999999,-0.300000000000001,-5 -"1372",593,1,1,0,0.160826208946361,0.160826208946361,1,10,1,-4.6,2.4,2 -"1373",594,1,1,0,2,2,0,8,1,-0.299999999999997,0.5,2 -"1374",594,1,2,2,3,1,0,8,1,-0.299999999999997,0.5,2 -"1375",594,1,3,3,6,3,0,8,1,-0.299999999999997,0.5,2 -"1376",594,1,4,6,6.5,0.5,0,8,1,-0.299999999999997,0.5,2 -"1377",594,1,5,6.5,7.46726899487107,0.967268994871067,0,8,1,-0.299999999999997,0.5,2 -"1378",595,1,1,0,0.222871047764728,0.222871047764728,1,-11,1,3.4,1.2,-1 -"1379",596,1,1,0,2,2,0,-12,0,0.200000000000003,-0.5,-7 -"1380",596,1,2,2,2.00193143999451,0.00193143999450525,0,-12,0,0.200000000000003,-0.5,-7 -"1381",597,1,1,0,0.321126191331088,0.321126191331088,1,24,0,1.6,-0.699999999999999,-5 -"1382",598,1,1,0,2,2,0,-33,1,0.399999999999999,0.899999999999999,1 -"1383",598,1,2,2,3,1,0,-33,1,0.399999999999999,0.899999999999999,1 -"1384",598,1,3,3,3.47596202476451,0.475962024764514,0,-33,1,0.399999999999999,0.899999999999999,1 -"1385",599,1,1,0,1.62046429311324,1.62046429311324,1,5,1,7,1.2,0 -"1386",600,1,1,0,2,2,0,0,1,-1.9,-2,-7 -"1387",600,1,2,2,3,1,0,0,1,-1.9,-2,-7 -"1388",600,1,3,3,6,3,0,0,1,-1.9,-2,-7 -"1389",600,1,4,6,6.34495128732038,0.344951287320376,0,0,1,-1.9,-2,-7 -"1390",601,1,1,0,2,2,0,-8,0,-2.6,-0.6,1 -"1391",601,1,2,2,3,1,0,-8,0,-2.6,-0.6,1 -"1392",601,1,3,3,6,3,0,-8,0,-2.6,-0.6,1 -"1393",601,1,4,6,6.5,0.5,0,-8,0,-2.6,-0.6,1 -"1394",601,1,5,6.5,8,1.5,0,-8,0,-2.6,-0.6,1 -"1395",601,1,6,8,10,2,0,-8,0,-2.6,-0.6,1 -"1396",602,1,1,0,1.67755731595144,1.67755731595144,0,3,0,1.7,-0.9,-5 -"1397",603,1,1,0,2,2,0,-14,0,-2.2,-0.4,-4 -"1398",603,1,2,2,3,1,0,-14,0,-2.2,-0.4,-4 -"1399",603,1,3,3,6,3,0,-14,0,-2.2,-0.4,-4 -"1400",603,1,4,6,6.5,0.5,0,-14,0,-2.2,-0.4,-4 -"1401",603,1,5,6.5,8,1.5,0,-14,0,-2.2,-0.4,-4 -"1402",603,1,6,8,10,2,0,-14,0,-2.2,-0.4,-4 -"1403",604,1,1,0,0.652697024167318,0.652697024167318,0,20,1,-2.7,0.199999999999999,3 -"1404",605,1,1,0,2,2,0,-8,1,5,-0.6,1 -"1405",605,1,2,2,3,1,0,-8,1,5,-0.6,1 -"1406",605,1,3,3,5.33244948626488,2.33244948626488,0,-8,1,5,-0.6,1 -"1407",606,1,1,0,2,2,0,14,1,4.8,-2.1,-6 -"1408",606,1,2,2,3,1,0,14,1,4.8,-2.1,-6 -"1409",606,1,3,3,6,3,0,14,1,4.8,-2.1,-6 -"1410",606,1,4,6,6.5,0.5,0,14,1,4.8,-2.1,-6 -"1411",606,1,5,6.5,8,1.5,0,14,1,4.8,-2.1,-6 -"1412",606,1,6,8,10,2,0,14,1,4.8,-2.1,-6 -"1413",607,1,1,0,2,2,0,-2,0,-4.7,-0.9,-2 -"1414",607,1,2,2,3,1,0,-2,0,-4.7,-0.9,-2 -"1415",607,1,3,3,6,3,0,-2,0,-4.7,-0.9,-2 -"1416",607,1,4,6,6.5,0.5,0,-2,0,-4.7,-0.9,-2 -"1417",607,1,5,6.5,8,1.5,0,-2,0,-4.7,-0.9,-2 -"1418",607,1,6,8,9.37813130424033,1.37813130424033,0,-2,0,-4.7,-0.9,-2 -"1419",608,1,1,0,0.648958145969204,0.648958145969204,0,0,0,-0.700000000000003,1.5,2 -"1420",609,1,1,0,2,2,0,11,0,-1.7,-0.199999999999999,-2 -"1421",609,1,2,2,3,1,0,11,0,-1.7,-0.199999999999999,-2 -"1422",609,1,3,3,3.84492692201488,0.844926922014881,1,11,0,-1.7,-0.199999999999999,-2 -"1423",610,1,1,0,0.131088379532139,0.131088379532139,1,2,1,1.2,0.300000000000001,9 -"1424",611,1,1,0,0.876667574604281,0.876667574604281,0,-7,0,3.8,-0.199999999999999,2 -"1425",612,1,1,0,0.114840173663684,0.114840173663684,1,10,0,-1.2,1.6,-4 -"1426",613,1,1,0,2,2,0,9,1,2,-0.800000000000001,2 -"1427",613,1,2,2,3,1,0,9,1,2,-0.800000000000001,2 -"1428",613,1,3,3,5.64240371195453,2.64240371195453,0,9,1,2,-0.800000000000001,2 -"1429",614,1,1,0,2,2,0,2,1,-4.4,0.399999999999999,-6 -"1430",614,1,2,2,3,1,0,2,1,-4.4,0.399999999999999,-6 -"1431",614,1,3,3,6,3,0,2,1,-4.4,0.399999999999999,-6 -"1432",614,1,4,6,6.5,0.5,0,2,1,-4.4,0.399999999999999,-6 -"1433",614,1,5,6.5,8,1.5,0,2,1,-4.4,0.399999999999999,-6 -"1434",614,1,6,8,10,2,0,2,1,-4.4,0.399999999999999,-6 -"1435",615,1,1,0,2,2,0,-3,1,-3,0.399999999999999,-4 -"1436",615,1,2,2,3,1,0,-3,1,-3,0.399999999999999,-4 -"1437",615,1,3,3,6,3,0,-3,1,-3,0.399999999999999,-4 -"1438",615,1,4,6,6.5,0.5,0,-3,1,-3,0.399999999999999,-4 -"1439",615,1,5,6.5,8,1.5,0,-3,1,-3,0.399999999999999,-4 -"1440",615,1,6,8,9.03853059328614,1.03853059328614,0,-3,1,-3,0.399999999999999,-4 -"1441",616,1,1,0,0.15182184660442,0.15182184660442,1,-4,1,0.5,1.6,-3 -"1442",617,1,1,0,2,2,0,-7,1,-1.4,-0.199999999999999,0 -"1443",617,1,2,2,3,1,0,-7,1,-1.4,-0.199999999999999,0 -"1444",617,1,3,3,3.96537376357597,0.965373763575967,0,-7,1,-1.4,-0.199999999999999,0 -"1445",618,1,1,0,0.645413082946445,0.645413082946445,1,-5,1,-2.7,-2.4,-7 -"1446",619,1,1,0,2,2,0,-9,0,-2.6,0.399999999999999,-7 -"1447",619,1,2,2,2.68287354315446,0.682873543154465,0,-9,0,-2.6,0.399999999999999,-7 -"1448",620,1,1,0,1.33636379275346,1.33636379275346,1,5,1,1.1,1.2,8 -"1449",621,1,1,0,0.193275981686877,0.193275981686877,1,6,0,0.700000000000003,-0.800000000000001,3 -"1450",622,1,1,0,0.288074799396701,0.288074799396701,1,11,1,-0.299999999999997,0.199999999999999,-5 -"1451",623,1,1,0,0.366360038654189,0.366360038654189,1,-2,0,-2.2,1.1,-9 -"1452",624,1,1,0,2,2,0,16,1,6.4,-1,3 -"1453",624,1,2,2,2.95969064348601,0.959690643486009,1,16,1,6.4,-1,3 -"1454",625,1,1,0,0.409628098035332,0.409628098035332,1,7,1,0.299999999999997,0.100000000000001,0 -"1455",626,1,1,0,1.14304334664709,1.14304334664709,1,30,1,5.9,0.100000000000001,-4 -"1456",627,1,1,0,1.86661301497636,1.86661301497636,1,1,0,-8.5,-1.1,5 -"1457",628,1,1,0,0.174072399025162,0.174072399025162,0,-18,1,3.1,-0.199999999999999,6 -"1458",629,1,1,0,1.93970564311779,1.93970564311779,0,-22,1,-1.9,-1,3 -"1459",630,1,1,0,2,2,0,11,0,-2.4,-1,10 -"1460",630,1,2,2,2.39617687042404,0.396176870424043,1,11,0,-2.4,-1,10 -"1461",631,1,1,0,0.205012778231301,0.205012778231301,1,4,0,-3.3,0.300000000000001,7 -"1462",632,1,1,0,2,2,0,-14,1,6.3,-1.1,2 -"1463",632,1,2,2,3,1,0,-14,1,6.3,-1.1,2 -"1464",632,1,3,3,6,3,0,-14,1,6.3,-1.1,2 -"1465",632,1,4,6,6.5,0.5,0,-14,1,6.3,-1.1,2 -"1466",632,1,5,6.5,8,1.5,0,-14,1,6.3,-1.1,2 -"1467",632,1,6,8,10,2,0,-14,1,6.3,-1.1,2 -"1468",633,1,1,0,2,2,0,2,1,6.5,-1.2,0 -"1469",633,1,2,2,2.01416039858984,0.0141603985898379,0,2,1,6.5,-1.2,0 -"1470",634,1,1,0,1.77440898887813,1.77440898887813,1,16,0,0.799999999999997,-0.300000000000001,-3 -"1471",635,1,1,0,0.0686697579783424,0.0686697579783424,1,24,0,4.2,0.899999999999999,-4 -"1472",636,1,1,0,1.96872301945021,1.96872301945021,0,-6,1,-0.799999999999997,-1.5,-4 -"1473",637,1,1,0,1.09816280852806,1.09816280852806,0,-3,0,3.8,1,-9 -"1474",638,1,1,0,2,2,0,13,1,1.8,1.5,-3 -"1475",638,1,2,2,2.1617372818555,0.161737281855497,0,13,1,1.8,1.5,-3 -"1476",639,1,1,0,0.168354628907259,0.168354628907259,0,-10,0,1.4,-1.6,-3 -"1477",640,1,1,0,0.98937121342105,0.98937121342105,1,29,0,0.399999999999999,0.399999999999999,-3 -"1478",641,1,1,0,0.193902877633977,0.193902877633977,0,2,1,-2.3,-1.4,9 -"1479",642,1,1,0,0.0780448611012087,0.0780448611012087,0,-17,1,-1.1,0.399999999999999,-4 -"1480",643,1,1,0,0.528082628398178,0.528082628398178,0,-5,1,0.799999999999997,-2.4,-8 -"1481",644,1,1,0,2,2,0,-8,1,0.399999999999999,0.399999999999999,4 -"1482",644,1,2,2,3,1,0,-8,1,0.399999999999999,0.399999999999999,4 -"1483",644,1,3,3,4.74916344354909,1.74916344354909,0,-8,1,0.399999999999999,0.399999999999999,4 -"1484",645,1,1,0,0.122791678542785,0.122791678542785,1,-12,0,-3.5,1.4,5 -"1485",646,1,1,0,0.863225923477778,0.863225923477778,1,-7,1,6,-1.6,-2 -"1486",647,1,1,0,1.99083410084583,1.99083410084583,1,-8,1,0.299999999999997,-0.9,-10 -"1487",648,1,1,0,2,2,0,6,0,5.9,-0.5,6 -"1488",648,1,2,2,3,1,0,6,0,5.9,-0.5,6 -"1489",648,1,3,3,6,3,0,6,0,5.9,-0.5,6 -"1490",648,1,4,6,6.5,0.5,0,6,0,5.9,-0.5,6 -"1491",648,1,5,6.5,7.78658380090257,1.28658380090257,0,6,0,5.9,-0.5,6 -"1492",649,1,1,0,0.730943528631009,0.730943528631009,1,4,0,0.299999999999997,0.5,4 -"1493",650,1,1,0,1.21350884522737,1.21350884522737,1,2,0,0.600000000000001,-2.4,-1 -"1494",651,1,1,0,2,2,0,0,0,1.2,-0.800000000000001,9 -"1495",651,1,2,2,3,1,0,0,0,1.2,-0.800000000000001,9 -"1496",651,1,3,3,3.79891342310167,0.798913423101666,1,0,0,1.2,-0.800000000000001,9 -"1497",652,1,1,0,1.81608796443047,1.81608796443047,0,-13,1,-5.9,-1.3,-1 -"1498",653,1,1,0,2,2,0,2,1,-5,0.100000000000001,-9 -"1499",653,1,2,2,2.28420260997555,0.28420260997555,0,2,1,-5,0.100000000000001,-9 -"1500",654,1,1,0,0.49402860081658,0.49402860081658,0,15,1,-3.4,-1.2,-5 -"1501",655,1,1,0,2,2,0,-19,0,-2.3,0.800000000000001,-8 -"1502",655,1,2,2,3,1,0,-19,0,-2.3,0.800000000000001,-8 -"1503",655,1,3,3,6,3,0,-19,0,-2.3,0.800000000000001,-8 -"1504",655,1,4,6,6.5,0.5,0,-19,0,-2.3,0.800000000000001,-8 -"1505",655,1,5,6.5,6.92601961908021,0.426019619080214,0,-19,0,-2.3,0.800000000000001,-8 -"1506",656,1,1,0,0.15860369461236,0.15860369461236,1,22,0,4.2,-1.4,7 -"1507",657,1,1,0,0.261137681567906,0.261137681567906,0,9,1,2.7,0.399999999999999,9 -"1508",658,1,1,0,0.952113252343228,0.952113252343228,1,5,0,4.3,-0.4,-2 -"1509",659,1,1,0,2,2,0,-30,1,-2.6,0.100000000000001,-1 -"1510",659,1,2,2,3,1,0,-30,1,-2.6,0.100000000000001,-1 -"1511",659,1,3,3,6,3,0,-30,1,-2.6,0.100000000000001,-1 -"1512",659,1,4,6,6.5,0.5,0,-30,1,-2.6,0.100000000000001,-1 -"1513",659,1,5,6.5,8,1.5,0,-30,1,-2.6,0.100000000000001,-1 -"1514",659,1,6,8,10,2,0,-30,1,-2.6,0.100000000000001,-1 -"1515",660,1,1,0,2,2,0,-4,1,0.200000000000003,0.300000000000001,3 -"1516",660,1,2,2,3,1,0,-4,1,0.200000000000003,0.300000000000001,3 -"1517",660,1,3,3,4.47705588700029,1.47705588700029,0,-4,1,0.200000000000003,0.300000000000001,3 -"1518",661,1,1,0,0.634017600051278,0.634017600051278,0,-22,0,-3.6,-0.4,0 -"1519",662,1,1,0,0.0453522276653267,0.0453522276653267,1,1,1,-4.5,0.399999999999999,-4 -"1520",663,1,1,0,2,2,0,-4,1,4.5,-1.5,-12 -"1521",663,1,2,2,3,1,0,-4,1,4.5,-1.5,-12 -"1522",663,1,3,3,6,3,0,-4,1,4.5,-1.5,-12 -"1523",663,1,4,6,6.5,0.5,0,-4,1,4.5,-1.5,-12 -"1524",663,1,5,6.5,6.57222466485991,0.0722246648599129,0,-4,1,4.5,-1.5,-12 -"1525",664,1,1,0,0.916626887789515,0.916626887789515,1,8,0,7,0.399999999999999,4 -"1526",665,1,1,0,2,2,0,8,1,-14.8,-1.2,2 -"1527",665,1,2,2,3,1,0,8,1,-14.8,-1.2,2 -"1528",665,1,3,3,5.82794142915944,2.82794142915944,0,8,1,-14.8,-1.2,2 -"1529",666,1,1,0,0.168266937303147,0.168266937303147,1,14,0,2.5,-0.5,-7 -"1530",667,1,1,0,1.73261311462366,1.73261311462366,1,-4,1,-7.3,1,10 -"1531",668,1,1,0,1.36116065319564,1.36116065319564,1,15,0,0.799999999999997,-1,-2 -"1532",669,1,1,0,0.438836021570586,0.438836021570586,0,-3,1,-6.6,0.5,-1 -"1533",670,1,1,0,0.0526987812065223,0.0526987812065223,0,8,1,3.1,1.2,-2 -"1534",671,1,1,0,1.31924592971932,1.31924592971932,1,-1,1,-1.2,1.6,5 -"1535",672,1,1,0,2,2,0,-2,1,4.8,0.199999999999999,-6 -"1536",672,1,2,2,3,1,0,-2,1,4.8,0.199999999999999,-6 -"1537",672,1,3,3,6,3,0,-2,1,4.8,0.199999999999999,-6 -"1538",672,1,4,6,6.06961115922104,0.0696111592210427,1,-2,1,4.8,0.199999999999999,-6 -"1539",673,1,1,0,2,2,0,1,1,1,1.2,-5 -"1540",673,1,2,2,3,1,0,1,1,1,1.2,-5 -"1541",673,1,3,3,5.84307764872287,2.84307764872287,0,1,1,1,1.2,-5 -"1542",674,1,1,0,0.125753779851109,0.125753779851109,0,-21,0,-0.200000000000003,0.399999999999999,3 -"1543",675,1,1,0,2,2,0,-2,1,2.3,1.7,4 -"1544",675,1,2,2,3,1,0,-2,1,2.3,1.7,4 -"1545",675,1,3,3,6,3,0,-2,1,2.3,1.7,4 -"1546",675,1,4,6,6.5,0.5,0,-2,1,2.3,1.7,4 -"1547",675,1,5,6.5,7.04234201715895,0.542342017158946,0,-2,1,2.3,1.7,4 -"1548",676,1,1,0,1.4535985261599,1.4535985261599,0,-10,0,-5.4,0.600000000000001,-13 -"1549",677,1,1,0,2,2,0,-39,1,0.600000000000001,0.399999999999999,1 -"1550",677,1,2,2,3,1,0,-39,1,0.600000000000001,0.399999999999999,1 -"1551",677,1,3,3,6,3,0,-39,1,0.600000000000001,0.399999999999999,1 -"1552",677,1,4,6,6.5,0.5,0,-39,1,0.600000000000001,0.399999999999999,1 -"1553",677,1,5,6.5,8,1.5,0,-39,1,0.600000000000001,0.399999999999999,1 -"1554",677,1,6,8,10,2,0,-39,1,0.600000000000001,0.399999999999999,1 -"1555",678,1,1,0,2,2,0,-5,0,0.700000000000003,-0.6,-2 -"1556",678,1,2,2,2.0021494420907,0.00214944209069939,1,-5,0,0.700000000000003,-0.6,-2 -"1557",679,1,1,0,2,2,0,20,0,2.1,-1.5,-2 -"1558",679,1,2,2,3,1,0,20,0,2.1,-1.5,-2 -"1559",679,1,3,3,3.02984634683658,0.0298463468365829,1,20,0,2.1,-1.5,-2 -"1560",680,1,1,0,0.00963169499927858,0.00963169499927858,1,11,0,1,0.199999999999999,1 -"1561",681,1,1,0,2,2,0,-10,1,-6,-1.7,-8 -"1562",681,1,2,2,3,1,0,-10,1,-6,-1.7,-8 -"1563",681,1,3,3,6,3,0,-10,1,-6,-1.7,-8 -"1564",681,1,4,6,6.5,0.5,0,-10,1,-6,-1.7,-8 -"1565",681,1,5,6.5,8,1.5,0,-10,1,-6,-1.7,-8 -"1566",681,1,6,8,9.27039102996802,1.27039102996802,0,-10,1,-6,-1.7,-8 -"1567",682,1,1,0,0.696287797561889,0.696287797561889,1,-8,0,3.1,0.199999999999999,2 -"1568",683,1,1,0,0.0322133979258273,0.0322133979258273,1,2,1,-3.7,1.6,2 -"1569",684,1,1,0,2,2,0,-19,1,2.4,-0.199999999999999,-1 -"1570",684,1,2,2,3,1,0,-19,1,2.4,-0.199999999999999,-1 -"1571",684,1,3,3,3.94463099917981,0.944630999179813,0,-19,1,2.4,-0.199999999999999,-1 -"1572",685,1,1,0,0.407005823797335,0.407005823797335,1,-14,0,1.7,0.600000000000001,-5 -"1573",686,1,1,0,0.591719228935945,0.591719228935945,1,-9,1,2,-0.0999999999999996,6 -"1574",687,1,1,0,2,2,0,-10,0,1.3,-0.699999999999999,3 -"1575",687,1,2,2,3,1,0,-10,0,1.3,-0.699999999999999,3 -"1576",687,1,3,3,4.36113659022012,1.36113659022012,0,-10,0,1.3,-0.699999999999999,3 -"1577",688,1,1,0,0.0942079796494929,0.0942079796494929,1,23,0,4.2,0.100000000000001,-1 -"1578",689,1,1,0,0.298004153688043,0.298004153688043,1,25,0,-4,-0.0999999999999996,6 -"1579",690,1,1,0,1.52659559988007,1.52659559988007,0,-22,1,-5.7,0,10 -"1580",691,1,1,0,2,2,0,-3,0,5.2,-1.5,0 -"1581",691,1,2,2,2.57143651972413,0.571436519724126,1,-3,0,5.2,-1.5,0 -"1582",692,1,1,0,2,2,0,-29,1,-0.399999999999999,0.100000000000001,3 -"1583",692,1,2,2,3,1,0,-29,1,-0.399999999999999,0.100000000000001,3 -"1584",692,1,3,3,6,3,0,-29,1,-0.399999999999999,0.100000000000001,3 -"1585",692,1,4,6,6.5,0.5,0,-29,1,-0.399999999999999,0.100000000000001,3 -"1586",692,1,5,6.5,8,1.5,0,-29,1,-0.399999999999999,0.100000000000001,3 -"1587",692,1,6,8,10,2,0,-29,1,-0.399999999999999,0.100000000000001,3 -"1588",693,1,1,0,0.81853161417782,0.81853161417782,1,7,1,-2.5,-0.699999999999999,6 -"1589",694,1,1,0,2,2,0,-4,1,-0.200000000000003,-1.7,0 -"1590",694,1,2,2,3,1,0,-4,1,-0.200000000000003,-1.7,0 -"1591",694,1,3,3,4.02354463942828,1.02354463942828,1,-4,1,-0.200000000000003,-1.7,0 -"1592",695,1,1,0,1.32231598380106,1.32231598380106,1,3,1,5.6,1,7 -"1593",696,1,1,0,2,2,0,6,1,-0.600000000000001,0.5,-8 -"1594",696,1,2,2,3,1,0,6,1,-0.600000000000001,0.5,-8 -"1595",696,1,3,3,6,3,0,6,1,-0.600000000000001,0.5,-8 -"1596",696,1,4,6,6.5,0.5,0,6,1,-0.600000000000001,0.5,-8 -"1597",696,1,5,6.5,8,1.5,0,6,1,-0.600000000000001,0.5,-8 -"1598",696,1,6,8,10,2,0,6,1,-0.600000000000001,0.5,-8 -"1599",697,1,1,0,2,2,0,16,1,0.100000000000001,-1.5,12 -"1600",697,1,2,2,2.62588219518274,0.62588219518274,0,16,1,0.100000000000001,-1.5,12 -"1601",698,1,1,0,2,2,0,0,1,-4.5,-0.5,-8 -"1602",698,1,2,2,3,1,0,0,1,-4.5,-0.5,-8 -"1603",698,1,3,3,6,3,0,0,1,-4.5,-0.5,-8 -"1604",698,1,4,6,6.5,0.5,0,0,1,-4.5,-0.5,-8 -"1605",698,1,5,6.5,6.52715689241482,0.0271568924148183,0,0,1,-4.5,-0.5,-8 -"1606",699,1,1,0,2,2,0,-5,0,-10.6,0.100000000000001,-3 -"1607",699,1,2,2,3,1,0,-5,0,-10.6,0.100000000000001,-3 -"1608",699,1,3,3,6,3,0,-5,0,-10.6,0.100000000000001,-3 -"1609",699,1,4,6,6.5,0.5,0,-5,0,-10.6,0.100000000000001,-3 -"1610",699,1,5,6.5,8,1.5,0,-5,0,-10.6,0.100000000000001,-3 -"1611",699,1,6,8,10,2,0,-5,0,-10.6,0.100000000000001,-3 -"1612",700,1,1,0,2,2,0,11,1,1.5,-0.9,-5 -"1613",700,1,2,2,2.63517676951991,0.635176769519913,0,11,1,1.5,-0.9,-5 -"1614",701,1,1,0,0.746296980107152,0.746296980107152,0,2,0,-1.3,1.7,1 -"1615",702,1,1,0,2,2,0,15,1,3.8,-0.6,5 -"1616",702,1,2,2,3,1,0,15,1,3.8,-0.6,5 -"1617",702,1,3,3,6,3,0,15,1,3.8,-0.6,5 -"1618",702,1,4,6,6.5,0.5,0,15,1,3.8,-0.6,5 -"1619",702,1,5,6.5,6.64003934039585,0.140039340395845,1,15,1,3.8,-0.6,5 -"1620",703,1,1,0,2,2,0,-23,1,-1.6,-0.0999999999999996,-6 -"1621",703,1,2,2,3,1,0,-23,1,-1.6,-0.0999999999999996,-6 -"1622",703,1,3,3,6,3,0,-23,1,-1.6,-0.0999999999999996,-6 -"1623",703,1,4,6,6.5,0.5,0,-23,1,-1.6,-0.0999999999999996,-6 -"1624",703,1,5,6.5,7.82297597927499,1.32297597927499,0,-23,1,-1.6,-0.0999999999999996,-6 -"1625",704,1,1,0,0.483564007043408,0.483564007043408,1,26,1,-6.4,-0.199999999999999,2 -"1626",705,1,1,0,1.04619526274603,1.04619526274603,1,-7,1,3.3,0.199999999999999,1 -"1627",706,1,1,0,0.0735325381268706,0.0735325381268706,1,10,0,1.3,0.699999999999999,4 -"1628",707,1,1,0,2,2,0,-8,1,2.7,-0.0999999999999996,-1 -"1629",707,1,2,2,3,1,0,-8,1,2.7,-0.0999999999999996,-1 -"1630",707,1,3,3,6,3,0,-8,1,2.7,-0.0999999999999996,-1 -"1631",707,1,4,6,6.5,0.5,0,-8,1,2.7,-0.0999999999999996,-1 -"1632",707,1,5,6.5,8,1.5,0,-8,1,2.7,-0.0999999999999996,-1 -"1633",707,1,6,8,10,2,0,-8,1,2.7,-0.0999999999999996,-1 -"1634",708,1,1,0,2,2,0,-15,0,-2.9,-0.5,-10 -"1635",708,1,2,2,3,1,0,-15,0,-2.9,-0.5,-10 -"1636",708,1,3,3,6,3,0,-15,0,-2.9,-0.5,-10 -"1637",708,1,4,6,6.5,0.5,0,-15,0,-2.9,-0.5,-10 -"1638",708,1,5,6.5,8,1.5,0,-15,0,-2.9,-0.5,-10 -"1639",708,1,6,8,10,2,0,-15,0,-2.9,-0.5,-10 -"1640",709,1,1,0,0.750216440414283,0.750216440414283,1,15,0,5.1,0.800000000000001,-7 -"1641",710,1,1,0,2,2,0,7,1,0.799999999999997,-1.8,-3 -"1642",710,1,2,2,3,1,0,7,1,0.799999999999997,-1.8,-3 -"1643",710,1,3,3,4.44456839183952,1.44456839183952,0,7,1,0.799999999999997,-1.8,-3 -"1644",711,1,1,0,2,2,0,14,0,-0.200000000000003,-1.2,-2 -"1645",711,1,2,2,3,1,0,14,0,-0.200000000000003,-1.2,-2 -"1646",711,1,3,3,6,3,0,14,0,-0.200000000000003,-1.2,-2 -"1647",711,1,4,6,6.5,0.5,0,14,0,-0.200000000000003,-1.2,-2 -"1648",711,1,5,6.5,6.97435240867703,0.47435240867703,1,14,0,-0.200000000000003,-1.2,-2 -"1649",712,1,1,0,0.285053380865232,0.285053380865232,1,-2,0,-0.600000000000001,-0.5,-4 -"1650",713,1,1,0,0.233023156794273,0.233023156794273,0,4,0,1.5,-1.2,3 -"1651",714,1,1,0,2,2,0,-8,1,1.4,-0.699999999999999,-3 -"1652",714,1,2,2,3,1,0,-8,1,1.4,-0.699999999999999,-3 -"1653",714,1,3,3,6,3,0,-8,1,1.4,-0.699999999999999,-3 -"1654",714,1,4,6,6.5,0.5,0,-8,1,1.4,-0.699999999999999,-3 -"1655",714,1,5,6.5,8,1.5,0,-8,1,1.4,-0.699999999999999,-3 -"1656",714,1,6,8,10,2,0,-8,1,1.4,-0.699999999999999,-3 -"1657",715,1,1,0,2,2,0,-2,0,-0.600000000000001,-2.3,2 -"1658",715,1,2,2,3,1,0,-2,0,-0.600000000000001,-2.3,2 -"1659",715,1,3,3,6,3,0,-2,0,-0.600000000000001,-2.3,2 -"1660",715,1,4,6,6.5,0.5,0,-2,0,-0.600000000000001,-2.3,2 -"1661",715,1,5,6.5,8,1.5,0,-2,0,-0.600000000000001,-2.3,2 -"1662",715,1,6,8,10,2,0,-2,0,-0.600000000000001,-2.3,2 -"1663",716,1,1,0,0.251021397476683,0.251021397476683,0,-20,0,-7.6,-1.8,3 -"1664",717,1,1,0,0.519973310845317,0.519973310845317,1,-2,0,3.8,-0.0999999999999996,8 -"1665",718,1,1,0,2,2,0,0,0,-8.3,-0.199999999999999,10 -"1666",718,1,2,2,3,1,0,0,0,-8.3,-0.199999999999999,10 -"1667",718,1,3,3,6,3,0,0,0,-8.3,-0.199999999999999,10 -"1668",718,1,4,6,6.5,0.5,0,0,0,-8.3,-0.199999999999999,10 -"1669",718,1,5,6.5,6.7232560551137,0.223256055113697,1,0,0,-8.3,-0.199999999999999,10 -"1670",719,1,1,0,0.284668772149308,0.284668772149308,1,-17,0,-3.1,-1,0 -"1671",720,1,1,0,0.415565753958828,0.415565753958828,1,7,1,6.9,1.3,6 -"1672",721,1,1,0,0.973660934376088,0.973660934376088,0,12,1,0.299999999999997,-0.800000000000001,-7 -"1673",722,1,1,0,1.10969904638402,1.10969904638402,1,26,1,-1.5,-1.4,0 -"1674",723,1,1,0,0.586262883761531,0.586262883761531,1,1,0,6.7,1.4,5 -"1675",724,1,1,0,1.1294964951988,1.1294964951988,0,10,1,3.2,0.699999999999999,-14 -"1676",725,1,1,0,1.14546141653117,1.14546141653117,0,1,0,-2,0.600000000000001,-4 -"1677",726,1,1,0,2,2,0,11,1,-3,-0.6,1 -"1678",726,1,2,2,3,1,0,11,1,-3,-0.6,1 -"1679",726,1,3,3,5.22916811746139,2.22916811746139,0,11,1,-3,-0.6,1 -"1680",727,1,1,0,2,2,0,-8,1,4.8,0.800000000000001,-6 -"1681",727,1,2,2,2.87208657247857,0.872086572478571,1,-8,1,4.8,0.800000000000001,-6 -"1682",728,1,1,0,2,2,0,2,1,4.7,-0.4,-2 -"1683",728,1,2,2,3,1,0,2,1,4.7,-0.4,-2 -"1684",728,1,3,3,6,3,0,2,1,4.7,-0.4,-2 -"1685",728,1,4,6,6.5,0.5,0,2,1,4.7,-0.4,-2 -"1686",728,1,5,6.5,8,1.5,0,2,1,4.7,-0.4,-2 -"1687",728,1,6,8,8.55970546801229,0.559705468012291,0,2,1,4.7,-0.4,-2 -"1688",729,1,1,0,2,2,0,6,1,5.6,-0.5,-7 -"1689",729,1,2,2,3,1,0,6,1,5.6,-0.5,-7 -"1690",729,1,3,3,6,3,0,6,1,5.6,-0.5,-7 -"1691",729,1,4,6,6.5,0.5,0,6,1,5.6,-0.5,-7 -"1692",729,1,5,6.5,7.38023167262962,0.880231672629622,0,6,1,5.6,-0.5,-7 -"1693",730,1,1,0,1.01471758509279,1.01471758509279,1,9,0,1.3,-0.699999999999999,-5 -"1694",731,1,1,0,0.51837641062488,0.51837641062488,1,7,0,-5.8,-0.699999999999999,14 -"1695",732,1,1,0,0.115590417001848,0.115590417001848,1,13,0,-1.8,-1.1,-6 -"1696",733,1,1,0,2,2,0,-4,1,-5.3,-1.1,-7 -"1697",733,1,2,2,3,1,0,-4,1,-5.3,-1.1,-7 -"1698",733,1,3,3,6,3,0,-4,1,-5.3,-1.1,-7 -"1699",733,1,4,6,6.5,0.5,0,-4,1,-5.3,-1.1,-7 -"1700",733,1,5,6.5,8,1.5,0,-4,1,-5.3,-1.1,-7 -"1701",733,1,6,8,10,2,0,-4,1,-5.3,-1.1,-7 -"1702",734,1,1,0,0.869462945793517,0.869462945793517,1,0,1,-9.2,1.5,13 -"1703",735,1,1,0,0.201308217296402,0.201308217296402,1,1,0,-1.3,0.100000000000001,-4 -"1704",736,1,1,0,2,2,0,-17,1,7.1,-2,-6 -"1705",736,1,2,2,3,1,0,-17,1,7.1,-2,-6 -"1706",736,1,3,3,6,3,0,-17,1,7.1,-2,-6 -"1707",736,1,4,6,6.5,0.5,0,-17,1,7.1,-2,-6 -"1708",736,1,5,6.5,8,1.5,0,-17,1,7.1,-2,-6 -"1709",736,1,6,8,10,2,0,-17,1,7.1,-2,-6 -"1710",737,1,1,0,0.818979239247835,0.818979239247835,1,-8,0,-0.200000000000003,1.4,-3 -"1711",738,1,1,0,2,2,0,-10,1,-1,0.399999999999999,-3 -"1712",738,1,2,2,3,1,0,-10,1,-1,0.399999999999999,-3 -"1713",738,1,3,3,3.95605284408345,0.956052844083454,0,-10,1,-1,0.399999999999999,-3 -"1714",739,1,1,0,0.230017094631256,0.230017094631256,0,8,1,0.600000000000001,0.100000000000001,3 -"1715",740,1,1,0,0.255508803152062,0.255508803152062,1,15,0,-1.3,0.199999999999999,3 -"1716",741,1,1,0,0.954077486295028,0.954077486295028,1,17,0,2.4,-0.699999999999999,-2 -"1717",742,1,1,0,2,2,0,-3,1,3.2,0,3 -"1718",742,1,2,2,2.89272306460515,0.892723064605154,0,-3,1,3.2,0,3 -"1719",743,1,1,0,0.54071174550804,0.54071174550804,0,7,0,-8.7,-0.800000000000001,3 -"1720",744,1,1,0,0.593241838186627,0.593241838186627,1,15,0,7.8,0.699999999999999,4 -"1721",745,1,1,0,2,2,0,11,1,2.3,-1,-6 -"1722",745,1,2,2,3,1,0,11,1,2.3,-1,-6 -"1723",745,1,3,3,6,3,0,11,1,2.3,-1,-6 -"1724",745,1,4,6,6.5,0.5,0,11,1,2.3,-1,-6 -"1725",745,1,5,6.5,8,1.5,0,11,1,2.3,-1,-6 -"1726",745,1,6,8,10,2,0,11,1,2.3,-1,-6 -"1727",746,1,1,0,2,2,0,-24,0,2.3,-0.6,-4 -"1728",746,1,2,2,3,1,0,-24,0,2.3,-0.6,-4 -"1729",746,1,3,3,6,3,0,-24,0,2.3,-0.6,-4 -"1730",746,1,4,6,6.5,0.5,0,-24,0,2.3,-0.6,-4 -"1731",746,1,5,6.5,8,1.5,0,-24,0,2.3,-0.6,-4 -"1732",746,1,6,8,10,2,0,-24,0,2.3,-0.6,-4 -"1733",747,1,1,0,2,2,0,-9,0,4.4,0.699999999999999,7 -"1734",747,1,2,2,3,1,0,-9,0,4.4,0.699999999999999,7 -"1735",747,1,3,3,4.17744131158525,1.17744131158525,1,-9,0,4.4,0.699999999999999,7 -"1736",748,1,1,0,1.59777613559327,1.59777613559327,0,-27,0,-0.399999999999999,-0.300000000000001,7 -"1737",749,1,1,0,2,2,0,-2,0,-3.5,0.800000000000001,-8 -"1738",749,1,2,2,3,1,0,-2,0,-3.5,0.800000000000001,-8 -"1739",749,1,3,3,4.23367984494857,1.23367984494857,0,-2,0,-3.5,0.800000000000001,-8 -"1740",750,1,1,0,1.18243455706114,1.18243455706114,1,-4,0,5.4,-0.0999999999999996,3 -"1741",751,1,1,0,2,2,0,-7,1,7.3,1.5,2 -"1742",751,1,2,2,3,1,0,-7,1,7.3,1.5,2 -"1743",751,1,3,3,6,3,0,-7,1,7.3,1.5,2 -"1744",751,1,4,6,6.5,0.5,0,-7,1,7.3,1.5,2 -"1745",751,1,5,6.5,7.83303289086617,1.33303289086617,0,-7,1,7.3,1.5,2 -"1746",752,1,1,0,0.275163704087327,0.275163704087327,0,4,0,0.799999999999997,1.7,-4 -"1747",753,1,1,0,0.252144894824389,0.252144894824389,1,2,0,-1.6,2.3,6 -"1748",754,1,1,0,2,2,0,9,1,4.6,-0.5,2 -"1749",754,1,2,2,3,1,0,9,1,4.6,-0.5,2 -"1750",754,1,3,3,6,3,0,9,1,4.6,-0.5,2 -"1751",754,1,4,6,6.5,0.5,0,9,1,4.6,-0.5,2 -"1752",754,1,5,6.5,8,1.5,0,9,1,4.6,-0.5,2 -"1753",754,1,6,8,10,2,0,9,1,4.6,-0.5,2 -"1754",755,1,1,0,2,2,0,4,0,-1.7,-0.0999999999999996,0 -"1755",755,1,2,2,3,1,0,4,0,-1.7,-0.0999999999999996,0 -"1756",755,1,3,3,6,3,0,4,0,-1.7,-0.0999999999999996,0 -"1757",755,1,4,6,6.5,0.5,0,4,0,-1.7,-0.0999999999999996,0 -"1758",755,1,5,6.5,8,1.5,0,4,0,-1.7,-0.0999999999999996,0 -"1759",755,1,6,8,9.60833261352596,1.60833261352596,1,4,0,-1.7,-0.0999999999999996,0 -"1760",756,1,1,0,2,2,0,-12,1,4.8,-1.5,0 -"1761",756,1,2,2,3,1,0,-12,1,4.8,-1.5,0 -"1762",756,1,3,3,4.62395767893938,1.62395767893938,0,-12,1,4.8,-1.5,0 -"1763",757,1,1,0,0.965580648399735,0.965580648399735,0,-22,1,9.09999999999999,1.8,4 -"1764",758,1,1,0,2,2,0,-20,0,5.8,-0.199999999999999,-1 -"1765",758,1,2,2,3,1,0,-20,0,5.8,-0.199999999999999,-1 -"1766",758,1,3,3,3.50600522600793,0.506005226007933,0,-20,0,5.8,-0.199999999999999,-1 -"1767",759,1,1,0,2,2,0,-24,1,3.9,0.899999999999999,-7 -"1768",759,1,2,2,2.6766026796161,0.676602679616104,0,-24,1,3.9,0.899999999999999,-7 -"1769",760,1,1,0,0.461027848947528,0.461027848947528,1,26,0,3.5,1.8,-1 -"1770",761,1,1,0,0.618229685973902,0.618229685973902,1,-1,0,7,-1.1,7 -"1771",762,1,1,0,2,2,0,-13,0,-3.3,-0.4,-2 -"1772",762,1,2,2,3,1,0,-13,0,-3.3,-0.4,-2 -"1773",762,1,3,3,3.26806010815586,0.268060108155861,0,-13,0,-3.3,-0.4,-2 -"1774",763,1,1,0,2,2,0,-19,1,2.6,0.100000000000001,-5 -"1775",763,1,2,2,3,1,0,-19,1,2.6,0.100000000000001,-5 -"1776",763,1,3,3,6,3,0,-19,1,2.6,0.100000000000001,-5 -"1777",763,1,4,6,6.5,0.5,0,-19,1,2.6,0.100000000000001,-5 -"1778",763,1,5,6.5,8,1.5,0,-19,1,2.6,0.100000000000001,-5 -"1779",763,1,6,8,10,2,0,-19,1,2.6,0.100000000000001,-5 -"1780",764,1,1,0,1.30632695437613,1.30632695437613,1,-13,0,-2.4,0.5,-2 -"1781",765,1,1,0,2,2,0,11,1,5.3,-0.800000000000001,-2 -"1782",765,1,2,2,3,1,0,11,1,5.3,-0.800000000000001,-2 -"1783",765,1,3,3,6,3,0,11,1,5.3,-0.800000000000001,-2 -"1784",765,1,4,6,6.5,0.5,0,11,1,5.3,-0.800000000000001,-2 -"1785",765,1,5,6.5,8,1.5,0,11,1,5.3,-0.800000000000001,-2 -"1786",765,1,6,8,10,2,0,11,1,5.3,-0.800000000000001,-2 -"1787",766,1,1,0,1.54731642051272,1.54731642051272,1,2,1,1.6,0.899999999999999,4 -"1788",767,1,1,0,2,2,0,-5,0,2.7,-2.1,-1 -"1789",767,1,2,2,3,1,0,-5,0,2.7,-2.1,-1 -"1790",767,1,3,3,5.08123386831776,2.08123386831776,0,-5,0,2.7,-2.1,-1 -"1791",768,1,1,0,0.0506787141276454,0.0506787141276454,1,15,1,-3.6,1.8,1 -"1792",769,1,1,0,2,2,0,-10,0,-3.2,0.199999999999999,-2 -"1793",769,1,2,2,3,1,0,-10,0,-3.2,0.199999999999999,-2 -"1794",769,1,3,3,6,3,0,-10,0,-3.2,0.199999999999999,-2 -"1795",769,1,4,6,6.5,0.5,0,-10,0,-3.2,0.199999999999999,-2 -"1796",769,1,5,6.5,8,1.5,0,-10,0,-3.2,0.199999999999999,-2 -"1797",769,1,6,8,10,2,0,-10,0,-3.2,0.199999999999999,-2 -"1798",770,1,1,0,2,2,0,-21,0,-1.4,0.5,7 -"1799",770,1,2,2,3,1,0,-21,0,-1.4,0.5,7 -"1800",770,1,3,3,6,3,0,-21,0,-1.4,0.5,7 -"1801",770,1,4,6,6.5,0.5,0,-21,0,-1.4,0.5,7 -"1802",770,1,5,6.5,8,1.5,0,-21,0,-1.4,0.5,7 -"1803",770,1,6,8,10,2,0,-21,0,-1.4,0.5,7 -"1804",771,1,1,0,1.22591471202071,1.22591471202071,1,16,1,-1.5,1.2,-4 -"1805",772,1,1,0,0.0699354384526838,0.0699354384526838,0,5,0,-2.8,1.2,0 -"1806",773,1,1,0,0.216880157150329,0.216880157150329,1,-13,0,-1.3,0.800000000000001,10 -"1807",774,1,1,0,2,2,0,2,0,-3.1,0.100000000000001,-1 -"1808",774,1,2,2,3,1,0,2,0,-3.1,0.100000000000001,-1 -"1809",774,1,3,3,6,3,0,2,0,-3.1,0.100000000000001,-1 -"1810",774,1,4,6,6.5,0.5,0,2,0,-3.1,0.100000000000001,-1 -"1811",774,1,5,6.5,6.95585060110821,0.455850601108206,1,2,0,-3.1,0.100000000000001,-1 -"1812",775,1,1,0,2,2,0,8,1,3.7,0.199999999999999,-6 -"1813",775,1,2,2,3,1,0,8,1,3.7,0.199999999999999,-6 -"1814",775,1,3,3,3.63751885491794,0.637518854917937,0,8,1,3.7,0.199999999999999,-6 -"1815",776,1,1,0,1.99870599697925,1.99870599697925,0,-3,0,-3.1,-0.5,-3 -"1816",777,1,1,0,0.116353775625417,0.116353775625417,1,3,1,3.2,1.3,4 -"1817",778,1,1,0,2,2,0,4,1,-0.200000000000003,-0.199999999999999,-2 -"1818",778,1,2,2,3,1,0,4,1,-0.200000000000003,-0.199999999999999,-2 -"1819",778,1,3,3,6,3,0,4,1,-0.200000000000003,-0.199999999999999,-2 -"1820",778,1,4,6,6.5,0.5,0,4,1,-0.200000000000003,-0.199999999999999,-2 -"1821",778,1,5,6.5,8,1.5,0,4,1,-0.200000000000003,-0.199999999999999,-2 -"1822",778,1,6,8,10,2,0,4,1,-0.200000000000003,-0.199999999999999,-2 -"1823",779,1,1,0,0.74342166520916,0.74342166520916,1,18,0,-2.1,-0.5,-1 -"1824",780,1,1,0,2,2,0,-1,1,1.5,-0.9,-4 -"1825",780,1,2,2,3,1,0,-1,1,1.5,-0.9,-4 -"1826",780,1,3,3,6,3,0,-1,1,1.5,-0.9,-4 -"1827",780,1,4,6,6.5,0.5,0,-1,1,1.5,-0.9,-4 -"1828",780,1,5,6.5,6.74880521870234,0.248805218702337,0,-1,1,1.5,-0.9,-4 -"1829",781,1,1,0,2,2,0,-18,1,8.5,1,-3 -"1830",781,1,2,2,3,1,0,-18,1,8.5,1,-3 -"1831",781,1,3,3,3.7773002181768,0.7773002181768,1,-18,1,8.5,1,-3 -"1832",782,1,1,0,1.70696339814161,1.70696339814161,1,4,1,0.799999999999997,0.899999999999999,2 -"1833",783,1,1,0,0.357216386154242,0.357216386154242,1,23,0,-5.1,0,-4 -"1834",784,1,1,0,2,2,0,-8,0,-7.7,-0.6,3 -"1835",784,1,2,2,3,1,0,-8,0,-7.7,-0.6,3 -"1836",784,1,3,3,5.02373514846852,2.02373514846852,0,-8,0,-7.7,-0.6,3 -"1837",785,1,1,0,2,2,0,-17,1,2.9,-0.9,-2 -"1838",785,1,2,2,3,1,0,-17,1,2.9,-0.9,-2 -"1839",785,1,3,3,6,3,0,-17,1,2.9,-0.9,-2 -"1840",785,1,4,6,6.5,0.5,0,-17,1,2.9,-0.9,-2 -"1841",785,1,5,6.5,8,1.5,0,-17,1,2.9,-0.9,-2 -"1842",785,1,6,8,8.72318156915069,0.723181569150689,0,-17,1,2.9,-0.9,-2 -"1843",786,1,1,0,0.255078058100149,0.255078058100149,0,7,1,0.5,-0.699999999999999,-7 -"1844",787,1,1,0,1.71373321956406,1.71373321956406,0,-14,1,6.1,-0.800000000000001,-3 -"1845",788,1,1,0,1.28334172677994,1.28334172677994,0,-1,0,3.8,-1.9,-3 -"1846",789,1,1,0,2,2,0,-25,1,-3.5,-0.9,-4 -"1847",789,1,2,2,3,1,0,-25,1,-3.5,-0.9,-4 -"1848",789,1,3,3,5.92278739468674,2.92278739468674,0,-25,1,-3.5,-0.9,-4 -"1849",790,1,1,0,2,2,0,-16,1,-3.1,-0.0999999999999996,8 -"1850",790,1,2,2,3,1,0,-16,1,-3.1,-0.0999999999999996,8 -"1851",790,1,3,3,3.10465589310586,0.104655893105863,0,-16,1,-3.1,-0.0999999999999996,8 -"1852",791,1,1,0,2,2,0,-22,0,3.3,0.699999999999999,2 -"1853",791,1,2,2,3,1,0,-22,0,3.3,0.699999999999999,2 -"1854",791,1,3,3,6,3,0,-22,0,3.3,0.699999999999999,2 -"1855",791,1,4,6,6.18195219352635,0.181952193526349,0,-22,0,3.3,0.699999999999999,2 -"1856",792,1,1,0,2,2,0,10,1,-0.799999999999997,-1.4,2 -"1857",792,1,2,2,3,1,0,10,1,-0.799999999999997,-1.4,2 -"1858",792,1,3,3,3.94475250405752,0.944752504057517,0,10,1,-0.799999999999997,-1.4,2 -"1859",793,1,1,0,2,2,0,-14,0,2.5,1.4,2 -"1860",793,1,2,2,3,1,0,-14,0,2.5,1.4,2 -"1861",793,1,3,3,4.91085358338262,1.91085358338262,0,-14,0,2.5,1.4,2 -"1862",794,1,1,0,0.895118901789992,0.895118901789992,1,7,0,2.9,0.5,-4 -"1863",795,1,1,0,1.49300779867779,1.49300779867779,0,21,1,3,-0.4,-1 -"1864",796,1,1,0,0.506639152010947,0.506639152010947,1,-4,0,1.1,-0.199999999999999,7 -"1865",797,1,1,0,1.04879654863615,1.04879654863615,1,15,0,-7,1,0 -"1866",798,1,1,0,1.41880729919412,1.41880729919412,0,-17,0,-6,0.399999999999999,0 -"1867",799,1,1,0,1.34248731209616,1.34248731209616,1,-5,0,0.299999999999997,0.899999999999999,2 -"1868",800,1,1,0,0.0704781210146715,0.0704781210146715,0,-20,1,-3.9,1.2,-10 -"1869",801,1,1,0,1.42657160298433,1.42657160298433,0,-16,0,0.5,-0.800000000000001,-4 -"1870",802,1,1,0,2,2,0,-12,1,-9.9,-0.6,1 -"1871",802,1,2,2,3,1,0,-12,1,-9.9,-0.6,1 -"1872",802,1,3,3,6,3,0,-12,1,-9.9,-0.6,1 -"1873",802,1,4,6,6.5,0.5,0,-12,1,-9.9,-0.6,1 -"1874",802,1,5,6.5,8,1.5,0,-12,1,-9.9,-0.6,1 -"1875",802,1,6,8,10,2,0,-12,1,-9.9,-0.6,1 -"1876",803,1,1,0,2,2,0,-18,0,-0.899999999999999,-0.300000000000001,-8 -"1877",803,1,2,2,3,1,0,-18,0,-0.899999999999999,-0.300000000000001,-8 -"1878",803,1,3,3,3.52159235523495,0.521592355234951,0,-18,0,-0.899999999999999,-0.300000000000001,-8 -"1879",804,1,1,0,0.0101553228992862,0.0101553228992862,1,-29,0,9.2,0.600000000000001,3 -"1880",805,1,1,0,2,2,0,-13,0,-4.7,-0.9,1 -"1881",805,1,2,2,2.26012861351519,0.260128613515192,0,-13,0,-4.7,-0.9,1 -"1882",806,1,1,0,0.0553404218744639,0.0553404218744639,0,-8,0,3.6,-0.5,1 -"1883",807,1,1,0,0.100245592671707,0.100245592671707,1,5,0,-1.2,0.800000000000001,1 -"1884",808,1,1,0,1.25424790246313,1.25424790246313,1,20,1,2.2,-1,1 -"1885",809,1,1,0,2,2,0,19,1,-1.2,-1.1,4 -"1886",809,1,2,2,3,1,0,19,1,-1.2,-1.1,4 -"1887",809,1,3,3,3.00125444934778,0.00125444934778113,0,19,1,-1.2,-1.1,4 -"1888",810,1,1,0,1.02751733705597,1.02751733705597,1,28,1,9.8,0,-4 -"1889",811,1,1,0,2,2,0,-4,0,1.9,-0.4,-1 -"1890",811,1,2,2,3,1,0,-4,0,1.9,-0.4,-1 -"1891",811,1,3,3,6,3,0,-4,0,1.9,-0.4,-1 -"1892",811,1,4,6,6.5,0.5,0,-4,0,1.9,-0.4,-1 -"1893",811,1,5,6.5,8,1.5,0,-4,0,1.9,-0.4,-1 -"1894",811,1,6,8,8.16195576042667,0.161955760426668,1,-4,0,1.9,-0.4,-1 -"1895",812,1,1,0,1.04579689883906,1.04579689883906,1,-5,1,3.3,0.300000000000001,0 -"1896",813,1,1,0,0.605693006372553,0.605693006372553,1,16,0,-3.7,0,1 -"1897",814,1,1,0,2,2,0,-15,0,-4.3,0.699999999999999,-8 -"1898",814,1,2,2,3,1,0,-15,0,-4.3,0.699999999999999,-8 -"1899",814,1,3,3,6,3,0,-15,0,-4.3,0.699999999999999,-8 -"1900",814,1,4,6,6.5,0.5,0,-15,0,-4.3,0.699999999999999,-8 -"1901",814,1,5,6.5,8,1.5,0,-15,0,-4.3,0.699999999999999,-8 -"1902",814,1,6,8,8.0814036606802,0.0814036606802015,1,-15,0,-4.3,0.699999999999999,-8 -"1903",815,1,1,0,1.73383686961099,1.73383686961099,0,-28,1,-3.2,-1.3,6 -"1904",816,1,1,0,1.07416030843822,1.07416030843822,1,2,1,4.3,-1.1,2 -"1905",817,1,1,0,1.04225954670986,1.04225954670986,1,10,0,4.3,-0.300000000000001,-1 -"1906",818,1,1,0,0.751769969293418,0.751769969293418,1,-9,1,-6.5,1,1 -"1907",819,1,1,0,0.0604281495499123,0.0604281495499123,1,-24,1,-0.899999999999999,1.2,9 -"1908",820,1,1,0,1.14501922469656,1.14501922469656,0,22,1,0.200000000000003,0.199999999999999,-3 -"1909",821,1,1,0,1.97097176629128,1.97097176629128,0,-12,1,-2.9,-1.6,2 -"1910",822,1,1,0,1.66056171614532,1.66056171614532,1,-7,1,3.8,0,3 -"1911",823,1,1,0,1.06901547383335,1.06901547383335,1,41,0,-0.299999999999997,-0.0999999999999996,-1 -"1912",824,1,1,0,1.40207771422648,1.40207771422648,1,22,1,-2,-0.4,-7 -"1913",825,1,1,0,2,2,0,7,1,4.4,-0.300000000000001,3 -"1914",825,1,2,2,3,1,0,7,1,4.4,-0.300000000000001,3 -"1915",825,1,3,3,6,3,0,7,1,4.4,-0.300000000000001,3 -"1916",825,1,4,6,6.5,0.5,0,7,1,4.4,-0.300000000000001,3 -"1917",825,1,5,6.5,6.8366195468507,0.336619546850696,1,7,1,4.4,-0.300000000000001,3 -"1918",826,1,1,0,2,2,0,-16,1,-9.4,0.399999999999999,-7 -"1919",826,1,2,2,3,1,0,-16,1,-9.4,0.399999999999999,-7 -"1920",826,1,3,3,6,3,0,-16,1,-9.4,0.399999999999999,-7 -"1921",826,1,4,6,6.5,0.5,0,-16,1,-9.4,0.399999999999999,-7 -"1922",826,1,5,6.5,8,1.5,0,-16,1,-9.4,0.399999999999999,-7 -"1923",826,1,6,8,10,2,0,-16,1,-9.4,0.399999999999999,-7 -"1924",827,1,1,0,0.829171675630732,0.829171675630732,1,37,0,0.700000000000003,-0.199999999999999,0 -"1925",828,1,1,0,0.196447324339139,0.196447324339139,1,8,0,1.2,-0.199999999999999,5 -"1926",829,1,1,0,2,2,0,-10,1,3.7,0.199999999999999,3 -"1927",829,1,2,2,3,1,0,-10,1,3.7,0.199999999999999,3 -"1928",829,1,3,3,4.55504898130499,1.55504898130499,0,-10,1,3.7,0.199999999999999,3 -"1929",830,1,1,0,1.08294071757677,1.08294071757677,1,13,1,-4.4,-2,3 -"1930",831,1,1,0,0.387072992105301,0.387072992105301,1,24,0,1.9,-0.699999999999999,1 -"1931",832,1,1,0,0.887685744931813,0.887685744931813,1,18,1,0.5,-0.6,-2 -"1932",833,1,1,0,0.417964745341582,0.417964745341582,1,-19,1,1.8,1.5,2 -"1933",834,1,1,0,0.0104060710282795,0.0104060710282795,1,20,0,0.100000000000001,0.600000000000001,0 -"1934",835,1,1,0,1.55359901956636,1.55359901956636,1,3,0,3.1,0.199999999999999,-3 -"1935",836,1,1,0,2,2,0,-9,0,-2.8,-1,-7 -"1936",836,1,2,2,3,1,0,-9,0,-2.8,-1,-7 -"1937",836,1,3,3,6,3,0,-9,0,-2.8,-1,-7 -"1938",836,1,4,6,6.5,0.5,0,-9,0,-2.8,-1,-7 -"1939",836,1,5,6.5,8,1.5,0,-9,0,-2.8,-1,-7 -"1940",836,1,6,8,8.35878244016583,0.358782440165829,0,-9,0,-2.8,-1,-7 -"1941",837,1,1,0,2,2,0,9,1,5.6,-0.0999999999999996,-2 -"1942",837,1,2,2,3,1,0,9,1,5.6,-0.0999999999999996,-2 -"1943",837,1,3,3,3.13035661062246,0.130356610622461,1,9,1,5.6,-0.0999999999999996,-2 -"1944",838,1,1,0,0.418528019581061,0.418528019581061,1,53,0,5.5,0.699999999999999,-1 -"1945",839,1,1,0,2,2,0,-11,1,4.5,-1.1,-4 -"1946",839,1,2,2,3,1,0,-11,1,4.5,-1.1,-4 -"1947",839,1,3,3,3.25933439775399,0.259334397753992,0,-11,1,4.5,-1.1,-4 -"1948",840,1,1,0,1.23497467032302,1.23497467032302,1,15,0,1.2,0.399999999999999,6 -"1949",841,1,1,0,2,2,0,2,1,-3.9,0.399999999999999,1 -"1950",841,1,2,2,2.2804571790859,0.280457179085903,1,2,1,-3.9,0.399999999999999,1 -"1951",842,1,1,0,1.79255107988114,1.79255107988114,0,-12,0,-5.7,0,4 -"1952",843,1,1,0,2,2,0,-2,1,5.1,-0.5,-6 -"1953",843,1,2,2,3,1,0,-2,1,5.1,-0.5,-6 -"1954",843,1,3,3,6,3,0,-2,1,5.1,-0.5,-6 -"1955",843,1,4,6,6.5,0.5,0,-2,1,5.1,-0.5,-6 -"1956",843,1,5,6.5,8,1.5,0,-2,1,5.1,-0.5,-6 -"1957",843,1,6,8,10,2,0,-2,1,5.1,-0.5,-6 -"1958",844,1,1,0,2,2,0,34,1,-2.2,-0.199999999999999,-1 -"1959",844,1,2,2,3,1,0,34,1,-2.2,-0.199999999999999,-1 -"1960",844,1,3,3,3.67972435244188,0.679724352441885,1,34,1,-2.2,-0.199999999999999,-1 -"1961",845,1,1,0,2,2,0,11,1,3.5,-1.4,-1 -"1962",845,1,2,2,3,1,0,11,1,3.5,-1.4,-1 -"1963",845,1,3,3,6,3,0,11,1,3.5,-1.4,-1 -"1964",845,1,4,6,6.5,0.5,0,11,1,3.5,-1.4,-1 -"1965",845,1,5,6.5,8,1.5,0,11,1,3.5,-1.4,-1 -"1966",845,1,6,8,9.34150942852559,1.34150942852559,1,11,1,3.5,-1.4,-1 -"1967",846,1,1,0,2,2,0,-10,1,-1.7,0.199999999999999,1 -"1968",846,1,2,2,3,1,0,-10,1,-1.7,0.199999999999999,1 -"1969",846,1,3,3,5.97247109461427,2.97247109461427,0,-10,1,-1.7,0.199999999999999,1 -"1970",847,1,1,0,0.800235021849941,0.800235021849941,0,11,1,2.4,-0.199999999999999,-1 -"1971",848,1,1,0,2,2,0,6,1,-2.5,-0.699999999999999,-2 -"1972",848,1,2,2,3,1,0,6,1,-2.5,-0.699999999999999,-2 -"1973",848,1,3,3,6,3,0,6,1,-2.5,-0.699999999999999,-2 -"1974",848,1,4,6,6.5,0.5,0,6,1,-2.5,-0.699999999999999,-2 -"1975",848,1,5,6.5,7.02827339718845,0.52827339718845,0,6,1,-2.5,-0.699999999999999,-2 -"1976",849,1,1,0,0.546571622040351,0.546571622040351,1,-2,0,2.9,0.399999999999999,-9 -"1977",850,1,1,0,1.71125287948671,1.71125287948671,0,-14,1,-8.3,0.199999999999999,-2 -"1978",851,1,1,0,2,2,0,-1,1,-1.9,0.399999999999999,-3 -"1979",851,1,2,2,3,1,0,-1,1,-1.9,0.399999999999999,-3 -"1980",851,1,3,3,5.13798442362939,2.13798442362939,0,-1,1,-1.9,0.399999999999999,-3 -"1981",852,1,1,0,2,2,0,7,0,3.9,0.100000000000001,-1 -"1982",852,1,2,2,3,1,0,7,0,3.9,0.100000000000001,-1 -"1983",852,1,3,3,6,3,0,7,0,3.9,0.100000000000001,-1 -"1984",852,1,4,6,6.5,0.5,0,7,0,3.9,0.100000000000001,-1 -"1985",852,1,5,6.5,7.23283277525419,0.732832775254188,0,7,0,3.9,0.100000000000001,-1 -"1986",853,1,1,0,1.40976966052782,1.40976966052782,0,16,1,5,-2.2,4 -"1987",854,1,1,0,0.424235858109045,0.424235858109045,0,-7,1,7.7,-1,5 -"1988",855,1,1,0,0.806842596627783,0.806842596627783,0,-17,0,0.5,0.100000000000001,0 -"1989",856,1,1,0,2,2,0,7,1,6.6,-0.6,-5 -"1990",856,1,2,2,3,1,0,7,1,6.6,-0.6,-5 -"1991",856,1,3,3,3.36258589478359,0.362585894783586,0,7,1,6.6,-0.6,-5 -"1992",857,1,1,0,2,2,0,4,1,-8.6,-0.5,2 -"1993",857,1,2,2,3,1,0,4,1,-8.6,-0.5,2 -"1994",857,1,3,3,6,3,0,4,1,-8.6,-0.5,2 -"1995",857,1,4,6,6.5,0.5,0,4,1,-8.6,-0.5,2 -"1996",857,1,5,6.5,8,1.5,0,4,1,-8.6,-0.5,2 -"1997",857,1,6,8,10,2,0,4,1,-8.6,-0.5,2 -"1998",858,1,1,0,2,2,0,-5,0,-4.7,-0.0999999999999996,-8 -"1999",858,1,2,2,2.2779548465284,0.277954846528401,1,-5,0,-4.7,-0.0999999999999996,-8 -"2000",859,1,1,0,2,2,0,-5,0,-2.1,-0.0999999999999996,-4 -"2001",859,1,2,2,3,1,0,-5,0,-2.1,-0.0999999999999996,-4 -"2002",859,1,3,3,5.89528742380646,2.89528742380646,0,-5,0,-2.1,-0.0999999999999996,-4 -"2003",860,1,1,0,2,2,0,4,1,-0.200000000000003,0,2 -"2004",860,1,2,2,3,1,0,4,1,-0.200000000000003,0,2 -"2005",860,1,3,3,4.06610262596662,1.06610262596662,0,4,1,-0.200000000000003,0,2 -"2006",861,1,1,0,2,2,0,-27,0,4.6,-0.5,-3 -"2007",861,1,2,2,3,1,0,-27,0,4.6,-0.5,-3 -"2008",861,1,3,3,3.09324881401695,0.0932488140169453,0,-27,0,4.6,-0.5,-3 -"2009",862,1,1,0,2,2,0,6,0,8.3,0.399999999999999,-6 -"2010",862,1,2,2,2.72163788151705,0.72163788151705,0,6,0,8.3,0.399999999999999,-6 -"2011",863,1,1,0,2,2,0,-13,1,2,-0.300000000000001,-4 -"2012",863,1,2,2,3,1,0,-13,1,2,-0.300000000000001,-4 -"2013",863,1,3,3,6,3,0,-13,1,2,-0.300000000000001,-4 -"2014",863,1,4,6,6.5,0.5,0,-13,1,2,-0.300000000000001,-4 -"2015",863,1,5,6.5,8,1.5,0,-13,1,2,-0.300000000000001,-4 -"2016",863,1,6,8,10,2,0,-13,1,2,-0.300000000000001,-4 -"2017",864,1,1,0,0.117096306554577,0.117096306554577,1,-16,0,2.4,0.399999999999999,-3 -"2018",865,1,1,0,2,2,0,-23,1,1.8,0.600000000000001,4 -"2019",865,1,2,2,3,1,0,-23,1,1.8,0.600000000000001,4 -"2020",865,1,3,3,4.91763991621652,1.91763991621652,0,-23,1,1.8,0.600000000000001,4 -"2021",866,1,1,0,0.0865712929157002,0.0865712929157002,1,-7,0,-0.700000000000003,-0.6,3 -"2022",867,1,1,0,2,2,0,-11,1,1,-1.9,9 -"2023",867,1,2,2,3,1,0,-11,1,1,-1.9,9 -"2024",867,1,3,3,3.58593672445289,0.58593672445289,1,-11,1,1,-1.9,9 -"2025",868,1,1,0,2,2,0,-17,1,0.5,0.300000000000001,2 -"2026",868,1,2,2,2.92644948240016,0.92644948240016,1,-17,1,0.5,0.300000000000001,2 -"2027",869,1,1,0,2,2,0,7,1,-2.1,0.199999999999999,-3 -"2028",869,1,2,2,3,1,0,7,1,-2.1,0.199999999999999,-3 -"2029",869,1,3,3,6,3,0,7,1,-2.1,0.199999999999999,-3 -"2030",869,1,4,6,6.27035999971258,0.270359999712577,1,7,1,-2.1,0.199999999999999,-3 -"2031",870,1,1,0,0.0381896395984927,0.0381896395984927,0,-4,0,0,0,-2 -"2032",871,1,1,0,0.420369086857443,0.420369086857443,1,-14,0,-2.9,0,0 -"2033",872,1,1,0,1.00630648698041,1.00630648698041,0,4,1,-2.3,-1.2,-2 -"2034",873,1,1,0,0.499033502563504,0.499033502563504,1,-12,0,3.4,0,9 -"2035",874,1,1,0,0.17751162674026,0.17751162674026,1,-6,0,-4.1,1.3,-1 -"2036",875,1,1,0,2,2,0,1,1,-3.7,-0.199999999999999,0 -"2037",875,1,2,2,2.1278077853883,0.127807785388295,0,1,1,-3.7,-0.199999999999999,0 -"2038",876,1,1,0,1.38049888915159,1.38049888915159,0,2,1,4.3,0.699999999999999,-4 -"2039",877,1,1,0,2,2,0,-18,1,-4.2,-0.6,-1 -"2040",877,1,2,2,3,1,0,-18,1,-4.2,-0.6,-1 -"2041",877,1,3,3,5.25318264662072,2.25318264662072,0,-18,1,-4.2,-0.6,-1 -"2042",878,1,1,0,1.56212073038279,1.56212073038279,1,9,0,0.5,1.4,0 -"2043",879,1,1,0,1.09384041693121,1.09384041693121,0,17,1,-5.7,1.5,3 -"2044",880,1,1,0,0.351520097205366,0.351520097205366,1,8,1,-1.9,1.6,6 -"2045",881,1,1,0,2,2,0,16,0,-2.7,-2,-2 -"2046",881,1,2,2,3,1,0,16,0,-2.7,-2,-2 -"2047",881,1,3,3,6,3,0,16,0,-2.7,-2,-2 -"2048",881,1,4,6,6.5,0.5,0,16,0,-2.7,-2,-2 -"2049",881,1,5,6.5,6.90906998861868,0.409069988618678,1,16,0,-2.7,-2,-2 -"2050",882,1,1,0,2,2,0,-16,0,2.5,-0.800000000000001,-3 -"2051",882,1,2,2,3,1,0,-16,0,2.5,-0.800000000000001,-3 -"2052",882,1,3,3,6,3,0,-16,0,2.5,-0.800000000000001,-3 -"2053",882,1,4,6,6.5,0.5,0,-16,0,2.5,-0.800000000000001,-3 -"2054",882,1,5,6.5,8,1.5,0,-16,0,2.5,-0.800000000000001,-3 -"2055",882,1,6,8,8.62412018880662,0.624120188806619,1,-16,0,2.5,-0.800000000000001,-3 -"2056",883,1,1,0,1.2311929520738,1.2311929520738,1,-9,1,-1.5,0.5,8 -"2057",884,1,1,0,0.0779297803811551,0.0779297803811551,1,11,0,6.4,2.3,4 -"2058",885,1,1,0,2,2,0,2,0,-9.1,-0.6,6 -"2059",885,1,2,2,2.93173386526063,0.931733865260631,0,2,0,-9.1,-0.6,6 -"2060",886,1,1,0,0.120900030160022,0.120900030160022,1,41,1,-1,0.399999999999999,1 diff --git a/tests/testthat/data_files/SURVIVAL/EXPAND_NO_MISSING/expand_no_missing_study2.csv b/tests/testthat/data_files/SURVIVAL/EXPAND_NO_MISSING/expand_no_missing_study2.csv deleted file mode 100644 index 68017c4f..00000000 --- a/tests/testthat/data_files/SURVIVAL/EXPAND_NO_MISSING/expand_no_missing_study2.csv +++ /dev/null @@ -1,1641 +0,0 @@ -"","id","study.id","time.id","starttime","endtime","survtime","cens","age.60","female","noise.56","pm10.16","bmi.26" -"1",887,2,1,0,0.196300917262276,0.196300917262276,0,24,1,5.8,-1,1 -"2",888,2,1,0,0.542430636927564,0.542430636927564,1,18,0,2.7,1.1,5 -"3",889,2,1,0,0.546026255780797,0.546026255780797,1,-5,0,6.6,0.199999999999999,-1 -"4",890,2,1,0,1.73248204329244,1.73248204329244,1,-2,0,-5.6,1.9,2 -"5",891,2,1,0,2,2,0,-23,1,0.799999999999997,-2.4,3 -"6",891,2,2,2,3,1,0,-23,1,0.799999999999997,-2.4,3 -"7",891,2,3,3,6,3,0,-23,1,0.799999999999997,-2.4,3 -"8",891,2,4,6,6.5,0.5,0,-23,1,0.799999999999997,-2.4,3 -"9",891,2,5,6.5,7.06817637560529,0.568176375605294,0,-23,1,0.799999999999997,-2.4,3 -"10",892,2,1,0,2,2,0,-4,0,-3.4,-1.9,-3 -"11",892,2,2,2,3,1,0,-4,0,-3.4,-1.9,-3 -"12",892,2,3,3,3.24335713246977,0.243357132469767,0,-4,0,-3.4,-1.9,-3 -"13",893,2,1,0,2,2,0,-16,0,0,0.699999999999999,1 -"14",893,2,2,2,3,1,0,-16,0,0,0.699999999999999,1 -"15",893,2,3,3,6,3,0,-16,0,0,0.699999999999999,1 -"16",893,2,4,6,6.5,0.5,0,-16,0,0,0.699999999999999,1 -"17",893,2,5,6.5,8,1.5,0,-16,0,0,0.699999999999999,1 -"18",893,2,6,8,10,2,0,-16,0,0,0.699999999999999,1 -"19",894,2,1,0,0.576974129098982,0.576974129098982,1,-6,1,-0.899999999999999,0.699999999999999,3 -"20",895,2,1,0,2,2,0,-6,0,3.4,0.699999999999999,4 -"21",895,2,2,2,3,1,0,-6,0,3.4,0.699999999999999,4 -"22",895,2,3,3,6,3,0,-6,0,3.4,0.699999999999999,4 -"23",895,2,4,6,6.43918335774491,0.43918335774491,1,-6,0,3.4,0.699999999999999,4 -"24",896,2,1,0,1.21680835264623,1.21680835264623,0,-10,1,1.8,0.699999999999999,-1 -"25",897,2,1,0,0.274686461135159,0.274686461135159,1,-5,0,-0.700000000000003,-0.199999999999999,0 -"26",898,2,1,0,2,2,0,-6,1,-1.5,-0.5,-1 -"27",898,2,2,2,3,1,0,-6,1,-1.5,-0.5,-1 -"28",898,2,3,3,6,3,0,-6,1,-1.5,-0.5,-1 -"29",898,2,4,6,6.5,0.5,0,-6,1,-1.5,-0.5,-1 -"30",898,2,5,6.5,8,1.5,0,-6,1,-1.5,-0.5,-1 -"31",898,2,6,8,8.16296572756398,0.162965727563982,1,-6,1,-1.5,-0.5,-1 -"32",899,2,1,0,2,2,0,6,0,-0.299999999999997,-0.300000000000001,5 -"33",899,2,2,2,3,1,0,6,0,-0.299999999999997,-0.300000000000001,5 -"34",899,2,3,3,6,3,0,6,0,-0.299999999999997,-0.300000000000001,5 -"35",899,2,4,6,6.5,0.5,0,6,0,-0.299999999999997,-0.300000000000001,5 -"36",899,2,5,6.5,6.53055155381138,0.0305515538113776,1,6,0,-0.299999999999997,-0.300000000000001,5 -"37",900,2,1,0,0.161696477043842,0.161696477043842,1,8,1,-2.5,0.699999999999999,4 -"38",901,2,1,0,2,2,0,-19,1,1.1,-2.1,-8 -"39",901,2,2,2,3,1,0,-19,1,1.1,-2.1,-8 -"40",901,2,3,3,6,3,0,-19,1,1.1,-2.1,-8 -"41",901,2,4,6,6.5,0.5,0,-19,1,1.1,-2.1,-8 -"42",901,2,5,6.5,8,1.5,0,-19,1,1.1,-2.1,-8 -"43",901,2,6,8,8.26124088795664,0.261240887956636,0,-19,1,1.1,-2.1,-8 -"44",902,2,1,0,2,2,0,25,1,-0.100000000000001,1.2,-2 -"45",902,2,2,2,2.36345797543954,0.36345797543954,1,25,1,-0.100000000000001,1.2,-2 -"46",903,2,1,0,1.6849118023863,1.6849118023863,1,-20,1,-0.100000000000001,1.2,2 -"47",904,2,1,0,2,2,0,3,1,6.8,0,-4 -"48",904,2,2,2,2.64314961428299,0.64314961428299,0,3,1,6.8,0,-4 -"49",905,2,1,0,0.36888075230752,0.36888075230752,0,-16,0,4.8,1.5,0 -"50",906,2,1,0,1.43840951236455,1.43840951236455,1,-1,1,-7.9,0.399999999999999,-7 -"51",907,2,1,0,0.141395710992472,0.141395710992472,0,22,1,1.1,0.199999999999999,-5 -"52",908,2,1,0,1.97134104828504,1.97134104828504,1,-4,0,2.9,1.1,-2 -"53",909,2,1,0,2,2,0,-4,1,3.3,0.699999999999999,2 -"54",909,2,2,2,3,1,0,-4,1,3.3,0.699999999999999,2 -"55",909,2,3,3,6,3,0,-4,1,3.3,0.699999999999999,2 -"56",909,2,4,6,6.5,0.5,0,-4,1,3.3,0.699999999999999,2 -"57",909,2,5,6.5,8,1.5,0,-4,1,3.3,0.699999999999999,2 -"58",909,2,6,8,10,2,0,-4,1,3.3,0.699999999999999,2 -"59",910,2,1,0,0.490036672718431,0.490036672718431,0,14,0,2.4,0.5,-2 -"60",911,2,1,0,2,2,0,2,1,1.2,1.4,-3 -"61",911,2,2,2,3,1,0,2,1,1.2,1.4,-3 -"62",911,2,3,3,6,3,0,2,1,1.2,1.4,-3 -"63",911,2,4,6,6.46373566521385,0.463735665213851,1,2,1,1.2,1.4,-3 -"64",912,2,1,0,2,2,0,-15,0,6,-1.5,5 -"65",912,2,2,2,3,1,0,-15,0,6,-1.5,5 -"66",912,2,3,3,5.55621451443384,2.55621451443384,0,-15,0,6,-1.5,5 -"67",913,2,1,0,0.110935226766834,0.110935226766834,1,-13,0,11.1,-0.6,-1 -"68",914,2,1,0,1.04868381378825,1.04868381378825,0,10,1,0.600000000000001,-0.0999999999999996,-6 -"69",915,2,1,0,0.998537590815521,0.998537590815521,1,-4,0,0.700000000000003,1.4,0 -"70",916,2,1,0,0.113795045365363,0.113795045365363,1,0,0,4.1,-0.4,8 -"71",917,2,1,0,2,2,0,-17,0,1,0,0 -"72",917,2,2,2,2.50133916110806,0.501339161108064,1,-17,0,1,0,0 -"73",918,2,1,0,2,2,0,-11,1,2,-1.6,-4 -"74",918,2,2,2,3,1,0,-11,1,2,-1.6,-4 -"75",918,2,3,3,5.50400741284981,2.50400741284981,0,-11,1,2,-1.6,-4 -"76",919,2,1,0,0.674815265299786,0.674815265299786,1,-6,0,-0.5,-1.1,-1 -"77",920,2,1,0,0.157868092098923,0.157868092098923,1,20,0,1.1,2.3,2 -"78",921,2,1,0,2,2,0,-1,1,-3.3,-1,-3 -"79",921,2,2,2,3,1,0,-1,1,-3.3,-1,-3 -"80",921,2,3,3,6,3,0,-1,1,-3.3,-1,-3 -"81",921,2,4,6,6.5,0.5,0,-1,1,-3.3,-1,-3 -"82",921,2,5,6.5,7.3113400829634,0.811340082963396,0,-1,1,-3.3,-1,-3 -"83",922,2,1,0,2,2,0,9,1,-2.5,2.2,-9 -"84",922,2,2,2,3,1,0,9,1,-2.5,2.2,-9 -"85",922,2,3,3,6,3,0,9,1,-2.5,2.2,-9 -"86",922,2,4,6,6.5,0.5,0,9,1,-2.5,2.2,-9 -"87",922,2,5,6.5,8,1.5,0,9,1,-2.5,2.2,-9 -"88",922,2,6,8,10,2,0,9,1,-2.5,2.2,-9 -"89",923,2,1,0,2,2,0,-1,1,5.2,0.399999999999999,-2 -"90",923,2,2,2,3,1,0,-1,1,5.2,0.399999999999999,-2 -"91",923,2,3,3,6,3,0,-1,1,5.2,0.399999999999999,-2 -"92",923,2,4,6,6.5,0.5,0,-1,1,5.2,0.399999999999999,-2 -"93",923,2,5,6.5,8,1.5,0,-1,1,5.2,0.399999999999999,-2 -"94",923,2,6,8,10,2,0,-1,1,5.2,0.399999999999999,-2 -"95",924,2,1,0,0.161299893680113,0.161299893680113,1,7,0,0,0.699999999999999,5 -"96",925,2,1,0,0.137341217402648,0.137341217402648,1,-2,1,-10,2,3 -"97",926,2,1,0,0.21918319439046,0.21918319439046,1,25,1,-6.4,-0.5,6 -"98",927,2,1,0,2,2,0,-26,1,0,-1.4,-6 -"99",927,2,2,2,3,1,0,-26,1,0,-1.4,-6 -"100",927,2,3,3,6,3,0,-26,1,0,-1.4,-6 -"101",927,2,4,6,6.5,0.5,0,-26,1,0,-1.4,-6 -"102",927,2,5,6.5,8,1.5,0,-26,1,0,-1.4,-6 -"103",927,2,6,8,10,2,0,-26,1,0,-1.4,-6 -"104",928,2,1,0,2,2,0,4,0,4.3,-1.1,0 -"105",928,2,2,2,3,1,0,4,0,4.3,-1.1,0 -"106",928,2,3,3,6,3,0,4,0,4.3,-1.1,0 -"107",928,2,4,6,6.5,0.5,0,4,0,4.3,-1.1,0 -"108",928,2,5,6.5,8,1.5,0,4,0,4.3,-1.1,0 -"109",928,2,6,8,8.55513384009718,0.555133840097179,0,4,0,4.3,-1.1,0 -"110",929,2,1,0,2,2,0,-7,1,-6.2,-1.1,1 -"111",929,2,2,2,3,1,0,-7,1,-6.2,-1.1,1 -"112",929,2,3,3,6,3,0,-7,1,-6.2,-1.1,1 -"113",929,2,4,6,6.5,0.5,0,-7,1,-6.2,-1.1,1 -"114",929,2,5,6.5,8,1.5,0,-7,1,-6.2,-1.1,1 -"115",929,2,6,8,10,2,0,-7,1,-6.2,-1.1,1 -"116",930,2,1,0,2,2,0,-5,1,-3,0.399999999999999,8 -"117",930,2,2,2,3,1,0,-5,1,-3,0.399999999999999,8 -"118",930,2,3,3,6,3,0,-5,1,-3,0.399999999999999,8 -"119",930,2,4,6,6.5,0.5,0,-5,1,-3,0.399999999999999,8 -"120",930,2,5,6.5,8,1.5,0,-5,1,-3,0.399999999999999,8 -"121",930,2,6,8,9.61783127039721,1.61783127039721,0,-5,1,-3,0.399999999999999,8 -"122",931,2,1,0,2,2,0,-7,1,4.7,1.1,0 -"123",931,2,2,2,2.11831506970422,0.118315069704224,0,-7,1,4.7,1.1,0 -"124",932,2,1,0,2,2,0,-14,0,-1.1,0.199999999999999,7 -"125",932,2,2,2,3,1,0,-14,0,-1.1,0.199999999999999,7 -"126",932,2,3,3,3.10388040525932,0.103880405259323,0,-14,0,-1.1,0.199999999999999,7 -"127",933,2,1,0,2,2,0,8,1,-1.7,0.100000000000001,-3 -"128",933,2,2,2,3,1,0,8,1,-1.7,0.100000000000001,-3 -"129",933,2,3,3,6,3,0,8,1,-1.7,0.100000000000001,-3 -"130",933,2,4,6,6.5,0.5,0,8,1,-1.7,0.100000000000001,-3 -"131",933,2,5,6.5,8,1.5,0,8,1,-1.7,0.100000000000001,-3 -"132",933,2,6,8,10,2,0,8,1,-1.7,0.100000000000001,-3 -"133",934,2,1,0,0.736859145636794,0.736859145636794,1,13,1,-1.4,-0.9,6 -"134",935,2,1,0,0.661440496417457,0.661440496417457,0,0,1,7.7,-1.2,-10 -"135",936,2,1,0,1.26216488182418,1.26216488182418,1,15,0,-3.9,0,7 -"136",937,2,1,0,0.265544233088738,0.265544233088738,1,-22,1,-3.8,0.600000000000001,10 -"137",938,2,1,0,2,2,0,13,1,-2.1,0.300000000000001,-1 -"138",938,2,2,2,3,1,0,13,1,-2.1,0.300000000000001,-1 -"139",938,2,3,3,3.20356497014341,0.203564970143406,1,13,1,-2.1,0.300000000000001,-1 -"140",939,2,1,0,0.527160016342795,0.527160016342795,1,5,0,-5,0.100000000000001,-6 -"141",940,2,1,0,2,2,0,-26,0,0.200000000000003,0.199999999999999,1 -"142",940,2,2,2,2.0789481676279,0.0789481676278966,1,-26,0,0.200000000000003,0.199999999999999,1 -"143",941,2,1,0,1.94023445130689,1.94023445130689,1,24,0,2.7,1.6,-7 -"144",942,2,1,0,0.0115002888381714,0.0115002888381714,0,-25,1,7.1,0.100000000000001,0 -"145",943,2,1,0,2,2,0,8,0,-7.1,0.100000000000001,-8 -"146",943,2,2,2,3,1,0,8,0,-7.1,0.100000000000001,-8 -"147",943,2,3,3,6,3,0,8,0,-7.1,0.100000000000001,-8 -"148",943,2,4,6,6.5,0.5,0,8,0,-7.1,0.100000000000001,-8 -"149",943,2,5,6.5,8,1.5,0,8,0,-7.1,0.100000000000001,-8 -"150",943,2,6,8,10,2,0,8,0,-7.1,0.100000000000001,-8 -"151",944,2,1,0,2,2,0,-3,1,4.3,0.899999999999999,1 -"152",944,2,2,2,3,1,0,-3,1,4.3,0.899999999999999,1 -"153",944,2,3,3,3.28341182326079,0.283411823260789,0,-3,1,4.3,0.899999999999999,1 -"154",945,2,1,0,2,2,0,-18,1,2.5,-0.0999999999999996,-1 -"155",945,2,2,2,3,1,0,-18,1,2.5,-0.0999999999999996,-1 -"156",945,2,3,3,6,3,0,-18,1,2.5,-0.0999999999999996,-1 -"157",945,2,4,6,6.5,0.5,0,-18,1,2.5,-0.0999999999999996,-1 -"158",945,2,5,6.5,8,1.5,0,-18,1,2.5,-0.0999999999999996,-1 -"159",945,2,6,8,9.04164037575084,1.04164037575085,0,-18,1,2.5,-0.0999999999999996,-1 -"160",946,2,1,0,2,2,0,-10,1,2.1,-0.300000000000001,1 -"161",946,2,2,2,3,1,0,-10,1,2.1,-0.300000000000001,1 -"162",946,2,3,3,6,3,0,-10,1,2.1,-0.300000000000001,1 -"163",946,2,4,6,6.5,0.5,0,-10,1,2.1,-0.300000000000001,1 -"164",946,2,5,6.5,8,1.5,0,-10,1,2.1,-0.300000000000001,1 -"165",946,2,6,8,10,2,0,-10,1,2.1,-0.300000000000001,1 -"166",947,2,1,0,2,2,0,-15,1,-0.799999999999997,-1.4,6 -"167",947,2,2,2,3,1,0,-15,1,-0.799999999999997,-1.4,6 -"168",947,2,3,3,6,3,0,-15,1,-0.799999999999997,-1.4,6 -"169",947,2,4,6,6.5,0.5,0,-15,1,-0.799999999999997,-1.4,6 -"170",947,2,5,6.5,8,1.5,0,-15,1,-0.799999999999997,-1.4,6 -"171",947,2,6,8,10,2,0,-15,1,-0.799999999999997,-1.4,6 -"172",948,2,1,0,2,2,0,-18,1,0.899999999999999,-0.5,-7 -"173",948,2,2,2,3,1,0,-18,1,0.899999999999999,-0.5,-7 -"174",948,2,3,3,6,3,0,-18,1,0.899999999999999,-0.5,-7 -"175",948,2,4,6,6.5,0.5,0,-18,1,0.899999999999999,-0.5,-7 -"176",948,2,5,6.5,8,1.5,0,-18,1,0.899999999999999,-0.5,-7 -"177",948,2,6,8,8.38391419673494,0.38391419673494,0,-18,1,0.899999999999999,-0.5,-7 -"178",949,2,1,0,2,2,0,8,1,1.4,1.6,-10 -"179",949,2,2,2,2.11323692948241,0.113236929482413,1,8,1,1.4,1.6,-10 -"180",950,2,1,0,1.35309840129187,1.35309840129187,0,7,1,-1.9,0.800000000000001,-8 -"181",951,2,1,0,1.60499118434201,1.60499118434201,1,-15,0,0.899999999999999,0.699999999999999,2 -"182",952,2,1,0,2,2,0,8,1,3.3,-1,3 -"183",952,2,2,2,3,1,0,8,1,3.3,-1,3 -"184",952,2,3,3,6,3,0,8,1,3.3,-1,3 -"185",952,2,4,6,6.5,0.5,0,8,1,3.3,-1,3 -"186",952,2,5,6.5,8,1.5,0,8,1,3.3,-1,3 -"187",952,2,6,8,10,2,0,8,1,3.3,-1,3 -"188",953,2,1,0,2,2,0,-28,1,3.1,0.600000000000001,-3 -"189",953,2,2,2,3,1,0,-28,1,3.1,0.600000000000001,-3 -"190",953,2,3,3,6,3,0,-28,1,3.1,0.600000000000001,-3 -"191",953,2,4,6,6.5,0.5,0,-28,1,3.1,0.600000000000001,-3 -"192",953,2,5,6.5,8,1.5,0,-28,1,3.1,0.600000000000001,-3 -"193",953,2,6,8,10,2,0,-28,1,3.1,0.600000000000001,-3 -"194",954,2,1,0,2,2,0,-19,0,-5.9,1.4,-2 -"195",954,2,2,2,3,1,0,-19,0,-5.9,1.4,-2 -"196",954,2,3,3,6,3,0,-19,0,-5.9,1.4,-2 -"197",954,2,4,6,6.01550338587866,0.0155033858786617,1,-19,0,-5.9,1.4,-2 -"198",955,2,1,0,0.816327965255323,0.816327965255323,1,8,1,-0.5,1.8,1 -"199",956,2,1,0,0.787083818277312,0.787083818277312,1,1,0,3.1,0.100000000000001,-9 -"200",957,2,1,0,2,2,0,-14,1,-2.2,-0.699999999999999,1 -"201",957,2,2,2,3,1,0,-14,1,-2.2,-0.699999999999999,1 -"202",957,2,3,3,6,3,0,-14,1,-2.2,-0.699999999999999,1 -"203",957,2,4,6,6.5,0.5,0,-14,1,-2.2,-0.699999999999999,1 -"204",957,2,5,6.5,7.15919811769744,0.659198117697437,0,-14,1,-2.2,-0.699999999999999,1 -"205",958,2,1,0,2,2,0,-15,1,0.399999999999999,0.300000000000001,-2 -"206",958,2,2,2,3,1,0,-15,1,0.399999999999999,0.300000000000001,-2 -"207",958,2,3,3,6,3,0,-15,1,0.399999999999999,0.300000000000001,-2 -"208",958,2,4,6,6.5,0.5,0,-15,1,0.399999999999999,0.300000000000001,-2 -"209",958,2,5,6.5,7.3103729849268,0.810372984926795,0,-15,1,0.399999999999999,0.300000000000001,-2 -"210",959,2,1,0,0.485846262346801,0.485846262346801,1,10,0,-2.7,3,2 -"211",960,2,1,0,2,2,0,-4,1,-7.8,-1.3,-3 -"212",960,2,2,2,3,1,0,-4,1,-7.8,-1.3,-3 -"213",960,2,3,3,6,3,0,-4,1,-7.8,-1.3,-3 -"214",960,2,4,6,6.5,0.5,0,-4,1,-7.8,-1.3,-3 -"215",960,2,5,6.5,7.77655810529436,1.27655810529437,0,-4,1,-7.8,-1.3,-3 -"216",961,2,1,0,2,2,0,11,1,3.3,0.699999999999999,-5 -"217",961,2,2,2,3,1,0,11,1,3.3,0.699999999999999,-5 -"218",961,2,3,3,3.33784482685513,0.337844826855126,0,11,1,3.3,0.699999999999999,-5 -"219",962,2,1,0,0.754164388006271,0.754164388006271,1,17,1,2.1,-0.199999999999999,4 -"220",963,2,1,0,0.252539031068838,0.252539031068838,1,25,1,5,0.699999999999999,3 -"221",964,2,1,0,2,2,0,-2,0,-7.1,-1,0 -"222",964,2,2,2,2.78995682789907,0.789956827899073,0,-2,0,-7.1,-1,0 -"223",965,2,1,0,0.161764793603214,0.161764793603214,0,4,1,-1.2,0.300000000000001,-2 -"224",966,2,1,0,2,2,0,-26,1,-0.899999999999999,-0.300000000000001,-7 -"225",966,2,2,2,2.54827246075837,0.548272460758373,0,-26,1,-0.899999999999999,-0.300000000000001,-7 -"226",967,2,1,0,0.664088735355152,0.664088735355152,1,19,0,-0.899999999999999,-1,4 -"227",968,2,1,0,2,2,0,7,1,2.3,0,-2 -"228",968,2,2,2,3,1,0,7,1,2.3,0,-2 -"229",968,2,3,3,6,3,0,7,1,2.3,0,-2 -"230",968,2,4,6,6.5,0.5,0,7,1,2.3,0,-2 -"231",968,2,5,6.5,6.60232962360477,0.102329623604774,0,7,1,2.3,0,-2 -"232",969,2,1,0,2,2,0,-1,1,4.3,-1.3,1 -"233",969,2,2,2,3,1,0,-1,1,4.3,-1.3,1 -"234",969,2,3,3,6,3,0,-1,1,4.3,-1.3,1 -"235",969,2,4,6,6.5,0.5,0,-1,1,4.3,-1.3,1 -"236",969,2,5,6.5,8,1.5,0,-1,1,4.3,-1.3,1 -"237",969,2,6,8,10,2,0,-1,1,4.3,-1.3,1 -"238",970,2,1,0,2,2,0,-25,0,0.399999999999999,1.9,-1 -"239",970,2,2,2,3,1,0,-25,0,0.399999999999999,1.9,-1 -"240",970,2,3,3,4.05495052855999,1.05495052855999,0,-25,0,0.399999999999999,1.9,-1 -"241",971,2,1,0,2,2,0,-19,1,3.1,0.600000000000001,-1 -"242",971,2,2,2,3,1,0,-19,1,3.1,0.600000000000001,-1 -"243",971,2,3,3,6,3,0,-19,1,3.1,0.600000000000001,-1 -"244",971,2,4,6,6.5,0.5,0,-19,1,3.1,0.600000000000001,-1 -"245",971,2,5,6.5,8,1.5,0,-19,1,3.1,0.600000000000001,-1 -"246",971,2,6,8,10,2,0,-19,1,3.1,0.600000000000001,-1 -"247",972,2,1,0,0.60374613063173,0.60374613063173,1,32,1,4.6,-0.300000000000001,-12 -"248",973,2,1,0,1.5198730422255,1.5198730422255,0,-18,0,-4.7,-0.0999999999999996,3 -"249",974,2,1,0,1.63982553001412,1.63982553001412,1,-8,0,12.6,0.199999999999999,-4 -"250",975,2,1,0,2,2,0,3,1,1.8,1.3,-2 -"251",975,2,2,2,3,1,0,3,1,1.8,1.3,-2 -"252",975,2,3,3,6,3,0,3,1,1.8,1.3,-2 -"253",975,2,4,6,6.5,0.5,0,3,1,1.8,1.3,-2 -"254",975,2,5,6.5,7.86608700945942,1.36608700945942,1,3,1,1.8,1.3,-2 -"255",976,2,1,0,2,2,0,-9,1,2.8,-1.5,-4 -"256",976,2,2,2,2.32079078304805,0.320790783048048,0,-9,1,2.8,-1.5,-4 -"257",977,2,1,0,0.395910137183964,0.395910137183964,1,0,1,-1.1,1.2,8 -"258",978,2,1,0,2,2,0,-4,1,-2.6,-1,1 -"259",978,2,2,2,3,1,0,-4,1,-2.6,-1,1 -"260",978,2,3,3,6,3,0,-4,1,-2.6,-1,1 -"261",978,2,4,6,6.5,0.5,0,-4,1,-2.6,-1,1 -"262",978,2,5,6.5,8,1.5,0,-4,1,-2.6,-1,1 -"263",978,2,6,8,10,2,0,-4,1,-2.6,-1,1 -"264",979,2,1,0,0.351445283400222,0.351445283400222,1,18,1,6.1,0.300000000000001,-2 -"265",980,2,1,0,0.740716033294314,0.740716033294314,0,6,0,4.9,0.5,-2 -"266",981,2,1,0,1.52437698555023,1.52437698555023,1,5,0,-4.2,-0.800000000000001,9 -"267",982,2,1,0,2,2,0,-10,1,-3.2,-1.3,-3 -"268",982,2,2,2,2.8468336907613,0.846833690761298,0,-10,1,-3.2,-1.3,-3 -"269",983,2,1,0,2,2,0,13,1,2.3,0,-6 -"270",983,2,2,2,2.05410037708602,0.0541003770860204,0,13,1,2.3,0,-6 -"271",984,2,1,0,0.347924948996205,0.347924948996205,0,8,1,-2.7,-1.1,2 -"272",985,2,1,0,2,2,0,-21,1,-0.600000000000001,-1.2,-2 -"273",985,2,2,2,3,1,0,-21,1,-0.600000000000001,-1.2,-2 -"274",985,2,3,3,6,3,0,-21,1,-0.600000000000001,-1.2,-2 -"275",985,2,4,6,6.5,0.5,0,-21,1,-0.600000000000001,-1.2,-2 -"276",985,2,5,6.5,8,1.5,0,-21,1,-0.600000000000001,-1.2,-2 -"277",985,2,6,8,10,2,0,-21,1,-0.600000000000001,-1.2,-2 -"278",986,2,1,0,1.41513317659756,1.41513317659756,0,9,1,-6.7,-0.5,-5 -"279",987,2,1,0,2,2,0,-5,0,-0.799999999999997,0.199999999999999,-5 -"280",987,2,2,2,2.73796346176639,0.737963461766389,0,-5,0,-0.799999999999997,0.199999999999999,-5 -"281",988,2,1,0,0.126983597429868,0.126983597429868,0,0,0,8.90000000000001,2,4 -"282",989,2,1,0,2,2,0,-2,1,1.2,-2.5,-8 -"283",989,2,2,2,3,1,0,-2,1,1.2,-2.5,-8 -"284",989,2,3,3,6,3,0,-2,1,1.2,-2.5,-8 -"285",989,2,4,6,6.5,0.5,0,-2,1,1.2,-2.5,-8 -"286",989,2,5,6.5,8,1.5,0,-2,1,1.2,-2.5,-8 -"287",989,2,6,8,8.41897573912199,0.418975739121987,0,-2,1,1.2,-2.5,-8 -"288",990,2,1,0,2,2,0,10,1,-6.6,0.699999999999999,-6 -"289",990,2,2,2,3,1,0,10,1,-6.6,0.699999999999999,-6 -"290",990,2,3,3,5.46829936133787,2.46829936133787,0,10,1,-6.6,0.699999999999999,-6 -"291",991,2,1,0,0.298752516185271,0.298752516185271,0,-9,1,-1,0.399999999999999,-1 -"292",992,2,1,0,1.15137254013425,1.15137254013425,1,8,1,5.6,-0.800000000000001,-9 -"293",993,2,1,0,2,2,0,-17,0,0.799999999999997,0.100000000000001,0 -"294",993,2,2,2,2.66397237883728,0.663972378837276,1,-17,0,0.799999999999997,0.100000000000001,0 -"295",994,2,1,0,2,2,0,-7,1,-1.2,-1,-8 -"296",994,2,2,2,3,1,0,-7,1,-1.2,-1,-8 -"297",994,2,3,3,6,3,0,-7,1,-1.2,-1,-8 -"298",994,2,4,6,6.5,0.5,0,-7,1,-1.2,-1,-8 -"299",994,2,5,6.5,7.67564927745003,1.17564927745003,0,-7,1,-1.2,-1,-8 -"300",995,2,1,0,0.272805417595032,0.272805417595032,1,3,0,3.4,-0.199999999999999,2 -"301",996,2,1,0,2,2,0,18,1,5.7,-0.0999999999999996,4 -"302",996,2,2,2,3,1,0,18,1,5.7,-0.0999999999999996,4 -"303",996,2,3,3,4.14578603121954,1.14578603121954,0,18,1,5.7,-0.0999999999999996,4 -"304",997,2,1,0,1.93854354523188,1.93854354523188,1,6,0,-7.1,0.600000000000001,-5 -"305",998,2,1,0,2,2,0,12,1,7.6,-1.2,1 -"306",998,2,2,2,3,1,0,12,1,7.6,-1.2,1 -"307",998,2,3,3,6,3,0,12,1,7.6,-1.2,1 -"308",998,2,4,6,6.5,0.5,0,12,1,7.6,-1.2,1 -"309",998,2,5,6.5,8,1.5,0,12,1,7.6,-1.2,1 -"310",998,2,6,8,10,2,0,12,1,7.6,-1.2,1 -"311",999,2,1,0,2,2,0,-15,1,2.4,-1.2,-9 -"312",999,2,2,2,3,1,0,-15,1,2.4,-1.2,-9 -"313",999,2,3,3,6,3,0,-15,1,2.4,-1.2,-9 -"314",999,2,4,6,6.5,0.5,0,-15,1,2.4,-1.2,-9 -"315",999,2,5,6.5,7.68443730019822,1.18443730019822,0,-15,1,2.4,-1.2,-9 -"316",1000,2,1,0,2,2,0,-7,0,-1.7,-0.0999999999999996,-11 -"317",1000,2,2,2,3,1,0,-7,0,-1.7,-0.0999999999999996,-11 -"318",1000,2,3,3,5.58694205647581,2.58694205647581,0,-7,0,-1.7,-0.0999999999999996,-11 -"319",1001,2,1,0,0.999935259937979,0.999935259937979,1,41,1,-6.3,-0.6,2 -"320",1002,2,1,0,1.98582281445264,1.98582281445264,0,12,0,7.3,-1.3,-5 -"321",1003,2,1,0,1.05485287950679,1.05485287950679,0,21,1,2.9,1.4,-1 -"322",1004,2,1,0,0.409364279010607,0.409364279010607,1,18,0,-8.3,1.4,-3 -"323",1005,2,1,0,2,2,0,15,1,4.3,-0.9,-1 -"324",1005,2,2,2,3,1,0,15,1,4.3,-0.9,-1 -"325",1005,2,3,3,6,3,0,15,1,4.3,-0.9,-1 -"326",1005,2,4,6,6.5,0.5,0,15,1,4.3,-0.9,-1 -"327",1005,2,5,6.5,8,1.5,0,15,1,4.3,-0.9,-1 -"328",1005,2,6,8,10,2,0,15,1,4.3,-0.9,-1 -"329",1006,2,1,0,2,2,0,0,0,1.8,-2.1,-3 -"330",1006,2,2,2,3,1,0,0,0,1.8,-2.1,-3 -"331",1006,2,3,3,3.752360886565,0.752360886565,0,0,0,1.8,-2.1,-3 -"332",1007,2,1,0,1.43566490391055,1.43566490391055,0,-24,0,1.5,0.199999999999999,-3 -"333",1008,2,1,0,0.0165348422402754,0.0165348422402754,1,28,0,-0.5,-0.0999999999999996,0 -"334",1009,2,1,0,2,2,0,-14,0,-6.1,0.100000000000001,-7 -"335",1009,2,2,2,3,1,0,-14,0,-6.1,0.100000000000001,-7 -"336",1009,2,3,3,6,3,0,-14,0,-6.1,0.100000000000001,-7 -"337",1009,2,4,6,6.5,0.5,0,-14,0,-6.1,0.100000000000001,-7 -"338",1009,2,5,6.5,8,1.5,0,-14,0,-6.1,0.100000000000001,-7 -"339",1009,2,6,8,10,2,0,-14,0,-6.1,0.100000000000001,-7 -"340",1010,2,1,0,0.953514471028606,0.953514471028606,1,32,0,4.7,-0.4,-4 -"341",1011,2,1,0,2,2,0,6,0,-3.6,-0.199999999999999,8 -"342",1011,2,2,2,3,1,0,6,0,-3.6,-0.199999999999999,8 -"343",1011,2,3,3,6,3,0,6,0,-3.6,-0.199999999999999,8 -"344",1011,2,4,6,6.28629481808729,0.286294818087291,1,6,0,-3.6,-0.199999999999999,8 -"345",1012,2,1,0,2,2,0,-7,0,-5,-0.4,-2 -"346",1012,2,2,2,3,1,0,-7,0,-5,-0.4,-2 -"347",1012,2,3,3,6,3,0,-7,0,-5,-0.4,-2 -"348",1012,2,4,6,6.5,0.5,0,-7,0,-5,-0.4,-2 -"349",1012,2,5,6.5,8,1.5,0,-7,0,-5,-0.4,-2 -"350",1012,2,6,8,10,2,0,-7,0,-5,-0.4,-2 -"351",1013,2,1,0,2,2,0,7,1,3.5,0.300000000000001,5 -"352",1013,2,2,2,3,1,0,7,1,3.5,0.300000000000001,5 -"353",1013,2,3,3,6,3,0,7,1,3.5,0.300000000000001,5 -"354",1013,2,4,6,6.5,0.5,0,7,1,3.5,0.300000000000001,5 -"355",1013,2,5,6.5,7.29973533662385,0.799735336623852,0,7,1,3.5,0.300000000000001,5 -"356",1014,2,1,0,0.426648840767266,0.426648840767266,1,4,0,-13.4,-0.4,0 -"357",1015,2,1,0,2,2,0,14,1,7.5,-1.1,-2 -"358",1015,2,2,2,3,1,0,14,1,7.5,-1.1,-2 -"359",1015,2,3,3,6,3,0,14,1,7.5,-1.1,-2 -"360",1015,2,4,6,6.5,0.5,0,14,1,7.5,-1.1,-2 -"361",1015,2,5,6.5,8,1.5,0,14,1,7.5,-1.1,-2 -"362",1015,2,6,8,10,2,0,14,1,7.5,-1.1,-2 -"363",1016,2,1,0,0.157020869147973,0.157020869147973,1,-5,1,1.2,0.800000000000001,-6 -"364",1017,2,1,0,2,2,0,2,1,5.3,1.3,-6 -"365",1017,2,2,2,3,1,0,2,1,5.3,1.3,-6 -"366",1017,2,3,3,6,3,0,2,1,5.3,1.3,-6 -"367",1017,2,4,6,6.5,0.5,0,2,1,5.3,1.3,-6 -"368",1017,2,5,6.5,8,1.5,0,2,1,5.3,1.3,-6 -"369",1017,2,6,8,9.38157630391472,1.38157630391472,1,2,1,5.3,1.3,-6 -"370",1018,2,1,0,0.592392622612396,0.592392622612396,1,14,0,1.1,1.7,-5 -"371",1019,2,1,0,2,2,0,15,1,6.4,-1.1,-1 -"372",1019,2,2,2,3,1,0,15,1,6.4,-1.1,-1 -"373",1019,2,3,3,6,3,0,15,1,6.4,-1.1,-1 -"374",1019,2,4,6,6.05980469830735,0.0598046983073464,0,15,1,6.4,-1.1,-1 -"375",1020,2,1,0,0.10891482761366,0.10891482761366,1,-26,1,9.2,0.199999999999999,2 -"376",1021,2,1,0,0.653030918977124,0.653030918977124,1,-10,0,-0.100000000000001,0.399999999999999,6 -"377",1022,2,1,0,0.0194898014728388,0.0194898014728388,0,-3,0,4.5,0.399999999999999,-5 -"378",1023,2,1,0,1.02679957373588,1.02679957373588,1,-1,0,-1.7,-0.5,5 -"379",1024,2,1,0,1.40379331447308,1.40379331447308,0,17,0,-1.3,-0.699999999999999,-5 -"380",1025,2,1,0,2,2,0,23,0,-1.1,-0.300000000000001,3 -"381",1025,2,2,2,2.13110115311807,0.131101153118068,1,23,0,-1.1,-0.300000000000001,3 -"382",1026,2,1,0,0.849317241590069,0.849317241590069,1,20,1,-3.9,-0.300000000000001,-6 -"383",1027,2,1,0,1.79241921820334,1.79241921820334,0,-15,0,-4.1,1.4,1 -"384",1028,2,1,0,2,2,0,-10,0,3.7,0.300000000000001,-6 -"385",1028,2,2,2,3,1,0,-10,0,3.7,0.300000000000001,-6 -"386",1028,2,3,3,6,3,0,-10,0,3.7,0.300000000000001,-6 -"387",1028,2,4,6,6.5,0.5,0,-10,0,3.7,0.300000000000001,-6 -"388",1028,2,5,6.5,7.71323213580892,1.21323213580892,0,-10,0,3.7,0.300000000000001,-6 -"389",1029,2,1,0,1.23800864361653,1.23800864361653,1,-28,0,14.8,0.199999999999999,-4 -"390",1030,2,1,0,0.139444310761049,0.139444310761049,1,-8,1,5.8,1.9,-3 -"391",1031,2,1,0,0.905757825168684,0.905757825168684,1,5,1,-4.4,0.5,0 -"392",1032,2,1,0,2,2,0,0,0,-3.4,-0.300000000000001,-6 -"393",1032,2,2,2,3,1,0,0,0,-3.4,-0.300000000000001,-6 -"394",1032,2,3,3,6,3,0,0,0,-3.4,-0.300000000000001,-6 -"395",1032,2,4,6,6.06910607824523,0.0691060782452301,0,0,0,-3.4,-0.300000000000001,-6 -"396",1033,2,1,0,2,2,0,-7,1,6.3,0.600000000000001,3 -"397",1033,2,2,2,2.15225345319179,0.152253453191788,1,-7,1,6.3,0.600000000000001,3 -"398",1034,2,1,0,0.270981088002243,0.270981088002243,0,12,0,0.200000000000003,2.2,-12 -"399",1035,2,1,0,2,2,0,-18,0,-5.5,-0.6,5 -"400",1035,2,2,2,3,1,0,-18,0,-5.5,-0.6,5 -"401",1035,2,3,3,6,3,0,-18,0,-5.5,-0.6,5 -"402",1035,2,4,6,6.18103858043784,0.181038580437839,0,-18,0,-5.5,-0.6,5 -"403",1036,2,1,0,1.25463636207971,1.25463636207971,1,9,0,-0.600000000000001,-0.0999999999999996,0 -"404",1037,2,1,0,1.60279286334598,1.60279286334598,1,7,0,0.299999999999997,0.600000000000001,0 -"405",1038,2,1,0,1.83657035143916,1.83657035143916,1,0,0,-2.7,0.399999999999999,-5 -"406",1039,2,1,0,2,2,0,-15,1,0.899999999999999,0.800000000000001,1 -"407",1039,2,2,2,3,1,0,-15,1,0.899999999999999,0.800000000000001,1 -"408",1039,2,3,3,6,3,0,-15,1,0.899999999999999,0.800000000000001,1 -"409",1039,2,4,6,6.5,0.5,0,-15,1,0.899999999999999,0.800000000000001,1 -"410",1039,2,5,6.5,8,1.5,0,-15,1,0.899999999999999,0.800000000000001,1 -"411",1039,2,6,8,10,2,0,-15,1,0.899999999999999,0.800000000000001,1 -"412",1040,2,1,0,0.438288793715266,0.438288793715266,0,9,0,-4.5,-0.0999999999999996,-5 -"413",1041,2,1,0,2,2,0,25,1,-2.4,-1.8,2 -"414",1041,2,2,2,2.57306402112132,0.573064021121318,1,25,1,-2.4,-1.8,2 -"415",1042,2,1,0,0.845092834965182,0.845092834965182,0,12,0,-5.6,-0.9,0 -"416",1043,2,1,0,2,2,0,-1,1,8.2,-0.699999999999999,3 -"417",1043,2,2,2,3,1,0,-1,1,8.2,-0.699999999999999,3 -"418",1043,2,3,3,3.18202231988065,0.182022319880647,0,-1,1,8.2,-0.699999999999999,3 -"419",1044,2,1,0,2,2,0,11,1,2.9,-1.1,5 -"420",1044,2,2,2,2.03079155119554,0.0307915511955387,0,11,1,2.9,-1.1,5 -"421",1045,2,1,0,2,2,0,-4,0,1.2,-0.199999999999999,-7 -"422",1045,2,2,2,2.3025012865355,0.302501286535497,0,-4,0,1.2,-0.199999999999999,-7 -"423",1046,2,1,0,0.341647742259402,0.341647742259402,1,18,1,-2,-0.300000000000001,-3 -"424",1047,2,1,0,0.576036399410757,0.576036399410757,1,27,0,-1.4,0.5,6 -"425",1048,2,1,0,2,2,0,9,0,5.7,0,5 -"426",1048,2,2,2,2.99848926429237,0.998489264292369,1,9,0,5.7,0,5 -"427",1049,2,1,0,0.260072399154587,0.260072399154587,1,11,0,3.9,0.699999999999999,-2 -"428",1050,2,1,0,0.0782004479684158,0.0782004479684158,0,15,0,-2.1,1.1,-1 -"429",1051,2,1,0,2,2,0,21,0,7.3,-1,-9 -"430",1051,2,2,2,3,1,0,21,0,7.3,-1,-9 -"431",1051,2,3,3,4.02874545093613,1.02874545093613,0,21,0,7.3,-1,-9 -"432",1052,2,1,0,2,2,0,-13,0,-6.4,1.8,-11 -"433",1052,2,2,2,3,1,0,-13,0,-6.4,1.8,-11 -"434",1052,2,3,3,6,3,0,-13,0,-6.4,1.8,-11 -"435",1052,2,4,6,6.5,0.5,0,-13,0,-6.4,1.8,-11 -"436",1052,2,5,6.5,8,1.5,0,-13,0,-6.4,1.8,-11 -"437",1052,2,6,8,8.9658322399814,0.9658322399814,1,-13,0,-6.4,1.8,-11 -"438",1053,2,1,0,0.184465330616589,0.184465330616589,1,5,0,1.3,-0.300000000000001,4 -"439",1054,2,1,0,0.294973933639656,0.294973933639656,1,-13,0,3.3,0.800000000000001,-1 -"440",1055,2,1,0,2,2,0,-17,0,0.899999999999999,-1.3,-7 -"441",1055,2,2,2,3,1,0,-17,0,0.899999999999999,-1.3,-7 -"442",1055,2,3,3,5.96193851794077,2.96193851794077,0,-17,0,0.899999999999999,-1.3,-7 -"443",1056,2,1,0,2,2,0,-27,1,5.5,-1.4,1 -"444",1056,2,2,2,3,1,0,-27,1,5.5,-1.4,1 -"445",1056,2,3,3,6,3,0,-27,1,5.5,-1.4,1 -"446",1056,2,4,6,6.5,0.5,0,-27,1,5.5,-1.4,1 -"447",1056,2,5,6.5,6.64903474911345,0.149034749113453,0,-27,1,5.5,-1.4,1 -"448",1057,2,1,0,1.17187706060549,1.17187706060549,1,2,0,3.4,0.899999999999999,-1 -"449",1058,2,1,0,1.5047574232316,1.5047574232316,0,-14,1,-4.5,0,1 -"450",1059,2,1,0,0.532199168288128,0.532199168288128,1,16,1,4.6,1.3,4 -"451",1060,2,1,0,2,2,0,-1,1,-4.9,-1.6,-1 -"452",1060,2,2,2,3,1,0,-1,1,-4.9,-1.6,-1 -"453",1060,2,3,3,5.8261530371544,2.8261530371544,0,-1,1,-4.9,-1.6,-1 -"454",1061,2,1,0,2,2,0,-22,0,-5.8,-0.4,-4 -"455",1061,2,2,2,3,1,0,-22,0,-5.8,-0.4,-4 -"456",1061,2,3,3,6,3,0,-22,0,-5.8,-0.4,-4 -"457",1061,2,4,6,6.5,0.5,0,-22,0,-5.8,-0.4,-4 -"458",1061,2,5,6.5,8,1.5,0,-22,0,-5.8,-0.4,-4 -"459",1061,2,6,8,10,2,0,-22,0,-5.8,-0.4,-4 -"460",1062,2,1,0,2,2,0,1,1,8,0.199999999999999,5 -"461",1062,2,2,2,3,1,0,1,1,8,0.199999999999999,5 -"462",1062,2,3,3,6,3,0,1,1,8,0.199999999999999,5 -"463",1062,2,4,6,6.5,0.5,0,1,1,8,0.199999999999999,5 -"464",1062,2,5,6.5,8,1.5,0,1,1,8,0.199999999999999,5 -"465",1062,2,6,8,10,2,0,1,1,8,0.199999999999999,5 -"466",1063,2,1,0,0.335291432076939,0.335291432076939,1,-8,0,-2.5,-0.199999999999999,8 -"467",1064,2,1,0,2,2,0,3,1,4.8,-1.4,1 -"468",1064,2,2,2,3,1,0,3,1,4.8,-1.4,1 -"469",1064,2,3,3,6,3,0,3,1,4.8,-1.4,1 -"470",1064,2,4,6,6.5,0.5,0,3,1,4.8,-1.4,1 -"471",1064,2,5,6.5,8,1.5,0,3,1,4.8,-1.4,1 -"472",1064,2,6,8,9.29454196265769,1.29454196265769,0,3,1,4.8,-1.4,1 -"473",1065,2,1,0,2,2,0,2,0,3.5,-0.199999999999999,1 -"474",1065,2,2,2,2.08173952307554,0.0817395230755408,0,2,0,3.5,-0.199999999999999,1 -"475",1066,2,1,0,2,2,0,-17,1,-1.8,-0.199999999999999,4 -"476",1066,2,2,2,3,1,0,-17,1,-1.8,-0.199999999999999,4 -"477",1066,2,3,3,4.67297774539559,1.67297774539559,0,-17,1,-1.8,-0.199999999999999,4 -"478",1067,2,1,0,0.750848353736772,0.750848353736772,1,5,0,-3.7,0.600000000000001,-1 -"479",1068,2,1,0,2,2,0,-15,1,9.59999999999999,-0.800000000000001,2 -"480",1068,2,2,2,3,1,0,-15,1,9.59999999999999,-0.800000000000001,2 -"481",1068,2,3,3,6,3,0,-15,1,9.59999999999999,-0.800000000000001,2 -"482",1068,2,4,6,6.5,0.5,0,-15,1,9.59999999999999,-0.800000000000001,2 -"483",1068,2,5,6.5,8,1.5,0,-15,1,9.59999999999999,-0.800000000000001,2 -"484",1068,2,6,8,9.28704410997702,1.28704410997702,0,-15,1,9.59999999999999,-0.800000000000001,2 -"485",1069,2,1,0,0.301092507774878,0.301092507774878,1,-6,0,-4.7,0.600000000000001,2 -"486",1070,2,1,0,0.333396190006199,0.333396190006199,1,21,0,-0.399999999999999,-1.2,1 -"487",1071,2,1,0,2,2,0,1,1,5.4,-1.9,-5 -"488",1071,2,2,2,2.28363165782233,0.283631657822329,0,1,1,5.4,-1.9,-5 -"489",1072,2,1,0,0.323427705353153,0.323427705353153,1,-28,0,-12.1,1.6,4 -"490",1073,2,1,0,2,2,0,11,1,-2.2,0.100000000000001,0 -"491",1073,2,2,2,3,1,0,11,1,-2.2,0.100000000000001,0 -"492",1073,2,3,3,3.07653655346892,0.0765365534689149,1,11,1,-2.2,0.100000000000001,0 -"493",1074,2,1,0,2,2,0,9,1,-2.5,-1.4,5 -"494",1074,2,2,2,3,1,0,9,1,-2.5,-1.4,5 -"495",1074,2,3,3,4.1042252774414,1.1042252774414,1,9,1,-2.5,-1.4,5 -"496",1075,2,1,0,1.56136629423164,1.56136629423164,1,7,0,4.7,1.2,0 -"497",1076,2,1,0,0.644932437362172,0.644932437362172,1,15,1,1.2,-0.4,-9 -"498",1077,2,1,0,0.435214367921785,0.435214367921785,1,13,1,-7.7,-0.9,5 -"499",1078,2,1,0,1.04117572340978,1.04117572340978,0,0,1,1,-0.800000000000001,9 -"500",1079,2,1,0,0.611156621158216,0.611156621158216,0,-14,0,3,0,3 -"501",1080,2,1,0,1.97318044306608,1.97318044306608,1,-5,1,-2.9,-0.9,5 -"502",1081,2,1,0,2,2,0,13,1,-6.4,0,1 -"503",1081,2,2,2,3,1,0,13,1,-6.4,0,1 -"504",1081,2,3,3,6,3,0,13,1,-6.4,0,1 -"505",1081,2,4,6,6.5,0.5,0,13,1,-6.4,0,1 -"506",1081,2,5,6.5,8,1.5,0,13,1,-6.4,0,1 -"507",1081,2,6,8,10,2,0,13,1,-6.4,0,1 -"508",1082,2,1,0,2,2,0,1,0,2,-1,-4 -"509",1082,2,2,2,3,1,0,1,0,2,-1,-4 -"510",1082,2,3,3,6,3,0,1,0,2,-1,-4 -"511",1082,2,4,6,6.5,0.5,0,1,0,2,-1,-4 -"512",1082,2,5,6.5,8,1.5,0,1,0,2,-1,-4 -"513",1082,2,6,8,9.51400166902557,1.51400166902557,0,1,0,2,-1,-4 -"514",1083,2,1,0,1.8687849105425,1.8687849105425,0,4,0,-2.7,-0.9,-2 -"515",1084,2,1,0,0.804986540226156,0.804986540226156,1,12,1,1.4,0.600000000000001,0 -"516",1085,2,1,0,1.5536718572084,1.5536718572084,0,4,0,-2.6,-0.800000000000001,4 -"517",1086,2,1,0,2,2,0,-17,1,2.5,-1,-7 -"518",1086,2,2,2,2.7269389004046,0.726938900404603,0,-17,1,2.5,-1,-7 -"519",1087,2,1,0,0.953606254024136,0.953606254024136,1,8,0,4.8,-0.199999999999999,1 -"520",1088,2,1,0,2,2,0,14,1,-2.4,-0.800000000000001,-7 -"521",1088,2,2,2,3,1,0,14,1,-2.4,-0.800000000000001,-7 -"522",1088,2,3,3,6,3,0,14,1,-2.4,-0.800000000000001,-7 -"523",1088,2,4,6,6.5,0.5,0,14,1,-2.4,-0.800000000000001,-7 -"524",1088,2,5,6.5,7.42621691540242,0.926216915402424,0,14,1,-2.4,-0.800000000000001,-7 -"525",1089,2,1,0,0.95065232642278,0.95065232642278,1,4,0,-3.6,0.699999999999999,4 -"526",1090,2,1,0,2,2,0,-4,0,2,0,-8 -"527",1090,2,2,2,3,1,0,-4,0,2,0,-8 -"528",1090,2,3,3,6,3,0,-4,0,2,0,-8 -"529",1090,2,4,6,6.5,0.5,0,-4,0,2,0,-8 -"530",1090,2,5,6.5,7.32813438335817,0.828134383358167,0,-4,0,2,0,-8 -"531",1091,2,1,0,0.126971677702329,0.126971677702329,1,18,0,6,-0.300000000000001,5 -"532",1092,2,1,0,2,2,0,-34,0,-3.3,-2.4,1 -"533",1092,2,2,2,3,1,0,-34,0,-3.3,-2.4,1 -"534",1092,2,3,3,6,3,0,-34,0,-3.3,-2.4,1 -"535",1092,2,4,6,6.5,0.5,0,-34,0,-3.3,-2.4,1 -"536",1092,2,5,6.5,8,1.5,0,-34,0,-3.3,-2.4,1 -"537",1092,2,6,8,10,2,0,-34,0,-3.3,-2.4,1 -"538",1093,2,1,0,0.306778457033624,0.306778457033624,1,15,0,0.899999999999999,2.1,-10 -"539",1094,2,1,0,0.493757519803271,0.493757519803271,1,9,0,3.7,0.100000000000001,3 -"540",1095,2,1,0,0.9942884750711,0.9942884750711,1,22,1,-3.3,-0.199999999999999,3 -"541",1096,2,1,0,0.63309431734028,0.63309431734028,1,-3,0,6,0.5,5 -"542",1097,2,1,0,2,2,0,33,1,-4.9,-0.0999999999999996,1 -"543",1097,2,2,2,3,1,0,33,1,-4.9,-0.0999999999999996,1 -"544",1097,2,3,3,6,3,0,33,1,-4.9,-0.0999999999999996,1 -"545",1097,2,4,6,6.5,0.5,0,33,1,-4.9,-0.0999999999999996,1 -"546",1097,2,5,6.5,8,1.5,0,33,1,-4.9,-0.0999999999999996,1 -"547",1097,2,6,8,9.63328933819164,1.63328933819164,1,33,1,-4.9,-0.0999999999999996,1 -"548",1098,2,1,0,2,2,0,6,0,1.3,-0.300000000000001,5 -"549",1098,2,2,2,3,1,0,6,0,1.3,-0.300000000000001,5 -"550",1098,2,3,3,6,3,0,6,0,1.3,-0.300000000000001,5 -"551",1098,2,4,6,6.38807196474969,0.388071964749686,1,6,0,1.3,-0.300000000000001,5 -"552",1099,2,1,0,0.0986367762547121,0.0986367762547121,1,26,0,2.4,0.399999999999999,8 -"553",1100,2,1,0,0.894976155386457,0.894976155386457,0,14,1,0.899999999999999,0.399999999999999,0 -"554",1101,2,1,0,1.00524387188062,1.00524387188062,0,-11,0,-0.100000000000001,0.899999999999999,-2 -"555",1102,2,1,0,2,2,0,-9,1,-2.8,-1.1,0 -"556",1102,2,2,2,3,1,0,-9,1,-2.8,-1.1,0 -"557",1102,2,3,3,6,3,0,-9,1,-2.8,-1.1,0 -"558",1102,2,4,6,6.5,0.5,0,-9,1,-2.8,-1.1,0 -"559",1102,2,5,6.5,8,1.5,0,-9,1,-2.8,-1.1,0 -"560",1102,2,6,8,8.45178072264161,0.451780722641611,1,-9,1,-2.8,-1.1,0 -"561",1103,2,1,0,1.82824822406541,1.82824822406541,0,-16,0,0.100000000000001,-1.8,1 -"562",1104,2,1,0,1.26842910011227,1.26842910011227,1,6,1,-6.2,1.1,-3 -"563",1105,2,1,0,2,2,0,18,0,-2.2,-1,8 -"564",1105,2,2,2,2.03405034415261,0.034050344152607,0,18,0,-2.2,-1,8 -"565",1106,2,1,0,0.109357738057923,0.109357738057923,1,19,0,0.100000000000001,0.699999999999999,-1 -"566",1107,2,1,0,1.32921859812994,1.32921859812994,1,5,1,-4.3,1,2 -"567",1108,2,1,0,0.19728643694326,0.19728643694326,1,15,1,7.6,0.699999999999999,1 -"568",1109,2,1,0,1.18977946832093,1.18977946832093,0,-15,1,-1,-1,2 -"569",1110,2,1,0,0.214245385936909,0.214245385936909,1,12,0,-4.5,-0.6,-7 -"570",1111,2,1,0,2,2,0,-16,0,3.5,-0.800000000000001,4 -"571",1111,2,2,2,2.54660676042674,0.546606760426735,0,-16,0,3.5,-0.800000000000001,4 -"572",1112,2,1,0,0.0331761652839547,0.0331761652839547,1,-5,0,9.5,0.399999999999999,8 -"573",1113,2,1,0,2,2,0,-12,1,-0.5,-1.4,7 -"574",1113,2,2,2,3,1,0,-12,1,-0.5,-1.4,7 -"575",1113,2,3,3,3.05427968996845,0.0542796899684476,0,-12,1,-0.5,-1.4,7 -"576",1114,2,1,0,2,2,0,-9,0,-5.8,-0.6,-5 -"577",1114,2,2,2,3,1,0,-9,0,-5.8,-0.6,-5 -"578",1114,2,3,3,5.98925499797864,2.98925499797864,0,-9,0,-5.8,-0.6,-5 -"579",1115,2,1,0,2,2,0,-10,0,-1.3,-0.4,-4 -"580",1115,2,2,2,3,1,0,-10,0,-1.3,-0.4,-4 -"581",1115,2,3,3,6,3,0,-10,0,-1.3,-0.4,-4 -"582",1115,2,4,6,6.5,0.5,0,-10,0,-1.3,-0.4,-4 -"583",1115,2,5,6.5,7.184936478223,0.684936478222999,1,-10,0,-1.3,-0.4,-4 -"584",1116,2,1,0,2,2,0,7,1,1,-0.199999999999999,7 -"585",1116,2,2,2,3,1,0,7,1,1,-0.199999999999999,7 -"586",1116,2,3,3,3.05442493814564,0.0544249381456393,0,7,1,1,-0.199999999999999,7 -"587",1117,2,1,0,1.85165582887988,1.85165582887988,1,14,1,2.2,0.800000000000001,1 -"588",1118,2,1,0,2,2,0,-16,0,4.4,-0.5,-5 -"589",1118,2,2,2,3,1,0,-16,0,4.4,-0.5,-5 -"590",1118,2,3,3,3.90238878055118,0.902388780551184,0,-16,0,4.4,-0.5,-5 -"591",1119,2,1,0,0.0231175366958204,0.0231175366958204,1,16,1,1,0.199999999999999,4 -"592",1120,2,1,0,1.64462578477557,1.64462578477557,1,16,0,-3.9,0,1 -"593",1121,2,1,0,2,2,0,14,1,5.5,-0.6,1 -"594",1121,2,2,2,3,1,0,14,1,5.5,-0.6,1 -"595",1121,2,3,3,3.72484464796028,0.724844647960276,0,14,1,5.5,-0.6,1 -"596",1122,2,1,0,0.180259204137708,0.180259204137708,1,18,0,2.1,0.699999999999999,-3 -"597",1123,2,1,0,0.177231531635067,0.177231531635067,1,-12,1,1.2,0.699999999999999,7 -"598",1124,2,1,0,0.413773718090104,0.413773718090104,1,-2,0,3.4,0.399999999999999,-2 -"599",1125,2,1,0,2,2,0,-7,0,1.2,-0.0999999999999996,1 -"600",1125,2,2,2,3,1,0,-7,0,1.2,-0.0999999999999996,1 -"601",1125,2,3,3,6,3,0,-7,0,1.2,-0.0999999999999996,1 -"602",1125,2,4,6,6.5,0.5,0,-7,0,1.2,-0.0999999999999996,1 -"603",1125,2,5,6.5,8,1.5,0,-7,0,1.2,-0.0999999999999996,1 -"604",1125,2,6,8,10,2,0,-7,0,1.2,-0.0999999999999996,1 -"605",1126,2,1,0,0.370803141233774,0.370803141233774,1,5,0,9.90000000000001,-0.9,10 -"606",1127,2,1,0,0.436143629243842,0.436143629243842,1,15,1,-0.600000000000001,1.1,4 -"607",1128,2,1,0,2,2,0,0,0,-3,0.699999999999999,-4 -"608",1128,2,2,2,2.77229222992697,0.772292229926971,1,0,0,-3,0.699999999999999,-4 -"609",1129,2,1,0,1.1585149801489,1.1585149801489,0,8,0,0.600000000000001,0.899999999999999,-5 -"610",1130,2,1,0,2,2,0,10,1,-1.5,-0.0999999999999996,3 -"611",1130,2,2,2,3,1,0,10,1,-1.5,-0.0999999999999996,3 -"612",1130,2,3,3,3.86855824624099,0.868558246240991,0,10,1,-1.5,-0.0999999999999996,3 -"613",1131,2,1,0,0.798949022093648,0.798949022093648,0,-15,0,-1.6,2.6,2 -"614",1132,2,1,0,2,2,0,16,0,-4.2,-1.3,2 -"615",1132,2,2,2,3,1,0,16,0,-4.2,-1.3,2 -"616",1132,2,3,3,3.13251322532167,0.132513225321673,0,16,0,-4.2,-1.3,2 -"617",1133,2,1,0,0.561419980516692,0.561419980516692,1,-1,1,6.4,0.399999999999999,-5 -"618",1134,2,1,0,2,2,0,-5,1,-1.2,-0.699999999999999,4 -"619",1134,2,2,2,3,1,0,-5,1,-1.2,-0.699999999999999,4 -"620",1134,2,3,3,3.20550850825845,0.205508508258447,0,-5,1,-1.2,-0.699999999999999,4 -"621",1135,2,1,0,0.181951958869671,0.181951958869671,1,13,1,-4.8,-0.0999999999999996,3 -"622",1136,2,1,0,2,2,0,-8,0,-5.9,-0.9,-2 -"623",1136,2,2,2,3,1,0,-8,0,-5.9,-0.9,-2 -"624",1136,2,3,3,3.69624431315471,0.69624431315471,0,-8,0,-5.9,-0.9,-2 -"625",1137,2,1,0,0.514402333480557,0.514402333480557,1,1,1,3.8,0.600000000000001,1 -"626",1138,2,1,0,2,2,0,7,1,5.2,-0.6,-3 -"627",1138,2,2,2,2.21346480146017,0.213464801460172,1,7,1,5.2,-0.6,-3 -"628",1139,2,1,0,0.728981945805516,0.728981945805516,1,-2,0,-0.600000000000001,1,4 -"629",1140,2,1,0,2,2,0,-20,0,-4.4,-2,7 -"630",1140,2,2,2,3,1,0,-20,0,-4.4,-2,7 -"631",1140,2,3,3,6,3,0,-20,0,-4.4,-2,7 -"632",1140,2,4,6,6.5,0.5,0,-20,0,-4.4,-2,7 -"633",1140,2,5,6.5,8,1.5,0,-20,0,-4.4,-2,7 -"634",1140,2,6,8,10,2,0,-20,0,-4.4,-2,7 -"635",1141,2,1,0,1.62642208124329,1.62642208124329,0,-4,0,5,0.899999999999999,3 -"636",1142,2,1,0,2,2,0,-1,0,-1.8,0.899999999999999,3 -"637",1142,2,2,2,3,1,0,-1,0,-1.8,0.899999999999999,3 -"638",1142,2,3,3,5.44005477443597,2.44005477443597,0,-1,0,-1.8,0.899999999999999,3 -"639",1143,2,1,0,2,2,0,-22,1,8.2,0.100000000000001,-4 -"640",1143,2,2,2,3,1,0,-22,1,8.2,0.100000000000001,-4 -"641",1143,2,3,3,3.5411769929251,0.541176992925103,0,-22,1,8.2,0.100000000000001,-4 -"642",1144,2,1,0,1.02750512950237,1.02750512950237,0,9,1,-2.3,-1.2,0 -"643",1145,2,1,0,2,2,0,-6,1,5,-1.9,-4 -"644",1145,2,2,2,3,1,0,-6,1,5,-1.9,-4 -"645",1145,2,3,3,6,3,0,-6,1,5,-1.9,-4 -"646",1145,2,4,6,6.5,0.5,0,-6,1,5,-1.9,-4 -"647",1145,2,5,6.5,8,1.5,0,-6,1,5,-1.9,-4 -"648",1145,2,6,8,10,2,0,-6,1,5,-1.9,-4 -"649",1146,2,1,0,0.484741030939274,0.484741030939274,0,-9,0,-0.5,-1,-1 -"650",1147,2,1,0,1.20498265768594,1.20498265768594,1,-5,0,0,0.800000000000001,-2 -"651",1148,2,1,0,0.106238497567109,0.106238497567109,1,36,0,-0.100000000000001,0.300000000000001,0 -"652",1149,2,1,0,2,2,0,0,1,8.7,1.2,-2 -"653",1149,2,2,2,2.32450430951082,0.324504309510821,1,0,1,8.7,1.2,-2 -"654",1150,2,1,0,2,2,0,-29,0,4.1,-0.199999999999999,-3 -"655",1150,2,2,2,3,1,0,-29,0,4.1,-0.199999999999999,-3 -"656",1150,2,3,3,6,3,0,-29,0,4.1,-0.199999999999999,-3 -"657",1150,2,4,6,6.5,0.5,0,-29,0,4.1,-0.199999999999999,-3 -"658",1150,2,5,6.5,8,1.5,0,-29,0,4.1,-0.199999999999999,-3 -"659",1150,2,6,8,10,2,0,-29,0,4.1,-0.199999999999999,-3 -"660",1151,2,1,0,0.0863224636696352,0.0863224636696352,1,19,1,-0.399999999999999,0.399999999999999,0 -"661",1152,2,1,0,1.17775587017135,1.17775587017135,0,9,0,2.8,-1.8,3 -"662",1153,2,1,0,2,2,0,-16,1,-1,0.199999999999999,8 -"663",1153,2,2,2,3,1,0,-16,1,-1,0.199999999999999,8 -"664",1153,2,3,3,6,3,0,-16,1,-1,0.199999999999999,8 -"665",1153,2,4,6,6.42590733553947,0.425907335539475,0,-16,1,-1,0.199999999999999,8 -"666",1154,2,1,0,1.66683898783165,1.66683898783165,0,-14,1,0.200000000000003,-0.5,4 -"667",1155,2,1,0,2,2,0,-1,0,0.5,0.300000000000001,-8 -"668",1155,2,2,2,2.06211572750234,0.0621157275023379,0,-1,0,0.5,0.300000000000001,-8 -"669",1156,2,1,0,1.09541138173556,1.09541138173556,1,8,0,-3.7,-0.199999999999999,0 -"670",1157,2,1,0,0.817263759656468,0.817263759656468,1,18,0,2.1,-0.4,-2 -"671",1158,2,1,0,2,2,0,2,0,8.2,1,-6 -"672",1158,2,2,2,3,1,0,2,0,8.2,1,-6 -"673",1158,2,3,3,5.6750825061023,2.6750825061023,0,2,0,8.2,1,-6 -"674",1159,2,1,0,1.20267749904444,1.20267749904444,1,22,1,4.2,0.5,-3 -"675",1160,2,1,0,1.57754810416202,1.57754810416202,0,-1,1,-1.7,0.300000000000001,-1 -"676",1161,2,1,0,0.468486298125603,0.468486298125603,0,13,1,-7.5,-0.5,-4 -"677",1162,2,1,0,0.541349238346344,0.541349238346344,1,-11,0,2.2,0.100000000000001,7 -"678",1163,2,1,0,2,2,0,7,0,-8.5,0.399999999999999,0 -"679",1163,2,2,2,3,1,0,7,0,-8.5,0.399999999999999,0 -"680",1163,2,3,3,6,3,0,7,0,-8.5,0.399999999999999,0 -"681",1163,2,4,6,6.5,0.5,0,7,0,-8.5,0.399999999999999,0 -"682",1163,2,5,6.5,6.52023340852436,0.020233408524362,1,7,0,-8.5,0.399999999999999,0 -"683",1164,2,1,0,2,2,0,1,1,0.5,0.300000000000001,-1 -"684",1164,2,2,2,3,1,0,1,1,0.5,0.300000000000001,-1 -"685",1164,2,3,3,6,3,0,1,1,0.5,0.300000000000001,-1 -"686",1164,2,4,6,6.32977164010283,0.329771640102826,0,1,1,0.5,0.300000000000001,-1 -"687",1165,2,1,0,2,2,0,-13,0,1.1,-0.699999999999999,-9 -"688",1165,2,2,2,3,1,0,-13,0,1.1,-0.699999999999999,-9 -"689",1165,2,3,3,5.63047572869852,2.63047572869852,0,-13,0,1.1,-0.699999999999999,-9 -"690",1166,2,1,0,0.89607618645427,0.89607618645427,1,2,1,4.3,0.199999999999999,0 -"691",1167,2,1,0,0.700566029847473,0.700566029847473,1,24,0,-5.6,0.199999999999999,-1 -"692",1168,2,1,0,0.302052536723696,0.302052536723696,1,-8,0,-5.6,1.2,7 -"693",1169,2,1,0,1.47920665374187,1.47920665374187,0,-1,1,-3,-0.4,1 -"694",1170,2,1,0,2,2,0,-11,0,5.5,1.2,0 -"695",1170,2,2,2,2.2846439637029,0.284643963702896,1,-11,0,5.5,1.2,0 -"696",1171,2,1,0,1.91492368011196,1.91492368011196,1,-13,0,-3.5,0,-4 -"697",1172,2,1,0,2,2,0,-7,1,7.2,0.600000000000001,-1 -"698",1172,2,2,2,3,1,0,-7,1,7.2,0.600000000000001,-1 -"699",1172,2,3,3,6,3,0,-7,1,7.2,0.600000000000001,-1 -"700",1172,2,4,6,6.5,0.5,0,-7,1,7.2,0.600000000000001,-1 -"701",1172,2,5,6.5,8,1.5,0,-7,1,7.2,0.600000000000001,-1 -"702",1172,2,6,8,10,2,0,-7,1,7.2,0.600000000000001,-1 -"703",1173,2,1,0,0.50241803452817,0.50241803452817,1,15,0,5.9,-2.8,5 -"704",1174,2,1,0,2,2,0,1,0,-1.4,-0.199999999999999,-2 -"705",1174,2,2,2,2.19330792247827,0.193307922478268,0,1,0,-1.4,-0.199999999999999,-2 -"706",1175,2,1,0,2,2,0,-27,1,-1,1.9,-2 -"707",1175,2,2,2,3,1,0,-27,1,-1,1.9,-2 -"708",1175,2,3,3,3.82208381793101,0.822083817931005,0,-27,1,-1,1.9,-2 -"709",1176,2,1,0,1.53552574915738,1.53552574915738,1,-21,1,8.7,0.399999999999999,1 -"710",1177,2,1,0,2,2,0,26,1,2.8,1.3,-7 -"711",1177,2,2,2,2.06584735861197,0.0658473586119708,0,26,1,2.8,1.3,-7 -"712",1178,2,1,0,0.0340737884683491,0.0340737884683491,1,5,1,-2.2,1.3,-1 -"713",1179,2,1,0,2,2,0,-26,0,-4.4,-1.8,0 -"714",1179,2,2,2,3,1,0,-26,0,-4.4,-1.8,0 -"715",1179,2,3,3,6,3,0,-26,0,-4.4,-1.8,0 -"716",1179,2,4,6,6.5,0.5,0,-26,0,-4.4,-1.8,0 -"717",1179,2,5,6.5,8,1.5,0,-26,0,-4.4,-1.8,0 -"718",1179,2,6,8,10,2,0,-26,0,-4.4,-1.8,0 -"719",1180,2,1,0,2,2,0,15,1,1.2,1,-4 -"720",1180,2,2,2,3,1,0,15,1,1.2,1,-4 -"721",1180,2,3,3,5.86312076853725,2.86312076853725,0,15,1,1.2,1,-4 -"722",1181,2,1,0,0.332541986746162,0.332541986746162,1,-4,0,-1.6,0.199999999999999,6 -"723",1182,2,1,0,1.89504675229294,1.89504675229294,1,-15,1,-0.399999999999999,0,5 -"724",1183,2,1,0,2,2,0,-14,1,-4,-0.5,10 -"725",1183,2,2,2,3,1,0,-14,1,-4,-0.5,10 -"726",1183,2,3,3,4.60935163515512,1.60935163515512,0,-14,1,-4,-0.5,10 -"727",1184,2,1,0,1.00222621985605,1.00222621985605,1,17,1,0.600000000000001,0.399999999999999,3 -"728",1185,2,1,0,2,2,0,-7,1,-5.2,0.800000000000001,5 -"729",1185,2,2,2,2.37126515652695,0.371265156526952,0,-7,1,-5.2,0.800000000000001,5 -"730",1186,2,1,0,2,2,0,-2,1,1.3,-2,3 -"731",1186,2,2,2,3,1,0,-2,1,1.3,-2,3 -"732",1186,2,3,3,6,3,0,-2,1,1.3,-2,3 -"733",1186,2,4,6,6.5,0.5,0,-2,1,1.3,-2,3 -"734",1186,2,5,6.5,8,1.5,0,-2,1,1.3,-2,3 -"735",1186,2,6,8,10,2,0,-2,1,1.3,-2,3 -"736",1187,2,1,0,0.126410077941238,0.126410077941238,1,21,0,-0.899999999999999,0.899999999999999,-3 -"737",1188,2,1,0,2,2,0,-14,0,-7.5,-1.9,-1 -"738",1188,2,2,2,2.1918008635504,0.191800863550403,0,-14,0,-7.5,-1.9,-1 -"739",1189,2,1,0,1.5367220308944,1.5367220308944,1,-12,1,5.5,-0.5,2 -"740",1190,2,1,0,2,2,0,-21,0,-0.399999999999999,-1.2,6 -"741",1190,2,2,2,3,1,0,-21,0,-0.399999999999999,-1.2,6 -"742",1190,2,3,3,6,3,0,-21,0,-0.399999999999999,-1.2,6 -"743",1190,2,4,6,6.5,0.5,0,-21,0,-0.399999999999999,-1.2,6 -"744",1190,2,5,6.5,8,1.5,0,-21,0,-0.399999999999999,-1.2,6 -"745",1190,2,6,8,8.53732632523398,0.537326325233983,0,-21,0,-0.399999999999999,-1.2,6 -"746",1191,2,1,0,2,2,0,-12,0,-5.9,-2,0 -"747",1191,2,2,2,2.03990514647238,0.0399051464723808,0,-12,0,-5.9,-2,0 -"748",1192,2,1,0,1.28640041105109,1.28640041105109,1,-8,1,7,0.100000000000001,6 -"749",1193,2,1,0,0.380860661614955,0.380860661614955,0,-18,0,6.4,-1.3,3 -"750",1194,2,1,0,0.448530375194502,0.448530375194502,1,2,0,5.9,0.399999999999999,-1 -"751",1195,2,1,0,2,2,0,-1,1,1.2,0.5,1 -"752",1195,2,2,2,3,1,0,-1,1,1.2,0.5,1 -"753",1195,2,3,3,6,3,0,-1,1,1.2,0.5,1 -"754",1195,2,4,6,6.5,0.5,0,-1,1,1.2,0.5,1 -"755",1195,2,5,6.5,8,1.5,0,-1,1,1.2,0.5,1 -"756",1195,2,6,8,9.46332009134815,1.46332009134815,1,-1,1,1.2,0.5,1 -"757",1196,2,1,0,0.63535859862796,0.63535859862796,1,-18,0,11.2,0,5 -"758",1197,2,1,0,1.0910942951694,1.0910942951694,1,-22,0,5.2,-0.699999999999999,1 -"759",1198,2,1,0,2,2,0,-1,1,-2.7,-0.0999999999999996,-3 -"760",1198,2,2,2,2.6083917447222,0.608391744722197,0,-1,1,-2.7,-0.0999999999999996,-3 -"761",1199,2,1,0,1.29205873581637,1.29205873581637,0,0,1,1.5,-0.300000000000001,0 -"762",1200,2,1,0,2,2,0,5,0,3.7,-0.0999999999999996,4 -"763",1200,2,2,2,3,1,0,5,0,3.7,-0.0999999999999996,4 -"764",1200,2,3,3,3.20649280185143,0.206492801851434,0,5,0,3.7,-0.0999999999999996,4 -"765",1201,2,1,0,1.54669564223066,1.54669564223066,1,-19,0,-0.200000000000003,1.3,6 -"766",1202,2,1,0,2,2,0,20,0,-2.4,-0.800000000000001,1 -"767",1202,2,2,2,3,1,0,20,0,-2.4,-0.800000000000001,1 -"768",1202,2,3,3,5.70141161492543,2.70141161492543,0,20,0,-2.4,-0.800000000000001,1 -"769",1203,2,1,0,2,2,0,-19,0,2,1.6,1 -"770",1203,2,2,2,3,1,0,-19,0,2,1.6,1 -"771",1203,2,3,3,3.86306608193605,0.863066081936054,0,-19,0,2,1.6,1 -"772",1204,2,1,0,1.08968839759261,1.08968839759261,0,2,0,1.9,-1.2,1 -"773",1205,2,1,0,1.95596562819542,1.95596562819542,1,5,1,-1.3,0.899999999999999,-3 -"774",1206,2,1,0,0.39470791643273,0.39470791643273,1,-2,1,-3.3,1.1,9 -"775",1207,2,1,0,0.751189171188744,0.751189171188744,1,10,0,8,-0.300000000000001,-5 -"776",1208,2,1,0,0.105682618217666,0.105682618217666,0,0,1,3.7,1.1,-5 -"777",1209,2,1,0,1.14769554691156,1.14769554691156,0,12,1,-0.5,0,-4 -"778",1210,2,1,0,2,2,0,-18,0,-8,1.1,1 -"779",1210,2,2,2,3,1,0,-18,0,-8,1.1,1 -"780",1210,2,3,3,6,3,0,-18,0,-8,1.1,1 -"781",1210,2,4,6,6.42008736774111,0.420087367741106,1,-18,0,-8,1.1,1 -"782",1211,2,1,0,0.188728412722921,0.188728412722921,1,-13,0,-2.5,1.9,4 -"783",1212,2,1,0,2,2,0,-14,0,3.6,-0.0999999999999996,0 -"784",1212,2,2,2,3,1,0,-14,0,3.6,-0.0999999999999996,0 -"785",1212,2,3,3,6,3,0,-14,0,3.6,-0.0999999999999996,0 -"786",1212,2,4,6,6.19468465388913,0.194684653889129,1,-14,0,3.6,-0.0999999999999996,0 -"787",1213,2,1,0,1.21610163006938,1.21610163006938,0,-10,0,0.299999999999997,-0.4,0 -"788",1214,2,1,0,0.259653897311779,0.259653897311779,1,24,0,5.3,0.199999999999999,-4 -"789",1215,2,1,0,1.1569722682119,1.1569722682119,1,8,1,-3.9,0.300000000000001,-1 -"790",1216,2,1,0,0.362521141777575,0.362521141777575,0,9,0,-2.1,0.199999999999999,-4 -"791",1217,2,1,0,2,2,0,-4,1,-5.5,0.899999999999999,-5 -"792",1217,2,2,2,3,1,0,-4,1,-5.5,0.899999999999999,-5 -"793",1217,2,3,3,6,3,0,-4,1,-5.5,0.899999999999999,-5 -"794",1217,2,4,6,6.5,0.5,0,-4,1,-5.5,0.899999999999999,-5 -"795",1217,2,5,6.5,7.89329436750641,1.39329436750641,0,-4,1,-5.5,0.899999999999999,-5 -"796",1218,2,1,0,0.377183421954128,0.377183421954128,0,11,1,6.5,-0.0999999999999996,0 -"797",1219,2,1,0,2,2,0,0,0,-2.8,0.300000000000001,-6 -"798",1219,2,2,2,3,1,0,0,0,-2.8,0.300000000000001,-6 -"799",1219,2,3,3,6,3,0,0,0,-2.8,0.300000000000001,-6 -"800",1219,2,4,6,6.5,0.5,0,0,0,-2.8,0.300000000000001,-6 -"801",1219,2,5,6.5,8,1.5,0,0,0,-2.8,0.300000000000001,-6 -"802",1219,2,6,8,8.02509117448629,0.02509117448629,1,0,0,-2.8,0.300000000000001,-6 -"803",1220,2,1,0,2,2,0,13,1,1.6,0.199999999999999,-6 -"804",1220,2,2,2,3,1,0,13,1,1.6,0.199999999999999,-6 -"805",1220,2,3,3,6,3,0,13,1,1.6,0.199999999999999,-6 -"806",1220,2,4,6,6.5,0.5,0,13,1,1.6,0.199999999999999,-6 -"807",1220,2,5,6.5,8,1.5,0,13,1,1.6,0.199999999999999,-6 -"808",1220,2,6,8,8.64471298417514,0.644712984175139,0,13,1,1.6,0.199999999999999,-6 -"809",1221,2,1,0,0.453766691548884,0.453766691548884,1,9,0,-1.8,1.5,-2 -"810",1222,2,1,0,0.457231994012145,0.457231994012145,1,10,0,2.5,0.300000000000001,-3 -"811",1223,2,1,0,2,2,0,-5,0,-0.100000000000001,-0.800000000000001,2 -"812",1223,2,2,2,3,1,0,-5,0,-0.100000000000001,-0.800000000000001,2 -"813",1223,2,3,3,6,3,0,-5,0,-0.100000000000001,-0.800000000000001,2 -"814",1223,2,4,6,6.5,0.5,0,-5,0,-0.100000000000001,-0.800000000000001,2 -"815",1223,2,5,6.5,8,1.5,0,-5,0,-0.100000000000001,-0.800000000000001,2 -"816",1223,2,6,8,10,2,0,-5,0,-0.100000000000001,-0.800000000000001,2 -"817",1224,2,1,0,2,2,0,-45,1,-3.2,1.4,-5 -"818",1224,2,2,2,3,1,0,-45,1,-3.2,1.4,-5 -"819",1224,2,3,3,6,3,0,-45,1,-3.2,1.4,-5 -"820",1224,2,4,6,6.5,0.5,0,-45,1,-3.2,1.4,-5 -"821",1224,2,5,6.5,7.68294960515292,1.18294960515292,0,-45,1,-3.2,1.4,-5 -"822",1225,2,1,0,2,2,0,-15,1,1.2,-0.4,-4 -"823",1225,2,2,2,3,1,0,-15,1,1.2,-0.4,-4 -"824",1225,2,3,3,4.61281129402058,1.61281129402058,0,-15,1,1.2,-0.4,-4 -"825",1226,2,1,0,2,2,0,-35,0,9.59999999999999,-0.300000000000001,2 -"826",1226,2,2,2,3,1,0,-35,0,9.59999999999999,-0.300000000000001,2 -"827",1226,2,3,3,6,3,0,-35,0,9.59999999999999,-0.300000000000001,2 -"828",1226,2,4,6,6.5,0.5,0,-35,0,9.59999999999999,-0.300000000000001,2 -"829",1226,2,5,6.5,8,1.5,0,-35,0,9.59999999999999,-0.300000000000001,2 -"830",1226,2,6,8,10,2,0,-35,0,9.59999999999999,-0.300000000000001,2 -"831",1227,2,1,0,2,2,0,4,1,2.9,-0.5,-2 -"832",1227,2,2,2,2.30646605885717,0.306466058857174,0,4,1,2.9,-0.5,-2 -"833",1228,2,1,0,2,2,0,2,1,-1.4,-1.1,1 -"834",1228,2,2,2,3,1,0,2,1,-1.4,-1.1,1 -"835",1228,2,3,3,6,3,0,2,1,-1.4,-1.1,1 -"836",1228,2,4,6,6.26289964935877,0.262899649358769,0,2,1,-1.4,-1.1,1 -"837",1229,2,1,0,2,2,0,17,0,1.3,0.600000000000001,-12 -"838",1229,2,2,2,3,1,0,17,0,1.3,0.600000000000001,-12 -"839",1229,2,3,3,4.27241519376258,1.27241519376258,0,17,0,1.3,0.600000000000001,-12 -"840",1230,2,1,0,0.549054350485644,0.549054350485644,1,23,1,3.1,0.5,11 -"841",1231,2,1,0,2,2,0,-12,1,3.4,0.5,-1 -"842",1231,2,2,2,3,1,0,-12,1,3.4,0.5,-1 -"843",1231,2,3,3,4.07091911167707,1.07091911167707,0,-12,1,3.4,0.5,-1 -"844",1232,2,1,0,0.224202787055789,0.224202787055789,0,20,1,1.3,0.199999999999999,9 -"845",1233,2,1,0,2,2,0,-7,0,3,-0.4,-6 -"846",1233,2,2,2,3,1,0,-7,0,3,-0.4,-6 -"847",1233,2,3,3,6,3,0,-7,0,3,-0.4,-6 -"848",1233,2,4,6,6.5,0.5,0,-7,0,3,-0.4,-6 -"849",1233,2,5,6.5,8,1.5,0,-7,0,3,-0.4,-6 -"850",1233,2,6,8,9.03358285076168,1.03358285076168,0,-7,0,3,-0.4,-6 -"851",1234,2,1,0,0.0679284256998996,0.0679284256998996,0,-14,1,0.5,0.399999999999999,2 -"852",1235,2,1,0,2,2,0,-1,1,-2.9,-0.4,4 -"853",1235,2,2,2,2.53739154560015,0.537391545600152,1,-1,1,-2.9,-0.4,4 -"854",1236,2,1,0,1.06829946755308,1.06829946755308,1,5,0,-6.9,1.3,9 -"855",1237,2,1,0,2,2,0,-12,1,1.6,-0.4,6 -"856",1237,2,2,2,3,1,0,-12,1,1.6,-0.4,6 -"857",1237,2,3,3,6,3,0,-12,1,1.6,-0.4,6 -"858",1237,2,4,6,6.5,0.5,0,-12,1,1.6,-0.4,6 -"859",1237,2,5,6.5,8,1.5,0,-12,1,1.6,-0.4,6 -"860",1237,2,6,8,10,2,0,-12,1,1.6,-0.4,6 -"861",1238,2,1,0,2,2,0,-16,0,-6.3,0.399999999999999,11 -"862",1238,2,2,2,3,1,0,-16,0,-6.3,0.399999999999999,11 -"863",1238,2,3,3,6,3,0,-16,0,-6.3,0.399999999999999,11 -"864",1238,2,4,6,6.5,0.5,0,-16,0,-6.3,0.399999999999999,11 -"865",1238,2,5,6.5,8,1.5,0,-16,0,-6.3,0.399999999999999,11 -"866",1238,2,6,8,9.64757314373553,1.64757314373553,1,-16,0,-6.3,0.399999999999999,11 -"867",1239,2,1,0,2,2,0,-23,1,1.1,-2.1,1 -"868",1239,2,2,2,3,1,0,-23,1,1.1,-2.1,1 -"869",1239,2,3,3,6,3,0,-23,1,1.1,-2.1,1 -"870",1239,2,4,6,6.5,0.5,0,-23,1,1.1,-2.1,1 -"871",1239,2,5,6.5,8,1.5,0,-23,1,1.1,-2.1,1 -"872",1239,2,6,8,9.71139920669227,1.71139920669227,0,-23,1,1.1,-2.1,1 -"873",1240,2,1,0,2,2,0,3,1,0.299999999999997,0.899999999999999,-3 -"874",1240,2,2,2,3,1,0,3,1,0.299999999999997,0.899999999999999,-3 -"875",1240,2,3,3,4.20251447520382,1.20251447520382,0,3,1,0.299999999999997,0.899999999999999,-3 -"876",1241,2,1,0,0.509770966282016,0.509770966282016,1,24,1,4.4,-0.5,0 -"877",1242,2,1,0,0.554027459309487,0.554027459309487,0,1,1,4.8,0,5 -"878",1243,2,1,0,1.25233940540096,1.25233940540096,1,23,1,0.299999999999997,-0.699999999999999,-1 -"879",1244,2,1,0,0.303999899959234,0.303999899959234,1,-4,0,-9.3,-0.199999999999999,10 -"880",1245,2,1,0,0.484569175530075,0.484569175530075,1,5,0,3.8,0.100000000000001,-2 -"881",1246,2,1,0,2,2,0,-9,0,1.1,0.5,2 -"882",1246,2,2,2,3,1,0,-9,0,1.1,0.5,2 -"883",1246,2,3,3,6,3,0,-9,0,1.1,0.5,2 -"884",1246,2,4,6,6.5,0.5,0,-9,0,1.1,0.5,2 -"885",1246,2,5,6.5,7.73660857597664,1.23660857597664,0,-9,0,1.1,0.5,2 -"886",1247,2,1,0,2,2,0,-22,0,-8.3,-1,4 -"887",1247,2,2,2,3,1,0,-22,0,-8.3,-1,4 -"888",1247,2,3,3,6,3,0,-22,0,-8.3,-1,4 -"889",1247,2,4,6,6.5,0.5,0,-22,0,-8.3,-1,4 -"890",1247,2,5,6.5,7.11995358280769,0.61995358280769,0,-22,0,-8.3,-1,4 -"891",1248,2,1,0,0.854680992924235,0.854680992924235,0,-3,0,5,-0.9,-12 -"892",1249,2,1,0,2,2,0,-4,1,4.7,0.199999999999999,-15 -"893",1249,2,2,2,2.53596738814112,0.535967388141117,1,-4,1,4.7,0.199999999999999,-15 -"894",1250,2,1,0,0.346721358170907,0.346721358170907,1,4,0,0.399999999999999,1.4,1 -"895",1251,2,1,0,1.9226962354864,1.9226962354864,1,9,0,0,0.600000000000001,-3 -"896",1252,2,1,0,0.955904160453949,0.955904160453949,1,13,1,0.399999999999999,0,-2 -"897",1253,2,1,0,0.638451359082921,0.638451359082921,1,16,0,-4.9,1.4,7 -"898",1254,2,1,0,2,2,0,-8,1,0,1,-4 -"899",1254,2,2,2,3,1,0,-8,1,0,1,-4 -"900",1254,2,3,3,5.0740915846226,2.0740915846226,1,-8,1,0,1,-4 -"901",1255,2,1,0,1.22652732729498,1.22652732729498,1,19,0,6.7,0.399999999999999,-3 -"902",1256,2,1,0,2,2,0,0,1,-6,-0.800000000000001,-9 -"903",1256,2,2,2,2.78760513235398,0.78760513235398,0,0,1,-6,-0.800000000000001,-9 -"904",1257,2,1,0,2,2,0,-33,0,3.6,1,3 -"905",1257,2,2,2,3,1,0,-33,0,3.6,1,3 -"906",1257,2,3,3,6,3,0,-33,0,3.6,1,3 -"907",1257,2,4,6,6.5,0.5,0,-33,0,3.6,1,3 -"908",1257,2,5,6.5,7.49325310989323,0.993253109893226,0,-33,0,3.6,1,3 -"909",1258,2,1,0,2,2,0,1,0,6.1,0.399999999999999,3 -"910",1258,2,2,2,3,1,0,1,0,6.1,0.399999999999999,3 -"911",1258,2,3,3,6,3,0,1,0,6.1,0.399999999999999,3 -"912",1258,2,4,6,6.18412197931749,0.184121979317491,1,1,0,6.1,0.399999999999999,3 -"913",1259,2,1,0,0.326423334285255,0.326423334285255,1,44,1,8.59999999999999,-0.300000000000001,-3 -"914",1260,2,1,0,0.874851115223603,0.874851115223603,1,-25,0,-3.3,1.9,2 -"915",1261,2,1,0,2,2,0,-11,1,2.2,-0.300000000000001,0 -"916",1261,2,2,2,3,1,0,-11,1,2.2,-0.300000000000001,0 -"917",1261,2,3,3,6,3,0,-11,1,2.2,-0.300000000000001,0 -"918",1261,2,4,6,6.5,0.5,0,-11,1,2.2,-0.300000000000001,0 -"919",1261,2,5,6.5,6.56237005059952,0.062370050599515,0,-11,1,2.2,-0.300000000000001,0 -"920",1262,2,1,0,2,2,0,-6,0,-5.9,-2.8,-3 -"921",1262,2,2,2,3,1,0,-6,0,-5.9,-2.8,-3 -"922",1262,2,3,3,6,3,0,-6,0,-5.9,-2.8,-3 -"923",1262,2,4,6,6.5,0.5,0,-6,0,-5.9,-2.8,-3 -"924",1262,2,5,6.5,7.19171909493838,0.691719094938383,1,-6,0,-5.9,-2.8,-3 -"925",1263,2,1,0,2,2,0,-19,1,0.100000000000001,0.199999999999999,0 -"926",1263,2,2,2,3,1,0,-19,1,0.100000000000001,0.199999999999999,0 -"927",1263,2,3,3,6,3,0,-19,1,0.100000000000001,0.199999999999999,0 -"928",1263,2,4,6,6.5,0.5,0,-19,1,0.100000000000001,0.199999999999999,0 -"929",1263,2,5,6.5,7.87653444026486,1.37653444026486,0,-19,1,0.100000000000001,0.199999999999999,0 -"930",1264,2,1,0,2,2,0,-37,0,8.3,-0.800000000000001,0 -"931",1264,2,2,2,2.06570778162462,0.0657077816246217,1,-37,0,8.3,-0.800000000000001,0 -"932",1265,2,1,0,2,2,0,-14,1,0.600000000000001,0.399999999999999,3 -"933",1265,2,2,2,2.32652212611721,0.326522126117209,0,-14,1,0.600000000000001,0.399999999999999,3 -"934",1266,2,1,0,1.36937639594812,1.36937639594812,1,1,0,3.4,-1.1,-2 -"935",1267,2,1,0,1.94843917135739,1.94843917135739,0,3,1,1.7,0.5,-5 -"936",1268,2,1,0,0.00777767185116363,0.00777767185116363,1,5,1,4.6,0.399999999999999,3 -"937",1269,2,1,0,0.246036749367798,0.246036749367798,1,-17,1,0.299999999999997,-0.0999999999999996,10 -"938",1270,2,1,0,2,2,0,-15,1,-2.6,-0.6,6 -"939",1270,2,2,2,3,1,0,-15,1,-2.6,-0.6,6 -"940",1270,2,3,3,4.97247408380036,1.97247408380036,0,-15,1,-2.6,-0.6,6 -"941",1271,2,1,0,1.52377477553946,1.52377477553946,1,0,1,6.1,0.100000000000001,1 -"942",1272,2,1,0,1.65427972302302,1.65427972302302,1,5,1,4.1,0.5,-4 -"943",1273,2,1,0,0.0446553775183033,0.0446553775183033,1,20,1,0.5,-1.9,6 -"944",1274,2,1,0,2,2,0,-17,1,-0.799999999999997,-1.1,6 -"945",1274,2,2,2,3,1,0,-17,1,-0.799999999999997,-1.1,6 -"946",1274,2,3,3,6,3,0,-17,1,-0.799999999999997,-1.1,6 -"947",1274,2,4,6,6.34551440232694,0.345514402326939,0,-17,1,-0.799999999999997,-1.1,6 -"948",1275,2,1,0,2,2,0,-14,1,-9.6,-0.9,-7 -"949",1275,2,2,2,3,1,0,-14,1,-9.6,-0.9,-7 -"950",1275,2,3,3,6,3,0,-14,1,-9.6,-0.9,-7 -"951",1275,2,4,6,6.5,0.5,0,-14,1,-9.6,-0.9,-7 -"952",1275,2,5,6.5,8,1.5,0,-14,1,-9.6,-0.9,-7 -"953",1275,2,6,8,10,2,0,-14,1,-9.6,-0.9,-7 -"954",1276,2,1,0,2,2,0,-35,0,-4.7,1.1,3 -"955",1276,2,2,2,3,1,0,-35,0,-4.7,1.1,3 -"956",1276,2,3,3,6,3,0,-35,0,-4.7,1.1,3 -"957",1276,2,4,6,6.5,0.5,0,-35,0,-4.7,1.1,3 -"958",1276,2,5,6.5,8,1.5,0,-35,0,-4.7,1.1,3 -"959",1276,2,6,8,10,2,0,-35,0,-4.7,1.1,3 -"960",1277,2,1,0,2,2,0,-18,0,3.7,0,-1 -"961",1277,2,2,2,3,1,0,-18,0,3.7,0,-1 -"962",1277,2,3,3,4.5238621753926,1.5238621753926,0,-18,0,3.7,0,-1 -"963",1278,2,1,0,2,2,0,10,1,12,-0.9,1 -"964",1278,2,2,2,3,1,0,10,1,12,-0.9,1 -"965",1278,2,3,3,6,3,0,10,1,12,-0.9,1 -"966",1278,2,4,6,6.5,0.5,0,10,1,12,-0.9,1 -"967",1278,2,5,6.5,7.15879856262606,0.658798562626057,0,10,1,12,-0.9,1 -"968",1279,2,1,0,2,2,0,-9,0,-1,-0.6,1 -"969",1279,2,2,2,3,1,0,-9,0,-1,-0.6,1 -"970",1279,2,3,3,6,3,0,-9,0,-1,-0.6,1 -"971",1279,2,4,6,6.5,0.5,0,-9,0,-1,-0.6,1 -"972",1279,2,5,6.5,8,1.5,0,-9,0,-1,-0.6,1 -"973",1279,2,6,8,8.32981425729257,0.329814257292566,0,-9,0,-1,-0.6,1 -"974",1280,2,1,0,0.108946137621162,0.108946137621162,0,-2,1,-6.9,-1.4,2 -"975",1281,2,1,0,2,2,0,2,0,2.1,-0.5,2 -"976",1281,2,2,2,3,1,0,2,0,2.1,-0.5,2 -"977",1281,2,3,3,6,3,0,2,0,2.1,-0.5,2 -"978",1281,2,4,6,6.5,0.5,0,2,0,2.1,-0.5,2 -"979",1281,2,5,6.5,8,1.5,0,2,0,2.1,-0.5,2 -"980",1281,2,6,8,8.30104208565832,0.301042085658321,0,2,0,2.1,-0.5,2 -"981",1282,2,1,0,1.74100264509816,1.74100264509816,1,6,0,4,1,-6 -"982",1283,2,1,0,2,2,0,-12,0,-1.2,0.600000000000001,-8 -"983",1283,2,2,2,3,1,0,-12,0,-1.2,0.600000000000001,-8 -"984",1283,2,3,3,6,3,0,-12,0,-1.2,0.600000000000001,-8 -"985",1283,2,4,6,6.5,0.5,0,-12,0,-1.2,0.600000000000001,-8 -"986",1283,2,5,6.5,8,1.5,0,-12,0,-1.2,0.600000000000001,-8 -"987",1283,2,6,8,10,2,0,-12,0,-1.2,0.600000000000001,-8 -"988",1284,2,1,0,1.51067336488544,1.51067336488544,1,-16,1,0,1.6,-1 -"989",1285,2,1,0,2,2,0,-14,1,2.6,-2,-2 -"990",1285,2,2,2,3,1,0,-14,1,2.6,-2,-2 -"991",1285,2,3,3,6,3,0,-14,1,2.6,-2,-2 -"992",1285,2,4,6,6.5,0.5,0,-14,1,2.6,-2,-2 -"993",1285,2,5,6.5,6.61613169755598,0.116131697555977,0,-14,1,2.6,-2,-2 -"994",1286,2,1,0,2,2,0,5,1,2.5,-0.5,8 -"995",1286,2,2,2,3,1,0,5,1,2.5,-0.5,8 -"996",1286,2,3,3,6,3,0,5,1,2.5,-0.5,8 -"997",1286,2,4,6,6.5,0.5,0,5,1,2.5,-0.5,8 -"998",1286,2,5,6.5,7.97092869623753,1.47092869623753,1,5,1,2.5,-0.5,8 -"999",1287,2,1,0,1.46265690015847,1.46265690015847,0,-16,0,1.7,-1,-9 -"1000",1288,2,1,0,1.50361975089946,1.50361975089946,1,19,1,3,-0.300000000000001,1 -"1001",1289,2,1,0,0.530178363687952,0.530178363687952,0,16,1,2.2,0.600000000000001,1 -"1002",1290,2,1,0,0.690453544074085,0.690453544074085,0,20,1,-2.8,-0.6,-4 -"1003",1291,2,1,0,1.61274976558091,1.61274976558091,1,1,0,2.9,-1.5,5 -"1004",1292,2,1,0,0.830359998782999,0.830359998782999,1,6,0,3.1,1.1,0 -"1005",1293,2,1,0,2,2,0,-8,0,5.3,-1.3,1 -"1006",1293,2,2,2,3,1,0,-8,0,5.3,-1.3,1 -"1007",1293,2,3,3,6,3,0,-8,0,5.3,-1.3,1 -"1008",1293,2,4,6,6.5,0.5,0,-8,0,5.3,-1.3,1 -"1009",1293,2,5,6.5,8,1.5,0,-8,0,5.3,-1.3,1 -"1010",1293,2,6,8,10,2,0,-8,0,5.3,-1.3,1 -"1011",1294,2,1,0,0.247982929522215,0.247982929522215,1,-3,1,0.200000000000003,-0.199999999999999,-1 -"1012",1295,2,1,0,2,2,0,30,1,-8.6,0,-12 -"1013",1295,2,2,2,3,1,0,30,1,-8.6,0,-12 -"1014",1295,2,3,3,6,3,0,30,1,-8.6,0,-12 -"1015",1295,2,4,6,6.5,0.5,0,30,1,-8.6,0,-12 -"1016",1295,2,5,6.5,8,1.5,0,30,1,-8.6,0,-12 -"1017",1295,2,6,8,9.9377618575423,1.9377618575423,0,30,1,-8.6,0,-12 -"1018",1296,2,1,0,2,2,0,8,1,1.7,-1.2,2 -"1019",1296,2,2,2,3,1,0,8,1,1.7,-1.2,2 -"1020",1296,2,3,3,3.95501371536444,0.955013715364443,0,8,1,1.7,-1.2,2 -"1021",1297,2,1,0,2,2,0,-1,1,-4.3,-0.6,6 -"1022",1297,2,2,2,2.41602617406581,0.416026174065809,0,-1,1,-4.3,-0.6,6 -"1023",1298,2,1,0,0.417085445804731,0.417085445804731,0,-4,1,-3.2,-1.5,9 -"1024",1299,2,1,0,0.453139922221632,0.453139922221632,0,9,1,-1.7,1.3,-2 -"1025",1300,2,1,0,2,2,0,7,1,2.2,-0.0999999999999996,-7 -"1026",1300,2,2,2,3,1,0,7,1,2.2,-0.0999999999999996,-7 -"1027",1300,2,3,3,5.06096801686358,2.06096801686358,0,7,1,2.2,-0.0999999999999996,-7 -"1028",1301,2,1,0,1.29064404736323,1.29064404736323,0,22,0,-2.4,-1,-15 -"1029",1302,2,1,0,0.720698673209629,0.720698673209629,0,-9,1,-1.4,-0.5,-6 -"1030",1303,2,1,0,0.369854406558231,0.369854406558231,0,5,0,0.200000000000003,0.899999999999999,-5 -"1031",1304,2,1,0,0.464266149611393,0.464266149611393,1,17,0,8.8,-0.699999999999999,2 -"1032",1305,2,1,0,2,2,0,-14,0,-1.1,-1,1 -"1033",1305,2,2,2,3,1,0,-14,0,-1.1,-1,1 -"1034",1305,2,3,3,6,3,0,-14,0,-1.1,-1,1 -"1035",1305,2,4,6,6.5,0.5,0,-14,0,-1.1,-1,1 -"1036",1305,2,5,6.5,8,1.5,0,-14,0,-1.1,-1,1 -"1037",1305,2,6,8,10,2,0,-14,0,-1.1,-1,1 -"1038",1306,2,1,0,1.60692575785383,1.60692575785383,1,1,1,5.6,-1.3,-3 -"1039",1307,2,1,0,1.9666199641675,1.9666199641675,1,23,1,-1.3,0.399999999999999,2 -"1040",1308,2,1,0,0.148563869496183,0.148563869496183,1,21,1,10.6,0.300000000000001,-1 -"1041",1309,2,1,0,2,2,0,14,1,-0.600000000000001,0.5,-4 -"1042",1309,2,2,2,3,1,0,14,1,-0.600000000000001,0.5,-4 -"1043",1309,2,3,3,6,3,0,14,1,-0.600000000000001,0.5,-4 -"1044",1309,2,4,6,6.5,0.5,0,14,1,-0.600000000000001,0.5,-4 -"1045",1309,2,5,6.5,8,1.5,0,14,1,-0.600000000000001,0.5,-4 -"1046",1309,2,6,8,8.1952153353847,0.195215335384704,0,14,1,-0.600000000000001,0.5,-4 -"1047",1310,2,1,0,2,2,0,-27,1,-4.4,0.800000000000001,-5 -"1048",1310,2,2,2,2.97563000293069,0.975630002930686,0,-27,1,-4.4,0.800000000000001,-5 -"1049",1311,2,1,0,1.38139669846069,1.38139669846069,1,-13,0,-0.5,-0.699999999999999,3 -"1050",1312,2,1,0,1.77087554943841,1.77087554943841,0,-25,1,2.9,-0.300000000000001,0 -"1051",1313,2,1,0,1.24071007736917,1.24071007736917,1,10,0,1.4,-0.4,-2 -"1052",1314,2,1,0,0.493215134564454,0.493215134564454,0,17,1,-3.8,-0.0999999999999996,-4 -"1053",1315,2,1,0,0.192226476803008,0.192226476803008,1,-19,0,1.8,1.2,9 -"1054",1316,2,1,0,2,2,0,-7,1,0.100000000000001,-0.800000000000001,10 -"1055",1316,2,2,2,3,1,0,-7,1,0.100000000000001,-0.800000000000001,10 -"1056",1316,2,3,3,4.18660487524441,1.18660487524441,0,-7,1,0.100000000000001,-0.800000000000001,10 -"1057",1317,2,1,0,0.251403314154105,0.251403314154105,1,8,1,-5.9,2.6,-2 -"1058",1318,2,1,0,0.104111109062193,0.104111109062193,1,28,0,-8.1,2.1,2 -"1059",1319,2,1,0,1.67955645707509,1.67955645707509,0,-10,1,-3.6,-1.4,-3 -"1060",1320,2,1,0,0.962541580724237,0.962541580724237,1,15,0,-1.7,-0.5,4 -"1061",1321,2,1,0,1.82746030562596,1.82746030562596,1,-32,0,2.1,-0.0999999999999996,8 -"1062",1322,2,1,0,2,2,0,-9,0,5.9,-0.699999999999999,-1 -"1063",1322,2,2,2,3,1,0,-9,0,5.9,-0.699999999999999,-1 -"1064",1322,2,3,3,6,3,0,-9,0,5.9,-0.699999999999999,-1 -"1065",1322,2,4,6,6.41218577356817,0.412185773568171,0,-9,0,5.9,-0.699999999999999,-1 -"1066",1323,2,1,0,2,2,0,-29,1,4.8,1,2 -"1067",1323,2,2,2,3,1,0,-29,1,4.8,1,2 -"1068",1323,2,3,3,6,3,0,-29,1,4.8,1,2 -"1069",1323,2,4,6,6.5,0.5,0,-29,1,4.8,1,2 -"1070",1323,2,5,6.5,7.84156579837324,1.34156579837324,0,-29,1,4.8,1,2 -"1071",1324,2,1,0,0.18937357798626,0.18937357798626,1,28,0,-2.4,0.5,3 -"1072",1325,2,1,0,0.748070318476395,0.748070318476395,1,-1,0,-8,1.7,5 -"1073",1326,2,1,0,2,2,0,-15,0,-0.299999999999997,-0.6,-5 -"1074",1326,2,2,2,3,1,0,-15,0,-0.299999999999997,-0.6,-5 -"1075",1326,2,3,3,6,3,0,-15,0,-0.299999999999997,-0.6,-5 -"1076",1326,2,4,6,6.5,0.5,0,-15,0,-0.299999999999997,-0.6,-5 -"1077",1326,2,5,6.5,8,1.5,0,-15,0,-0.299999999999997,-0.6,-5 -"1078",1326,2,6,8,10,2,0,-15,0,-0.299999999999997,-0.6,-5 -"1079",1327,2,1,0,0.725269303925157,0.725269303925157,0,12,0,-2.4,0.800000000000001,-9 -"1080",1328,2,1,0,1.78089538909567,1.78089538909567,0,9,1,-4,1.4,-4 -"1081",1329,2,1,0,0.169522574107955,0.169522574107955,1,-5,0,-0.399999999999999,1.6,-1 -"1082",1330,2,1,0,2,2,0,6,1,1.6,-1,4 -"1083",1330,2,2,2,3,1,0,6,1,1.6,-1,4 -"1084",1330,2,3,3,6,3,0,6,1,1.6,-1,4 -"1085",1330,2,4,6,6.19676042162617,0.196760421626169,0,6,1,1.6,-1,4 -"1086",1331,2,1,0,0.0880558943025384,0.0880558943025384,0,2,0,-2,1.6,1 -"1087",1332,2,1,0,1.54802299362324,1.54802299362324,1,21,1,-4,0,-4 -"1088",1333,2,1,0,0.652350365551151,0.652350365551151,1,-2,0,3.3,-0.699999999999999,-2 -"1089",1334,2,1,0,1.35704518617396,1.35704518617396,0,-10,1,3.5,-0.800000000000001,-1 -"1090",1335,2,1,0,1.80749637940498,1.80749637940498,0,-1,0,0.5,0.100000000000001,-6 -"1091",1336,2,1,0,2,2,0,-7,0,2.9,-1.2,-4 -"1092",1336,2,2,2,3,1,0,-7,0,2.9,-1.2,-4 -"1093",1336,2,3,3,6,3,0,-7,0,2.9,-1.2,-4 -"1094",1336,2,4,6,6.5,0.5,0,-7,0,2.9,-1.2,-4 -"1095",1336,2,5,6.5,8,1.5,0,-7,0,2.9,-1.2,-4 -"1096",1336,2,6,8,10,2,0,-7,0,2.9,-1.2,-4 -"1097",1337,2,1,0,1.0285260725771,1.0285260725771,0,-10,1,-2.1,0,7 -"1098",1338,2,1,0,0.327049569387623,0.327049569387623,0,9,1,-3.3,-2.2,-1 -"1099",1339,2,1,0,2,2,0,-5,1,0.799999999999997,-0.5,3 -"1100",1339,2,2,2,3,1,0,-5,1,0.799999999999997,-0.5,3 -"1101",1339,2,3,3,6,3,0,-5,1,0.799999999999997,-0.5,3 -"1102",1339,2,4,6,6.5,0.5,0,-5,1,0.799999999999997,-0.5,3 -"1103",1339,2,5,6.5,7.31008507971826,0.810085079718255,1,-5,1,0.799999999999997,-0.5,3 -"1104",1340,2,1,0,2,2,0,-18,0,4.4,0.5,-3 -"1105",1340,2,2,2,3,1,0,-18,0,4.4,0.5,-3 -"1106",1340,2,3,3,6,3,0,-18,0,4.4,0.5,-3 -"1107",1340,2,4,6,6.05404043756377,0.0540404375637732,0,-18,0,4.4,0.5,-3 -"1108",1341,2,1,0,2,2,0,-10,0,0.299999999999997,0.300000000000001,-1 -"1109",1341,2,2,2,3,1,0,-10,0,0.299999999999997,0.300000000000001,-1 -"1110",1341,2,3,3,6,3,0,-10,0,0.299999999999997,0.300000000000001,-1 -"1111",1341,2,4,6,6.06219395747146,0.0621939574714563,0,-10,0,0.299999999999997,0.300000000000001,-1 -"1112",1342,2,1,0,0.92154823672938,0.92154823672938,0,-22,1,-4.5,-0.699999999999999,3 -"1113",1343,2,1,0,2,2,0,-13,0,5.1,0,-12 -"1114",1343,2,2,2,3,1,0,-13,0,5.1,0,-12 -"1115",1343,2,3,3,5.41577971525942,2.41577971525942,0,-13,0,5.1,0,-12 -"1116",1344,2,1,0,2,2,0,-6,0,-5.8,-0.5,4 -"1117",1344,2,2,2,3,1,0,-6,0,-5.8,-0.5,4 -"1118",1344,2,3,3,6,3,0,-6,0,-5.8,-0.5,4 -"1119",1344,2,4,6,6.5,0.5,0,-6,0,-5.8,-0.5,4 -"1120",1344,2,5,6.5,7.12190020512302,0.621900205123016,1,-6,0,-5.8,-0.5,4 -"1121",1345,2,1,0,2,2,0,-9,1,0.299999999999997,0.5,1 -"1122",1345,2,2,2,2.18682997110909,0.186829971109095,0,-9,1,0.299999999999997,0.5,1 -"1123",1346,2,1,0,0.0721061239702687,0.0721061239702687,0,12,0,-0.200000000000003,1.7,-6 -"1124",1347,2,1,0,0.661031478404967,0.661031478404967,0,-1,0,7.1,-0.300000000000001,3 -"1125",1348,2,1,0,0.745451226646672,0.745451226646672,0,17,1,2.4,-0.300000000000001,3 -"1126",1349,2,1,0,0.437359316971495,0.437359316971495,1,24,1,-5.2,-1.2,2 -"1127",1350,2,1,0,2,2,0,9,0,-2.7,-1,-6 -"1128",1350,2,2,2,3,1,0,9,0,-2.7,-1,-6 -"1129",1350,2,3,3,6,3,0,9,0,-2.7,-1,-6 -"1130",1350,2,4,6,6.5,0.5,0,9,0,-2.7,-1,-6 -"1131",1350,2,5,6.5,8,1.5,0,9,0,-2.7,-1,-6 -"1132",1350,2,6,8,10,2,0,9,0,-2.7,-1,-6 -"1133",1351,2,1,0,2,2,0,1,1,1.9,-1.6,-1 -"1134",1351,2,2,2,3,1,0,1,1,1.9,-1.6,-1 -"1135",1351,2,3,3,3.62622553514881,0.626225535148806,0,1,1,1.9,-1.6,-1 -"1136",1352,2,1,0,0.494900865585638,0.494900865585638,1,-10,1,-5.3,1.2,5 -"1137",1353,2,1,0,2,2,0,14,1,2.2,0.100000000000001,-2 -"1138",1353,2,2,2,3,1,0,14,1,2.2,0.100000000000001,-2 -"1139",1353,2,3,3,6,3,0,14,1,2.2,0.100000000000001,-2 -"1140",1353,2,4,6,6.5,0.5,0,14,1,2.2,0.100000000000001,-2 -"1141",1353,2,5,6.5,8,1.5,0,14,1,2.2,0.100000000000001,-2 -"1142",1353,2,6,8,10,2,0,14,1,2.2,0.100000000000001,-2 -"1143",1354,2,1,0,2,2,0,0,0,1.6,-0.6,0 -"1144",1354,2,2,2,3,1,0,0,0,1.6,-0.6,0 -"1145",1354,2,3,3,5.16623190591837,2.16623190591837,0,0,0,1.6,-0.6,0 -"1146",1355,2,1,0,2,2,0,13,1,-3.2,-0.800000000000001,-12 -"1147",1355,2,2,2,3,1,0,13,1,-3.2,-0.800000000000001,-12 -"1148",1355,2,3,3,6,3,0,13,1,-3.2,-0.800000000000001,-12 -"1149",1355,2,4,6,6.5,0.5,0,13,1,-3.2,-0.800000000000001,-12 -"1150",1355,2,5,6.5,8,1.5,0,13,1,-3.2,-0.800000000000001,-12 -"1151",1355,2,6,8,10,2,0,13,1,-3.2,-0.800000000000001,-12 -"1152",1356,2,1,0,0.130859200648476,0.130859200648476,0,6,1,-2.7,0.5,2 -"1153",1357,2,1,0,2,2,0,-25,1,-5.3,0.800000000000001,5 -"1154",1357,2,2,2,3,1,0,-25,1,-5.3,0.800000000000001,5 -"1155",1357,2,3,3,6,3,0,-25,1,-5.3,0.800000000000001,5 -"1156",1357,2,4,6,6.5,0.5,0,-25,1,-5.3,0.800000000000001,5 -"1157",1357,2,5,6.5,8,1.5,0,-25,1,-5.3,0.800000000000001,5 -"1158",1357,2,6,8,8.1536886238844,0.153688623884398,0,-25,1,-5.3,0.800000000000001,5 -"1159",1358,2,1,0,2,2,0,-10,0,10.8,0.5,-2 -"1160",1358,2,2,2,3,1,0,-10,0,10.8,0.5,-2 -"1161",1358,2,3,3,6,3,0,-10,0,10.8,0.5,-2 -"1162",1358,2,4,6,6.5,0.5,0,-10,0,10.8,0.5,-2 -"1163",1358,2,5,6.5,8,1.5,0,-10,0,10.8,0.5,-2 -"1164",1358,2,6,8,10,2,0,-10,0,10.8,0.5,-2 -"1165",1359,2,1,0,0.158305604744915,0.158305604744915,1,22,0,-4.5,2.3,7 -"1166",1360,2,1,0,1.86058672219489,1.86058672219489,1,-34,0,-1.5,1.3,0 -"1167",1361,2,1,0,1.84342215893564,1.84342215893564,1,12,0,5.4,0.199999999999999,3 -"1168",1362,2,1,0,0.66893554369593,0.66893554369593,1,24,0,-2,-1.6,-1 -"1169",1363,2,1,0,2,2,0,11,0,5.6,-0.699999999999999,4 -"1170",1363,2,2,2,2.36171301392602,0.36171301392602,1,11,0,5.6,-0.699999999999999,4 -"1171",1364,2,1,0,2,2,0,5,1,0.700000000000003,0.199999999999999,-1 -"1172",1364,2,2,2,3,1,0,5,1,0.700000000000003,0.199999999999999,-1 -"1173",1364,2,3,3,6,3,0,5,1,0.700000000000003,0.199999999999999,-1 -"1174",1364,2,4,6,6.5,0.5,0,5,1,0.700000000000003,0.199999999999999,-1 -"1175",1364,2,5,6.5,8,1.5,0,5,1,0.700000000000003,0.199999999999999,-1 -"1176",1364,2,6,8,10,2,0,5,1,0.700000000000003,0.199999999999999,-1 -"1177",1365,2,1,0,0.755778362215409,0.755778362215409,0,7,1,3.2,0,5 -"1178",1366,2,1,0,0.530393935396258,0.530393935396258,0,17,1,-3.4,0.800000000000001,-6 -"1179",1367,2,1,0,2,2,0,-13,1,3.4,0.699999999999999,8 -"1180",1367,2,2,2,3,1,0,-13,1,3.4,0.699999999999999,8 -"1181",1367,2,3,3,4.13414807132132,1.13414807132132,0,-13,1,3.4,0.699999999999999,8 -"1182",1368,2,1,0,2,2,0,-20,1,-0.700000000000003,-0.6,-6 -"1183",1368,2,2,2,2.40193826172883,0.401938261728831,0,-20,1,-0.700000000000003,-0.6,-6 -"1184",1369,2,1,0,2,2,0,20,1,0.799999999999997,-0.9,-3 -"1185",1369,2,2,2,3,1,0,20,1,0.799999999999997,-0.9,-3 -"1186",1369,2,3,3,6,3,0,20,1,0.799999999999997,-0.9,-3 -"1187",1369,2,4,6,6.5,0.5,0,20,1,0.799999999999997,-0.9,-3 -"1188",1369,2,5,6.5,6.74524989686136,0.245249896861358,0,20,1,0.799999999999997,-0.9,-3 -"1189",1370,2,1,0,1.88427458320932,1.88427458320932,0,-13,1,-2.2,1.1,-11 -"1190",1371,2,1,0,2,2,0,1,0,-7,0.899999999999999,-1 -"1191",1371,2,2,2,3,1,0,1,0,-7,0.899999999999999,-1 -"1192",1371,2,3,3,6,3,0,1,0,-7,0.899999999999999,-1 -"1193",1371,2,4,6,6.5,0.5,0,1,0,-7,0.899999999999999,-1 -"1194",1371,2,5,6.5,7.1718197544946,0.671819754494595,0,1,0,-7,0.899999999999999,-1 -"1195",1372,2,1,0,1.46584201524255,1.46584201524255,0,9,1,0.899999999999999,-1.2,-6 -"1196",1373,2,1,0,2,2,0,25,0,-8.7,-1.1,-3 -"1197",1373,2,2,2,2.88269647783043,0.882696477830433,0,25,0,-8.7,-1.1,-3 -"1198",1374,2,1,0,0.0435531506121649,0.0435531506121649,1,11,0,-3.6,1,-3 -"1199",1375,2,1,0,2,2,0,-4,1,3.1,0.600000000000001,0 -"1200",1375,2,2,2,2.87459559868179,0.87459559868179,0,-4,1,3.1,0.600000000000001,0 -"1201",1376,2,1,0,2,2,0,-21,0,3,-0.0999999999999996,2 -"1202",1376,2,2,2,3,1,0,-21,0,3,-0.0999999999999996,2 -"1203",1376,2,3,3,6,3,0,-21,0,3,-0.0999999999999996,2 -"1204",1376,2,4,6,6.5,0.5,0,-21,0,3,-0.0999999999999996,2 -"1205",1376,2,5,6.5,8,1.5,0,-21,0,3,-0.0999999999999996,2 -"1206",1376,2,6,8,8.01751614633534,0.0175161463353394,0,-21,0,3,-0.0999999999999996,2 -"1207",1377,2,1,0,2,2,0,17,0,-1.5,-0.300000000000001,4 -"1208",1377,2,2,2,3,1,0,17,0,-1.5,-0.300000000000001,4 -"1209",1377,2,3,3,3.15212127129957,0.152121271299567,1,17,0,-1.5,-0.300000000000001,4 -"1210",1378,2,1,0,2,2,0,-12,0,-7.1,-1.1,2 -"1211",1378,2,2,2,2.16459464730521,0.164594647305214,0,-12,0,-7.1,-1.1,2 -"1212",1379,2,1,0,2,2,0,2,0,-6,-0.6,-9 -"1213",1379,2,2,2,2.02572531682797,0.0257253168279702,1,2,0,-6,-0.6,-9 -"1214",1380,2,1,0,1.07112952946288,1.07112952946288,1,-6,1,-0.700000000000003,1.1,-4 -"1215",1381,2,1,0,1.56782054332398,1.56782054332398,0,7,1,-0.299999999999997,-0.199999999999999,1 -"1216",1382,2,1,0,0.968450280773761,0.968450280773761,1,16,0,-1,-1.1,7 -"1217",1383,2,1,0,2,2,0,13,1,0.100000000000001,0.199999999999999,0 -"1218",1383,2,2,2,3,1,0,13,1,0.100000000000001,0.199999999999999,0 -"1219",1383,2,3,3,4.71882772363803,1.71882772363803,1,13,1,0.100000000000001,0.199999999999999,0 -"1220",1384,2,1,0,1.07820831716507,1.07820831716507,1,0,1,-3.5,0.699999999999999,1 -"1221",1385,2,1,0,2,2,0,10,1,-1.3,-0.199999999999999,-4 -"1222",1385,2,2,2,3,1,0,10,1,-1.3,-0.199999999999999,-4 -"1223",1385,2,3,3,6,3,0,10,1,-1.3,-0.199999999999999,-4 -"1224",1385,2,4,6,6.5,0.5,0,10,1,-1.3,-0.199999999999999,-4 -"1225",1385,2,5,6.5,8,1.5,0,10,1,-1.3,-0.199999999999999,-4 -"1226",1385,2,6,8,10,2,0,10,1,-1.3,-0.199999999999999,-4 -"1227",1386,2,1,0,2,2,0,-22,1,-5.6,-0.0999999999999996,0 -"1228",1386,2,2,2,3,1,0,-22,1,-5.6,-0.0999999999999996,0 -"1229",1386,2,3,3,6,3,0,-22,1,-5.6,-0.0999999999999996,0 -"1230",1386,2,4,6,6.5,0.5,0,-22,1,-5.6,-0.0999999999999996,0 -"1231",1386,2,5,6.5,7.31842178165258,0.81842178165258,1,-22,1,-5.6,-0.0999999999999996,0 -"1232",1387,2,1,0,2,2,0,-3,1,-2.3,1.1,2 -"1233",1387,2,2,2,3,1,0,-3,1,-2.3,1.1,2 -"1234",1387,2,3,3,6,3,0,-3,1,-2.3,1.1,2 -"1235",1387,2,4,6,6.5,0.5,0,-3,1,-2.3,1.1,2 -"1236",1387,2,5,6.5,8,1.5,0,-3,1,-2.3,1.1,2 -"1237",1387,2,6,8,10,2,0,-3,1,-2.3,1.1,2 -"1238",1388,2,1,0,0.0622440673820832,0.0622440673820832,1,-10,1,-4.1,1,1 -"1239",1389,2,1,0,0.723074599259878,0.723074599259878,1,12,0,1.7,0,-6 -"1240",1390,2,1,0,2,2,0,-25,1,2.3,1,-1 -"1241",1390,2,2,2,2.68333520870146,0.68333520870146,0,-25,1,2.3,1,-1 -"1242",1391,2,1,0,2,2,0,19,1,-1.7,-0.800000000000001,3 -"1243",1391,2,2,2,3,1,0,19,1,-1.7,-0.800000000000001,3 -"1244",1391,2,3,3,4.40607892950458,1.40607892950458,0,19,1,-1.7,-0.800000000000001,3 -"1245",1392,2,1,0,0.658089855034855,0.658089855034855,1,26,0,1.7,-1.3,10 -"1246",1393,2,1,0,1.03939309015924,1.03939309015924,1,16,1,-3.5,-0.0999999999999996,4 -"1247",1394,2,1,0,0.0975340315441983,0.0975340315441983,1,-4,1,7.4,-0.0999999999999996,5 -"1248",1395,2,1,0,0.519093963329223,0.519093963329223,0,2,1,-0.899999999999999,1.4,2 -"1249",1396,2,1,0,1.53633959396638,1.53633959396638,0,6,0,1.2,-0.199999999999999,1 -"1250",1397,2,1,0,0.342785597078455,0.342785597078455,1,13,0,0.600000000000001,-0.300000000000001,-1 -"1251",1398,2,1,0,0.0747504945711214,0.0747504945711214,1,-2,1,-0.399999999999999,0.699999999999999,4 -"1252",1399,2,1,0,0.366111166416221,0.366111166416221,1,5,0,-4.3,0.600000000000001,-7 -"1253",1400,2,1,0,0.603133288682546,0.603133288682546,1,-19,1,-1.3,0.5,1 -"1254",1401,2,1,0,2,2,0,-3,0,-3.4,0.600000000000001,-7 -"1255",1401,2,2,2,3,1,0,-3,0,-3.4,0.600000000000001,-7 -"1256",1401,2,3,3,3.72230041191012,0.722300411910123,0,-3,0,-3.4,0.600000000000001,-7 -"1257",1402,2,1,0,2,2,0,0,0,3.5,-1.1,5 -"1258",1402,2,2,2,3,1,0,0,0,3.5,-1.1,5 -"1259",1402,2,3,3,3.83404380539465,0.83404380539465,1,0,0,3.5,-1.1,5 -"1260",1403,2,1,0,0.183153193272342,0.183153193272342,1,-1,0,4.8,-1.4,4 -"1261",1404,2,1,0,2,2,0,0,1,0.700000000000003,0.600000000000001,0 -"1262",1404,2,2,2,3,1,0,0,1,0.700000000000003,0.600000000000001,0 -"1263",1404,2,3,3,6,3,0,0,1,0.700000000000003,0.600000000000001,0 -"1264",1404,2,4,6,6.5,0.5,0,0,1,0.700000000000003,0.600000000000001,0 -"1265",1404,2,5,6.5,8,1.5,0,0,1,0.700000000000003,0.600000000000001,0 -"1266",1404,2,6,8,9.3088564666388,1.3088564666388,1,0,1,0.700000000000003,0.600000000000001,0 -"1267",1405,2,1,0,1.12753347346723,1.12753347346723,1,24,0,-1,-0.199999999999999,-5 -"1268",1406,2,1,0,2,2,0,-36,1,4.9,1.4,0 -"1269",1406,2,2,2,3,1,0,-36,1,4.9,1.4,0 -"1270",1406,2,3,3,4.26995065607518,1.26995065607519,0,-36,1,4.9,1.4,0 -"1271",1407,2,1,0,2,2,0,-16,0,1,-0.6,-4 -"1272",1407,2,2,2,3,1,0,-16,0,1,-0.6,-4 -"1273",1407,2,3,3,6,3,0,-16,0,1,-0.6,-4 -"1274",1407,2,4,6,6.2011442349896,0.201144234989598,1,-16,0,1,-0.6,-4 -"1275",1408,2,1,0,2,2,0,-12,0,3.7,2.2,-1 -"1276",1408,2,2,2,3,1,0,-12,0,3.7,2.2,-1 -"1277",1408,2,3,3,5.58990966859779,2.58990966859779,0,-12,0,3.7,2.2,-1 -"1278",1409,2,1,0,1.34690495638572,1.34690495638572,1,20,0,2.4,-1.7,4 -"1279",1410,2,1,0,1.46034335966028,1.46034335966028,1,-3,1,0,1.5,-12 -"1280",1411,2,1,0,0.321417748798778,0.321417748798778,1,4,1,-0.100000000000001,0.300000000000001,6 -"1281",1412,2,1,0,0.366684633119445,0.366684633119445,1,-3,0,-4.7,0.300000000000001,1 -"1282",1413,2,1,0,2,2,0,-1,1,4.8,-0.6,4 -"1283",1413,2,2,2,3,1,0,-1,1,4.8,-0.6,4 -"1284",1413,2,3,3,6,3,0,-1,1,4.8,-0.6,4 -"1285",1413,2,4,6,6.5,0.5,0,-1,1,4.8,-0.6,4 -"1286",1413,2,5,6.5,8,1.5,0,-1,1,4.8,-0.6,4 -"1287",1413,2,6,8,10,2,0,-1,1,4.8,-0.6,4 -"1288",1414,2,1,0,2,2,0,-19,0,-1.6,-0.6,-6 -"1289",1414,2,2,2,3,1,0,-19,0,-1.6,-0.6,-6 -"1290",1414,2,3,3,6,3,0,-19,0,-1.6,-0.6,-6 -"1291",1414,2,4,6,6.5,0.5,0,-19,0,-1.6,-0.6,-6 -"1292",1414,2,5,6.5,8,1.5,0,-19,0,-1.6,-0.6,-6 -"1293",1414,2,6,8,10,2,0,-19,0,-1.6,-0.6,-6 -"1294",1415,2,1,0,2,2,0,9,0,1.5,-0.699999999999999,-3 -"1295",1415,2,2,2,3,1,0,9,0,1.5,-0.699999999999999,-3 -"1296",1415,2,3,3,6,3,0,9,0,1.5,-0.699999999999999,-3 -"1297",1415,2,4,6,6.5,0.5,0,9,0,1.5,-0.699999999999999,-3 -"1298",1415,2,5,6.5,8,1.5,0,9,0,1.5,-0.699999999999999,-3 -"1299",1415,2,6,8,9.86639326907633,1.86639326907634,1,9,0,1.5,-0.699999999999999,-3 -"1300",1416,2,1,0,2,2,0,11,1,2.5,-0.5,-1 -"1301",1416,2,2,2,3,1,0,11,1,2.5,-0.5,-1 -"1302",1416,2,3,3,4.42402973112752,1.42402973112752,0,11,1,2.5,-0.5,-1 -"1303",1417,2,1,0,2,2,0,17,0,-2.6,0.899999999999999,-8 -"1304",1417,2,2,2,3,1,0,17,0,-2.6,0.899999999999999,-8 -"1305",1417,2,3,3,6,3,0,17,0,-2.6,0.899999999999999,-8 -"1306",1417,2,4,6,6.5,0.5,0,17,0,-2.6,0.899999999999999,-8 -"1307",1417,2,5,6.5,8,1.5,0,17,0,-2.6,0.899999999999999,-8 -"1308",1417,2,6,8,10,2,0,17,0,-2.6,0.899999999999999,-8 -"1309",1418,2,1,0,1.90768521458056,1.90768521458056,0,6,1,0.100000000000001,-0.300000000000001,0 -"1310",1419,2,1,0,1.13962779576004,1.13962779576004,0,-20,0,8,-2,-5 -"1311",1420,2,1,0,2,2,0,-3,1,-3.3,-0.300000000000001,6 -"1312",1420,2,2,2,3,1,0,-3,1,-3.3,-0.300000000000001,6 -"1313",1420,2,3,3,6,3,0,-3,1,-3.3,-0.300000000000001,6 -"1314",1420,2,4,6,6.5,0.5,0,-3,1,-3.3,-0.300000000000001,6 -"1315",1420,2,5,6.5,8,1.5,0,-3,1,-3.3,-0.300000000000001,6 -"1316",1420,2,6,8,10,2,0,-3,1,-3.3,-0.300000000000001,6 -"1317",1421,2,1,0,2,2,0,-2,1,-1,-1.2,-1 -"1318",1421,2,2,2,3,1,0,-2,1,-1,-1.2,-1 -"1319",1421,2,3,3,6,3,0,-2,1,-1,-1.2,-1 -"1320",1421,2,4,6,6.5,0.5,0,-2,1,-1,-1.2,-1 -"1321",1421,2,5,6.5,8,1.5,0,-2,1,-1,-1.2,-1 -"1322",1421,2,6,8,10,2,0,-2,1,-1,-1.2,-1 -"1323",1422,2,1,0,2,2,0,-24,0,-2.9,-1.2,-3 -"1324",1422,2,2,2,3,1,0,-24,0,-2.9,-1.2,-3 -"1325",1422,2,3,3,5.02861679006672,2.02861679006672,0,-24,0,-2.9,-1.2,-3 -"1326",1423,2,1,0,2,2,0,-3,1,-3,0.699999999999999,-6 -"1327",1423,2,2,2,3,1,0,-3,1,-3,0.699999999999999,-6 -"1328",1423,2,3,3,4.04859372597651,1.04859372597651,0,-3,1,-3,0.699999999999999,-6 -"1329",1424,2,1,0,0.0869810534319128,0.0869810534319128,0,-1,0,-0.200000000000003,-1.8,2 -"1330",1425,2,1,0,2,2,0,-11,0,5.1,0.699999999999999,0 -"1331",1425,2,2,2,2.61491540529468,0.614915405294681,1,-11,0,5.1,0.699999999999999,0 -"1332",1426,2,1,0,2,2,0,-15,1,8.2,1.1,2 -"1333",1426,2,2,2,3,1,0,-15,1,8.2,1.1,2 -"1334",1426,2,3,3,6,3,0,-15,1,8.2,1.1,2 -"1335",1426,2,4,6,6.5,0.5,0,-15,1,8.2,1.1,2 -"1336",1426,2,5,6.5,8,1.5,0,-15,1,8.2,1.1,2 -"1337",1426,2,6,8,10,2,0,-15,1,8.2,1.1,2 -"1338",1427,2,1,0,0.816825684284033,0.816825684284033,0,5,0,-3.2,-0.699999999999999,-9 -"1339",1428,2,1,0,2,2,0,-1,1,-2.6,0,-3 -"1340",1428,2,2,2,3,1,0,-1,1,-2.6,0,-3 -"1341",1428,2,3,3,6,3,0,-1,1,-2.6,0,-3 -"1342",1428,2,4,6,6.5,0.5,0,-1,1,-2.6,0,-3 -"1343",1428,2,5,6.5,8,1.5,0,-1,1,-2.6,0,-3 -"1344",1428,2,6,8,10,2,0,-1,1,-2.6,0,-3 -"1345",1429,2,1,0,2,2,0,2,1,-3.3,-0.199999999999999,-4 -"1346",1429,2,2,2,3,1,0,2,1,-3.3,-0.199999999999999,-4 -"1347",1429,2,3,3,6,3,0,2,1,-3.3,-0.199999999999999,-4 -"1348",1429,2,4,6,6.5,0.5,0,2,1,-3.3,-0.199999999999999,-4 -"1349",1429,2,5,6.5,8,1.5,0,2,1,-3.3,-0.199999999999999,-4 -"1350",1429,2,6,8,10,2,0,2,1,-3.3,-0.199999999999999,-4 -"1351",1430,2,1,0,2,2,0,-27,1,-0.200000000000003,-1,0 -"1352",1430,2,2,2,3,1,0,-27,1,-0.200000000000003,-1,0 -"1353",1430,2,3,3,6,3,0,-27,1,-0.200000000000003,-1,0 -"1354",1430,2,4,6,6.5,0.5,0,-27,1,-0.200000000000003,-1,0 -"1355",1430,2,5,6.5,8,1.5,0,-27,1,-0.200000000000003,-1,0 -"1356",1430,2,6,8,8.97600936460447,0.976009364604472,0,-27,1,-0.200000000000003,-1,0 -"1357",1431,2,1,0,0.902169115995978,0.902169115995978,1,21,1,-1.9,0.699999999999999,0 -"1358",1432,2,1,0,1.67403691072956,1.67403691072956,1,-9,0,-3.9,2.1,-2 -"1359",1433,2,1,0,2,2,0,-26,1,-0.600000000000001,1.8,-1 -"1360",1433,2,2,2,3,1,0,-26,1,-0.600000000000001,1.8,-1 -"1361",1433,2,3,3,6,3,0,-26,1,-0.600000000000001,1.8,-1 -"1362",1433,2,4,6,6.5,0.5,0,-26,1,-0.600000000000001,1.8,-1 -"1363",1433,2,5,6.5,8,1.5,0,-26,1,-0.600000000000001,1.8,-1 -"1364",1433,2,6,8,10,2,0,-26,1,-0.600000000000001,1.8,-1 -"1365",1434,2,1,0,2,2,0,-27,1,-4.2,-0.199999999999999,11 -"1366",1434,2,2,2,2.18464366437143,0.184643664371427,0,-27,1,-4.2,-0.199999999999999,11 -"1367",1435,2,1,0,1.01968146261703,1.01968146261703,1,12,0,0.299999999999997,0,2 -"1368",1436,2,1,0,0.720260389334398,0.720260389334398,1,-14,1,2.9,0.399999999999999,8 -"1369",1437,2,1,0,0.24353561308874,0.24353561308874,1,11,1,1,1.4,2 -"1370",1438,2,1,0,2,2,0,-19,0,-0.299999999999997,-0.300000000000001,7 -"1371",1438,2,2,2,2.54315311866593,0.54315311866593,1,-19,0,-0.299999999999997,-0.300000000000001,7 -"1372",1439,2,1,0,0.844433027474113,0.844433027474113,1,-27,0,5.5,0.5,-5 -"1373",1440,2,1,0,2,2,0,8,1,0.700000000000003,-1.3,-5 -"1374",1440,2,2,2,2.27863971802348,0.278639718023478,0,8,1,0.700000000000003,-1.3,-5 -"1375",1441,2,1,0,2,2,0,-25,1,3.4,-0.699999999999999,7 -"1376",1441,2,2,2,2.18590588648048,0.185905886480478,0,-25,1,3.4,-0.699999999999999,7 -"1377",1442,2,1,0,2,2,0,6,1,-2.7,0.399999999999999,1 -"1378",1442,2,2,2,3,1,0,6,1,-2.7,0.399999999999999,1 -"1379",1442,2,3,3,3.4895088612827,0.489508861282698,0,6,1,-2.7,0.399999999999999,1 -"1380",1443,2,1,0,0.897811379719307,0.897811379719307,1,34,0,-3.9,-0.6,1 -"1381",1444,2,1,0,0.257163170763509,0.257163170763509,1,32,0,-4,1.7,-1 -"1382",1445,2,1,0,1.10321003849993,1.10321003849993,0,-17,1,5.6,-0.6,6 -"1383",1446,2,1,0,1.75413308342944,1.75413308342944,1,12,0,2.5,0.300000000000001,2 -"1384",1447,2,1,0,2,2,0,-12,1,-9.7,-0.0999999999999996,1 -"1385",1447,2,2,2,3,1,0,-12,1,-9.7,-0.0999999999999996,1 -"1386",1447,2,3,3,4.20284987725034,1.20284987725034,0,-12,1,-9.7,-0.0999999999999996,1 -"1387",1448,2,1,0,2,2,0,-22,1,0.899999999999999,-0.800000000000001,1 -"1388",1448,2,2,2,3,1,0,-22,1,0.899999999999999,-0.800000000000001,1 -"1389",1448,2,3,3,6,3,0,-22,1,0.899999999999999,-0.800000000000001,1 -"1390",1448,2,4,6,6.5,0.5,0,-22,1,0.899999999999999,-0.800000000000001,1 -"1391",1448,2,5,6.5,8,1.5,0,-22,1,0.899999999999999,-0.800000000000001,1 -"1392",1448,2,6,8,10,2,0,-22,1,0.899999999999999,-0.800000000000001,1 -"1393",1449,2,1,0,2,2,0,-9,0,5.8,-1.4,-8 -"1394",1449,2,2,2,3,1,0,-9,0,5.8,-1.4,-8 -"1395",1449,2,3,3,6,3,0,-9,0,5.8,-1.4,-8 -"1396",1449,2,4,6,6.5,0.5,0,-9,0,5.8,-1.4,-8 -"1397",1449,2,5,6.5,8,1.5,0,-9,0,5.8,-1.4,-8 -"1398",1449,2,6,8,10,2,0,-9,0,5.8,-1.4,-8 -"1399",1450,2,1,0,2,2,0,-16,0,3.4,-1.8,-4 -"1400",1450,2,2,2,3,1,0,-16,0,3.4,-1.8,-4 -"1401",1450,2,3,3,4.3223739403372,1.3223739403372,0,-16,0,3.4,-1.8,-4 -"1402",1451,2,1,0,1.45233155575047,1.45233155575047,0,-13,1,7.9,-0.6,5 -"1403",1452,2,1,0,2,2,0,-30,0,-3.1,-1.1,2 -"1404",1452,2,2,2,3,1,0,-30,0,-3.1,-1.1,2 -"1405",1452,2,3,3,6,3,0,-30,0,-3.1,-1.1,2 -"1406",1452,2,4,6,6.5,0.5,0,-30,0,-3.1,-1.1,2 -"1407",1452,2,5,6.5,8,1.5,0,-30,0,-3.1,-1.1,2 -"1408",1452,2,6,8,9.76221252342322,1.76221252342322,0,-30,0,-3.1,-1.1,2 -"1409",1453,2,1,0,2,2,0,22,0,0.600000000000001,-0.5,-7 -"1410",1453,2,2,2,3,1,0,22,0,0.600000000000001,-0.5,-7 -"1411",1453,2,3,3,6,3,0,22,0,0.600000000000001,-0.5,-7 -"1412",1453,2,4,6,6.5,0.5,0,22,0,0.600000000000001,-0.5,-7 -"1413",1453,2,5,6.5,6.78844892276778,0.288448922767783,1,22,0,0.600000000000001,-0.5,-7 -"1414",1454,2,1,0,2,2,0,3,1,-4.5,1.2,1 -"1415",1454,2,2,2,3,1,0,3,1,-4.5,1.2,1 -"1416",1454,2,3,3,3.98615915913962,0.986159159139623,1,3,1,-4.5,1.2,1 -"1417",1455,2,1,0,0.132740765435597,0.132740765435597,0,4,0,-3.2,0.300000000000001,2 -"1418",1456,2,1,0,2,2,0,-20,1,-1.4,-0.199999999999999,8 -"1419",1456,2,2,2,2.94659168128502,0.946591681285018,0,-20,1,-1.4,-0.199999999999999,8 -"1420",1457,2,1,0,0.736259057282149,0.736259057282149,0,-11,0,3.9,0.199999999999999,2 -"1421",1458,2,1,0,2,2,0,-11,1,-3.6,-0.4,-6 -"1422",1458,2,2,2,3,1,0,-11,1,-3.6,-0.4,-6 -"1423",1458,2,3,3,6,3,0,-11,1,-3.6,-0.4,-6 -"1424",1458,2,4,6,6.5,0.5,0,-11,1,-3.6,-0.4,-6 -"1425",1458,2,5,6.5,8,1.5,0,-11,1,-3.6,-0.4,-6 -"1426",1458,2,6,8,8.72869921805808,0.728699218058077,0,-11,1,-3.6,-0.4,-6 -"1427",1459,2,1,0,1.77448767695516,1.77448767695516,1,-2,1,0.700000000000003,1.7,-1 -"1428",1460,2,1,0,0.15522453366514,0.15522453366514,0,-11,1,-6.2,0.100000000000001,8 -"1429",1461,2,1,0,0.73147244913038,0.73147244913038,0,7,1,0.5,0.399999999999999,-6 -"1430",1462,2,1,0,0.446135621589724,0.446135621589724,0,-32,1,4.5,2.3,2 -"1431",1463,2,1,0,2,2,0,6,0,0.100000000000001,-1.5,-2 -"1432",1463,2,2,2,3,1,0,6,0,0.100000000000001,-1.5,-2 -"1433",1463,2,3,3,6,3,0,6,0,0.100000000000001,-1.5,-2 -"1434",1463,2,4,6,6.5,0.5,0,6,0,0.100000000000001,-1.5,-2 -"1435",1463,2,5,6.5,7.13563120595162,0.635631205951624,0,6,0,0.100000000000001,-1.5,-2 -"1436",1464,2,1,0,2,2,0,-20,1,-2,-0.699999999999999,-2 -"1437",1464,2,2,2,3,1,0,-20,1,-2,-0.699999999999999,-2 -"1438",1464,2,3,3,6,3,0,-20,1,-2,-0.699999999999999,-2 -"1439",1464,2,4,6,6.5,0.5,0,-20,1,-2,-0.699999999999999,-2 -"1440",1464,2,5,6.5,8,1.5,0,-20,1,-2,-0.699999999999999,-2 -"1441",1464,2,6,8,10,2,0,-20,1,-2,-0.699999999999999,-2 -"1442",1465,2,1,0,2,2,0,12,1,-5.3,-0.4,1 -"1443",1465,2,2,2,3,1,0,12,1,-5.3,-0.4,1 -"1444",1465,2,3,3,6,3,0,12,1,-5.3,-0.4,1 -"1445",1465,2,4,6,6.07793455023724,0.0779345502372445,0,12,1,-5.3,-0.4,1 -"1446",1466,2,1,0,0.319572508207951,0.319572508207951,1,14,1,6.9,1,6 -"1447",1467,2,1,0,2,2,0,-17,0,-0.200000000000003,0.300000000000001,-3 -"1448",1467,2,2,2,3,1,0,-17,0,-0.200000000000003,0.300000000000001,-3 -"1449",1467,2,3,3,4.5654192843902,1.5654192843902,1,-17,0,-0.200000000000003,0.300000000000001,-3 -"1450",1468,2,1,0,0.878375292028245,0.878375292028245,0,6,1,1.7,-0.699999999999999,3 -"1451",1469,2,1,0,0.228811186097245,0.228811186097245,0,-15,0,2.9,0.5,2 -"1452",1470,2,1,0,2,2,0,-10,1,-5.5,2.6,3 -"1453",1470,2,2,2,2.87586496385811,0.875864963858114,1,-10,1,-5.5,2.6,3 -"1454",1471,2,1,0,0.106208412140128,0.106208412140128,1,21,0,-1.1,0.199999999999999,6 -"1455",1472,2,1,0,1.40994646531655,1.40994646531655,1,-18,0,0.600000000000001,-0.199999999999999,-2 -"1456",1473,2,1,0,1.41972373820162,1.41972373820162,1,-8,1,-3.5,-0.199999999999999,4 -"1457",1474,2,1,0,2,2,0,-13,1,1.3,-0.699999999999999,-2 -"1458",1474,2,2,2,3,1,0,-13,1,1.3,-0.699999999999999,-2 -"1459",1474,2,3,3,6,3,0,-13,1,1.3,-0.699999999999999,-2 -"1460",1474,2,4,6,6.5,0.5,0,-13,1,1.3,-0.699999999999999,-2 -"1461",1474,2,5,6.5,7.96235534699125,1.46235534699125,0,-13,1,1.3,-0.699999999999999,-2 -"1462",1475,2,1,0,2,2,0,3,1,-2.9,0,-6 -"1463",1475,2,2,2,2.351733099124,0.351733099123996,0,3,1,-2.9,0,-6 -"1464",1476,2,1,0,1.2896599746237,1.2896599746237,1,-18,1,-2,1.7,6 -"1465",1477,2,1,0,2,2,0,-20,1,1.6,-1,-12 -"1466",1477,2,2,2,3,1,0,-20,1,1.6,-1,-12 -"1467",1477,2,3,3,6,3,0,-20,1,1.6,-1,-12 -"1468",1477,2,4,6,6.5,0.5,0,-20,1,1.6,-1,-12 -"1469",1477,2,5,6.5,8,1.5,0,-20,1,1.6,-1,-12 -"1470",1477,2,6,8,8.41901327322199,0.419013273221993,0,-20,1,1.6,-1,-12 -"1471",1478,2,1,0,2,2,0,-23,1,2.8,0.199999999999999,-2 -"1472",1478,2,2,2,3,1,0,-23,1,2.8,0.199999999999999,-2 -"1473",1478,2,3,3,3.80808417495772,0.808084174957724,0,-23,1,2.8,0.199999999999999,-2 -"1474",1479,2,1,0,2,2,0,-4,0,-7.4,-0.6,-5 -"1475",1479,2,2,2,3,1,0,-4,0,-7.4,-0.6,-5 -"1476",1479,2,3,3,6,3,0,-4,0,-7.4,-0.6,-5 -"1477",1479,2,4,6,6.5,0.5,0,-4,0,-7.4,-0.6,-5 -"1478",1479,2,5,6.5,8,1.5,0,-4,0,-7.4,-0.6,-5 -"1479",1479,2,6,8,8.12954805605859,0.129548056058593,0,-4,0,-7.4,-0.6,-5 -"1480",1480,2,1,0,0.025309600655153,0.025309600655153,1,24,0,-3.4,-1.1,5 -"1481",1481,2,1,0,2,2,0,-19,0,5.6,-2,3 -"1482",1481,2,2,2,2.71196804736604,0.711968047366043,0,-19,0,5.6,-2,3 -"1483",1482,2,1,0,0.140796215442515,0.140796215442515,1,-6,1,-1.3,0.300000000000001,1 -"1484",1483,2,1,0,2,2,0,-4,0,-0.600000000000001,-0.699999999999999,0 -"1485",1483,2,2,2,3,1,0,-4,0,-0.600000000000001,-0.699999999999999,0 -"1486",1483,2,3,3,4.9516598953323,1.9516598953323,0,-4,0,-0.600000000000001,-0.699999999999999,0 -"1487",1484,2,1,0,0.930962748160916,0.930962748160916,0,4,1,0.100000000000001,-1.2,-5 -"1488",1485,2,1,0,2,2,0,-46,1,-1.2,-0.0999999999999996,9 -"1489",1485,2,2,2,3,1,0,-46,1,-1.2,-0.0999999999999996,9 -"1490",1485,2,3,3,6,3,0,-46,1,-1.2,-0.0999999999999996,9 -"1491",1485,2,4,6,6.5,0.5,0,-46,1,-1.2,-0.0999999999999996,9 -"1492",1485,2,5,6.5,8,1.5,0,-46,1,-1.2,-0.0999999999999996,9 -"1493",1485,2,6,8,10,2,0,-46,1,-1.2,-0.0999999999999996,9 -"1494",1486,2,1,0,0.769806200645577,0.769806200645577,0,15,0,0.200000000000003,-0.5,-4 -"1495",1487,2,1,0,2,2,0,2,1,-0.100000000000001,-0.4,5 -"1496",1487,2,2,2,3,1,0,2,1,-0.100000000000001,-0.4,5 -"1497",1487,2,3,3,6,3,0,2,1,-0.100000000000001,-0.4,5 -"1498",1487,2,4,6,6.5,0.5,0,2,1,-0.100000000000001,-0.4,5 -"1499",1487,2,5,6.5,8,1.5,0,2,1,-0.100000000000001,-0.4,5 -"1500",1487,2,6,8,10,2,0,2,1,-0.100000000000001,-0.4,5 -"1501",1488,2,1,0,1.61966363686422,1.61966363686422,1,-14,0,2.7,0.899999999999999,-4 -"1502",1489,2,1,0,0.734611675513435,0.734611675513435,1,17,1,-5.7,-0.699999999999999,-2 -"1503",1490,2,1,0,1.20365371953482,1.20365371953482,1,-1,0,4.3,-0.199999999999999,-1 -"1504",1491,2,1,0,2,2,0,8,1,-1.3,-0.4,-7 -"1505",1491,2,2,2,3,1,0,8,1,-1.3,-0.4,-7 -"1506",1491,2,3,3,6,3,0,8,1,-1.3,-0.4,-7 -"1507",1491,2,4,6,6.5,0.5,0,8,1,-1.3,-0.4,-7 -"1508",1491,2,5,6.5,8,1.5,0,8,1,-1.3,-0.4,-7 -"1509",1491,2,6,8,10,2,0,8,1,-1.3,-0.4,-7 -"1510",1492,2,1,0,1.57038342813035,1.57038342813035,0,-8,1,3.7,-0.699999999999999,4 -"1511",1493,2,1,0,2,2,0,-38,0,4.8,0.399999999999999,9 -"1512",1493,2,2,2,3,1,0,-38,0,4.8,0.399999999999999,9 -"1513",1493,2,3,3,5.08024958816087,2.08024958816088,0,-38,0,4.8,0.399999999999999,9 -"1514",1494,2,1,0,2,2,0,7,0,-8.1,0.100000000000001,3 -"1515",1494,2,2,2,3,1,0,7,0,-8.1,0.100000000000001,3 -"1516",1494,2,3,3,4.79147079159799,1.79147079159799,1,7,0,-8.1,0.100000000000001,3 -"1517",1495,2,1,0,0.700509367340269,0.700509367340269,1,2,0,-4.2,-1.1,3 -"1518",1496,2,1,0,2,2,0,11,0,0.600000000000001,-0.5,-6 -"1519",1496,2,2,2,3,1,0,11,0,0.600000000000001,-0.5,-6 -"1520",1496,2,3,3,5.29221265587342,2.29221265587342,0,11,0,0.600000000000001,-0.5,-6 -"1521",1497,2,1,0,2,2,0,-15,0,5.2,0.800000000000001,8 -"1522",1497,2,2,2,2.42942030019864,0.429420300198636,0,-15,0,5.2,0.800000000000001,8 -"1523",1498,2,1,0,0.370674816318394,0.370674816318394,1,9,0,-1.9,0.600000000000001,0 -"1524",1499,2,1,0,2,2,0,11,1,-0.5,-1,-3 -"1525",1499,2,2,2,3,1,0,11,1,-0.5,-1,-3 -"1526",1499,2,3,3,6,3,0,11,1,-0.5,-1,-3 -"1527",1499,2,4,6,6.5,0.5,0,11,1,-0.5,-1,-3 -"1528",1499,2,5,6.5,8,1.5,0,11,1,-0.5,-1,-3 -"1529",1499,2,6,8,10,2,0,11,1,-0.5,-1,-3 -"1530",1500,2,1,0,1.98371270267654,1.98371270267654,1,-29,1,1.3,2.3,2 -"1531",1501,2,1,0,0.802827188345665,0.802827188345665,1,0,1,2.5,2,-2 -"1532",1502,2,1,0,1.07762848799462,1.07762848799462,1,13,1,1,-0.9,5 -"1533",1503,2,1,0,1.65814473273036,1.65814473273036,1,-7,1,5.7,-0.6,3 -"1534",1504,2,1,0,2,2,0,-21,1,-0.5,1.3,2 -"1535",1504,2,2,2,3,1,0,-21,1,-0.5,1.3,2 -"1536",1504,2,3,3,6,3,0,-21,1,-0.5,1.3,2 -"1537",1504,2,4,6,6.5,0.5,0,-21,1,-0.5,1.3,2 -"1538",1504,2,5,6.5,8,1.5,0,-21,1,-0.5,1.3,2 -"1539",1504,2,6,8,10,2,0,-21,1,-0.5,1.3,2 -"1540",1505,2,1,0,1.29103320319407,1.29103320319407,0,-23,0,-1.1,-0.0999999999999996,3 -"1541",1506,2,1,0,2,2,0,4,0,1.6,-0.9,-1 -"1542",1506,2,2,2,3,1,0,4,0,1.6,-0.9,-1 -"1543",1506,2,3,3,6,3,0,4,0,1.6,-0.9,-1 -"1544",1506,2,4,6,6.5,0.5,0,4,0,1.6,-0.9,-1 -"1545",1506,2,5,6.5,8,1.5,0,4,0,1.6,-0.9,-1 -"1546",1506,2,6,8,10,2,0,4,0,1.6,-0.9,-1 -"1547",1507,2,1,0,2,2,0,-24,1,1.1,-0.9,3 -"1548",1507,2,2,2,3,1,0,-24,1,1.1,-0.9,3 -"1549",1507,2,3,3,6,3,0,-24,1,1.1,-0.9,3 -"1550",1507,2,4,6,6.5,0.5,0,-24,1,1.1,-0.9,3 -"1551",1507,2,5,6.5,8,1.5,0,-24,1,1.1,-0.9,3 -"1552",1507,2,6,8,9.0128309281274,1.0128309281274,1,-24,1,1.1,-0.9,3 -"1553",1508,2,1,0,0.052336836919375,0.052336836919375,1,-15,1,0,1.3,3 -"1554",1509,2,1,0,1.25675356256158,1.25675356256158,0,-14,1,-3.1,-0.800000000000001,7 -"1555",1510,2,1,0,1.67730983712813,1.67730983712813,1,7,1,0.399999999999999,-0.9,-5 -"1556",1511,2,1,0,1.42135162297182,1.42135162297182,0,-2,0,1.6,-0.699999999999999,1 -"1557",1512,2,1,0,1.35675442623156,1.35675442623156,1,-3,0,-1.1,0.399999999999999,5 -"1558",1513,2,1,0,0.472475529669297,0.472475529669297,1,-2,1,-5.9,2.3,-8 -"1559",1514,2,1,0,2,2,0,11,1,5.5,0.300000000000001,6 -"1560",1514,2,2,2,2.99952807494217,0.999528074942172,1,11,1,5.5,0.300000000000001,6 -"1561",1515,2,1,0,2,2,0,3,0,-9.2,-1.7,-5 -"1562",1515,2,2,2,3,1,0,3,0,-9.2,-1.7,-5 -"1563",1515,2,3,3,4.76210737953703,1.76210737953703,0,3,0,-9.2,-1.7,-5 -"1564",1516,2,1,0,0.368219791283305,0.368219791283305,1,16,1,-2.1,0.600000000000001,6 -"1565",1517,2,1,0,1.03645590005459,1.03645590005459,0,5,1,7.4,1.1,5 -"1566",1518,2,1,0,1.4799751509228,1.4799751509228,1,30,0,7.3,-0.6,-5 -"1567",1519,2,1,0,1.364145205887,1.364145205887,0,-24,0,3.8,0.300000000000001,-7 -"1568",1520,2,1,0,0.107962456645088,0.107962456645088,0,0,0,-2.5,0.600000000000001,13 -"1569",1521,2,1,0,2,2,0,0,0,-4.5,2.1,-8 -"1570",1521,2,2,2,3,1,0,0,0,-4.5,2.1,-8 -"1571",1521,2,3,3,6,3,0,0,0,-4.5,2.1,-8 -"1572",1521,2,4,6,6.5,0.5,0,0,0,-4.5,2.1,-8 -"1573",1521,2,5,6.5,7.83398665444276,1.33398665444276,1,0,0,-4.5,2.1,-8 -"1574",1522,2,1,0,2,2,0,-1,1,-3.6,-1.6,-4 -"1575",1522,2,2,2,3,1,0,-1,1,-3.6,-1.6,-4 -"1576",1522,2,3,3,6,3,0,-1,1,-3.6,-1.6,-4 -"1577",1522,2,4,6,6.5,0.5,0,-1,1,-3.6,-1.6,-4 -"1578",1522,2,5,6.5,8,1.5,0,-1,1,-3.6,-1.6,-4 -"1579",1522,2,6,8,10,2,0,-1,1,-3.6,-1.6,-4 -"1580",1523,2,1,0,2,2,0,-20,0,4.8,-0.5,-2 -"1581",1523,2,2,2,3,1,0,-20,0,4.8,-0.5,-2 -"1582",1523,2,3,3,6,3,0,-20,0,4.8,-0.5,-2 -"1583",1523,2,4,6,6.5,0.5,0,-20,0,4.8,-0.5,-2 -"1584",1523,2,5,6.5,8,1.5,0,-20,0,4.8,-0.5,-2 -"1585",1523,2,6,8,10,2,0,-20,0,4.8,-0.5,-2 -"1586",1524,2,1,0,1.64111184306847,1.64111184306847,0,-26,1,-3.6,-0.199999999999999,-6 -"1587",1525,2,1,0,1.41706921570476,1.41706921570476,1,-11,1,6,1.4,8 -"1588",1526,2,1,0,2,2,0,5,1,-6.8,0.699999999999999,1 -"1589",1526,2,2,2,3,1,0,5,1,-6.8,0.699999999999999,1 -"1590",1526,2,3,3,6,3,0,5,1,-6.8,0.699999999999999,1 -"1591",1526,2,4,6,6.5,0.5,0,5,1,-6.8,0.699999999999999,1 -"1592",1526,2,5,6.5,8,1.5,0,5,1,-6.8,0.699999999999999,1 -"1593",1526,2,6,8,10,2,0,5,1,-6.8,0.699999999999999,1 -"1594",1527,2,1,0,0.0584889481899124,0.0584889481899124,1,13,0,7.3,0.899999999999999,4 -"1595",1528,2,1,0,2,2,0,-15,0,-4.8,-0.699999999999999,-3 -"1596",1528,2,2,2,2.20344490005185,0.203444900051845,0,-15,0,-4.8,-0.699999999999999,-3 -"1597",1529,2,1,0,0.568173399087702,0.568173399087702,1,10,1,-5,0.800000000000001,-3 -"1598",1530,2,1,0,0.31689284972773,0.31689284972773,1,-3,1,2.6,-0.6,4 -"1599",1531,2,1,0,1.95316484983069,1.95316484983069,0,3,1,-1.7,-0.800000000000001,-4 -"1600",1532,2,1,0,2,2,0,-25,0,-1.5,1.3,-2 -"1601",1532,2,2,2,3,1,0,-25,0,-1.5,1.3,-2 -"1602",1532,2,3,3,4.36368988911238,1.36368988911238,0,-25,0,-1.5,1.3,-2 -"1603",1533,2,1,0,0.0341663922896845,0.0341663922896845,0,8,0,0.700000000000003,0.699999999999999,-3 -"1604",1534,2,1,0,2,2,0,-11,0,-2.2,0.300000000000001,4 -"1605",1534,2,2,2,3,1,0,-11,0,-2.2,0.300000000000001,4 -"1606",1534,2,3,3,4.49040107811285,1.49040107811285,0,-11,0,-2.2,0.300000000000001,4 -"1607",1535,2,1,0,2,2,0,-1,1,1.8,1,-10 -"1608",1535,2,2,2,3,1,0,-1,1,1.8,1,-10 -"1609",1535,2,3,3,6,3,0,-1,1,1.8,1,-10 -"1610",1535,2,4,6,6.5,0.5,0,-1,1,1.8,1,-10 -"1611",1535,2,5,6.5,8,1.5,0,-1,1,1.8,1,-10 -"1612",1535,2,6,8,9.18665623579406,1.18665623579406,0,-1,1,1.8,1,-10 -"1613",1536,2,1,0,0.477986527478711,0.477986527478711,1,15,1,-1.5,0.600000000000001,1 -"1614",1537,2,1,0,2,2,0,-19,0,-5,-1.2,-4 -"1615",1537,2,2,2,3,1,0,-19,0,-5,-1.2,-4 -"1616",1537,2,3,3,6,3,0,-19,0,-5,-1.2,-4 -"1617",1537,2,4,6,6.5,0.5,0,-19,0,-5,-1.2,-4 -"1618",1537,2,5,6.5,8,1.5,0,-19,0,-5,-1.2,-4 -"1619",1537,2,6,8,10,2,0,-19,0,-5,-1.2,-4 -"1620",1538,2,1,0,2,2,0,-2,1,3.4,-1.1,-5 -"1621",1538,2,2,2,3,1,0,-2,1,3.4,-1.1,-5 -"1622",1538,2,3,3,6,3,0,-2,1,3.4,-1.1,-5 -"1623",1538,2,4,6,6.5,0.5,0,-2,1,3.4,-1.1,-5 -"1624",1538,2,5,6.5,8,1.5,0,-2,1,3.4,-1.1,-5 -"1625",1538,2,6,8,10,2,0,-2,1,3.4,-1.1,-5 -"1626",1539,2,1,0,2,2,0,10,1,3.9,0.800000000000001,-1 -"1627",1539,2,2,2,3,1,0,10,1,3.9,0.800000000000001,-1 -"1628",1539,2,3,3,6,3,0,10,1,3.9,0.800000000000001,-1 -"1629",1539,2,4,6,6.5,0.5,0,10,1,3.9,0.800000000000001,-1 -"1630",1539,2,5,6.5,8,1.5,0,10,1,3.9,0.800000000000001,-1 -"1631",1539,2,6,8,10,2,0,10,1,3.9,0.800000000000001,-1 -"1632",1540,2,1,0,0.456374917839872,0.456374917839872,1,11,1,-8.2,-0.6,-5 -"1633",1541,2,1,0,0.0815842808056195,0.0815842808056195,1,28,0,-9.9,-0.0999999999999996,-2 -"1634",1542,2,1,0,0.376938298683741,0.376938298683741,1,12,1,-3.7,0.699999999999999,-1 -"1635",1543,2,1,0,2,2,0,-7,1,0,-0.800000000000001,-9 -"1636",1543,2,2,2,3,1,0,-7,1,0,-0.800000000000001,-9 -"1637",1543,2,3,3,3.38640428652877,0.386404286528772,0,-7,1,0,-0.800000000000001,-9 -"1638",1544,2,1,0,2,2,0,3,0,-4,-0.199999999999999,-1 -"1639",1544,2,2,2,2.45649071547845,0.456490715478452,1,3,0,-4,-0.199999999999999,-1 -"1640",1545,2,1,0,0.329321306108181,0.329321306108181,1,-15,0,-7.4,-0.0999999999999996,-4 diff --git a/tests/testthat/data_files/SURVIVAL/EXPAND_NO_MISSING/expand_no_missing_study3.csv b/tests/testthat/data_files/SURVIVAL/EXPAND_NO_MISSING/expand_no_missing_study3.csv deleted file mode 100644 index 7cc650da..00000000 --- a/tests/testthat/data_files/SURVIVAL/EXPAND_NO_MISSING/expand_no_missing_study3.csv +++ /dev/null @@ -1,2689 +0,0 @@ -"","id","study.id","time.id","starttime","endtime","survtime","cens","age.60","female","noise.56","pm10.16","bmi.26" -"1",1546,3,1,0,2,2,0,-3,1,1.3,0,-7 -"2",1546,3,2,2,3,1,0,-3,1,1.3,0,-7 -"3",1546,3,3,3,6,3,0,-3,1,1.3,0,-7 -"4",1546,3,4,6,6.5,0.5,0,-3,1,1.3,0,-7 -"5",1546,3,5,6.5,8,1.5,0,-3,1,1.3,0,-7 -"6",1546,3,6,8,8.025658515,0.025658515,0,-3,1,1.3,0,-7 -"7",1547,3,1,0,2,2,0,0,0,3.9,-1.3,3 -"8",1547,3,2,2,3,1,0,0,0,3.9,-1.3,3 -"9",1547,3,3,3,6,3,0,0,0,3.9,-1.3,3 -"10",1547,3,4,6,6.5,0.5,0,0,0,3.9,-1.3,3 -"11",1547,3,5,6.5,8,1.5,0,0,0,3.9,-1.3,3 -"12",1547,3,6,8,8.436530311,0.436530311,1,0,0,3.9,-1.3,3 -"13",1548,3,1,0,0.056829119,0.056829119,1,-1,0,3.6,1.3,12 -"14",1549,3,1,0,0.500206519,0.500206519,1,3,0,-2.5,0.7,3 -"15",1550,3,1,0,0.838206874,0.838206874,1,-11,0,4.1,0.8,1 -"16",1551,3,1,0,1.301886423,1.301886423,1,12,0,-6.4,-0.7,-2 -"17",1552,3,1,0,0.998427214,0.998427214,1,8,1,7.4,1.1,2 -"18",1553,3,1,0,2,2,0,-7,1,1,-1.6,-1 -"19",1553,3,2,2,3,1,0,-7,1,1,-1.6,-1 -"20",1553,3,3,3,6,3,0,-7,1,1,-1.6,-1 -"21",1553,3,4,6,6.5,0.5,0,-7,1,1,-1.6,-1 -"22",1553,3,5,6.5,8,1.5,0,-7,1,1,-1.6,-1 -"23",1553,3,6,8,8.085646845,0.085646845,0,-7,1,1,-1.6,-1 -"24",1554,3,1,0,2,2,0,13,1,2,-1.4,3 -"25",1554,3,2,2,3,1,0,13,1,2,-1.4,3 -"26",1554,3,3,3,6,3,0,13,1,2,-1.4,3 -"27",1554,3,4,6,6.5,0.5,0,13,1,2,-1.4,3 -"28",1554,3,5,6.5,7.913687811,1.413687811,0,13,1,2,-1.4,3 -"29",1555,3,1,0,2,2,0,5,1,-7.3,-1.2,8 -"30",1555,3,2,2,3,1,0,5,1,-7.3,-1.2,8 -"31",1555,3,3,3,5.207776032,2.207776032,0,5,1,-7.3,-1.2,8 -"32",1556,3,1,0,2,2,0,-2,1,1.6,-1.6,-6 -"33",1556,3,2,2,3,1,0,-2,1,1.6,-1.6,-6 -"34",1556,3,3,3,6,3,0,-2,1,1.6,-1.6,-6 -"35",1556,3,4,6,6.5,0.5,0,-2,1,1.6,-1.6,-6 -"36",1556,3,5,6.5,8,1.5,0,-2,1,1.6,-1.6,-6 -"37",1556,3,6,8,10,2,0,-2,1,1.6,-1.6,-6 -"38",1557,3,1,0,2,2,0,-31,0,5.8,0.9,4 -"39",1557,3,2,2,3,1,0,-31,0,5.8,0.9,4 -"40",1557,3,3,3,4.996464792,1.996464792,0,-31,0,5.8,0.9,4 -"41",1558,3,1,0,1.094422865,1.094422865,0,-28,0,-5.6,1.2,-9 -"42",1559,3,1,0,0.281486,0.281486,0,4,1,0.8,-0.7,2 -"43",1560,3,1,0,2,2,0,-33,0,1.8,0.3,-4 -"44",1560,3,2,2,3,1,0,-33,0,1.8,0.3,-4 -"45",1560,3,3,3,6,3,0,-33,0,1.8,0.3,-4 -"46",1560,3,4,6,6.5,0.5,0,-33,0,1.8,0.3,-4 -"47",1560,3,5,6.5,8,1.5,0,-33,0,1.8,0.3,-4 -"48",1560,3,6,8,10,2,0,-33,0,1.8,0.3,-4 -"49",1561,3,1,0,2,2,0,1,0,-1.9,-0.1,-2 -"50",1561,3,2,2,3,1,0,1,0,-1.9,-0.1,-2 -"51",1561,3,3,3,6,3,0,1,0,-1.9,-0.1,-2 -"52",1561,3,4,6,6.5,0.5,0,1,0,-1.9,-0.1,-2 -"53",1561,3,5,6.5,8,1.5,0,1,0,-1.9,-0.1,-2 -"54",1561,3,6,8,8.45525892,0.45525892,1,1,0,-1.9,-0.1,-2 -"55",1562,3,1,0,2,2,0,-3,0,-1.5,0.5,-3 -"56",1562,3,2,2,3,1,0,-3,0,-1.5,0.5,-3 -"57",1562,3,3,3,5.940701228,2.940701228,0,-3,0,-1.5,0.5,-3 -"58",1563,3,1,0,0.475868902,0.475868902,1,5,1,0.5,1.1,14 -"59",1564,3,1,0,2,2,0,-13,0,-6.4,-2.1,-4 -"60",1564,3,2,2,3,1,0,-13,0,-6.4,-2.1,-4 -"61",1564,3,3,3,4.483878328,1.483878328,0,-13,0,-6.4,-2.1,-4 -"62",1565,3,1,0,0.065025325,0.065025325,1,-4,0,-3.2,1.4,6 -"63",1566,3,1,0,2,2,0,-27,1,-0.9,0.3,-3 -"64",1566,3,2,2,3,1,0,-27,1,-0.9,0.3,-3 -"65",1566,3,3,3,3.670973198,0.670973198,0,-27,1,-0.9,0.3,-3 -"66",1567,3,1,0,2,2,0,-20,0,1.7,-1.1,-5 -"67",1567,3,2,2,3,1,0,-20,0,1.7,-1.1,-5 -"68",1567,3,3,3,4.122493482,1.122493482,0,-20,0,1.7,-1.1,-5 -"69",1568,3,1,0,0.082112111,0.082112111,1,36,0,-2.2,-0.3,3 -"70",1569,3,1,0,0.246774602,0.246774602,0,-24,1,-11.8,1,2 -"71",1570,3,1,0,2,2,0,-27,0,2.8,0.7,-5 -"72",1570,3,2,2,3,1,0,-27,0,2.8,0.7,-5 -"73",1570,3,3,3,6,3,0,-27,0,2.8,0.7,-5 -"74",1570,3,4,6,6.34325888,0.34325888,0,-27,0,2.8,0.7,-5 -"75",1571,3,1,0,0.596057512,0.596057512,1,23,0,-1.9,-0.7,-3 -"76",1572,3,1,0,0.349045938,0.349045938,1,18,0,-4.7,0,0 -"77",1573,3,1,0,1.603992532,1.603992532,1,12,0,4.8,-0.1,1 -"78",1574,3,1,0,0.158175123,0.158175123,1,23,1,-4.5,0.6,7 -"79",1575,3,1,0,2,2,0,6,1,1.1,-1.6,-3 -"80",1575,3,2,2,3,1,0,6,1,1.1,-1.6,-3 -"81",1575,3,3,3,5.595638087,2.595638087,0,6,1,1.1,-1.6,-3 -"82",1576,3,1,0,2,2,0,-1,0,3.9,0.2,-1 -"83",1576,3,2,2,2.297021983,0.297021983,0,-1,0,3.9,0.2,-1 -"84",1577,3,1,0,0.725314705,0.725314705,0,22,0,0.9,-0.1,5 -"85",1578,3,1,0,2,2,0,-17,0,3,-0.3,0 -"86",1578,3,2,2,2.898327731,0.898327731,0,-17,0,3,-0.3,0 -"87",1579,3,1,0,0.393369343,0.393369343,1,11,1,5.2,1.3,-1 -"88",1580,3,1,0,0.266641789,0.266641789,1,1,0,-2.1,-0.6,5 -"89",1581,3,1,0,1.090301869,1.090301869,1,20,0,-5.1,-0.1,5 -"90",1582,3,1,0,1.480190142,1.480190142,1,-21,1,2,-0.1,10 -"91",1583,3,1,0,2,2,0,0,1,4.6,-0.1,-5 -"92",1583,3,2,2,3,1,0,0,1,4.6,-0.1,-5 -"93",1583,3,3,3,6,3,0,0,1,4.6,-0.1,-5 -"94",1583,3,4,6,6.5,0.5,0,0,1,4.6,-0.1,-5 -"95",1583,3,5,6.5,8,1.5,0,0,1,4.6,-0.1,-5 -"96",1583,3,6,8,10,2,0,0,1,4.6,-0.1,-5 -"97",1584,3,1,0,2,2,0,9,0,-5.9,-0.4,0 -"98",1584,3,2,2,2.713952848,0.713952848,0,9,0,-5.9,-0.4,0 -"99",1585,3,1,0,0.131872807,0.131872807,1,33,1,4,-0.1,-1 -"100",1586,3,1,0,2,2,0,-5,0,3,-1.9,2 -"101",1586,3,2,2,2.871803995,0.871803995,1,-5,0,3,-1.9,2 -"102",1587,3,1,0,2,2,0,-35,0,-6.8,-0.5,5 -"103",1587,3,2,2,3,1,0,-35,0,-6.8,-0.5,5 -"104",1587,3,3,3,6,3,0,-35,0,-6.8,-0.5,5 -"105",1587,3,4,6,6.5,0.5,0,-35,0,-6.8,-0.5,5 -"106",1587,3,5,6.5,8,1.5,0,-35,0,-6.8,-0.5,5 -"107",1587,3,6,8,9.442285914,1.442285914,0,-35,0,-6.8,-0.5,5 -"108",1588,3,1,0,2,2,0,2,1,0,-0.8,2 -"109",1588,3,2,2,3,1,0,2,1,0,-0.8,2 -"110",1588,3,3,3,6,3,0,2,1,0,-0.8,2 -"111",1588,3,4,6,6.5,0.5,0,2,1,0,-0.8,2 -"112",1588,3,5,6.5,8,1.5,0,2,1,0,-0.8,2 -"113",1588,3,6,8,10,2,0,2,1,0,-0.8,2 -"114",1589,3,1,0,0.106739085,0.106739085,1,12,0,1.8,1.6,-1 -"115",1590,3,1,0,0.9464457,0.9464457,1,5,1,9.2,0.1,9 -"116",1591,3,1,0,1.407452957,1.407452957,1,-16,0,4.1,1.7,5 -"117",1592,3,1,0,2,2,0,-19,1,-6.4,-1,-6 -"118",1592,3,2,2,3,1,0,-19,1,-6.4,-1,-6 -"119",1592,3,3,3,6,3,0,-19,1,-6.4,-1,-6 -"120",1592,3,4,6,6.5,0.5,0,-19,1,-6.4,-1,-6 -"121",1592,3,5,6.5,8,1.5,0,-19,1,-6.4,-1,-6 -"122",1592,3,6,8,10,2,0,-19,1,-6.4,-1,-6 -"123",1593,3,1,0,2,2,0,-2,1,2.1,-1,3 -"124",1593,3,2,2,3,1,0,-2,1,2.1,-1,3 -"125",1593,3,3,3,3.997112684,0.997112684,0,-2,1,2.1,-1,3 -"126",1594,3,1,0,2,2,0,17,1,4.2,-1,-3 -"127",1594,3,2,2,3,1,0,17,1,4.2,-1,-3 -"128",1594,3,3,3,5.911152927,2.911152927,0,17,1,4.2,-1,-3 -"129",1595,3,1,0,0.277360671,0.277360671,1,19,0,0.1,0.8,3 -"130",1596,3,1,0,2,2,0,3,1,-0.9,0.5,-9 -"131",1596,3,2,2,3,1,0,3,1,-0.9,0.5,-9 -"132",1596,3,3,3,6,3,0,3,1,-0.9,0.5,-9 -"133",1596,3,4,6,6.5,0.5,0,3,1,-0.9,0.5,-9 -"134",1596,3,5,6.5,8,1.5,0,3,1,-0.9,0.5,-9 -"135",1596,3,6,8,10,2,0,3,1,-0.9,0.5,-9 -"136",1597,3,1,0,1.199794425,1.199794425,1,-13,1,0.7,-0.8,1 -"137",1598,3,1,0,1.98645006,1.98645006,1,1,1,1.5,-0.2,0 -"138",1599,3,1,0,0.877659715,0.877659715,0,8,0,-6,-0.7,11 -"139",1600,3,1,0,1.502659824,1.502659824,1,-18,1,7,0.7,-1 -"140",1601,3,1,0,2,2,0,-7,1,-1.2,1.1,6 -"141",1601,3,2,2,3,1,0,-7,1,-1.2,1.1,6 -"142",1601,3,3,3,6,3,0,-7,1,-1.2,1.1,6 -"143",1601,3,4,6,6.5,0.5,0,-7,1,-1.2,1.1,6 -"144",1601,3,5,6.5,6.865511569,0.365511569,0,-7,1,-1.2,1.1,6 -"145",1602,3,1,0,2,2,0,6,1,5.1,-0.9,0 -"146",1602,3,2,2,3,1,0,6,1,5.1,-0.9,0 -"147",1602,3,3,3,6,3,0,6,1,5.1,-0.9,0 -"148",1602,3,4,6,6.5,0.5,0,6,1,5.1,-0.9,0 -"149",1602,3,5,6.5,8,1.5,0,6,1,5.1,-0.9,0 -"150",1602,3,6,8,10,2,0,6,1,5.1,-0.9,0 -"151",1603,3,1,0,0.408528432,0.408528432,0,1,1,3.6,-0.2,2 -"152",1604,3,1,0,1.036762724,1.036762724,0,7,1,-3.3,1.3,0 -"153",1605,3,1,0,2,2,0,-7,0,-0.1,0,0 -"154",1605,3,2,2,2.678368473,0.678368473,0,-7,0,-0.1,0,0 -"155",1606,3,1,0,2,2,0,-19,1,0.8,-1.2,0 -"156",1606,3,2,2,3,1,0,-19,1,0.8,-1.2,0 -"157",1606,3,3,3,6,3,0,-19,1,0.8,-1.2,0 -"158",1606,3,4,6,6.5,0.5,0,-19,1,0.8,-1.2,0 -"159",1606,3,5,6.5,8,1.5,0,-19,1,0.8,-1.2,0 -"160",1606,3,6,8,8.47786383,0.47786383,0,-19,1,0.8,-1.2,0 -"161",1607,3,1,0,2,2,0,-3,1,-5.3,-0.8,3 -"162",1607,3,2,2,3,1,0,-3,1,-5.3,-0.8,3 -"163",1607,3,3,3,6,3,0,-3,1,-5.3,-0.8,3 -"164",1607,3,4,6,6.5,0.5,0,-3,1,-5.3,-0.8,3 -"165",1607,3,5,6.5,7.859832417,1.359832417,1,-3,1,-5.3,-0.8,3 -"166",1608,3,1,0,1.553149728,1.553149728,1,-14,1,3.4,1.4,-4 -"167",1609,3,1,0,0.010648029,0.010648029,1,13,0,-4.1,1.3,4 -"168",1610,3,1,0,1.252412709,1.252412709,1,-2,1,4.2,-0.6,6 -"169",1611,3,1,0,2,2,0,23,1,-0.3,1.1,-11 -"170",1611,3,2,2,3,1,0,23,1,-0.3,1.1,-11 -"171",1611,3,3,3,6,3,0,23,1,-0.3,1.1,-11 -"172",1611,3,4,6,6.5,0.5,0,23,1,-0.3,1.1,-11 -"173",1611,3,5,6.5,8,1.5,0,23,1,-0.3,1.1,-11 -"174",1611,3,6,8,10,2,0,23,1,-0.3,1.1,-11 -"175",1612,3,1,0,0.672376248,0.672376248,0,-12,1,1.9,-0.5,-2 -"176",1613,3,1,0,2,2,0,7,0,1.7,-1.7,-3 -"177",1613,3,2,2,3,1,0,7,0,1.7,-1.7,-3 -"178",1613,3,3,3,6,3,0,7,0,1.7,-1.7,-3 -"179",1613,3,4,6,6.5,0.5,0,7,0,1.7,-1.7,-3 -"180",1613,3,5,6.5,8,1.5,0,7,0,1.7,-1.7,-3 -"181",1613,3,6,8,10,2,0,7,0,1.7,-1.7,-3 -"182",1614,3,1,0,0.639274268,0.639274268,0,17,1,-1.2,-0.7,2 -"183",1615,3,1,0,2,2,0,-13,0,-0.3,-0.6,8 -"184",1615,3,2,2,2.562416302,0.562416302,1,-13,0,-0.3,-0.6,8 -"185",1616,3,1,0,0.019573684,0.019573684,1,16,0,1.1,0.5,2 -"186",1617,3,1,0,1.691684678,1.691684678,1,-7,1,-1.8,0.5,4 -"187",1618,3,1,0,1.463341228,1.463341228,1,20,0,2.1,-0.9,4 -"188",1619,3,1,0,2,2,0,-10,1,-1.9,-0.4,-8 -"189",1619,3,2,2,3,1,0,-10,1,-1.9,-0.4,-8 -"190",1619,3,3,3,3.659841052,0.659841052,0,-10,1,-1.9,-0.4,-8 -"191",1620,3,1,0,1.07299847,1.07299847,1,15,1,-3.8,1.1,-2 -"192",1621,3,1,0,2,2,0,-15,1,1,0.5,4 -"193",1621,3,2,2,3,1,0,-15,1,1,0.5,4 -"194",1621,3,3,3,6,3,0,-15,1,1,0.5,4 -"195",1621,3,4,6,6.5,0.5,0,-15,1,1,0.5,4 -"196",1621,3,5,6.5,8,1.5,0,-15,1,1,0.5,4 -"197",1621,3,6,8,10,2,0,-15,1,1,0.5,4 -"198",1622,3,1,0,2,2,0,-3,1,-1.7,0.7,-8 -"199",1622,3,2,2,2.962789908,0.962789908,0,-3,1,-1.7,0.7,-8 -"200",1623,3,1,0,2,2,0,-22,1,-3,-0.1,6 -"201",1623,3,2,2,3,1,0,-22,1,-3,-0.1,6 -"202",1623,3,3,3,6,3,0,-22,1,-3,-0.1,6 -"203",1623,3,4,6,6.5,0.5,0,-22,1,-3,-0.1,6 -"204",1623,3,5,6.5,8,1.5,0,-22,1,-3,-0.1,6 -"205",1623,3,6,8,10,2,0,-22,1,-3,-0.1,6 -"206",1624,3,1,0,1.446377183,1.446377183,1,-14,0,-3.1,-1,4 -"207",1625,3,1,0,0.76506547,0.76506547,1,-11,0,1.8,1,3 -"208",1626,3,1,0,0.47508924,0.47508924,1,11,1,4.3,-0.8,4 -"209",1627,3,1,0,0.542538359,0.542538359,1,0,1,3.9,-0.1,5 -"210",1628,3,1,0,2,2,0,-8,1,3.8,-0.3,-4 -"211",1628,3,2,2,2.615324415,0.615324415,0,-8,1,3.8,-0.3,-4 -"212",1629,3,1,0,0.350107297,0.350107297,1,-3,1,0.9,-1.3,3 -"213",1630,3,1,0,0.276822364,0.276822364,1,23,0,-1.4,0,-1 -"214",1631,3,1,0,1.784433627,1.784433627,1,-21,1,0.5,-0.4,6 -"215",1632,3,1,0,0.71555691,0.71555691,0,-27,0,4,0.6,2 -"216",1633,3,1,0,0.373874579,0.373874579,1,10,0,1.9,-0.5,9 -"217",1634,3,1,0,1.98985075,1.98985075,1,-3,0,-4.5,1.2,2 -"218",1635,3,1,0,2,2,0,3,0,-0.3,-0.1,1 -"219",1635,3,2,2,3,1,0,3,0,-0.3,-0.1,1 -"220",1635,3,3,3,6,3,0,3,0,-0.3,-0.1,1 -"221",1635,3,4,6,6.5,0.5,0,3,0,-0.3,-0.1,1 -"222",1635,3,5,6.5,6.839444838,0.339444838,1,3,0,-0.3,-0.1,1 -"223",1636,3,1,0,1.267393597,1.267393597,1,20,0,0.7,0.2,-7 -"224",1637,3,1,0,2,2,0,-18,1,5.5,0.2,3 -"225",1637,3,2,2,3,1,0,-18,1,5.5,0.2,3 -"226",1637,3,3,3,3.162912541,0.162912541,0,-18,1,5.5,0.2,3 -"227",1638,3,1,0,0.160055714,0.160055714,1,23,1,2.3,3.1,2 -"228",1639,3,1,0,0.577852216,0.577852216,0,25,0,-6.4,-0.8,-5 -"229",1640,3,1,0,1.458882676,1.458882676,1,-1,0,2,-2.2,1 -"230",1641,3,1,0,2,2,0,0,1,1.5,-1.4,7 -"231",1641,3,2,2,3,1,0,0,1,1.5,-1.4,7 -"232",1641,3,3,3,6,3,0,0,1,1.5,-1.4,7 -"233",1641,3,4,6,6.5,0.5,0,0,1,1.5,-1.4,7 -"234",1641,3,5,6.5,8,1.5,0,0,1,1.5,-1.4,7 -"235",1641,3,6,8,10,2,0,0,1,1.5,-1.4,7 -"236",1642,3,1,0,1.6446259,1.6446259,1,-21,0,-1.2,-0.1,0 -"237",1643,3,1,0,1.136967268,1.136967268,1,-7,1,0.2,1,2 -"238",1644,3,1,0,2,2,0,-2,1,-1.6,-0.9,3 -"239",1644,3,2,2,3,1,0,-2,1,-1.6,-0.9,3 -"240",1644,3,3,3,6,3,0,-2,1,-1.6,-0.9,3 -"241",1644,3,4,6,6.5,0.5,0,-2,1,-1.6,-0.9,3 -"242",1644,3,5,6.5,8,1.5,0,-2,1,-1.6,-0.9,3 -"243",1644,3,6,8,10,2,0,-2,1,-1.6,-0.9,3 -"244",1645,3,1,0,1.675042794,1.675042794,1,-3,0,-0.5,-0.2,3 -"245",1646,3,1,0,1.496712361,1.496712361,0,-27,1,0.8,-1.5,1 -"246",1647,3,1,0,0.385659676,0.385659676,0,-8,1,3.9,-0.8,-10 -"247",1648,3,1,0,2,2,0,-25,1,1.1,1.1,1 -"248",1648,3,2,2,3,1,0,-25,1,1.1,1.1,1 -"249",1648,3,3,3,6,3,0,-25,1,1.1,1.1,1 -"250",1648,3,4,6,6.5,0.5,0,-25,1,1.1,1.1,1 -"251",1648,3,5,6.5,8,1.5,0,-25,1,1.1,1.1,1 -"252",1648,3,6,8,10,2,0,-25,1,1.1,1.1,1 -"253",1649,3,1,0,2,2,0,-20,1,3.4,-2.1,7 -"254",1649,3,2,2,3,1,0,-20,1,3.4,-2.1,7 -"255",1649,3,3,3,6,3,0,-20,1,3.4,-2.1,7 -"256",1649,3,4,6,6.5,0.5,0,-20,1,3.4,-2.1,7 -"257",1649,3,5,6.5,8,1.5,0,-20,1,3.4,-2.1,7 -"258",1649,3,6,8,8.081064333,0.081064333,0,-20,1,3.4,-2.1,7 -"259",1650,3,1,0,2,2,0,2,0,-0.7,0,-6 -"260",1650,3,2,2,2.422405584,0.422405584,0,2,0,-0.7,0,-6 -"261",1651,3,1,0,0.989659424,0.989659424,1,-1,0,6.9,-0.3,0 -"262",1652,3,1,0,0.508788424,0.508788424,1,0,0,4.5,0.3,-3 -"263",1653,3,1,0,2,2,0,27,0,2.6,-0.8,3 -"264",1653,3,2,2,3,1,0,27,0,2.6,-0.8,3 -"265",1653,3,3,3,3.039369083,0.039369083,0,27,0,2.6,-0.8,3 -"266",1654,3,1,0,2,2,0,-10,1,-2.4,-0.8,1 -"267",1654,3,2,2,3,1,0,-10,1,-2.4,-0.8,1 -"268",1654,3,3,3,6,3,0,-10,1,-2.4,-0.8,1 -"269",1654,3,4,6,6.5,0.5,0,-10,1,-2.4,-0.8,1 -"270",1654,3,5,6.5,7.289038726,0.789038726,0,-10,1,-2.4,-0.8,1 -"271",1655,3,1,0,0.934364851,0.934364851,1,19,1,8.1,-0.4,-5 -"272",1656,3,1,0,0.670789229,0.670789229,0,9,0,-5.1,0,-6 -"273",1657,3,1,0,2,2,0,-13,0,-6.6,-0.1,-4 -"274",1657,3,2,2,3,1,0,-13,0,-6.6,-0.1,-4 -"275",1657,3,3,3,6,3,0,-13,0,-6.6,-0.1,-4 -"276",1657,3,4,6,6.5,0.5,0,-13,0,-6.6,-0.1,-4 -"277",1657,3,5,6.5,8,1.5,0,-13,0,-6.6,-0.1,-4 -"278",1657,3,6,8,10,2,0,-13,0,-6.6,-0.1,-4 -"279",1658,3,1,0,0.519219646,0.519219646,0,-7,0,4.2,1.1,0 -"280",1659,3,1,0,1.188729704,1.188729704,1,2,0,-3.5,0.3,-2 -"281",1660,3,1,0,0.83428084,0.83428084,0,11,1,2.3,-0.9,-6 -"282",1661,3,1,0,0.677474357,0.677474357,1,-18,0,-0.4,0.8,5 -"283",1662,3,1,0,0.11272811,0.11272811,1,27,1,0.8,-0.5,0 -"284",1663,3,1,0,0.103376989,0.103376989,0,8,1,5.3,-0.9,4 -"285",1664,3,1,0,1.160793892,1.160793892,1,17,1,4.3,-0.9,3 -"286",1665,3,1,0,0.399608833,0.399608833,0,13,0,1.4,0.6,5 -"287",1666,3,1,0,2,2,0,17,1,12.4,0.1,-2 -"288",1666,3,2,2,3,1,0,17,1,12.4,0.1,-2 -"289",1666,3,3,3,6,3,0,17,1,12.4,0.1,-2 -"290",1666,3,4,6,6.5,0.5,0,17,1,12.4,0.1,-2 -"291",1666,3,5,6.5,7.530026923,1.030026923,1,17,1,12.4,0.1,-2 -"292",1667,3,1,0,0.084790976,0.084790976,1,-4,0,-4.7,0.8,5 -"293",1668,3,1,0,1.934030908,1.934030908,1,-6,1,-2.6,1.1,-8 -"294",1669,3,1,0,0.131872321,0.131872321,0,1,0,-7.2,0.1,-2 -"295",1670,3,1,0,0.885132998,0.885132998,1,1,0,-0.9,-0.9,-1 -"296",1671,3,1,0,2,2,0,13,1,5.9,-0.2,-3 -"297",1671,3,2,2,2.779752575,0.779752575,0,13,1,5.9,-0.2,-3 -"298",1672,3,1,0,2,2,0,7,1,2.6,-0.7,-2 -"299",1672,3,2,2,3,1,0,7,1,2.6,-0.7,-2 -"300",1672,3,3,3,6,3,0,7,1,2.6,-0.7,-2 -"301",1672,3,4,6,6.5,0.5,0,7,1,2.6,-0.7,-2 -"302",1672,3,5,6.5,8,1.5,0,7,1,2.6,-0.7,-2 -"303",1672,3,6,8,10,2,0,7,1,2.6,-0.7,-2 -"304",1673,3,1,0,1.540400701,1.540400701,1,-23,1,-4.7,0.8,-6 -"305",1674,3,1,0,2,2,0,-6,0,7.9,-1.2,0 -"306",1674,3,2,2,3,1,0,-6,0,7.9,-1.2,0 -"307",1674,3,3,3,6,3,0,-6,0,7.9,-1.2,0 -"308",1674,3,4,6,6.5,0.5,0,-6,0,7.9,-1.2,0 -"309",1674,3,5,6.5,7.578334834,1.078334834,1,-6,0,7.9,-1.2,0 -"310",1675,3,1,0,0.400784455,0.400784455,1,-15,0,-4,0.7,2 -"311",1676,3,1,0,1.446155205,1.446155205,0,-9,0,10.9,-0.7,3 -"312",1677,3,1,0,1.745407047,1.745407047,1,-8,0,-6.9,0.8,-9 -"313",1678,3,1,0,2,2,0,-6,0,6.5,1,-3 -"314",1678,3,2,2,2.218091195,0.218091195,0,-6,0,6.5,1,-3 -"315",1679,3,1,0,2,2,0,-16,0,4.4,0.5,6 -"316",1679,3,2,2,2.732431376,0.732431376,0,-16,0,4.4,0.5,6 -"317",1680,3,1,0,2,2,0,-5,0,1,-0.6,3 -"318",1680,3,2,2,3,1,0,-5,0,1,-0.6,3 -"319",1680,3,3,3,6,3,0,-5,0,1,-0.6,3 -"320",1680,3,4,6,6.5,0.5,0,-5,0,1,-0.6,3 -"321",1680,3,5,6.5,8,1.5,0,-5,0,1,-0.6,3 -"322",1680,3,6,8,10,2,0,-5,0,1,-0.6,3 -"323",1681,3,1,0,2,2,0,-1,0,0.5,0,-8 -"324",1681,3,2,2,3,1,0,-1,0,0.5,0,-8 -"325",1681,3,3,3,6,3,0,-1,0,0.5,0,-8 -"326",1681,3,4,6,6.5,0.5,0,-1,0,0.5,0,-8 -"327",1681,3,5,6.5,8,1.5,0,-1,0,0.5,0,-8 -"328",1681,3,6,8,8.191606297,0.191606297,0,-1,0,0.5,0,-8 -"329",1682,3,1,0,2,2,0,-17,1,-1.1,-1.8,4 -"330",1682,3,2,2,2.199518404,0.199518404,0,-17,1,-1.1,-1.8,4 -"331",1683,3,1,0,2,2,0,3,1,-1.3,1.1,-2 -"332",1683,3,2,2,2.287567643,0.287567643,1,3,1,-1.3,1.1,-2 -"333",1684,3,1,0,2,2,0,21,0,2.1,-1.6,4 -"334",1684,3,2,2,3,1,0,21,0,2.1,-1.6,4 -"335",1684,3,3,3,6,3,0,21,0,2.1,-1.6,4 -"336",1684,3,4,6,6.5,0.5,0,21,0,2.1,-1.6,4 -"337",1684,3,5,6.5,7.606633391,1.106633391,0,21,0,2.1,-1.6,4 -"338",1685,3,1,0,0.515268149,0.515268149,1,12,0,3.2,0.9,2 -"339",1686,3,1,0,0.951308982,0.951308982,1,8,1,1,-0.3,-2 -"340",1687,3,1,0,2,2,0,14,0,-6.6,-0.5,3 -"341",1687,3,2,2,2.335769627,0.335769627,0,14,0,-6.6,-0.5,3 -"342",1688,3,1,0,2,2,0,3,0,0.1,-0.7,0 -"343",1688,3,2,2,3,1,0,3,0,0.1,-0.7,0 -"344",1688,3,3,3,5.000390746,2.000390746,0,3,0,0.1,-0.7,0 -"345",1689,3,1,0,2,2,0,-17,1,2.7,-0.4,-1 -"346",1689,3,2,2,3,1,0,-17,1,2.7,-0.4,-1 -"347",1689,3,3,3,6,3,0,-17,1,2.7,-0.4,-1 -"348",1689,3,4,6,6.5,0.5,0,-17,1,2.7,-0.4,-1 -"349",1689,3,5,6.5,8,1.5,0,-17,1,2.7,-0.4,-1 -"350",1689,3,6,8,10,2,0,-17,1,2.7,-0.4,-1 -"351",1690,3,1,0,2,2,0,-6,1,3.4,-0.8,-2 -"352",1690,3,2,2,3,1,0,-6,1,3.4,-0.8,-2 -"353",1690,3,3,3,6,3,0,-6,1,3.4,-0.8,-2 -"354",1690,3,4,6,6.5,0.5,0,-6,1,3.4,-0.8,-2 -"355",1690,3,5,6.5,8,1.5,0,-6,1,3.4,-0.8,-2 -"356",1690,3,6,8,10,2,0,-6,1,3.4,-0.8,-2 -"357",1691,3,1,0,2,2,0,10,0,2.6,0.7,-9 -"358",1691,3,2,2,3,1,0,10,0,2.6,0.7,-9 -"359",1691,3,3,3,6,3,0,10,0,2.6,0.7,-9 -"360",1691,3,4,6,6.5,0.5,0,10,0,2.6,0.7,-9 -"361",1691,3,5,6.5,8,1.5,0,10,0,2.6,0.7,-9 -"362",1691,3,6,8,10,2,0,10,0,2.6,0.7,-9 -"363",1692,3,1,0,2,2,0,-9,1,-1.6,-1.1,-3 -"364",1692,3,2,2,3,1,0,-9,1,-1.6,-1.1,-3 -"365",1692,3,3,3,5.929808765,2.929808765,0,-9,1,-1.6,-1.1,-3 -"366",1693,3,1,0,2,2,0,-5,0,-6.8,1.6,2 -"367",1693,3,2,2,3,1,0,-5,0,-6.8,1.6,2 -"368",1693,3,3,3,3.134783276,0.134783276,1,-5,0,-6.8,1.6,2 -"369",1694,3,1,0,2,2,0,-4,1,0.4,-1,0 -"370",1694,3,2,2,3,1,0,-4,1,0.4,-1,0 -"371",1694,3,3,3,6,3,0,-4,1,0.4,-1,0 -"372",1694,3,4,6,6.5,0.5,0,-4,1,0.4,-1,0 -"373",1694,3,5,6.5,8,1.5,0,-4,1,0.4,-1,0 -"374",1694,3,6,8,10,2,0,-4,1,0.4,-1,0 -"375",1695,3,1,0,2,2,0,8,1,-1.5,0.2,4 -"376",1695,3,2,2,2.713872786,0.713872786,1,8,1,-1.5,0.2,4 -"377",1696,3,1,0,1.891910825,1.891910825,1,-2,1,-4,1.6,-6 -"378",1697,3,1,0,2,2,0,-7,1,-0.4,-0.1,-5 -"379",1697,3,2,2,3,1,0,-7,1,-0.4,-0.1,-5 -"380",1697,3,3,3,6,3,0,-7,1,-0.4,-0.1,-5 -"381",1697,3,4,6,6.5,0.5,0,-7,1,-0.4,-0.1,-5 -"382",1697,3,5,6.5,8,1.5,0,-7,1,-0.4,-0.1,-5 -"383",1697,3,6,8,9.804747623,1.804747623,0,-7,1,-0.4,-0.1,-5 -"384",1698,3,1,0,0.802445117,0.802445117,1,2,0,10.2,0.2,3 -"385",1699,3,1,0,1.581098284,1.581098284,0,8,1,-0.8,-0.4,-9 -"386",1700,3,1,0,0.653604698,0.653604698,1,-9,0,4.4,-0.4,10 -"387",1701,3,1,0,0.340164988,0.340164988,1,5,0,-1,-0.1,9 -"388",1702,3,1,0,0.040761253,0.040761253,1,9,0,-0.8,0.2,2 -"389",1703,3,1,0,0.028988103,0.028988103,1,11,0,7.9,1.1,14 -"390",1704,3,1,0,2,2,0,-15,1,4.9,-0.7,-4 -"391",1704,3,2,2,3,1,0,-15,1,4.9,-0.7,-4 -"392",1704,3,3,3,6,3,0,-15,1,4.9,-0.7,-4 -"393",1704,3,4,6,6.5,0.5,0,-15,1,4.9,-0.7,-4 -"394",1704,3,5,6.5,8,1.5,0,-15,1,4.9,-0.7,-4 -"395",1704,3,6,8,8.98769588,0.98769588,1,-15,1,4.9,-0.7,-4 -"396",1705,3,1,0,0.000553179,0.000553179,1,7,0,5.9,1.2,1 -"397",1706,3,1,0,1.092324615,1.092324615,1,26,1,3.8,-0.1,2 -"398",1707,3,1,0,0.810044055,0.810044055,0,1,0,4.8,0.5,-1 -"399",1708,3,1,0,0.533953409,0.533953409,1,12,1,-0.7,0.1,1 -"400",1709,3,1,0,2,2,0,-6,1,-2.2,-1.2,-1 -"401",1709,3,2,2,3,1,0,-6,1,-2.2,-1.2,-1 -"402",1709,3,3,3,6,3,0,-6,1,-2.2,-1.2,-1 -"403",1709,3,4,6,6.5,0.5,0,-6,1,-2.2,-1.2,-1 -"404",1709,3,5,6.5,7.834913616,1.334913616,0,-6,1,-2.2,-1.2,-1 -"405",1710,3,1,0,1.897216827,1.897216827,0,0,0,-9,0.1,1 -"406",1711,3,1,0,0.244799925,0.244799925,1,-4,0,1,0.9,3 -"407",1712,3,1,0,0.382282185,0.382282185,0,-21,0,0.5,0.3,-4 -"408",1713,3,1,0,0.104945645,0.104945645,0,-9,0,-1.9,2,5 -"409",1714,3,1,0,0.33130395,0.33130395,0,-14,0,6.3,1.1,2 -"410",1715,3,1,0,1.199906685,1.199906685,0,-15,0,6.6,0.5,-5 -"411",1716,3,1,0,2,2,0,2,1,-3.2,-0.2,0 -"412",1716,3,2,2,3,1,0,2,1,-3.2,-0.2,0 -"413",1716,3,3,3,6,3,0,2,1,-3.2,-0.2,0 -"414",1716,3,4,6,6.5,0.5,0,2,1,-3.2,-0.2,0 -"415",1716,3,5,6.5,8,1.5,0,2,1,-3.2,-0.2,0 -"416",1716,3,6,8,10,2,0,2,1,-3.2,-0.2,0 -"417",1717,3,1,0,1.496421386,1.496421386,1,30,1,5.8,-0.8,0 -"418",1718,3,1,0,1.517204249,1.517204249,1,2,0,2.4,0.2,-2 -"419",1719,3,1,0,2,2,0,-1,1,-0.5,-0.9,-2 -"420",1719,3,2,2,2.390291732,0.390291732,0,-1,1,-0.5,-0.9,-2 -"421",1720,3,1,0,2,2,0,-37,1,-0.3,-0.4,-5 -"422",1720,3,2,2,3,1,0,-37,1,-0.3,-0.4,-5 -"423",1720,3,3,3,6,3,0,-37,1,-0.3,-0.4,-5 -"424",1720,3,4,6,6.234788875,0.234788875,0,-37,1,-0.3,-0.4,-5 -"425",1721,3,1,0,2,2,0,6,0,8.2,0,-4 -"426",1721,3,2,2,3,1,0,6,0,8.2,0,-4 -"427",1721,3,3,3,6,3,0,6,0,8.2,0,-4 -"428",1721,3,4,6,6.5,0.5,0,6,0,8.2,0,-4 -"429",1721,3,5,6.5,6.932384261,0.432384261,1,6,0,8.2,0,-4 -"430",1722,3,1,0,2,2,0,1,1,-2.4,-1.1,1 -"431",1722,3,2,2,3,1,0,1,1,-2.4,-1.1,1 -"432",1722,3,3,3,6,3,0,1,1,-2.4,-1.1,1 -"433",1722,3,4,6,6.5,0.5,0,1,1,-2.4,-1.1,1 -"434",1722,3,5,6.5,7.371861465,0.871861465,0,1,1,-2.4,-1.1,1 -"435",1723,3,1,0,2,2,0,3,1,2.3,-1.2,-6 -"436",1723,3,2,2,3,1,0,3,1,2.3,-1.2,-6 -"437",1723,3,3,3,4.01544989,1.01544989,0,3,1,2.3,-1.2,-6 -"438",1724,3,1,0,0.074345464,0.074345464,1,17,0,0.3,0.7,4 -"439",1725,3,1,0,0.621678403,0.621678403,1,14,1,-3.8,0.3,-11 -"440",1726,3,1,0,0.416841255,0.416841255,0,-6,0,-3.9,0.5,1 -"441",1727,3,1,0,1.13832654,1.13832654,1,8,0,2.1,-0.2,6 -"442",1728,3,1,0,1.438937734,1.438937734,0,-30,0,7,-1,-2 -"443",1729,3,1,0,2,2,0,-16,1,-5.3,0.7,1 -"444",1729,3,2,2,2.372990563,0.372990563,0,-16,1,-5.3,0.7,1 -"445",1730,3,1,0,2,2,0,10,1,3.3,-0.6,7 -"446",1730,3,2,2,3,1,0,10,1,3.3,-0.6,7 -"447",1730,3,3,3,4.083951292,1.083951292,1,10,1,3.3,-0.6,7 -"448",1731,3,1,0,0.529096109,0.529096109,0,-8,1,-4.8,0.5,-4 -"449",1732,3,1,0,1.409201734,1.409201734,1,-8,1,-1,1,-8 -"450",1733,3,1,0,2,2,0,-18,1,3.3,1.2,-3 -"451",1733,3,2,2,3,1,0,-18,1,3.3,1.2,-3 -"452",1733,3,3,3,4.239269097,1.239269097,0,-18,1,3.3,1.2,-3 -"453",1734,3,1,0,0.480063951,0.480063951,1,2,0,0.2,1,5 -"454",1735,3,1,0,0.130962253,0.130962253,0,8,0,3.9,0.9,-4 -"455",1736,3,1,0,0.185060724,0.185060724,1,24,1,2.8,-1.8,10 -"456",1737,3,1,0,0.655688253,0.655688253,1,3,0,6.1,-0.6,3 -"457",1738,3,1,0,2,2,0,-7,0,0.2,0.1,1 -"458",1738,3,2,2,3,1,0,-7,0,0.2,0.1,1 -"459",1738,3,3,3,3.121789087,0.121789087,0,-7,0,0.2,0.1,1 -"460",1739,3,1,0,0.868176921,0.868176921,1,4,0,2.8,-0.5,0 -"461",1740,3,1,0,2,2,0,-37,0,-2.8,-1.2,-6 -"462",1740,3,2,2,3,1,0,-37,0,-2.8,-1.2,-6 -"463",1740,3,3,3,4.409004536,1.409004536,0,-37,0,-2.8,-1.2,-6 -"464",1741,3,1,0,2,2,0,31,0,-3.1,-1.2,-7 -"465",1741,3,2,2,3,1,0,31,0,-3.1,-1.2,-7 -"466",1741,3,3,3,6,3,0,31,0,-3.1,-1.2,-7 -"467",1741,3,4,6,6.5,0.5,0,31,0,-3.1,-1.2,-7 -"468",1741,3,5,6.5,8,1.5,0,31,0,-3.1,-1.2,-7 -"469",1741,3,6,8,10,2,0,31,0,-3.1,-1.2,-7 -"470",1742,3,1,0,2,2,0,12,1,6.5,0.9,-2 -"471",1742,3,2,2,3,1,0,12,1,6.5,0.9,-2 -"472",1742,3,3,3,6,3,0,12,1,6.5,0.9,-2 -"473",1742,3,4,6,6.5,0.5,0,12,1,6.5,0.9,-2 -"474",1742,3,5,6.5,7.05056273,0.55056273,1,12,1,6.5,0.9,-2 -"475",1743,3,1,0,0.777569418,0.777569418,1,10,1,-4.3,1.1,2 -"476",1744,3,1,0,2,2,0,-1,0,-0.9,-0.2,-3 -"477",1744,3,2,2,2.086018687,0.086018687,0,-1,0,-0.9,-0.2,-3 -"478",1745,3,1,0,0.403066201,0.403066201,1,-15,0,-3.8,2,7 -"479",1746,3,1,0,1.201486588,1.201486588,1,1,0,6.5,1.1,-4 -"480",1747,3,1,0,1.960539678,1.960539678,1,1,1,4.1,-0.4,1 -"481",1748,3,1,0,1.016644142,1.016644142,0,-11,0,8.1,-0.4,3 -"482",1749,3,1,0,0.372561426,0.372561426,1,16,1,4.9,0.9,3 -"483",1750,3,1,0,2,2,0,-21,0,3.3,0,-8 -"484",1750,3,2,2,3,1,0,-21,0,3.3,0,-8 -"485",1750,3,3,3,5.196247581,2.196247581,0,-21,0,3.3,0,-8 -"486",1751,3,1,0,1.113624719,1.113624719,1,24,0,-2.6,-0.6,-2 -"487",1752,3,1,0,1.178564427,1.178564427,0,-20,0,1,-0.3,3 -"488",1753,3,1,0,2,2,0,-10,0,1.5,0.6,4 -"489",1753,3,2,2,3,1,0,-10,0,1.5,0.6,4 -"490",1753,3,3,3,6,3,0,-10,0,1.5,0.6,4 -"491",1753,3,4,6,6.5,0.5,0,-10,0,1.5,0.6,4 -"492",1753,3,5,6.5,8,1.5,0,-10,0,1.5,0.6,4 -"493",1753,3,6,8,10,2,0,-10,0,1.5,0.6,4 -"494",1754,3,1,0,2,2,0,12,0,-6.1,-0.6,-5 -"495",1754,3,2,2,3,1,0,12,0,-6.1,-0.6,-5 -"496",1754,3,3,3,6,3,0,12,0,-6.1,-0.6,-5 -"497",1754,3,4,6,6.5,0.5,0,12,0,-6.1,-0.6,-5 -"498",1754,3,5,6.5,6.902217969,0.402217969,0,12,0,-6.1,-0.6,-5 -"499",1755,3,1,0,0.080817122,0.080817122,1,-14,0,1.4,0.7,2 -"500",1756,3,1,0,1.804194438,1.804194438,1,0,1,-3.6,1.4,3 -"501",1757,3,1,0,1.898819357,1.898819357,0,9,1,-6.7,-1.5,12 -"502",1758,3,1,0,0.207445696,0.207445696,0,16,0,-2.1,-1,9 -"503",1759,3,1,0,0.627125547,0.627125547,1,16,0,-3.3,-0.2,8 -"504",1760,3,1,0,2,2,0,10,0,2.9,-0.9,-5 -"505",1760,3,2,2,3,1,0,10,0,2.9,-0.9,-5 -"506",1760,3,3,3,6,3,0,10,0,2.9,-0.9,-5 -"507",1760,3,4,6,6.5,0.5,0,10,0,2.9,-0.9,-5 -"508",1760,3,5,6.5,8,1.5,0,10,0,2.9,-0.9,-5 -"509",1760,3,6,8,9.135084981,1.135084981,0,10,0,2.9,-0.9,-5 -"510",1761,3,1,0,2,2,0,-6,1,5,-0.9,-6 -"511",1761,3,2,2,3,1,0,-6,1,5,-0.9,-6 -"512",1761,3,3,3,6,3,0,-6,1,5,-0.9,-6 -"513",1761,3,4,6,6.5,0.5,0,-6,1,5,-0.9,-6 -"514",1761,3,5,6.5,8,1.5,0,-6,1,5,-0.9,-6 -"515",1761,3,6,8,9.815484817,1.815484817,0,-6,1,5,-0.9,-6 -"516",1762,3,1,0,2,2,0,-20,1,0.1,0.1,-2 -"517",1762,3,2,2,3,1,0,-20,1,0.1,0.1,-2 -"518",1762,3,3,3,6,3,0,-20,1,0.1,0.1,-2 -"519",1762,3,4,6,6.5,0.5,0,-20,1,0.1,0.1,-2 -"520",1762,3,5,6.5,8,1.5,0,-20,1,0.1,0.1,-2 -"521",1762,3,6,8,8.932877528,0.932877528,0,-20,1,0.1,0.1,-2 -"522",1763,3,1,0,1.030106389,1.030106389,1,-5,0,-5.1,-0.1,6 -"523",1764,3,1,0,1.707983357,1.707983357,1,-5,0,0.6,0.6,0 -"524",1765,3,1,0,1.042443221,1.042443221,0,-12,0,-4,-2,-2 -"525",1766,3,1,0,2,2,0,-8,1,4.8,0.3,-10 -"526",1766,3,2,2,2.223381271,0.223381271,0,-8,1,4.8,0.3,-10 -"527",1767,3,1,0,2,2,0,-2,0,-4.9,0.9,0 -"528",1767,3,2,2,2.504339248,0.504339248,1,-2,0,-4.9,0.9,0 -"529",1768,3,1,0,0.539405122,0.539405122,0,6,1,0.9,0,-2 -"530",1769,3,1,0,2,2,0,-29,0,-0.2,0.1,6 -"531",1769,3,2,2,3,1,0,-29,0,-0.2,0.1,6 -"532",1769,3,3,3,6,3,0,-29,0,-0.2,0.1,6 -"533",1769,3,4,6,6.5,0.5,0,-29,0,-0.2,0.1,6 -"534",1769,3,5,6.5,7.51835628,1.01835628,0,-29,0,-0.2,0.1,6 -"535",1770,3,1,0,0.220168872,0.220168872,1,-26,0,7.6,1.1,4 -"536",1771,3,1,0,2,2,0,-10,0,1.7,0.4,-6 -"537",1771,3,2,2,3,1,0,-10,0,1.7,0.4,-6 -"538",1771,3,3,3,6,3,0,-10,0,1.7,0.4,-6 -"539",1771,3,4,6,6.5,0.5,0,-10,0,1.7,0.4,-6 -"540",1771,3,5,6.5,8,1.5,0,-10,0,1.7,0.4,-6 -"541",1771,3,6,8,10,2,0,-10,0,1.7,0.4,-6 -"542",1772,3,1,0,0.616787561,0.616787561,0,0,1,-0.9,-1,3 -"543",1773,3,1,0,2,2,0,-7,1,1.8,1,-2 -"544",1773,3,2,2,3,1,0,-7,1,1.8,1,-2 -"545",1773,3,3,3,6,3,0,-7,1,1.8,1,-2 -"546",1773,3,4,6,6.5,0.5,0,-7,1,1.8,1,-2 -"547",1773,3,5,6.5,6.860099601,0.360099601,0,-7,1,1.8,1,-2 -"548",1774,3,1,0,2,2,0,8,1,0.2,-1,7 -"549",1774,3,2,2,3,1,0,8,1,0.2,-1,7 -"550",1774,3,3,3,4.421002913,1.421002913,0,8,1,0.2,-1,7 -"551",1775,3,1,0,2,2,0,-5,1,7.4,0,4 -"552",1775,3,2,2,3,1,0,-5,1,7.4,0,4 -"553",1775,3,3,3,6,3,0,-5,1,7.4,0,4 -"554",1775,3,4,6,6.5,0.5,0,-5,1,7.4,0,4 -"555",1775,3,5,6.5,6.56177795,0.06177795,1,-5,1,7.4,0,4 -"556",1776,3,1,0,1.927633966,1.927633966,1,-20,0,2.7,2,-6 -"557",1777,3,1,0,0.017305022,0.017305022,0,1,0,-7.3,0,-2 -"558",1778,3,1,0,2,2,0,7,1,5.2,-1.9,-6 -"559",1778,3,2,2,3,1,0,7,1,5.2,-1.9,-6 -"560",1778,3,3,3,6,3,0,7,1,5.2,-1.9,-6 -"561",1778,3,4,6,6.5,0.5,0,7,1,5.2,-1.9,-6 -"562",1778,3,5,6.5,8,1.5,0,7,1,5.2,-1.9,-6 -"563",1778,3,6,8,10,2,0,7,1,5.2,-1.9,-6 -"564",1779,3,1,0,2,2,0,0,1,3.8,-0.1,7 -"565",1779,3,2,2,3,1,0,0,1,3.8,-0.1,7 -"566",1779,3,3,3,6,3,0,0,1,3.8,-0.1,7 -"567",1779,3,4,6,6.174378196,0.174378196,0,0,1,3.8,-0.1,7 -"568",1780,3,1,0,2,2,0,-24,1,9.7,-1.2,5 -"569",1780,3,2,2,3,1,0,-24,1,9.7,-1.2,5 -"570",1780,3,3,3,4.655759823,1.655759823,0,-24,1,9.7,-1.2,5 -"571",1781,3,1,0,2,2,0,22,1,-3.6,0,-5 -"572",1781,3,2,2,2.481672524,0.481672524,0,22,1,-3.6,0,-5 -"573",1782,3,1,0,2,2,0,-17,0,-8.3,1.9,-4 -"574",1782,3,2,2,3,1,0,-17,0,-8.3,1.9,-4 -"575",1782,3,3,3,6,3,0,-17,0,-8.3,1.9,-4 -"576",1782,3,4,6,6.5,0.5,0,-17,0,-8.3,1.9,-4 -"577",1782,3,5,6.5,8,1.5,0,-17,0,-8.3,1.9,-4 -"578",1782,3,6,8,8.741507309,0.741507309,1,-17,0,-8.3,1.9,-4 -"579",1783,3,1,0,1.517877676,1.517877676,1,-1,1,2.4,0.4,-6 -"580",1784,3,1,0,0.228030226,0.228030226,1,11,1,-3.2,0.8,-4 -"581",1785,3,1,0,0.56424725,0.56424725,0,11,1,-4.7,-0.1,1 -"582",1786,3,1,0,0.195856878,0.195856878,1,28,0,6.3,0.5,-5 -"583",1787,3,1,0,2,2,0,29,0,-1.1,-1.3,-14 -"584",1787,3,2,2,3,1,0,29,0,-1.1,-1.3,-14 -"585",1787,3,3,3,5.714259381,2.714259381,1,29,0,-1.1,-1.3,-14 -"586",1788,3,1,0,2,2,0,-10,0,0.8,-0.8,1 -"587",1788,3,2,2,3,1,0,-10,0,0.8,-0.8,1 -"588",1788,3,3,3,3.117743518,0.117743518,0,-10,0,0.8,-0.8,1 -"589",1789,3,1,0,0.243177057,0.243177057,0,5,0,3.1,0.2,-9 -"590",1790,3,1,0,1.661083081,1.661083081,0,16,1,3.4,-0.2,4 -"591",1791,3,1,0,1.269498322,1.269498322,0,8,1,-0.5,-0.4,0 -"592",1792,3,1,0,2,2,0,-32,0,-1.2,0.5,7 -"593",1792,3,2,2,3,1,0,-32,0,-1.2,0.5,7 -"594",1792,3,3,3,4.782284545,1.782284545,0,-32,0,-1.2,0.5,7 -"595",1793,3,1,0,0.9877408,0.9877408,1,-6,0,2.9,1.2,5 -"596",1794,3,1,0,2,2,0,-2,0,0.6,0.4,-7 -"597",1794,3,2,2,3,1,0,-2,0,0.6,0.4,-7 -"598",1794,3,3,3,6,3,0,-2,0,0.6,0.4,-7 -"599",1794,3,4,6,6.382943844,0.382943844,0,-2,0,0.6,0.4,-7 -"600",1795,3,1,0,1.512989053,1.512989053,1,-16,0,7,-0.5,-6 -"601",1796,3,1,0,0.016857738,0.016857738,0,2,1,-3.4,-2,5 -"602",1797,3,1,0,2,2,0,-26,1,-0.4,0,7 -"603",1797,3,2,2,3,1,0,-26,1,-0.4,0,7 -"604",1797,3,3,3,4.319016044,1.319016044,0,-26,1,-0.4,0,7 -"605",1798,3,1,0,2,2,0,-18,1,-7.9,-0.1,-4 -"606",1798,3,2,2,2.230339962,0.230339962,0,-18,1,-7.9,-0.1,-4 -"607",1799,3,1,0,1.687999002,1.687999002,1,20,0,-3.8,1.7,-13 -"608",1800,3,1,0,0.198849255,0.198849255,0,2,0,-6.2,-0.9,0 -"609",1801,3,1,0,0.411631451,0.411631451,1,25,0,7.2,-0.3,2 -"610",1802,3,1,0,0.476032541,0.476032541,1,5,0,-4.1,-0.8,2 -"611",1803,3,1,0,1.072459813,1.072459813,1,4,1,-3.5,0.4,5 -"612",1804,3,1,0,2,2,0,8,1,-1.2,-0.1,-13 -"613",1804,3,2,2,3,1,0,8,1,-1.2,-0.1,-13 -"614",1804,3,3,3,6,3,0,8,1,-1.2,-0.1,-13 -"615",1804,3,4,6,6.5,0.5,0,8,1,-1.2,-0.1,-13 -"616",1804,3,5,6.5,7.089128312,0.589128312,0,8,1,-1.2,-0.1,-13 -"617",1805,3,1,0,1.722179937,1.722179937,1,-12,1,6.3,-0.3,4 -"618",1806,3,1,0,1.747003985,1.747003985,0,1,0,1.2,-2,4 -"619",1807,3,1,0,0.498290145,0.498290145,1,1,1,3.2,0.1,5 -"620",1808,3,1,0,2,2,0,0,0,-5.6,0.4,0 -"621",1808,3,2,2,3,1,0,0,0,-5.6,0.4,0 -"622",1808,3,3,3,6,3,0,0,0,-5.6,0.4,0 -"623",1808,3,4,6,6.289685681,0.289685681,0,0,0,-5.6,0.4,0 -"624",1809,3,1,0,0.064526312,0.064526312,1,13,0,0.8,2.1,2 -"625",1810,3,1,0,0.089291403,0.089291403,1,-7,0,2.6,1,5 -"626",1811,3,1,0,1.899924496,1.899924496,0,-4,1,-3.9,-0.1,-8 -"627",1812,3,1,0,1.329843731,1.329843731,1,0,0,-0.2,0,-6 -"628",1813,3,1,0,2,2,0,21,1,-1.2,-0.4,-2 -"629",1813,3,2,2,3,1,0,21,1,-1.2,-0.4,-2 -"630",1813,3,3,3,6,3,0,21,1,-1.2,-0.4,-2 -"631",1813,3,4,6,6.5,0.5,0,21,1,-1.2,-0.4,-2 -"632",1813,3,5,6.5,8,1.5,0,21,1,-1.2,-0.4,-2 -"633",1813,3,6,8,10,2,0,21,1,-1.2,-0.4,-2 -"634",1814,3,1,0,0.48037997,0.48037997,1,10,0,0.4,0.3,5 -"635",1815,3,1,0,1.149944508,1.149944508,1,-9,0,10.9,1.4,-5 -"636",1816,3,1,0,0.540505593,0.540505593,1,-15,0,-4.2,-1.1,2 -"637",1817,3,1,0,2,2,0,-23,1,-3.2,1.5,2 -"638",1817,3,2,2,3,1,0,-23,1,-3.2,1.5,2 -"639",1817,3,3,3,3.563036853,0.563036853,0,-23,1,-3.2,1.5,2 -"640",1818,3,1,0,0.639062999,0.639062999,0,12,1,3.6,-0.1,-8 -"641",1819,3,1,0,0.100866643,0.100866643,1,26,0,-1.1,1.5,0 -"642",1820,3,1,0,2,2,0,-25,0,-4.9,-0.5,-2 -"643",1820,3,2,2,3,1,0,-25,0,-4.9,-0.5,-2 -"644",1820,3,3,3,3.358979212,0.358979212,0,-25,0,-4.9,-0.5,-2 -"645",1821,3,1,0,0.254501351,0.254501351,1,18,0,0.3,1.6,-6 -"646",1822,3,1,0,2,2,0,12,0,2.4,-1.5,-2 -"647",1822,3,2,2,3,1,0,12,0,2.4,-1.5,-2 -"648",1822,3,3,3,4.731487328,1.731487328,0,12,0,2.4,-1.5,-2 -"649",1823,3,1,0,1.775552806,1.775552806,1,-2,1,-3.5,0.4,-2 -"650",1824,3,1,0,0.198027544,0.198027544,0,-1,1,-5.3,0.4,4 -"651",1825,3,1,0,2,2,0,-1,1,-2,-0.3,6 -"652",1825,3,2,2,2.602125267,0.602125267,1,-1,1,-2,-0.3,6 -"653",1826,3,1,0,2,2,0,11,0,8.6,-0.3,-5 -"654",1826,3,2,2,3,1,0,11,0,8.6,-0.3,-5 -"655",1826,3,3,3,6,3,0,11,0,8.6,-0.3,-5 -"656",1826,3,4,6,6.5,0.5,0,11,0,8.6,-0.3,-5 -"657",1826,3,5,6.5,8,1.5,0,11,0,8.6,-0.3,-5 -"658",1826,3,6,8,10,2,0,11,0,8.6,-0.3,-5 -"659",1827,3,1,0,2,2,0,-14,1,-1.3,-0.8,3 -"660",1827,3,2,2,3,1,0,-14,1,-1.3,-0.8,3 -"661",1827,3,3,3,6,3,0,-14,1,-1.3,-0.8,3 -"662",1827,3,4,6,6.01865445,0.01865445,0,-14,1,-1.3,-0.8,3 -"663",1828,3,1,0,1.959405978,1.959405978,1,-2,1,-3.2,-0.7,3 -"664",1829,3,1,0,0.449404871,0.449404871,0,10,1,9.4,1.3,-2 -"665",1830,3,1,0,2,2,0,6,1,3.4,-0.8,-1 -"666",1830,3,2,2,3,1,0,6,1,3.4,-0.8,-1 -"667",1830,3,3,3,6,3,0,6,1,3.4,-0.8,-1 -"668",1830,3,4,6,6.5,0.5,0,6,1,3.4,-0.8,-1 -"669",1830,3,5,6.5,7.520835988,1.020835988,1,6,1,3.4,-0.8,-1 -"670",1831,3,1,0,0.348473297,0.348473297,1,22,0,0.7,0.8,4 -"671",1832,3,1,0,2,2,0,-13,0,-0.4,0.9,7 -"672",1832,3,2,2,2.758705114,0.758705114,1,-13,0,-0.4,0.9,7 -"673",1833,3,1,0,2,2,0,-18,1,3.6,0.3,-5 -"674",1833,3,2,2,3,1,0,-18,1,3.6,0.3,-5 -"675",1833,3,3,3,5.258985108,2.258985108,0,-18,1,3.6,0.3,-5 -"676",1834,3,1,0,2,2,0,-3,1,6.5,0.1,-3 -"677",1834,3,2,2,3,1,0,-3,1,6.5,0.1,-3 -"678",1834,3,3,3,6,3,0,-3,1,6.5,0.1,-3 -"679",1834,3,4,6,6.5,0.5,0,-3,1,6.5,0.1,-3 -"680",1834,3,5,6.5,8,1.5,0,-3,1,6.5,0.1,-3 -"681",1834,3,6,8,10,2,0,-3,1,6.5,0.1,-3 -"682",1835,3,1,0,0.768773324,0.768773324,1,19,0,-0.3,-1.1,0 -"683",1836,3,1,0,0.148430971,0.148430971,1,3,0,7.8,-0.6,0 -"684",1837,3,1,0,0.584232012,0.584232012,1,8,1,-4.4,0.4,-1 -"685",1838,3,1,0,0.09194428,0.09194428,1,17,0,4,-0.6,7 -"686",1839,3,1,0,2,2,0,-17,0,4.5,0.1,-3 -"687",1839,3,2,2,3,1,0,-17,0,4.5,0.1,-3 -"688",1839,3,3,3,6,3,0,-17,0,4.5,0.1,-3 -"689",1839,3,4,6,6.5,0.5,0,-17,0,4.5,0.1,-3 -"690",1839,3,5,6.5,6.539088852,0.039088852,0,-17,0,4.5,0.1,-3 -"691",1840,3,1,0,2,2,0,0,0,-1.3,-0.9,-4 -"692",1840,3,2,2,3,1,0,0,0,-1.3,-0.9,-4 -"693",1840,3,3,3,5.490638985,2.490638985,1,0,0,-1.3,-0.9,-4 -"694",1841,3,1,0,0.274619814,0.274619814,0,-3,0,5.8,0.5,1 -"695",1842,3,1,0,0.094117648,0.094117648,1,5,0,-1.4,-0.1,6 -"696",1843,3,1,0,0.201807162,0.201807162,1,-17,1,5.6,-1,9 -"697",1844,3,1,0,1.40315323,1.40315323,1,0,0,7.3,-0.8,-1 -"698",1845,3,1,0,1.813900966,1.813900966,0,14,0,-5,-1.4,1 -"699",1846,3,1,0,2,2,0,-9,1,6.3,1.2,-3 -"700",1846,3,2,2,3,1,0,-9,1,6.3,1.2,-3 -"701",1846,3,3,3,6,3,0,-9,1,6.3,1.2,-3 -"702",1846,3,4,6,6.049136742,0.049136742,1,-9,1,6.3,1.2,-3 -"703",1847,3,1,0,2,2,0,13,0,-2.2,-0.2,-1 -"704",1847,3,2,2,3,1,0,13,0,-2.2,-0.2,-1 -"705",1847,3,3,3,5.887724303,2.887724303,0,13,0,-2.2,-0.2,-1 -"706",1848,3,1,0,2,2,0,2,1,7.1,0.5,-4 -"707",1848,3,2,2,3,1,0,2,1,7.1,0.5,-4 -"708",1848,3,3,3,5.895341506,2.895341506,0,2,1,7.1,0.5,-4 -"709",1849,3,1,0,0.854745818,0.854745818,1,-16,1,-5.2,1.5,4 -"710",1850,3,1,0,2,2,0,-16,0,3.4,0.4,2 -"711",1850,3,2,2,3,1,0,-16,0,3.4,0.4,2 -"712",1850,3,3,3,6,3,0,-16,0,3.4,0.4,2 -"713",1850,3,4,6,6.5,0.5,0,-16,0,3.4,0.4,2 -"714",1850,3,5,6.5,8,1.5,0,-16,0,3.4,0.4,2 -"715",1850,3,6,8,10,2,0,-16,0,3.4,0.4,2 -"716",1851,3,1,0,1.233629196,1.233629196,0,-36,0,-8.5,0.9,-4 -"717",1852,3,1,0,0.384617486,0.384617486,1,14,0,1.3,-0.1,6 -"718",1853,3,1,0,0.047118579,0.047118579,1,14,0,1.9,-1.2,0 -"719",1854,3,1,0,2,2,0,3,0,1,0.4,8 -"720",1854,3,2,2,2.671037532,0.671037532,1,3,0,1,0.4,8 -"721",1855,3,1,0,2,2,0,14,1,0.5,2.1,-7 -"722",1855,3,2,2,2.786607863,0.786607863,1,14,1,0.5,2.1,-7 -"723",1856,3,1,0,1.039712359,1.039712359,0,-24,0,-1.1,-0.5,-4 -"724",1857,3,1,0,0.979129927,0.979129927,1,2,0,2.3,-0.9,9 -"725",1858,3,1,0,0.040995872,0.040995872,1,14,0,0.8,1.4,2 -"726",1859,3,1,0,2,2,0,-28,1,-7,-0.3,-6 -"727",1859,3,2,2,2.661210384,0.661210384,0,-28,1,-7,-0.3,-6 -"728",1860,3,1,0,2,2,0,-15,1,-1.4,-1.3,-5 -"729",1860,3,2,2,2.078660881,0.078660881,0,-15,1,-1.4,-1.3,-5 -"730",1861,3,1,0,2,2,0,-8,1,-0.8,0,2 -"731",1861,3,2,2,3,1,0,-8,1,-0.8,0,2 -"732",1861,3,3,3,3.931151214,0.931151214,0,-8,1,-0.8,0,2 -"733",1862,3,1,0,0.702727283,0.702727283,1,-1,1,5.5,2.4,1 -"734",1863,3,1,0,2,2,0,13,0,-4.9,-2.3,6 -"735",1863,3,2,2,2.050452325,0.050452325,1,13,0,-4.9,-2.3,6 -"736",1864,3,1,0,2,2,0,-1,0,0.8,2.1,-6 -"737",1864,3,2,2,3,1,0,-1,0,0.8,2.1,-6 -"738",1864,3,3,3,6,3,0,-1,0,0.8,2.1,-6 -"739",1864,3,4,6,6.5,0.5,0,-1,0,0.8,2.1,-6 -"740",1864,3,5,6.5,7.076699383,0.576699383,0,-1,0,0.8,2.1,-6 -"741",1865,3,1,0,2,2,0,1,1,1.5,-0.4,1 -"742",1865,3,2,2,3,1,0,1,1,1.5,-0.4,1 -"743",1865,3,3,3,6,3,0,1,1,1.5,-0.4,1 -"744",1865,3,4,6,6.5,0.5,0,1,1,1.5,-0.4,1 -"745",1865,3,5,6.5,8,1.5,0,1,1,1.5,-0.4,1 -"746",1865,3,6,8,8.853022453,0.853022453,1,1,1,1.5,-0.4,1 -"747",1866,3,1,0,2,2,0,-6,1,4,-0.5,0 -"748",1866,3,2,2,3,1,0,-6,1,4,-0.5,0 -"749",1866,3,3,3,6,3,0,-6,1,4,-0.5,0 -"750",1866,3,4,6,6.5,0.5,0,-6,1,4,-0.5,0 -"751",1866,3,5,6.5,8,1.5,0,-6,1,4,-0.5,0 -"752",1866,3,6,8,8.574013826,0.574013826,0,-6,1,4,-0.5,0 -"753",1867,3,1,0,0.165276501,0.165276501,1,-21,0,-0.7,1.4,-8 -"754",1868,3,1,0,0.609194319,0.609194319,1,7,1,0.3,0.4,2 -"755",1869,3,1,0,0.905408965,0.905408965,0,15,1,1.9,-0.1,3 -"756",1870,3,1,0,0.749507011,0.749507011,1,-24,1,-2.4,0,1 -"757",1871,3,1,0,0.857482588,0.857482588,1,8,1,-0.7,-0.8,-5 -"758",1872,3,1,0,1.053765845,1.053765845,1,-3,0,3.2,-0.6,2 -"759",1873,3,1,0,1.131466226,1.131466226,1,10,0,-2,0.1,10 -"760",1874,3,1,0,1.307588118,1.307588118,0,-7,1,3.1,-0.3,-1 -"761",1875,3,1,0,1.076371798,1.076371798,0,14,1,1.3,0.6,2 -"762",1876,3,1,0,2,2,0,-2,1,-1.5,2.1,-4 -"763",1876,3,2,2,2.009270074,0.009270074,0,-2,1,-1.5,2.1,-4 -"764",1877,3,1,0,0.570755485,0.570755485,1,-2,0,-1,0,2 -"765",1878,3,1,0,0.078784038,0.078784038,1,0,0,-9.5,0.4,-5 -"766",1879,3,1,0,0.06959785,0.06959785,1,6,0,0.5,-0.2,-1 -"767",1880,3,1,0,0.951098717,0.951098717,1,1,0,-3.7,-1,-2 -"768",1881,3,1,0,0.061832028,0.061832028,1,-4,0,1.1,2.6,-5 -"769",1882,3,1,0,0.423665829,0.423665829,1,-15,0,5.1,0.2,2 -"770",1883,3,1,0,2,2,0,20,0,0,-0.7,-1 -"771",1883,3,2,2,3,1,0,20,0,0,-0.7,-1 -"772",1883,3,3,3,6,3,0,20,0,0,-0.7,-1 -"773",1883,3,4,6,6.5,0.5,0,20,0,0,-0.7,-1 -"774",1883,3,5,6.5,8,1.5,0,20,0,0,-0.7,-1 -"775",1883,3,6,8,10,2,0,20,0,0,-0.7,-1 -"776",1884,3,1,0,0.896451827,0.896451827,1,19,1,-2,-0.3,12 -"777",1885,3,1,0,0.093605364,0.093605364,1,13,0,-0.2,0.9,6 -"778",1886,3,1,0,0.330855907,0.330855907,0,11,1,-2.4,-0.7,0 -"779",1887,3,1,0,0.539893363,0.539893363,1,-7,0,-0.6,0.8,0 -"780",1888,3,1,0,1.475760708,1.475760708,0,1,0,-1.6,0.4,-3 -"781",1889,3,1,0,0.812363972,0.812363972,1,19,1,1,-0.9,-5 -"782",1890,3,1,0,0.470870768,0.470870768,1,-1,0,5.7,1.7,9 -"783",1891,3,1,0,0.75447199,0.75447199,1,9,1,0.1,-0.1,-5 -"784",1892,3,1,0,1.188231711,1.188231711,1,-20,1,-5.2,2,3 -"785",1893,3,1,0,2,2,0,-5,0,3,0.7,-5 -"786",1893,3,2,2,3,1,0,-5,0,3,0.7,-5 -"787",1893,3,3,3,6,3,0,-5,0,3,0.7,-5 -"788",1893,3,4,6,6.5,0.5,0,-5,0,3,0.7,-5 -"789",1893,3,5,6.5,8,1.5,0,-5,0,3,0.7,-5 -"790",1893,3,6,8,10,2,0,-5,0,3,0.7,-5 -"791",1894,3,1,0,1.808070535,1.808070535,0,-2,0,-2.6,-1.9,3 -"792",1895,3,1,0,0.527167609,0.527167609,1,-5,0,-4.2,-0.2,8 -"793",1896,3,1,0,2,2,0,-9,0,-4,0.5,0 -"794",1896,3,2,2,3,1,0,-9,0,-4,0.5,0 -"795",1896,3,3,3,3.287382055,0.287382055,0,-9,0,-4,0.5,0 -"796",1897,3,1,0,2,2,0,5,0,-3.1,-1.2,-2 -"797",1897,3,2,2,3,1,0,5,0,-3.1,-1.2,-2 -"798",1897,3,3,3,4.744852648,1.744852648,0,5,0,-3.1,-1.2,-2 -"799",1898,3,1,0,0.088902581,0.088902581,1,1,0,4.5,2.1,1 -"800",1899,3,1,0,0.17197821,0.17197821,0,-17,1,5.8,1.2,-1 -"801",1900,3,1,0,2,2,0,-2,1,0.2,-0.2,8 -"802",1900,3,2,2,2.965277862,0.965277862,0,-2,1,0.2,-0.2,8 -"803",1901,3,1,0,2,2,0,15,1,-0.4,-0.2,2 -"804",1901,3,2,2,3,1,0,15,1,-0.4,-0.2,2 -"805",1901,3,3,3,6,3,0,15,1,-0.4,-0.2,2 -"806",1901,3,4,6,6.416641808,0.416641808,0,15,1,-0.4,-0.2,2 -"807",1902,3,1,0,0.570172058,0.570172058,1,4,0,-1.8,1.7,-4 -"808",1903,3,1,0,2,2,0,13,0,-4.4,0.8,-5 -"809",1903,3,2,2,3,1,0,13,0,-4.4,0.8,-5 -"810",1903,3,3,3,6,3,0,13,0,-4.4,0.8,-5 -"811",1903,3,4,6,6.5,0.5,0,13,0,-4.4,0.8,-5 -"812",1903,3,5,6.5,6.956565952,0.456565952,0,13,0,-4.4,0.8,-5 -"813",1904,3,1,0,0.352348841,0.352348841,0,-4,0,1.8,2.2,5 -"814",1905,3,1,0,0.163057073,0.163057073,1,24,1,-1.7,1,5 -"815",1906,3,1,0,0.566437033,0.566437033,1,14,1,2.7,1.3,1 -"816",1907,3,1,0,1.514624428,1.514624428,1,3,1,-0.2,-0.1,-5 -"817",1908,3,1,0,0.042515642,0.042515642,0,-19,0,2.2,1.1,3 -"818",1909,3,1,0,2,2,0,-9,0,-3.8,1.1,-8 -"819",1909,3,2,2,3,1,0,-9,0,-3.8,1.1,-8 -"820",1909,3,3,3,6,3,0,-9,0,-3.8,1.1,-8 -"821",1909,3,4,6,6.5,0.5,0,-9,0,-3.8,1.1,-8 -"822",1909,3,5,6.5,6.970064726,0.470064726,1,-9,0,-3.8,1.1,-8 -"823",1910,3,1,0,2,2,0,-41,1,1.8,-1.6,-7 -"824",1910,3,2,2,3,1,0,-41,1,1.8,-1.6,-7 -"825",1910,3,3,3,6,3,0,-41,1,1.8,-1.6,-7 -"826",1910,3,4,6,6.5,0.5,0,-41,1,1.8,-1.6,-7 -"827",1910,3,5,6.5,8,1.5,0,-41,1,1.8,-1.6,-7 -"828",1910,3,6,8,10,2,0,-41,1,1.8,-1.6,-7 -"829",1911,3,1,0,2,2,0,-2,1,6,0.2,7 -"830",1911,3,2,2,3,1,0,-2,1,6,0.2,7 -"831",1911,3,3,3,4.619336951,1.619336951,1,-2,1,6,0.2,7 -"832",1912,3,1,0,2,2,0,15,1,-5.9,-1.2,-5 -"833",1912,3,2,2,3,1,0,15,1,-5.9,-1.2,-5 -"834",1912,3,3,3,3.044172905,0.044172905,0,15,1,-5.9,-1.2,-5 -"835",1913,3,1,0,2,2,0,7,1,3.7,0.6,3 -"836",1913,3,2,2,3,1,0,7,1,3.7,0.6,3 -"837",1913,3,3,3,5.805059751,2.805059751,1,7,1,3.7,0.6,3 -"838",1914,3,1,0,0.612199102,0.612199102,1,13,1,11,0.3,0 -"839",1915,3,1,0,1.157183494,1.157183494,0,-6,0,3.9,-0.4,-12 -"840",1916,3,1,0,2,2,0,-16,1,-1.4,-2.3,8 -"841",1916,3,2,2,3,1,0,-16,1,-1.4,-2.3,8 -"842",1916,3,3,3,6,3,0,-16,1,-1.4,-2.3,8 -"843",1916,3,4,6,6.5,0.5,0,-16,1,-1.4,-2.3,8 -"844",1916,3,5,6.5,8,1.5,0,-16,1,-1.4,-2.3,8 -"845",1916,3,6,8,10,2,0,-16,1,-1.4,-2.3,8 -"846",1917,3,1,0,0.296160963,0.296160963,1,23,0,-2.7,-0.2,5 -"847",1918,3,1,0,2,2,0,12,0,-1.6,-0.9,-1 -"848",1918,3,2,2,2.643540795,0.643540795,1,12,0,-1.6,-0.9,-1 -"849",1919,3,1,0,0.306067532,0.306067532,0,-24,0,-4.4,-0.3,-3 -"850",1920,3,1,0,2,2,0,-12,0,3.6,-1.1,-8 -"851",1920,3,2,2,3,1,0,-12,0,3.6,-1.1,-8 -"852",1920,3,3,3,4.534197849,1.534197849,0,-12,0,3.6,-1.1,-8 -"853",1921,3,1,0,2,2,0,7,1,1.3,0.4,-5 -"854",1921,3,2,2,3,1,0,7,1,1.3,0.4,-5 -"855",1921,3,3,3,6,3,0,7,1,1.3,0.4,-5 -"856",1921,3,4,6,6.5,0.5,0,7,1,1.3,0.4,-5 -"857",1921,3,5,6.5,6.646684333,0.146684333,1,7,1,1.3,0.4,-5 -"858",1922,3,1,0,1.402332878,1.402332878,0,11,1,-1.3,-0.1,-10 -"859",1923,3,1,0,1.779203245,1.779203245,1,-2,0,0.5,0.5,1 -"860",1924,3,1,0,0.500541123,0.500541123,1,-4,0,3.7,1.1,-3 -"861",1925,3,1,0,1.720347091,1.720347091,1,-14,0,-2.6,-0.2,-5 -"862",1926,3,1,0,2,2,0,8,0,1.5,-0.3,7 -"863",1926,3,2,2,3,1,0,8,0,1.5,-0.3,7 -"864",1926,3,3,3,4.691476394,1.691476394,0,8,0,1.5,-0.3,7 -"865",1927,3,1,0,2,2,0,-14,0,-2.2,-1.3,0 -"866",1927,3,2,2,3,1,0,-14,0,-2.2,-1.3,0 -"867",1927,3,3,3,4.218559791,1.218559791,0,-14,0,-2.2,-1.3,0 -"868",1928,3,1,0,2,2,0,-12,1,-2.3,-0.9,-8 -"869",1928,3,2,2,3,1,0,-12,1,-2.3,-0.9,-8 -"870",1928,3,3,3,6,3,0,-12,1,-2.3,-0.9,-8 -"871",1928,3,4,6,6.5,0.5,0,-12,1,-2.3,-0.9,-8 -"872",1928,3,5,6.5,8,1.5,0,-12,1,-2.3,-0.9,-8 -"873",1928,3,6,8,10,2,0,-12,1,-2.3,-0.9,-8 -"874",1929,3,1,0,0.901416191,0.901416191,1,15,0,-2.9,1.5,-8 -"875",1930,3,1,0,0.614866985,0.614866985,0,-1,1,1.6,1,2 -"876",1931,3,1,0,2,2,0,-21,1,0.8,-0.5,7 -"877",1931,3,2,2,3,1,0,-21,1,0.8,-0.5,7 -"878",1931,3,3,3,6,3,0,-21,1,0.8,-0.5,7 -"879",1931,3,4,6,6.5,0.5,0,-21,1,0.8,-0.5,7 -"880",1931,3,5,6.5,8,1.5,0,-21,1,0.8,-0.5,7 -"881",1931,3,6,8,10,2,0,-21,1,0.8,-0.5,7 -"882",1932,3,1,0,1.462805224,1.462805224,0,-15,0,1.2,0.2,5 -"883",1933,3,1,0,2,2,0,-1,1,6,-1.5,7 -"884",1933,3,2,2,3,1,0,-1,1,6,-1.5,7 -"885",1933,3,3,3,6,3,0,-1,1,6,-1.5,7 -"886",1933,3,4,6,6.5,0.5,0,-1,1,6,-1.5,7 -"887",1933,3,5,6.5,8,1.5,0,-1,1,6,-1.5,7 -"888",1933,3,6,8,9.482474796,1.482474796,1,-1,1,6,-1.5,7 -"889",1934,3,1,0,2,2,0,-38,0,1.4,1.7,-4 -"890",1934,3,2,2,3,1,0,-38,0,1.4,1.7,-4 -"891",1934,3,3,3,6,3,0,-38,0,1.4,1.7,-4 -"892",1934,3,4,6,6.5,0.5,0,-38,0,1.4,1.7,-4 -"893",1934,3,5,6.5,8,1.5,0,-38,0,1.4,1.7,-4 -"894",1934,3,6,8,10,2,0,-38,0,1.4,1.7,-4 -"895",1935,3,1,0,0.587925074,0.587925074,0,1,0,-1.8,0.2,0 -"896",1936,3,1,0,0.148556892,0.148556892,1,6,0,-1.1,-0.3,5 -"897",1937,3,1,0,0.658178171,0.658178171,1,20,1,2,0.5,-4 -"898",1938,3,1,0,2,2,0,-3,1,2.2,-2.1,8 -"899",1938,3,2,2,3,1,0,-3,1,2.2,-2.1,8 -"900",1938,3,3,3,6,3,0,-3,1,2.2,-2.1,8 -"901",1938,3,4,6,6.5,0.5,0,-3,1,2.2,-2.1,8 -"902",1938,3,5,6.5,8,1.5,0,-3,1,2.2,-2.1,8 -"903",1938,3,6,8,10,2,0,-3,1,2.2,-2.1,8 -"904",1939,3,1,0,1.304468848,1.304468848,1,0,0,5.9,0.5,2 -"905",1940,3,1,0,1.240109697,1.240109697,0,6,0,-3.1,0.3,-4 -"906",1941,3,1,0,0.339440308,0.339440308,1,7,0,5.1,-0.5,3 -"907",1942,3,1,0,2,2,0,-11,1,6.8,0.3,-4 -"908",1942,3,2,2,3,1,0,-11,1,6.8,0.3,-4 -"909",1942,3,3,3,6,3,0,-11,1,6.8,0.3,-4 -"910",1942,3,4,6,6.5,0.5,0,-11,1,6.8,0.3,-4 -"911",1942,3,5,6.5,8,1.5,0,-11,1,6.8,0.3,-4 -"912",1942,3,6,8,10,2,0,-11,1,6.8,0.3,-4 -"913",1943,3,1,0,0.80264035,0.80264035,0,-32,0,5.3,0.8,4 -"914",1944,3,1,0,0.484346207,0.484346207,0,0,1,-0.9,0.7,2 -"915",1945,3,1,0,2,2,0,-8,1,-1.4,0.9,-9 -"916",1945,3,2,2,3,1,0,-8,1,-1.4,0.9,-9 -"917",1945,3,3,3,6,3,0,-8,1,-1.4,0.9,-9 -"918",1945,3,4,6,6.5,0.5,0,-8,1,-1.4,0.9,-9 -"919",1945,3,5,6.5,8,1.5,0,-8,1,-1.4,0.9,-9 -"920",1945,3,6,8,10,2,0,-8,1,-1.4,0.9,-9 -"921",1946,3,1,0,0.297333248,0.297333248,1,11,1,-2,-1.6,0 -"922",1947,3,1,0,2,2,0,-1,1,6.1,-0.6,1 -"923",1947,3,2,2,2.605995199,0.605995199,1,-1,1,6.1,-0.6,1 -"924",1948,3,1,0,2,2,0,23,1,-10.3,0,-9 -"925",1948,3,2,2,3,1,0,23,1,-10.3,0,-9 -"926",1948,3,3,3,4.495466445,1.495466445,0,23,1,-10.3,0,-9 -"927",1949,3,1,0,0.161558499,0.161558499,1,24,0,-5,2.4,5 -"928",1950,3,1,0,0.871697731,0.871697731,1,14,1,-3.6,0.8,7 -"929",1951,3,1,0,1.409757278,1.409757278,1,12,1,1.4,-0.6,-9 -"930",1952,3,1,0,2,2,0,13,1,1.3,-0.1,-4 -"931",1952,3,2,2,2.577670145,0.577670145,0,13,1,1.3,-0.1,-4 -"932",1953,3,1,0,0.043321561,0.043321561,1,4,0,7.1,-0.1,8 -"933",1954,3,1,0,0.012530406,0.012530406,1,36,0,-2,0.2,6 -"934",1955,3,1,0,2,2,0,-32,0,3.9,-1.5,0 -"935",1955,3,2,2,2.794566227,0.794566227,0,-32,0,3.9,-1.5,0 -"936",1956,3,1,0,1.348348943,1.348348943,1,26,1,-3.7,0.5,1 -"937",1957,3,1,0,0.07750235,0.07750235,1,-24,0,9.4,0.7,-3 -"938",1958,3,1,0,2,2,0,-4,0,-5.9,2.2,-10 -"939",1958,3,2,2,3,1,0,-4,0,-5.9,2.2,-10 -"940",1958,3,3,3,6,3,0,-4,0,-5.9,2.2,-10 -"941",1958,3,4,6,6.5,0.5,0,-4,0,-5.9,2.2,-10 -"942",1958,3,5,6.5,8,1.5,0,-4,0,-5.9,2.2,-10 -"943",1958,3,6,8,10,2,0,-4,0,-5.9,2.2,-10 -"944",1959,3,1,0,2,2,0,-22,1,3.7,-1.1,3 -"945",1959,3,2,2,3,1,0,-22,1,3.7,-1.1,3 -"946",1959,3,3,3,6,3,0,-22,1,3.7,-1.1,3 -"947",1959,3,4,6,6.5,0.5,0,-22,1,3.7,-1.1,3 -"948",1959,3,5,6.5,8,1.5,0,-22,1,3.7,-1.1,3 -"949",1959,3,6,8,8.006038022,0.006038022,1,-22,1,3.7,-1.1,3 -"950",1960,3,1,0,0.454071106,0.454071106,1,-5,0,0.6,1.5,0 -"951",1961,3,1,0,2,2,0,-6,0,-8.4,0.5,-5 -"952",1961,3,2,2,3,1,0,-6,0,-8.4,0.5,-5 -"953",1961,3,3,3,6,3,0,-6,0,-8.4,0.5,-5 -"954",1961,3,4,6,6.5,0.5,0,-6,0,-8.4,0.5,-5 -"955",1961,3,5,6.5,8,1.5,0,-6,0,-8.4,0.5,-5 -"956",1961,3,6,8,10,2,0,-6,0,-8.4,0.5,-5 -"957",1962,3,1,0,0.570252644,0.570252644,1,-21,1,-3.7,1.8,3 -"958",1963,3,1,0,0.930353392,0.930353392,1,1,0,1,0.7,5 -"959",1964,3,1,0,2,2,0,-13,0,1.7,-0.4,3 -"960",1964,3,2,2,3,1,0,-13,0,1.7,-0.4,3 -"961",1964,3,3,3,6,3,0,-13,0,1.7,-0.4,3 -"962",1964,3,4,6,6.5,0.5,0,-13,0,1.7,-0.4,3 -"963",1964,3,5,6.5,8,1.5,0,-13,0,1.7,-0.4,3 -"964",1964,3,6,8,9.200302107,1.200302107,1,-13,0,1.7,-0.4,3 -"965",1965,3,1,0,2,2,0,9,0,-7,1.2,0 -"966",1965,3,2,2,3,1,0,9,0,-7,1.2,0 -"967",1965,3,3,3,4.84596909,1.84596909,1,9,0,-7,1.2,0 -"968",1966,3,1,0,2,2,0,-7,1,-2.7,1.5,-5 -"969",1966,3,2,2,3,1,0,-7,1,-2.7,1.5,-5 -"970",1966,3,3,3,6,3,0,-7,1,-2.7,1.5,-5 -"971",1966,3,4,6,6.5,0.5,0,-7,1,-2.7,1.5,-5 -"972",1966,3,5,6.5,8,1.5,0,-7,1,-2.7,1.5,-5 -"973",1966,3,6,8,10,2,0,-7,1,-2.7,1.5,-5 -"974",1967,3,1,0,0.251776106,0.251776106,1,3,1,-3.9,-0.1,1 -"975",1968,3,1,0,0.544735388,0.544735388,1,5,0,-9.7,0.3,-7 -"976",1969,3,1,0,2,2,0,-9,1,-1.9,0.9,1 -"977",1969,3,2,2,3,1,0,-9,1,-1.9,0.9,1 -"978",1969,3,3,3,6,3,0,-9,1,-1.9,0.9,1 -"979",1969,3,4,6,6.301258196,0.301258196,1,-9,1,-1.9,0.9,1 -"980",1970,3,1,0,0.623555925,0.623555925,1,19,0,-10.9,1.7,-3 -"981",1971,3,1,0,2,2,0,-4,1,10.4,-0.1,3 -"982",1971,3,2,2,3,1,0,-4,1,10.4,-0.1,3 -"983",1971,3,3,3,6,3,0,-4,1,10.4,-0.1,3 -"984",1971,3,4,6,6.5,0.5,0,-4,1,10.4,-0.1,3 -"985",1971,3,5,6.5,8,1.5,0,-4,1,10.4,-0.1,3 -"986",1971,3,6,8,10,2,0,-4,1,10.4,-0.1,3 -"987",1972,3,1,0,2,2,0,-26,0,2.5,-0.6,-7 -"988",1972,3,2,2,2.197842888,0.197842888,0,-26,0,2.5,-0.6,-7 -"989",1973,3,1,0,2,2,0,6,0,-0.6,0.5,-4 -"990",1973,3,2,2,2.389999684,0.389999684,1,6,0,-0.6,0.5,-4 -"991",1974,3,1,0,0.091769472,0.091769472,1,13,1,-4.1,2.5,3 -"992",1975,3,1,0,0.996045647,0.996045647,0,2,1,3,-0.4,0 -"993",1976,3,1,0,2,2,0,-18,0,-5.2,-1.1,3 -"994",1976,3,2,2,3,1,0,-18,0,-5.2,-1.1,3 -"995",1976,3,3,3,4.324468784,1.324468784,0,-18,0,-5.2,-1.1,3 -"996",1977,3,1,0,2,2,0,-5,0,5.3,-0.2,0 -"997",1977,3,2,2,2.083346113,0.083346113,0,-5,0,5.3,-0.2,0 -"998",1978,3,1,0,0.134940331,0.134940331,1,3,0,-2.4,1.2,8 -"999",1979,3,1,0,0.620050505,0.620050505,0,4,1,2.4,0.6,5 -"1000",1980,3,1,0,2,2,0,-1,1,-2.9,0.4,4 -"1001",1980,3,2,2,3,1,0,-1,1,-2.9,0.4,4 -"1002",1980,3,3,3,6,3,0,-1,1,-2.9,0.4,4 -"1003",1980,3,4,6,6.5,0.5,0,-1,1,-2.9,0.4,4 -"1004",1980,3,5,6.5,8,1.5,0,-1,1,-2.9,0.4,4 -"1005",1980,3,6,8,8.005617512,0.005617512,1,-1,1,-2.9,0.4,4 -"1006",1981,3,1,0,2,2,0,-6,1,0.4,-0.8,2 -"1007",1981,3,2,2,3,1,0,-6,1,0.4,-0.8,2 -"1008",1981,3,3,3,3.67118193,0.67118193,0,-6,1,0.4,-0.8,2 -"1009",1982,3,1,0,2,2,0,7,0,6.2,-2.4,-1 -"1010",1982,3,2,2,3,1,0,7,0,6.2,-2.4,-1 -"1011",1982,3,3,3,5.662033258,2.662033258,0,7,0,6.2,-2.4,-1 -"1012",1983,3,1,0,2,2,0,-26,1,2.2,0.2,-3 -"1013",1983,3,2,2,3,1,0,-26,1,2.2,0.2,-3 -"1014",1983,3,3,3,3.57804641,0.57804641,0,-26,1,2.2,0.2,-3 -"1015",1984,3,1,0,2,2,0,-13,0,2.5,-0.7,-4 -"1016",1984,3,2,2,3,1,0,-13,0,2.5,-0.7,-4 -"1017",1984,3,3,3,6,3,0,-13,0,2.5,-0.7,-4 -"1018",1984,3,4,6,6.5,0.5,0,-13,0,2.5,-0.7,-4 -"1019",1984,3,5,6.5,8,1.5,0,-13,0,2.5,-0.7,-4 -"1020",1984,3,6,8,10,2,0,-13,0,2.5,-0.7,-4 -"1021",1985,3,1,0,1.124944682,1.124944682,0,-6,1,0.9,0.6,-5 -"1022",1986,3,1,0,0.898251759,0.898251759,0,-7,0,2.5,0.7,8 -"1023",1987,3,1,0,2,2,0,18,1,0.3,1.6,-9 -"1024",1987,3,2,2,3,1,0,18,1,0.3,1.6,-9 -"1025",1987,3,3,3,5.336709431,2.336709431,0,18,1,0.3,1.6,-9 -"1026",1988,3,1,0,0.931782329,0.931782329,0,-12,1,2.6,-0.5,-2 -"1027",1989,3,1,0,0.110479038,0.110479038,1,16,1,2.5,1.9,4 -"1028",1990,3,1,0,0.892315348,0.892315348,1,-20,0,6.1,0.1,-3 -"1029",1991,3,1,0,1.225667551,1.225667551,1,14,0,2.7,0.6,10 -"1030",1992,3,1,0,0.33572726,0.33572726,1,14,0,8.2,0.1,-5 -"1031",1993,3,1,0,1.699631285,1.699631285,1,-28,0,-6.1,-0.8,6 -"1032",1994,3,1,0,2,2,0,7,1,-7.7,0.5,3 -"1033",1994,3,2,2,3,1,0,7,1,-7.7,0.5,3 -"1034",1994,3,3,3,6,3,0,7,1,-7.7,0.5,3 -"1035",1994,3,4,6,6.5,0.5,0,7,1,-7.7,0.5,3 -"1036",1994,3,5,6.5,8,1.5,0,7,1,-7.7,0.5,3 -"1037",1994,3,6,8,8.713947114,0.713947114,1,7,1,-7.7,0.5,3 -"1038",1995,3,1,0,0.127449425,0.127449425,1,-5,0,-4.8,-1.2,6 -"1039",1996,3,1,0,2,2,0,-16,1,-7.8,-0.1,-6 -"1040",1996,3,2,2,3,1,0,-16,1,-7.8,-0.1,-6 -"1041",1996,3,3,3,6,3,0,-16,1,-7.8,-0.1,-6 -"1042",1996,3,4,6,6.5,0.5,0,-16,1,-7.8,-0.1,-6 -"1043",1996,3,5,6.5,8,1.5,0,-16,1,-7.8,-0.1,-6 -"1044",1996,3,6,8,10,2,0,-16,1,-7.8,-0.1,-6 -"1045",1997,3,1,0,0.027488892,0.027488892,1,14,0,-10.3,-0.7,1 -"1046",1998,3,1,0,2,2,0,-18,1,-5.9,-0.2,-9 -"1047",1998,3,2,2,3,1,0,-18,1,-5.9,-0.2,-9 -"1048",1998,3,3,3,6,3,0,-18,1,-5.9,-0.2,-9 -"1049",1998,3,4,6,6.33037489,0.33037489,0,-18,1,-5.9,-0.2,-9 -"1050",1999,3,1,0,2,2,0,-13,1,-0.1,0.2,-7 -"1051",1999,3,2,2,2.43618467,0.43618467,0,-13,1,-0.1,0.2,-7 -"1052",2000,3,1,0,1.703122009,1.703122009,1,-7,0,5.4,1.8,-5 -"1053",2001,3,1,0,2,2,0,-17,0,6.1,0.3,-2 -"1054",2001,3,2,2,3,1,0,-17,0,6.1,0.3,-2 -"1055",2001,3,3,3,6,3,0,-17,0,6.1,0.3,-2 -"1056",2001,3,4,6,6.5,0.5,0,-17,0,6.1,0.3,-2 -"1057",2001,3,5,6.5,6.528841663,0.028841663,1,-17,0,6.1,0.3,-2 -"1058",2002,3,1,0,0.808711086,0.808711086,1,12,0,-2.1,-0.9,4 -"1059",2003,3,1,0,0.075053163,0.075053163,1,17,0,8.2,0.7,2 -"1060",2004,3,1,0,1.152216309,1.152216309,0,-14,1,-3.4,0.6,-3 -"1061",2005,3,1,0,0.096852229,0.096852229,0,6,0,-3.7,1.4,-2 -"1062",2006,3,1,0,2,2,0,16,1,-4.2,0.3,-2 -"1063",2006,3,2,2,3,1,0,16,1,-4.2,0.3,-2 -"1064",2006,3,3,3,4.68688337,1.68688337,0,16,1,-4.2,0.3,-2 -"1065",2007,3,1,0,2,2,0,-12,1,5.8,-0.1,-1 -"1066",2007,3,2,2,3,1,0,-12,1,5.8,-0.1,-1 -"1067",2007,3,3,3,3.499212883,0.499212883,0,-12,1,5.8,-0.1,-1 -"1068",2008,3,1,0,0.761813239,0.761813239,1,-7,0,-1,-0.8,5 -"1069",2009,3,1,0,1.475708325,1.475708325,1,-6,0,-5.3,0.3,0 -"1070",2010,3,1,0,1.346698433,1.346698433,0,4,1,-5.3,-0.8,-1 -"1071",2011,3,1,0,2,2,0,5,1,7.1,0.3,-7 -"1072",2011,3,2,2,2.023708026,0.023708026,0,5,1,7.1,0.3,-7 -"1073",2012,3,1,0,0.363297809,0.363297809,1,8,0,-2.6,-0.7,2 -"1074",2013,3,1,0,1.822757838,1.822757838,1,-1,0,-3.6,-1.2,3 -"1075",2014,3,1,0,0.200766051,0.200766051,1,35,1,0.8,1.2,-2 -"1076",2015,3,1,0,0.38236103,0.38236103,1,3,0,-0.9,-0.4,3 -"1077",2016,3,1,0,2,2,0,-6,0,1.7,-0.7,-1 -"1078",2016,3,2,2,3,1,0,-6,0,1.7,-0.7,-1 -"1079",2016,3,3,3,4.97457381,1.97457381,0,-6,0,1.7,-0.7,-1 -"1080",2017,3,1,0,0.340793253,0.340793253,0,11,1,5,0.6,1 -"1081",2018,3,1,0,2,2,0,5,1,-4.6,-2.2,-4 -"1082",2018,3,2,2,3,1,0,5,1,-4.6,-2.2,-4 -"1083",2018,3,3,3,6,3,0,5,1,-4.6,-2.2,-4 -"1084",2018,3,4,6,6.5,0.5,0,5,1,-4.6,-2.2,-4 -"1085",2018,3,5,6.5,8,1.5,0,5,1,-4.6,-2.2,-4 -"1086",2018,3,6,8,10,2,0,5,1,-4.6,-2.2,-4 -"1087",2019,3,1,0,1.034354216,1.034354216,0,-13,1,-1,1.8,0 -"1088",2020,3,1,0,0.811651564,0.811651564,1,11,0,-3.5,2,-6 -"1089",2021,3,1,0,2,2,0,-14,0,3.4,0.7,-4 -"1090",2021,3,2,2,3,1,0,-14,0,3.4,0.7,-4 -"1091",2021,3,3,3,5.085070279,2.085070279,0,-14,0,3.4,0.7,-4 -"1092",2022,3,1,0,0.792258625,0.792258625,0,3,1,0.1,-1.3,2 -"1093",2023,3,1,0,2,2,0,-16,0,-6.3,-2.6,-3 -"1094",2023,3,2,2,3,1,0,-16,0,-6.3,-2.6,-3 -"1095",2023,3,3,3,6,3,0,-16,0,-6.3,-2.6,-3 -"1096",2023,3,4,6,6.5,0.5,0,-16,0,-6.3,-2.6,-3 -"1097",2023,3,5,6.5,8,1.5,0,-16,0,-6.3,-2.6,-3 -"1098",2023,3,6,8,9.880355842,1.880355842,0,-16,0,-6.3,-2.6,-3 -"1099",2024,3,1,0,0.422504877,0.422504877,1,15,1,8.9,-0.1,1 -"1100",2025,3,1,0,0.285273364,0.285273364,1,5,0,-0.6,1.7,-1 -"1101",2026,3,1,0,2,2,0,-21,0,-12.9,-0.7,3 -"1102",2026,3,2,2,3,1,0,-21,0,-12.9,-0.7,3 -"1103",2026,3,3,3,3.079604069,0.079604069,0,-21,0,-12.9,-0.7,3 -"1104",2027,3,1,0,0.279344837,0.279344837,0,-8,1,0.2,-1.6,-6 -"1105",2028,3,1,0,1.253978126,1.253978126,0,-7,1,4.8,-0.4,1 -"1106",2029,3,1,0,2,2,0,-14,0,-3.1,0.8,2 -"1107",2029,3,2,2,3,1,0,-14,0,-3.1,0.8,2 -"1108",2029,3,3,3,3.101650617,0.101650617,1,-14,0,-3.1,0.8,2 -"1109",2030,3,1,0,0.509886292,0.509886292,0,-12,0,-2,-1.1,6 -"1110",2031,3,1,0,2,2,0,-7,0,2.3,-0.4,-6 -"1111",2031,3,2,2,3,1,0,-7,0,2.3,-0.4,-6 -"1112",2031,3,3,3,4.737750615,1.737750615,0,-7,0,2.3,-0.4,-6 -"1113",2032,3,1,0,0.878929718,0.878929718,1,14,1,-4.3,0.5,10 -"1114",2033,3,1,0,1.181185267,1.181185267,1,-6,0,1.5,-1.4,1 -"1115",2034,3,1,0,2,2,0,-5,0,-6.4,0,-5 -"1116",2034,3,2,2,3,1,0,-5,0,-6.4,0,-5 -"1117",2034,3,3,3,6,3,0,-5,0,-6.4,0,-5 -"1118",2034,3,4,6,6.5,0.5,0,-5,0,-6.4,0,-5 -"1119",2034,3,5,6.5,8,1.5,0,-5,0,-6.4,0,-5 -"1120",2034,3,6,8,8.348360722,0.348360722,0,-5,0,-6.4,0,-5 -"1121",2035,3,1,0,2,2,0,2,0,-2.8,0.4,4 -"1122",2035,3,2,2,3,1,0,2,0,-2.8,0.4,4 -"1123",2035,3,3,3,6,3,0,2,0,-2.8,0.4,4 -"1124",2035,3,4,6,6.5,0.5,0,2,0,-2.8,0.4,4 -"1125",2035,3,5,6.5,8,1.5,0,2,0,-2.8,0.4,4 -"1126",2035,3,6,8,8.386187048,0.386187048,1,2,0,-2.8,0.4,4 -"1127",2036,3,1,0,0.081949968,0.081949968,1,41,0,-3.8,1.9,-4 -"1128",2037,3,1,0,0.814672996,0.814672996,1,-3,1,6.1,-1.9,5 -"1129",2038,3,1,0,1.110512483,1.110512483,1,5,0,-2,-0.9,-2 -"1130",2039,3,1,0,0.579792593,0.579792593,1,20,0,1.5,0,0 -"1131",2040,3,1,0,2,2,0,-23,1,-2.8,-1.1,0 -"1132",2040,3,2,2,3,1,0,-23,1,-2.8,-1.1,0 -"1133",2040,3,3,3,6,3,0,-23,1,-2.8,-1.1,0 -"1134",2040,3,4,6,6.025306788,0.025306788,0,-23,1,-2.8,-1.1,0 -"1135",2041,3,1,0,0.874834698,0.874834698,1,25,0,4.4,-0.3,8 -"1136",2042,3,1,0,0.991096953,0.991096953,1,-1,0,-1.8,-0.6,4 -"1137",2043,3,1,0,0.003434742,0.003434742,0,-10,1,2.3,0.4,-1 -"1138",2044,3,1,0,2,2,0,16,0,2,-1.5,7 -"1139",2044,3,2,2,3,1,0,16,0,2,-1.5,7 -"1140",2044,3,3,3,6,3,0,16,0,2,-1.5,7 -"1141",2044,3,4,6,6.5,0.5,0,16,0,2,-1.5,7 -"1142",2044,3,5,6.5,7.189869377,0.689869377,0,16,0,2,-1.5,7 -"1143",2045,3,1,0,1.33224991,1.33224991,1,-10,1,-0.3,1.5,-5 -"1144",2046,3,1,0,0.32639012,0.32639012,0,7,1,-0.9,-0.2,-1 -"1145",2047,3,1,0,0.323422191,0.323422191,1,6,0,-5.2,1.5,4 -"1146",2048,3,1,0,0.121303934,0.121303934,1,39,1,-4.3,-1.1,7 -"1147",2049,3,1,0,2,2,0,-2,1,-3,1.4,-4 -"1148",2049,3,2,2,3,1,0,-2,1,-3,1.4,-4 -"1149",2049,3,3,3,5.870380853,2.870380853,0,-2,1,-3,1.4,-4 -"1150",2050,3,1,0,1.304193259,1.304193259,1,13,0,-10.2,0.4,8 -"1151",2051,3,1,0,2,2,0,8,1,-3.1,-0.2,-4 -"1152",2051,3,2,2,3,1,0,8,1,-3.1,-0.2,-4 -"1153",2051,3,3,3,6,3,0,8,1,-3.1,-0.2,-4 -"1154",2051,3,4,6,6.5,0.5,0,8,1,-3.1,-0.2,-4 -"1155",2051,3,5,6.5,8,1.5,0,8,1,-3.1,-0.2,-4 -"1156",2051,3,6,8,10,2,0,8,1,-3.1,-0.2,-4 -"1157",2052,3,1,0,2,2,0,-13,1,-5.1,1.2,-3 -"1158",2052,3,2,2,3,1,0,-13,1,-5.1,1.2,-3 -"1159",2052,3,3,3,6,3,0,-13,1,-5.1,1.2,-3 -"1160",2052,3,4,6,6.5,0.5,0,-13,1,-5.1,1.2,-3 -"1161",2052,3,5,6.5,8,1.5,0,-13,1,-5.1,1.2,-3 -"1162",2052,3,6,8,9.275367428,1.275367428,1,-13,1,-5.1,1.2,-3 -"1163",2053,3,1,0,1.336050431,1.336050431,0,-1,1,7.7,1,-6 -"1164",2054,3,1,0,0.23039005,0.23039005,0,-9,1,-1.4,0.2,10 -"1165",2055,3,1,0,0.704978068,0.704978068,1,14,1,2.4,-0.1,-1 -"1166",2056,3,1,0,0.838133015,0.838133015,1,5,0,1.2,1.4,-5 -"1167",2057,3,1,0,2,2,0,-11,1,4.9,-1.5,-3 -"1168",2057,3,2,2,3,1,0,-11,1,4.9,-1.5,-3 -"1169",2057,3,3,3,3.202672015,0.202672015,0,-11,1,4.9,-1.5,-3 -"1170",2058,3,1,0,0.078823798,0.078823798,1,14,0,1.3,0.3,-2 -"1171",2059,3,1,0,1.656033198,1.656033198,0,-16,1,2.5,-1.3,4 -"1172",2060,3,1,0,0.098321837,0.098321837,1,13,1,1.9,0.9,1 -"1173",2061,3,1,0,2,2,0,-1,1,-3.1,-0.1,-7 -"1174",2061,3,2,2,3,1,0,-1,1,-3.1,-0.1,-7 -"1175",2061,3,3,3,6,3,0,-1,1,-3.1,-0.1,-7 -"1176",2061,3,4,6,6.5,0.5,0,-1,1,-3.1,-0.1,-7 -"1177",2061,3,5,6.5,8,1.5,0,-1,1,-3.1,-0.1,-7 -"1178",2061,3,6,8,8.955502983,0.955502983,0,-1,1,-3.1,-0.1,-7 -"1179",2062,3,1,0,0.690924019,0.690924019,1,5,0,8.1,-0.9,-8 -"1180",2063,3,1,0,1.387085425,1.387085425,0,4,0,0.4,-2,-1 -"1181",2064,3,1,0,1.947387491,1.947387491,1,-1,0,4.2,-0.7,-2 -"1182",2065,3,1,0,0.100753552,0.100753552,1,2,1,-0.1,1,5 -"1183",2066,3,1,0,0.004448598,0.004448598,1,20,0,4.5,1.5,-10 -"1184",2067,3,1,0,0.050364122,0.050364122,1,8,0,-4.3,2.2,-1 -"1185",2068,3,1,0,0.550871168,0.550871168,1,6,0,-3.5,1,1 -"1186",2069,3,1,0,2,2,0,-16,0,1.2,0.2,6 -"1187",2069,3,2,2,3,1,0,-16,0,1.2,0.2,6 -"1188",2069,3,3,3,6,3,0,-16,0,1.2,0.2,6 -"1189",2069,3,4,6,6.5,0.5,0,-16,0,1.2,0.2,6 -"1190",2069,3,5,6.5,7.662286878,1.162286878,0,-16,0,1.2,0.2,6 -"1191",2070,3,1,0,2,2,0,3,1,-3.2,0.7,-5 -"1192",2070,3,2,2,3,1,0,3,1,-3.2,0.7,-5 -"1193",2070,3,3,3,5.241756942,2.241756942,0,3,1,-3.2,0.7,-5 -"1194",2071,3,1,0,2,2,0,-16,0,4.5,-1,-1 -"1195",2071,3,2,2,2.334595162,0.334595162,0,-16,0,4.5,-1,-1 -"1196",2072,3,1,0,2,2,0,8,0,-0.4,0,1 -"1197",2072,3,2,2,3,1,0,8,0,-0.4,0,1 -"1198",2072,3,3,3,6,3,0,8,0,-0.4,0,1 -"1199",2072,3,4,6,6.5,0.5,0,8,0,-0.4,0,1 -"1200",2072,3,5,6.5,8,1.5,0,8,0,-0.4,0,1 -"1201",2072,3,6,8,10,2,0,8,0,-0.4,0,1 -"1202",2073,3,1,0,1.667959303,1.667959303,1,-11,1,2,-0.2,4 -"1203",2074,3,1,0,0.534935768,0.534935768,0,-8,0,-4.1,0.1,-3 -"1204",2075,3,1,0,2,2,0,0,1,1.8,-1.9,4 -"1205",2075,3,2,2,3,1,0,0,1,1.8,-1.9,4 -"1206",2075,3,3,3,6,3,0,0,1,1.8,-1.9,4 -"1207",2075,3,4,6,6.5,0.5,0,0,1,1.8,-1.9,4 -"1208",2075,3,5,6.5,8,1.5,0,0,1,1.8,-1.9,4 -"1209",2075,3,6,8,10,2,0,0,1,1.8,-1.9,4 -"1210",2076,3,1,0,0.122326456,0.122326456,1,25,0,3.9,0.5,5 -"1211",2077,3,1,0,0.086831698,0.086831698,0,0,1,2,0.7,2 -"1212",2078,3,1,0,0.185405162,0.185405162,1,15,1,0.2,-0.2,-4 -"1213",2079,3,1,0,2,2,0,-11,0,-3.1,0.8,1 -"1214",2079,3,2,2,3,1,0,-11,0,-3.1,0.8,1 -"1215",2079,3,3,3,6,3,0,-11,0,-3.1,0.8,1 -"1216",2079,3,4,6,6.5,0.5,0,-11,0,-3.1,0.8,1 -"1217",2079,3,5,6.5,7.925595583,1.425595583,0,-11,0,-3.1,0.8,1 -"1218",2080,3,1,0,2,2,0,-20,0,-7,0.3,0 -"1219",2080,3,2,2,3,1,0,-20,0,-7,0.3,0 -"1220",2080,3,3,3,5.343725274,2.343725274,0,-20,0,-7,0.3,0 -"1221",2081,3,1,0,0.436642462,0.436642462,0,6,0,1.9,1.5,-4 -"1222",2082,3,1,0,0.267304377,0.267304377,0,11,0,-0.2,-0.3,-2 -"1223",2083,3,1,0,1.91070428,1.91070428,0,-1,0,-6.2,-1.7,2 -"1224",2084,3,1,0,2,2,0,17,1,2.3,1.2,-10 -"1225",2084,3,2,2,3,1,0,17,1,2.3,1.2,-10 -"1226",2084,3,3,3,5.474724212,2.474724212,1,17,1,2.3,1.2,-10 -"1227",2085,3,1,0,2,2,0,-7,0,-2.2,-0.8,2 -"1228",2085,3,2,2,3,1,0,-7,0,-2.2,-0.8,2 -"1229",2085,3,3,3,6,3,0,-7,0,-2.2,-0.8,2 -"1230",2085,3,4,6,6.5,0.5,0,-7,0,-2.2,-0.8,2 -"1231",2085,3,5,6.5,8,1.5,0,-7,0,-2.2,-0.8,2 -"1232",2085,3,6,8,10,2,0,-7,0,-2.2,-0.8,2 -"1233",2086,3,1,0,0.705982605,0.705982605,1,23,1,5.5,0.7,-1 -"1234",2087,3,1,0,0.487003369,0.487003369,1,0,0,-7.9,1.5,6 -"1235",2088,3,1,0,0.291834599,0.291834599,1,1,1,-5.1,0.5,7 -"1236",2089,3,1,0,2,2,0,1,1,-5,-0.6,0 -"1237",2089,3,2,2,3,1,0,1,1,-5,-0.6,0 -"1238",2089,3,3,3,4.139908029,1.139908029,0,1,1,-5,-0.6,0 -"1239",2090,3,1,0,2,2,0,-1,0,-1,-1.2,-1 -"1240",2090,3,2,2,3,1,0,-1,0,-1,-1.2,-1 -"1241",2090,3,3,3,6,3,0,-1,0,-1,-1.2,-1 -"1242",2090,3,4,6,6.5,0.5,0,-1,0,-1,-1.2,-1 -"1243",2090,3,5,6.5,8,1.5,0,-1,0,-1,-1.2,-1 -"1244",2090,3,6,8,10,2,0,-1,0,-1,-1.2,-1 -"1245",2091,3,1,0,2,2,0,-36,0,-0.5,-0.4,-2 -"1246",2091,3,2,2,3,1,0,-36,0,-0.5,-0.4,-2 -"1247",2091,3,3,3,6,3,0,-36,0,-0.5,-0.4,-2 -"1248",2091,3,4,6,6.5,0.5,0,-36,0,-0.5,-0.4,-2 -"1249",2091,3,5,6.5,8,1.5,0,-36,0,-0.5,-0.4,-2 -"1250",2091,3,6,8,10,2,0,-36,0,-0.5,-0.4,-2 -"1251",2092,3,1,0,0.681674294,0.681674294,1,20,1,6.3,0.9,8 -"1252",2093,3,1,0,0.977666226,0.977666226,0,-29,0,3.3,1,-6 -"1253",2094,3,1,0,2,2,0,-15,1,-0.7,-0.9,-5 -"1254",2094,3,2,2,3,1,0,-15,1,-0.7,-0.9,-5 -"1255",2094,3,3,3,6,3,0,-15,1,-0.7,-0.9,-5 -"1256",2094,3,4,6,6.5,0.5,0,-15,1,-0.7,-0.9,-5 -"1257",2094,3,5,6.5,7.487079107,0.987079107,0,-15,1,-0.7,-0.9,-5 -"1258",2095,3,1,0,0.675451802,0.675451802,0,19,0,-1.9,-1.2,5 -"1259",2096,3,1,0,0.656538604,0.656538604,1,-13,0,5.5,2.3,8 -"1260",2097,3,1,0,0.214898406,0.214898406,0,13,0,-1.9,-3.1,0 -"1261",2098,3,1,0,2,2,0,4,1,0.3,0.4,7 -"1262",2098,3,2,2,2.996887902,0.996887902,1,4,1,0.3,0.4,7 -"1263",2099,3,1,0,2,2,0,5,0,-5.1,0.3,-2 -"1264",2099,3,2,2,3,1,0,5,0,-5.1,0.3,-2 -"1265",2099,3,3,3,6,3,0,5,0,-5.1,0.3,-2 -"1266",2099,3,4,6,6.346550163,0.346550163,1,5,0,-5.1,0.3,-2 -"1267",2100,3,1,0,2,2,0,3,1,-3.3,-0.2,3 -"1268",2100,3,2,2,3,1,0,3,1,-3.3,-0.2,3 -"1269",2100,3,3,3,6,3,0,3,1,-3.3,-0.2,3 -"1270",2100,3,4,6,6.5,0.5,0,3,1,-3.3,-0.2,3 -"1271",2100,3,5,6.5,6.651315637,0.151315637,1,3,1,-3.3,-0.2,3 -"1272",2101,3,1,0,0.063461415,0.063461415,0,9,0,-2.6,0.7,0 -"1273",2102,3,1,0,0.14439973,0.14439973,0,-17,0,0.1,-0.1,-4 -"1274",2103,3,1,0,1.671873607,1.671873607,0,-7,0,-2.4,-0.5,-1 -"1275",2104,3,1,0,2,2,0,0,1,0.5,-0.8,-3 -"1276",2104,3,2,2,3,1,0,0,1,0.5,-0.8,-3 -"1277",2104,3,3,3,6,3,0,0,1,0.5,-0.8,-3 -"1278",2104,3,4,6,6.5,0.5,0,0,1,0.5,-0.8,-3 -"1279",2104,3,5,6.5,8,1.5,0,0,1,0.5,-0.8,-3 -"1280",2104,3,6,8,10,2,0,0,1,0.5,-0.8,-3 -"1281",2105,3,1,0,2,2,0,4,1,2.7,-0.2,5 -"1282",2105,3,2,2,3,1,0,4,1,2.7,-0.2,5 -"1283",2105,3,3,3,5.214314192,2.214314192,1,4,1,2.7,-0.2,5 -"1284",2106,3,1,0,1.008032072,1.008032072,1,14,1,-0.9,0.2,7 -"1285",2107,3,1,0,0.294280429,0.294280429,0,-22,0,-0.1,0,-1 -"1286",2108,3,1,0,0.900205156,0.900205156,0,17,1,1.5,-0.6,-13 -"1287",2109,3,1,0,0.835349516,0.835349516,0,12,1,-2.9,0.1,-6 -"1288",2110,3,1,0,2,2,0,3,1,5.9,0.6,-7 -"1289",2110,3,2,2,3,1,0,3,1,5.9,0.6,-7 -"1290",2110,3,3,3,6,3,0,3,1,5.9,0.6,-7 -"1291",2110,3,4,6,6.5,0.5,0,3,1,5.9,0.6,-7 -"1292",2110,3,5,6.5,8,1.5,0,3,1,5.9,0.6,-7 -"1293",2110,3,6,8,10,2,0,3,1,5.9,0.6,-7 -"1294",2111,3,1,0,0.444265104,0.444265104,1,-9,1,3.4,1.7,1 -"1295",2112,3,1,0,2,2,0,1,1,5,1.1,-5 -"1296",2112,3,2,2,3,1,0,1,1,5,1.1,-5 -"1297",2112,3,3,3,3.568432753,0.568432753,0,1,1,5,1.1,-5 -"1298",2113,3,1,0,0.739650464,0.739650464,1,-5,0,-6,0.2,-3 -"1299",2114,3,1,0,1.80519057,1.80519057,1,16,1,7.6,-1.3,-3 -"1300",2115,3,1,0,2,2,0,8,0,-17.8,-0.3,-10 -"1301",2115,3,2,2,3,1,0,8,0,-17.8,-0.3,-10 -"1302",2115,3,3,3,6,3,0,8,0,-17.8,-0.3,-10 -"1303",2115,3,4,6,6.5,0.5,0,8,0,-17.8,-0.3,-10 -"1304",2115,3,5,6.5,8,1.5,0,8,0,-17.8,-0.3,-10 -"1305",2115,3,6,8,10,2,0,8,0,-17.8,-0.3,-10 -"1306",2116,3,1,0,2,2,0,-14,1,1.7,-0.2,-1 -"1307",2116,3,2,2,3,1,0,-14,1,1.7,-0.2,-1 -"1308",2116,3,3,3,6,3,0,-14,1,1.7,-0.2,-1 -"1309",2116,3,4,6,6.5,0.5,0,-14,1,1.7,-0.2,-1 -"1310",2116,3,5,6.5,8,1.5,0,-14,1,1.7,-0.2,-1 -"1311",2116,3,6,8,10,2,0,-14,1,1.7,-0.2,-1 -"1312",2117,3,1,0,2,2,0,9,1,1,0,3 -"1313",2117,3,2,2,3,1,0,9,1,1,0,3 -"1314",2117,3,3,3,6,3,0,9,1,1,0,3 -"1315",2117,3,4,6,6.046450381,0.046450381,1,9,1,1,0,3 -"1316",2118,3,1,0,0.204911352,0.204911352,1,34,0,-4.2,0.8,10 -"1317",2119,3,1,0,2,2,0,7,1,-2.4,1.3,-2 -"1318",2119,3,2,2,3,1,0,7,1,-2.4,1.3,-2 -"1319",2119,3,3,3,5.104324094,2.104324094,0,7,1,-2.4,1.3,-2 -"1320",2120,3,1,0,2,2,0,2,0,-2.3,-0.4,-4 -"1321",2120,3,2,2,3,1,0,2,0,-2.3,-0.4,-4 -"1322",2120,3,3,3,3.570606646,0.570606646,0,2,0,-2.3,-0.4,-4 -"1323",2121,3,1,0,2,2,0,-7,1,-1,0.2,-6 -"1324",2121,3,2,2,3,1,0,-7,1,-1,0.2,-6 -"1325",2121,3,3,3,3.233924196,0.233924196,0,-7,1,-1,0.2,-6 -"1326",2122,3,1,0,0.204985455,0.204985455,0,-1,1,-0.6,-1.8,-4 -"1327",2123,3,1,0,1.38057477,1.38057477,1,15,0,7.5,0,0 -"1328",2124,3,1,0,0.687305163,0.687305163,1,2,0,-1.8,1.1,-2 -"1329",2125,3,1,0,2,2,0,-10,1,-2.4,-0.2,2 -"1330",2125,3,2,2,3,1,0,-10,1,-2.4,-0.2,2 -"1331",2125,3,3,3,6,3,0,-10,1,-2.4,-0.2,2 -"1332",2125,3,4,6,6.5,0.5,0,-10,1,-2.4,-0.2,2 -"1333",2125,3,5,6.5,7.656227739,1.156227739,0,-10,1,-2.4,-0.2,2 -"1334",2126,3,1,0,2,2,0,-16,1,0.1,1.1,-1 -"1335",2126,3,2,2,3,1,0,-16,1,0.1,1.1,-1 -"1336",2126,3,3,3,6,3,0,-16,1,0.1,1.1,-1 -"1337",2126,3,4,6,6.5,0.5,0,-16,1,0.1,1.1,-1 -"1338",2126,3,5,6.5,8,1.5,0,-16,1,0.1,1.1,-1 -"1339",2126,3,6,8,9.883291625,1.883291625,1,-16,1,0.1,1.1,-1 -"1340",2127,3,1,0,0.912593797,0.912593797,0,9,1,7.6,-0.5,1 -"1341",2128,3,1,0,0.03009091,0.03009091,1,16,0,-1.8,1.5,13 -"1342",2129,3,1,0,2,2,0,-20,1,2.6,-0.9,6 -"1343",2129,3,2,2,3,1,0,-20,1,2.6,-0.9,6 -"1344",2129,3,3,3,6,3,0,-20,1,2.6,-0.9,6 -"1345",2129,3,4,6,6.5,0.5,0,-20,1,2.6,-0.9,6 -"1346",2129,3,5,6.5,8,1.5,0,-20,1,2.6,-0.9,6 -"1347",2129,3,6,8,10,2,0,-20,1,2.6,-0.9,6 -"1348",2130,3,1,0,0.154903256,0.154903256,0,-14,1,-2.2,0.2,-7 -"1349",2131,3,1,0,0.131891918,0.131891918,1,-23,0,2.5,0.9,3 -"1350",2132,3,1,0,2,2,0,-3,0,2.3,-1,-1 -"1351",2132,3,2,2,2.765787778,0.765787778,1,-3,0,2.3,-1,-1 -"1352",2133,3,1,0,1.29986755,1.29986755,0,-9,1,-2.2,-0.1,-5 -"1353",2134,3,1,0,2,2,0,-3,1,5.1,-0.5,4 -"1354",2134,3,2,2,3,1,0,-3,1,5.1,-0.5,4 -"1355",2134,3,3,3,6,3,0,-3,1,5.1,-0.5,4 -"1356",2134,3,4,6,6.5,0.5,0,-3,1,5.1,-0.5,4 -"1357",2134,3,5,6.5,8,1.5,0,-3,1,5.1,-0.5,4 -"1358",2134,3,6,8,10,2,0,-3,1,5.1,-0.5,4 -"1359",2135,3,1,0,1.004027692,1.004027692,0,10,1,6.9,-0.5,-4 -"1360",2136,3,1,0,1.796425387,1.796425387,0,-1,1,1.3,0.3,-9 -"1361",2137,3,1,0,0.21941795,0.21941795,1,1,1,-4.1,-1,5 -"1362",2138,3,1,0,2,2,0,10,0,3.9,0.2,-2 -"1363",2138,3,2,2,3,1,0,10,0,3.9,0.2,-2 -"1364",2138,3,3,3,6,3,0,10,0,3.9,0.2,-2 -"1365",2138,3,4,6,6.076888364,0.076888364,1,10,0,3.9,0.2,-2 -"1366",2139,3,1,0,1.16627725,1.16627725,0,12,1,0.6,-0.1,6 -"1367",2140,3,1,0,1.152902007,1.152902007,0,-2,0,-2.7,-1.8,3 -"1368",2141,3,1,0,0.528725699,0.528725699,1,14,0,-1.7,0.4,2 -"1369",2142,3,1,0,0.289176465,0.289176465,1,9,0,0.8,1.7,5 -"1370",2143,3,1,0,1.474298999,1.474298999,1,10,0,-3,0.8,4 -"1371",2144,3,1,0,2,2,0,-13,0,5.3,-0.9,3 -"1372",2144,3,2,2,2.538323354,0.538323354,0,-13,0,5.3,-0.9,3 -"1373",2145,3,1,0,0.764454502,0.764454502,1,32,1,4.6,-0.2,2 -"1374",2146,3,1,0,2,2,0,1,1,6.3,-0.6,-6 -"1375",2146,3,2,2,3,1,0,1,1,6.3,-0.6,-6 -"1376",2146,3,3,3,6,3,0,1,1,6.3,-0.6,-6 -"1377",2146,3,4,6,6.5,0.5,0,1,1,6.3,-0.6,-6 -"1378",2146,3,5,6.5,8,1.5,0,1,1,6.3,-0.6,-6 -"1379",2146,3,6,8,10,2,0,1,1,6.3,-0.6,-6 -"1380",2147,3,1,0,0.890495471,0.890495471,1,-9,1,3.7,0.1,4 -"1381",2148,3,1,0,1.883192418,1.883192418,0,-3,1,8.4,-0.7,1 -"1382",2149,3,1,0,0.316113701,0.316113701,0,17,1,1.7,0.6,0 -"1383",2150,3,1,0,2,2,0,3,0,1.9,-0.2,-2 -"1384",2150,3,2,2,3,1,0,3,0,1.9,-0.2,-2 -"1385",2150,3,3,3,6,3,0,3,0,1.9,-0.2,-2 -"1386",2150,3,4,6,6.5,0.5,0,3,0,1.9,-0.2,-2 -"1387",2150,3,5,6.5,7.923456032,1.423456032,1,3,0,1.9,-0.2,-2 -"1388",2151,3,1,0,2,2,0,-2,0,-6.2,0.3,2 -"1389",2151,3,2,2,3,1,0,-2,0,-6.2,0.3,2 -"1390",2151,3,3,3,3.786911314,0.786911314,0,-2,0,-6.2,0.3,2 -"1391",2152,3,1,0,2,2,0,-10,1,-1.5,-0.3,6 -"1392",2152,3,2,2,2.002656266,0.002656266,0,-10,1,-1.5,-0.3,6 -"1393",2153,3,1,0,0.037741426,0.037741426,0,3,1,-4.5,-0.7,2 -"1394",2154,3,1,0,2,2,0,16,1,2.5,-1.1,8 -"1395",2154,3,2,2,2.035068858,0.035068858,0,16,1,2.5,-1.1,8 -"1396",2155,3,1,0,1.756495712,1.756495712,1,-7,1,4.7,-0.2,4 -"1397",2156,3,1,0,0.119662546,0.119662546,1,26,0,4.6,0.5,-4 -"1398",2157,3,1,0,2,2,0,7,1,-1.1,-0.4,-3 -"1399",2157,3,2,2,3,1,0,7,1,-1.1,-0.4,-3 -"1400",2157,3,3,3,5.418258097,2.418258097,0,7,1,-1.1,-0.4,-3 -"1401",2158,3,1,0,1.62345909,1.62345909,0,-7,1,-16.4,0.9,1 -"1402",2159,3,1,0,0.277486293,0.277486293,1,-3,0,-6.4,-0.8,5 -"1403",2160,3,1,0,2,2,0,-8,1,-3.8,0.4,-7 -"1404",2160,3,2,2,3,1,0,-8,1,-3.8,0.4,-7 -"1405",2160,3,3,3,6,3,0,-8,1,-3.8,0.4,-7 -"1406",2160,3,4,6,6.5,0.5,0,-8,1,-3.8,0.4,-7 -"1407",2160,3,5,6.5,8,1.5,0,-8,1,-3.8,0.4,-7 -"1408",2160,3,6,8,9.724306943,1.724306943,0,-8,1,-3.8,0.4,-7 -"1409",2161,3,1,0,1.188105229,1.188105229,1,18,0,3.4,-0.4,7 -"1410",2162,3,1,0,2,2,0,-26,0,-4.5,-0.3,5 -"1411",2162,3,2,2,3,1,0,-26,0,-4.5,-0.3,5 -"1412",2162,3,3,3,3.436273615,0.436273615,0,-26,0,-4.5,-0.3,5 -"1413",2163,3,1,0,2,2,0,-6,1,1.2,-1,-6 -"1414",2163,3,2,2,3,1,0,-6,1,1.2,-1,-6 -"1415",2163,3,3,3,6,3,0,-6,1,1.2,-1,-6 -"1416",2163,3,4,6,6.5,0.5,0,-6,1,1.2,-1,-6 -"1417",2163,3,5,6.5,8,1.5,0,-6,1,1.2,-1,-6 -"1418",2163,3,6,8,10,2,0,-6,1,1.2,-1,-6 -"1419",2164,3,1,0,2,2,0,-3,1,8.7,-1.3,-4 -"1420",2164,3,2,2,3,1,0,-3,1,8.7,-1.3,-4 -"1421",2164,3,3,3,6,3,0,-3,1,8.7,-1.3,-4 -"1422",2164,3,4,6,6.5,0.5,0,-3,1,8.7,-1.3,-4 -"1423",2164,3,5,6.5,8,1.5,0,-3,1,8.7,-1.3,-4 -"1424",2164,3,6,8,10,2,0,-3,1,8.7,-1.3,-4 -"1425",2165,3,1,0,2,2,0,-6,1,-4.3,-0.2,-14 -"1426",2165,3,2,2,2.909111944,0.909111944,0,-6,1,-4.3,-0.2,-14 -"1427",2166,3,1,0,2,2,0,-16,1,3.2,-0.7,-4 -"1428",2166,3,2,2,3,1,0,-16,1,3.2,-0.7,-4 -"1429",2166,3,3,3,6,3,0,-16,1,3.2,-0.7,-4 -"1430",2166,3,4,6,6.5,0.5,0,-16,1,3.2,-0.7,-4 -"1431",2166,3,5,6.5,8,1.5,0,-16,1,3.2,-0.7,-4 -"1432",2166,3,6,8,8.402521016,0.402521016,0,-16,1,3.2,-0.7,-4 -"1433",2167,3,1,0,0.386133678,0.386133678,1,9,0,4.1,0.6,8 -"1434",2168,3,1,0,1.052679171,1.052679171,0,-9,1,-4.3,-1.5,2 -"1435",2169,3,1,0,0.265241508,0.265241508,0,4,0,0.3,-1.8,5 -"1436",2170,3,1,0,2,2,0,3,1,4,-0.8,-1 -"1437",2170,3,2,2,3,1,0,3,1,4,-0.8,-1 -"1438",2170,3,3,3,6,3,0,3,1,4,-0.8,-1 -"1439",2170,3,4,6,6.5,0.5,0,3,1,4,-0.8,-1 -"1440",2170,3,5,6.5,8,1.5,0,3,1,4,-0.8,-1 -"1441",2170,3,6,8,9.929559672,1.929559672,0,3,1,4,-0.8,-1 -"1442",2171,3,1,0,0.577863177,0.577863177,0,-30,0,0.8,-0.6,-15 -"1443",2172,3,1,0,2,2,0,1,0,-6.4,-1.6,6 -"1444",2172,3,2,2,2.020005265,0.020005265,1,1,0,-6.4,-1.6,6 -"1445",2173,3,1,0,0.073968475,0.073968475,1,-24,1,5.6,-0.4,8 -"1446",2174,3,1,0,0.370035455,0.370035455,0,-8,0,-6.8,0.3,3 -"1447",2175,3,1,0,0.592257233,0.592257233,0,-17,1,-3.6,-0.7,-4 -"1448",2176,3,1,0,0.273380034,0.273380034,1,7,0,-5.9,-0.4,0 -"1449",2177,3,1,0,2,2,0,-34,1,1.5,-1.3,4 -"1450",2177,3,2,2,3,1,0,-34,1,1.5,-1.3,4 -"1451",2177,3,3,3,6,3,0,-34,1,1.5,-1.3,4 -"1452",2177,3,4,6,6.5,0.5,0,-34,1,1.5,-1.3,4 -"1453",2177,3,5,6.5,8,1.5,0,-34,1,1.5,-1.3,4 -"1454",2177,3,6,8,8.030876774,0.030876774,0,-34,1,1.5,-1.3,4 -"1455",2178,3,1,0,1.310689029,1.310689029,1,-9,0,-0.2,-1.2,7 -"1456",2179,3,1,0,2,2,0,-16,1,-2.9,0.6,4 -"1457",2179,3,2,2,3,1,0,-16,1,-2.9,0.6,4 -"1458",2179,3,3,3,6,3,0,-16,1,-2.9,0.6,4 -"1459",2179,3,4,6,6.5,0.5,1,-16,1,-2.9,0.6,4 -"1461",2180,3,1,0,1.127186292,1.127186292,0,11,1,-1.7,-0.1,-3 -"1462",2181,3,1,0,0.651876993,0.651876993,0,-17,0,-0.4,-0.5,-5 -"1463",2182,3,1,0,0.938273344,0.938273344,0,-9,1,5.3,-0.7,3 -"1464",2183,3,1,0,2,2,0,-24,0,-8.3,2.3,0 -"1465",2183,3,2,2,2.644002728,0.644002728,1,-24,0,-8.3,2.3,0 -"1466",2184,3,1,0,2,2,0,-8,1,-1.5,0.6,-11 -"1467",2184,3,2,2,3,1,0,-8,1,-1.5,0.6,-11 -"1468",2184,3,3,3,6,3,0,-8,1,-1.5,0.6,-11 -"1469",2184,3,4,6,6.5,0.5,0,-8,1,-1.5,0.6,-11 -"1470",2184,3,5,6.5,8,1.5,0,-8,1,-1.5,0.6,-11 -"1471",2184,3,6,8,10,2,0,-8,1,-1.5,0.6,-11 -"1472",2185,3,1,0,1.170283011,1.170283011,0,0,0,7.4,0.4,-6 -"1473",2186,3,1,0,0.20362285,0.20362285,1,16,0,2.1,1.3,3 -"1474",2187,3,1,0,2,2,0,-14,1,0.2,-0.9,9 -"1475",2187,3,2,2,2.361668986,0.361668986,0,-14,1,0.2,-0.9,9 -"1476",2188,3,1,0,2,2,0,-3,1,1.5,-2.9,2 -"1477",2188,3,2,2,2.482119895,0.482119895,1,-3,1,1.5,-2.9,2 -"1478",2189,3,1,0,2,2,0,-19,0,-0.1,-0.8,6 -"1479",2189,3,2,2,2.201886655,0.201886655,1,-19,0,-0.1,-0.8,6 -"1480",2190,3,1,0,0.440426608,0.440426608,1,28,1,-1.9,0,2 -"1481",2191,3,1,0,2,2,0,19,1,0.9,0.4,-10 -"1482",2191,3,2,2,3,1,0,19,1,0.9,0.4,-10 -"1483",2191,3,3,3,4.348658153,1.348658153,0,19,1,0.9,0.4,-10 -"1484",2192,3,1,0,0.912402861,0.912402861,1,18,1,12,-0.1,-2 -"1485",2193,3,1,0,1.417600022,1.417600022,0,-22,1,6.2,-1.7,4 -"1486",2194,3,1,0,2,2,0,4,1,9.5,0.8,-11 -"1487",2194,3,2,2,3,1,0,4,1,9.5,0.8,-11 -"1488",2194,3,3,3,4.266942382,1.266942382,0,4,1,9.5,0.8,-11 -"1489",2195,3,1,0,1.230335521,1.230335521,1,-17,0,-0.8,1.6,2 -"1490",2196,3,1,0,2,2,0,-31,0,-1.2,0.5,9 -"1491",2196,3,2,2,3,1,0,-31,0,-1.2,0.5,9 -"1492",2196,3,3,3,6,3,0,-31,0,-1.2,0.5,9 -"1493",2196,3,4,6,6.5,0.5,0,-31,0,-1.2,0.5,9 -"1494",2196,3,5,6.5,8,1.5,0,-31,0,-1.2,0.5,9 -"1495",2196,3,6,8,8.103980503,0.103980503,1,-31,0,-1.2,0.5,9 -"1496",2197,3,1,0,2,2,0,6,1,-4,1.2,7 -"1497",2197,3,2,2,2.70860009,0.70860009,1,6,1,-4,1.2,7 -"1498",2198,3,1,0,2,2,0,-1,1,7.3,0.3,11 -"1499",2198,3,2,2,3,1,0,-1,1,7.3,0.3,11 -"1500",2198,3,3,3,6,3,0,-1,1,7.3,0.3,11 -"1501",2198,3,4,6,6.5,0.5,0,-1,1,7.3,0.3,11 -"1502",2198,3,5,6.5,6.887017672,0.387017672,1,-1,1,7.3,0.3,11 -"1503",2199,3,1,0,1.754089289,1.754089289,1,7,0,4.1,0.1,2 -"1504",2200,3,1,0,0.104600982,0.104600982,1,11,0,0,1.4,4 -"1505",2201,3,1,0,2,2,0,-8,0,2.2,-1.2,0 -"1506",2201,3,2,2,2.037201543,0.037201543,0,-8,0,2.2,-1.2,0 -"1507",2202,3,1,0,2,2,0,-4,1,-7.4,-0.3,-5 -"1508",2202,3,2,2,3,1,0,-4,1,-7.4,-0.3,-5 -"1509",2202,3,3,3,4.018289102,1.018289102,0,-4,1,-7.4,-0.3,-5 -"1510",2203,3,1,0,1.259524872,1.259524872,1,15,1,-0.8,1.4,5 -"1511",2204,3,1,0,0.112843616,0.112843616,1,15,0,2.4,-0.7,8 -"1512",2205,3,1,0,2,2,0,-22,1,-10.2,-1.3,-2 -"1513",2205,3,2,2,3,1,0,-22,1,-10.2,-1.3,-2 -"1514",2205,3,3,3,6,3,0,-22,1,-10.2,-1.3,-2 -"1515",2205,3,4,6,6.5,0.5,0,-22,1,-10.2,-1.3,-2 -"1516",2205,3,5,6.5,8,1.5,0,-22,1,-10.2,-1.3,-2 -"1517",2205,3,6,8,10,2,0,-22,1,-10.2,-1.3,-2 -"1518",2206,3,1,0,2,2,0,-12,0,3.5,-0.3,4 -"1519",2206,3,2,2,2.654149431,0.654149431,1,-12,0,3.5,-0.3,4 -"1520",2207,3,1,0,0.546944285,0.546944285,0,0,0,2.5,-0.5,5 -"1521",2208,3,1,0,1.989894742,1.989894742,1,-6,0,0.9,-0.3,8 -"1522",2209,3,1,0,1.367641613,1.367641613,1,9,1,2.9,1.1,-5 -"1523",2210,3,1,0,0.541077193,0.541077193,1,5,0,7.8,0.6,-6 -"1524",2211,3,1,0,2,2,0,-3,1,-2.6,-1.8,9 -"1525",2211,3,2,2,3,1,0,-3,1,-2.6,-1.8,9 -"1526",2211,3,3,3,6,3,0,-3,1,-2.6,-1.8,9 -"1527",2211,3,4,6,6.5,0.5,0,-3,1,-2.6,-1.8,9 -"1528",2211,3,5,6.5,8,1.5,0,-3,1,-2.6,-1.8,9 -"1529",2211,3,6,8,10,2,0,-3,1,-2.6,-1.8,9 -"1530",2212,3,1,0,1.475059739,1.475059739,0,-8,1,-0.4,0.4,1 -"1531",2213,3,1,0,2,2,0,-14,1,6.6,-3.3,1 -"1532",2213,3,2,2,3,1,0,-14,1,6.6,-3.3,1 -"1533",2213,3,3,3,6,3,0,-14,1,6.6,-3.3,1 -"1534",2213,3,4,6,6.5,0.5,0,-14,1,6.6,-3.3,1 -"1535",2213,3,5,6.5,8,1.5,0,-14,1,6.6,-3.3,1 -"1536",2213,3,6,8,10,2,0,-14,1,6.6,-3.3,1 -"1537",2214,3,1,0,0.730390725,0.730390725,1,26,1,3.3,-0.7,2 -"1538",2215,3,1,0,1.268617234,1.268617234,1,9,1,6.4,0.4,-1 -"1539",2216,3,1,0,0.392729758,0.392729758,1,1,0,-1.7,-0.9,-8 -"1540",2217,3,1,0,1.42352113,1.42352113,1,-17,0,1.5,0.6,-10 -"1541",2218,3,1,0,0.969200528,0.969200528,1,2,0,-1.9,0.5,-1 -"1542",2219,3,1,0,1.012947588,1.012947588,1,9,0,3.7,0.1,9 -"1543",2220,3,1,0,2,2,0,-13,0,0,-1.7,4 -"1544",2220,3,2,2,3,1,0,-13,0,0,-1.7,4 -"1545",2220,3,3,3,5.68876301,2.68876301,0,-13,0,0,-1.7,4 -"1546",2221,3,1,0,1.683503605,1.683503605,1,24,0,-1.7,-1.4,5 -"1547",2222,3,1,0,1.223943883,1.223943883,1,-12,1,-4.4,0.3,-6 -"1548",2223,3,1,0,0.561645603,0.561645603,1,12,0,-1.2,-0.3,8 -"1549",2224,3,1,0,2,2,0,-12,0,5.3,0.1,-2 -"1550",2224,3,2,2,3,1,0,-12,0,5.3,0.1,-2 -"1551",2224,3,3,3,6,3,0,-12,0,5.3,0.1,-2 -"1552",2224,3,4,6,6.5,0.5,0,-12,0,5.3,0.1,-2 -"1553",2224,3,5,6.5,7.216280506,0.716280506,0,-12,0,5.3,0.1,-2 -"1554",2225,3,1,0,2,2,0,1,1,4.5,-0.2,4 -"1555",2225,3,2,2,3,1,0,1,1,4.5,-0.2,4 -"1556",2225,3,3,3,6,3,0,1,1,4.5,-0.2,4 -"1557",2225,3,4,6,6.5,0.5,0,1,1,4.5,-0.2,4 -"1558",2225,3,5,6.5,8,1.5,0,1,1,4.5,-0.2,4 -"1559",2225,3,6,8,9.784400908,1.784400908,1,1,1,4.5,-0.2,4 -"1560",2226,3,1,0,0.331135443,0.331135443,1,29,0,-3.4,0.9,2 -"1561",2227,3,1,0,2,2,0,-1,0,0.3,1,-14 -"1562",2227,3,2,2,3,1,0,-1,0,0.3,1,-14 -"1563",2227,3,3,3,3.051178654,0.051178654,0,-1,0,0.3,1,-14 -"1564",2228,3,1,0,1.709213111,1.709213111,0,4,0,5.1,0.1,-14 -"1565",2229,3,1,0,2,2,0,-3,0,-0.4,-0.9,2 -"1566",2229,3,2,2,2.67059973,0.67059973,0,-3,0,-0.4,-0.9,2 -"1567",2230,3,1,0,1.494265834,1.494265834,0,-25,0,0.6,0.1,-6 -"1568",2231,3,1,0,2,2,0,-15,0,3.3,-0.8,5 -"1569",2231,3,2,2,2.802287179,0.802287179,0,-15,0,3.3,-0.8,5 -"1570",2232,3,1,0,1.509792056,1.509792056,1,-9,0,-11.4,1,-2 -"1571",2233,3,1,0,2,2,0,12,0,5.1,-0.4,-15 -"1572",2233,3,2,2,3,1,0,12,0,5.1,-0.4,-15 -"1573",2233,3,3,3,6,3,0,12,0,5.1,-0.4,-15 -"1574",2233,3,4,6,6.5,0.5,0,12,0,5.1,-0.4,-15 -"1575",2233,3,5,6.5,8,1.5,0,12,0,5.1,-0.4,-15 -"1576",2233,3,6,8,10,2,0,12,0,5.1,-0.4,-15 -"1577",2234,3,1,0,0.13739739,0.13739739,1,4,0,-6.6,0.2,8 -"1578",2235,3,1,0,1.397498532,1.397498532,1,18,1,-3.4,-0.2,-2 -"1579",2236,3,1,0,1.941651722,1.941651722,1,-1,1,-4.5,1.3,10 -"1580",2237,3,1,0,2,2,0,-10,0,-2.7,-0.8,-4 -"1581",2237,3,2,2,3,1,0,-10,0,-2.7,-0.8,-4 -"1582",2237,3,3,3,6,3,0,-10,0,-2.7,-0.8,-4 -"1583",2237,3,4,6,6.5,0.5,0,-10,0,-2.7,-0.8,-4 -"1584",2237,3,5,6.5,8,1.5,0,-10,0,-2.7,-0.8,-4 -"1585",2237,3,6,8,10,2,0,-10,0,-2.7,-0.8,-4 -"1586",2238,3,1,0,2,2,0,20,0,0.9,-0.8,-1 -"1587",2238,3,2,2,3,1,0,20,0,0.9,-0.8,-1 -"1588",2238,3,3,3,5.265432467,2.265432467,1,20,0,0.9,-0.8,-1 -"1589",2239,3,1,0,2,2,0,-17,0,2.5,-0.1,-9 -"1590",2239,3,2,2,3,1,0,-17,0,2.5,-0.1,-9 -"1591",2239,3,3,3,6,3,0,-17,0,2.5,-0.1,-9 -"1592",2239,3,4,6,6.5,0.5,0,-17,0,2.5,-0.1,-9 -"1593",2239,3,5,6.5,8,1.5,0,-17,0,2.5,-0.1,-9 -"1594",2239,3,6,8,10,2,0,-17,0,2.5,-0.1,-9 -"1595",2240,3,1,0,2,2,0,-17,1,6.5,-0.3,-5 -"1596",2240,3,2,2,3,1,0,-17,1,6.5,-0.3,-5 -"1597",2240,3,3,3,6,3,0,-17,1,6.5,-0.3,-5 -"1598",2240,3,4,6,6.5,0.5,0,-17,1,6.5,-0.3,-5 -"1599",2240,3,5,6.5,8,1.5,0,-17,1,6.5,-0.3,-5 -"1600",2240,3,6,8,10,2,0,-17,1,6.5,-0.3,-5 -"1601",2241,3,1,0,0.63305566,0.63305566,1,22,1,2.1,-0.7,5 -"1602",2242,3,1,0,0.242311201,0.242311201,0,13,1,-1.6,-0.9,-11 -"1603",2243,3,1,0,2,2,0,-8,0,-2.4,0.6,-6 -"1604",2243,3,2,2,3,1,0,-8,0,-2.4,0.6,-6 -"1605",2243,3,3,3,5.913558835,2.913558835,0,-8,0,-2.4,0.6,-6 -"1606",2244,3,1,0,2,2,0,-11,0,0.1,1.2,-9 -"1607",2244,3,2,2,3,1,0,-11,0,0.1,1.2,-9 -"1608",2244,3,3,3,6,3,0,-11,0,0.1,1.2,-9 -"1609",2244,3,4,6,6.48295031,0.48295031,0,-11,0,0.1,1.2,-9 -"1610",2245,3,1,0,1.791022483,1.791022483,1,17,1,3.2,0.2,2 -"1611",2246,3,1,0,0.538918998,0.538918998,1,-9,0,-3.2,-0.3,1 -"1612",2247,3,1,0,0.155498882,0.155498882,1,2,0,6.5,0.2,-7 -"1613",2248,3,1,0,0.315267607,0.315267607,0,12,0,5.9,0.4,8 -"1614",2249,3,1,0,2,2,0,-30,0,0.4,1.3,3 -"1615",2249,3,2,2,2.735378195,0.735378195,1,-30,0,0.4,1.3,3 -"1616",2250,3,1,0,2,2,0,-6,0,4.6,-0.7,-5 -"1617",2250,3,2,2,3,1,0,-6,0,4.6,-0.7,-5 -"1618",2250,3,3,3,5.044327147,2.044327147,1,-6,0,4.6,-0.7,-5 -"1619",2251,3,1,0,2,2,0,-12,0,-0.5,-0.1,-4 -"1620",2251,3,2,2,3,1,0,-12,0,-0.5,-0.1,-4 -"1621",2251,3,3,3,5.495498589,2.495498589,0,-12,0,-0.5,-0.1,-4 -"1622",2252,3,1,0,1.47881005,1.47881005,0,1,1,-4.9,-0.3,-1 -"1623",2253,3,1,0,2,2,0,-1,1,-3.3,1.5,1 -"1624",2253,3,2,2,2.689463837,0.689463837,1,-1,1,-3.3,1.5,1 -"1625",2254,3,1,0,1.613166065,1.613166065,0,7,0,-8.4,-1,6 -"1626",2255,3,1,0,2,2,0,-5,0,-10.1,0.1,-7 -"1627",2255,3,2,2,3,1,0,-5,0,-10.1,0.1,-7 -"1628",2255,3,3,3,4.280617792,1.280617792,0,-5,0,-10.1,0.1,-7 -"1629",2256,3,1,0,0.527412117,0.527412117,1,13,1,4,0.3,11 -"1630",2257,3,1,0,2,2,0,-8,0,2.3,0.2,4 -"1631",2257,3,2,2,3,1,0,-8,0,2.3,0.2,4 -"1632",2257,3,3,3,6,3,0,-8,0,2.3,0.2,4 -"1633",2257,3,4,6,6.5,0.5,0,-8,0,2.3,0.2,4 -"1634",2257,3,5,6.5,8,1.5,0,-8,0,2.3,0.2,4 -"1635",2257,3,6,8,10,2,0,-8,0,2.3,0.2,4 -"1636",2258,3,1,0,0.314611021,0.314611021,1,10,1,8.7,0.5,4 -"1637",2259,3,1,0,2,2,0,9,1,0,0,-5 -"1638",2259,3,2,2,3,1,0,9,1,0,0,-5 -"1639",2259,3,3,3,6,3,0,9,1,0,0,-5 -"1640",2259,3,4,6,6.5,0.5,0,9,1,0,0,-5 -"1641",2259,3,5,6.5,8,1.5,0,9,1,0,0,-5 -"1642",2259,3,6,8,9.580193596,1.580193596,0,9,1,0,0,-5 -"1643",2260,3,1,0,2,2,0,-5,1,2.3,-0.9,-2 -"1644",2260,3,2,2,3,1,0,-5,1,2.3,-0.9,-2 -"1645",2260,3,3,3,3.284411704,0.284411704,0,-5,1,2.3,-0.9,-2 -"1646",2261,3,1,0,1.208214857,1.208214857,1,31,1,5.1,-0.5,1 -"1647",2262,3,1,0,2,2,0,-12,0,-3.9,1.2,4 -"1648",2262,3,2,2,3,1,0,-12,0,-3.9,1.2,4 -"1649",2262,3,3,3,6,3,0,-12,0,-3.9,1.2,4 -"1650",2262,3,4,6,6.5,0.5,0,-12,0,-3.9,1.2,4 -"1651",2262,3,5,6.5,7.838155804,1.338155804,1,-12,0,-3.9,1.2,4 -"1652",2263,3,1,0,1.000445047,1.000445047,0,0,1,-0.3,-0.7,-7 -"1653",2264,3,1,0,1.751767787,1.751767787,0,-19,0,1.1,1.4,-2 -"1654",2265,3,1,0,1.645058266,1.645058266,1,35,0,-0.9,0.1,-1 -"1655",2266,3,1,0,2,2,0,9,0,3.6,-0.6,6 -"1656",2266,3,2,2,3,1,0,9,0,3.6,-0.6,6 -"1657",2266,3,3,3,6,3,0,9,0,3.6,-0.6,6 -"1658",2266,3,4,6,6.5,0.5,0,9,0,3.6,-0.6,6 -"1659",2266,3,5,6.5,8,1.5,0,9,0,3.6,-0.6,6 -"1660",2266,3,6,8,10,2,0,9,0,3.6,-0.6,6 -"1661",2267,3,1,0,2,2,0,-11,1,-3,-0.7,-15 -"1662",2267,3,2,2,3,1,0,-11,1,-3,-0.7,-15 -"1663",2267,3,3,3,6,3,0,-11,1,-3,-0.7,-15 -"1664",2267,3,4,6,6.5,0.5,0,-11,1,-3,-0.7,-15 -"1665",2267,3,5,6.5,7.588665348,1.088665348,0,-11,1,-3,-0.7,-15 -"1666",2268,3,1,0,2,2,0,15,1,3.9,1.1,-5 -"1667",2268,3,2,2,3,1,0,15,1,3.9,1.1,-5 -"1668",2268,3,3,3,6,3,0,15,1,3.9,1.1,-5 -"1669",2268,3,4,6,6.5,0.5,0,15,1,3.9,1.1,-5 -"1670",2268,3,5,6.5,8,1.5,0,15,1,3.9,1.1,-5 -"1671",2268,3,6,8,8.928145831,0.928145831,1,15,1,3.9,1.1,-5 -"1672",2269,3,1,0,0.856550426,0.856550426,0,0,1,1,-0.5,-3 -"1673",2270,3,1,0,2,2,0,5,0,-9.2,0.5,0 -"1674",2270,3,2,2,2.255957865,0.255957865,0,5,0,-9.2,0.5,0 -"1675",2271,3,1,0,0.902113376,0.902113376,0,-4,1,2.2,0.3,-4 -"1676",2272,3,1,0,2,2,0,-3,1,-4.4,0.8,5 -"1677",2272,3,2,2,3,1,0,-3,1,-4.4,0.8,5 -"1678",2272,3,3,3,3.376711369,0.376711369,0,-3,1,-4.4,0.8,5 -"1679",2273,3,1,0,2,2,0,-2,0,-3.8,-1.1,-3 -"1680",2273,3,2,2,3,1,0,-2,0,-3.8,-1.1,-3 -"1681",2273,3,3,3,6,3,0,-2,0,-3.8,-1.1,-3 -"1682",2273,3,4,6,6.5,0.5,0,-2,0,-3.8,-1.1,-3 -"1683",2273,3,5,6.5,8,1.5,0,-2,0,-3.8,-1.1,-3 -"1684",2273,3,6,8,9.374239962,1.374239962,1,-2,0,-3.8,-1.1,-3 -"1685",2274,3,1,0,0.833724913,0.833724913,1,17,0,8.6,1.3,1 -"1686",2275,3,1,0,0.402342379,0.402342379,0,0,1,3.2,-0.7,0 -"1687",2276,3,1,0,1.948480255,1.948480255,1,-2,1,-4.1,1,6 -"1688",2277,3,1,0,0.757749906,0.757749906,1,-14,0,-4.9,-0.4,1 -"1689",2278,3,1,0,0.576948448,0.576948448,1,-11,1,-3.9,1.1,-6 -"1690",2279,3,1,0,0.162207027,0.162207027,1,9,0,-2.1,0.5,-6 -"1691",2280,3,1,0,1.073330562,1.073330562,1,25,1,8.8,2.7,0 -"1692",2281,3,1,0,0.275588833,0.275588833,1,-3,0,4.6,-1,9 -"1693",2282,3,1,0,0.975945651,0.975945651,0,-2,1,-1.8,-1,7 -"1694",2283,3,1,0,0.477082174,0.477082174,1,-7,0,7.9,1,-5 -"1695",2284,3,1,0,2,2,0,-7,0,8.1,-1.1,2 -"1696",2284,3,2,2,3,1,0,-7,0,8.1,-1.1,2 -"1697",2284,3,3,3,3.998420871,0.998420871,0,-7,0,8.1,-1.1,2 -"1698",2285,3,1,0,2,2,0,8,1,2.5,0.5,3 -"1699",2285,3,2,2,3,1,0,8,1,2.5,0.5,3 -"1700",2285,3,3,3,3.714915466,0.714915466,0,8,1,2.5,0.5,3 -"1701",2286,3,1,0,2,2,0,-22,1,-2.2,-1.5,-1 -"1702",2286,3,2,2,3,1,0,-22,1,-2.2,-1.5,-1 -"1703",2286,3,3,3,4.608970048,1.608970048,0,-22,1,-2.2,-1.5,-1 -"1704",2287,3,1,0,2,2,0,4,1,-1.5,0.9,5 -"1705",2287,3,2,2,3,1,0,4,1,-1.5,0.9,5 -"1706",2287,3,3,3,3.284400016,0.284400016,1,4,1,-1.5,0.9,5 -"1707",2288,3,1,0,2,2,0,3,1,2.3,1.6,2 -"1708",2288,3,2,2,3,1,0,3,1,2.3,1.6,2 -"1709",2288,3,3,3,5.944830974,2.944830974,1,3,1,2.3,1.6,2 -"1710",2289,3,1,0,1.416497968,1.416497968,1,12,1,7.6,0.9,1 -"1711",2290,3,1,0,1.836928035,1.836928035,0,2,1,-4.2,0.9,1 -"1712",2291,3,1,0,1.60574185,1.60574185,1,-1,0,-2.5,0.4,10 -"1713",2292,3,1,0,0.954918148,0.954918148,1,3,0,1.4,-0.6,-1 -"1714",2293,3,1,0,0.176751058,0.176751058,1,9,1,2.6,0.8,0 -"1715",2294,3,1,0,2,2,0,-16,1,4,-0.2,2 -"1716",2294,3,2,2,3,1,0,-16,1,4,-0.2,2 -"1717",2294,3,3,3,3.489654909,0.489654909,0,-16,1,4,-0.2,2 -"1718",2295,3,1,0,2,2,0,2,1,-0.7,0.1,2 -"1719",2295,3,2,2,3,1,0,2,1,-0.7,0.1,2 -"1720",2295,3,3,3,6,3,0,2,1,-0.7,0.1,2 -"1721",2295,3,4,6,6.5,0.5,0,2,1,-0.7,0.1,2 -"1722",2295,3,5,6.5,8,1.5,0,2,1,-0.7,0.1,2 -"1723",2295,3,6,8,10,2,0,2,1,-0.7,0.1,2 -"1724",2296,3,1,0,2,2,0,2,0,-1.4,-0.6,2 -"1725",2296,3,2,2,2.093871517,0.093871517,1,2,0,-1.4,-0.6,2 -"1726",2297,3,1,0,2,2,0,-14,1,-3,-0.4,0 -"1727",2297,3,2,2,3,1,0,-14,1,-3,-0.4,0 -"1728",2297,3,3,3,6,3,0,-14,1,-3,-0.4,0 -"1729",2297,3,4,6,6.5,0.5,0,-14,1,-3,-0.4,0 -"1730",2297,3,5,6.5,8,1.5,0,-14,1,-3,-0.4,0 -"1731",2297,3,6,8,9.249724603,1.249724603,0,-14,1,-3,-0.4,0 -"1732",2298,3,1,0,0.329269799,0.329269799,0,2,0,3.3,0,2 -"1733",2299,3,1,0,2,2,0,-7,1,4.6,-0.9,-1 -"1734",2299,3,2,2,3,1,0,-7,1,4.6,-0.9,-1 -"1735",2299,3,3,3,6,3,0,-7,1,4.6,-0.9,-1 -"1736",2299,3,4,6,6.5,0.5,0,-7,1,4.6,-0.9,-1 -"1737",2299,3,5,6.5,7.495106499,0.995106499,0,-7,1,4.6,-0.9,-1 -"1738",2300,3,1,0,2,2,0,-8,1,3.2,-0.2,-2 -"1739",2300,3,2,2,3,1,0,-8,1,3.2,-0.2,-2 -"1740",2300,3,3,3,3.954047753,0.954047753,0,-8,1,3.2,-0.2,-2 -"1741",2301,3,1,0,2,2,0,8,0,-5.4,-1.3,-7 -"1742",2301,3,2,2,3,1,0,8,0,-5.4,-1.3,-7 -"1743",2301,3,3,3,6,3,0,8,0,-5.4,-1.3,-7 -"1744",2301,3,4,6,6.5,0.5,0,8,0,-5.4,-1.3,-7 -"1745",2301,3,5,6.5,8,1.5,0,8,0,-5.4,-1.3,-7 -"1746",2301,3,6,8,8.963643972,0.963643972,0,8,0,-5.4,-1.3,-7 -"1747",2302,3,1,0,2,2,0,-16,1,-3.4,-0.1,4 -"1748",2302,3,2,2,3,1,0,-16,1,-3.4,-0.1,4 -"1749",2302,3,3,3,6,3,0,-16,1,-3.4,-0.1,4 -"1750",2302,3,4,6,6.5,0.5,0,-16,1,-3.4,-0.1,4 -"1751",2302,3,5,6.5,6.989412269,0.489412269,0,-16,1,-3.4,-0.1,4 -"1752",2303,3,1,0,2,2,0,10,1,0.8,2.2,-3 -"1753",2303,3,2,2,3,1,0,10,1,0.8,2.2,-3 -"1754",2303,3,3,3,4.10881842,1.10881842,1,10,1,0.8,2.2,-3 -"1755",2304,3,1,0,2,2,0,-3,0,2.1,-2.5,-1 -"1756",2304,3,2,2,3,1,0,-3,0,2.1,-2.5,-1 -"1757",2304,3,3,3,6,3,0,-3,0,2.1,-2.5,-1 -"1758",2304,3,4,6,6.5,0.5,0,-3,0,2.1,-2.5,-1 -"1759",2304,3,5,6.5,8,1.5,0,-3,0,2.1,-2.5,-1 -"1760",2304,3,6,8,10,2,0,-3,0,2.1,-2.5,-1 -"1761",2305,3,1,0,2,2,0,12,1,-0.3,-0.6,2 -"1762",2305,3,2,2,3,1,0,12,1,-0.3,-0.6,2 -"1763",2305,3,3,3,3.340272905,0.340272905,0,12,1,-0.3,-0.6,2 -"1764",2306,3,1,0,1.708079152,1.708079152,1,-10,0,3.8,-0.6,-4 -"1765",2307,3,1,0,2,2,0,13,0,-0.3,-1.4,-7 -"1766",2307,3,2,2,3,1,0,13,0,-0.3,-1.4,-7 -"1767",2307,3,3,3,5.270874559,2.270874559,0,13,0,-0.3,-1.4,-7 -"1768",2308,3,1,0,0.077402913,0.077402913,1,-5,0,-6.4,0.3,5 -"1769",2309,3,1,0,2,2,0,-28,1,1,-0.2,-3 -"1770",2309,3,2,2,2.099376232,0.099376232,0,-28,1,1,-0.2,-3 -"1771",2310,3,1,0,2,2,0,-13,1,-2,-2,-1 -"1772",2310,3,2,2,3,1,0,-13,1,-2,-2,-1 -"1773",2310,3,3,3,4.196812468,1.196812468,0,-13,1,-2,-2,-1 -"1774",2311,3,1,0,2,2,0,-3,0,5.7,-0.6,3 -"1775",2311,3,2,2,3,1,0,-3,0,5.7,-0.6,3 -"1776",2311,3,3,3,4.898326225,1.898326225,0,-3,0,5.7,-0.6,3 -"1777",2312,3,1,0,0.083219176,0.083219176,1,-2,0,-1.8,-0.1,4 -"1778",2313,3,1,0,0.218457435,0.218457435,0,-29,0,-1.3,-0.9,-6 -"1779",2314,3,1,0,2,2,0,-2,1,-4.8,1,0 -"1780",2314,3,2,2,3,1,0,-2,1,-4.8,1,0 -"1781",2314,3,3,3,4.515117344,1.515117344,0,-2,1,-4.8,1,0 -"1782",2315,3,1,0,2,2,0,9,1,0.4,0.5,-5 -"1783",2315,3,2,2,3,1,0,9,1,0.4,0.5,-5 -"1784",2315,3,3,3,6,3,0,9,1,0.4,0.5,-5 -"1785",2315,3,4,6,6.5,0.5,0,9,1,0.4,0.5,-5 -"1786",2315,3,5,6.5,8,1.5,0,9,1,0.4,0.5,-5 -"1787",2315,3,6,8,8.408087814,0.408087814,1,9,1,0.4,0.5,-5 -"1788",2316,3,1,0,2,2,0,-14,1,-12.4,1.4,-4 -"1789",2316,3,2,2,3,1,0,-14,1,-12.4,1.4,-4 -"1790",2316,3,3,3,6,3,0,-14,1,-12.4,1.4,-4 -"1791",2316,3,4,6,6.5,0.5,0,-14,1,-12.4,1.4,-4 -"1792",2316,3,5,6.5,8,1.5,0,-14,1,-12.4,1.4,-4 -"1793",2316,3,6,8,10,2,0,-14,1,-12.4,1.4,-4 -"1794",2317,3,1,0,0.553509983,0.553509983,1,34,0,-7.8,0,2 -"1795",2318,3,1,0,1.72861539,1.72861539,0,-8,1,-1.6,1,1 -"1796",2319,3,1,0,0.490687986,0.490687986,1,0,0,0.3,-0.3,3 -"1797",2320,3,1,0,2,2,0,6,0,-3.8,-2.1,-2 -"1798",2320,3,2,2,2.179433984,0.179433984,0,6,0,-3.8,-2.1,-2 -"1799",2321,3,1,0,2,2,0,3,0,-0.2,-0.9,2 -"1800",2321,3,2,2,3,1,0,3,0,-0.2,-0.9,2 -"1801",2321,3,3,3,3.364351701,0.364351701,0,3,0,-0.2,-0.9,2 -"1802",2322,3,1,0,1.696590121,1.696590121,0,30,1,-5,-0.7,1 -"1803",2323,3,1,0,0.048539775,0.048539775,1,3,0,-0.1,2.7,15 -"1804",2324,3,1,0,0.233440891,0.233440891,0,9,0,-3.3,-0.2,-5 -"1805",2325,3,1,0,0.469652985,0.469652985,1,31,0,-1.2,-1.2,4 -"1806",2326,3,1,0,0.105992432,0.105992432,0,21,0,-4.6,-0.3,8 -"1807",2327,3,1,0,1.742061833,1.742061833,1,-4,1,-1.9,-0.2,3 -"1808",2328,3,1,0,2,2,0,-19,1,-1.7,-0.9,-8 -"1809",2328,3,2,2,3,1,0,-19,1,-1.7,-0.9,-8 -"1810",2328,3,3,3,4.255765466,1.255765466,0,-19,1,-1.7,-0.9,-8 -"1811",2329,3,1,0,2,2,0,-10,1,-1.4,-0.3,3 -"1812",2329,3,2,2,3,1,0,-10,1,-1.4,-0.3,3 -"1813",2329,3,3,3,6,3,0,-10,1,-1.4,-0.3,3 -"1814",2329,3,4,6,6.5,0.5,0,-10,1,-1.4,-0.3,3 -"1815",2329,3,5,6.5,8,1.5,0,-10,1,-1.4,-0.3,3 -"1816",2329,3,6,8,10,2,0,-10,1,-1.4,-0.3,3 -"1817",2330,3,1,0,0.249493362,0.249493362,1,22,1,6.2,1,-3 -"1818",2331,3,1,0,2,2,0,-12,0,-3.9,0,-1 -"1819",2331,3,2,2,3,1,0,-12,0,-3.9,0,-1 -"1820",2331,3,3,3,3.152188411,0.152188411,0,-12,0,-3.9,0,-1 -"1821",2332,3,1,0,1.36119908,1.36119908,1,6,0,-0.1,0,-3 -"1822",2333,3,1,0,0.568675637,0.568675637,1,21,0,-1,-2.1,7 -"1823",2334,3,1,0,2,2,0,-20,0,-5.6,0.1,-4 -"1824",2334,3,2,2,3,1,0,-20,0,-5.6,0.1,-4 -"1825",2334,3,3,3,4.356014815,1.356014815,0,-20,0,-5.6,0.1,-4 -"1826",2335,3,1,0,0.682325617,0.682325617,1,18,1,4.1,1.4,0 -"1827",2336,3,1,0,0.568640313,0.568640313,1,-15,1,5.6,0.5,-1 -"1828",2337,3,1,0,2,2,0,-11,0,4.4,-1.1,2 -"1829",2337,3,2,2,3,1,0,-11,0,4.4,-1.1,2 -"1830",2337,3,3,3,6,3,0,-11,0,4.4,-1.1,2 -"1831",2337,3,4,6,6.5,0.5,0,-11,0,4.4,-1.1,2 -"1832",2337,3,5,6.5,8,1.5,0,-11,0,4.4,-1.1,2 -"1833",2337,3,6,8,10,2,0,-11,0,4.4,-1.1,2 -"1834",2338,3,1,0,2,2,0,-21,0,4,0.7,1 -"1835",2338,3,2,2,2.339400466,0.339400466,0,-21,0,4,0.7,1 -"1836",2339,3,1,0,0.339495983,0.339495983,1,0,0,-1.9,-0.2,-5 -"1837",2340,3,1,0,0.771050291,0.771050291,1,31,1,5.4,-1.3,-1 -"1838",2341,3,1,0,1.309969053,1.309969053,1,0,0,1.7,-0.3,7 -"1839",2342,3,1,0,2,2,0,8,1,-2.6,-0.9,3 -"1840",2342,3,2,2,3,1,0,8,1,-2.6,-0.9,3 -"1841",2342,3,3,3,6,3,0,8,1,-2.6,-0.9,3 -"1842",2342,3,4,6,6.5,0.5,0,8,1,-2.6,-0.9,3 -"1843",2342,3,5,6.5,8,1.5,0,8,1,-2.6,-0.9,3 -"1844",2342,3,6,8,10,2,0,8,1,-2.6,-0.9,3 -"1845",2343,3,1,0,0.426167039,0.426167039,1,14,1,0.4,-0.2,-1 -"1846",2344,3,1,0,0.20846423,0.20846423,1,16,0,8,1.2,1 -"1847",2345,3,1,0,1.756363433,1.756363433,0,-16,1,-5.5,0.6,2 -"1848",2346,3,1,0,2,2,0,22,0,-5,-0.5,-7 -"1849",2346,3,2,2,3,1,0,22,0,-5,-0.5,-7 -"1850",2346,3,3,3,5.086075051,2.086075051,0,22,0,-5,-0.5,-7 -"1851",2347,3,1,0,0.58027315,0.58027315,1,-20,1,-7.2,1.5,3 -"1852",2348,3,1,0,2,2,0,10,1,-2.8,-1.6,-4 -"1853",2348,3,2,2,3,1,0,10,1,-2.8,-1.6,-4 -"1854",2348,3,3,3,6,3,0,10,1,-2.8,-1.6,-4 -"1855",2348,3,4,6,6.5,0.5,0,10,1,-2.8,-1.6,-4 -"1856",2348,3,5,6.5,8,1.5,0,10,1,-2.8,-1.6,-4 -"1857",2348,3,6,8,9.58338982,1.58338982,0,10,1,-2.8,-1.6,-4 -"1858",2349,3,1,0,0.513809519,0.513809519,1,-1,1,2.6,0.8,1 -"1859",2350,3,1,0,0.109215365,0.109215365,0,-4,1,3.4,0.9,-6 -"1860",2351,3,1,0,1.069588616,1.069588616,1,6,0,-1.1,-0.2,-6 -"1861",2352,3,1,0,1.604329769,1.604329769,1,8,0,-2.2,-0.1,6 -"1862",2353,3,1,0,0.307153319,0.307153319,1,11,1,3.8,1.1,11 -"1863",2354,3,1,0,2,2,0,-12,0,-8.9,-0.3,-7 -"1864",2354,3,2,2,3,1,0,-12,0,-8.9,-0.3,-7 -"1865",2354,3,3,3,4.095504079,1.095504079,1,-12,0,-8.9,-0.3,-7 -"1866",2355,3,1,0,2,2,0,-18,0,5.3,-0.2,4 -"1867",2355,3,2,2,3,1,0,-18,0,5.3,-0.2,4 -"1868",2355,3,3,3,6,3,0,-18,0,5.3,-0.2,4 -"1869",2355,3,4,6,6.5,0.5,0,-18,0,5.3,-0.2,4 -"1870",2355,3,5,6.5,8,1.5,0,-18,0,5.3,-0.2,4 -"1871",2355,3,6,8,8.352372336,0.352372336,0,-18,0,5.3,-0.2,4 -"1872",2356,3,1,0,0.019574508,0.019574508,0,12,1,-7.7,1.2,4 -"1873",2357,3,1,0,2,2,0,-6,0,1.4,-0.9,-7 -"1874",2357,3,2,2,2.495882693,0.495882693,1,-6,0,1.4,-0.9,-7 -"1875",2358,3,1,0,0.680750349,0.680750349,0,-5,0,-6.9,0.4,-1 -"1876",2359,3,1,0,2,2,0,5,1,3,0.8,-6 -"1877",2359,3,2,2,3,1,0,5,1,3,0.8,-6 -"1878",2359,3,3,3,6,3,0,5,1,3,0.8,-6 -"1879",2359,3,4,6,6.5,0.5,0,5,1,3,0.8,-6 -"1880",2359,3,5,6.5,6.820264011,0.320264011,0,5,1,3,0.8,-6 -"1881",2360,3,1,0,1.67151359,1.67151359,0,-4,0,-1.4,-2,-3 -"1882",2361,3,1,0,2,2,0,-11,1,5.5,1.5,-5 -"1883",2361,3,2,2,3,1,0,-11,1,5.5,1.5,-5 -"1884",2361,3,3,3,4.151583373,1.151583373,0,-11,1,5.5,1.5,-5 -"1885",2362,3,1,0,0.633277362,0.633277362,1,12,1,-0.2,0.2,3 -"1886",2363,3,1,0,2,2,0,-9,0,3.2,-0.7,7 -"1887",2363,3,2,2,3,1,0,-9,0,3.2,-0.7,7 -"1888",2363,3,3,3,6,3,0,-9,0,3.2,-0.7,7 -"1889",2363,3,4,6,6.298061553,0.298061553,0,-9,0,3.2,-0.7,7 -"1890",2364,3,1,0,0.696769418,0.696769418,1,6,0,-3.8,0,-5 -"1891",2365,3,1,0,2,2,0,-2,0,7.2,0,-6 -"1892",2365,3,2,2,3,1,0,-2,0,7.2,0,-6 -"1893",2365,3,3,3,4.814515513,1.814515513,0,-2,0,7.2,0,-6 -"1894",2366,3,1,0,2,2,0,12,0,-1.9,0.2,-7 -"1895",2366,3,2,2,2.630506611,0.630506611,1,12,0,-1.9,0.2,-7 -"1896",2367,3,1,0,2,2,0,-11,1,1.8,-0.7,-5 -"1897",2367,3,2,2,3,1,0,-11,1,1.8,-0.7,-5 -"1898",2367,3,3,3,4.174042088,1.174042088,0,-11,1,1.8,-0.7,-5 -"1899",2368,3,1,0,1.60418353,1.60418353,0,14,1,-5.3,1,-4 -"1900",2369,3,1,0,2,2,0,12,1,-0.5,-0.6,-3 -"1901",2369,3,2,2,3,1,0,12,1,-0.5,-0.6,-3 -"1902",2369,3,3,3,6,3,0,12,1,-0.5,-0.6,-3 -"1903",2369,3,4,6,6.5,0.5,0,12,1,-0.5,-0.6,-3 -"1904",2369,3,5,6.5,8,1.5,0,12,1,-0.5,-0.6,-3 -"1905",2369,3,6,8,10,2,0,12,1,-0.5,-0.6,-3 -"1906",2370,3,1,0,0.054310782,0.054310782,1,8,1,-4.8,2.1,6 -"1907",2371,3,1,0,0.784862822,0.784862822,1,-14,1,-7.4,0.3,-8 -"1908",2372,3,1,0,0.073204998,0.073204998,1,22,1,0.9,1.2,3 -"1909",2373,3,1,0,2,2,0,9,1,3.4,-0.4,-1 -"1910",2373,3,2,2,3,1,0,9,1,3.4,-0.4,-1 -"1911",2373,3,3,3,6,3,0,9,1,3.4,-0.4,-1 -"1912",2373,3,4,6,6.5,0.5,0,9,1,3.4,-0.4,-1 -"1913",2373,3,5,6.5,8,1.5,0,9,1,3.4,-0.4,-1 -"1914",2373,3,6,8,10,2,0,9,1,3.4,-0.4,-1 -"1915",2374,3,1,0,0.396740031,0.396740031,0,-5,1,1,-0.7,1 -"1916",2375,3,1,0,2,2,0,7,0,5.1,-2.1,-3 -"1917",2375,3,2,2,3,1,0,7,0,5.1,-2.1,-3 -"1918",2375,3,3,3,6,3,0,7,0,5.1,-2.1,-3 -"1919",2375,3,4,6,6.5,0.5,0,7,0,5.1,-2.1,-3 -"1920",2375,3,5,6.5,8,1.5,0,7,0,5.1,-2.1,-3 -"1921",2375,3,6,8,10,2,0,7,0,5.1,-2.1,-3 -"1922",2376,3,1,0,2,2,0,-9,1,1.2,-0.3,-2 -"1923",2376,3,2,2,3,1,0,-9,1,1.2,-0.3,-2 -"1924",2376,3,3,3,6,3,0,-9,1,1.2,-0.3,-2 -"1925",2376,3,4,6,6.258811184,0.258811184,1,-9,1,1.2,-0.3,-2 -"1926",2377,3,1,0,0.021658736,0.021658736,1,7,0,7.9,0.1,7 -"1927",2378,3,1,0,1.213133691,1.213133691,0,-1,0,-3.4,-0.6,5 -"1928",2379,3,1,0,0.636187755,0.636187755,1,16,1,6.5,-0.7,-9 -"1929",2380,3,1,0,2,2,0,-12,0,-2.2,-0.9,-8 -"1930",2380,3,2,2,3,1,0,-12,0,-2.2,-0.9,-8 -"1931",2380,3,3,3,5.207838948,2.207838948,0,-12,0,-2.2,-0.9,-8 -"1932",2381,3,1,0,2,2,0,-21,1,-0.2,1.3,4 -"1933",2381,3,2,2,3,1,0,-21,1,-0.2,1.3,4 -"1934",2381,3,3,3,6,3,0,-21,1,-0.2,1.3,4 -"1935",2381,3,4,6,6.5,0.5,0,-21,1,-0.2,1.3,4 -"1936",2381,3,5,6.5,6.5417796,0.0417796,0,-21,1,-0.2,1.3,4 -"1937",2382,3,1,0,0.467109162,0.467109162,1,7,0,-6.3,-1.4,-8 -"1938",2383,3,1,0,0.659515485,0.659515485,1,31,1,-2.2,1,-2 -"1939",2384,3,1,0,0.01597089,0.01597089,1,-1,1,-2.4,2,0 -"1940",2385,3,1,0,2,2,0,0,0,3.4,0.9,2 -"1941",2385,3,2,2,2.593545024,0.593545024,1,0,0,3.4,0.9,2 -"1942",2386,3,1,0,2,2,0,-19,0,-3.9,-0.5,-3 -"1943",2386,3,2,2,3,1,0,-19,0,-3.9,-0.5,-3 -"1944",2386,3,3,3,6,3,0,-19,0,-3.9,-0.5,-3 -"1945",2386,3,4,6,6.5,0.5,0,-19,0,-3.9,-0.5,-3 -"1946",2386,3,5,6.5,8,1.5,0,-19,0,-3.9,-0.5,-3 -"1947",2386,3,6,8,9.456345648,1.456345648,0,-19,0,-3.9,-0.5,-3 -"1948",2387,3,1,0,0.683984532,0.683984532,1,-27,1,-3,0.5,14 -"1949",2388,3,1,0,2,2,0,-35,1,3.6,-1,6 -"1950",2388,3,2,2,3,1,0,-35,1,3.6,-1,6 -"1951",2388,3,3,3,6,3,0,-35,1,3.6,-1,6 -"1952",2388,3,4,6,6.5,0.5,0,-35,1,3.6,-1,6 -"1953",2388,3,5,6.5,8,1.5,0,-35,1,3.6,-1,6 -"1954",2388,3,6,8,10,2,0,-35,1,3.6,-1,6 -"1955",2389,3,1,0,0.144424334,0.144424334,1,15,0,4.8,0.4,6 -"1956",2390,3,1,0,0.552764878,0.552764878,1,-17,0,1.1,-0.3,-1 -"1957",2391,3,1,0,2,2,0,12,0,-1.1,-1.5,-3 -"1958",2391,3,2,2,3,1,0,12,0,-1.1,-1.5,-3 -"1959",2391,3,3,3,6,3,0,12,0,-1.1,-1.5,-3 -"1960",2391,3,4,6,6.253721994,0.253721994,0,12,0,-1.1,-1.5,-3 -"1961",2392,3,1,0,0.249737189,0.249737189,1,-19,1,0,-1.1,3 -"1962",2393,3,1,0,0.030391825,0.030391825,1,8,1,-1,0.2,2 -"1963",2394,3,1,0,0.815796397,0.815796397,0,-5,1,-3.1,-1.3,-4 -"1964",2395,3,1,0,0.422218501,0.422218501,1,4,0,-0.9,-0.2,10 -"1965",2396,3,1,0,2,2,0,-10,0,0.6,0.4,-3 -"1966",2396,3,2,2,3,1,0,-10,0,0.6,0.4,-3 -"1967",2396,3,3,3,5.715120302,2.715120302,0,-10,0,0.6,0.4,-3 -"1968",2397,3,1,0,0.032132664,0.032132664,1,17,0,6.1,0.3,-3 -"1969",2398,3,1,0,2,2,0,-23,1,1.8,-0.1,-1 -"1970",2398,3,2,2,3,1,0,-23,1,1.8,-0.1,-1 -"1971",2398,3,3,3,6,3,0,-23,1,1.8,-0.1,-1 -"1972",2398,3,4,6,6.5,0.5,0,-23,1,1.8,-0.1,-1 -"1973",2398,3,5,6.5,7.314967365,0.814967365,0,-23,1,1.8,-0.1,-1 -"1974",2399,3,1,0,0.643165338,0.643165338,1,5,1,1.2,0.7,2 -"1975",2400,3,1,0,2,2,0,-6,1,1.4,-1.8,4 -"1976",2400,3,2,2,3,1,0,-6,1,1.4,-1.8,4 -"1977",2400,3,3,3,6,3,0,-6,1,1.4,-1.8,4 -"1978",2400,3,4,6,6.203415151,0.203415151,1,-6,1,1.4,-1.8,4 -"1979",2401,3,1,0,1.072237797,1.072237797,1,10,1,6.8,0.3,2 -"1980",2402,3,1,0,2,2,0,-11,1,3.4,0.8,3 -"1981",2402,3,2,2,2.818532955,0.818532955,1,-11,1,3.4,0.8,3 -"1982",2403,3,1,0,1.049989015,1.049989015,1,7,1,8.4,0.1,10 -"1983",2404,3,1,0,1.506047502,1.506047502,1,-8,0,-2.1,-1.3,2 -"1984",2405,3,1,0,0.808264947,0.808264947,0,7,1,3.2,-1.6,4 -"1985",2406,3,1,0,2,2,0,-14,1,1.1,-0.6,2 -"1986",2406,3,2,2,3,1,0,-14,1,1.1,-0.6,2 -"1987",2406,3,3,3,6,3,0,-14,1,1.1,-0.6,2 -"1988",2406,3,4,6,6.5,0.5,0,-14,1,1.1,-0.6,2 -"1989",2406,3,5,6.5,8,1.5,0,-14,1,1.1,-0.6,2 -"1990",2406,3,6,8,10,2,0,-14,1,1.1,-0.6,2 -"1991",2407,3,1,0,0.667625278,0.667625278,1,9,0,2.8,0.6,-7 -"1992",2408,3,1,0,0.3085855,0.3085855,1,-24,1,-2.9,-1.2,-2 -"1993",2409,3,1,0,0.123327387,0.123327387,0,27,1,5.4,0.1,1 -"1994",2410,3,1,0,0.692664828,0.692664828,0,9,0,-2.7,0.5,4 -"1995",2411,3,1,0,2,2,0,0,1,-3.5,-0.1,1 -"1996",2411,3,2,2,2.920624433,0.920624433,0,0,1,-3.5,-0.1,1 -"1997",2412,3,1,0,0.072892279,0.072892279,1,18,0,3.1,1,13 -"1998",2413,3,1,0,2,2,0,-2,1,6.2,1.3,-1 -"1999",2413,3,2,2,3,1,0,-2,1,6.2,1.3,-1 -"2000",2413,3,3,3,6,3,0,-2,1,6.2,1.3,-1 -"2001",2413,3,4,6,6.5,0.5,0,-2,1,6.2,1.3,-1 -"2002",2413,3,5,6.5,6.991283999,0.491283999,1,-2,1,6.2,1.3,-1 -"2003",2414,3,1,0,2,2,0,5,1,3,0.2,1 -"2004",2414,3,2,2,3,1,0,5,1,3,0.2,1 -"2005",2414,3,3,3,6,3,0,5,1,3,0.2,1 -"2006",2414,3,4,6,6.078804617,0.078804617,1,5,1,3,0.2,1 -"2007",2415,3,1,0,2,2,0,2,1,-5.9,-0.2,-3 -"2008",2415,3,2,2,3,1,0,2,1,-5.9,-0.2,-3 -"2009",2415,3,3,3,6,3,0,2,1,-5.9,-0.2,-3 -"2010",2415,3,4,6,6.5,0.5,0,2,1,-5.9,-0.2,-3 -"2011",2415,3,5,6.5,8,1.5,0,2,1,-5.9,-0.2,-3 -"2012",2415,3,6,8,10,2,0,2,1,-5.9,-0.2,-3 -"2013",2416,3,1,0,1.996078401,1.996078401,0,3,1,0.1,-0.5,-2 -"2014",2417,3,1,0,2,2,0,25,1,-7.1,-1.6,-4 -"2015",2417,3,2,2,3,1,0,25,1,-7.1,-1.6,-4 -"2016",2417,3,3,3,3.912253984,0.912253984,0,25,1,-7.1,-1.6,-4 -"2017",2418,3,1,0,2,2,0,-16,1,-6,-0.9,-2 -"2018",2418,3,2,2,2.377317001,0.377317001,1,-16,1,-6,-0.9,-2 -"2019",2419,3,1,0,0.037811259,0.037811259,0,-6,1,0.6,0.8,-5 -"2020",2420,3,1,0,2,2,0,15,0,-5.6,1.7,-6 -"2021",2420,3,2,2,2.398593281,0.398593281,1,15,0,-5.6,1.7,-6 -"2022",2421,3,1,0,2,2,0,-5,1,1.8,0.1,3 -"2023",2421,3,2,2,3,1,0,-5,1,1.8,0.1,3 -"2024",2421,3,3,3,6,3,0,-5,1,1.8,0.1,3 -"2025",2421,3,4,6,6.5,0.5,0,-5,1,1.8,0.1,3 -"2026",2421,3,5,6.5,7.962880751,1.462880751,0,-5,1,1.8,0.1,3 -"2027",2422,3,1,0,0.262030036,0.262030036,1,-4,0,-2.7,-1.2,3 -"2028",2423,3,1,0,0.039511241,0.039511241,1,-6,0,-0.3,0.1,-2 -"2029",2424,3,1,0,2,2,0,-27,0,1.8,0.8,1 -"2030",2424,3,2,2,3,1,0,-27,0,1.8,0.8,1 -"2031",2424,3,3,3,4.500658112,1.500658112,0,-27,0,1.8,0.8,1 -"2032",2425,3,1,0,2,2,0,7,1,-1.1,-0.9,1 -"2033",2425,3,2,2,3,1,0,7,1,-1.1,-0.9,1 -"2034",2425,3,3,3,4.332572785,1.332572785,0,7,1,-1.1,-0.9,1 -"2035",2426,3,1,0,1.340079949,1.340079949,1,4,0,-1.4,-0.7,7 -"2036",2427,3,1,0,2,2,0,-1,0,-4.7,-2.3,-1 -"2037",2427,3,2,2,2.554416843,0.554416843,1,-1,0,-4.7,-2.3,-1 -"2038",2428,3,1,0,2,2,0,-20,1,3.1,0.9,-2 -"2039",2428,3,2,2,3,1,0,-20,1,3.1,0.9,-2 -"2040",2428,3,3,3,6,3,0,-20,1,3.1,0.9,-2 -"2041",2428,3,4,6,6.5,0.5,0,-20,1,3.1,0.9,-2 -"2042",2428,3,5,6.5,8,1.5,0,-20,1,3.1,0.9,-2 -"2043",2428,3,6,8,9.690248466,1.690248466,0,-20,1,3.1,0.9,-2 -"2044",2429,3,1,0,2,2,0,-14,1,7,-0.1,-1 -"2045",2429,3,2,2,3,1,0,-14,1,7,-0.1,-1 -"2046",2429,3,3,3,6,3,0,-14,1,7,-0.1,-1 -"2047",2429,3,4,6,6.5,0.5,0,-14,1,7,-0.1,-1 -"2048",2429,3,5,6.5,8,1.5,0,-14,1,7,-0.1,-1 -"2049",2429,3,6,8,8.329767813,0.329767813,1,-14,1,7,-0.1,-1 -"2050",2430,3,1,0,2,2,0,-26,0,0.1,-0.4,6 -"2051",2430,3,2,2,3,1,0,-26,0,0.1,-0.4,6 -"2052",2430,3,3,3,6,3,0,-26,0,0.1,-0.4,6 -"2053",2430,3,4,6,6.5,0.5,0,-26,0,0.1,-0.4,6 -"2054",2430,3,5,6.5,8,1.5,0,-26,0,0.1,-0.4,6 -"2055",2430,3,6,8,8.415912489,0.415912489,0,-26,0,0.1,-0.4,6 -"2056",2431,3,1,0,2,2,0,-25,1,-4.4,0.4,-2 -"2057",2431,3,2,2,3,1,0,-25,1,-4.4,0.4,-2 -"2058",2431,3,3,3,6,3,0,-25,1,-4.4,0.4,-2 -"2059",2431,3,4,6,6.5,0.5,0,-25,1,-4.4,0.4,-2 -"2060",2431,3,5,6.5,8,1.5,0,-25,1,-4.4,0.4,-2 -"2061",2431,3,6,8,10,2,0,-25,1,-4.4,0.4,-2 -"2062",2432,3,1,0,1.135634228,1.135634228,1,31,1,-1.2,-0.8,0 -"2063",2433,3,1,0,0.91432842,0.91432842,1,0,0,4.1,1.2,4 -"2064",2434,3,1,0,1.772328557,1.772328557,0,-1,1,-2.1,-0.6,-1 -"2065",2435,3,1,0,2,2,0,-10,1,-7.2,0,1 -"2066",2435,3,2,2,2.027137928,0.027137928,0,-10,1,-7.2,0,1 -"2067",2436,3,1,0,0.58612117,0.58612117,0,0,0,-1.6,0,2 -"2068",2437,3,1,0,2,2,0,-6,1,-4.2,1.2,-1 -"2069",2437,3,2,2,2.422421175,0.422421175,0,-6,1,-4.2,1.2,-1 -"2070",2438,3,1,0,0.592192167,0.592192167,1,10,1,5.1,0.3,2 -"2071",2439,3,1,0,2,2,0,13,1,0,0.1,3 -"2072",2439,3,2,2,3,1,0,13,1,0,0.1,3 -"2073",2439,3,3,3,5.240672178,2.240672178,1,13,1,0,0.1,3 -"2074",2440,3,1,0,0.795269987,0.795269987,0,10,1,4.9,0,2 -"2075",2441,3,1,0,0.433887688,0.433887688,1,28,1,-3.1,1.3,-3 -"2076",2442,3,1,0,1.49684126,1.49684126,1,-5,0,1.9,-0.6,-2 -"2077",2443,3,1,0,2,2,0,10,0,0.8,-0.8,1 -"2078",2443,3,2,2,3,1,0,10,0,0.8,-0.8,1 -"2079",2443,3,3,3,6,3,0,10,0,0.8,-0.8,1 -"2080",2443,3,4,6,6.5,0.5,0,10,0,0.8,-0.8,1 -"2081",2443,3,5,6.5,7.548364778,1.048364778,0,10,0,0.8,-0.8,1 -"2082",2444,3,1,0,0.242103885,0.242103885,1,9,1,3.2,1.5,1 -"2083",2445,3,1,0,2,2,0,-11,1,-5.1,-0.5,1 -"2084",2445,3,2,2,3,1,0,-11,1,-5.1,-0.5,1 -"2085",2445,3,3,3,6,3,0,-11,1,-5.1,-0.5,1 -"2086",2445,3,4,6,6.5,0.5,0,-11,1,-5.1,-0.5,1 -"2087",2445,3,5,6.5,8,1.5,0,-11,1,-5.1,-0.5,1 -"2088",2445,3,6,8,9.393074646,1.393074646,0,-11,1,-5.1,-0.5,1 -"2089",2446,3,1,0,2,2,0,1,0,-3.2,0,-1 -"2090",2446,3,2,2,3,1,0,1,0,-3.2,0,-1 -"2091",2446,3,3,3,6,3,0,1,0,-3.2,0,-1 -"2092",2446,3,4,6,6.5,0.5,0,1,0,-3.2,0,-1 -"2093",2446,3,5,6.5,6.950727676,0.450727676,0,1,0,-3.2,0,-1 -"2094",2447,3,1,0,2,2,0,8,1,1.4,-0.3,-2 -"2095",2447,3,2,2,3,1,0,8,1,1.4,-0.3,-2 -"2096",2447,3,3,3,5.636930628,2.636930628,0,8,1,1.4,-0.3,-2 -"2097",2448,3,1,0,1.072452991,1.072452991,1,24,1,-2.1,0.7,10 -"2098",2449,3,1,0,2,2,0,-12,1,-6.2,0,-4 -"2099",2449,3,2,2,3,1,0,-12,1,-6.2,0,-4 -"2100",2449,3,3,3,6,3,0,-12,1,-6.2,0,-4 -"2101",2449,3,4,6,6.5,0.5,0,-12,1,-6.2,0,-4 -"2102",2449,3,5,6.5,8,1.5,0,-12,1,-6.2,0,-4 -"2103",2449,3,6,8,10,2,0,-12,1,-6.2,0,-4 -"2104",2450,3,1,0,0.020379815,0.020379815,1,14,1,-3.7,-0.5,3 -"2105",2451,3,1,0,2,2,0,-8,1,-0.3,-0.7,-1 -"2106",2451,3,2,2,3,1,0,-8,1,-0.3,-0.7,-1 -"2107",2451,3,3,3,6,3,0,-8,1,-0.3,-0.7,-1 -"2108",2451,3,4,6,6.133601018,0.133601018,0,-8,1,-0.3,-0.7,-1 -"2109",2452,3,1,0,2,2,0,1,1,-0.8,0.4,-9 -"2110",2452,3,2,2,3,1,0,1,1,-0.8,0.4,-9 -"2111",2452,3,3,3,5.385860399,2.385860399,0,1,1,-0.8,0.4,-9 -"2112",2453,3,1,0,0.195126989,0.195126989,0,-28,0,-1.5,-1.3,0 -"2113",2454,3,1,0,2,2,0,-19,1,-1.2,0.1,-6 -"2114",2454,3,2,2,3,1,0,-19,1,-1.2,0.1,-6 -"2115",2454,3,3,3,6,3,0,-19,1,-1.2,0.1,-6 -"2116",2454,3,4,6,6.5,0.5,0,-19,1,-1.2,0.1,-6 -"2117",2454,3,5,6.5,8,1.5,0,-19,1,-1.2,0.1,-6 -"2118",2454,3,6,8,10,2,0,-19,1,-1.2,0.1,-6 -"2119",2455,3,1,0,0.607512469,0.607512469,1,-38,0,6,0.5,-5 -"2120",2456,3,1,0,2,2,0,-3,0,3.4,-0.2,3 -"2121",2456,3,2,2,2.925453973,0.925453973,0,-3,0,3.4,-0.2,3 -"2122",2457,3,1,0,2,2,0,-3,1,-6,0.7,-8 -"2123",2457,3,2,2,2.244197276,0.244197276,0,-3,1,-6,0.7,-8 -"2124",2458,3,1,0,0.083972599,0.083972599,1,3,1,6.3,-1.2,7 -"2125",2459,3,1,0,2,2,0,-3,1,-1.7,0.2,3 -"2126",2459,3,2,2,3,1,0,-3,1,-1.7,0.2,3 -"2127",2459,3,3,3,6,3,0,-3,1,-1.7,0.2,3 -"2128",2459,3,4,6,6.5,0.5,0,-3,1,-1.7,0.2,3 -"2129",2459,3,5,6.5,6.704931454,0.204931454,0,-3,1,-1.7,0.2,3 -"2130",2460,3,1,0,0.511146454,0.511146454,0,11,1,-7.2,-0.7,2 -"2131",2461,3,1,0,0.788488571,0.788488571,0,5,0,2.8,-1.1,-6 -"2132",2462,3,1,0,2,2,0,5,1,5.4,-0.6,7 -"2133",2462,3,2,2,2.589638133,0.589638133,0,5,1,5.4,-0.6,7 -"2134",2463,3,1,0,0.531862064,0.531862064,1,7,1,1.7,-0.4,-1 -"2135",2464,3,1,0,0.354853313,0.354853313,0,-10,0,3.9,0.7,0 -"2136",2465,3,1,0,2,2,0,-1,1,2.9,1.2,0 -"2137",2465,3,2,2,3,1,0,-1,1,2.9,1.2,0 -"2138",2465,3,3,3,6,3,0,-1,1,2.9,1.2,0 -"2139",2465,3,4,6,6.5,0.5,0,-1,1,2.9,1.2,0 -"2140",2465,3,5,6.5,8,1.5,0,-1,1,2.9,1.2,0 -"2141",2465,3,6,8,9.196406668,1.196406668,1,-1,1,2.9,1.2,0 -"2142",2466,3,1,0,1.864882651,1.864882651,1,12,0,1.9,0,-2 -"2143",2467,3,1,0,2,2,0,-25,0,-4.8,-1,-10 -"2144",2467,3,2,2,3,1,0,-25,0,-4.8,-1,-10 -"2145",2467,3,3,3,3.861130223,0.861130223,0,-25,0,-4.8,-1,-10 -"2146",2468,3,1,0,2,2,0,11,1,3.5,0,-8 -"2147",2468,3,2,2,3,1,0,11,1,3.5,0,-8 -"2148",2468,3,3,3,6,3,0,11,1,3.5,0,-8 -"2149",2468,3,4,6,6.5,0.5,0,11,1,3.5,0,-8 -"2150",2468,3,5,6.5,8,1.5,0,11,1,3.5,0,-8 -"2151",2468,3,6,8,10,2,0,11,1,3.5,0,-8 -"2152",2469,3,1,0,1.548013026,1.548013026,0,-17,1,-5.3,-0.6,-4 -"2153",2470,3,1,0,1.137609734,1.137609734,0,-8,1,-4.8,-0.2,-6 -"2154",2471,3,1,0,0.933496521,0.933496521,0,-20,0,-1.2,0.3,-11 -"2155",2472,3,1,0,1.566298664,1.566298664,1,-2,1,3.5,-0.5,8 -"2156",2473,3,1,0,2,2,0,0,1,0.4,0.4,-6 -"2157",2473,3,2,2,3,1,0,0,1,0.4,0.4,-6 -"2158",2473,3,3,3,6,3,0,0,1,0.4,0.4,-6 -"2159",2473,3,4,6,6.5,0.5,0,0,1,0.4,0.4,-6 -"2160",2473,3,5,6.5,8,1.5,0,0,1,0.4,0.4,-6 -"2161",2473,3,6,8,10,2,0,0,1,0.4,0.4,-6 -"2162",2474,3,1,0,2,2,0,-12,0,-3,0.6,1 -"2163",2474,3,2,2,3,1,0,-12,0,-3,0.6,1 -"2164",2474,3,3,3,3.699545731,0.699545731,0,-12,0,-3,0.6,1 -"2165",2475,3,1,0,1.002416101,1.002416101,0,-15,0,-8.5,-1.8,-1 -"2166",2476,3,1,0,1.461775447,1.461775447,0,-20,1,-1.8,1.2,-4 -"2167",2477,3,1,0,1.66892568,1.66892568,0,-43,1,-0.6,0.2,-1 -"2168",2478,3,1,0,0.912734229,0.912734229,1,15,1,-3.9,-0.2,4 -"2169",2479,3,1,0,0.583910403,0.583910403,1,9,1,-1.7,0.3,-2 -"2170",2480,3,1,0,2,2,0,-16,1,-1.4,0,-1 -"2171",2480,3,2,2,3,1,0,-16,1,-1.4,0,-1 -"2172",2480,3,3,3,6,3,0,-16,1,-1.4,0,-1 -"2173",2480,3,4,6,6.5,0.5,0,-16,1,-1.4,0,-1 -"2174",2480,3,5,6.5,7.853702347,1.353702347,1,-16,1,-1.4,0,-1 -"2175",2481,3,1,0,2,2,0,-14,1,1,0.6,-1 -"2176",2481,3,2,2,3,1,0,-14,1,1,0.6,-1 -"2177",2481,3,3,3,6,3,0,-14,1,1,0.6,-1 -"2178",2481,3,4,6,6.5,0.5,0,-14,1,1,0.6,-1 -"2179",2481,3,5,6.5,7.435254647,0.935254647,0,-14,1,1,0.6,-1 -"2180",2482,3,1,0,0.969340336,0.969340336,1,15,1,-5.7,2,-8 -"2181",2483,3,1,0,2,2,0,14,1,2.9,-0.2,3 -"2182",2483,3,2,2,2.367650451,0.367650451,0,14,1,2.9,-0.2,3 -"2183",2484,3,1,0,1.987732197,1.987732197,0,0,1,-1.5,0.9,1 -"2184",2485,3,1,0,2,2,0,-5,1,2.3,0.7,-5 -"2185",2485,3,2,2,2.164242473,0.164242473,1,-5,1,2.3,0.7,-5 -"2186",2486,3,1,0,0.990497196,0.990497196,0,-27,1,2.7,1.8,6 -"2187",2487,3,1,0,2,2,0,-3,1,-0.5,0,-6 -"2188",2487,3,2,2,3,1,0,-3,1,-0.5,0,-6 -"2189",2487,3,3,3,4.074439857,1.074439857,1,-3,1,-0.5,0,-6 -"2190",2488,3,1,0,0.616912785,0.616912785,1,-6,1,2.7,1,-1 -"2191",2489,3,1,0,1.717689851,1.717689851,1,12,0,-7.1,0.3,-8 -"2192",2490,3,1,0,0.724862386,0.724862386,1,18,1,-1.7,0.1,-6 -"2193",2491,3,1,0,1.979015039,1.979015039,1,6,1,-8.9,-1.3,-2 -"2194",2492,3,1,0,2,2,0,6,1,-7,-0.5,1 -"2195",2492,3,2,2,3,1,0,6,1,-7,-0.5,1 -"2196",2492,3,3,3,6,3,0,6,1,-7,-0.5,1 -"2197",2492,3,4,6,6.06761728,0.06761728,0,6,1,-7,-0.5,1 -"2198",2493,3,1,0,0.328182247,0.328182247,1,19,0,-2.9,1.2,3 -"2199",2494,3,1,0,1.773267633,1.773267633,1,-7,0,5.3,-0.7,4 -"2200",2495,3,1,0,0.806983396,0.806983396,0,3,1,-2.6,-0.5,-3 -"2201",2496,3,1,0,0.147730792,0.147730792,1,2,0,-0.8,-1.3,-5 -"2202",2497,3,1,0,1.880686452,1.880686452,1,-13,1,5.9,0.8,-2 -"2203",2498,3,1,0,1.669553025,1.669553025,0,6,1,13.6,-0.2,-8 -"2204",2499,3,1,0,2,2,0,-15,0,2.2,1.3,1 -"2205",2499,3,2,2,2.884544897,0.884544897,1,-15,0,2.2,1.3,1 -"2206",2500,3,1,0,2,2,0,7,1,-0.5,0.8,-12 -"2207",2500,3,2,2,3,1,0,7,1,-0.5,0.8,-12 -"2208",2500,3,3,3,6,3,0,7,1,-0.5,0.8,-12 -"2209",2500,3,4,6,6.5,0.5,0,7,1,-0.5,0.8,-12 -"2210",2500,3,5,6.5,7.187921569,0.687921569,0,7,1,-0.5,0.8,-12 -"2211",2501,3,1,0,1.87003801,1.87003801,1,3,1,-3.3,0.7,-5 -"2212",2502,3,1,0,0.799118701,0.799118701,0,3,1,-7.9,1,-4 -"2213",2503,3,1,0,0.690793455,0.690793455,0,-5,0,1.7,-1,-3 -"2214",2504,3,1,0,2,2,0,-9,0,4.6,0.6,-4 -"2215",2504,3,2,2,3,1,0,-9,0,4.6,0.6,-4 -"2216",2504,3,3,3,6,3,0,-9,0,4.6,0.6,-4 -"2217",2504,3,4,6,6.5,0.5,0,-9,0,4.6,0.6,-4 -"2218",2504,3,5,6.5,7.673039962,1.173039962,1,-9,0,4.6,0.6,-4 -"2219",2505,3,1,0,2,2,0,-25,1,2.1,-2.1,-3 -"2220",2505,3,2,2,3,1,0,-25,1,2.1,-2.1,-3 -"2221",2505,3,3,3,6,3,0,-25,1,2.1,-2.1,-3 -"2222",2505,3,4,6,6.5,0.5,0,-25,1,2.1,-2.1,-3 -"2223",2505,3,5,6.5,8,1.5,0,-25,1,2.1,-2.1,-3 -"2224",2505,3,6,8,9.219003757,1.219003757,0,-25,1,2.1,-2.1,-3 -"2225",2506,3,1,0,2,2,0,7,0,4.4,-0.8,4 -"2226",2506,3,2,2,3,1,0,7,0,4.4,-0.8,4 -"2227",2506,3,3,3,6,3,0,7,0,4.4,-0.8,4 -"2228",2506,3,4,6,6.5,0.5,0,7,0,4.4,-0.8,4 -"2229",2506,3,5,6.5,8,1.5,0,7,0,4.4,-0.8,4 -"2230",2506,3,6,8,10,2,0,7,0,4.4,-0.8,4 -"2231",2507,3,1,0,2,2,0,-16,0,5.7,0.5,-1 -"2232",2507,3,2,2,3,1,0,-16,0,5.7,0.5,-1 -"2233",2507,3,3,3,6,3,0,-16,0,5.7,0.5,-1 -"2234",2507,3,4,6,6.5,0.5,0,-16,0,5.7,0.5,-1 -"2235",2507,3,5,6.5,8,1.5,0,-16,0,5.7,0.5,-1 -"2236",2507,3,6,8,10,2,0,-16,0,5.7,0.5,-1 -"2237",2508,3,1,0,1.720170618,1.720170618,1,3,1,5.7,0.6,4 -"2238",2509,3,1,0,1.961836546,1.961836546,0,-9,1,-5.9,-0.7,-8 -"2239",2510,3,1,0,0.072366597,0.072366597,1,14,0,9.2,0.1,7 -"2240",2511,3,1,0,1.78470131,1.78470131,0,23,0,-3.9,-0.9,-3 -"2241",2512,3,1,0,2,2,0,0,1,5.5,0.5,-7 -"2242",2512,3,2,2,3,1,0,0,1,5.5,0.5,-7 -"2243",2512,3,3,3,6,3,0,0,1,5.5,0.5,-7 -"2244",2512,3,4,6,6.5,0.5,0,0,1,5.5,0.5,-7 -"2245",2512,3,5,6.5,8,1.5,0,0,1,5.5,0.5,-7 -"2246",2512,3,6,8,8.572038357,0.572038357,1,0,1,5.5,0.5,-7 -"2247",2513,3,1,0,0.904804372,0.904804372,1,24,0,1.4,-0.7,4 -"2248",2514,3,1,0,0.088442892,0.088442892,0,-18,0,-13.7,0,-8 -"2249",2515,3,1,0,1.351151925,1.351151925,1,16,1,3.9,-0.6,-3 -"2250",2516,3,1,0,1.186953813,1.186953813,1,7,1,-1.1,-0.4,7 -"2251",2517,3,1,0,1.76028848,1.76028848,1,-8,1,2.4,0.2,1 -"2252",2518,3,1,0,2,2,0,-24,1,-7.6,0,-8 -"2253",2518,3,2,2,3,1,0,-24,1,-7.6,0,-8 -"2254",2518,3,3,3,6,3,0,-24,1,-7.6,0,-8 -"2255",2518,3,4,6,6.5,0.5,0,-24,1,-7.6,0,-8 -"2256",2518,3,5,6.5,8,1.5,0,-24,1,-7.6,0,-8 -"2257",2518,3,6,8,10,2,0,-24,1,-7.6,0,-8 -"2258",2519,3,1,0,0.082253632,0.082253632,1,0,1,-3.7,0.7,-8 -"2259",2520,3,1,0,1.880354983,1.880354983,1,24,1,-2.1,-0.3,0 -"2260",2521,3,1,0,1.651539502,1.651539502,0,-13,1,0,0.8,4 -"2261",2522,3,1,0,1.312975075,1.312975075,0,1,1,0.4,-2.9,3 -"2262",2523,3,1,0,1.415292145,1.415292145,1,-6,1,-1.8,-0.9,-1 -"2263",2524,3,1,0,0.603647697,0.603647697,1,6,0,8.2,0.4,-7 -"2264",2525,3,1,0,0.784661456,0.784661456,1,28,1,-1.7,0.3,10 -"2265",2526,3,1,0,2,2,0,-7,0,-7.8,1.9,-6 -"2266",2526,3,2,2,2.614317467,0.614317467,1,-7,0,-7.8,1.9,-6 -"2267",2527,3,1,0,2,2,0,-22,1,2.3,-2.4,-9 -"2268",2527,3,2,2,3,1,0,-22,1,2.3,-2.4,-9 -"2269",2527,3,3,3,6,3,0,-22,1,2.3,-2.4,-9 -"2270",2527,3,4,6,6.441087074,0.441087074,0,-22,1,2.3,-2.4,-9 -"2271",2528,3,1,0,2,2,0,24,1,-1.4,-0.5,-6 -"2272",2528,3,2,2,3,1,0,24,1,-1.4,-0.5,-6 -"2273",2528,3,3,3,6,3,0,24,1,-1.4,-0.5,-6 -"2274",2528,3,4,6,6.5,0.5,0,24,1,-1.4,-0.5,-6 -"2275",2528,3,5,6.5,8,1.5,0,24,1,-1.4,-0.5,-6 -"2276",2528,3,6,8,8.103752426,0.103752426,1,24,1,-1.4,-0.5,-6 -"2277",2529,3,1,0,2,2,0,2,0,-0.4,0.2,0 -"2278",2529,3,2,2,2.100270923,0.100270923,1,2,0,-0.4,0.2,0 -"2279",2530,3,1,0,2,2,0,-16,0,-0.8,-1.5,-1 -"2280",2530,3,2,2,3,1,0,-16,0,-0.8,-1.5,-1 -"2281",2530,3,3,3,3.161310179,0.161310179,0,-16,0,-0.8,-1.5,-1 -"2282",2531,3,1,0,0.492673525,0.492673525,1,2,0,4.2,-0.1,6 -"2283",2532,3,1,0,0.121606861,0.121606861,1,20,0,5.6,0.9,-3 -"2284",2533,3,1,0,2,2,0,-9,0,-4.1,0,-8 -"2285",2533,3,2,2,3,1,0,-9,0,-4.1,0,-8 -"2286",2533,3,3,3,6,3,0,-9,0,-4.1,0,-8 -"2287",2533,3,4,6,6.5,0.5,0,-9,0,-4.1,0,-8 -"2288",2533,3,5,6.5,8,1.5,0,-9,0,-4.1,0,-8 -"2289",2533,3,6,8,10,2,0,-9,0,-4.1,0,-8 -"2290",2534,3,1,0,0.508680549,0.508680549,1,9,1,9,-0.6,8 -"2291",2535,3,1,0,1.44470267,1.44470267,1,26,1,1.6,-0.1,2 -"2292",2536,3,1,0,2,2,0,8,1,2.7,0.7,2 -"2293",2536,3,2,2,3,1,0,8,1,2.7,0.7,2 -"2294",2536,3,3,3,4.477780571,1.477780571,0,8,1,2.7,0.7,2 -"2295",2537,3,1,0,2,2,0,-10,1,0.9,-1.4,-6 -"2296",2537,3,2,2,3,1,0,-10,1,0.9,-1.4,-6 -"2297",2537,3,3,3,6,3,0,-10,1,0.9,-1.4,-6 -"2298",2537,3,4,6,6.5,0.5,0,-10,1,0.9,-1.4,-6 -"2299",2537,3,5,6.5,8,1.5,0,-10,1,0.9,-1.4,-6 -"2300",2537,3,6,8,10,2,0,-10,1,0.9,-1.4,-6 -"2301",2538,3,1,0,1.91406358,1.91406358,1,-9,0,3.4,-0.4,-6 -"2302",2539,3,1,0,0.73858701,0.73858701,1,10,1,-0.1,1.8,7 -"2303",2540,3,1,0,1.730009548,1.730009548,1,-16,0,-0.9,0.1,-1 -"2304",2541,3,1,0,0.549022635,0.549022635,1,-8,0,6.3,1.3,5 -"2305",2542,3,1,0,2,2,0,-1,1,2.8,0.6,0 -"2306",2542,3,2,2,3,1,0,-1,1,2.8,0.6,0 -"2307",2542,3,3,3,4.26767677,1.26767677,0,-1,1,2.8,0.6,0 -"2308",2543,3,1,0,2,2,0,2,1,8.2,0.2,2 -"2309",2543,3,2,2,2.340262149,0.340262149,0,2,1,8.2,0.2,2 -"2310",2544,3,1,0,0.356837064,0.356837064,1,9,0,-1.6,-0.8,-3 -"2311",2545,3,1,0,1.086142011,1.086142011,1,-14,0,-1.9,0.7,0 -"2312",2546,3,1,0,0.267809235,0.267809235,1,10,1,-5.4,-0.5,0 -"2313",2547,3,1,0,2,2,0,14,0,1.3,1.1,-5 -"2314",2547,3,2,2,3,1,0,14,0,1.3,1.1,-5 -"2315",2547,3,3,3,6,3,0,14,0,1.3,1.1,-5 -"2316",2547,3,4,6,6.150162967,0.150162967,1,14,0,1.3,1.1,-5 -"2317",2548,3,1,0,0.42176241,0.42176241,1,11,0,-2.9,-0.5,-2 -"2318",2549,3,1,0,2,2,0,-8,0,-0.6,-0.3,1 -"2319",2549,3,2,2,3,1,0,-8,0,-0.6,-0.3,1 -"2320",2549,3,3,3,6,3,0,-8,0,-0.6,-0.3,1 -"2321",2549,3,4,6,6.5,0.5,0,-8,0,-0.6,-0.3,1 -"2322",2549,3,5,6.5,8,1.5,0,-8,0,-0.6,-0.3,1 -"2323",2549,3,6,8,8.59839453,0.59839453,1,-8,0,-0.6,-0.3,1 -"2324",2550,3,1,0,2,2,0,13,0,5.9,-2,1 -"2325",2550,3,2,2,3,1,0,13,0,5.9,-2,1 -"2326",2550,3,3,3,6,3,0,13,0,5.9,-2,1 -"2327",2550,3,4,6,6.5,0.5,0,13,0,5.9,-2,1 -"2328",2550,3,5,6.5,7.719173053,1.219173053,1,13,0,5.9,-2,1 -"2329",2551,3,1,0,0.504223992,0.504223992,0,6,1,-7.6,0.8,4 -"2330",2552,3,1,0,2,2,0,-5,1,-7.4,2,0 -"2331",2552,3,2,2,3,1,0,-5,1,-7.4,2,0 -"2332",2552,3,3,3,5.871445046,2.871445046,1,-5,1,-7.4,2,0 -"2333",2553,3,1,0,1.074522342,1.074522342,0,-25,0,8.9,0.3,-2 -"2334",2554,3,1,0,2,2,0,-30,0,4.7,1.1,3 -"2335",2554,3,2,2,2.372562898,0.372562898,1,-30,0,4.7,1.1,3 -"2336",2555,3,1,0,0.3523184,0.3523184,1,15,0,8.6,1.7,-1 -"2337",2556,3,1,0,2,2,0,2,1,-5.7,0,-2 -"2338",2556,3,2,2,3,1,0,2,1,-5.7,0,-2 -"2339",2556,3,3,3,6,3,0,2,1,-5.7,0,-2 -"2340",2556,3,4,6,6.5,0.5,0,2,1,-5.7,0,-2 -"2341",2556,3,5,6.5,6.717241297,0.217241297,1,2,1,-5.7,0,-2 -"2342",2557,3,1,0,1.038723245,1.038723245,1,18,1,-7.5,1,-4 -"2343",2558,3,1,0,2,2,0,6,1,-2.6,0.5,-8 -"2344",2558,3,2,2,3,1,0,6,1,-2.6,0.5,-8 -"2345",2558,3,3,3,6,3,0,6,1,-2.6,0.5,-8 -"2346",2558,3,4,6,6.5,0.5,0,6,1,-2.6,0.5,-8 -"2347",2558,3,5,6.5,8,1.5,0,6,1,-2.6,0.5,-8 -"2348",2558,3,6,8,10,2,0,6,1,-2.6,0.5,-8 -"2349",2559,3,1,0,0.553645457,0.553645457,1,18,0,8.9,0.3,-2 -"2350",2560,3,1,0,1.924326339,1.924326339,1,-6,0,-7.6,0.1,1 -"2351",2561,3,1,0,0.960655199,0.960655199,1,-3,0,0,0.5,6 -"2352",2562,3,1,0,1.468713864,1.468713864,0,7,1,-4.2,0.7,5 -"2353",2563,3,1,0,2,2,0,-6,1,0.3,0,-6 -"2354",2563,3,2,2,3,1,0,-6,1,0.3,0,-6 -"2355",2563,3,3,3,6,3,0,-6,1,0.3,0,-6 -"2356",2563,3,4,6,6.5,0.5,0,-6,1,0.3,0,-6 -"2357",2563,3,5,6.5,8,1.5,0,-6,1,0.3,0,-6 -"2358",2563,3,6,8,8.671409054,0.671409054,0,-6,1,0.3,0,-6 -"2359",2564,3,1,0,1.430004803,1.430004803,0,-17,1,-1.5,-1.4,3 -"2360",2565,3,1,0,2,2,0,12,0,-7.6,-1.4,-2 -"2361",2565,3,2,2,3,1,0,12,0,-7.6,-1.4,-2 -"2362",2565,3,3,3,6,3,0,12,0,-7.6,-1.4,-2 -"2363",2565,3,4,6,6.161494461,0.161494461,0,12,0,-7.6,-1.4,-2 -"2364",2566,3,1,0,0.779029101,0.779029101,1,14,1,2.3,1.1,3 -"2365",2567,3,1,0,2,2,0,0,0,-1.6,-1.4,-6 -"2366",2567,3,2,2,3,1,0,0,0,-1.6,-1.4,-6 -"2367",2567,3,3,3,6,3,0,0,0,-1.6,-1.4,-6 -"2368",2567,3,4,6,6.5,0.5,0,0,0,-1.6,-1.4,-6 -"2369",2567,3,5,6.5,8,1.5,0,0,0,-1.6,-1.4,-6 -"2370",2567,3,6,8,10,2,0,0,0,-1.6,-1.4,-6 -"2371",2568,3,1,0,1.974229506,1.974229506,1,8,1,2.9,-0.6,7 -"2372",2569,3,1,0,0.052734881,0.052734881,0,21,0,-2.4,-0.5,0 -"2373",2570,3,1,0,1.578556423,1.578556423,0,-2,1,-1.8,-1.2,-10 -"2374",2571,3,1,0,2,2,0,-1,1,3.2,-0.3,1 -"2375",2571,3,2,2,2.089833282,0.089833282,0,-1,1,3.2,-0.3,1 -"2376",2572,3,1,0,1.192875593,1.192875593,0,2,1,6.3,0.2,-8 -"2377",2573,3,1,0,1.691182564,1.691182564,0,12,1,-0.6,-0.7,3 -"2378",2574,3,1,0,2,2,0,-18,1,-3.6,0.3,3 -"2379",2574,3,2,2,3,1,0,-18,1,-3.6,0.3,3 -"2380",2574,3,3,3,3.493796353,0.493796353,0,-18,1,-3.6,0.3,3 -"2381",2575,3,1,0,1.480044856,1.480044856,0,-5,1,3.6,0.3,3 -"2382",2576,3,1,0,2,2,0,0,0,-6.2,0.3,4 -"2383",2576,3,2,2,2.274964845,0.274964845,1,0,0,-6.2,0.3,4 -"2384",2577,3,1,0,1.705753918,1.705753918,1,-4,0,5.5,0.3,4 -"2385",2578,3,1,0,2,2,0,-19,1,1.4,0.6,-6 -"2386",2578,3,2,2,3,1,0,-19,1,1.4,0.6,-6 -"2387",2578,3,3,3,6,3,0,-19,1,1.4,0.6,-6 -"2388",2578,3,4,6,6.5,0.5,0,-19,1,1.4,0.6,-6 -"2389",2578,3,5,6.5,8,1.5,0,-19,1,1.4,0.6,-6 -"2390",2578,3,6,8,10,2,0,-19,1,1.4,0.6,-6 -"2391",2579,3,1,0,2,2,0,24,1,0.8,0.3,-5 -"2392",2579,3,2,2,3,1,0,24,1,0.8,0.3,-5 -"2393",2579,3,3,3,4.430521954,1.430521954,0,24,1,0.8,0.3,-5 -"2394",2580,3,1,0,0.225839466,0.225839466,1,-14,0,2.9,-0.1,5 -"2395",2581,3,1,0,1.777799028,1.777799028,1,32,1,-2.9,-1,9 -"2396",2582,3,1,0,2,2,0,11,1,8,0.7,1 -"2397",2582,3,2,2,3,1,0,11,1,8,0.7,1 -"2398",2582,3,3,3,3.359387116,0.359387116,0,11,1,8,0.7,1 -"2399",2583,3,1,0,0.027318737,0.027318737,0,-3,0,7.8,1,4 -"2400",2584,3,1,0,0.255117721,0.255117721,1,7,0,1.1,2.1,4 -"2401",2585,3,1,0,2,2,0,14,1,6.3,-0.3,-4 -"2402",2585,3,2,2,3,1,0,14,1,6.3,-0.3,-4 -"2403",2585,3,3,3,6,3,0,14,1,6.3,-0.3,-4 -"2404",2585,3,4,6,6.5,0.5,0,14,1,6.3,-0.3,-4 -"2405",2585,3,5,6.5,7.132957328,0.632957328,0,14,1,6.3,-0.3,-4 -"2406",2586,3,1,0,1.420478584,1.420478584,0,-10,0,-2.7,-0.9,3 -"2407",2587,3,1,0,1.202117528,1.202117528,0,-28,1,1.8,0.3,4 -"2408",2588,3,1,0,0.653729473,0.653729473,1,20,1,1.8,0.4,5 -"2409",2589,3,1,0,2,2,0,-11,1,2.2,0.4,-1 -"2410",2589,3,2,2,2.118650171,0.118650171,0,-11,1,2.2,0.4,-1 -"2411",2590,3,1,0,1.126355654,1.126355654,1,15,1,-0.5,-1.3,4 -"2412",2591,3,1,0,2,2,0,-20,0,2.6,0.5,0 -"2413",2591,3,2,2,3,1,0,-20,0,2.6,0.5,0 -"2414",2591,3,3,3,5.275602524,2.275602524,0,-20,0,2.6,0.5,0 -"2415",2592,3,1,0,0.998231834,0.998231834,1,4,1,4.3,-2.1,6 -"2416",2593,3,1,0,0.398233737,0.398233737,0,0,0,-6.4,-0.5,2 -"2417",2594,3,1,0,0.159271233,0.159271233,1,0,1,0,-0.3,6 -"2418",2595,3,1,0,2,2,0,-24,0,-3.3,-0.4,2 -"2419",2595,3,2,2,3,1,0,-24,0,-3.3,-0.4,2 -"2420",2595,3,3,3,6,3,0,-24,0,-3.3,-0.4,2 -"2421",2595,3,4,6,6.5,0.5,0,-24,0,-3.3,-0.4,2 -"2422",2595,3,5,6.5,8,1.5,0,-24,0,-3.3,-0.4,2 -"2423",2595,3,6,8,10,2,0,-24,0,-3.3,-0.4,2 -"2424",2596,3,1,0,2,2,0,23,1,0.5,-0.9,-4 -"2425",2596,3,2,2,3,1,0,23,1,0.5,-0.9,-4 -"2426",2596,3,3,3,6,3,0,23,1,0.5,-0.9,-4 -"2427",2596,3,4,6,6.412030438,0.412030438,0,23,1,0.5,-0.9,-4 -"2428",2597,3,1,0,2,2,0,2,1,-2.2,-1,1 -"2429",2597,3,2,2,3,1,0,2,1,-2.2,-1,1 -"2430",2597,3,3,3,4.492762613,1.492762613,0,2,1,-2.2,-1,1 -"2431",2598,3,1,0,1.12001507,1.12001507,0,-2,0,1.5,-0.5,-2 -"2432",2599,3,1,0,0.576358317,0.576358317,0,-1,1,-5.6,-0.5,0 -"2433",2600,3,1,0,0.702438903,0.702438903,1,26,1,-2.9,0.1,5 -"2434",2601,3,1,0,2,2,0,-18,0,0,-1.5,7 -"2435",2601,3,2,2,3,1,0,-18,0,0,-1.5,7 -"2436",2601,3,3,3,6,3,0,-18,0,0,-1.5,7 -"2437",2601,3,4,6,6.5,0.5,0,-18,0,0,-1.5,7 -"2438",2601,3,5,6.5,8,1.5,0,-18,0,0,-1.5,7 -"2439",2601,3,6,8,8.420333092,0.420333092,0,-18,0,0,-1.5,7 -"2440",2602,3,1,0,1.837912104,1.837912104,1,1,0,0.6,1.1,7 -"2441",2603,3,1,0,2,2,0,0,0,-4.8,-1.5,-2 -"2442",2603,3,2,2,2.587574704,0.587574704,0,0,0,-4.8,-1.5,-2 -"2443",2604,3,1,0,2,2,0,-11,0,0.9,-0.5,3 -"2444",2604,3,2,2,3,1,0,-11,0,0.9,-0.5,3 -"2445",2604,3,3,3,5.576167853,2.576167853,0,-11,0,0.9,-0.5,3 -"2446",2605,3,1,0,2,2,0,-20,1,-0.8,0.6,-2 -"2447",2605,3,2,2,2.863463622,0.863463622,1,-20,1,-0.8,0.6,-2 -"2448",2606,3,1,0,2,2,0,-1,1,0.8,0.3,3 -"2449",2606,3,2,2,3,1,0,-1,1,0.8,0.3,3 -"2450",2606,3,3,3,6,3,0,-1,1,0.8,0.3,3 -"2451",2606,3,4,6,6.5,0.5,0,-1,1,0.8,0.3,3 -"2452",2606,3,5,6.5,8,1.5,0,-1,1,0.8,0.3,3 -"2453",2606,3,6,8,8.600195638,0.600195638,0,-1,1,0.8,0.3,3 -"2454",2607,3,1,0,2,2,0,-4,1,-6.5,-0.6,3 -"2455",2607,3,2,2,3,1,0,-4,1,-6.5,-0.6,3 -"2456",2607,3,3,3,4.849385923,1.849385923,0,-4,1,-6.5,-0.6,3 -"2457",2608,3,1,0,1.71153455,1.71153455,0,-14,0,-5.8,0.7,-2 -"2458",2609,3,1,0,2,2,0,-22,0,-0.4,0.3,-2 -"2459",2609,3,2,2,3,1,0,-22,0,-0.4,0.3,-2 -"2460",2609,3,3,3,6,3,0,-22,0,-0.4,0.3,-2 -"2461",2609,3,4,6,6.5,0.5,0,-22,0,-0.4,0.3,-2 -"2462",2609,3,5,6.5,8,1.5,0,-22,0,-0.4,0.3,-2 -"2463",2609,3,6,8,8.917440695,0.917440695,1,-22,0,-0.4,0.3,-2 -"2464",2610,3,1,0,1.01797346,1.01797346,0,16,0,1.5,0.2,3 -"2465",2611,3,1,0,2,2,0,-9,1,-1.1,-1,-4 -"2466",2611,3,2,2,2.134362143,0.134362143,0,-9,1,-1.1,-1,-4 -"2467",2612,3,1,0,0.17349036,0.17349036,1,23,0,-10,-0.6,-4 -"2468",2613,3,1,0,1.541428998,1.541428998,1,7,1,3.1,1.2,-1 -"2469",2614,3,1,0,0.118564432,0.118564432,1,-10,1,-4.2,3.3,6 -"2470",2615,3,1,0,0.494185795,0.494185795,1,23,1,1.7,1.4,-1 -"2471",2616,3,1,0,2,2,0,-3,1,2.8,-1,0 -"2472",2616,3,2,2,3,1,0,-3,1,2.8,-1,0 -"2473",2616,3,3,3,6,3,0,-3,1,2.8,-1,0 -"2474",2616,3,4,6,6.5,0.5,0,-3,1,2.8,-1,0 -"2475",2616,3,5,6.5,6.536943303,0.036943303,0,-3,1,2.8,-1,0 -"2476",2617,3,1,0,2,2,0,23,0,3.5,-1.6,8 -"2477",2617,3,2,2,2.342889768,0.342889768,1,23,0,3.5,-1.6,8 -"2478",2618,3,1,0,0.065784745,0.065784745,1,2,1,-3.7,0.3,8 -"2479",2619,3,1,0,0.909547663,0.909547663,1,-15,0,-2.4,1.3,-1 -"2480",2620,3,1,0,2,2,0,21,1,11.3,0.3,-15 -"2481",2620,3,2,2,3,1,0,21,1,11.3,0.3,-15 -"2482",2620,3,3,3,6,3,0,21,1,11.3,0.3,-15 -"2483",2620,3,4,6,6.227317896,0.227317896,0,21,1,11.3,0.3,-15 -"2484",2621,3,1,0,0.038632466,0.038632466,1,25,0,-1.1,-0.5,1 -"2485",2622,3,1,0,0.150744768,0.150744768,1,46,0,0.3,1,5 -"2486",2623,3,1,0,2,2,0,-6,0,2.3,-0.8,6 -"2487",2623,3,2,2,2.422910139,0.422910139,1,-6,0,2.3,-0.8,6 -"2488",2624,3,1,0,1.894442534,1.894442534,1,-5,1,-2.8,-1.5,0 -"2489",2625,3,1,0,1.008216527,1.008216527,1,5,1,-6.6,-0.7,1 -"2490",2626,3,1,0,0.062909342,0.062909342,1,23,0,2.4,-0.5,7 -"2491",2627,3,1,0,0.901733995,0.901733995,1,9,0,-0.7,-0.1,0 -"2492",2628,3,1,0,0.041271521,0.041271521,1,30,0,-6.5,2,10 -"2493",2629,3,1,0,2,2,0,12,1,-0.5,-1.5,-1 -"2494",2629,3,2,2,3,1,0,12,1,-0.5,-1.5,-1 -"2495",2629,3,3,3,6,3,0,12,1,-0.5,-1.5,-1 -"2496",2629,3,4,6,6.5,0.5,0,12,1,-0.5,-1.5,-1 -"2497",2629,3,5,6.5,8,1.5,0,12,1,-0.5,-1.5,-1 -"2498",2629,3,6,8,10,2,0,12,1,-0.5,-1.5,-1 -"2499",2630,3,1,0,0.824984182,0.824984182,1,-12,0,4,-1.1,0 -"2500",2631,3,1,0,0.800185312,0.800185312,1,6,1,-5.2,-0.5,-1 -"2501",2632,3,1,0,0.731258253,0.731258253,1,-9,0,0.4,-0.4,-1 -"2502",2633,3,1,0,0.575193397,0.575193397,1,-4,0,6.4,-1,-2 -"2503",2634,3,1,0,1.788864534,1.788864534,1,-17,1,0.5,0.4,11 -"2504",2635,3,1,0,2,2,0,-9,1,0.3,-0.5,-4 -"2505",2635,3,2,2,3,1,0,-9,1,0.3,-0.5,-4 -"2506",2635,3,3,3,6,3,0,-9,1,0.3,-0.5,-4 -"2507",2635,3,4,6,6.5,0.5,0,-9,1,0.3,-0.5,-4 -"2508",2635,3,5,6.5,8,1.5,0,-9,1,0.3,-0.5,-4 -"2509",2635,3,6,8,10,2,0,-9,1,0.3,-0.5,-4 -"2510",2636,3,1,0,0.732521071,0.732521071,1,-14,0,1.8,0.4,9 -"2511",2637,3,1,0,0.406102354,0.406102354,0,-14,0,-2.5,0.6,8 -"2512",2638,3,1,0,1.546764849,1.546764849,0,-27,1,-3.7,-0.1,-7 -"2513",2639,3,1,0,0.020474679,0.020474679,1,10,0,-3.6,0.2,4 -"2514",2640,3,1,0,2,2,0,-2,1,-0.6,-1.3,1 -"2515",2640,3,2,2,3,1,0,-2,1,-0.6,-1.3,1 -"2516",2640,3,3,3,6,3,0,-2,1,-0.6,-1.3,1 -"2517",2640,3,4,6,6.5,0.5,0,-2,1,-0.6,-1.3,1 -"2518",2640,3,5,6.5,8,1.5,0,-2,1,-0.6,-1.3,1 -"2519",2640,3,6,8,10,2,0,-2,1,-0.6,-1.3,1 -"2520",2641,3,1,0,0.346294581,0.346294581,0,1,0,7.8,-0.6,-6 -"2521",2642,3,1,0,2,2,0,-12,1,3.7,0,-14 -"2522",2642,3,2,2,3,1,0,-12,1,3.7,0,-14 -"2523",2642,3,3,3,6,3,0,-12,1,3.7,0,-14 -"2524",2642,3,4,6,6.5,0.5,0,-12,1,3.7,0,-14 -"2525",2642,3,5,6.5,8,1.5,0,-12,1,3.7,0,-14 -"2526",2642,3,6,8,10,2,0,-12,1,3.7,0,-14 -"2527",2643,3,1,0,0.762852781,0.762852781,1,5,0,1.7,-0.1,3 -"2528",2644,3,1,0,0.655784318,0.655784318,1,12,0,-3.1,0.2,4 -"2529",2645,3,1,0,2,2,0,-18,0,2.1,-0.4,-1 -"2530",2645,3,2,2,3,1,0,-18,0,2.1,-0.4,-1 -"2531",2645,3,3,3,6,3,0,-18,0,2.1,-0.4,-1 -"2532",2645,3,4,6,6.359029262,0.359029262,0,-18,0,2.1,-0.4,-1 -"2533",2646,3,1,0,1.254574142,1.254574142,0,-21,1,-3.3,-0.1,-1 -"2534",2647,3,1,0,2,2,0,-16,0,2.9,0.7,3 -"2535",2647,3,2,2,3,1,0,-16,0,2.9,0.7,3 -"2536",2647,3,3,3,6,3,0,-16,0,2.9,0.7,3 -"2537",2647,3,4,6,6.403371021,0.403371021,0,-16,0,2.9,0.7,3 -"2538",2648,3,1,0,0.055122097,0.055122097,1,37,0,-6,0.6,1 -"2539",2649,3,1,0,0.182580105,0.182580105,0,3,0,10.6,0,-2 -"2540",2650,3,1,0,1.425878682,1.425878682,1,17,1,-1.3,0.2,-4 -"2541",2651,3,1,0,0.480255981,0.480255981,1,-8,0,7.6,1.3,11 -"2542",2652,3,1,0,1.987280055,1.987280055,1,-3,0,-6.6,-0.1,-4 -"2543",2653,3,1,0,2,2,0,3,1,-7.7,0,2 -"2544",2653,3,2,2,3,1,0,3,1,-7.7,0,2 -"2545",2653,3,3,3,5.792616397,2.792616397,0,3,1,-7.7,0,2 -"2546",2654,3,1,0,2,2,0,-2,0,0.4,-1.3,-7 -"2547",2654,3,2,2,3,1,0,-2,0,0.4,-1.3,-7 -"2548",2654,3,3,3,3.589494111,0.589494111,0,-2,0,0.4,-1.3,-7 -"2549",2655,3,1,0,0.671182405,0.671182405,1,46,1,-3.7,0,6 -"2550",2656,3,1,0,0.122237892,0.122237892,1,24,0,-1.1,-0.6,-1 -"2551",2657,3,1,0,2,2,0,-37,1,3.8,-0.2,-8 -"2552",2657,3,2,2,3,1,0,-37,1,3.8,-0.2,-8 -"2553",2657,3,3,3,6,3,0,-37,1,3.8,-0.2,-8 -"2554",2657,3,4,6,6.5,0.5,0,-37,1,3.8,-0.2,-8 -"2555",2657,3,5,6.5,8,1.5,0,-37,1,3.8,-0.2,-8 -"2556",2657,3,6,8,10,2,0,-37,1,3.8,-0.2,-8 -"2557",2658,3,1,0,2,2,0,3,1,-4.4,0.5,-1 -"2558",2658,3,2,2,2.723306883,0.723306883,0,3,1,-4.4,0.5,-1 -"2559",2659,3,1,0,2,2,0,-29,0,-4.5,-1.8,-3 -"2560",2659,3,2,2,3,1,0,-29,0,-4.5,-1.8,-3 -"2561",2659,3,3,3,6,3,0,-29,0,-4.5,-1.8,-3 -"2562",2659,3,4,6,6.5,0.5,0,-29,0,-4.5,-1.8,-3 -"2563",2659,3,5,6.5,8,1.5,0,-29,0,-4.5,-1.8,-3 -"2564",2659,3,6,8,10,2,0,-29,0,-4.5,-1.8,-3 -"2565",2660,3,1,0,2,2,0,-1,0,-3.4,-1.9,6 -"2566",2660,3,2,2,3,1,0,-1,0,-3.4,-1.9,6 -"2567",2660,3,3,3,6,3,0,-1,0,-3.4,-1.9,6 -"2568",2660,3,4,6,6.5,0.5,0,-1,0,-3.4,-1.9,6 -"2569",2660,3,5,6.5,8,1.5,0,-1,0,-3.4,-1.9,6 -"2570",2660,3,6,8,10,2,0,-1,0,-3.4,-1.9,6 -"2571",2661,3,1,0,0.441227232,0.441227232,1,21,0,1.9,-2,11 -"2572",2662,3,1,0,2,2,0,-23,0,6.4,0.6,2 -"2573",2662,3,2,2,3,1,0,-23,0,6.4,0.6,2 -"2574",2662,3,3,3,5.450539025,2.450539025,0,-23,0,6.4,0.6,2 -"2575",2663,3,1,0,0.732095947,0.732095947,1,21,1,-3.4,-0.4,1 -"2576",2664,3,1,0,2,2,0,-9,0,2.7,-0.5,-8 -"2577",2664,3,2,2,3,1,0,-9,0,2.7,-0.5,-8 -"2578",2664,3,3,3,6,3,0,-9,0,2.7,-0.5,-8 -"2579",2664,3,4,6,6.5,0.5,0,-9,0,2.7,-0.5,-8 -"2580",2664,3,5,6.5,8,1.5,0,-9,0,2.7,-0.5,-8 -"2581",2664,3,6,8,10,2,0,-9,0,2.7,-0.5,-8 -"2582",2665,3,1,0,2,2,0,-10,1,-2.5,0.2,-4 -"2583",2665,3,2,2,3,1,0,-10,1,-2.5,0.2,-4 -"2584",2665,3,3,3,6,3,0,-10,1,-2.5,0.2,-4 -"2585",2665,3,4,6,6.002590663,0.002590663,0,-10,1,-2.5,0.2,-4 -"2586",2666,3,1,0,2,2,0,19,0,0.8,-1.2,-4 -"2587",2666,3,2,2,3,1,0,19,0,0.8,-1.2,-4 -"2588",2666,3,3,3,6,3,0,19,0,0.8,-1.2,-4 -"2589",2666,3,4,6,6.5,0.5,0,19,0,0.8,-1.2,-4 -"2590",2666,3,5,6.5,8,1.5,0,19,0,0.8,-1.2,-4 -"2591",2666,3,6,8,10,2,0,19,0,0.8,-1.2,-4 -"2592",2667,3,1,0,0.318663149,0.318663149,0,29,1,-2,0.7,1 -"2593",2668,3,1,0,1.023349721,1.023349721,1,1,0,-1.3,0.2,1 -"2594",2669,3,1,0,1.666163158,1.666163158,1,-4,0,1.4,0.3,4 -"2595",2670,3,1,0,0.191307173,0.191307173,1,-24,0,10.1,1.5,-1 -"2596",2671,3,1,0,0.109763573,0.109763573,0,6,1,2.1,-0.1,2 -"2597",2672,3,1,0,0.928004199,0.928004199,1,11,1,4.9,0.8,-7 -"2598",2673,3,1,0,0.426854388,0.426854388,1,9,1,0.7,1.2,-9 -"2599",2674,3,1,0,0.468187822,0.468187822,1,33,0,3.3,-0.1,0 -"2600",2675,3,1,0,2,2,0,4,0,-4.3,-1.4,-8 -"2601",2675,3,2,2,3,1,0,4,0,-4.3,-1.4,-8 -"2602",2675,3,3,3,6,3,0,4,0,-4.3,-1.4,-8 -"2603",2675,3,4,6,6.5,0.5,0,4,0,-4.3,-1.4,-8 -"2604",2675,3,5,6.5,8,1.5,0,4,0,-4.3,-1.4,-8 -"2605",2675,3,6,8,10,2,0,4,0,-4.3,-1.4,-8 -"2606",2676,3,1,0,2,2,0,-2,0,-4.4,-0.5,-3 -"2607",2676,3,2,2,3,1,0,-2,0,-4.4,-0.5,-3 -"2608",2676,3,3,3,6,3,0,-2,0,-4.4,-0.5,-3 -"2609",2676,3,4,6,6.5,0.5,0,-2,0,-4.4,-0.5,-3 -"2610",2676,3,5,6.5,8,1.5,0,-2,0,-4.4,-0.5,-3 -"2611",2676,3,6,8,10,2,0,-2,0,-4.4,-0.5,-3 -"2612",2677,3,1,0,0.075241894,0.075241894,1,25,1,-5.5,-1.7,-12 -"2613",2678,3,1,0,0.837097788,0.837097788,1,-13,0,1.4,0.1,-2 -"2614",2679,3,1,0,2,2,0,3,1,-5,1.3,-2 -"2615",2679,3,2,2,3,1,0,3,1,-5,1.3,-2 -"2616",2679,3,3,3,6,3,0,3,1,-5,1.3,-2 -"2617",2679,3,4,6,6.5,0.5,0,3,1,-5,1.3,-2 -"2618",2679,3,5,6.5,8,1.5,0,3,1,-5,1.3,-2 -"2619",2679,3,6,8,8.687476914,0.687476914,0,3,1,-5,1.3,-2 -"2620",2680,3,1,0,1.730688635,1.730688635,0,-8,0,11.8,-0.5,3 -"2621",2681,3,1,0,1.53064852,1.53064852,1,16,1,-6,-1.3,0 -"2622",2682,3,1,0,1.39946386,1.39946386,1,-14,0,-3,-0.2,9 -"2623",2683,3,1,0,0.338343236,0.338343236,0,-31,1,-5.5,1.3,-1 -"2624",2684,3,1,0,1.791172344,1.791172344,1,-18,0,-4.3,0.2,3 -"2625",2685,3,1,0,1.051093877,1.051093877,1,-1,0,6.2,-0.1,6 -"2626",2686,3,1,0,1.990588155,1.990588155,1,1,0,0.8,0.5,1 -"2627",2687,3,1,0,2,2,0,-6,0,-0.4,-1,-5 -"2628",2687,3,2,2,3,1,0,-6,0,-0.4,-1,-5 -"2629",2687,3,3,3,6,3,0,-6,0,-0.4,-1,-5 -"2630",2687,3,4,6,6.5,0.5,0,-6,0,-0.4,-1,-5 -"2631",2687,3,5,6.5,6.728267373,0.228267373,0,-6,0,-0.4,-1,-5 -"2632",2688,3,1,0,1.587123017,1.587123017,1,2,1,0.8,-0.7,-8 -"2633",2689,3,1,0,2,2,0,-23,1,-1.5,0.8,1 -"2634",2689,3,2,2,3,1,0,-23,1,-1.5,0.8,1 -"2635",2689,3,3,3,5.994875355,2.994875355,0,-23,1,-1.5,0.8,1 -"2636",2690,3,1,0,1.646491336,1.646491336,1,12,0,0.7,-0.3,7 -"2637",2691,3,1,0,0.811605261,0.811605261,1,12,1,-5.8,1.9,2 -"2638",2692,3,1,0,0.978960928,0.978960928,1,2,0,4.5,0,-5 -"2639",2693,3,1,0,0.535637575,0.535637575,1,-18,1,2.8,1.3,10 -"2640",2694,3,1,0,2,2,0,-10,0,3.7,0,3 -"2641",2694,3,2,2,3,1,0,-10,0,3.7,0,3 -"2642",2694,3,3,3,4.142969224,1.142969224,0,-10,0,3.7,0,3 -"2643",2695,3,1,0,2,2,0,-10,0,3.2,-0.5,0 -"2644",2695,3,2,2,3,1,0,-10,0,3.2,-0.5,0 -"2645",2695,3,3,3,6,3,0,-10,0,3.2,-0.5,0 -"2646",2695,3,4,6,6.5,0.5,0,-10,0,3.2,-0.5,0 -"2647",2695,3,5,6.5,8,1.5,0,-10,0,3.2,-0.5,0 -"2648",2695,3,6,8,10,2,0,-10,0,3.2,-0.5,0 -"2649",2696,3,1,0,2,2,0,5,1,-2.7,-1,1 -"2650",2696,3,2,2,3,1,0,5,1,-2.7,-1,1 -"2651",2696,3,3,3,5.909645675,2.909645675,0,5,1,-2.7,-1,1 -"2652",2697,3,1,0,2,2,0,10,0,-2.3,-1,0 -"2653",2697,3,2,2,2.470830494,0.470830494,0,10,0,-2.3,-1,0 -"2654",2698,3,1,0,0.28949542,0.28949542,0,-15,0,1.8,-1.1,-3 -"2655",2699,3,1,0,2,2,0,-23,0,-3.7,1.2,2 -"2656",2699,3,2,2,3,1,0,-23,0,-3.7,1.2,2 -"2657",2699,3,3,3,6,3,0,-23,0,-3.7,1.2,2 -"2658",2699,3,4,6,6.5,0.5,0,-23,0,-3.7,1.2,2 -"2659",2699,3,5,6.5,8,1.5,0,-23,0,-3.7,1.2,2 -"2660",2699,3,6,8,10,2,0,-23,0,-3.7,1.2,2 -"2661",2700,3,1,0,2,2,0,8,1,-1.3,-0.9,-1 -"2662",2700,3,2,2,3,1,0,8,1,-1.3,-0.9,-1 -"2663",2700,3,3,3,6,3,0,8,1,-1.3,-0.9,-1 -"2664",2700,3,4,6,6.5,0.5,0,8,1,-1.3,-0.9,-1 -"2665",2700,3,5,6.5,8,1.5,0,8,1,-1.3,-0.9,-1 -"2666",2700,3,6,8,9.4305124,1.4305124,0,8,1,-1.3,-0.9,-1 -"2667",2701,3,1,0,0.276445645,0.276445645,1,-10,0,1.4,2.3,7 -"2668",2702,3,1,0,0.539659162,0.539659162,1,17,1,3.4,1.2,3 -"2669",2703,3,1,0,2,2,0,5,1,5.6,-0.4,-6 -"2670",2703,3,2,2,3,1,0,5,1,5.6,-0.4,-6 -"2671",2703,3,3,3,6,3,0,5,1,5.6,-0.4,-6 -"2672",2703,3,4,6,6.5,0.5,0,5,1,5.6,-0.4,-6 -"2673",2703,3,5,6.5,8,1.5,0,5,1,5.6,-0.4,-6 -"2674",2703,3,6,8,10,2,0,5,1,5.6,-0.4,-6 -"2675",2704,3,1,0,0.830058124,0.830058124,1,-7,0,2.8,0.2,1 -"2676",2705,3,1,0,2,2,0,-18,1,3.8,-1.1,3 -"2677",2705,3,2,2,3,1,0,-18,1,3.8,-1.1,3 -"2678",2705,3,3,3,3.981301403,0.981301403,0,-18,1,3.8,-1.1,3 -"2679",2706,3,1,0,2,2,0,-9,0,2.4,0.2,-2 -"2680",2706,3,2,2,2.363675889,0.363675889,0,-9,0,2.4,0.2,-2 -"2681",2707,3,1,0,0.355286128,0.355286128,1,25,0,-4.2,1.4,-6 -"2682",2708,3,1,0,0.909153928,0.909153928,0,-8,0,-1.7,-1,10 -"2683",2709,3,1,0,2,2,0,17,1,0.8,-0.2,0 -"2684",2709,3,2,2,3,1,0,17,1,0.8,-0.2,0 -"2685",2709,3,3,3,3.903158958,0.903158958,0,17,1,0.8,-0.2,0 -"2686",2710,3,1,0,2,2,0,-9,0,0.5,-1.3,-3 -"2687",2710,3,2,2,2.380016416,0.380016416,0,-9,0,0.5,-1.3,-3 -"2688",2711,3,1,0,0.000878118,0.000878118,0,-3,1,-3.5,1.2,0 -"2689",2712,3,1,0,0.003670336,0.003670336,1,15,1,1.9,0,-1 diff --git a/tests/testthat/data_files/TESTING/DATASET1.csv b/tests/testthat/data_files/TESTING/DATASET1.csv deleted file mode 100644 index e268239c..00000000 --- a/tests/testthat/data_files/TESTING/DATASET1.csv +++ /dev/null @@ -1,72 +0,0 @@ -ID,CHARACTER,LOGICAL,NA_VALUES,NULL_VALUES,INTEGER,NON_NEGATIVE_INTEGER,POSITIVE_INTEGER,NEGATIVE_INTEGER,NUMERIC,NON_NEGATIVE_NUMERIC,POSITIVE_NUMERIC,NEGATIVE_NUMERIC,FACTOR_CHARACTER,FACTOR_INTEGER,IDENTIFIER,CATEGORY,NUMERIC_ONE_CHANGE,INTEGER_ONE_CHANGE -1,Zeus,TRUE,NA,,9341,4202,657,-3179,2923.7581974153,5379.24614667274,6514.15395085488,-6897.91286267618,married,0,1,100,2923.7581974153,9341 -2,Hera,FALSE,NA,,-1252,6290,7038,-4954,-3897.11975526751,808.499985192554,8587.92722912802,-6900.23380584103,divorced,1,1,200,-3897.11975526751,-1252 -3,Poseidon,TRUE,NA,,7203,3198,5321,-2568,521.0969282585,6583.46271746688,6981.21982893776,-244.635269169248,single,2,1,300,521.0969282585,7203 -4,Demeter,FALSE,NA,,-3761,2844,3407,-2012,-6060.820598129,0,7826.1807714341,-8152.32299139582,widowed,3,1,400,-6060.820598129,-3761 -5,Ares,TRUE,NA,,7712,8952,7576,-1080,497.351173655977,610.474878356973,1088.14027603084,-3309.0691424742,in_civil_relationship,0,1,500,497.351173655977,7712 -6,Athena,FALSE,NA,,-1225,4729,3641,-3586,-3728.14833339524,3106.95651277413,8152.57016935135,-3001.60793829306,married,1,1,600,-3728.14833339524,-1225 -7,Apollo,TRUE,NA,,3855,7330,6551,-5679,7505.31517692802,6325.64928658789,496.371137466699,-8839.33493314935,divorced,2,2,100,7505.31517692802,3855 -8,Artemis,FALSE,NA,,-9020,7185,4397,-7435,-8825.61007684142,9529.7676841366,141.456585280659,-3542.40732878919,single,3,2,200,-8825.61007684142,-9020 -9,Hephaestus,TRUE,NA,,106,266,5231,-6361,7804.25699831023,7411.5760881749,7333.30666957932,-5040.47849023947,widowed,0,2,300,7804.25699831023,106 -10,Aphrodite,FALSE,NA,,-6038,7304,7099,-9468,-4714.47103432362,9736.99896768678,2480.42540146726,-9077.99959010686,in_civil_relationship,1,2,400,-4714.47103432362,-6038 -11,Hermes,TRUE,NA,,9081,3217,1795,-483,9271.83091671044,2713.15446279447,8194.50650734961,-6674.99811877063,married,2,2,500,9271.83091671044,9081 -12,Dionysus,FALSE,NA,,-9308,7288,3385,-9750,-1650.68081307081,9832.01225697354,872.977498795182,-8713.8095286436,divorced,3,2,600,-1650.68081307081,-9308 -13,Hades,TRUE,NA,,6569,3022,2869,-4126,7347.74058129981,9608.7875818978,866.294001398101,-675.467333505162,single,0,3,100,7347.74058129981,6569 -14,Hypnos,FALSE,NA,,-4279,0,2303,-5247,-1080.31048279617,5745.24037217575,794.711761858492,-5447.68883309206,widowed,1,3,200,-1080.31048279617,-4279 -15,Nike,TRUE,NA,,7450,6790,6071,-1299,4754.00495717629,2166.65863682638,4617.80096077377,-5476.66148522311,in_civil_relationship,2,3,300,4754.00495717629,7450 -16,Janus,FALSE,NA,,-6669,934,9871,-6626,-8124.5787887829,7614.62989058166,9349.95738612513,-1015.19971142311,married,3,3,400,-8124.5787887829,-6669 -17,Nemesis,TRUE,NA,,9962,1624,1069,-1527,9109.75757701583,5612.23929835875,909.395703789748,-7608.49727043559,divorced,0,3,500,9109.75757701583,9962 -18,Iris,FALSE,NA,,-7714,7024,8777,-6727,-4250.56557673115,357.331422265683,3555.18503489267,-5648.77457334475,single,1,3,600,-4250.56557673115,-1637714 -19,Hectate,TRUE,NA,,7535,8510,9910,-1895,4660.40612581846,769.729270714389,1967.58576422653,-2765.74961965438,widowed,2,4,100,4660.40612581846,7535 -20,Apollo,FALSE,NA,,-7571,5384,9101,-4869,-7220.78027682354,2878.69014098638,4964.44490558932,-3941.29455121397,in_civil_relationship,3,4,200,-7220.78027682354,-7571 -21,Bacchus,TRUE,NA,,2197,3120,9470,-536,7390.13400861439,2843.86821827635,222.05763090482,-2754.2351431542,married,0,4,300,7390.13400861439,2197 -22,Caelus,FALSE,NA,,-9335,8020,3785,-4290,-1118.62599198607,5733.49567896176,5065.39458252694,-7619.44489900309,divorced,1,4,400,-1118.62599198607,-9335 -23,Ceres,TRUE,NA,,9446,2405,1394,-7889,941.85702474806,9693.09718783129,7734.52736648577,-5938.08724372999,single,2,4,500,941.85702474806,9446 -24,Cupid,FALSE,NA,,-6400,877,3196,-6704,-3800.45519408517,4131.17053322188,6980.88046914918,-8371.21788955736,widowed,3,4,600,-3800.45519408517,-6400 -25,Diana,TRUE,NA,,7529,6268,5635,-5965,6833.68530400861,9071.35395591943,3546.30051520787,-536.362694245823,in_civil_relationship,0,5,100,146833.685304009,7529 -26,Fortuna,FALSE,NA,,-3550,1081,6887,-7855,-8755.47638015194,3377.58234068136,1536.16694534896,-4710.05579543633,married,1,5,200,-8755.47638015194,-3550 -27,Janus,TRUE,NA,,9974,2301,7112,-3109,4487.28438776892,3038.95801813161,3797.62527167353,-8552.1740356377,divorced,2,5,300,4487.28438776892,9974 -28,Juno 22,FALSE,NA,,-314,6178,5910,-249,-5362.19077434909,1405.61506286243,4482.19970293754,-2528.67097979661,single,3,5,400,-5362.19077434909,-314 -29,Jupiter,TRUE,NA,,5384,405,9248,-7499,2952.23113168694,6771.02805066129,3670.29699692056,-7343.76271702155,widowed,0,5,500,2952.23113168694,5384 -30,Mars,FALSE,NA,,-3300,7359,792,-5365,-2720.75182939007,4981.12165140065,651.799169491499,-9745.16599101165,in_civil_relationship,1,5,600,-2720.75182939007,-3300 -31,Mercury,TRUE,NA,,4557,1123,6814,-6077,2780.33616354499,3493.59223110384,6124.31095404908,-2461.59485906329,married,2,6,100,2780.33616354499,4557 -32,Minerva,FALSE,NA,,-1162,4405,4729,-8635,-4429.89119268089,5231.15964155738,4089.58688884641,-8770.30434079525,divorced,3,6,200,-4429.89119268089,-1162 -33,Neptune,TRUE,NA,,9549,2904,3132,-2551,2266.82510293152,1066.00585749681,6872.00047523009,-6275.36922603526,single,0,6,300,2266.82510293152,9549 -34,Nox,FALSE,NA,,-4983,2500,2499,-7472,-3363.09492558606,6841.72728056647,1466.33961811251,-9145.94374815553,widowed,1,6,400,-3363.09492558606,-4983 -35,Pluto,TRUE,NA,,3436,3922,5271,-693,1756.20558930092,1152.97355123071,770.183572805105,-3886.95693790091,in_civil_relationship,2,6,500,1756.20558930092,3436 -36,Proserpina,FALSE,NA,,-6805,5354,2451,-4507,-2472.38719039548,219.854137283077,5193.71426297105,-5978.27712377193,married,3,6,600,-2472.38719039548,-6805 -37,Satum,TRUE,NA,,6751,9505,6799,-3662,4872.9242593774,1824.91843797876,5771.88063366416,-2629.57425836242,divorced,0,7,100,4872.9242593774,6751 -38,Saturn,FALSE,NA,,-2782,9499,3627,-8213,-3722.89618492449,5349.95425104132,1371.78000689,-6363.15319706253,single,1,7,200,-3722.89618492449,-2782 -39,Sol Invictus,TRUE,NA,,5579,3234,8194,-9162,6474.55617408606,5966.98825257332,8200.33037699542,-7641.3775705154,widowed,2,7,300,6474.55617408606,5579 -40,Spes,FALSE,NA,,-5070,8693,8641,-3346,-5666.24695631297,4309.48609764578,397.105548015551,-1920.54263296413,in_civil_relationship,3,7,400,-5666.24695631297,-5070 -41,Terra,TRUE,NA,,5211,533,8860,-5207,684.546443765822,3023.83223859999,4965.99177272871,-7164.83895467754,married,0,7,500,684.546443765822,5211 -42,Venus,FALSE,NA,,-303,3848,3282,-2372,-5949.0511513502,6786.54189168,453.957730905231,-5095.05639103825,divorced,1,7,600,-5949.0511513502,-303 -43,Veritas,TRUE,NA,,6423,7166,2191,-7284,3684.59727282031,6539.61872674021,6013.0136384321,-1077.99494773626,single,2,8,100,3684.59727282031,6423 -44,Vesta 39,FALSE,NA,,-6532,1210,20,-8184,-7917.01181648066,6989.23953650492,2728.00572138031,-2987.20888704697,widowed,3,8,200,-7917.01181648066,-6532 -45,Vulcan,TRUE,NA,,1463,4045,6114,-7414,2098.56075764144,7858.80224379913,9174.85329553428,-2304.1352446285,in_civil_relationship,0,8,300,2098.56075764144,1463 -46,Axomamma,FALSE,NA,,-7049,6230,3437,-4793,-7642.9165620464,2640.86944786192,3962.56578117408,-6367.86534131495,married,1,8,400,-7642.9165620464,-7049 -47,Ka-Ata-Killa,TRUE,NA,,9878,8791,8424,-1380,1825.53053703588,8670.65236001845,339.717605153958,-3562.72303941992,divorced,2,8,500,1825.53053703588,9878 -48,Mamma Killa,FALSE,NA,,-3462,3794,7343,-7877,-3472.33351260357,1499.96794050188,6085.81074909787,-9287.90431494673,single,3,8,600,-3472.33351260357,-3462 -49,Mama Ocilo,TRUE,NA,,3157,6708,9842,-271,5555.3266056452,2897.2414473196,943.641576294812,-4664.22782983927,widowed,0,9,100,5555.3266056452,3157 -50,Mama Qucha,FALSE,NA,,-6803,519,3892,-7334,-4458.54413367197,8526.9780187924,4182.96644884041,-3956.97631394616,in_civil_relationship,1,9,200,-4458.54413367197,-6803 -51,Pachamama,TRUE,NA,,2206,2942,5424,-4238,6243.84498013809,3056.19863335145,5170.12678987648,-1755.76473576102,married,2,9,300,6243.84498013809,2206 -52,Age,FALSE,NA,,-5570,2641,449,-4194,-3158.19808819613,3172.09175149985,1980.99289233428,-41.9814224629338,divorced,3,9,400,-3158.19808819613,-5570 -53,Ayaba,TRUE,NA,,8514,9387,8592,-5242,6793.42501797997,8127.82794843758,1477.14628855811,-4631.40010625304,single,0,9,500,6793.42501797997,8514 -54,Da,FALSE,NA,,-8790,8635,4016,-8680,-9854.79840115859,617.256279937285,3909.1518639169,-2322.88141506477,widowed,1,9,600,-9854.79840115859,-8790 -55,Gdabu 50,TRUE,NA,,2364,3644,2169,-9257,474.282600207035,924.627310918651,2483.39870096412,-5646.78108550781,in_civil_relationship,2,10,100,474.282600207035,2364 -56,Sakpata,FALSE,NA,,-1565,1820,2698,-6007,-1467.30492280268,1692.41912645939,2636.83685268398,-1569.04425708398,married,3,10,200,-1467.30492280268,-1565 -57,Zinsu,TRUE,NA,,432,2601,4382,-427,265.391437934094,2481.48180215218,2268.11184853731,-3896.19944819443,divorced,0,10,300,265.391437934094,432 -58,Ogbunabali,FALSE,NA,,-3550,8750,9865,-4406,-1138.57101012021,779.935860860072,5417.88871842665,-9981.48965360276,single,1,10,400,-1138.57101012021,-3550 -59,Manuriki,TRUE,NA,,7151,5442,1168,-7010,5059.44749433256,8624.15533254076,9859.71743096745,-471.186363425424,widowed,2,10,500,5059.44749433256,7151 -60,Ulanji,FALSE,NA,,-8575,2497,1392,-1659,-5221.7332908332,9299.49343924924,8536.04507021335,-6350.80490013852,in_civil_relationship,3,10,600,-5221.7332908332,-8575 -61,Yhi,TRUE,NA,,2785,8999,3857,-8325,3667.42886654637,9279.44389830908,4025.288681424,-7972.97655961014,married,0,11,100,3667.42886654637,2785 -62,Guanyin,FALSE,NA,,-2007,5495,9076,-4137,-8986.84634583693,1187.30980037582,3231.51993402462,-3460.07480195096,divorced,1,11,200,-8986.84634583693,-2007 -63,Yan Wang,TRUE,NA,,2763,2675,9914,-4407,3635.26248430302,391.574144688054,9787.56631572562,-1351.21456015149,single,2,11,300,3635.26248430302,2763 -64,Nezha,FALSE,NA,,-5464,699,4254,-1160,-7153.42075830333,7973.05788962437,8844.28539420467,-7448.47720999379,widowed,3,11,400,-7153.42075830333,-5464 -65,Brahma,TRUE,NA,,8903,7770,6800,-1205,1653.1945180602,5514.19883385902,9818.98959187041,-1758.04073483251,in_civil_relationship,0,11,500,1653.1945180602,8903 -66,Shiva,FALSE,NA,,-7508,7565,8240,-8187,-9816.81301051242,5917.17079432954,128.414793115579,-8177.44303762046,married,1,11,600,-9816.81301051242,-7508 -67,Saraswati,TRUE,NA,,5080,4158,5332,-4720,1529.00180282924,6126.21082156067,3235.39588974023,-6510.49547277735,divorced,2,12,100,1529.00180282924,5080 -68,Lakshmi 63,FALSE,NA,,-6055,8447,8641,-5520,-5175.93038137528,4150.34105190449,7542.46377955142,-2505.44455398804,single,3,12,200,-5175.93038137528,-6055 -69,Yama,TRUE,NA,,7680,9919,5642,-9689,8823.81001912255,5538.63824748755,4363.40024240505,-255.164703509092,widowed,0,12,300,8823.81001912255,7680 -70,Palden Lhamo,FALSE,NA,,-7673,3639,8500,-4946,-3388.35552186682,6164.54069279923,8459.89826384528,-4385.44866297772,in_civil_relationship,1,12,400,-3388.35552186682,-7673 -71,Kubera,TRUE,NA,,7891,4139,1812,-4774,5407.15994060151,2970.74919762455,7378.79330831692,-355.611092002725,married,2,12,500,5407.15994060151,7891 diff --git a/tests/testthat/data_files/TESTING/DATASET1.rda b/tests/testthat/data_files/TESTING/DATASET1.rda deleted file mode 100644 index 5ded61f3..00000000 Binary files a/tests/testthat/data_files/TESTING/DATASET1.rda and /dev/null differ diff --git a/tests/testthat/data_files/TESTING/DATASET2.csv b/tests/testthat/data_files/TESTING/DATASET2.csv deleted file mode 100644 index bef44103..00000000 --- a/tests/testthat/data_files/TESTING/DATASET2.csv +++ /dev/null @@ -1,72 +0,0 @@ -ID,CHARACTER,LOGICAL,NA_VALUES,NULL_VALUES,INTEGER,NON_NEGATIVE_INTEGER,POSITIVE_INTEGER,NEGATIVE_INTEGER,NUMERIC,NON_NEGATIVE_NUMERIC,POSITIVE_NUMERIC,NEGATIVE_NUMERIC,FACTOR_CHARACTER,FACTOR_INTEGER,IDENTIFIER,CATEGORY,NUMERIC_ONE_CHANGE,INTEGER_ONE_CHANGE -1,Zeus,TRUE,NA,,5770,7819,8898,-898,3242.10849454101,2528.19785793179,5152.29281706489,-3016.53593526917,married,0,1000,100,3242.10849454101,5770 -2,Hera,FALSE,NA,,-774,2745,2538,-3441,-3357.14759717119,9910.05471623735,163.078138586903,-3402.22618843785,single,1,1000,200,-3357.14759717119,-774 -3,Poseidon,TRUE,NA,,3957,9007,313,-3032,8198.52155683268,2988.95325851122,3593.46288261425,-4087.7926188834,widowed,2,1000,300,8198.52155683268,3957 -4,Demeter,FALSE,NA,,-7915,3251,3959,-6716,-2628.31171190944,0,415.263720687645,-5139.22348604363,married,3,1000,400,-2628.31171190944,-7915 -5,Ares,TRUE,NA,,5741,4111,939,-2957,7762.56552395918,5982.87558815021,7071.76826595232,-3914.74563060221,single,4,1000,500,7762.56552395918,5741 -6,Athena,FALSE,NA,,-9080,5294,7934,-1996,-1891.42190971618,4334.31002082544,9367.76955209479,-139.248658174025,widowed,5,1000,600,-1891.42190971618,-9080 -7,Apollo,TRUE,NA,,3977,3967,4390,-6777,7144.12580882459,4893.25495075111,4368.69783433152,-4930.51786196733,married,6,2000,100,7144.12580882459,397700 -8,Artemis,FALSE,NA,,-3698,451,1920,-340,-1647.4888717262,8911.14054530842,46.5864091366317,-4412.05926158759,single,0,2000,200,-1647.4888717262,-3698 -9,Hephaestus,TRUE,NA,,4299,6330,2270,-9476,6663.14890615883,2243.39909269511,3615.99969077702,-6434.41495484717,widowed,1,2000,300,6663.14890615883,4299 -10,Aphrodite,FALSE,NA,,-1860,9554,3619,-8839,-501.08578715165,1430.4107742824,7535.8280441444,-6921.73405800455,married,2,2000,400,-501.08578715165,-1860 -11,Hermes,TRUE,NA,,6816,7246,3450,-5786,175.108455447885,1807.69004806068,226.219982565218,-1506.48860417778,single,3,2000,500,159817.999911,6816 -12,Dionysus,FALSE,NA,,-8894,1695,9632,-3585,-1765.91767965096,6675.85102062557,4136.08573754367,-5918.06999041245,widowed,4,2000,600,-1765.91767965096,-8894 -13,Hades,TRUE,NA,,94,8454,7080,-3465,7572.69594656377,4212.51012705537,2694.32232185012,-9049.91556466629,married,5,3000,100,7572.69594656377,94 -14,Hypnos,FALSE,NA,,-6410,0,8722,-220,-4124.47202397339,4217.5969199363,3315.08573069432,-6383.47834109802,single,6,3000,200,-4124.47202397339,-6410 -15,Nike,TRUE,NA,,9829,9472,9294,-2287,7558.90977361979,9981.30683408507,9075.55156260687,-9318.92065561448,widowed,0,3000,300,7558.90977361979,9829 -16,Janus,FALSE,NA,,-5962,4795,131,-6823,-381.750808859544,4700.15214687768,4619.65628782957,-3358.21637705972,married,1,3000,400,-381.750808859544,-5962 -17,Nemesis,TRUE,NA,,9201,1236,5173,-7121,3537.64492586427,447.770191793613,2098.28353780388,-3322.92085311594,single,2,3000,500,3537.64492586427,9201 -18,Iris,FALSE,NA,,-510,3158,9219,-6841,-6370.47268081471,9611.94878072043,6399.34606484641,-5833.6938592385,widowed,3,3000,600,-6370.47268081471,-510 -19,Hectate,TRUE,NA,,600,332,4858,-2957,4565.10037323376,7218.95215376405,8522.18154848552,-5682.70639746925,married,4,4000,100,4565.10037323376,600 -20,Apollo,FALSE,NA,,-488,7457,1742,-6151,-2443.19025477907,2876.37625418996,5167.67507340899,-9235.94648483698,single,5,4000,200,-2443.19025477907,-488 -21,Bacchus,TRUE,NA,,2617,5313,7655,-3820,4927.92338665788,9065.34352900715,2599.53503169028,-7672.45231424743,widowed,6,4000,300,4927.92338665788,2617 -22,Caelus,FALSE,NA,,-3827,2793,5159,-3278,-5598.82507339034,3672.02063951804,6867.71203477254,-6054.8995658965,married,0,4000,400,-5598.82507339034,-3827 -23,Ceres,TRUE,NA,,1675,6535,4490,-3312,6648.80841348662,1913.30134929969,5292.50485344002,-1328.34902959795,single,1,4000,500,6648.80841348662,1675 -24,Cupid,FALSE,NA,,-3773,9289,4727,-1750,-1931.64918287261,9138.03753206587,3626.54819872765,-1420.71237097631,widowed,2,4000,600,-1931.64918287261,-3773 -25,Diana,TRUE,NA,,9221,2106,2520,-2493,7761.22764719631,1654.76917998813,648.902365251343,-1522.63126080445,married,3,5000,100,7761.22764719631,9221 -26,Fortuna,FALSE,NA,,-7525,5242,9952,-8254,-1363.19245944799,8248.36979026779,5443.61687196163,-291.152001485511,single,4,5000,200,-1363.19245944799,-7525 -27,Janus,TRUE,NA,,7550,7384,1792,-7984,6240.54193905781,7557.87851973715,564.821040631642,-2500.96396590815,widowed,5,5000,300,6240.54193905781,7550 -28,Juno 22,FALSE,NA,,-8918,6970,171,-3981,-1850.93172776373,9395.32449933802,1480.68625235252,-1607.36084709595,married,6,5000,400,-1850.93172776373,-8918 -29,Jupiter,TRUE,NA,,7975,6753,7534,-4658,732.648568802777,3378.09421064423,1548.26072486443,-3412.10844553756,single,0,5000,500,732.648568802777,7975 -30,Mars,FALSE,NA,,-6307,5878,1588,-6675,-3918.19256935004,3473.65888741394,9888.90848436941,-7722.57622961916,widowed,1,5000,600,-3918.19256935004,-6307 -31,Mercury,TRUE,NA,,6859,5031,4991,-3917,2781.31889647447,5937.99445029518,4738.94794391848,-8117.47487078954,married,2,6000,100,2781.31889647447,6859 -32,Minerva,FALSE,NA,,-9613,9272,3594,-2953,-7472.41853677841,4525.43029618987,7931.92970272188,-6951.06630248758,single,3,6000,200,-7472.41853677841,-9613 -33,Neptune,TRUE,NA,,8127,1285,8956,-7672,4249.98936641473,8234.29222058127,6337.75283520736,-1448.89274112672,widowed,4,6000,300,4249.98936641473,8127 -34,Nox,FALSE,NA,,-3616,8768,9417,-8328,-6672.8789753734,4940.9129517145,4129.71953675289,-8856.55561500306,married,5,6000,400,-6672.8789753734,-3616 -35,Pluto,TRUE,NA,,5465,4399,5769,-5507,7984.06133145684,2720.34320793403,6813.87260325127,-6108.68876035979,single,6,6000,500,7984.06133145684,5465 -36,Proserpina,FALSE,NA,,-1951,209,4339,-1938,-6189.88811868173,8797.93904800366,2413.08975188955,-1241.45303752624,widowed,0,6000,600,-6189.88811868173,-1951 -37,Satum,TRUE,NA,,5053,527,6033,-4463,8285.57588110189,4685.44954751071,5152.75134825301,-8552.30824327361,married,1,7000,100,8285.57588110189,5053 -38,Saturn,FALSE,NA,,-7554,4806,8456,-1474,-9953.96838814163,6041.58891873116,6206.69019758379,-1789.65151556349,single,2,7000,200,-9953.96838814163,-7554 -39,Sol Invictus,TRUE,NA,,850,676,8668,-1470,4920.45058775056,4827.4903206341,3875.68107282892,-8430.58901734265,widowed,3,7000,300,4920.45058775056,850 -40,Spes,FALSE,NA,,-2943,1131,9789,-7291,-435.805462380003,6979.04450623085,1830.57196557997,-8653.863172583,married,4,7000,400,-435.805462380003,-2943 -41,Terra,TRUE,NA,,3432,1193,7829,-4129,4533.29758215679,4196.48636559542,1195.12901133639,-9691.38109438372,single,5,7000,500,4533.29758215679,3432 -42,Venus,FALSE,NA,,-6041,635,9572,-3087,-9258.24417176185,8585.81642528838,1724.66905600389,-5017.59797376632,widowed,6,7000,600,-9258.24417176185,-6041 -43,Veritas,TRUE,NA,,152,2176,989,-2951,3386.38245698924,1683.05858887486,7254.00071495472,-970.034254178204,married,0,8000,100,3386.38245698924,152 -44,Vesta 39,FALSE,NA,,-1435,281,144,-235,-1565.70237928387,8513.41139375439,3950.0095147072,-618.573957232356,single,1,8000,200,-1565.70237928387,-1435 -45,Vulcan,TRUE,NA,,8761,9763,164,-1729,7541.07904832461,9262.47125491237,2786.21169278503,-9762.8159810503,widowed,2,8000,300,7541.07904832461,8761 -46,Axomamma,FALSE,NA,,-7256,301,566,-8949,-3986.90080037578,9376.1709392314,4451.23029734412,-2166.55552582088,married,3,8000,400,-3986.90080037578,-7256 -47,Ka-Ata-Killa,TRUE,NA,,9979,6121,7469,-5691,9296.71172602761,9610.330465684,5001.62798706449,-4027.35514854566,single,4,8000,500,9296000.71172603,9979 -48,Mamma Killa,FALSE,NA,,-7975,362,3084,-1273,-6811.16971523228,6415.11444127133,5144.96525777703,-7041.10037613326,widowed,5,8000,600,-6811.16971523228,-7975 -49,Mama Ocilo,TRUE,NA,,7694,4825,6469,-1819,2749.94583455314,633.660655521237,8405.61613370769,-5978.09835596086,married,6,9000,100,2749.94583455314,7694 -50,Mama Qucha,FALSE,NA,,-339,6485,1125,-7099,-8910.29357021298,4879.21750260042,653.087252616187,-2006.24723046975,single,0,9000,200,-8910.29357021298,-339 -51,Pachamama,TRUE,NA,,7569,4735,4781,-9764,4093.45512357345,9303.18939595898,377.204104168366,-7939.51218611833,widowed,1,9000,300,4093.45512357345,7569 -52,Age,FALSE,NA,,-334,6701,8538,-7338,-2927.16462857792,7104.23552556101,38.7280812613392,-5166.35792497386,married,2,9000,400,-2927.16462857792,-334 -53,Ayaba,TRUE,NA,,8191,6365,9868,-8891,3394.63071796808,3141.8961759548,6600.75815210945,-6179.94629479866,single,3,9000,500,3394.63071796808,8191 -54,Da,FALSE,NA,,-111,5326,7960,-7448,-8415.87711867095,75.2567617905144,7158.84309410787,-3024.24590006265,widowed,4,9000,600,-8415.87711867095,-111 -55,Gdabu 50,TRUE,NA,,5585,70,4346,-6357,8593.37599107258,8867.02689325845,8763.07961702155,-2171.05119740219,married,5,10000,100,8593.37599107258,5585 -56,Sakpata,FALSE,NA,,-4641,9773,4347,-232,-5715.87075440497,1853.10957043005,6647.11970617801,-5703.0959810752,single,6,10000,200,-5715.87075440497,-4641 -57,Zinsu,TRUE,NA,,7493,7891,791,-5475,5435.11199728416,8317.95565269541,5511.66216099628,-1116.05389843764,widowed,0,10000,300,5435.11199728416,7493 -58,Ogbunabali,FALSE,NA,,-5883,4509,6457,-9154,-7114.98059643027,9364.70610652461,2929.42955263279,-4286.92547443714,married,1,10000,400,-7114.98059643027,-5883 -59,Manuriki,TRUE,NA,,948,4034,1432,-3021,9338.01601898936,8921.54948049019,6218.8434228547,-7268.98228770576,single,2,10000,500,9338.01601898936,948 -60,Ulanji,FALSE,NA,,-7157,8335,5560,-6092,-3383.89627429288,9241.65745412298,6195.62755186728,-5279.93218403688,widowed,3,10000,600,-3383.89627429288,-7157 -61,Yhi,TRUE,NA,,3520,4544,976,-875,6340.06613627594,7060.57596397321,2942.54424816154,-1009.96299905206,married,4,11000,100,6340.06613627594,3520 -62,Guanyin,FALSE,NA,,-1190,7269,1293,-6196,-7168.94312916565,4411.04783071714,597.685918932602,-6324.40111820468,single,5,11000,200,-7168.94312916565,-1190 -63,Yan Wang,TRUE,NA,,6105,3073,1629,-2912,1338.80350264167,1626.50238426452,6708.02659489522,-3437.21115973619,widowed,6,11000,300,1338.80350264167,6105 -64,Nezha,FALSE,NA,,-1015,8022,8343,-7685,-7087.70562344165,4309.18822867145,3972.27080489669,-862.661891082385,married,0,11000,400,-7087.70562344165,-1015 -65,Brahma,TRUE,NA,,6122,4005,4088,-5779,220.482267786728,6300.59149295385,6883.36446894002,-8498.30334832171,single,1,11000,500,220.482267786728,6122 -66,Shiva,FALSE,NA,,-9659,8092,7284,-3022,-5003.01947757354,8752.60427780466,3403.69583233583,-9936.61664362843,widowed,2,11000,600,-5003.01947757354,-9659 -67,Saraswati,TRUE,NA,,8286,7778,7090,-1648,445.213211580232,4361.84622611296,2752.55642108709,-6350.50301693439,married,3,12000,100,445.213211580232,8286 -68,Lakshmi 63,FALSE,NA,,-810,1169,8958,-4810,-2102.7414813039,2207.6412568451,2837.57152753607,-4275.96120934266,single,4,12000,200,-2102.7414813039,-810 -69,Yama,TRUE,NA,,7366,4817,6080,-9758,7880.37308798451,4966.28379350725,4431.39614623065,-3285.53913336939,widowed,5,12000,300,7880.37308798451,7366 -70,Palden Lhamo,FALSE,NA,,-8084,6708,8535,-1262,-2531.1637267828,2877.90050518677,7175.20469153029,-1444.55654505761,in_civil_relationship,6,12000,400,-2531.1637267828,-8084 -71,Kubera,TRUE,NA,,690,4103,7605,-6269,6452.63964678378,1588.29901801583,2115.20612344712,-2955.72599666073,married,0,12000,500,6452.63964678378,690 diff --git a/tests/testthat/data_files/TESTING/DATASET2.rda b/tests/testthat/data_files/TESTING/DATASET2.rda deleted file mode 100644 index dc6fa0af..00000000 Binary files a/tests/testthat/data_files/TESTING/DATASET2.rda and /dev/null differ diff --git a/tests/testthat/data_files/TESTING/DATASET3.csv b/tests/testthat/data_files/TESTING/DATASET3.csv deleted file mode 100644 index 8005df9e..00000000 --- a/tests/testthat/data_files/TESTING/DATASET3.csv +++ /dev/null @@ -1,72 +0,0 @@ -ID,CHARACTER,LOGICAL,NA_VALUES,NULL_VALUES,INTEGER,NON_NEGATIVE_INTEGER,POSITIVE_INTEGER,NEGATIVE_INTEGER,NUMERIC,NON_NEGATIVE_NUMERIC,POSITIVE_NUMERIC,NEGATIVE_NUMERIC,FACTOR_CHARACTER,FACTOR_INTEGER,IDENTIFIER,CATEGORY,NUMERIC_ONE_CHANGE,INTEGER_ONE_CHANGE -1,Zeus,TRUE,NA,,595,90,204,-122,0.079229481531037,0.469890995549979,0.312903834035662,-0.336501096928581,married,0,100000,100,0.079229481531037,595 -2,Hera,FALSE,NA,,-122,230,993,-382,-0.964344975099977,0.536212802423294,0.314479664709413,-0.390361052988102,single,1,100000,200,-0.964344975099977,-122 -3,Poseidon,TRUE,NA,,327,655,378,-260,0.675619456430392,0.614603735003967,0.417492856576252,-0.935431723742691,widowed,2,100000,300,0.675619456430392,327 -4,Demeter,FALSE,NA,,-932,915,19,-371,-0.645239168675432,0,0.217324351748489,-0.275950907538281,married,3,100000,400,-0.645239168675432,-932 -5,Ares,TRUE,NA,,802,582,99,-153,0.236096992139721,0.327113222678315,0.053181935298626,-0.731630582057141,single,0,100000,500,0.236096992139721,802 -6,Athena,FALSE,NA,,-967,84,68,-284,-0.520795992643395,0.551350317832736,0.271361842867557,-0.534408374098844,widowed,1,100000,600,-0.520795992643395,-967 -7,Apollo,TRUE,NA,,908,289,783,-285,0.272190929307478,0.774633190059473,0.365507010546333,-0.23602180105954,married,2,200000,100,0.272190929307478,908 -8,Artemis,FALSE,NA,,-109,806,251,-855,-0.787882611965009,0.322889616508841,0.731301794465078,-0.982219310851039,single,3,200000,200,-0.787882611965009,-109 -9,Hephaestus,TRUE,NA,,654,908,92,-182,0.468574627470494,0.876653050976106,0.923816841470861,-0.796467418731419,widowed,0,200000,300,0.468574627470494,654 -10,Aphrodite,FALSE,NA,,-768,149,398,-482,-0.934061231932803,0.851362015522112,0.918759530978967,-0.68064107730987,married,1,200000,400,-0.934061231932803,-768 -11,Hermes,TRUE,NA,,644,343,111,-998,0.378516079506038,0.01737708493645,0.43171792077031,-0.446443371123674,single,2,200000,500,0.378516079506038,644 -12,Dionysus,FALSE,NA,,-652,120,49,-240,-0.461140315522169,0.281337788868373,0.620465335956444,-0.059964713262229,widowed,3,200000,600,-0.461140315522169,-652 -13,Hades,TRUE,NA,,641,115,347,-163,0.044561095073096,0.672125536244503,0.674670628113467,-0.40426837385856,married,0,300000,100,0.044561095073096,641 -14,Hypnos,FALSE,NA,,-772,0,754,-356,-0.402434382595592,0.288977329689998,0.706755944757024,-0.01843857086065,single,1,300000,200,-0.402434382595592,-772 -15,Nike,TRUE,NA,,855,921,357,-68,0.056156631666752,0.56398052923849,0.087282253549681,-0.45165271087876,widowed,2,300000,300,0.056156631666752,855 -16,Janus,FALSE,NA,,-405,389,530,-102,-0.480853434095215,0.925535059448348,0.597291611112689,-0.806024997268561,married,3,300000,400,-0.480853434095215,-405 -17,Nemesis,TRUE,NA,,888,267,327,-467,0.162047196899005,0.055629777366657,0.383726903615876,-0.965247706220058,single,0,300000,500,0.162047196899005,888 -18,Iris,FALSE,NA,,-569,54,16,-262,-0.270747093058574,0.554048368026477,0.959279239306333,-0.969846133586029,widowed,1,300000,600,-0.270747093058574,-569 -19,Hectate,TRUE,NA,,850,500,590,-60,0.287377098046047,0.640683214300127,0.761314233728217,-0.350193016072743,married,2,400000,100,0.287377098046047,850 -20,Apollo,FALSE,NA,,-412,961,95,-979,-0.554807696889619,0.355926432391194,0.480229297615131,-0.867681611362756,single,3,400000,200,-0.554807696889619,-412 -21,Bacchus,TRUE,NA,,512,282,774,-3,0.86692063631455,0.281601134915587,0.129654595255025,-0.090872877346642,widowed,0,400000,300,0.86692063631455,512 -22,Caelus,FALSE,NA,,-570,577,712,-958,-0.666127458767024,0.758779329834277,0.502323399452286,-0.104437939436436,married,1,400000,400,-0.666127458767024,-570 -23,Ceres,TRUE,NA,,13,774,599,-207,0.000469482422138,0.993042544614426,0.928068873896998,-0.392277078569819,single,2,400000,500,0.000469482422138,13 -24,Cupid,FALSE,NA,,-923,847,517,-604,-0.276365817880409,0.718276560060725,0.218226445314955,-0.995343676100065,widowed,3,400000,600,-0.276365817880409,-923 -25,Diana,TRUE,NA,,983,996,968,-55,0.276978150143163,0.247365169801223,0.29018088206092,-0.942369255406959,married,0,500000,100,0.276978150143163,983 -26,Fortuna,FALSE,NA,,-9,570,634,-71,-0.000971660240668,0.348704046518758,0.992712888478319,-0.517899890239268,single,1,500000,200,-0.000971660240668,-9000 -27,Janus,TRUE,NA,,933,664,202,-24,0.367985085755137,0.202927214575184,0.164591207820625,-0.951689970204497,widowed,2,500000,300,0.367985085755137,933 -28,Juno 22,FALSE,NA,,-431,910,871,-523,-0.01482480655715,0.821815216651768,0.161048688851229,-0.943929990884345,married,3,500000,400,-0.01482480655715,-431 -29,Jupiter,TRUE,NA,,386,400,825,-981,0.262635673595367,0.95010724032778,0.995920744836117,-0.293754598989078,single,0,500000,500,0.262635673595367,386 -30,Mars,FALSE,NA,,-112,28,221,-135,-0.464805917254762,0.25318785389422,0.155595079608478,-0.213849349361011,widowed,1,500000,600,-0.464805917254762,-112 -31,Mercury,TRUE,NA,,250,918,76,-38,0.094760696942301,0.522019620517588,0.026996171892455,-0.043738359928774,married,2,600000,100,0.094760696942301,250 -32,Minerva,FALSE,NA,,-862,378,978,-843,-0.984420942984529,0.666477751953883,0.762902262408895,-0.142623410699999,single,3,600000,200,-0.984420942984529,-862 -33,Neptune,TRUE,NA,,870,841,46,-145,0.886335986458128,0.265759949058327,0.601407512895032,-0.957249210100959,widowed,0,600000,300,0.886335986458128,870 -34,Nox,FALSE,NA,,-261,958,438,-633,-0.005570933432557,0.202421288063883,0.328591706946434,-0.074917206260697,married,1,600000,400,-0.005570933432557,-261 -35,Pluto,TRUE,NA,,436,175,56,-683,0.224570090258945,0.923873268929709,0.778918178437707,-0.394085852770851,single,2,600000,500,0.224570090258945,436 -36,Proserpina,FALSE,NA,,-953,268,845,-373,-0.142037878777,0.988455291641231,0.885753200869624,-0.014107120130703,widowed,3,600000,600,-0.142037878777,-953 -37,Satum,TRUE,NA,,575,857,679,-676,0.383243754741485,0.745440581554438,0.56204712244891,-0.295494890802851,married,0,700000,100,0.383243754741485,575 -38,Saturn,FALSE,NA,,-40,632,976,-450,-0.134283104266522,0.367537281555403,0.353661864158937,-0.718264205846925,single,1,700000,200,-0.134283104266522,-40 -39,Sol Invictus,TRUE,NA,,838,310,917,-946,0.149007752095179,0.160441516303343,0.893170721249487,-0.59625694987627,widowed,2,700000,300,0.149007752095179,838 -40,Spes,FALSE,NA,,-231,482,49,-746,-0.884469278035196,0.31479228219786,0.495285761320407,-0.838877158290129,married,3,700000,400,-0.884469278035196,-231 -41,Terra,TRUE,NA,,385,354,37,-984,0.737713167818569,0.951429328837218,0.545238136869873,-0.53712056449199,single,0,700000,500,0.737713167818569,385 -42,Venus,FALSE,NA,,-382,817,980,-206,-0.012768543499169,0.732217461258936,0.761994688046361,-0.983062179168021,widowed,1,700000,600,-0.012768543499169,-382 -43,Veritas,TRUE,NA,,279,83,550,-756,0.411518853578181,0.411493612543134,0.131965736958641,-0.464610925587829,married,2,800000,100,0.411518853578181,279 -44,Vesta 39,FALSE,NA,,-633,892,980,-624,-0.927354700697421,0.94723035210743,0.022089355989496,-0.369478181717281,single,3,800000,200,-0.927354700697421,-633 -45,Vulcan,TRUE,NA,,456,309,604,-105,0.691022380381802,0.756504908395048,0.304484144821221,-0.044621497356483,widowed,0,800000,300,0.691022380381802,456 -46,Axomamma,FALSE,NA,,-287,330,444,-942,-0.726299290536237,0.366183619782515,0.265077899743293,-0.090645580061794,married,1,800000,400,-0.726299290536237,-287 -47,Ka-Ata-Killa,TRUE,NA,,689,530,504,-754,0.314176215358657,0.02325734047252,0.750971183423902,-0.788309608498159,single,2,800000,500,0.314176215358657,689 -48,Mamma Killa,FALSE,NA,,-417,879,816,-836,-0.562581548510842,0.287700729893372,0.57702874200217,-0.395546018206061,widowed,3,800000,600,-0.562581548510842,-417 -49,Mama Ocilo,TRUE,NA,,849,385,834,-698,0.579712833654217,0.30216287338192,0.741046770686949,-0.638483022551377,married,0,900000,100,0.579712833654217,849 -50,Mama Qucha,FALSE,NA,,-95,367,204,-483,-0.423402903150992,0.597236136312362,0.244972767670274,-0.149509121966388,single,1,900000,200,-0.423402903150992,-95 -51,Pachamama,TRUE,NA,,3,347,315,-724,0.848304857827542,0.080753878491055,0.606459989776621,-0.624071055395825,widowed,2,900000,300,0.848304857827542,3 -52,Age,FALSE,NA,,-172,964,748,-715,-0.793136369601657,0.220276295991525,0.574931821090286,-0.456583214504743,married,3,900000,400,-0.793136369601657,-172 -53,Ayaba,TRUE,NA,,444,579,403,-570,0.471914544253698,0.084027585251283,0.364904863232439,-0.103306748367551,single,0,900000,500,0.471914544253698,444 -54,Da,FALSE,NA,,-964,492,114,-47,-0.332650825807495,0.081446266132746,0.856630761451398,-0.404901314855353,widowed,1,900000,600,-0.332650825807495,-964 -55,Gdabu 50,TRUE,NA,,113,710,496,-753,0.451465413879302,0.144142213708773,0.591629694202867,-0.687889757448555,married,2,1000000,100,0.451465413879302,113 -56,Sakpata,FALSE,NA,,-683,766,305,-826,-0.668600719132877,0.484837575421333,0.739294702736481,-0.546900769897523,single,3,1000000,200,-0.668600719132877,-683 -57,Zinsu,TRUE,NA,,156,537,215,-303,0.678565990045402,0.34400216675513,0.451490008322117,-0.828101714648333,widowed,0,1000000,300,0.678565990045402,156 -58,Ogbunabali,FALSE,NA,,-243,624,873,-611,-0.210021010604306,0.926094060781843,0.495915153972551,-0.416114786035424,married,1,1000000,400,-0.210021010604306,-243 -59,Manuriki,TRUE,NA,,9,479,823,-482,0.596877898522929,0.913363367342386,0.120182280011647,-0.003984477466625,single,2,1000000,500,0.596877898522929,9 -60,Ulanji,FALSE,NA,,-877,769,967,-667,-0.851575761921716,0.303813338863807,0.254630250530688,-0.500860387013151,widowed,3,1000000,600,-0.851575761921716,-877 -61,Yhi,TRUE,NA,,773,523,80,-262,0.377043882489243,0.411115066659539,0.907619973383511,-0.847254782804808,married,0,1100000,100,0.377043882489243,773 -62,Guanyin,FALSE,NA,,-860,966,268,-610,-0.907863535874257,0.935334990687891,0.860206203403251,-0.005979028866383,single,1,1100000,200,-0.907863535874257,-860 -63,Yan Wang,TRUE,NA,,408,75,83,-674,0.489975860308767,0.9722609168799,0.241588643168584,-0.902121589278908,widowed,2,1100000,300,0.489975860308767,408 -64,Nezha,FALSE,NA,,-857,27,100,-712,-0.897049591561854,0.33076253656877,0.307521629913848,-0.411781808242896,married,3,1100000,400,-0.897049591561854,-857 -65,Brahma,TRUE,NA,,249,865,531,-421,0.662188614773304,0.146025453647601,0.218494064309573,-0.004674475394063,single,0,1100000,500,0.662188614773304,249 -66,Shiva,FALSE,NA,,-538,108,875,-83,-0.181018319454835,0.575488034368112,0.562665125479592,-0.692906843439913,widowed,1,1100000,600,-0.181018319454835,-538 -67,Saraswati,TRUE,NA,,110,591,821,-664,0.292952306600165,0.985805337606502,0.776387570493916,-0.193936468220075,married,2,1200000,100,0.292952306600165,110 -68,Lakshmi 63,FALSE,NA,,-688,31,364,-708,-0.715086134998936,0.116471273163276,0.224975645356135,-0.846746829449796,single,3,1200000,200,-0.715086134998936,-688 -69,Yama,TRUE,NA,,358,438,824,-800,0.340377600647695,0.23159906490749,0.485508877305351,-0.165150345519854,widowed,0,1200000,300,0.340377600647695,358 -70,Palden Lhamo,FALSE,NA,,-824,846,753,-145,-0.516259101732065,0.980092121619635,0.604074089807657,-0.122342098428751,married,1,1200000,400,-0.516259101732065,-824 -71,Kubera,TRUE,NA,,274,525,123,-383,0.499157390526031,0.985258780914081,0.60351374586107,-0.434558632845779,single,2,1200000,500,2357.49915739053,274 diff --git a/tests/testthat/data_files/TESTING/DATASET3.rda b/tests/testthat/data_files/TESTING/DATASET3.rda deleted file mode 100644 index 431944ce..00000000 Binary files a/tests/testthat/data_files/TESTING/DATASET3.rda and /dev/null differ diff --git a/tests/testthat/data_files/dataBootstrapUnitTests.R b/tests/testthat/data_files/dataBootstrapUnitTests.R deleted file mode 100644 index 4c51af16..00000000 --- a/tests/testthat/data_files/dataBootstrapUnitTests.R +++ /dev/null @@ -1,117 +0,0 @@ -library(remotes) -install.packages("MolgenisArmadillo", repos = "https://registry.molgenis.org/repository/R") -library(MolgenisArmadillo) -library(DSI) - -# init_studies_dataset -CNSIM1 <- load("data_files/CNSIM/CNSIM1.rda") -CNSIM2 <- load("data_files/CNSIM/CNSIM2.rda") -CNSIM3 <- load("data_files/CNSIM/CNSIM3.rda") - -DASIM1 <- load("data_files/DASIM/DASIM1.rda") -DASIM2 <- load("data_files/DASIM/DASIM2.rda") -DASIM3 <- load("data_files/DASIM/DASIM3.rda") - -EXPAND_WITH_MISSING1 <- load("data_files/SURVIVAL/EXPAND_MISSING/expand_missing_study1.rda") -EXPAND_WITH_MISSING2 <- load("data_files/SURVIVAL/EXPAND_MISSING/expand_missing_study2.rda") -EXPAND_WITH_MISSING3 <- load("data_files/SURVIVAL/EXPAND_MISSING/expand_missing_study3.rda") - -CLUSTER_INT1 <- load("data_files/CLUSTER/CLUSTER_INT1.rda") -CLUSTER_INT2 <- load("data_files/CLUSTER/CLUSTER_INT2.rda") -CLUSTER_INT3 <- load("data_files/CLUSTER/CLUSTER_INT3.rda") - -CLUSTER_SLO1 <- load("data_files/CLUSTER/CLUSTER_SLO1.rda") -CLUSTER_SLO2 <- load("data_files/CLUSTER/CLUSTER_SLO2.rda") -CLUSTER_SLO3 <- load("data_files/CLUSTER/CLUSTER_SLO3.rda") - -# init_discordant_datasets -DISCORDANT_STUDY1 <- load("data_files/DISCORDANT/discordant_study1.rda") -DISCORDANT_STUDY2 <- load("data_files/DISCORDANT/discordant_study2.rda") -DISCORDANT_STUDY3 <- load("data_files/DISCORDANT/discordant_study3.rda") - -# init_testing_datasets -DATASET1 <- load("data_files/TESTING/DATASET1.rda") -DATASET2 <- load("data_files/TESTING/DATASET2.rda") -DATASET3 <- load("data_files/TESTING/DATASET3.rda") - -FACTOR_LEVELS_DATASET1 <- load("data_files/FACTOR_LEVELS/FACTOR_LEVELS_DATASET1.rda") -FACTOR_LEVELS_DATASET2 <- load("data_files/FACTOR_LEVELS/FACTOR_LEVELS_DATASET2.rda") -FACTOR_LEVELS_DATASET3 <- load("data_files/FACTOR_LEVELS/FACTOR_LEVELS_DATASET3.rda") - - -storage_url <- "http://localhost:9000" -# access_key and secret_key can be found in the minio configuration in the docker-compose.yml -MolgenisArmadillo::armadillo.set_credentials(server = storage_url, access_key = "molgenis", secret_key = "molgenis") -MolgenisArmadillo::armadillo.create_project("testdata") - - -# init_studies_datasets -MolgenisArmadillo::armadillo.upload_table("testdata", "cnsim", CNSIM1) -MolgenisArmadillo::armadillo.upload_table("testdata", "cnsim", CNSIM2) -MolgenisArmadillo::armadillo.upload_table("testdata", "cnsim", CNSIM3) - -MolgenisArmadillo::armadillo.upload_table("testdata", "dasim", DASIM1) -MolgenisArmadillo::armadillo.upload_table("testdata", "dasim", DASIM2) -MolgenisArmadillo::armadillo.upload_table("testdata", "dasim", DASIM3) - -MolgenisArmadillo::armadillo.upload_table("testdata", "survival", EXPAND_WITH_MISSING1) -MolgenisArmadillo::armadillo.upload_table("testdata", "survival", EXPAND_WITH_MISSING2) -MolgenisArmadillo::armadillo.upload_table("testdata", "survival", EXPAND_WITH_MISSING3) - -MolgenisArmadillo::armadillo.upload_table("testdata", "cluster", CLUSTER_INT1) -MolgenisArmadillo::armadillo.upload_table("testdata", "cluster", CLUSTER_INT2) -MolgenisArmadillo::armadillo.upload_table("testdata", "cluster", CLUSTER_INT3) - -MolgenisArmadillo::armadillo.upload_table("testdata", "cluster", CLUSTER_SLO1) -MolgenisArmadillo::armadillo.upload_table("testdata", "cluster", CLUSTER_SLO2) -MolgenisArmadillo::armadillo.upload_table("testdata", "cluster", CLUSTER_SLO3) - - -# init_discordant_datasets -MolgenisArmadillo::armadillo.upload_table("testdata", "discordant", DISCORDANT_STUDY1) -MolgenisArmadillo::armadillo.upload_table("testdata", "discordant", DISCORDANT_STUDY2) -MolgenisArmadillo::armadillo.upload_table("testdata", "discordant", DISCORDANT_STUDY3) - - -# remove first column -DATASET1 <- DATASET1[,-1] -DATASET2 <- DATASET2[,-1] -DATASET3 <- DATASET3[,-1] - -# init_testing_datasets -MolgenisArmadillo::armadillo.upload_table("testdata", "testing", DATASET1) -MolgenisArmadillo::armadillo.upload_table("testdata", "testing", DATASET2) -MolgenisArmadillo::armadillo.upload_table("testdata", "testing", DATASET3) - -MolgenisArmadillo::armadillo.upload_table("testdata", "factor_levels", FACTOR_LEVELS_DATASET1) -MolgenisArmadillo::armadillo.upload_table("testdata", "factor_levels", FACTOR_LEVELS_DATASET2) -MolgenisArmadillo::armadillo.upload_table("testdata", "factor_levels", FACTOR_LEVELS_DATASET3) - -class(CNSIM1$PM_BMI_CATEGORICAL) -levels(CNSIM1$PM_BMI_CATEGORICAL) - -devtools::test() -devtools::test(filter = "datachk", invert = TRUE) -devtools::test(filter = "dataFrameSort") - - # build the login dataframe -builder <- DSI::newDSLoginBuilder() -builder$append(server = "armadillo", - url = armadillo_url, - user = "admin", - password = "admin", - table = "testdata/testing/DISCORDANT_STUDY1", - driver = "ArmadilloDriver") - -# create loginframe -logindata <- builder$build() -logindata - -datashield.logout(conns) - -conns <- datashield.login(logins = logindata, assign = TRUE) -ds.ls() -dsGetInfo(conns$armadillo) -ds.colnames("D") -datashield.errors() -dsGetInfo(conns$armadillo) diff --git a/tests/testthat/data_files/molgenis_armadillo-upload_testing_datasets.R b/tests/testthat/data_files/molgenis_armadillo-upload_testing_datasets.R index 042b4bcc..6acf471f 100644 --- a/tests/testthat/data_files/molgenis_armadillo-upload_testing_datasets.R +++ b/tests/testthat/data_files/molgenis_armadillo-upload_testing_datasets.R @@ -16,56 +16,12 @@ MolgenisArmadillo::armadillo.login_basic(armadillo = 'http://127.0.0.1:8080', us if (! 'datashield' %in% MolgenisArmadillo::armadillo.list_projects()) MolgenisArmadillo::armadillo.create_project('datashield') -upload_testing_dataset_table('datashield', 'anthro', 'anthro1', 'ANTHRO/anthro1.rda') -upload_testing_dataset_table('datashield', 'anthro', 'anthro2', 'ANTHRO/anthro2.rda') -upload_testing_dataset_table('datashield', 'anthro', 'anthro3', 'ANTHRO/anthro3.rda') - -upload_testing_dataset_table('datashield', 'cluster', 'CLUSTER_INT1', 'CLUSTER/CLUSTER_INT1.rda') -upload_testing_dataset_table('datashield', 'cluster', 'CLUSTER_INT2', 'CLUSTER/CLUSTER_INT2.rda') -upload_testing_dataset_table('datashield', 'cluster', 'CLUSTER_INT3', 'CLUSTER/CLUSTER_INT3.rda') - -upload_testing_dataset_table('datashield', 'cluster', 'CLUSTER_SLO1', 'CLUSTER/CLUSTER_SLO1.rda') -upload_testing_dataset_table('datashield', 'cluster', 'CLUSTER_SLO2', 'CLUSTER/CLUSTER_SLO2.rda') -upload_testing_dataset_table('datashield', 'cluster', 'CLUSTER_SLO3', 'CLUSTER/CLUSTER_SLO3.rda') - upload_testing_dataset_table('datashield', 'cnsim', 'CNSIM1', 'CNSIM/CNSIM1.rda') upload_testing_dataset_table('datashield', 'cnsim', 'CNSIM2', 'CNSIM/CNSIM2.rda') upload_testing_dataset_table('datashield', 'cnsim', 'CNSIM3', 'CNSIM/CNSIM3.rda') -upload_testing_dataset_table('datashield', 'dasim', 'DASIM1', 'DASIM/DASIM3.rda') -upload_testing_dataset_table('datashield', 'dasim', 'DASIM2', 'DASIM/DASIM1.rda') -upload_testing_dataset_table('datashield', 'dasim', 'DASIM3', 'DASIM/DASIM2.rda') - -upload_testing_dataset_table('datashield', 'discordant', 'DISCORDANT_STUDY1', 'DISCORDANT/DISCORDANT_STUDY1.rda') -upload_testing_dataset_table('datashield', 'discordant', 'DISCORDANT_STUDY2', 'DISCORDANT/DISCORDANT_STUDY2.rda') -upload_testing_dataset_table('datashield', 'discordant', 'DISCORDANT_STUDY3', 'DISCORDANT/DISCORDANT_STUDY3.rda') - -upload_testing_dataset_table('datashield', 'factor_levels', 'FACTOR_LEVELS1', 'FACTOR_LEVELS/FACTOR_LEVELS1.rda') -upload_testing_dataset_table('datashield', 'factor_levels', 'FACTOR_LEVELS2', 'FACTOR_LEVELS/FACTOR_LEVELS2.rda') -upload_testing_dataset_table('datashield', 'factor_levels', 'FACTOR_LEVELS3', 'FACTOR_LEVELS/FACTOR_LEVELS3.rda') - -upload_testing_dataset_table('datashield', 'gamlss', 'gamlss1', 'GAMLSS/gamlss1.rda') -upload_testing_dataset_table('datashield', 'gamlss', 'gamlss2', 'GAMLSS/gamlss2.rda') -upload_testing_dataset_table('datashield', 'gamlss', 'gamlss3', 'GAMLSS/gamlss3.rda') - -upload_testing_dataset_table('datashield', 'survival', 'COLLAPSE_WITH_MISSING1', 'SURVIVAL/COLLAPSE_MISSING/COLLAPSE_WITH_MISSING1.rda') -upload_testing_dataset_table('datashield', 'survival', 'COLLAPSE_WITH_MISSING2', 'SURVIVAL/COLLAPSE_MISSING/COLLAPSE_WITH_MISSING2.rda') -upload_testing_dataset_table('datashield', 'survival', 'COLLAPSE_WITH_MISSING3', 'SURVIVAL/COLLAPSE_MISSING/COLLAPSE_WITH_MISSING3.rda') - -upload_testing_dataset_table('datashield', 'survival', 'COLLAPSE_NO_MISSING1', 'SURVIVAL/COLLAPSE_NO_MISSING/COLLAPSE_NO_MISSING1.rda') -upload_testing_dataset_table('datashield', 'survival', 'COLLAPSE_NO_MISSING2', 'SURVIVAL/COLLAPSE_NO_MISSING/COLLAPSE_NO_MISSING2.rda') -upload_testing_dataset_table('datashield', 'survival', 'COLLAPSE_NO_MISSING3', 'SURVIVAL/COLLAPSE_NO_MISSING/COLLAPSE_NO_MISSING3.rda') - -upload_testing_dataset_table('datashield', 'survival', 'EXPAND_WITH_MISSING1', 'SURVIVAL/EXPAND_MISSING/EXPAND_WITH_MISSING1.rda') -upload_testing_dataset_table('datashield', 'survival', 'EXPAND_WITH_MISSING2', 'SURVIVAL/EXPAND_MISSING/EXPAND_WITH_MISSING2.rda') -upload_testing_dataset_table('datashield', 'survival', 'EXPAND_WITH_MISSING3', 'SURVIVAL/EXPAND_MISSING/EXPAND_WITH_MISSING3.rda') - -upload_testing_dataset_table('datashield', 'survival', 'EXPAND_NO_MISSING1', 'SURVIVAL/EXPAND_NO_MISSING/EXPAND_NO_MISSING1.rda') -upload_testing_dataset_table('datashield', 'survival', 'EXPAND_NO_MISSING2', 'SURVIVAL/EXPAND_NO_MISSING/EXPAND_NO_MISSING2.rda') -upload_testing_dataset_table('datashield', 'survival', 'EXPAND_NO_MISSING3', 'SURVIVAL/EXPAND_NO_MISSING/EXPAND_NO_MISSING3.rda') - -upload_testing_dataset_table('datashield', 'testing', 'DATASET1', 'TESTING/DATASET1.rda') -upload_testing_dataset_table('datashield', 'testing', 'DATASET2', 'TESTING/DATASET2.rda') -upload_testing_dataset_table('datashield', 'testing', 'DATASET3', 'TESTING/DATASET3.rda') +upload_testing_dataset_table('datashield', 'dasim', 'DASIM1', 'DASIM/DASIM1.rda') +upload_testing_dataset_table('datashield', 'dasim', 'DASIM2', 'DASIM/DASIM2.rda') +upload_testing_dataset_table('datashield', 'dasim', 'DASIM3', 'DASIM/DASIM3.rda') print(MolgenisArmadillo::armadillo.list_tables('datashield')) diff --git a/tests/testthat/data_files/obiba_opal-upload_testing_datasets.R b/tests/testthat/data_files/obiba_opal-upload_testing_datasets.R index ae79d2e6..cb314a48 100644 --- a/tests/testthat/data_files/obiba_opal-upload_testing_datasets.R +++ b/tests/testthat/data_files/obiba_opal-upload_testing_datasets.R @@ -20,56 +20,12 @@ upload_testing_dataset_table <- function(opal, project_name, table_name, local_f # opal <- opal.login('administrator','datashield_test&', url='https://192.168.56.100:8443/', opts = list(ssl_verifyhost=0, ssl_verifypeer=0)) opal <- opal.login('administrator','datashield_test&', url='https://localhost:8443/', opts = list(ssl_verifyhost=0, ssl_verifypeer=0)) -upload_testing_dataset_table(opal, 'ANTHRO', 'anthro1', 'ANTHRO/anthro1.rda') -upload_testing_dataset_table(opal, 'ANTHRO', 'anthro2', 'ANTHRO/anthro2.rda') -upload_testing_dataset_table(opal, 'ANTHRO', 'anthro3', 'ANTHRO/anthro3.rda') - -upload_testing_dataset_table(opal, 'CLUSTER', 'CLUSTER_INT1', 'CLUSTER/CLUSTER_INT1.rda') -upload_testing_dataset_table(opal, 'CLUSTER', 'CLUSTER_INT2', 'CLUSTER/CLUSTER_INT2.rda') -upload_testing_dataset_table(opal, 'CLUSTER', 'CLUSTER_INT3', 'CLUSTER/CLUSTER_INT3.rda') - -upload_testing_dataset_table(opal, 'CLUSTER', 'CLUSTER_SLO1', 'CLUSTER/CLUSTER_SLO1.rda') -upload_testing_dataset_table(opal, 'CLUSTER', 'CLUSTER_SLO2', 'CLUSTER/CLUSTER_SLO2.rda') -upload_testing_dataset_table(opal, 'CLUSTER', 'CLUSTER_SLO3', 'CLUSTER/CLUSTER_SLO3.rda') - -upload_testing_dataset_table(opal, 'CNSIM', 'CNSIM1', 'CNSIM/CNSIM1.rda') -upload_testing_dataset_table(opal, 'CNSIM', 'CNSIM2', 'CNSIM/CNSIM2.rda') -upload_testing_dataset_table(opal, 'CNSIM', 'CNSIM3', 'CNSIM/CNSIM3.rda') - upload_testing_dataset_table(opal, 'DASIM', 'DASIM1', 'DASIM/DASIM1.rda') upload_testing_dataset_table(opal, 'DASIM', 'DASIM2', 'DASIM/DASIM2.rda') upload_testing_dataset_table(opal, 'DASIM', 'DASIM3', 'DASIM/DASIM3.rda') -upload_testing_dataset_table(opal, 'DISCORDANT', 'DISCORDANT_STUDY1', 'DISCORDANT/DISCORDANT_STUDY1.rda') -upload_testing_dataset_table(opal, 'DISCORDANT', 'DISCORDANT_STUDY2', 'DISCORDANT/DISCORDANT_STUDY2.rda') -upload_testing_dataset_table(opal, 'DISCORDANT', 'DISCORDANT_STUDY3', 'DISCORDANT/DISCORDANT_STUDY3.rda') - -upload_testing_dataset_table(opal, 'FACTOR_LEVELS', 'FACTOR_LEVELS1', 'FACTOR_LEVELS/FACTOR_LEVELS1.rda') -upload_testing_dataset_table(opal, 'FACTOR_LEVELS', 'FACTOR_LEVELS2', 'FACTOR_LEVELS/FACTOR_LEVELS2.rda') -upload_testing_dataset_table(opal, 'FACTOR_LEVELS', 'FACTOR_LEVELS3', 'FACTOR_LEVELS/FACTOR_LEVELS3.rda') - -upload_testing_dataset_table(opal, 'GAMLSS', 'gamlss1', 'GAMLSS/gamlss1.rda') -upload_testing_dataset_table(opal, 'GAMLSS', 'gamlss2', 'GAMLSS/gamlss2.rda') -upload_testing_dataset_table(opal, 'GAMLSS', 'gamlss3', 'GAMLSS/gamlss3.rda') - -upload_testing_dataset_table(opal, 'SURVIVAL', 'COLLAPSE_WITH_MISSING1', 'SURVIVAL/COLLAPSE_MISSING/COLLAPSE_WITH_MISSING1.rda') -upload_testing_dataset_table(opal, 'SURVIVAL', 'COLLAPSE_WITH_MISSING2', 'SURVIVAL/COLLAPSE_MISSING/COLLAPSE_WITH_MISSING2.rda') -upload_testing_dataset_table(opal, 'SURVIVAL', 'COLLAPSE_WITH_MISSING3', 'SURVIVAL/COLLAPSE_MISSING/COLLAPSE_WITH_MISSING3.rda') - -upload_testing_dataset_table(opal, 'SURVIVAL', 'COLLAPSE_NO_MISSING1', 'SURVIVAL/COLLAPSE_NO_MISSING/COLLAPSE_NO_MISSING1.rda') -upload_testing_dataset_table(opal, 'SURVIVAL', 'COLLAPSE_NO_MISSING2', 'SURVIVAL/COLLAPSE_NO_MISSING/COLLAPSE_NO_MISSING2.rda') -upload_testing_dataset_table(opal, 'SURVIVAL', 'COLLAPSE_NO_MISSING3', 'SURVIVAL/COLLAPSE_NO_MISSING/COLLAPSE_NO_MISSING3.rda') - -upload_testing_dataset_table(opal, 'SURVIVAL', 'EXPAND_WITH_MISSING1', 'SURVIVAL/EXPAND_MISSING/EXPAND_WITH_MISSING1.rda') -upload_testing_dataset_table(opal, 'SURVIVAL', 'EXPAND_WITH_MISSING2', 'SURVIVAL/EXPAND_MISSING/EXPAND_WITH_MISSING2.rda') -upload_testing_dataset_table(opal, 'SURVIVAL', 'EXPAND_WITH_MISSING3', 'SURVIVAL/EXPAND_MISSING/EXPAND_WITH_MISSING3.rda') - -upload_testing_dataset_table(opal, 'SURVIVAL', 'EXPAND_NO_MISSING1', 'SURVIVAL/EXPAND_NO_MISSING/EXPAND_NO_MISSING1.rda') -upload_testing_dataset_table(opal, 'SURVIVAL', 'EXPAND_NO_MISSING2', 'SURVIVAL/EXPAND_NO_MISSING/EXPAND_NO_MISSING2.rda') -upload_testing_dataset_table(opal, 'SURVIVAL', 'EXPAND_NO_MISSING3', 'SURVIVAL/EXPAND_NO_MISSING/EXPAND_NO_MISSING3.rda') - -upload_testing_dataset_table(opal, 'TESTING', 'DATASET1', 'TESTING/DATASET1.rda') -upload_testing_dataset_table(opal, 'TESTING', 'DATASET2', 'TESTING/DATASET2.rda') -upload_testing_dataset_table(opal, 'TESTING', 'DATASET3', 'TESTING/DATASET3.rda') +upload_testing_dataset_table(opal, 'DASIM', 'DASIM1', 'DASIM/DASIM1.rda') +upload_testing_dataset_table(opal, 'DASIM', 'DASIM2', 'DASIM/DASIM2.rda') +upload_testing_dataset_table(opal, 'DASIM', 'DASIM3', 'DASIM/DASIM3.rda') opal.logout(opal) diff --git a/tests/testthat/perf_files/azure-pipeline.csv b/tests/testthat/perf_files/azure-pipeline.csv new file mode 100644 index 00000000..77f556bc --- /dev/null +++ b/tests/testthat/perf_files/azure-pipeline.csv @@ -0,0 +1,5 @@ +"refer_name","rate","lower_tolerance","upper_tolerance" +"meanDS::perf::numeric::0","2998.9844","0.5","2" +"meanDS::perf::numberAndNA::0","3027.3963","0.5","2" +"varDS::perf::numeric::0","3124.4088","0.5","2" +"varDS::perf::numberAndNA::0","3146.532","0.5","2" diff --git a/tests/testthat/perf_files/circleci.csv b/tests/testthat/perf_files/circleci.csv new file mode 100644 index 00000000..0a032864 --- /dev/null +++ b/tests/testthat/perf_files/circleci.csv @@ -0,0 +1,5 @@ +"refer_name","rate","lower_tolerance","upper_tolerance" +"meanDS::perf::numeric::0","20817.883","0.5","2" +"meanDS::perf::numberAndNA::0","20944.331","0.5","2" +"varDS::perf::numeric::0","22773.844","0.5","2" +"varDS::perf::numberAndNA::0","22742.877","0.5","2" diff --git a/tests/testthat/perf_files/cran_check.cvs b/tests/testthat/perf_files/cran_check.cvs new file mode 100644 index 00000000..59b38ebf --- /dev/null +++ b/tests/testthat/perf_files/cran_check.cvs @@ -0,0 +1,5 @@ +"refer_name","rate","lower_tolerance","upper_tolerance" +"meanDS::perf::numeric::0","10761.0000","0.5","2" +"meanDS::perf::numberAndNA::0","10190.0000","0.5","2" +"varDS::perf::numeric::0","11530.0000","0.5","2" +"varDS::perf::numberAndNA::0","11469.0000","0.5","2" diff --git a/tests/testthat/perf_files/default_perf_profile.csv b/tests/testthat/perf_files/default_perf_profile.csv new file mode 100644 index 00000000..77f556bc --- /dev/null +++ b/tests/testthat/perf_files/default_perf_profile.csv @@ -0,0 +1,5 @@ +"refer_name","rate","lower_tolerance","upper_tolerance" +"meanDS::perf::numeric::0","2998.9844","0.5","2" +"meanDS::perf::numberAndNA::0","3027.3963","0.5","2" +"varDS::perf::numeric::0","3124.4088","0.5","2" +"varDS::perf::numberAndNA::0","3146.532","0.5","2" diff --git a/tests/testthat/perf_files/hp-laptop_quay.csv b/tests/testthat/perf_files/hp-laptop_quay.csv new file mode 100644 index 00000000..487b248f --- /dev/null +++ b/tests/testthat/perf_files/hp-laptop_quay.csv @@ -0,0 +1,5 @@ +"refer_name","rate","lower_tolerance","upper_tolerance" +"meanDS::perf::numeric::0","8874.24924669612","0.5","2" +"meanDS::perf::numberAndNA::0","8946.22935183172","0.5","2" +"varDS::perf::numeric::0","10029.1022487173","0.5","2" +"varDS::perf::numberAndNA::0","10014.7789085673","0.5","2" diff --git a/tests/testthat/perf_tests/perf_rate.R b/tests/testthat/perf_tests/perf_rate.R new file mode 100644 index 00000000..1884cda8 --- /dev/null +++ b/tests/testthat/perf_tests/perf_rate.R @@ -0,0 +1,50 @@ +#------------------------------------------------------------------------------- +# Copyright (c) 2024 Arjuna Technologies, Newcastle upon Tyne. All rights reserved. +# +# This program and the accompanying materials +# are made available under the terms of the GNU Public License v3.0. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +#------------------------------------------------------------------------------- + +.perf.reference.filename <- 'perf_files/default_perf_profile.csv' + +.perf.reference <- NULL + +.load.pref <- function() { + .perf.reference <<- read.csv(.perf.reference.filename, header = TRUE, sep = ",") +} + +perf.reference.save <- function(perf.ref.name, rate, tolerance.lower, tolerance.upper) { + if (is.null(.perf.reference)) + load.pref() + + .perf.reference[nrow(.perf.reference)+1,] <- c(perf.ref.name, rate, tolerance.lower, tolerance.upper) + + write.csv(.perf.reference, .perf.reference.filename, row.names = FALSE) + + .perf.reference <<- .perf.reference +} + +perf.reference.rate <- function(perf.ref.name) { + if (is.null(.perf.reference)) + .load.pref() + + return(as.numeric(.perf.reference[which(.perf.reference$refer_name == perf.ref.name),]$rate)) +} + +perf.reference.tolerance.lower <- function(perf.ref.name) { + if (is.null(.perf.reference)) + .load.pref() + + return(as.numeric(.perf.reference[which(.perf.reference$refer_name == perf.ref.name),]$lower_tolerance)) +} + +perf.reference.tolerance.upper <- function(perf.ref.name) { + if (is.null(.perf.reference)) + .load.pref() + + return(as.numeric(.perf.reference[which(.perf.reference$refer_name == perf.ref.name),]$upper_tolerance)) +} + diff --git a/tests/testthat/setup.R b/tests/testthat/setup.R index e5294218..e7a0549e 100644 --- a/tests/testthat/setup.R +++ b/tests/testthat/setup.R @@ -20,4 +20,6 @@ library(lme4) source("disclosure/set_disclosure_settings.R") source("random/set_random_seed_settings.R") +source("perf_tests/perf_rate.R") + context("setup - done") diff --git a/tests/testthat/test-perf-meanDS.R b/tests/testthat/test-perf-meanDS.R index cb99b50e..794e61b2 100644 --- a/tests/testthat/test-perf-meanDS.R +++ b/tests/testthat/test-perf-meanDS.R @@ -12,6 +12,10 @@ # Set up # +# avoid performance tests on CRAN and GitHub Actions +testthat::skip_on_cran() +testthat::skip_on_ci() + context("meanDS::perf::setup") set.standard.disclosure.settings() @@ -22,6 +26,8 @@ set.standard.disclosure.settings() context("meanDS::perf::numeric") test_that("numeric meanDS - performance", { + skip_on_cran() + input <- c(0.0, 1.0, 2.0, 3.0, 4.0) .durationSec <- 30 # seconds @@ -35,13 +41,28 @@ test_that("numeric meanDS - performance", { .count <- .count + 1 .current.time <- Sys.time() } - expect_true(TRUE) - print(paste("meanDS::perf::number::0:", format(.count / (difftime(.current.time, .start.time, units = "secs")[[1]]), digits = 8))) + .current.rate <- .count / (difftime(.current.time, .start.time, units = "secs")[[1]]) + .reference.rate <- perf.reference.rate("meanDS::perf::numeric::0") + if (any(length(.reference.rate) == 0) || any(is.null(.reference.rate))) { + print(paste("meanDS::perf::numeric::0 ", .current.rate, 0.5, 2.0)) + perf.reference.save("meanDS::perf::numeric::0", .current.rate, 0.5, 2.0) + } else { + print(paste("meanDS::perf::numeric::0 ", format(.current.rate, digits = 8), ", ", format(100.0 * .current.rate / .reference.rate, digits = 4), "%", sep = '')) + } + + .reference.rate <- perf.reference.rate("meanDS::perf::numeric::0") + .reference.tolerance.lower <- perf.reference.tolerance.lower("meanDS::perf::numeric::0") + .reference.tolerance.upper <- perf.reference.tolerance.upper("meanDS::perf::numeric::0") + + expect_gt(.current.rate, .reference.rate * .reference.tolerance.lower, label = "Observed rate", expected.label = "lower threshold on rate") + expect_lt(.current.rate, .reference.rate * .reference.tolerance.upper, label = "Observed rate", expected.label = "upper threshold on rate") }) context("meanDS::perf::numeric with NA") test_that("numeric meanDS, with NA - performance", { + skip_on_cran() + input <- c(0.0, NA, 2.0, NA, 4.0) .durationSec <- 30 # seconds @@ -55,9 +76,22 @@ test_that("numeric meanDS, with NA - performance", { .count <- .count + 1 .current.time <- Sys.time() } - expect_true(TRUE) - print(paste("meanDS::perf::numberAndNA::0:", format(.count / (difftime(.current.time, .start.time, units = "secs")[[1]]), digits = 8))) + .current.rate <- .count / (difftime(.current.time, .start.time, units = "secs")[[1]]) + .reference.rate <- perf.reference.rate("meanDS::perf::numberAndNA::0") + if (any(length(.reference.rate) == 0) || any(is.null(.reference.rate))) { + print(paste("meanDS::perf::numberAndNA::0 ", .current.rate, 0.5, 2.0)) + perf.reference.save("meanDS::perf::numberAndNA::0", .current.rate, 0.5, 2.0) + } else { + print(paste("meanDS::perf::numberAndNA::0 ", format(.current.rate, digits = 8), ", ", format(100.0 * .current.rate / .reference.rate, digits = 4), "%", sep = '')) + } + + .reference.rate <- perf.reference.rate("meanDS::perf::numberAndNA::0") + .reference.tolerance.lower <- perf.reference.tolerance.lower("meanDS::perf::numberAndNA::0") + .reference.tolerance.upper <- perf.reference.tolerance.upper("meanDS::perf::numberAndNA::0") + + expect_gt(.current.rate, .reference.rate * .reference.tolerance.lower, label = "Observed rate", expected.label = "lower threshold on rate") + expect_lt(.current.rate, .reference.rate * .reference.tolerance.upper, label = "Observed rate", expected.label = "upper threshold on rate") }) # diff --git a/tests/testthat/test-perf-varDS.R b/tests/testthat/test-perf-varDS.R index 05ca7594..d468c5da 100644 --- a/tests/testthat/test-perf-varDS.R +++ b/tests/testthat/test-perf-varDS.R @@ -12,6 +12,10 @@ # Set up # +# avoid performance tests on CRAN and GitHub Actions +testthat::skip_on_cran() +testthat::skip_on_ci() + context("varDS::perf::setup") set.standard.disclosure.settings() @@ -22,6 +26,8 @@ set.standard.disclosure.settings() context("varDS::perf::numeric") test_that("numeric varDS - performance", { + skip_on_cran() + input <- c(0.0, 1.0, 2.0, 3.0, 4.0) .durationSec <- 30 # seconds @@ -35,13 +41,28 @@ test_that("numeric varDS - performance", { .count <- .count + 1 .current.time <- Sys.time() } - expect_true(TRUE) - print(paste("varDS::perf::number::0:", format(.count / (difftime(.current.time, .start.time, units = "secs")[[1]]), digits = 8))) + .current.rate <- .count / (difftime(.current.time, .start.time, units = "secs")[[1]]) + .reference.rate <- perf.reference.rate("varDS::perf::numeric::0") + if (any(length(.reference.rate) == 0) || any(is.null(.reference.rate))) { + print(paste("varDS::perf::numeric::0 ", .current.rate, 0.5, 2.0)) + perf.reference.save("varDS::perf::numeric::0", .current.rate, 0.5, 2.0) + } else { + print(paste("varDS::perf::numeric::0 ", format(.current.rate, digits = 8), ", ", format(100.0 * .current.rate / .reference.rate, digits = 4), "%", sep = '')) + } + + .reference.rate <- perf.reference.rate("varDS::perf::numeric::0") + .reference.tolerance.lower <- perf.reference.tolerance.lower("varDS::perf::numeric::0") + .reference.tolerance.upper <- perf.reference.tolerance.upper("varDS::perf::numeric::0") + + expect_gt(.current.rate, .reference.rate * .reference.tolerance.lower, label = "Observed rate", expected.label = "lower threshold on rate") + expect_lt(.current.rate, .reference.rate * .reference.tolerance.upper, label = "Observed rate", expected.label = "upper threshold on rate") }) context("varDS::perf::numeric with NA") test_that("numeric varDS, with NA - performance", { + skip_on_cran() + input <- c(0.0, NA, 2.0, NA, 4.0) .durationSec <- 30 # seconds @@ -55,9 +76,22 @@ test_that("numeric varDS, with NA - performance", { .count <- .count + 1 .current.time <- Sys.time() } - expect_true(TRUE) - print(paste("varDS::perf::numberAndNA::0:", format(.count / (difftime(.current.time, .start.time, units = "secs")[[1]]), digits = 8))) + .current.rate <- .count / (difftime(.current.time, .start.time, units = "secs")[[1]]) + .reference.rate <- perf.reference.rate("varDS::perf::numberAndNA::0") + if (any(length(.reference.rate) == 0) || any(is.null(.reference.rate))) { + print(paste("varDS::perf::numberAndNA::0 ", .current.rate, 0.5, 2.0)) + perf.reference.save("varDS::perf::numberAndNA::0", .current.rate, 0.5, 2.0) + } else { + print(paste("varDS::perf::numberAndNA::0 ", format(.current.rate, digits = 8), ", ", format(100.0 * .current.rate / .reference.rate, digits = 4), "%", sep = '')) + } + + .reference.rate <- perf.reference.rate("varDS::perf::numberAndNA::0") + .reference.tolerance.lower <- perf.reference.tolerance.lower("varDS::perf::numberAndNA::0") + .reference.tolerance.upper <- perf.reference.tolerance.upper("varDS::perf::numberAndNA::0") + + expect_gt(.current.rate, .reference.rate * .reference.tolerance.lower, label = "Observed rate", expected.label = "lower threshold on rate") + expect_lt(.current.rate, .reference.rate * .reference.tolerance.upper, label = "Observed rate", expected.label = "upper threshold on rate") }) # diff --git a/tests/testthat/test-smk-bp_standardsDS.R b/tests/testthat/test-smk-bp_standardsDS.R new file mode 100644 index 00000000..906dd34f --- /dev/null +++ b/tests/testthat/test-smk-bp_standardsDS.R @@ -0,0 +1,84 @@ +#------------------------------------------------------------------------------- +# Copyright (c) 2019-2022 University of Newcastle upon Tyne. All rights reserved. +# +# This program and the accompanying materials +# are made available under the terms of the GNU Public License v3.0. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +#------------------------------------------------------------------------------- + +# +# Set up +# + +context("bp_standardsDS::smk::setup") + +# +# Tests +# + +context("bp_standardsDS::smk::systolic") +test_that("systolic bp_standardsDS", { + + sex <- c(2, 2, 2, 2, 2, 1, 2, 1, 2, 1) + age <- c(5.26, 7.73, 4.59, 9.81, 7.99, 9.24, 3.93, 9.86, 4.44, 5.42) + height <- c(113.57, 92.30, 50.28, 134.84, 123.12, 76.94, 148.17, 68.92, 65.75, 120.99) + bp <- c(118.54, 87.62, 72.13, 91.18, 88.47, 73.28, 100.27, 86.84, 103.51, 115.28) + systolic <- TRUE + + res <- bp_standardsDS(sex=sex, age=age, height=height, bp=bp, systolic=systolic) + + expect_equal(class(res), "list") + expect_length(res, 2) + expect_equal(class(res[[1]]), "numeric") + expect_equal(class(res[[2]]), "numeric") + + res.names <- names(res) + + expect_equal(class(res.names), "character") + expect_length(res.names, 2) + expect_equal(res.names[1], 'Zbp') + expect_equal(res.names[2], 'perc') + + expect_equal(round(res$Zbp, digits=2), c(2.23, -0.60, -15.57, -0.93, -0.78, -14.74, NaN, -24.74, -0.34, 1.42)) + expect_equal(round(res$perc, digits=2), c(98.72, 27.46, 0.00, 17.51, 21.79, 0.00, NaN, 0.00, 36.77, 92.19)) + +}) + +context("bp_standardsDS::smk::diastolic") +test_that("diastolic bp_standardsDS", { + + sex <- c(2, 2, 2, 2, 2, 1, 2, 1, 2, 1) + age <- c(5.26, 7.73, 4.59, 9.81, 7.99, 9.24, 3.93, 9.86, 4.44, 5.42) + height <- c(113.57, 92.30, 50.28, 134.84, 123.12, 76.94, 148.17, 68.92, 65.75, 120.99) + bp <- c(118.54, 87.62, 72.13, 91.18, 88.47, 73.28, 100.27, 86.84, 103.51, 115.28) + systolic <- FALSE + + res <- bp_standardsDS(sex=sex, age=age, height=height, bp=bp, systolic=systolic) + + expect_equal(class(res), "list") + expect_length(res, 2) + expect_equal(class(res[[1]]), "numeric") + expect_equal(class(res[[2]]), "numeric") + + res.names <- names(res) + + expect_equal(class(res.names), "character") + expect_length(res.names, 2) + expect_equal(res.names[1], 'Zbp') + expect_equal(res.names[2], 'perc') + + expect_equal(round(res$Zbp, digits=2), c(5.72, 1.85, -10.00, 2.85, 2.81, -11.07, NaN, -20.13, 1.51, 5.03)) + expect_equal(round(res$perc, digits=2), c(100.00, 96.79, 0.00, 99.78, 99.75, 0.00, NaN, 0.00, 93.39, 100.00)) + +}) + + +# +# Done +# + +context("bp_standardsDS::smk::shutdown") + +context("bp_standardsDS::smk::done") diff --git a/tests/testthat/test-smk-dataFrameSubsetDS1.R b/tests/testthat/test-smk-dataFrameSubsetDS1.R new file mode 100644 index 00000000..93dbca26 --- /dev/null +++ b/tests/testthat/test-smk-dataFrameSubsetDS1.R @@ -0,0 +1,82 @@ +#------------------------------------------------------------------------------- +# Copyright (c) 2019-2022 University of Newcastle upon Tyne. All rights reserved. +# +# This program and the accompanying materials +# are made available under the terms of the GNU Public License v3.0. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +#------------------------------------------------------------------------------- + +# +# Set up +# + +context("gamlssDS::smk::setup") + +set.standard.disclosure.settings() + + +# +# Tests +# + +context("dataFrameSubsetDS1::smk::test1") +test_that("test1 dataFrameSubsetDS1", { + + D <- as.data.frame(matrix(NA, nrow=20, ncol=3)) + colnames(D) <- c('integer','numeric','binary') + D$integer <- c(4100, 4158, 4110, 2900, 3580, 3780, 4220, 4210, 2460, 3510, + 2800, 3730, 3300, 3310, 2390, 3480, 3040, 3050, 3500, 3420) + D$numeric <- c(41.00, 41.00, 39.00, 38.86, 40.57, 41.00, 40.71, 41.43, 36.00, 39.00, + 37.57, 40.00, 40.29, 40.71, 37.00, 40.00, 41.57, 36.29, 39.29, 40.00) + D$binary <- c(1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,1,2,1,2) + Boolean.operator.n <- 1 + keep.NAs <- FALSE + + res <- dataFrameSubsetDS1(df.name="D", V1.name="D$binary", V2.name="2", + Boolean.operator.n=Boolean.operator.n, keep.NAs = keep.NAs) + + expect_equal(class(res), "character") + expect_equal(res, "Subsetting undertaken without problems") + +}) + +context("dataFrameSubsetDS1::smk::test2") +test_that("test2 dataFrameSubsetDS1", { + + D <- as.data.frame(matrix(NA, nrow=20, ncol=3)) + colnames(D) <- c('integer','numeric','binary') + D$integer <- c(4100, 4158, 4110, 2900, 3580, 3780, 4220, 4210, 2460, 3510, + 2800, 3730, 3300, 3310, 2390, 3480, 3040, 3050, 3500, 3420) + D$numeric <- c(41.00, 41.00, 39.00, 38.86, 40.57, 41.00, 40.71, 41.43, 36.00, 39.00, + 37.57, 40.00, 40.29, 40.71, 37.00, 40.00, 41.57, 36.29, 39.29, 40.00) + D$binary <- c(1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,1,2,1,2) + Boolean.operator.n <- 3 + keep.NAs <- FALSE + + res <- dataFrameSubsetDS1(df.name="D", V1.name="D$numeric", V2.name="41.10", + Boolean.operator.n=Boolean.operator.n, keep.NAs = keep.NAs) + + expect_equal(class(res), "list") + expect_length(res, 10) + expect_equal(res[[1]], "Warning: DataSHIELD monitors every session for potentially disclosive analytic requests.") + expect_equal(res[[2]], "The analysis you just submitted has generated a subset in which the number of elements") + expect_equal(res[[3]], "differs - but only very slightly so - from the original data frame. This is most likely to be") + expect_equal(res[[4]], "an innocent consequence of your subsetting needs. However, it could in theory be one step") + expect_equal(res[[5]], "in a difference-based attack aimed at identifying individuals. This analytic request has") + expect_equal(res[[6]], "therefore been highlighted in the session log file. Please be reassured, if you do not try") + expect_equal(res[[7]], "to identify individuals this will cause you no difficulty. However, if you do plan a ") + expect_equal(res[[8]], "malicious attempt to identify individuals by differencing, this will become obvious in the") + expect_equal(res[[9]], "session log and you will be sanctioned. Possible consequences include loss of future access") + expect_equal(res[[10]], "to DataSHIELD and/or legal penalties.") + +}) + +# +# Done +# + +context("dataFrameSubsetDS1::smk::shutdown") + +context("dataFrameSubsetDS1::smk::done") diff --git a/tests/testthat/test-smk-dataFrameSubsetDS2.R b/tests/testthat/test-smk-dataFrameSubsetDS2.R new file mode 100644 index 00000000..619da16c --- /dev/null +++ b/tests/testthat/test-smk-dataFrameSubsetDS2.R @@ -0,0 +1,79 @@ +#------------------------------------------------------------------------------- +# Copyright (c) 2019-2022 University of Newcastle upon Tyne. All rights reserved. +# +# This program and the accompanying materials +# are made available under the terms of the GNU Public License v3.0. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +#------------------------------------------------------------------------------- + +# +# Set up +# + +context("gamlssDS::smk::setup") + +set.standard.disclosure.settings() + + +# +# Tests +# + +context("dataFrameSubsetDS2::smk::test1") +test_that("test1 dataFrameSubsetDS2", { + + D <- as.data.frame(matrix(NA, nrow=20, ncol=3)) + colnames(D) <- c('integer','numeric','binary') + D$integer <- c(4100, 4158, 4110, 2900, 3580, 3780, 4220, 4210, 2460, 3510, + 2800, 3730, 3300, 3310, 2390, 3480, 3040, 3050, 3500, 3420) + D$numeric <- c(41.00, 41.00, 39.00, 38.86, 40.57, 41.00, 40.71, 41.43, 36.00, 39.00, + 37.57, 40.00, 40.29, 40.71, 37.00, 40.00, 41.57, 36.29, 39.29, 40.00) + D$binary <- c(1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,1,2,1,2) + Boolean.operator.n <- 1 + keep.NAs <- FALSE + + res <- dataFrameSubsetDS2(df.name="D", V1.name="D$binary", V2.name="2", + Boolean.operator.n=Boolean.operator.n, keep.NAs = keep.NAs) + + expect_equal(class(res), "data.frame") + expect_equal(nrow(res), 9) + expect_equal(ncol(res), 3) + expect_equal(colnames(res), c("integer", "numeric", "binary")) + expect_equal(res$integer, c(4210, 2460, 3510, 2800, 3730, 2390, 3480, 3050, 3420)) + expect_equal(res$numeric, c(41.43, 36.00, 39.00, 37.57, 40.00, 37.00, 40.00, 36.29, 40.00)) + expect_equal(res$binary, c(2, 2, 2, 2, 2, 2, 2, 2, 2)) + +}) + +context("dataFrameSubsetDS2::smk::test2") +test_that("test2 dataFrameSubsetDS2", { + + D <- as.data.frame(matrix(NA, nrow=20, ncol=3)) + colnames(D) <- c('integer','numeric','binary') + D$integer <- c(4100, 4158, 4110, 2900, 3580, 3780, 4220, 4210, 2460, 3510, + 2800, 3730, 3300, 3310, 2390, 3480, 3040, 3050, 3500, 3420) + D$numeric <- c(41.00, 41.00, 39.00, 38.86, 40.57, 41.00, 40.71, 41.43, 36.00, 39.00, + 37.57, 40.00, 40.29, 40.71, 37.00, 40.00, 41.57, 36.29, 39.29, 40.00) + D$binary <- c(1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,1,2,1,2) + Boolean.operator.n <- 3 + keep.NAs <- FALSE + + res <- dataFrameSubsetDS2(df.name="D", V1.name="D$numeric", V2.name="41.10", + Boolean.operator.n=Boolean.operator.n, keep.NAs = keep.NAs) + + expect_equal(class(res), "data.frame") + expect_equal(nrow(res), 18) + expect_equal(ncol(res), 3) + expect_equal(colnames(res), c("integer", "numeric", "binary")) + +}) + +# +# Done +# + +context("dataFrameSubsetDS2::smk::shutdown") + +context("dataFrameSubsetDS2::smk::done") diff --git a/tests/testthat/test-smk-densityGridDS.R b/tests/testthat/test-smk-densityGridDS.R new file mode 100644 index 00000000..612386bb --- /dev/null +++ b/tests/testthat/test-smk-densityGridDS.R @@ -0,0 +1,58 @@ +#------------------------------------------------------------------------------- +# Copyright (c) 2019-2022 University of Newcastle upon Tyne. All rights reserved. +# +# This program and the accompanying materials +# are made available under the terms of the GNU Public License v3.0. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +#------------------------------------------------------------------------------- + +# +# Set up +# + +context("densityGridDS::smk::setup") + +set.standard.disclosure.settings() + + +# +# Tests +# + +context("densityGridDS::smk") +test_that("densityGridDS", { + + xvect <- c(11.95, 10.06, 9.98, 9.50, 12.26, 9.66, 11.08, 12.29, 11.00, 9.91, + 9.98, 11.78, 9.34, 9.75, 10.29, 10.18, 8.10, 9.74, 9.14, 9.38) + yvect <- c(14.53, 21.37, 16.66, 16.46, 17.73, 16.66, 15.32, 19.25, 17.84, 12.44, + 15.29, 15.33, 18.78, 15.16, 17.06, 15.99, 15.01, 12.37, 15.32, 14.23) + limits <- FALSE + x.min <- NULL + x.max <- NULL + y.min <- NULL + y.max <- NULL + numints <- 3 + + res <- densityGridDS(xvect=xvect, yvect=yvect, limits=FALSE, x.min=NULL, + x.max=NULL, y.min=NULL, y.max=NULL, numints=numints) + + expect_equal(class(res), c("matrix","array")) + expect_equal(colnames(res), c("", "", "", "x.mids", "y.mids")) + expect_equal(as.numeric(round(res[1,], digits=3)), c(3.000, 0.000, 0.000, 8.798, 13.870)) + expect_equal(as.numeric(round(res[2,], digits=3)), c(4.000, 5.000, 0.000, 10.195, 16.870)) + expect_equal(as.numeric(round(res[3,], digits=3)), c(3.000, 0.000, 0.000, 11.592, 19.870)) + + expect_equal(names(dimnames(res))[2], "Number of invalid cells (cells with counts >0 and < nfilter.tab ) is 4") + +}) + + +# +# Done +# + +context("densityGridDS::smk::shutdown") + +context("densityGridDS::smk::done") diff --git a/tests/testthat/test-smk-gamlssDS.R b/tests/testthat/test-smk-gamlssDS.R new file mode 100644 index 00000000..636e0f26 --- /dev/null +++ b/tests/testthat/test-smk-gamlssDS.R @@ -0,0 +1,93 @@ +#------------------------------------------------------------------------------- +# Copyright (c) 2019-2022 University of Newcastle upon Tyne. All rights reserved. +# +# This program and the accompanying materials +# are made available under the terms of the GNU Public License v3.0. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +#------------------------------------------------------------------------------- + +# +# Set up +# + +context("gamlssDS::smk::setup") + +set.standard.disclosure.settings() + + +# +# Tests +# + +context("gamlssDS::smk::birthweight") +test_that("birthweight gamlssDS", { + + D <- as.data.frame(matrix(NA, nrow=20, ncol=2)) + colnames(D) <- c('e3_bw','e3_gac_None') + D$e3_bw <- c(4100, 4158, 4110, 2900, 3580, 3780, 4220, 4210, 2460, 3510, + 2800, 3730, 3300, 3310, 2390, 3480, 3040, 3050, 3500, 3420) + D$e3_gac_None <- c(41.00, 41.00, 39.00, 38.86, 40.57, 41.00, 40.71, 41.43, 36.00, 39.00, + 37.57, 40.00, 40.29, 40.71, 37.00, 40.00, 41.57, 36.29, 39.29, 40.00) + family <- "NOleft_parenthesisright_parenthesis" + centiles = TRUE + formula <- "e3_bwtilde_symbole3_gac_None" + sigma.formula <- "e3_bwtilde_symbole3_gac_None" + nu.formula <- "tilde_symbol1" + tau.formula <- "tilde_symbol1" + method <- 'RS' + mu.fix <- FALSE + sigma.fix <- FALSE + nu.fix <- FALSE + tau.fix <- FALSE + xvar <- "D$e3_gac_None" + newobj <- 'z_scores_e3_bw' + control = "0.001,20,1,1,1,1,Inf" + i.control = "0.001,50,30,0.001" + data="D" + + res <- gamlssDS(formula=formula, sigma.formula=sigma.formula, + nu.formula=nu.formula, tau.formula=tau.formula, + family=family, data=data, method=method, mu.fix=mu.fix, + sigma.fix=sigma.fix, nu.fix=nu.fix, tau.fix=tau.fix, + control=control, i.control=i.control, centiles=centiles, + xvar=xvar, newobj=newobj) + + expect_equal(class(res), "list") + expect_length(res, 2) + expect_equal(class(res[[1]]), c("gamlss","gam","glm","lm")) + expect_equal(class(res[[2]]), c("matrix","array")) + + res.names <- names(res) + + expect_equal(class(res.names), "character") + expect_length(res.names, 2) + expect_equal(res.names[1], 'results') + expect_equal(res.names[2], 'centiles') + + expect_equal(res$results$family, c("NO", "Normal")) + expect_equal(res$results$parameters, c("mu", "sigma")) + expect_equal(class(res$results$call), "call") + expect_equal(res$results$y, "The response variable is not disclosed!") + expect_equal(class(res$results$control), "list") + expect_length(res$results$control, 11) + expect_equal(round(res$results$G.deviance, digits=4), 294.1581) + expect_equal(res$results$N, 20) + expect_equal(class(res$results$rqres), "expression") + expect_equal(res$results$iter, 3) + + expect_equal(colnames(res$centiles), c("cent","per")) + expect_equal(res$centiles[,'cent'], c(0.4, 2.0, 10.0, 25.0, 50.0, 75.0, 90.0, 98.0, 99.6)) + expect_equal(res$centiles[,'per'], c(0, 5, 10, 25, 55, 70, 95, 95, 100)) + +}) + + +# +# Done +# + +context("gamlssDS::smk::shutdown") + +context("gamlssDS::smk::done") diff --git a/tests/testthat/test-smk-hetcorDS.R b/tests/testthat/test-smk-hetcorDS.R new file mode 100644 index 00000000..f78d14cc --- /dev/null +++ b/tests/testthat/test-smk-hetcorDS.R @@ -0,0 +1,91 @@ +#------------------------------------------------------------------------------- +# Copyright (c) 2019-2022 University of Newcastle upon Tyne. All rights reserved. +# +# This program and the accompanying materials +# are made available under the terms of the GNU Public License v3.0. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +#------------------------------------------------------------------------------- + +# +# Set up +# + +context("hetcorDS::smk::setup") + +set.standard.disclosure.settings() + + +# +# Tests +# + +context("hetcorDS::smk") +test_that("hetcorDS", { + + D <- as.data.frame(matrix(NA, nrow=20, ncol=3)) + colnames(D) <- c('x','y','z') + D$x <- c(4100, 4158, 4110, 2900, 3580, 3780, 4220, 4210, 2460, 3510, + 2800, 3730, 3300, 3310, 2390, 3480, 3040, 3050, 3500, 3420) + D$y <- c(41.00, 41.00, 39.00, 38.86, 40.57, 41.00, 40.71, 41.43, 36.00, 39.00, + 37.57, 40.00, 40.29, 40.71, 37.00, 40.00, 41.57, 36.29, 39.29, 40.00) + D$z <- as.factor(c(0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1)) + data <- "D" + ML <- FALSE + std.err <- TRUE + bins <- 2 + pd <- TRUE + use <- "complete.obs" + + res <- hetcorDS(data = data, ML = ML, std.err = std.err, bins = bins, pd = pd, use = use) + + expect_equal(class(res), "hetcor") + expect_length(res, 7) + expect_equal(class(res[[1]]), c("matrix","array")) + expect_equal(class(res[[2]]), c("matrix","array")) + expect_equal(class(res[[3]]), c("character")) + expect_equal(class(res[[4]]), c("logical")) + expect_equal(class(res[[5]]), c("matrix","array")) + expect_equal(class(res[[6]]), c("integer")) + expect_equal(class(res[[7]]), c("matrix","array")) + + res.names <- names(res) + + expect_equal(class(res.names), "character") + expect_length(res.names, 7) + expect_equal(res.names[1], 'correlations') + expect_equal(res.names[2], 'type') + expect_equal(res.names[3], 'NA.method') + expect_equal(res.names[4], 'ML') + expect_equal(res.names[5], 'std.errors') + expect_equal(res.names[6], 'n') + expect_equal(res.names[7], 'tests') + + expect_equal(round(res$correlations['x','x'], digits = 3), 1.000) + expect_equal(round(res$correlations['x','y'], digits = 3), 0.712) + expect_equal(round(res$correlations['x','z'], digits = 3), 0.242) + expect_equal(round(res$correlations['y','z'], digits = 3), 0.207) + + expect_equal(res$type[1,1], "") + expect_equal(res$type[1,2], "Pearson") + expect_equal(res$type[1,3], "Polyserial") + expect_equal(res$type[2,3], "Polyserial") + + expect_equal(res$NA.method, "complete.obs") + + expect_equal(round(res$std.errors['x','x'], digits = 3), 0.000) + expect_equal(round(res$std.errors['x','y'], digits = 3), 0.110) + expect_equal(round(res$std.errors['x','z'], digits = 3), 0.272) + expect_equal(round(res$std.errors['y','z'], digits = 3), 0.275) + +}) + + +# +# Done +# + +context("hetcorDS::smk::shutdown") + +context("hetcorDS::smk::done") \ No newline at end of file