diff --git a/statistics-enrichment-analysis/Illustration_of_Enrichment_Analyses.Rmd b/statistics-enrichment-analysis/Illustration_of_Enrichment_Analyses.Rmd index b76b6e1..2ae84a3 100644 --- a/statistics-enrichment-analysis/Illustration_of_Enrichment_Analyses.Rmd +++ b/statistics-enrichment-analysis/Illustration_of_Enrichment_Analyses.Rmd @@ -14,7 +14,7 @@ Let us load the libraries requires for the various analyses described in this do ##libraries for "tidy" manipulation of data suppressMessages(library(tidyverse)) -##libraries for "tidy" manipulation of data +##libraries for "tidy" manipulation of data suppressMessages(library(magrittr)) ##library used for normalizing gene expression data and then perform statistical association of gene expression with tumor vs normal comparison of bladder cancer samples diff --git a/statistics-enrichment-analysis/Stats_Enrich_Analyses.pptx b/statistics-enrichment-analysis/Stats_Enrich_Analyses.pptx index a04b9aa..dd1292a 100644 Binary files a/statistics-enrichment-analysis/Stats_Enrich_Analyses.pptx and b/statistics-enrichment-analysis/Stats_Enrich_Analyses.pptx differ diff --git a/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/Illustration_of_Enrichment_Analyses.Rmd b/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/Illustration_of_Enrichment_Analyses.Rmd index b76b6e1..848792f 100644 --- a/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/Illustration_of_Enrichment_Analyses.Rmd +++ b/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/Illustration_of_Enrichment_Analyses.Rmd @@ -9,7 +9,7 @@ output: html_document knitr::opts_chunk$set(echo = TRUE) ``` -Let us load the libraries requires for the various analyses described in this document +Let us first load the libraries required for the various analyses described in this document ```{r} ##libraries for "tidy" manipulation of data suppressMessages(library(tidyverse)) @@ -47,21 +47,23 @@ The methods we will use to answer the scientific question are described below: 2. Perform differential expression analyses -3. Run six different enrichment analyses methods. +3. Load the gene sets/pathway databases of interest + +4. Run six different enrichment analyses methods. -**Note:** In normal practice we may run only one or at most two methods to answer our question. However, our purpose here is to illustrate the use of different methods, higlight and interpret their results in the context of the associated assumptions of each method. The choice of the methods we use will depend on ... +**Note:** In normal practice we may run only one or at most two methods to answer our question. However, our purpose here is to illustrate the use of different methods, highlight and interpret their results in the context of the associated assumptions of each method. The choice of the methods we use will depend on ... a. ... the nature of our hypothesis, i.e., are we interested in a very specific biochemical pathway? or -b. ... are we agnostic of the nature of the biochemical pathways we discover to be asssociated with what we are studying?, +b. ... are we agnostic to the nature of the biochemical pathways we discover to be asssociated with what we are studying?, c. ... if we want to interpret the resulting p-values as measures of reproducibility of our enriched pathways by other research groups using data derived from new bladder cancer patient samples? d. ... whether the assay we are using is a genome-wide assay or a very targeted assay focusing on a specific group of genes or proteins # Analyses -## Load the data and understand the experimental data +## Load the data and understand the experimental design The gene expression data will be loaded as a [SummarizedExperiment](https://bioconductor.org/packages/release/bioc/html/SummarizedExperiment.html) object in an [RDS](https://www.rdocumentation.org/packages/base/versions/3.6.2/topics/readRDS) file. ```{r} tcga <- readRDS("bladder_cancer_tcga_summarized_experiment.rds") @@ -70,14 +72,14 @@ tcga <- readRDS("bladder_cancer_tcga_summarized_experiment.rds") tcga print("Short summary of the RNA-seq samples") -##quick summary of 38 samples. Note the variable GROUP refers to tumor vs normal assignment while the variable BLOCK refers to the patient. From each of the 19 patients, tumor and normal tissue are derived and assayed for gene expression +##quick summary of 38 samples. Note, the variable type has only one value BLCA, the variable GROUP refers to tumor vs normal assignment while the variable BLOCK refers to the patient. From each of the 19 patients, tumor and normal tissue are derived and assayed for gene expression colData(tcga) ##turn the GROUP and BLOCK variables to categorical variables tcga$GROUP <- as.factor(tcga$GROUP) tcga$BLOCK <- as.factor(tcga$BLOCK) -print("Look at the read counts of 4 genes for a 5 samples") +print("Look at the read counts of 4 genes for 5 samples") (assays(tcga))$exprs[1:4,1:5] @@ -91,7 +93,7 @@ dds.bc <- DESeqDataSet(tcga, design = ~ GROUP + BLOCK) dds.bc %<>% DESeq(.) -##variance stabilizing transformation to view the normalize data +##variance stabilizing transformation to view the normalized data vsd.bc <- dds.bc %>% vst(., blind=TRUE) @@ -103,6 +105,9 @@ vsd.bc %>% diff.res <- dds.bc %>% results(., contrast = c("GROUP", "1", "0"), pAdjustMethod="bonferroni") +##view the first few rows of the results +head(diff.res) + ##visualize the results using a Volcano Plot diff.res %>% as.data.frame() %>% @@ -110,13 +115,16 @@ diff.res %>% lab = rownames(.), x = 'log2FoldChange', y = 'padj', - xlim = c(-5, 8)) + xlim = c(-6, 6), + ylim = c(0,50), + title = NULL, + subtitle = NULL) -##output the results -diff.res %>% - as.data.frame() %>% - rownames_to_column('Gene') %>% - write.csv(., "bladder_cancer_diff_exp_results.csv", row.names = FALSE) +# ##output the results +# diff.res %>% +# as.data.frame() %>% +# rownames_to_column('Gene') %>% +# write.csv(., "bladder_cancer_diff_exp_results.csv", row.names = FALSE) ``` @@ -126,12 +134,15 @@ We will load the Gene Ontology and WikiPathways databases. Note, an additional d ##load the pathway gene set data-bases database_lists <- load("databases.RData")#has wp, pfocr, go -##WikiPathways annotation is a data frame that links genes (in terms of their Entrez IDs) to each of the WikiPathways (annotated by their names and IDs) -head(wp_annotation) +##let us look at what is there in the database_lists object; 3 pairs of files corresponding to three databases. +(database_lists) ##WikiPathways list is a list of character vectors of Entrez IDs representing genes associated with each pathway head(wp_list) +##WikiPathways annotation is a data frame that links genes (in terms of their Entrez IDs) to each of the WikiPathways (annotated by their names and IDs) +head(wp_annotation) + ``` @@ -142,7 +153,7 @@ The input to this analyses is a list of genes of interest (here it would be the We will use a function in the *clusterProfiler* library to perform this analysis. ```{r} ##Choose set of differential expressed genes -##pick the differentially expressed genes using 0.05 threshold +##pick the differentially expressed genes using 0.05 threshold for the adjusted p-value diff_genes <- diff.res %>% as.data.frame() %>% rownames_to_column('gene') %>% @@ -183,6 +194,7 @@ n <- sapply(res_ora$GeneRatio, function(x) as.numeric(strsplit(x, "/")[[1]][2])) M <- sapply(res_ora$BgRatio, function(x) as.numeric(strsplit(x, "/")[[1]][1])) #N: total number of genes assigned to at least one WikiPathway. Note, this number will be less than or equal to the total number of genes for which you have count data in the RNA-seq (gene expression) data set N <- sapply(res_ora$BgRatio, function(x) as.numeric(strsplit(x, "/")[[1]][2])) + odds_ratio <- (k*(N-M-n+k))/((M-k)*(n-k)) res_ora %<>% mutate(odds_ratio=odds_ratio) @@ -191,8 +203,8 @@ res_ora %<>% mutate(odds_ratio=odds_ratio) head(res_ora) -res_ora %>% - write.csv(., "bladder_cancer_WikiPathways_ora.csv", row.names = FALSE) +# res_ora %>% +# write.csv(., "bladder_cancer_WikiPathways_ora.csv", row.names = FALSE) ``` @@ -225,8 +237,8 @@ res_rSEA %>% dplyr::slice(order(Comp.adjP)) %>% head() -res_rSEA %>% dplyr::slice(order(Comp.adjP)) %>% - write.csv(., "bladder_cancer_WikiPathways_rSEA.csv", row.names = FALSE) +# res_rSEA %>% dplyr::slice(order(Comp.adjP)) %>% +# write.csv(., "bladder_cancer_WikiPathways_rSEA.csv", row.names = FALSE) @@ -250,7 +262,7 @@ tcga.de <- readRDS("bladder_cancer_tcga_summarized_experiment_w_de_results.rds") # write.csv(., "bladder_cancer_WikiPathways_safe_sample_perm.csv", row.names = FALSE) ##let us just read-in the results -res_safe <- read.csv("bladder_cancer_WikiPathways_safe_sample_perm.csv", header = TRUE) +res_safe <- read.csv(paste0(getwd(), "/association_results/bladder_cancer_WikiPathways_safe_sample_perm.csv"), header = TRUE) ##View the first few rows of the results head(res_safe) ``` @@ -272,7 +284,7 @@ tcga.de <- readRDS("bladder_cancer_tcga_summarized_experiment_w_de_results.rds") # write.csv(., "bladder_cancer_WikiPathways_padog_sample_perm.csv", row.names = FALSE) ##let us just read-in the results -res_padog <- read.csv("bladder_cancer_WikiPathways_padog_sample_perm.csv", header = TRUE) +res_padog <- read.csv(paste0(getwd(), "/association_results/bladder_cancer_WikiPathways_padog_sample_perm.csv"), header = TRUE) ##View the first few rows of the results head(res_padog) @@ -295,7 +307,7 @@ tcga.de <- readRDS("bladder_cancer_tcga_summarized_experiment_w_de_results.rds") # write.csv(., "bladder_cancer_WikiPathways_gsea_sample_perm.csv", row.names = FALSE) ##let us just read-in the results -res_gsea <- read.csv("bladder_cancer_WikiPathways_gsea_sample_perm.csv", header = TRUE) +res_gsea <- read.csv(paste0(getwd(), "/association_results/bladder_cancer_WikiPathways_gsea_sample_perm.csv"), header = TRUE) ##View the first few rows of the results head(res_gsea) @@ -334,7 +346,7 @@ res_gsea_gene_perm <- res_gsea_gene_perm@result ##view the first few rows of the results head(res_gsea_gene_perm) -res_gsea_gene_perm %>% - write.csv(., "bladder_cancer_WikiPathways_gsea_gene_perm.csv", row.names = FALSE) +# res_gsea_gene_perm %>% +# write.csv(., "bladder_cancer_WikiPathways_gsea_gene_perm.csv", row.names = FALSE) ``` diff --git a/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/Illustration_of_Enrichment_Analyses.html b/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/Illustration_of_Enrichment_Analyses.html index 599650d..69c34b5 100644 --- a/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/Illustration_of_Enrichment_Analyses.html +++ b/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/Illustration_of_Enrichment_Analyses.html @@ -369,7 +369,7 @@ summary { -

Let us load the libraries requires for the various analyses described in this document

+

Let us first load the libraries required for the various analyses described in this document

##libraries for "tidy" manipulation of data 
 suppressMessages(library(tidyverse))
 
@@ -404,20 +404,21 @@ suppressMessages(library(GSEABenchmarkeR))
  1. Load the gene expression data and understand the study design

  2. Perform differential expression analyses

  3. +
  4. Load the gene sets/pathway databases of interest

  5. Run six different enrichment analyses methods.

-

Note: In normal practice we may run only one or at most two methods to answer our question. However, our purpose here is to illustrate the use of different methods, higlight and interpret their results in the context of the associated assumptions of each method. The choice of the methods we use will depend on …

+

Note: In normal practice we may run only one or at most two methods to answer our question. However, our purpose here is to illustrate the use of different methods, highlight and interpret their results in the context of the associated assumptions of each method. The choice of the methods we use will depend on …

  1. … the nature of our hypothesis, i.e., are we interested in a very specific biochemical pathway? or

  2. -
  3. … are we agnostic of the nature of the biochemical pathways we discover to be asssociated with what we are studying?,

  4. +
  5. … are we agnostic to the nature of the biochemical pathways we discover to be asssociated with what we are studying?,

  6. … if we want to interpret the resulting p-values as measures of reproducibility of our enriched pathways by other research groups using data derived from new bladder cancer patient samples?

  7. … whether the assay we are using is a genome-wide assay or a very targeted assay focusing on a specific group of genes or proteins

Analyses

-
-

Load the data and understand the experimental data

+
+

Load the data and understand the experimental design

The gene expression data will be loaded as a SummarizedExperiment object in an RDS file.

tcga <- readRDS("bladder_cancer_tcga_summarized_experiment.rds")
 
@@ -434,7 +435,7 @@ tcga
## colData names(4): sample type GROUP BLOCK
print("Short summary of the RNA-seq samples")
## [1] "Short summary of the RNA-seq samples"
-
##quick summary of 38 samples. Note the variable GROUP refers to tumor vs normal assignment while the variable BLOCK refers to the patient. From each of the 19 patients, tumor and normal tissue are derived and assayed for gene expression 
+
##quick summary of 38 samples. Note, the variable type has only one value BLCA, the variable GROUP refers to tumor vs normal assignment while the variable BLOCK refers to the patient. From each of the 19 patients, tumor and normal tissue are derived and assayed for gene expression 
 colData(tcga)
## DataFrame with 38 rows and 4 columns
 ##                                                    sample     type     GROUP
@@ -467,8 +468,8 @@ colData(tcga)
tcga$GROUP <- as.factor(tcga$GROUP) tcga$BLOCK <- as.factor(tcga$BLOCK) -print("Look at the read counts of 4 genes for a 5 samples")
-
## [1] "Look at the read counts of 4 genes for a 5 samples"
+print("Look at the read counts of 4 genes for 5 samples") +
## [1] "Look at the read counts of 4 genes for 5 samples"
(assays(tcga))$exprs[1:4,1:5]
##        TCGA-K4-A3WV-01A-11R-A22U-07 TCGA-BT-A20W-01A-21R-A14Y-07
 ## 2                              2133                        26508
@@ -495,7 +496,7 @@ dds.bc <- DESeqDataSet(tcga, design = ~ GROUP + BLOCK)
 dds.bc %<>% DESeq(.)
 
 
-##variance stabilizing transformation to view the normalize data
+##variance stabilizing transformation to view the normalized data
 vsd.bc <- dds.bc %>%
   vst(., blind=TRUE)
 
@@ -507,20 +508,44 @@ vsd.bc %>%
 diff.res <- dds.bc %>% 
   results(., contrast = c("GROUP", "1", "0"), pAdjustMethod="bonferroni")
 
-##visualize the results using a Volcano Plot
+##view the first few rows of the results
+head(diff.res)
+
## log2 fold change (MLE): GROUP 1 vs 0 
+## Wald test p-value: GROUP 1 vs 0 
+## DataFrame with 6 rows and 6 columns
+##                baseMean    log2FoldChange             lfcSE              stat
+##               <numeric>         <numeric>         <numeric>         <numeric>
+## 2      60441.9949982826 -2.81518262410458 0.249721229329308 -11.2733011593187
+## 144568 5647.27733329461  1.76837317447267 0.737339111764371  2.39831733629477
+## 53947  2542.44676154949 -1.08766112684586 0.282425533447364 -3.85114303784637
+## 8086   1731.31151871993 0.430613932325569 0.112871100569799  3.81509465356264
+## 65985  1423.46418384702  0.60694857867681 0.118930266407384  5.10339879839981
+## 51166  328.399449333533 0.161071193249593 0.260770583227886  0.61767393873884
+##                      pvalue                 padj
+##                   <numeric>            <numeric>
+## 2      1.77777061848998e-29 2.18025788651611e-25
+## 144568   0.0164705891218147                    1
+## 53947  0.000117567802472002                    1
+## 8086   0.000136130743362086                    1
+## 65985   3.3360694976517e-07  0.00409135563192005
+## 51166      0.53679029446777                    1
+
##visualize the results using a Volcano Plot
 diff.res %>%
   as.data.frame() %>%
   EnhancedVolcano(.,
     lab = rownames(.),
     x = 'log2FoldChange',
     y = 'padj',
-    xlim = c(-5, 8))
-

-
##output the results
-diff.res %>%
-  as.data.frame() %>%
-  rownames_to_column('Gene') %>%
-  write.csv(., "bladder_cancer_diff_exp_results.csv", row.names = FALSE)
+ xlim = c(-6, 6), + ylim = c(0,50), + title = NULL, + subtitle = NULL) +

+
# ##output the results
+# diff.res %>%
+#   as.data.frame() %>%
+#   rownames_to_column('Gene') %>%
+#   write.csv(., "bladder_cancer_diff_exp_results.csv", row.names = FALSE)

Load the gene set/pathway databases of interest

@@ -528,15 +553,10 @@ diff.res %>%
##load the pathway gene set data-bases
 database_lists <- load("databases.RData")#has wp, pfocr, go
 
-##WikiPathways annotation is a data frame that links genes (in terms of their Entrez IDs) to each of the WikiPathways (annotated by their names and IDs)
-head(wp_annotation)
-
##                                name set_id   gene
-## 1           FABP4 in ovarian cancer WP4400 574413
-## 2           FABP4 in ovarian cancer WP4400   2167
-## 3 B Cell Receptor Signaling Pathway   WP23   4690
-## 4 B Cell Receptor Signaling Pathway   WP23   5781
-## 5 B Cell Receptor Signaling Pathway   WP23  11184
-## 6 B Cell Receptor Signaling Pathway   WP23   6195
+##let us look at what is there in the database_lists object; 3 pairs of files corresponding to three databases. +(database_lists) +
## [1] "wp_list"          "wp_annotation"    "pfocr_list"       "pfocr_annotation"
+## [5] "go_list"          "go_annotation"
##WikiPathways list is a list of character vectors of Entrez IDs representing genes associated with each pathway
 head(wp_list)
## $WP100
@@ -601,6 +621,15 @@ head(wp_list)
## $WP12 ## [1] "8792" "3690" "8111" "5155" "8600" "6696" "4982" "9550" "56302" ## [10] "1513" "3456" "3454" "7965" "5599" "6548" "54" +
##WikiPathways annotation is a data frame that links genes (in terms of their Entrez IDs) to each of the WikiPathways (annotated by their names and IDs)
+head(wp_annotation)
+
##                                name set_id   gene
+## 1           FABP4 in ovarian cancer WP4400 574413
+## 2           FABP4 in ovarian cancer WP4400   2167
+## 3 B Cell Receptor Signaling Pathway   WP23   4690
+## 4 B Cell Receptor Signaling Pathway   WP23   5781
+## 5 B Cell Receptor Signaling Pathway   WP23  11184
+## 6 B Cell Receptor Signaling Pathway   WP23   6195

Illustration of different enrichment analyses methods

@@ -609,7 +638,7 @@ head(wp_list)

The input to this analyses is a list of genes of interest (here it would be the list of genes deemed differentially expressed between the tumor and normal samples) and also the universe of genes from which the former list of genes were derived.

We will use a function in the clusterProfiler library to perform this analysis.

##Choose set of differential expressed genes
-##pick the differentially expressed genes using 0.05 threshold
+##pick the differentially expressed genes using 0.05 threshold for the adjusted p-value
 diff_genes <- diff.res %>%
     as.data.frame() %>%
     rownames_to_column('gene') %>%
@@ -677,6 +706,7 @@ n <- sapply(res_ora$GeneRatio, function(x) as.numeric(strsplit(x, "/&quo
 M <- sapply(res_ora$BgRatio, function(x) as.numeric(strsplit(x, "/")[[1]][1]))
 #N: total number of genes assigned to at least one WikiPathway. Note, this number will be less than or equal to the total number of genes for which you have count data in the RNA-seq (gene expression) data set
 N <- sapply(res_ora$BgRatio, function(x) as.numeric(strsplit(x, "/")[[1]][2]))
+
 odds_ratio <- (k*(N-M-n+k))/((M-k)*(n-k))
 
 res_ora %<>% mutate(odds_ratio=odds_ratio)
@@ -711,8 +741,8 @@ head(res_ora)
## 4 48 2.758283 ## 5 30 3.693418 ## 6 46 2.383944 -
res_ora %>%
-  write.csv(., "bladder_cancer_WikiPathways_ora.csv", row.names = FALSE)
+
# res_ora %>%
+#   write.csv(., "bladder_cancer_WikiPathways_ora.csv", row.names = FALSE)

Simultaneous Enrichment Analyses (SEA)

@@ -757,8 +787,8 @@ res_rSEA %>% ## 4 WP334 24 0.17 0.5000000 0.5 3.065793e-21 1.609559e-18 ## 5 WP1991 13 0.69 0.8888889 1.0 5.372582e-24 1.169009e-14 ## 6 WP206 15 0.33 0.6000000 0.8 2.940210e-38 1.319281e-14 -
res_rSEA %>% dplyr::slice(order(Comp.adjP)) %>%
-  write.csv(., "bladder_cancer_WikiPathways_rSEA.csv", row.names = FALSE)
+
# res_rSEA %>% dplyr::slice(order(Comp.adjP)) %>%
+#   write.csv(., "bladder_cancer_WikiPathways_rSEA.csv", row.names = FALSE)

Significance Analyses of Function and Expression (SAFE)

@@ -777,7 +807,7 @@ tcga.de <- readRDS("bladder_cancer_tcga_summarized_experiment_w_de_resul # write.csv(., "bladder_cancer_WikiPathways_safe_sample_perm.csv", row.names = FALSE) ##let us just read-in the results -res_safe <- read.csv("bladder_cancer_WikiPathways_safe_sample_perm.csv", header = TRUE) +res_safe <- read.csv(paste0(getwd(), "/association_results/bladder_cancer_WikiPathways_safe_sample_perm.csv"), header = TRUE) ##View the first few rows of the results head(res_safe)
##   set_id                                                            name
@@ -811,7 +841,7 @@ head(res_safe)
# write.csv(., "bladder_cancer_WikiPathways_padog_sample_perm.csv", row.names = FALSE) ##let us just read-in the results -res_padog <- read.csv("bladder_cancer_WikiPathways_padog_sample_perm.csv", header = TRUE) +res_padog <- read.csv(paste0(getwd(), "/association_results/bladder_cancer_WikiPathways_padog_sample_perm.csv"), header = TRUE) ##View the first few rows of the results head(res_padog)
##   set_id                                                            name
@@ -845,7 +875,7 @@ head(res_padog)
# write.csv(., "bladder_cancer_WikiPathways_gsea_sample_perm.csv", row.names = FALSE) ##let us just read-in the results -res_gsea <- read.csv("bladder_cancer_WikiPathways_gsea_sample_perm.csv", header = TRUE) +res_gsea <- read.csv(paste0(getwd(), "/association_results/bladder_cancer_WikiPathways_gsea_sample_perm.csv"), header = TRUE) ##View the first few rows of the results head(res_gsea)
##   set_id
@@ -913,12 +943,12 @@ head(res_gsea_gene_perm)
## WP382 WP382 MAPK Signaling Pathway 195 ## WP306 WP306 Focal Adhesion 173 ## enrichmentScore NES pvalue p.adjust qvalues rank -## WP3888 -0.4627917 -1.492921 0.001041667 0.03638752 0.02744793 2506 -## WP4172 -0.5049345 -1.588244 0.001088139 0.03638752 0.02744793 2187 -## WP3932 -0.5152809 -1.616262 0.001094092 0.03638752 0.02744793 2187 -## WP2882 -0.5290426 -1.648267 0.001116071 0.03638752 0.02744793 1655 -## WP382 -0.5817051 -1.798170 0.001129944 0.03638752 0.02744793 1531 -## WP306 -0.5635541 -1.724448 0.001144165 0.03638752 0.02744793 2687 +## WP3888 -0.4627917 -1.482003 0.001031992 0.03507439 0.02645741 2506 +## WP4172 -0.5049345 -1.580659 0.001085776 0.03507439 0.02645741 2187 +## WP3932 -0.5152809 -1.605383 0.001097695 0.03507439 0.02645741 2187 +## WP2882 -0.5290426 -1.645779 0.001103753 0.03507439 0.02645741 1655 +## WP382 -0.5817051 -1.788666 0.001124859 0.03507439 0.02645741 1531 +## WP306 -0.5635541 -1.709920 0.001156069 0.03507439 0.02645741 2687 ## leading_edge ## WP3888 tags=29%, list=20%, signal=24% ## WP4172 tags=31%, list=18%, signal=26% @@ -933,8 +963,8 @@ head(res_gsea_gene_perm) ## WP2882 4240/8824/4780/60482/6594/5743/3725/5465/11214/34/2040/2308/4609/8850/5552/2908/2099/80315/3726/5244/6515/4616/1028/1066/1839/5243/330/3082/10486/23764/89795/6347/2258/10891/2289/1831/2042/2949/7049/5142/1958/6649/7048/3727/6517/10252/2878/5997/5166 ## WP382 355/1845/1844/4137/3725/5908/5602/55970/5906/9252/4772/775/7043/4609/10000/781/4915/6237/408/785/783/2260/1850/1326/5532/627/3306/9020/2316/8912/2258/2252/5533/6722/4208/120892/2247/10235/2353/8605/7048/2318/3727/1843/3164 ## WP306 5159/2268/858/387/2889/7409/9475/7423/3915/7408/6093/3688/1793/5728/394/5170/7424/83660/3791/5578/5500/3672/2909/7057/60/4659/25759/3910/23396/54776/87/3725/5908/5602/7414/5906/7450/7791/7094/1288/2534/3611/55742/5156/10000/3690/3913/3678/3680/1292/330/3082/3479/80310/3679/1286/596/894/2316/10319/3908/857/4660/10398/4638/5649/2318/5579/8516/7148 -
res_gsea_gene_perm %>%
-  write.csv(., "bladder_cancer_WikiPathways_gsea_gene_perm.csv", row.names = FALSE)
+
# res_gsea_gene_perm %>%
+#   write.csv(., "bladder_cancer_WikiPathways_gsea_gene_perm.csv", row.names = FALSE)
diff --git a/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/Stats_Enrich_Analyses.pptx b/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/Stats_Enrich_Analyses.pptx index a04b9aa..ea727d8 100644 Binary files a/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/Stats_Enrich_Analyses.pptx and b/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/Stats_Enrich_Analyses.pptx differ diff --git a/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/bladder_cancer_WikiPathways_ora.csv b/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/bladder_cancer_WikiPathways_ora.csv new file mode 100644 index 0000000..f9749c0 --- /dev/null +++ b/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/bladder_cancer_WikiPathways_ora.csv @@ -0,0 +1,496 @@ +"ID","Description","GeneRatio","BgRatio","pvalue","p.adjust","qvalue","geneID","Count","odds_ratio" +"WP2446","Retinoblastoma Gene in Cancer","47/1022","86/4839",6.08288534347113e-12,3.01102824501821e-09,2.81733636960768e-09,"25/54443/890/891/9133/898/9134/993/8318/8317/983/1017/1019/81620/1111/1786/1869/1870/2189/24137/4173/4175/4176/2956/4609/4998/5111/10733/5426/5427/5557/5591/5928/5947/5983/5984/5985/6119/6241/6502/10592/3925/7027/7153/7272/7298/7465",47,4.66971729125575 +"WP466","DNA Replication","26/1022","41/4839",4.88122298123165e-09,1.20810268785483e-06,1.13038847986417e-06,"8318/990/8317/1017/81620/10926/55388/4171/4173/4174/4175/4176/4998/23594/5111/23649/5424/5426/5427/5557/5558/5982/5983/5984/5985/6119",26,6.61659973226238 +"WP2361","Gastric Cancer Network 1","16/1022","22/4839",2.8778815405389e-07,4.20813701870437e-05,3.93743814615614e-05,"86/6790/1063/144455/1894/56992/9585/286826/4173/4605/57122/8607/64094/7153/22974/11065",16,10.1020543406229 +"WP179","Cell Cycle","48/1022","115/4839",3.40051476258939e-07,4.20813701870437e-05,3.93743814615614e-05,"25/699/9184/890/891/9133/894/898/9134/991/993/995/8318/990/8317/983/1017/1019/1028/1111/11200/10926/1869/1870/9700/4616/2932/3066/10459/4171/4173/4174/4175/4176/4609/4998/23594/5111/9088/5347/5591/9232/5933/6502/7027/7043/7272/7465",48,2.75828250942413 +"WP45","G1 to S cell cycle control","30/1022","61/4839",9.28021377109086e-07,9.18741163337995e-05,8.59640854585259e-05,"891/894/898/9134/993/8318/983/1017/1019/1028/90993/1869/1870/4171/4173/4174/4175/4176/4609/4998/23594/5111/23649/5426/5427/5557/5558/6119/7027/7465",30,3.69341831425598 +"WP289","Myometrial Relaxation and Contraction Pathways","46/1022","120/4839",9.77018041145599e-06,0.000806039883945119,0.000754189365094849,"58/59/70/108/196883/111/115/408/467/489/800/817/1264/2353/2791/55970/54331/2788/2869/3488/3489/3569/3708/1902/23764/4846/5142/5144/11142/5331/5336/5577/5579/5590/10267/10266/10268/5996/8786/10287/5997/8490/8787/6262/6263/6546",46,2.38394439521489 +"WP4016","DNA IR-damage and cellular response via ATR","31/1022","75/4839",5.22036834352934e-05,0.00369154618578146,0.00345407830248558,"672/675/83990/995/8318/983/1017/1111/11200/1196/63967/1869/9156/2175/2177/55215/2237/2305/4171/4436/79728/5111/5347/5591/5888/5883/55159/80010/55775/11073/7507",31,2.68239152371342 +"WP383","Striated Muscle Contraction Pathway","13/1022","23/4839",0.000209501159191158,0.0129628842249529,0.0121290144794881,"58/59/70/1674/1756/10398/8736/7111/7139/7168/7169/7170/7431",13,4.90495540138751 +"WP536","Calcium Regulation in the Cardiac Cell","38/1022","107/4839",0.000369441897512897,0.0203193043632093,0.0190122146088508,"108/196883/111/115/154/309/408/482/489/775/811/817/845/2701/57165/2775/2781/2791/55970/54331/2788/2869/3708/11142/5331/5350/5577/5579/5590/5996/8786/10287/5997/8490/8787/6262/6263/6546",38,2.09767880287499 +"WP1991","SRF and miRs in Smooth Muscle Differentiation and Proliferation","7/1022","9/4839",0.000442625689689891,0.0219099716396496,0.0205005582593213,"817/894/9314/4208/4209/93649/6722",7,13.1551724137931 +"WP531","DNA Mismatch Repair","11/1022","21/4839",0.00152210454302198,0.0629714363335005,0.0589206421833923,"9156/3978/4436/2956/5111/5424/5982/5983/5984/5985/6119",11,4.14213649851632 +"WP2406","Cardiac Progenitor Differentiation","14/1022","30/4839",0.00152658027475153,0.0629714363335005,0.0589206421833923,"70/22943/2247/2932/3479/3624/3815/4208/4684/5156/4920/64321/6910/7139",14,3.29947916666667 +"WP1530","miRNA Regulation of DNA Damage Response","24/1022","64/4839",0.00186690102319929,0.0710858466525883,0.0665130728913107,"25/637/672/891/9133/894/898/9134/993/995/983/1017/1019/1020/1111/11200/1869/2177/4616/4176/4609/5591/5888/5883",24,2.27074148296593 +"WP35","G Protein Signaling Pathways","27/1022","76/4839",0.00250847820080499,0.0790149987243626,0.0739321625491112,"108/196883/111/115/9590/11214/9472/9465/9630/2774/2775/2781/2791/55970/2788/3708/4893/5136/5142/5144/27115/5331/5533/5577/5579/5590/6237",27,2.08667828940621 +"WP707","DNA Damage Response","23/1022","62/4839",0.00271330802302758,0.0790149987243626,0.0739321625491112,"25/637/672/891/9133/894/898/9134/993/995/983/1017/1019/1020/1111/11200/1869/2177/4616/4609/5591/5888/5883",23,2.2302815636149 +"WP1602","Nicotine Activity on Dopaminergic Neurons","7/1022","11/4839",0.00271364642083669,0.0790149987243626,0.0739321625491112,"108/1020/1138/54331/3777/84152/6571",7,6.57413793103448 +"WP2023","Cell Differentiation - Index expanded","7/1022","11/4839",0.00271364642083669,0.0790149987243626,0.0739321625491112,"2146/10014/3398/9314/4208/4209/6722",7,6.57413793103448 +"WP2848","Differentiation Pathway","12/1022","26/4839",0.0036947121263992,0.0968690978699419,0.0906377523929281,"22943/2247/3082/3479/3569/3570/3624/3815/4907/7043/7472/7482",12,3.22743988684583 +"WP558","Complement and Coagulation Cascades","16/1022","39/4839",0.00371820779702807,0.0968690978699419,0.0906377523929281,"623/715/716/718/730/1675/3075/1191/2159/2161/2157/5648/5627/710/7035/7450",16,2.62356297000605 +"WP2516","ATM Signaling Pathway","15/1022","37/4839",0.00561025279060555,0.138853756567487,0.129921643571918,"25/637/672/835/891/898/993/995/983/1017/1111/11200/2177/5888/5883",15,2.5695134061569 +"WP4240","Regulation of sister chromatid separation at the metaphase-anaphase transition","8/1022","15/4839",0.00595545166757851,0.140378503592922,0.131348307455366,"699/701/9184/991/1062/9700/4085/9232",8,4.29416737109045 +"WP4222","Phosphodiesterases in neuronal function","13/1022","31/4839",0.00694925428195734,0.149785380106981,0.140150063257994,"108/196883/111/115/2906/5136/5138/5140/5142/5144/8654/27115/84152",13,2.71924898138971 +"WP236","Adipogenesis","33/1022","104/4839",0.00695972473224355,0.149785380106981,0.140150063257994,"1052/1675/55847/1869/1879/1959/2308/2487/4616/3479/3569/3572/28999/1316/3977/4154/4208/4209/4692/7025/2908/5465/10891/5740/5914/5933/6095/6319/6517/9021/6773/6777/25937",33,1.76046369216309 +"WP2806","Human Complement System","22/1022","63/4839",0.00765136578770975,0.151658530005302,0.141902718133616,"715/716/718/730/811/966/22918/1675/3075/5199/1634/2159/2161/2162/3690/5648/5627/5806/6401/6403/710/6696",22,2.02614634146341 +"WP3996","Ethanol effects on histone modifications","12/1022","28/4839",0.00765952171743951,0.151658530005302,0.141902718133616,"125/126/191/217/3066/9759/10014/10013/8850/4524/6573/7298",12,2.82252475247525 +"WP247","Small Ligand GPCRs","6/1022","10/4839",0.00837134097206408,0.153474584487841,0.14360195039798,"1902/5733/5734/5737/1901/9294",6,5.62942913385827 +"WP4545","Oxysterols derived from cholesterol","6/1022","10/4839",0.00837134097206408,0.153474584487841,0.14360195039798,"9023/1593/1717/2053/2099/1880",6,5.62942913385827 +"WP4337","ncRNAs involved in STAT3 signaling in hepatocellular carcinoma","7/1022","13/4839",0.00947004961583731,0.167416948565695,0.156647437254452,"3590/3569/3570/3572/3717/6659/6935",7,4.38045977011494 +"WP2363","Gastric Cancer Network 2","12/1022","29/4839",0.0106076900909422,0.181062296379876,0.169415014156609,"29028/27101/63922/79075/55215/84823/4609/5983/5984/7153/11065/29089",12,2.65579499126383 +"WP1971","Integrated Cancer Pathway","16/1022","43/4839",0.0111649064981956,0.184220957220227,0.172370486287932,"596/641/672/993/983/1017/1019/1111/11200/1869/4312/4436/2956/4609/5347/5451",16,2.23253074147706 +"WP474","Endochondral Ossification","19/1022","54/4839",0.0116567995879756,0.18613276761445,0.17415931472697,"9510/9507/11096/1028/5167/2247/2260/2487/2690/9759/3479/4208/4256/4322/5745/6696/6777/7067/7078",19,2.04694487964677 +"WP706","Sudden Infant Death Syndrome (SIDS) Susceptibility Pathways","31/1022","100/4839",0.012513191903912,0.193563437263639,0.181111988082937,"34/627/1390/1958/2305/23171/7184/3569/3570/3757/4150/4204/4208/4602/2908/4915/5354/10891/133522/5577/6095/6262/6330/291/6640/6869/6929/11076/7259/6844/7434",31,1.69917664780123 +"WP4149","White fat cell differentiation","12/1022","30/4839",0.0143601520308822,0.214413838417165,0.20062113536109,"1052/1879/1959/2308/28999/10365/9314/2908/5914/6095/6777/23090",12,2.50759075907591 +"WP4589","Major receptors targeted by epinephrine and norepinephrine","6/1022","11/4839",0.0151605744335369,0.214413838417165,0.20062113536109,"108/196883/111/115/150/154",6,4.50236220472441 +"WP554","ACE Inhibitor Pathway","6/1022","11/4839",0.0151605744335369,0.214413838417165,0.20062113536109,"185/623/624/1511/4846/4306",6,4.50236220472441 +"WP2431","Spinal Cord Injury","28/1022","90/4839",0.0162686915442285,0.221975388746869,0.207696270172509,"358/627/7832/6347/983/1017/1019/1464/2920/1869/1958/2353/3569/4321/4609/4804/3164/9423/5320/56963/388/65078/6403/9353/6586/6869/7431/7538",28,1.70604270786006 +"WP3959","DNA IR-Double Strand Breaks (DSBs) and cellular response via ATM","18/1022","52/4839",0.0165920997649174,0.221975388746869,0.207696270172509,"25/86/637/641/672/675/995/1020/1111/11200/1869/9156/2177/5111/5591/5888/5883/10413",18,1.99478556362784 +"WP2029","Cell Differentiation - Index","4/1022","6/4839",0.0205766471129607,0.261165136433732,0.244365039937995,"10014/4208/4209/6722",4,7.4950884086444 +"WP3944","Serotonin and anxiety-related events","4/1022","6/4839",0.0205766471129607,0.261165136433732,0.244365039937995,"2353/2906/84812/5579",4,7.4950884086444 +"WP3893","Development and heterogeneity of the ILC family","8/1022","18/4839",0.0221682040659433,0.274331525316048,0.256684468131975,"374/3398/90865/3569/6095/9760/85480/7704",8,3.00355029585799 +"WP516","Hypertrophy Model","7/1022","15/4839",0.023921397351209,0.281930754496392,0.26379485800832,"467/1978/1839/3727/8013/9948/6935",7,3.28362068965517 +"WP545","Complement Activation","7/1022","15/4839",0.023921397351209,0.281930754496392,0.26379485800832,"715/716/718/730/1675/5199/5648",7,3.28362068965517 +"WP2814","Mammary gland development pathway - Puberty (Stage 2 of 4)","6/1022","12/4839",0.0249881820525124,0.283655270848162,0.265408440559683,"374/2099/8061/4609/5241/7431",6,3.7509842519685 +"WP428","Wnt Signaling","28/1022","93/4839",0.0252138018531699,0.283655270848162,0.265408440559683,"817/894/1457/23500/22943/8061/2535/8324/2932/4609/4772/4776/85407/51701/5331/5332/5532/5533/166336/5579/4919/4920/5176/6422/64321/81839/7472/7482",28,1.62600216684724 +"WP4172","PI3K-Akt Signaling Pathway","66/1022","252/4839",0.0279094709530498,0.306261336676163,0.286560315018632,"10000/284/596/627/672/894/898/9134/1017/1019/1286/1288/1291/1292/90993/9586/1440/1944/1945/1975/1978/2256/2258/2247/2252/2260/2690/2791/55970/54331/2788/2932/3082/7184/3479/3563/3569/3570/3678/3679/8516/3680/3690/3717/3815/3908/3913/10319/1902/4602/4609/4804/4846/4893/4915/80310/5156/5516/5521/5525/5563/5649/6696/7010/7148/7450",66,1.34771899041706 +"WP170","Nuclear Receptors","11/1022","29/4839",0.028460649468896,0.306261336676163,0.286560315018632,"2099/7025/2908/3164/4929/5241/5465/5914/4919/6095/7067",11,2.29635124738982 +"WP3297","EV release from cardiac cells and their functional effects","3/1022","4/4839",0.0316543966692141,0.333381411728957,0.31193582383996,"6387/10365/4602",3,11.234543670265 +"WP2858","Ectoderm Differentiation","32/1022","112/4839",0.0363507203093282,0.369978106127767,0.34617834491487,"79658/55843/23229/91653/10486/6347/5010/1756/2534/8322/2627/10013/3853/9079/4204/4609/4772/51701/51422/56963/114822/4920/6386/6622/8835/114815/10253/6781/6929/7226/8848/7704",32,1.50989898989899 +"WP4752","Base Excision Repair","11/1022","30/4839",0.0366240953540618,0.369978106127767,0.34617834491487,"2237/3978/4595/10038/5111/11284/5424/5426/5427/23583/7374",11,2.17491800718413 +"WP3591","Sleep regulation","6/1022","13/4839",0.0382894384268054,0.379065440425373,0.354681113848302,"191/1471/2353/3569/8863/5730",6,3.21428571428571 +"WP1992","Genes targeted by miRNAs in adipocytes","5/1022","10/4839",0.0406085173589397,0.38656184793606,0.361695296314442,"2078/9464/9759/3479/6722",5,3.74827925270403 +"WP2815","Mammary gland development pathway - Involution (Stage 4 of 4)","5/1022","10/4839",0.0406085173589397,0.38656184793606,0.361695296314442,"1116/1869/3572/4609/9021",5,3.74827925270403 +"WP1984","Integrated Breast Cancer Pathway","39/1022","143/4839",0.0451540264348633,0.421721567646365,0.394593279669113,"25/6790/596/637/641/672/675/993/1017/1019/1111/11200/55526/1869/26284/2099/27145/8061/2308/4312/4436/2956/4609/79902/4953/5347/1263/5888/8438/5906/6237/23411/4092/6597/7035/7048/27005/7465/7517",39,1.41645473041709 +"WP34","Ovarian Infertility Genes","7/1022","17/4839",0.0488930677721469,0.440037609949322,0.411731097028606,"894/1019/1958/2701/5241/6609/7784",7,2.62551724137931 +"WP4300","Extracellular vesicles in the crosstalk of cardiac cells","7/1022","17/4839",0.0488930677721469,0.440037609949322,0.411731097028606,"332/975/3479/3569/10611/8470/6696",7,2.62551724137931 +"WP2849","Hematopoietic Stem Cell Differentiation","14/1022","43/4839",0.0536575816417183,0.467920123508186,0.43781999860415,"863/947/1440/2313/2353/2354/3569/3663/3690/3757/4602/3071/399/7148",14,1.81417624521073 +"WP1601","Fluoropyrimidine Activity","10/1022","28/4839",0.0538817111918517,0.467920123508186,0.43781999860415,"1066/8836/4524/5471/6241/23583/7083/7298/7371/7517",10,2.08552920509442 +"WP3876","BMP2-WNT4-FOXO1 Pathway in Human Primary Endometrial Stromal Cell Differentiation","5/1022","11/4839",0.0618151364634419,0.524734603786845,0.490979746233305,"1634/22943/2308/6422/4093",5,3.12274664044576 +"WP241","One Carbon Metabolism","9/1022","25/4839",0.062831257423353,0.524734603786845,0.490979746233305,"191/1786/1788/1789/2618/25902/4524/6472/7298",9,2.11062438302073 +"WP2895","Differentiation of white and brown adipocyte ","7/1022","18/4839",0.0658997992215493,0.524734603786845,0.490979746233305,"253738/27129/10891/133522/63976/4093/23090",7,2.38620689655172 +"WP2118","Arrhythmogenic Right Ventricular Cardiomyopathy","17/1022","56/4839",0.0661533109186531,0.524734603786845,0.490979746233305,"775/781/783/785/1674/1756/3678/3679/8516/3680/3690/3908/6262/6442/6443/6444/6546",17,1.63862737594081 +"WP206","Fatty Acid Omega Oxidation","3/1022","5/4839",0.0667844041183257,0.524734603786845,0.490979746233305,"125/126/217",3,5.61579980372915 +"WP3299","let-7 inhibition of ES cell reprogramming","3/1022","5/4839",0.0667844041183257,0.524734603786845,0.490979746233305,"1958/9314/4609",3,5.61579980372915 +"WP98","Prostaglandin Synthesis and Regulation","12/1022","37/4839",0.0728698633344591,0.559196388737501,0.523224691216376,"309/1909/1910/4286/10891/133522/5730/5733/5734/5737/5740/5742",12,1.80213861386139 +"WP4698","Vitamin D-sensitive calcium signaling in depression","8/1022","22/4839",0.0734298288241164,0.559196388737501,0.523224691216376,"493/596/775/1593/2906/3708/23028/6546",8,2.14313891236968 +"WP4336","ncRNAs involved in Wnt signaling in hepatocellular carcinoma","20/1022","69/4839",0.0752279353205046,0.564209514903784,0.527915335582488,"894/1457/22943/2146/8061/2535/8324/2932/9314/4609/85407/51701/4919/4920/5176/6422/64321/83595/7472/7482",20,1.53488940486374 +"WP3998","Prader-Willi and Angelman Syndrome","10/1022","30/4839",0.0825797783657116,0.610104332701899,0.570857855159672,"627/894/990/1019/1869/9638/4487/4692/5108/5590",10,1.87598814229249 +"WP4224","Purine metabolism and related disorders","7/1022","19/4839",0.0860390711246063,0.623135020434443,0.583050311517608,"316/1716/2618/3251/3704/10606/5471",7,2.1867816091954 +"WP3624","Lung fibrosis","13/1022","42/4839",0.087955807542379,0.623135020434443,0.583050311517608,"6347/1440/2920/2006/2247/2252/3082/3479/3569/4204/5806/4092/6696",13,1.68292266156317 +"WP4760","PKC-gamma calcium signaling pathway in ataxia","5/1022","12/4839",0.0881201038998203,0.623135020434443,0.583050311517608,"9630/3708/5331/5332/6263",5,2.67593763168984 +"WP3932","Focal Adhesion-PI3K-Akt-mTOR-signaling pathway","60/1022","243/4839",0.0951492832930012,0.663364721549797,0.620692137122617,"10000/284/1301/1286/1288/1292/90993/9586/1440/1944/1945/1975/1978/2256/2258/2247/2252/2260/2308/2690/2791/55970/54331/2788/2932/3082/64344/7184/3479/3563/3570/3678/3679/8516/3680/3690/3717/3815/3908/3913/10319/1902/4804/4846/4893/80310/5156/5210/10891/5516/5521/5525/5563/5649/6515/6517/6696/7010/7148/7450",60,1.23853992706452 +"WP3679","Cell-type Dependent Selectivity of CCK2R Signaling","4/1022","9/4839",0.100966138374052,0.685679647373976,0.641571599882083,"3708/6262/6263/7220",4,2.99567779960707 +"WP497","Urea cycle and metabolism of amino groups","6/1022","16/4839",0.101120432845051,0.685679647373976,0.641571599882083,"5832/1152/2593/162417/4953/5831",6,2.24822834645669 +"WP4258","LncRNA involvement in canonical Wnt signaling and colorectal cancer","21/1022","76/4839",0.106066145727212,0.70949651533743,0.663856388619817,"467/894/1457/22943/2146/8061/2535/8324/2932/4609/85407/51701/4919/4920/8607/5176/6422/64321/6929/7472/7482",21,1.43496503496503 +"WP2338","miRNA Biogenesis","3/1022","6/4839",0.112992161123691,0.735935786266143,0.688594887734403,"5901/6895/57510",3,3.74288518155054 +"WP4571","Urea cycle and related diseases","3/1022","6/4839",0.112992161123691,0.735935786266143,0.688594887734403,"162417/10165/10166",3,3.74288518155054 +"WP1495","Glycine Metabolism","2/1022","3/4839",0.114915958441986,0.738745447127052,0.691223810177358,"4524/6472",2,7.48235294117647 +"WP2355","Corticotropin-releasing hormone signaling pathway","20/1022","73/4839",0.120714965545451,0.766075742884595,0.716796016734124,"408/596/8912/2353/2354/8061/2775/2781/2932/3726/3727/4846/3164/4929/5336/5563/5579/10411/9095/6925",20,1.41754227394268 +"WP4560","MFAP5 effect on permeability and motility of endothelial cells via cytoskeleton rearrangement","6/1022","17/4839",0.12960808652118,0.812101301620054,0.759860867012917,"3690/3708/4026/8076/4638/7414",6,2.04330708661417 +"WP3658","Wnt/beta-catenin Signaling Pathway in Leukemia","7/1022","21/4839",0.135477853961833,0.83826922138884,0.784345470305348,"22943/2932/4609/5914/862/6929/7704",7,1.87339901477833 +"WP2817","Mammary gland development pathway - Pregnancy and lactation (Stage 3 of 4)","8/1022","25/4839",0.138618514440201,0.84711314380123,0.792620485428051,"857/2099/3717/4609/2908/5241/7170/7528",8,1.76354565494837 +"WP2855","Dopaminergic Neurogenesis","4/1022","10/4839",0.141204552384128,0.852393334513942,0.797561014749887,"1028/4487/4929/6571",4,2.49574328749181 +"WP2877","Vitamin D Receptor Pathway","30/1022","118/4839",0.148165697304679,0.883638797178506,0.826796535371702,"5243/11096/154/623/768/898/4345/1017/78989/1474/2308/50486/29923/3400/3488/3663/3726/9365/9314/4609/5734/6304/7869/6422/6517/6546/6696/79689/7078/7168",30,1.28150201612903 +"WP1545","miRNAs involved in DNA damage response","5/1022","14/4839",0.1547702251525,0.912038826791517,0.853369662494987,"25/898/993/1869/4609",5,2.08019228668196 +"WP1541","Energy Metabolism","12/1022","42/4839",0.15854563148268,0.912159802926657,0.853482856539562,"2308/2932/4208/4209/5465/10891/133522/5532/5533/5563/51422/23411",12,1.49980198019802 +"WP2038","Regulation of Microtubule Cytoskeleton","12/1022","42/4839",0.15854563148268,0.912159802926657,0.853482856539562,"25/9212/983/1073/1808/2048/2932/11004/3984/4131/3925/11076",12,1.49980198019802 +"WP117","GPCRs, Other","7/1022","22/4839",0.1644335990261,0.912159802926657,0.853482856539562,"154/1951/1909/1880/59352/5737/1901",7,1.74804597701149 +"WP2879","Farnesoid X Receptor Pathway","3/1022","7/4839",0.167689983972375,0.912159802926657,0.853482856539562,"5244/2289/10891",3,2.80642787046124 +"WP322","Osteoblast Signaling","3/1022","7/4839",0.167689983972375,0.912159802926657,0.853482856539562,"3690/5156/5745",3,2.80642787046124 +"WP3407","FTO Obesity Variant Mechanism","3/1022","7/4839",0.167689983972375,0.912159802926657,0.853482856539562,"84159/10891/63976",3,2.80642787046124 +"WP3947","Serotonin and anxiety","3/1022","7/4839",0.167689983972375,0.912159802926657,0.853482856539562,"2353/84812/5579",3,2.80642787046124 +"WP3594","Circadian rhythm related genes","34/1022","138/4839",0.177587188667422,0.920698826812516,0.861472586491243,"191/1019/1390/1408/1471/1958/1960/2146/2932/3066/3398/3400/3569/3727/3778/7071/687/56339/4804/4841/5187/8864/8863/5465/10891/5563/5591/5730/6095/23411/8914/7153/7298/9099",34,1.22860868888197 +"WP4321","Thermogenesis","23/1022","90/4839",0.180110321104423,0.920698826812516,0.861472586491243,"86/108/196883/111/115/353500/656/90993/9586/2260/23028/11343/4881/4893/10891/63976/5563/51422/5592/6196/6597/6598/6602",23,1.28860203487069 +"WP4259","Disorders of Folate Metabolism and Transport","4/1022","11/4839",0.186569932910234,0.920698826812516,0.861472586491243,"2618/4524/6472/7298",4,2.13864720740949 +"WP2840","Hair Follicle Development: Cytodifferentiation (Part 3 of 3)","15/1022","56/4839",0.187328788615833,0.920698826812516,0.861472586491243,"6868/4345/947/22943/1959/2353/2354/3479/3488/4487/4772/2908/6422/6929/6925",15,1.37186039189091 +"WP2197","Endothelin Pathways","7/1022","23/4839",0.195858426981202,0.920698826812516,0.861472586491243,"790/1264/1909/1910/4638/4846/10267",7,1.63836206896552 +"WP3599","Transcription factor regulation in adipogenesis","6/1022","19/4839",0.196272918961637,0.920698826812516,0.861472586491243,"1052/2308/3569/2908/10891/6517",6,1.72804360993337 +"WP4288","MTHFR deficiency","6/1022","19/4839",0.196272918961637,0.920698826812516,0.861472586491243,"501/1786/1788/1789/2906/4524",6,1.72804360993337 +"WP1995","Effects of Nitric Oxide","2/1022","4/4839",0.198177520214758,0.920698826812516,0.861472586491243,"316/4846",2,3.74019607843137 +"WP2542","Sulindac Metabolic Pathway","2/1022","4/4839",0.198177520214758,0.920698826812516,0.861472586491243,"4482/253827",2,3.74019607843137 +"WP334","GPCRs, Class B Secretin-like","2/1022","4/4839",0.198177520214758,0.920698826812516,0.861472586491243,"5745/7434",2,3.74019607843137 +"WP4720","Eicosanoid metabolism via Cytochrome P450 Mono-Oxygenases (CYP) pathway","2/1022","4/4839",0.198177520214758,0.920698826812516,0.861472586491243,"2053/5465",2,3.74019607843137 +"WP176","Folate Metabolism","12/1022","44/4839",0.20300016766834,0.920698826812516,0.861472586491243,"191/6347/80308/2350/2618/2878/3569/4524/12/6472/6573/6649",12,1.40532178217822 +"WP410","Exercise-induced Circadian Regulation","12/1022","44/4839",0.20300016766834,0.920698826812516,0.861472586491243,"11335/7122/1408/50486/2674/687/5187/8864/5516/5813/11030/10381",12,1.40532178217822 +"WP1438","Influenza A virus infection","1/1022","1/4839",0.211200661293655,0.920698826812516,0.861472586491243,"596",1,Inf +"WP1600","Nicotine Metabolism","1/1022","1/4839",0.211200661293655,0.920698826812516,0.861472586491243,"316",1,Inf +"WP1603","Nicotine Activity on Chromaffin Cells","1/1022","1/4839",0.211200661293655,0.920698826812516,0.861472586491243,"775",1,Inf +"WP4400","FABP4 in ovarian cancer","1/1022","1/4839",0.211200661293655,0.920698826812516,0.861472586491243,"2167",1,Inf +"WP2525","Trans-sulfuration and one carbon metabolism","8/1022","28/4839",0.224525950160984,0.920698826812516,0.861472586491243,"191/1786/1788/1789/25902/4524/6472/7298",8,1.49783037475345 +"WP1455","Serotonin Transporter Activity","3/1022","8/4839",0.228117947120316,0.920698826812516,0.861472586491243,"3690/5516/7041",3,2.24455348380765 +"WP3875","ATR Signaling","3/1022","8/4839",0.228117947120316,0.920698826812516,0.861472586491243,"1111/5883/11073",3,2.24455348380765 +"WP4191","Caloric restriction and aging","3/1022","8/4839",0.228117947120316,0.920698826812516,0.861472586491243,"3479/10891/23411",3,2.24455348380765 +"WP4583","Biomarkers for urea cycle disorders","3/1022","8/4839",0.228117947120316,0.920698826812516,0.861472586491243,"2159/2593/162417",3,2.24455348380765 +"WP2572","Primary Focal Segmental Glomerulosclerosis FSGS","15/1022","58/4839",0.228867396275626,0.920698826812516,0.861472586491243,"375790/1028/1286/22943/2534/3611/3690/3913/4288/55742/5111/11346/7094/7414/7431",15,1.30736010715688 +"WP4657","22q11.2 Deletion Syndrome","15/1022","58/4839",0.228867396275626,0.920698826812516,0.861472586491243,"59/70/8318/7122/2260/9464/5308/5902/65078/6576/6517/6722/27037/7450/7625",15,1.30736010715688 +"WP1528","Physiological and Pathological Hypertrophy of the Heart","7/1022","24/4839",0.229413888363834,0.920698826812516,0.861472586491243,"817/2353/3572/3977/4776/5532/5579",7,1.54158215010142 +"WP3640","Imatinib and Chronic Myeloid Leukemia","6/1022","20/4839",0.233557704720861,0.920698826812516,0.861472586491243,"5243/25/3815/4609/5156/6502",6,1.60419010123735 +"WP3872","Regulation of Apoptosis by Parathyroid Hormone-related Protein","6/1022","20/4839",0.233557704720861,0.920698826812516,0.861472586491243,"596/83596/599/637/2932/4609",6,1.60419010123735 +"WP4538","Regulatory circuits of the STAT3 signaling pathway","17/1022","67/4839",0.235097418060392,0.920698826812516,0.861472586491243,"185/2690/3590/58985/3563/3570/3572/3717/3977/225689/5156/5579/5789/80854/9021/3925/7297",17,1.27440796019901 +"WP4658","Small cell lung cancer","22/1022","89/4839",0.235584492112176,0.920698826812516,0.861472586491243,"10000/596/637/330/898/9134/1017/1019/1028/1163/1164/1286/1288/1869/1870/4616/3908/3913/10319/4609/7185/7186",22,1.23134328358209 +"WP186","Homologous recombination","4/1022","12/4839",0.235794847415441,0.920698826812516,0.861472586491243,"675/5424/5888/25788",4,1.87082514734774 +"WP272","Blood Clotting Cascade","4/1022","12/4839",0.235794847415441,0.920698826812516,0.861472586491243,"2159/2161/2157/7450",4,1.87082514734774 +"WP4584","Biomarkers for pyrimidine metabolism disorders","4/1022","12/4839",0.235794847415441,0.920698826812516,0.861472586491243,"1152/80324/6241/7298",4,1.87082514734774 +"WP2011","SREBF and miR33 in cholesterol and lipid homeostasis","5/1022","16/4839",0.236219699000383,0.920698826812516,0.861472586491243,"2194/5465/10891/6319/23411",5,1.70108161258604 +"WP2878","PPAR Alpha Pathway","5/1022","16/4839",0.236219699000383,0.920698826812516,0.861472586491243,"34/983/1019/4609/5465",5,1.70108161258604 +"WP4304","Oligodendrocyte Specification and differentiation(including remyelination), leading to Myelin Components for CNS","5/1022","16/4839",0.236219699000383,0.920698826812516,0.861472586491243,"2920/2247/3479/5354/6663",5,1.70108161258604 +"WP734","Serotonin Receptor 4/6/7 and NR3C Signaling","5/1022","16/4839",0.236219699000383,0.920698826812516,0.861472586491243,"1958/2908/5906/9252/6722",5,1.70108161258604 +"WP2064","Neural Crest Differentiation","16/1022","64/4839",0.264602321898724,0.999930074063124,0.935607086842689,"2247/2260/2932/3066/9759/10014/10013/4286/4359/4487/4602/4609/5376/388/6663/6925",16,1.24884029158383 +"WP2374","Oncostatin M Signaling Pathway","16/1022","64/4839",0.264602321898724,0.999930074063124,0.935607086842689,"6347/1017/1958/2353/3572/3717/3726/3727/3977/4312/4322/5579/9021/6777/7078/7297",16,1.24884029158383 +"WP3584","MECP2 and Associated Rett Syndrome","13/1022","51/4839",0.268668191587185,0.999930074063124,0.935607086842689,"627/1052/1465/1869/2146/2247/2289/2571/2593/114787/3479/4204/4208",13,1.28128423139116 +"WP24","Peptide GPCRs","6/1022","21/4839",0.272789645024472,0.999930074063124,0.935607086842689,"185/623/624/1909/1910/6869",6,1.49685039370079 +"WP382","MAPK Signaling Pathway","45/1022","195/4839",0.272925856991294,0.999930074063124,0.935607086842689,"10000/408/627/775/8912/781/783/785/1843/1850/2256/2258/2247/2252/2260/2316/2318/2353/55970/3306/3727/120892/9020/1326/23542/4208/4609/4772/51701/3164/4893/4915/8605/5532/5533/5881/5906/10235/9252/6237/6722/3925/7043/7048/7186",45,1.12599795291709 +"WP727","Monoamine Transport","5/1022","17/4839",0.28064120420005,0.999930074063124,0.935607086842689,"995/114907/3690/5516/7041",5,1.55891510980007 +"WP136","Phase I biotransformations, non P450","2/1022","5/4839",0.285772930945712,0.999930074063124,0.935607086842689,"1066/2098",2,2.49281045751634 +"WP2276","Glial Cell Differentiation","2/1022","5/4839",0.285772930945712,0.999930074063124,0.935607086842689,"5354/11076",2,2.49281045751634 +"WP2874","Liver X Receptor Pathway","2/1022","5/4839",0.285772930945712,0.999930074063124,0.935607086842689,"2194/6319",2,2.49281045751634 +"WP58","Monoamine GPCRs","2/1022","5/4839",0.285772930945712,0.999930074063124,0.935607086842689,"150/154",2,2.49281045751634 +"WP3958","GPR40 Pathway","4/1022","13/4839",0.287586215235435,0.999930074063124,0.935607086842689,"5310/5331/5336/5334",4,1.66251910063305 +"WP4211","Transcriptional cascade regulating adipogenesis","4/1022","13/4839",0.287586215235435,0.999930074063124,0.935607086842689,"1052/1959/28999/10365",4,1.66251910063305 +"WP4493","Cells and Molecules involved in local acute inflammatory response ","4/1022","13/4839",0.287586215235435,0.999930074063124,0.935607086842689,"718/730/3569/6403",4,1.66251910063305 +"WP53","ID signaling pathway","4/1022","13/4839",0.287586215235435,0.999930074063124,0.935607086842689,"898/1017/3398/5933",4,1.66251910063305 +"WP4753","Nucleotide Excision Repair","11/1022","43/4839",0.288668808814214,0.999930074063124,0.935607086842689,"3978/5111/5424/5426/5427/5982/5983/5984/5985/6119/7507",11,1.28693743818002 +"WP1591","Heart Development","8/1022","30/4839",0.290225800257854,0.999930074063124,0.935607086842689,"2627/9464/4208/4772/4776/5308/6722/6910",8,1.36094674556213 +"WP4539","Synaptic signaling pathways associated with autism spectrum disorder","10/1022","39/4839",0.299745088293227,0.999930074063124,0.935607086842689,"10000/627/775/1978/2906/2932/4893/4915/5563/51422",10,1.29071827722502 +"WP4022","Pyrimidine metabolism","19/1022","79/4839",0.300328097507354,0.999930074063124,0.935607086842689,"790/1841/5167/953/4830/87178/23649/5424/5426/5427/5436/5437/5557/5558/6241/7083/7298/7371/54963",19,1.1861581920904 +"WP3298","Melatonin metabolism and effects","7/1022","26/4839",0.301387118348426,0.999930074063124,0.935607086842689,"1408/2308/2932/5187/8864/8863/23411",7,1.37858439201452 +"WP3965","Lipid Metabolism Pathway","7/1022","26/4839",0.301387118348426,0.999930074063124,0.935607086842689,"47/10000/2194/29923/5563/51422/5577",7,1.37858439201452 +"WP4204","Tumor suppressor activity of SMARCB1","7/1022","26/4839",0.301387118348426,0.999930074063124,0.935607086842689,"86/1019/2146/5928/6597/6598/6602",7,1.37858439201452 +"WP129","Matrix Metalloproteinases","6/1022","22/4839",0.313423162273861,0.999930074063124,0.935607086842689,"4312/4320/4321/4322/7078/7079",6,1.4029281496063 +"WP4483","Relationship between inflammation, COX-2 and EGFR","6/1022","22/4839",0.313423162273861,0.999930074063124,0.935607086842689,"10000/2099/4312/4893/5733/5734",6,1.4029281496063 +"WP2032","Human Thyroid Stimulating Hormone (TSH) signaling pathway","15/1022","62/4839",0.321510953260271,0.999930074063124,0.935607086842689,"108/898/1017/1019/1869/1958/2353/2775/54331/3717/4609/5144/5906/5909/8458",15,1.19482769549325 +"WP2267","Synaptic Vesicle Pathway","8/1022","31/4839",0.324706678082801,0.999930074063124,0.935607086842689,"477/6571/6581/291/81539/2054/6812/6844",8,1.3014321241746 +"WP4148","Splicing factor NOVA regulated synaptic proteins","8/1022","31/4839",0.324706678082801,0.999930074063124,0.935607086842689,"375790/57863/2037/3778/5332/5590/5909/2054",8,1.3014321241746 +"WP2882","Nuclear Receptors Meta-Pathway","50/1022","222/4839",0.325747953159628,0.999930074063124,0.935607086842689,"5243/5244/34/11214/330/10486/6347/983/1019/1028/1066/80315/1958/2042/2099/2194/2258/2289/2308/4616/2878/2949/1839/3082/3726/3727/8850/23764/4609/89795/2908/5142/5166/5465/10891/5997/6319/6515/6517/201266/55630/8884/6533/6649/10252/5552/2040/7048/7049/1831",50,1.09011627906977 +"WP167","Eicosanoid Synthesis","5/1022","18/4839",0.326479271134302,0.999930074063124,0.935607086842689,"4056/5320/5730/5740/5742",5,1.43862037667347 +"WP4286","Genotoxicity pathway","12/1022","49/4839",0.332768133185829,0.999930074063124,0.935607086842689,"59/7832/1052/1062/8161/144455/79733/3398/3708/1263/5734/29950",12,1.21380786727321 +"WP3414","Initiation of transcription and translation elongation at the HIV-1 LTR","7/1022","27/4839",0.338998676265558,0.999930074063124,0.935607086842689,"3066/9759/10014/4772/4776/5532/5533",7,1.30931034482759 +"WP3935","Leptin Insulin Overlap","4/1022","14/4839",0.340712611268609,0.999930074063124,0.935607086842689,"3717/3953/8835/9021",4,1.4958742632613 +"WP306","Focal Adhesion","39/1022","173/4839",0.349496348233832,0.999930074063124,0.935607086842689,"10000/596/330/857/894/1286/1288/1292/2316/2318/2534/2932/3082/3479/3611/3678/3679/8516/3680/3690/3908/3913/10319/10398/4638/55742/80310/5156/4660/5579/5881/5906/5649/6696/7094/7148/7414/7450/7791",39,1.09045565661013 +"WP2881","Estrogen Receptor Pathway","3/1022","10/4839",0.356189265397442,0.999930074063124,0.935607086842689,"2099/5166/5465",3,1.60241132763213 +"WP4535","Envelope proteins and their potential roles in EDMD physiopathology","10/1022","41/4839",0.361187936985075,0.999930074063124,0.935607086842689,"108/196883/111/115/1072/4893/6722/23345/7043/7112",10,1.20680861915084 +"WP2113","Type III interferon signaling","2/1022","6/4839",0.372163315856723,0.999930074063124,0.935607086842689,"6773/7297",2,1.86911764705882 +"WP3595","mir-124 predicted interactions with cell cycle and differentiation ","2/1022","6/4839",0.372163315856723,0.999930074063124,0.935607086842689,"5725/51804",2,1.86911764705882 +"WP3943","Robo4 and VEGF Signaling Pathways Crosstalk","2/1022","6/4839",0.372163315856723,0.999930074063124,0.935607086842689,"54538/9353",2,1.86911764705882 +"WP4186","Somatroph axis (GH) and its relationship to dietary restriction and aging","2/1022","6/4839",0.372163315856723,0.999930074063124,0.935607086842689,"2308/23411",2,1.86911764705882 +"WP3657","Hematopoietic Stem Cell Gene Regulation by GABP alpha/beta Complex","5/1022","19/4839",0.372981539767396,0.999930074063124,0.935607086842689,"596/1786/1788/1789/6597",5,1.33551060542211 +"WP4141","PI3K/AKT/mTOR - VitD3 Signalling","5/1022","19/4839",0.372981539767396,0.999930074063124,0.935607086842689,"2932/4609/5210/5563/6515",5,1.33551060542211 +"WP3611","Photodynamic therapy-induced AP-1 survival signaling.","11/1022","46/4839",0.375976615531742,0.999930074063124,0.935607086842689,"596/637/890/898/2252/2353/1839/3569/3726/5156/7186",11,1.17569591634874 +"WP28","Selenium Metabolism and Selenoproteins","7/1022","28/4839",0.377156251633749,0.999930074063124,0.935607086842689,"1390/2353/2878/5451/54938/8991/22928",7,1.24663382594417 +"WP4481","Resistin as a regulator of inflammation","7/1022","28/4839",0.377156251633749,0.999930074063124,0.935607086842689,"10000/3569/3708/5331/5332/84812/5336",7,1.24663382594417 +"WP2366","Butyrate-induced histone acetylation","1/1022","2/4839",0.377830037928192,0.999930074063124,0.935607086842689,"47",1,3.73751224289912 +"WP2645","Heroin metabolism","1/1022","2/4839",0.377830037928192,0.999930074063124,0.935607086842689,"1066",1,3.73751224289912 +"WP2826","Cocaine metabolism","1/1022","2/4839",0.377830037928192,0.999930074063124,0.935607086842689,"1066",1,3.73751224289912 +"WP2943","Hypoxia-mediated EMT and Stemness","1/1022","2/4839",0.377830037928192,0.999930074063124,0.935607086842689,"6935",1,3.73751224289912 +"WP4030","SCFA and skeletal muscle substrate metabolism","1/1022","2/4839",0.377830037928192,0.999930074063124,0.935607086842689,"6517",1,3.73751224289912 +"WP4284","Ultraconserved region 339 modulation of tumor suppressor microRNAs in cancer","1/1022","2/4839",0.377830037928192,0.999930074063124,0.935607086842689,"9134",1,3.73751224289912 +"WP2059","Alzheimers Disease","16/1022","69/4839",0.381749900747513,0.999930074063124,0.935607086842689,"6868/322/489/637/775/1020/2906/2932/3708/23385/5331/5332/5532/5533/6263/6622",16,1.12952473836228 +"WP3931","ESC Pluripotency Pathways","19/1022","83/4839",0.387246953331721,0.999930074063124,0.935607086842689,"10097/10000/2256/2258/2247/2252/2260/2353/2535/8322/8324/2932/3572/3977/5156/4092/4093/7472/7482",19,1.11083935692921 +"WP2291","Deregulation of Rab and Rab Effector Genes in Bladder Cancer","4/1022","15/4839",0.394062223247433,0.999930074063124,0.935607086842689,"25924/5873/94120/94122",4,1.35952848722986 +"WP3287","Overview of nanoparticle effects","4/1022","15/4839",0.394062223247433,0.999930074063124,0.935607086842689,"10000/596/3569/5742",4,1.35952848722986 +"WP4462","Platelet-mediated interactions with vascular and circulating cells","4/1022","15/4839",0.394062223247433,0.999930074063124,0.935607086842689,"6347/6401/6403/7043",4,1.35952848722986 +"WP1539","Angiogenesis","6/1022","24/4839",0.396750834891395,0.999930074063124,0.935607086842689,"284/2247/4846/5156/7010/7078",6,1.24639107611549 +"WP3613","Photodynamic therapy-induced unfolded protein response","6/1022","24/4839",0.396750834891395,0.999930074063124,0.935607086842689,"467/811/51726/7184/10130/23645",6,1.24639107611549 +"WP4298","Viral Acute Myocarditis","16/1022","70/4839",0.406170608451993,0.999930074063124,0.935607086842689,"25/596/637/835/857/1676/1677/1756/2534/2932/3569/3908/5881/6442/6443/6444",16,1.10831308445623 +"WP3850","Factors and pathways affecting insulin-like growth factor (IGF1)-Akt signaling","7/1022","29/4839",0.415474616467504,0.999930074063124,0.935607086842689,"114907/2932/3479/3488/3611/84557/10891",7,1.18965517241379 +"WP2813","Mammary gland development pathway - Embryonic development (Stage 1 of 4)","3/1022","11/4839",0.419796515080144,0.999930074063124,0.935607086842689,"4609/6422/9839",3,1.40174190382728 +"WP4792","Purine metabolism","3/1022","11/4839",0.419796515080144,0.999930074063124,0.935607086842689,"1716/3251/3704",3,1.40174190382728 +"WP2261","Signaling Pathways in Glioblastoma","18/1022","80/4839",0.423967332282552,0.999930074063124,0.935607086842689,"10000/672/675/894/898/1017/1019/1869/54206/2260/2308/2956/4893/5156/5336/5579/5590/10253",18,1.08581801824958 +"WP4540","Pathways Regulating Hippo Signaling","18/1022","80/4839",0.423967332282552,0.999930074063124,0.935607086842689,"64403/1003/2260/2774/3815/26524/4804/4915/5156/5331/5332/5563/51422/5577/5579/5590/7003/7010",18,1.08581801824958 +"WP4249","Hedgehog Signaling Pathway","8/1022","34/4839",0.430894803926012,0.999930074063124,0.935607086842689,"408/596/91653/894/1455/8452/8643/8405",8,1.15035654680625 +"WP3303","RAC1/PAK1/p38/MMP2 Pathway","14/1022","62/4839",0.438037685008647,0.999930074063124,0.935607086842689,"284/9068/332/1978/2308/4436/4609/4893/5888/6777/3925/7010/7075/10413",14,1.09056712962963 +"WP4008","NO/cGMP/PKG mediated Neuroprotection","6/1022","25/4839",0.438443772084916,0.999930074063124,0.935607086842689,"596/817/2906/4846/4881/5138",6,1.18048072938251 +"WP3940","One carbon metabolism and related pathways","9/1022","39/4839",0.444001129236894,0.999930074063124,0.935607086842689,"23743/1036/1788/2571/2878/4524/6472/6649/7298",9,1.12152023692004 +"WP299","Nuclear Receptors in Lipid Metabolism and Toxicity","4/1022","16/4839",0.44667639799645,0.999930074063124,0.935607086842689,"5243/5244/5465/5914",4,1.24590700720367 +"WP4595","Urea cycle and associated pathways","4/1022","16/4839",0.44667639799645,0.999930074063124,0.935607086842689,"162417/5831/10165/10166",4,1.24590700720367 +"WP4541","Hippo-Merlin Signaling Dysregulation","21/1022","95/4839",0.446750759963151,0.999930074063124,0.935607086842689,"64403/1003/2260/2305/3678/3679/8516/3680/3690/3815/26524/4609/4804/4893/4915/5156/5332/94274/5577/7003/7010",21,1.06114156114156 +"WP4754","IL-18 signaling pathway","48/1022","222/4839",0.453106236341607,0.999930074063124,0.935607086842689,"32/58/59/11096/321/467/596/637/274/330/7832/6347/890/9133/975/2920/1674/2023/2353/1112/2932/3068/26353/3569/3757/10365/84823/9208/4312/4322/4776/3164/51299/5579/5806/8480/22821/23623/9021/10418/6696/83931/3925/6869/7078/7185/10194/80328",48,1.03179211215747 +"WP3617","Photodynamic therapy-induced NF-kB survival signaling","7/1022","30/4839",0.453593821400876,0.999930074063124,0.935607086842689,"599/330/332/2920/3569/4312/6401",7,1.1376311844078 +"WP1531","Vitamin D Metabolism","2/1022","7/4839",0.453952648610461,0.999930074063124,0.935607086842689,"1593/1717",2,1.49490196078431 +"WP3672","LncRNA-mediated mechanisms of therapeutic resistance","2/1022","7/4839",0.453952648610461,0.999930074063124,0.935607086842689,"5243/55384",2,1.49490196078431 +"WP3963","Mevalonate pathway","2/1022","7/4839",0.453952648610461,0.999930074063124,0.935607086842689,"39/4598",2,1.49490196078431 +"WP4519","Cerebral Organic Acidurias, including diseases","2/1022","7/4839",0.453952648610461,0.999930074063124,0.935607086842689,"137872/501",2,1.49490196078431 +"WP399","Wnt Signaling Pathway and Pluripotency","19/1022","86/4839",0.454472351591721,0.999930074063124,0.935607086842689,"894/8061/2535/8322/8324/2932/120892/4609/85407/51701/5048/5516/5521/5579/5590/29127/7472/7482/10009",19,1.06025207958215 +"WP3646","Hepatitis C and Hepatocellular Carcinoma","10/1022","44/4839",0.45540496204186,0.999930074063124,0.935607086842689,"330/332/672/1870/2487/3569/3570/4312/4609/6241",10,1.09945361543827 +"WP4341","Non-genomic actions of 1,25 dihydroxyvitamin D3","13/1022","58/4839",0.455650588772585,0.999930074063124,0.935607086842689,"817/857/6347/3569/9636/4893/5331/5332/5336/5579/5590/6773/7297",13,1.07996916639137 +"WP455","GPCRs, Class A Rhodopsin-like","13/1022","58/4839",0.455650588772585,0.999930074063124,0.935607086842689,"150/154/185/623/624/1909/1910/8477/27198/9934/5733/5734/5737",13,1.07996916639137 +"WP2865","IL1 and megakaryocytes in obesity","5/1022","21/4839",0.465289434707419,0.999930074063124,0.935607086842689,"6347/2205/1839/114548/8991",5,1.16795722713864 +"WP4719","Eicosanoid metabolism via Cyclo Oxygenases (COX)","5/1022","21/4839",0.465289434707419,0.999930074063124,0.935607086842689,"8309/5730/5737/5740/5742",5,1.16795722713864 +"WP4225","Pyrimidine metabolism and related diseases","3/1022","12/4839",0.481130404301712,0.999930074063124,0.935607086842689,"790/6241/7298",3,1.2456656853124 +"WP3942","PPAR signaling pathway","10/1022","45/4839",0.486552568845093,0.999930074063124,0.935607086842689,"34/8309/1593/2167/2172/3611/4312/5465/6319/10580",10,1.06775832862789 +"WP3995","Prion disease pathway","7/1022","31/4839",0.491185904868649,0.999930074063124,0.935607086842689,"596/1879/2260/2534/7184/4208/4684",7,1.08994252873563 +"WP3967","miR-509-3p alteration of YAP1/ECM axis","4/1022","17/4839",0.497764149933803,0.999930074063124,0.935607086842689,"1909/10082/7003/10413",4,1.14976575487381 +"WP2853","Endoderm Differentiation","24/1022","112/4839",0.505795594256087,0.999930074063124,0.935607086842689,"57198/22943/1789/1847/2146/1112/2308/2627/3087/3251/9682/10459/22823/54892/51701/4830/2908/84295/6422/64321/83595/6925/9760/11169",24,1.0190380761523 +"WP3302","eIF5A regulation in response to inhibition of the nuclear export system","1/1022","3/4839",0.509287077671294,0.999930074063124,0.935607086842689,"7514",1,1.86826640548482 +"WP4342","Vitamins A and D - action mechanisms","1/1022","3/4839",0.509287077671294,0.999930074063124,0.935607086842689,"5914",1,1.86826640548482 +"WP550","Biogenic Amine Synthesis","1/1022","3/4839",0.509287077671294,0.999930074063124,0.935607086842689,"2571",1,1.86826640548482 +"WP733","Serotonin Receptor 2 and STAT3 Signaling","1/1022","3/4839",0.509287077671294,0.999930074063124,0.935607086842689,"3717",1,1.86826640548482 +"WP364","IL-6 signaling pathway","9/1022","41/4839",0.509627652138112,0.999930074063124,0.935607086842689,"2932/3569/3570/3572/3717/3726/51701/9021/7297",9,1.05086994076999 +"WP3878","ATM Signaling Network in Development and Disease ","9/1022","41/4839",0.509627652138112,0.999930074063124,0.935607086842689,"9212/699/983/1020/1111/11200/9759/3150/5591",9,1.05086994076999 +"WP2911","miRNA targets in ECM and membrane receptors","5/1022","22/4839",0.509955985423171,0.999930074063124,0.935607086842689,"1291/1292/3913/6383/7148",5,1.09896465961016 +"WP4320","The effect of progerin on the involved genes in Hutchinson-Gilford Progeria Syndrome","5/1022","22/4839",0.509955985423171,0.999930074063124,0.935607086842689,"11335/1869/3066/23028/5928",5,1.09896465961016 +"WP4357","NRF2-ARE regulation","5/1022","22/4839",0.509955985423171,0.999930074063124,0.935607086842689,"8452/2048/2534/2932/192111",5,1.09896465961016 +"WP465","Tryptophan metabolism","6/1022","27/4839",0.519721365903094,0.999930074063124,0.935607086842689,"38/217/316/23498/11185/4129",6,1.06749156355456 +"WP2034","Leptin signaling pathway","16/1022","75/4839",0.527975666140062,0.999930074063124,0.935607086842689,"32/1073/1978/2099/2308/2534/2932/3717/3953/4846/5140/5336/5563/8835/9021/6777",16,1.01304040165785 +"WP1423","Ganglio Sphingolipid Metabolism","2/1022","8/4839",0.52923088244051,0.999930074063124,0.935607086842689,"30815/6489",2,1.24542483660131 +"WP2007","Iron metabolism in placenta","2/1022","8/4839",0.52923088244051,0.999930074063124,0.935607086842689,"55240/7037",2,1.24542483660131 +"WP3585","Cytosine methylation","2/1022","8/4839",0.52923088244051,0.999930074063124,0.935607086842689,"1786/4204",2,1.24542483660131 +"WP561","Heme Biosynthesis","2/1022","8/4839",0.52923088244051,0.999930074063124,0.935607086842689,"1371/3145",2,1.24542483660131 +"WP3941","Oxidative Damage","8/1022","37/4839",0.535146493773912,0.999930074063124,0.935607086842689,"596/715/716/1028/5111/7133/7185/7186",8,1.03053798544515 +"WP4312","Rett syndrome causing genes","8/1022","37/4839",0.535146493773912,0.999930074063124,0.935607086842689,"2775/10014/10765/4204/4208/6597/6812/6925",8,1.03053798544515 +"WP4673","Genes involved in male infertility","18/1022","85/4839",0.538343473407803,0.999930074063124,0.935607086842689,"5243/3983/596/675/1191/2099/2775/222229/4524/340719/4846/143689/8787/6649/9319/7320/7516/7517",18,1.00344889100315 +"WP1434","Osteopontin Signaling","3/1022","13/4839",0.539193661021595,0.999930074063124,0.935607086842689,"3690/9020/6696",3,1.12080471050049 +"WP3301","MFAP5-mediated ovarian cancer cell motility and invasiveness","3/1022","13/4839",0.539193661021595,0.999930074063124,0.935607086842689,"3690/8076/6263",3,1.12080471050049 +"WP3853","ERK Pathway in Huntington's Disease","3/1022","13/4839",0.539193661021595,0.999930074063124,0.935607086842689,"627/4915/9252",3,1.12080471050049 +"WP4746","Thyroid hormones production and their peripheral downstream signalling effects regarding congenital hypothyroidism","14/1022","66/4839",0.541760028083866,0.999930074063124,0.935607086842689,"10000/2260/2308/2932/3690/23028/11343/4881/10891/63976/9728/6567/7067/8458",14,1.00560897435897 +"WP1742","TP53 Network","4/1022","18/4839",0.546702686733661,0.999930074063124,0.935607086842689,"25/596/637/4609",4,1.0673589671625 +"WP1544","MicroRNAs in cardiomyocyte hypertrophy","16/1022","76/4839",0.551661136773016,0.999930074063124,0.935607086842689,"817/2247/2535/2932/9759/10014/3479/3572/9020/4638/4776/5320/5532/5579/5592/1827",16,0.995891318754142 +"WP3668","Hypothesized Pathways in Pathogenesis of Cardiovascular Disease","5/1022","23/4839",0.553022481857523,0.999930074063124,0.935607086842689,"185/2201/2316/7048/7049",5,1.03763793291817 +"WP3929","Chemokine signaling pathway","26/1022","124/4839",0.5530567389186,0.999930074063124,0.935607086842689,"108/196883/111/115/10000/408/6366/6376/6387/9844/2791/55970/54331/2788/2869/2932/3717/4893/5331/5332/5579/5590/5906/10235/6773/6777",26,0.990636013441521 +"WP4561","Cell migration and invasion through p75NTR","6/1022","28/4839",0.558602760703824,0.999930074063124,0.935607086842689,"10000/627/1944/1945/4804/4915",6,1.01870078740157 +"WP4756","Renin Angiotensin Aldosterone System (RAAS)","6/1022","28/4839",0.558602760703824,0.999930074063124,0.935607086842689,"185/817/90993/9586/1511/3708",6,1.01870078740157 +"WP363","Wnt Signaling Pathway (Netpath)","10/1022","48/4839",0.576782391898208,0.999930074063124,0.935607086842689,"2932/4609/51701/8395/5579/4919/4920/6929/6925/7010",10,0.982681506136884 +"WP3888","VEGFA-VEGFR2 Signaling Pathway","84/1022","403/4839",0.577632731826315,0.999930074063124,0.935607086842689,"25/32/52/9510/56999/154/81575/22899/51309/596/274/332/781/811/857/6347/10574/1003/1072/84952/79094/22820/1397/1465/22943/11080/1847/1958/1960/2048/2078/2308/6624/2534/2932/1839/9759/10014/10525/3690/9365/9079/3984/4208/4343/4629/91624/4772/4846/3164/4929/8013/55872/57326/10130/5331/5496/5563/5579/5590/5592/5717/326624/5906/1827/10231/57381/9252/1901/6386/23753/6401/114789/6546/6722/6747/10963/6886/7111/8718/7148/7170/7220/7414",84,0.981986618630983 +"WP2857","Mesodermal Commitment Pathway","24/1022","116/4839",0.583056439508221,0.999930074063124,0.935607086842689,"84159/57198/22943/1789/2260/8322/2627/3251/3624/3717/9314/4211/22823/54892/51701/84295/5308/64321/6722/6925/7003/9760/11169/10413",24,0.973686503441666 +"WP3580","Methionine De Novo and Salvage Pathway","4/1022","19/4839",0.593028325924665,0.999930074063124,0.935607086842689,"191/4482/253827/4953",4,0.995939751146038 +"WP197","Cholesterol Biosynthesis Pathway","3/1022","14/4839",0.593324856408773,0.999930074063124,0.935607086842689,"1717/4598/6713",3,1.01864573110893 +"WP3969","H19 action Rb-E2F1 signaling and CDK-Beta-catenin activity","3/1022","14/4839",0.593324856408773,0.999930074063124,0.935607086842689,"1019/1869/6659",3,1.01864573110893 +"WP4558","Overview of interferons-mediated signaling pathway","3/1022","14/4839",0.593324856408773,0.999930074063124,0.935607086842689,"3717/6773/7297",3,1.01864573110893 +"WP530","Cytokines and Inflammatory Response","3/1022","14/4839",0.593324856408773,0.999930074063124,0.935607086842689,"1440/2920/3569",3,1.01864573110893 +"WP26","Signal Transduction of S1P Receptor","5/1022","24/4839",0.594146599480189,0.999930074063124,0.935607086842689,"10000/5331/29127/1901/9294",5,0.982766651141127 +"WP3972","PDGFR-beta pathway","6/1022","29/4839",0.595940537461125,0.999930074063124,0.935607086842689,"5610/2353/3717/5579/6722/6777",6,0.97415268743581 +"WP2436","Dopamine metabolism","2/1022","9/4839",0.597098605568243,0.999930074063124,0.935607086842689,"4129/5516",2,1.0672268907563 +"WP3930","EDA Signalling in Hair Follicle Development","2/1022","9/4839",0.597098605568243,0.999930074063124,0.935607086842689,"22943/128178",2,1.0672268907563 +"WP4292","Methionine metabolism leading to Sulphur Amino Acids and related disorders","2/1022","9/4839",0.597098605568243,0.999930074063124,0.935607086842689,"191/1036",2,1.0672268907563 +"WP4290","Metabolic reprogramming in colon cancer","8/1022","39/4839",0.600413887507652,0.999930074063124,0.935607086842689,"47/2023/2194/2618/10606/5471/5831/6472",8,0.963542660813132 +"WP51","Regulation of Actin Cytoskeleton","24/1022","117/4839",0.601698390294853,0.999930074063124,0.935607086842689,"9459/623/624/1072/1073/26999/81624/2256/2258/2247/2252/2260/28964/55970/2934/3984/4638/4893/5156/5305/8395/5881/6237/7414",24,0.962958174413343 +"WP1604","Codeine and Morphine Metabolism","1/1022","4/4839",0.61299026349014,0.999930074063124,0.935607086842689,"5243",1,1.24518445968005 +"WP2289","Drug Induction of Bile Acid Pathway","1/1022","4/4839",0.61299026349014,0.999930074063124,0.935607086842689,"5243",1,1.24518445968005 +"WP3924","Hfe effect on hepcidin production","1/1022","4/4839",0.61299026349014,0.999930074063124,0.935607086842689,"4092",1,1.24518445968005 +"WP4228","Vitamin B6-dependent and responsive disorders","1/1022","4/4839",0.61299026349014,0.999930074063124,0.935607086842689,"501",1,1.24518445968005 +"WP4399","MicroRNA network associated with chronic lymphocytic leukemia","1/1022","4/4839",0.61299026349014,0.999930074063124,0.935607086842689,"596",1,1.24518445968005 +"WP4524","The alternative pathway of fetal androgen synthesis","1/1022","4/4839",0.61299026349014,0.999930074063124,0.935607086842689,"8630",1,1.24518445968005 +"WP2036","TNF related weak inducer of apoptosis (TWEAK) Signaling Pathway","8/1022","40/4839",0.631256528279167,0.999930074063124,0.935607086842689,"330/6347/2932/3569/9020/8742/7185/7186",8,0.93318540433925 +"WP2332","Interleukin-11 Signaling Pathway","8/1022","40/4839",0.631256528279167,0.999930074063124,0.935607086842689,"596/332/2534/3590/3572/3717/9021/7297",8,0.93318540433925 +"WP2586","Aryl Hydrocarbon Receptor Netpath","8/1022","40/4839",0.631256528279167,0.999930074063124,0.935607086842689,"1017/1869/2099/1316/4609/135112/4893/84722",8,0.93318540433925 +"WP1533","Vitamin B12 Metabolism","6/1022","30/4839",0.631527216476187,0.999930074063124,0.935607086842689,"6347/3569/4524/12/6472/6649",6,0.933316929133858 +"WP3844","PI3K-AKT-mTOR signaling pathway and therapeutic opportunities","6/1022","30/4839",0.631527216476187,0.999930074063124,0.935607086842689,"1978/2308/2932/4846/4893/7942",6,0.933316929133858 +"WP1424","Globo Sphingolipid Metabolism","4/1022","20/4839",0.636421369543438,0.999930074063124,0.935607086842689,"256435/27090/30815/6489",4,0.933447937131631 +"WP262","EBV LMP1 signaling","4/1022","20/4839",0.636421369543438,0.999930074063124,0.935607086842689,"9020/4215/9260/7185",4,0.933447937131631 +"WP357","Fatty Acid Biosynthesis","4/1022","20/4839",0.636421369543438,0.999930074063124,0.935607086842689,"32/47/2194/6319",4,0.933447937131631 +"WP254","Apoptosis","16/1022","80/4839",0.64167988935281,0.999930074063124,0.935607086842689,"596/599/637/330/332/835/1676/1677/3070/3479/3663/4609/7133/8718/7185/7186",16,0.93265407554672 +"WP732","Serotonin Receptor 2 and ELK-SRF/GATA4 signaling","3/1022","15/4839",0.643140514699108,0.999930074063124,0.935607086842689,"3708/4893/6722",3,0.93351324828263 +"WP2333","Trans-sulfuration pathway","2/1022","10/4839",0.657325940610943,0.999930074063124,0.935607086842689,"191/1786",2,0.933578431372549 +"WP3630","NAD metabolism, sirtuins and aging","2/1022","10/4839",0.657325940610943,0.999930074063124,0.935607086842689,"2308/23411",2,0.933578431372549 +"WP3892","Development of pulmonary dendritic cells and macrophage subsets","2/1022","10/4839",0.657325940610943,0.999930074063124,0.935607086842689,"3398/6925",2,0.933578431372549 +"WP3971","Role of Osx and miRNAs in tooth development","2/1022","10/4839",0.657325940610943,0.999930074063124,0.935607086842689,"22943/9314",2,0.933578431372549 +"WP3651","Pathways Affected in Adenoid Cystic Carcinoma","11/1022","56/4839",0.659389444502175,0.999930074063124,0.935607086842689,"84159/672/1111/11200/93986/9863/4602/4609/4781/5591/29128",11,0.91201230904495 +"WP560","TGF-beta Receptor Signaling","9/1022","46/4839",0.659799833104285,0.999930074063124,0.935607086842689,"2353/3624/4092/4093/6696/7048/7049/9839/23090",9,0.907659881006377 +"WP4718","Cholesterol metabolism (includes both Bloch and Kandutsch-Russell pathways)","8/1022","41/4839",0.660742316434575,0.999930074063124,0.935607086842689,"9023/1593/1717/10682/2194/4598/6319/6713",8,0.904667981591059 +"WP2371","Parkinsons Disease Pathway","6/1022","31/4839",0.665209131261997,0.999930074063124,0.935607086842689,"835/898/9134/120892/6622/23208",6,0.895748031496063 +"WP3527","Preimplantation Embryo","6/1022","31/4839",0.665209131261997,0.999930074063124,0.935607086842689,"1958/2354/9314/4306/6597/7538",6,0.895748031496063 +"WP619","Type II interferon signaling (IFNG)","6/1022","31/4839",0.665209131261997,0.999930074063124,0.935607086842689,"5610/2537/9636/3717/9021/6773",6,0.895748031496063 +"WP4262","Breast cancer pathway","24/1022","121/4839",0.672534826004334,0.999930074063124,0.935607086842689,"10000/672/675/1019/1457/1869/1870/2099/2247/2252/2260/2353/2535/8324/4616/2932/3479/3815/4609/4893/5241/5888/7472/7482",24,0.922256884903828 +"WP4482","Vitamin D in inflammatory diseases","4/1022","21/4839",0.676687707151914,0.999930074063124,0.935607086842689,"1843/3569/4772/2908",4,0.878308101236565 +"WP138","Androgen receptor signaling pathway","16/1022","82/4839",0.683077882553455,0.999930074063124,0.935607086842689,"672/811/857/898/11034/2288/2316/2308/2932/8850/23028/5883/5901/388/23411/7041",16,0.903909874088801 +"WP107","Translation Factors","9/1022","47/4839",0.68642269962721,0.999930074063124,0.935607086842689,"1915/1933/1936/27102/5610/1975/1978/1979/8637",9,0.883540291993557 +"WP2916","Interactome of polycomb repressive complex 2 (PRC2) ","3/1022","16/4839",0.688478387784337,0.999930074063124,0.935607086842689,"2146/22823/5928",3,0.86147807050653 +"WP3664","Regulation of Wnt/B-catenin Signaling by Small Molecule Compounds","3/1022","16/4839",0.688478387784337,0.999930074063124,0.935607086842689,"8324/2932/6925",3,0.86147807050653 +"WP3927","BMP Signaling Pathway in Eyelid Development","3/1022","16/4839",0.688478387784337,0.999930074063124,0.935607086842689,"3625/5308/6422",3,0.86147807050653 +"WP4331","Neovascularisation processes","7/1022","37/4839",0.692135111733692,0.999930074063124,0.935607086842689,"94/284/6387/2048/3815/4093/7043",7,0.870574712643678 +"WP2805","exRNA mechanism of action and biogenesis","1/1022","5/4839",0.694794596626247,0.999930074063124,0.935607086842689,"57510",1,0.933643486777669 +"WP311","Synthesis and Degradation of Ketone Bodies","1/1022","5/4839",0.694794596626247,0.999930074063124,0.935607086842689,"38",1,0.933643486777669 +"WP3596","miR-517 relationship with ARCN1 and USP1","1/1022","5/4839",0.694794596626247,0.999930074063124,0.935607086842689,"3398",1,0.933643486777669 +"WP4147","PTF1A related regulatory pathway","1/1022","5/4839",0.694794596626247,0.999930074063124,0.935607086842689,"8850",1,0.933643486777669 +"WP4518","Gamma-Glutamyl Cycle for the biosynthesis and degradation of glutathione, including diseases","1/1022","5/4839",0.694794596626247,0.999930074063124,0.935607086842689,"79017",1,0.933643486777669 +"WP678","Arachidonate Epoxygenase / Epoxide Hydrolase","1/1022","5/4839",0.694794596626247,0.999930074063124,0.935607086842689,"2053",1,0.933643486777669 +"WP2870","Extracellular vesicle-mediated signaling in recipient cells","5/1022","27/4839",0.703691151331918,0.999930074063124,0.935607086842689,"3082/4893/7043/7048/7049",5,0.848082595870207 +"WP4150","Wnt Signaling in Kidney Disease","5/1022","27/4839",0.703691151331918,0.999930074063124,0.935607086842689,"2535/8322/8324/7472/7482",5,0.848082595870207 +"WP2380","Brain-Derived Neurotrophic Factor (BDNF) signaling pathway","24/1022","123/4839",0.705339946522517,0.999930074063124,0.935607086842689,"32/6868/627/1020/1072/1457/1808/1958/1959/1978/2353/2534/2932/3717/4208/4684/4776/4804/4915/5563/5906/9252/6696/6777",24,0.90313961255845 +"WP4239","Epithelial to mesenchymal transition in colorectal cancer","25/1022","128/4839",0.706030484524258,0.999930074063124,0.935607086842689,"10000/5010/7122/1286/1288/2146/2305/2535/8322/8324/2932/3398/3678/26524/4209/5310/5928/7043/7048/117581/7472/7482/7483/6935/9839",25,0.904168817131005 +"WP2290","RalA downstream regulated genes","2/1022","11/4839",0.710110257395565,0.999930074063124,0.935607086842689,"4893/5881",2,0.82962962962963 +"WP4495","IL-10 Anti-inflammatory Signaling Pathway ","2/1022","11/4839",0.710110257395565,0.999930074063124,0.935607086842689,"3569/6773",2,0.82962962962963 +"WP4553","FBXL10 enhancement of MAP/ERK signaling in diffuse large B-cell lymphoma","2/1022","11/4839",0.710110257395565,0.999930074063124,0.935607086842689,"2146/84759",2,0.82962962962963 +"WP4629","Computational Model of Aerobic Glycolysis","2/1022","11/4839",0.710110257395565,0.999930074063124,0.935607086842689,"2023/7167",2,0.82962962962963 +"WP2035","Follicle Stimulating Hormone (FSH) signaling pathway","4/1022","22/4839",0.713739200869411,0.999930074063124,0.935607086842689,"374/627/1978/2308",4,0.829294913774285 +"WP716","Vitamin A and Carotenoid Metabolism","4/1022","22/4839",0.713739200869411,0.999930074063124,0.935607086842689,"83875/5914/5947/116362",4,0.829294913774285 +"WP127","IL-5 Signaling Pathway","7/1022","38/4839",0.720091281028044,0.999930074063124,0.935607086842689,"596/695/2353/2932/3717/4609/6777",7,0.842269187986652 +"WP2828","Bladder Cancer","7/1022","38/4839",0.720091281028044,0.999930074063124,0.935607086842689,"1019/1869/1839/4312/4609/4893/9252",7,0.842269187986652 +"WP2875","Constitutive Androstane Receptor Pathway","3/1022","17/4839",0.729345724466594,0.999930074063124,0.935607086842689,"5243/2308/10891",3,0.79973363241273 +"WP3645","NAD+ biosynthetic pathways","3/1022","17/4839",0.729345724466594,0.999930074063124,0.935607086842689,"683/10038/23411",3,0.79973363241273 +"WP3670","Simplified Interaction Map Between LOXL4 and Oxidative Stress Pathway","3/1022","17/4839",0.729345724466594,0.999930074063124,0.935607086842689,"2252/5310/23411",3,0.79973363241273 +"WP4747","Netrin-UNC5B signaling Pathway","8/1022","44/4839",0.740317238416276,0.999930074063124,0.935607086842689,"6347/1003/2534/9423/56963/54538/6401/10413",8,0.828621520929213 +"WP12","Osteoclast Signaling","2/1022","12/4839",0.755906228014336,0.999930074063124,0.935607086842689,"3690/6696",2,0.746470588235294 +"WP3849","MAPK and NFkB Signalling Pathways Inhibited by Yersinia YopJ","2/1022","12/4839",0.755906228014336,0.999930074063124,0.935607086842689,"9020/6237",2,0.746470588235294 +"WP4724","Omega-9 FA synthesis","2/1022","12/4839",0.755906228014336,0.999930074063124,0.935607086842689,"2194/6319",2,0.746470588235294 +"WP15","Selenium Micronutrient Network","9/1022","50/4839",0.758229156843588,0.999930074063124,0.935607086842689,"6347/80308/2878/3569/4524/5742/22928/12/6649",9,0.818240916861291 +"WP2249","Metastatic brain tumor","1/1022","6/4839",0.759320852780151,0.999930074063124,0.935607086842689,"4609",1,0.746718903036239 +"WP2456","HIF1A and PPARG regulation of glycolysis","1/1022","6/4839",0.759320852780151,0.999930074063124,0.935607086842689,"7167",1,0.746718903036239 +"WP2485","NAD Biosynthesis II (from tryptophan)","1/1022","6/4839",0.759320852780151,0.999930074063124,0.935607086842689,"23498",1,0.746718903036239 +"WP3655","Hypothetical Craniofacial Development Pathway","1/1022","6/4839",0.759320852780151,0.999930074063124,0.935607086842689,"7043",1,0.746718903036239 +"WP4216","Chromosomal and microsatellite instability in colorectal cancer ","13/1022","71/4839",0.763504992842297,0.999930074063124,0.935607086842689,"10000/596/332/2353/4616/2932/4436/2956/4609/9423/5881/7043/7048",13,0.83501930897782 +"WP2203","Thymic Stromal LymphoPoietin (TSLP) Signaling Pathway","8/1022","45/4839",0.763755951174917,0.999930074063124,0.935607086842689,"695/1978/2534/3569/3717/4609/6777/85480",8,0.806013113705421 +"WP408","Oxidative Stress","5/1022","29/4839",0.764251182556945,0.999930074063124,0.935607086842689,"2353/2878/3726/4784/6649",5,0.776999344477221 +"WP2876","Pregnane X Receptor pathway","3/1022","18/4839",0.765874332013181,0.999930074063124,0.935607086842689,"5243/2308/10891",3,0.746221786064769 +"WP404","Nucleotide Metabolism","3/1022","18/4839",0.765874332013181,0.999930074063124,0.935607086842689,"3251/5424/6241",3,0.746221786064769 +"WP4301","Inhibition of exosome biogenesis and secretion by Manumycin A in CRPC cells","3/1022","18/4839",0.765874332013181,0.999930074063124,0.935607086842689,"4893/5873/6237",3,0.746221786064769 +"WP4533","Transcription co-factors SKI and SKIL protein partners","3/1022","18/4839",0.765874332013181,0.999930074063124,0.935607086842689,"26524/4204/7003",3,0.746221786064769 +"WP268","Notch Signaling","7/1022","40/4839",0.77066765868094,0.999930074063124,0.935607086842689,"6868/151636/3066/2648/8850/4242/23385",7,0.790804597701149 +"WP314","Fas Ligand (FasL) pathway and Stress induction of Heat Shock Proteins (HSP) regulation","7/1022","40/4839",0.77066765868094,0.999930074063124,0.935607086842689,"58/596/1676/1677/4001/84823/5591",7,0.790804597701149 +"WP185","Integrin-mediated Cell Adhesion","16/1022","87/4839",0.773755263751992,0.999930074063124,0.935607086842689,"10000/857/2534/3611/3678/3679/8516/3680/3690/5881/5906/10580/7094/7145/7414/7791",16,0.839134208831518 +"WP1403","AMP-activated Protein Kinase (AMPK) Signaling","10/1022","56/4839",0.774278860742701,0.999930074063124,0.935607086842689,"32/890/891/1978/2194/3953/133522/5563/51422/6517",10,0.810061866300052 +"WP3529","Zinc homeostasis","4/1022","24/4839",0.77825983963447,0.999930074063124,0.935607086842689,"4499/55676/201266/55630",4,0.745972495088409 +"WP4767","FGFR3 signalling in chondrocyte proliferation and terminal differentiation","4/1022","24/4839",0.77825983963447,0.999930074063124,0.935607086842689,"4882/5745/5933/7067",4,0.745972495088409 +"WP366","TGF-beta Signaling Pathway","24/1022","128/4839",0.778583806473659,0.999930074063124,0.935607086842689,"467/857/9133/983/2353/2354/3690/3726/3727/7071/1316/4208/4312/4321/4609/5933/4092/7027/7041/7048/7049/10413/6935/9839",24,0.858563280406968 +"WP2795","Cardiac Hypertrophic Response","9/1022","51/4839",0.779407731793952,0.999930074063124,0.935607086842689,"817/2247/2932/9759/10014/3479/9020/5320/5592",9,0.798547454519814 +"WP524","G13 Signaling Pathway","6/1022","35/4839",0.779438941079249,0.999930074063124,0.935607086842689,"1072/1073/11113/3984/5305/6242",6,0.771382025522672 +"WP2328","Allograft Rejection","11/1022","62/4839",0.78878849901806,0.999930074063124,0.935607086842689,"5243/185/23743/718/730/6366/6387/120892/5156/5590/7431",11,0.803436706037509 +"WP2369","Histone Modifications","5/1022","30/4839",0.790795975773096,0.999930074063124,0.935607086842689,"2146/26040/80854/9869/56950",5,0.745722713864307 +"WP2447","Amyotrophic lateral sclerosis (ALS)","5/1022","30/4839",0.790795975773096,0.999930074063124,0.935607086842689,"596/637/1471/5532/5533",5,0.745722713864307 +"WP49","IL-2 Signaling Pathway","7/1022","41/4839",0.793299346790486,0.999930074063124,0.935607086842689,"596/894/2353/2534/4609/9021/6777",7,0.767342799188641 +"WP4504","Cysteine and methionine catabolism","2/1022","13/4839",0.795308512922107,0.999930074063124,0.935607086842689,"191/1036",2,0.67843137254902 +"WP4705","Pathways of nucleic acid metabolism and innate immune sensing","2/1022","13/4839",0.795308512922107,0.999930074063124,0.935607086842689,"103/10535",2,0.67843137254902 +"WP585","Interferon type I signaling pathways","9/1022","52/4839",0.799212112621598,0.999930074063124,0.935607086842689,"1975/1978/2534/27250/5906/9252/9021/6773/7297",9,0.779769967170963 +"WP4565","Neural Crest Cell Migration in Cancer","6/1022","36/4839",0.802839816817109,0.999930074063124,0.935607086842689,"10000/627/2048/2353/4804/4915",6,0.745472440944882 +"WP205","IL-7 Signaling Pathway","4/1022","25/4839",0.80591460788313,0.999930074063124,0.935607086842689,"2534/2932/4609/6777",4,0.710262887080176 +"WP106","Alanine and aspartate metabolism","1/1022","7/4839",0.8102155534751,0.999930074063124,0.935607086842689,"2571",1,0.622102513875286 +"WP229","Irinotecan Pathway","1/1022","7/4839",0.8102155534751,0.999930074063124,0.935607086842689,"1066",1,0.622102513875286 +"WP4236","Disorders of the Krebs cycle","1/1022","7/4839",0.8102155534751,0.999930074063124,0.935607086842689,"55526",1,0.622102513875286 +"WP4507","Molybdenum cofactor (Moco) biosynthesis","1/1022","7/4839",0.8102155534751,0.999930074063124,0.935607086842689,"316",1,0.622102513875286 +"WP704","Methylation Pathways","1/1022","7/4839",0.8102155534751,0.999930074063124,0.935607086842689,"11185",1,0.622102513875286 +"WP4542","Overview of leukocyte-intrinsic Hippo pathway functions","5/1022","31/4839",0.814947292025231,0.999930074063124,0.935607086842689,"2308/26524/5906/7003/10413",5,0.716851977913925 +"WP4721","Eicosanoid metabolism via Lipo Oxygenases (LOX)","3/1022","20/4839",0.82684676790972,0.999930074063124,0.935607086842689,"8309/4056/5465",3,0.658084627374011 +"WP4725","Sphingolipid Metabolism (general overview)","3/1022","20/4839",0.82684676790972,0.999930074063124,0.935607086842689,"29956/166929/6609",3,0.658084627374011 +"WP304","Kit receptor signaling pathway","10/1022","59/4839",0.828430322217722,0.999930074063124,0.935607086842689,"596/695/2353/2534/3717/3726/3815/4286/5579/6777",10,0.759861256755667 +"WP1584","Type II diabetes mellitus","2/1022","14/4839",0.828972455674329,0.999930074063124,0.935607086842689,"5590/6517",2,0.621732026143791 +"WP1946","Cori Cycle","2/1022","14/4839",0.828972455674329,0.999930074063124,0.935607086842689,"6517/7167",2,0.621732026143791 +"WP3644","NAD+ metabolism","2/1022","14/4839",0.828972455674329,0.999930074063124,0.935607086842689,"4907/23411",2,0.621732026143791 +"WP2884","NRF2 pathway","17/1022","96/4839",0.829421211575612,0.999930074063124,0.935607086842689,"1066/1958/2042/2258/2878/2949/1839/3082/23764/6515/6517/201266/55630/8884/6533/6649/7048",17,0.800377857547705 +"WP3981","miRNA regulation of prostate cancer signaling pathways","5/1022","32/4839",0.836811213554681,0.999930074063124,0.935607086842689,"10000/596/90993/2308/2932",5,0.690119814996904 +"WP673","ErbB Signaling Pathway","14/1022","81/4839",0.839063333601451,0.999930074063124,0.935607086842689,"25/10000/374/817/1978/2308/2932/1839/4609/4893/9542/5336/5579/6777",14,0.777363184079602 +"WP1589","Folate-Alcohol and Cancer Pathway Hypotheses","1/1022","8/4839",0.850356220765755,0.999930074063124,0.935607086842689,"4524",1,0.533090807331748 +"WP288","NLR Proteins","1/1022","8/4839",0.850356220765755,0.999930074063124,0.935607086842689,"2048",1,0.533090807331748 +"WP3634","Insulin signalling in human adipocytes (normal condition)","1/1022","8/4839",0.850356220765755,0.999930074063124,0.935607086842689,"6517",1,0.533090807331748 +"WP3635","Insulin signalling in human adipocytes (diabetic condition)","1/1022","8/4839",0.850356220765755,0.999930074063124,0.935607086842689,"6517",1,0.533090807331748 +"WP3871","Valproic acid pathway","1/1022","8/4839",0.850356220765755,0.999930074063124,0.935607086842689,"36",1,0.533090807331748 +"WP3934","Leptin and adiponectin","1/1022","8/4839",0.850356220765755,0.999930074063124,0.935607086842689,"3953",1,0.533090807331748 +"WP4480","Role of Altered Glycolysation of MUC1 in Tumour Microenvironment","1/1022","8/4839",0.850356220765755,0.999930074063124,0.935607086842689,"3569",1,0.533090807331748 +"WP4742","Ketogenesis and Ketolysis","1/1022","8/4839",0.850356220765755,0.999930074063124,0.935607086842689,"38",1,0.533090807331748 +"WP286","IL-3 Signaling Pathway","7/1022","44/4839",0.851044950413995,0.999930074063124,0.935607086842689,"596/969/2353/2534/3563/3717/6777",7,0.704566635601118 +"WP2509","Nanoparticle triggered autophagic cell death","3/1022","21/4839",0.851873278036022,0.999930074063124,0.935607086842689,"596/10036/84557",3,0.621360811252862 +"WP4726","Sphingolipid Metabolism (integrated pathway)","3/1022","21/4839",0.851873278036022,0.999930074063124,0.935607086842689,"29956/166929/6609",3,0.621360811252862 +"WP712","Estrogen signaling pathway","3/1022","21/4839",0.851873278036022,0.999930074063124,0.935607086842689,"596/2099/2353",3,0.621360811252862 +"WP2112","IL17 signaling pathway","4/1022","27/4839",0.852782578619521,0.999930074063124,0.935607086842689,"1052/2932/3717/9020",4,0.648159220978902 +"WP437","EGF/EGFR Signaling Pathway","28/1022","155/4839",0.853072181335939,0.999930074063124,0.935607086842689,"25/6790/857/1072/1869/1978/54206/2353/2354/2308/3717/3727/4215/4208/4209/4605/4846/5111/5579/5590/5906/6196/9252/10253/10617/6777/3925/6812",28,0.81845403127426 +"WP3614","Photodynamic therapy-induced HIF-1 survival signaling","5/1022","33/4839",0.856512069472329,0.999930074063124,0.935607086842689,"284/637/332/6515/7043",5,0.665297092288243 +"WP400","p38 MAPK Signaling Pathway","5/1022","33/4839",0.856512069472329,0.999930074063124,0.935607086842689,"3150/4209/4609/9252/7186",5,0.665297092288243 +"WP422","MAPK Cascade","5/1022","33/4839",0.856512069472329,0.999930074063124,0.935607086842689,"4215/4893/5331/22821/6237",5,0.665297092288243 +"WP4564","Neural Crest Cell Migration during Development","5/1022","33/4839",0.856512069472329,0.999930074063124,0.935607086842689,"10000/627/2048/2353/4804",5,0.665297092288243 +"WP4758","Nephrotic syndrome","5/1022","33/4839",0.856512069472329,0.999930074063124,0.935607086842689,"54443/83478/1286/3913/11346",5,0.665297092288243 +"WP615","Senescence and Autophagy in Cancer","16/1022","93/4839",0.856950684897775,0.999930074063124,0.935607086842689,"596/1869/23710/2932/2934/3479/3488/3569/3570/3572/3624/3663/84557/81631/5111/55630",16,0.77250781028117 +"WP4142","Metabolism of Spingolipids in ER and Golgi apparatus","2/1022","15/4839",0.857561985055132,0.999930074063124,0.935607086842689,"166929/256435",2,0.573755656108597 +"WP430","Statin Pathway","2/1022","15/4839",0.857561985055132,0.999930074063124,0.935607086842689,"341/6713",2,0.573755656108597 +"WP2864","Apoptosis-related network due to altered Notch3 in ovarian cancer","8/1022","50/4839",0.858253018221591,0.999930074063124,0.935607086842689,"25/332/3070/3727/4092/9021/7185/7431",8,0.709119939889171 +"WP231","TNF alpha Signaling Pathway","15/1022","88/4839",0.860413949541904,0.999930074063124,0.935607086842689,"637/330/6347/1457/3569/9020/4215/1326/4893/5347/5590/6401/7133/7185/7186",15,0.763967297411272 +"WP4566","Translation inhibitors in chronically activated PDGFRA cells","7/1022","45/4839",0.867124502905404,0.999930074063124,0.935607086842689,"10000/1457/1975/1978/27250/6196/9252",7,0.685843920145191 +"WP2643","Nanoparticle-mediated activation of receptor signaling","4/1022","28/4839",0.872374324086727,0.999930074063124,0.935607086842689,"10000/374/4893/7094",4,0.620988867059594 +"WP4223","Ras Signaling","25/1022","142/4839",0.875522194317694,0.999930074063124,0.935607086842689,"25/10000/2260/2791/55970/54331/2788/3815/4804/4893/4915/5156/5320/8605/5336/5579/5881/5906/22821/10156/8437/10235/23179/6237/7010",25,0.792977222265086 +"WP1772","Apoptosis Modulation and Signaling","13/1022","79/4839",0.879929154875462,0.999930074063124,0.935607086842689,"9531/596/599/637/330/332/835/1676/1677/2353/9020/7133/8718",13,0.732243145028081 +"WP3413","NOTCH1 regulation of human endothelial cell calcification","2/1022","16/4839",0.881716784665246,0.999930074063124,0.935607086842689,"1902/4256",2,0.532633053221289 +"WP391","Mitochondrial Gene Expression","2/1022","16/4839",0.881716784665246,0.999930074063124,0.935607086842689,"10891/133522",2,0.532633053221289 +"WP4269","Ethanol metabolism resulting in production of ROS by CYP2E1","1/1022","9/4839",0.882013422665444,0.999930074063124,0.935607086842689,"23764",1,0.466332027424094 +"WP698","Glucuronidation","1/1022","9/4839",0.882013422665444,0.999930074063124,0.935607086842689,"5239",1,0.466332027424094 +"WP411","mRNA Processing","21/1022","122/4839",0.883577816383176,0.999930074063124,0.935607086842689,"10659/1196/29894/51692/1478/9343/3191/56339/4841/5496/55660/5725/6626/6628/6632/6635/6636/6637/8405/10772/6430",21,0.771861801564772 +"WP4685","Melanoma","10/1022","63/4839",0.88442190556457,0.999930074063124,0.935607086842689,"10000/1019/1869/1870/2353/4616/3815/4286/4893/7414",10,0.701767469609964 +"WP4197","The human immune response to tuberculosis","3/1022","23/4839",0.892600365127733,0.999930074063124,0.935607086842689,"3717/6773/7297",3,0.558930323846909 +"WP4537","Hippo-Yap signaling pathway","3/1022","23/4839",0.892600365127733,0.999930074063124,0.935607086842689,"26524/7003/23043",3,0.558930323846909 +"WP3286","Copper homeostasis","7/1022","47/4839",0.89500690547911,0.999930074063124,0.935607086842689,"6868/2308/2932/22823/6649/55240/79689",7,0.651206896551724 +"WP3678","Amplification and Expansion of Oncogenic Pathways as Metastatic Traits","2/1022","17/4839",0.902032926025066,0.999930074063124,0.935607086842689,"7428/7472",2,0.496993464052288 +"WP4155","Endometrial cancer","9/1022","59/4839",0.902327265856976,0.999930074063124,0.935607086842689,"10000/2247/2260/2353/4616/2932/3611/4609/4893",9,0.669358341559724 +"WP500","Glycogen Synthesis and Degradation","5/1022","36/4839",0.904032070792873,0.999930074063124,0.935607086842689,"2932/5516/5521/5525/5837",5,0.600437720049481 +"WP3676","BDNF-TrkB Signaling","4/1022","30/4839",0.904886034571245,0.999930074063124,0.935607086842689,"627/1978/4893/4915",4,0.572918240894665 +"WP4241","Type 2 papillary renal cell carcinoma","4/1022","30/4839",0.904886034571245,0.999930074063124,0.935607086842689,"81578/7942/7043/7428",4,0.572918240894665 +"WP43","Oxidation by Cytochrome P450","4/1022","30/4839",0.904886034571245,0.999930074063124,0.935607086842689,"1727/57404/1593/51302",4,0.572918240894665 +"WP4496","Signal transduction through IL1R","4/1022","30/4839",0.904886034571245,0.999930074063124,0.935607086842689,"3569/11213/9020/7043",4,0.572918240894665 +"WP4666","Hepatitis B infection","22/1022","130/4839",0.905470089093815,0.999930074063124,0.935607086842689,"10000/596/637/332/90993/9586/1959/1960/2353/3569/3717/4609/4772/4776/4893/5111/5579/6773/6777/7043/7048/7297",22,0.755537037037037 +"WP1425","Bone Morphogenic Protein (BMP) Signalling and Regulation","1/1022","10/4839",0.906978698449278,0.999930074063124,0.935607086842689,"10766",1,0.414408531940363 +"WP3656","Interleukin-1 Induced Activation of NF-kappa-B","1/1022","10/4839",0.906978698449278,0.999930074063124,0.935607086842689,"5590",1,0.414408531940363 +"WP438","Non-homologous end joining","1/1022","10/4839",0.906978698449278,0.999930074063124,0.935607086842689,"5591",1,0.414408531940363 +"WP1422","Sphingolipid pathway","3/1022","24/4839",0.908934725912484,0.999930074063124,0.935607086842689,"29956/57515/166929",3,0.532174400672929 +"WP2636","Common Pathways Underlying Drug Addiction","3/1022","24/4839",0.908934725912484,0.999930074063124,0.935607086842689,"72/5579/5906",3,0.532174400672929 +"WP4559","Interactions between immune cells and microRNAs in tumor microenvironment","3/1022","24/4839",0.908934725912484,0.999930074063124,0.935607086842689,"6347/7043/7048",3,0.532174400672929 +"WP3925","Amino Acid metabolism","10/1022","66/4839",0.915791648477362,0.999930074063124,0.935607086842689,"34/47/126/5832/501/8639/790/4953/5166/5831",10,0.663643421795596 +"WP4659","Gastrin Signaling Pathway","17/1022","105/4839",0.918594120239461,0.999930074063124,0.935607086842689,"408/330/332/1958/1978/2353/2308/2534/2932/3717/3815/9314/4208/4209/4609/388/6925",17,0.716791044776119 +"WP384","Apoptosis Modulation by HSP70","2/1022","18/4839",0.919052750276552,0.999930074063124,0.935607086842689,"637/835",2,0.465808823529412 +"WP3879","4-hydroxytamoxifen, Dexamethasone, and Retinoic Acids Regulation of p27 Expression","2/1022","18/4839",0.919052750276552,0.999930074063124,0.935607086842689,"1978/55872",2,0.465808823529412 +"WP3680","Association Between Physico-Chemical Features and Toxicity Associated Pathways","8/1022","55/4839",0.919649796928562,0.999930074063124,0.935607086842689,"58/10097/2535/8322/8324/2932/4609/4638",8,0.632842334969995 +"WP4521","Glycosylation and related congenital defects","3/1022","25/4839",0.922982923825578,0.999930074063124,0.935607086842689,"10195/79053/7841",3,0.507850834151129 +"WP4255","Non-small cell lung cancer","10/1022","67/4839",0.924503025461715,0.999930074063124,0.935607086842689,"10000/637/1019/1869/1870/4616/4893/5336/5579/6777",10,0.651827196449622 +"WP4210","Tryptophan catabolism leading to NAD+ production","1/1022","11/4839",0.926665542554649,0.999930074063124,0.935607086842689,"23498",1,0.372869735553379 +"WP4534","Mechanoregulation and pathology of YAP/TAZ via Hippo and non-Hippo mechanisms","6/1022","44/4839",0.926932208481225,0.999930074063124,0.935607086842689,"58/59/70/72/3690/7003",6,0.587287608785744 +"WP2037","Prolactin Signaling Pathway","11/1022","73/4839",0.927200501963799,0.999930074063124,0.935607086842689,"1978/2316/2353/2534/2932/3717/4609/6196/8835/9021/6777",11,0.658961105261479 +"WP3863","T-Cell antigen Receptor (TCR) pathway during Staphylococcus aureus infection","7/1022","50/4839",0.927464167576974,0.999930074063124,0.935607086842689,"1019/2353/2534/2932/9020/1326/6237",7,0.605292702485966 +"WP4018","Pathways in clear cell renal cell carcinoma","12/1022","79/4839",0.929965465976983,0.999930074063124,0.935607086842689,"32/47/2023/2194/5156/6472/8082/7043/84969/7167/7428/6935",12,0.664991872321561 +"WP2507","Nanomaterial induced apoptosis","2/1022","19/4839",0.933260961114407,0.999930074063124,0.935607086842689,"596/637",2,0.438292964244521 +"WP4206","Hereditary leiomyomatosis and renal cell carcinoma pathway","2/1022","19/4839",0.933260961114407,0.999930074063124,0.935607086842689,"32/8452",2,0.438292964244521 +"WP2324","AGE/RAGE pathway","9/1022","63/4839",0.938090580026804,0.999930074063124,0.935607086842689,"1650/2308/3625/3717/4322/4846/5579/5590/6777",9,0.619118130964133 +"WP534","Glycolysis and Gluconeogenesis","4/1022","33/4839",0.93995275510931,0.999930074063124,0.935607086842689,"2023/6515/6517/7167",4,0.513244360138202 +"WP23","B Cell Receptor Signaling Pathway","14/1022","92/4839",0.941630174229579,0.999930074063124,0.935607086842689,"695/933/974/975/2308/2534/2932/3608/4208/4209/4609/8395/5336/5579",14,0.665776353276353 +"WP3933","Kennedy pathway from Sphingolipids","1/1022","12/4839",0.942189116603769,0.999930074063124,0.935607086842689,"9791",1,0.338883447600392 +"WP47","Hedgehog Signaling Pathway Netpath","1/1022","12/4839",0.942189116603769,0.999930074063124,0.935607086842689,"8643",1,0.338883447600392 +"WP1982","Sterol Regulatory Element-Binding Proteins (SREBP) signalling","9/1022","64/4839",0.945010014311913,0.999930074063124,0.935607086842689,"47/2194/133522/5563/51422/6319/23411/6713/7528",9,0.607699901283317 +"WP143","Fatty Acid Beta Oxidation","3/1022","27/4839",0.945300222572607,0.999930074063124,0.935607086842689,"34/38/7167",3,0.465284592737978 +"WP4549","Fragile X Syndrome ","14/1022","93/4839",0.947247505263619,0.999930074063124,0.935607086842689,"627/26999/1915/1979/2534/2571/3708/4131/4204/4915/5909/6895/51256/9675",14,0.657172995780591 +"WP2359","Parkin-Ubiquitin Proteasomal System pathway","8/1022","59/4839",0.950773104125175,0.999930074063124,0.935607086842689,"898/3306/5717/10213/5709/6622/10381/84617",8,0.582588854082067 +"WP395","IL-4 Signaling Pathway","7/1022","53/4839",0.95079351505702,0.999930074063124,0.935607086842689,"332/2316/2353/3717/9021/6777/7297",7,0.565367316341829 +"WP4159","GABA receptor Signaling","1/1022","13/4839",0.954429166910574,0.999930074063124,0.935607086842689,"2571",1,0.310561540972902 +"WP3612","Photodynamic therapy-induced NFE2L2 (NRF2) survival signaling","2/1022","21/4839",0.954896495340778,0.999930074063124,0.935607086842689,"1066/2353",2,0.391950464396285 +"WP4585","Cancer immunotherapy by PD-1 blockade","2/1022","21/4839",0.954896495340778,0.999930074063124,0.935607086842689,"4772/4776",2,0.391950464396285 +"WP195","IL-1 signaling pathway","7/1022","55/4839",0.962362888607297,0.999930074063124,0.935607086842689,"6347/3316/11213/9020/4215/57161/5590",7,0.541522988505747 +"WP4313","Ferroptosis","4/1022","36/4839",0.962835157966289,0.999930074063124,0.935607086842689,"84557/81631/55240/7037",4,0.464759332023576 +"WP3845","Canonical and Non-canonical Notch signaling","2/1022","22/4839",0.963017752694939,0.999930074063124,0.935607086842689,"4237/6237",2,0.372254901960784 +"WP453","Inflammatory Response Pathway","2/1022","22/4839",0.963017752694939,0.999930074063124,0.935607086842689,"3913/7133",2,0.372254901960784 +"WP2637","Structural Pathway of Interleukin 1 (IL-1)","6/1022","49/4839",0.963456690090173,0.999930074063124,0.935607086842689,"2353/9020/4215/1326/4609/9252",6,0.518311664530306 +"WP3","Phytochemical activity on NRF2 transcriptional activation","1/1022","14/4839",0.964079683159516,0.999930074063124,0.935607086842689,"2048",1,0.286596850749642 +"WP4478","LTF danger signal response pathway","1/1022","14/4839",0.964079683159516,0.999930074063124,0.935607086842689,"3569",1,0.286596850749642 +"WP3982","miRNA regulation of p53 pathway in prostate cancer","2/1022","23/4839",0.969724170558482,0.999930074063124,0.935607086842689,"637/11200",2,0.354435107376284 +"WP4656","Joubert Syndrome","9/1022","69/4839",0.970349721382535,0.999930074063124,0.935607086842689,"57545/95681/2316/261734/5108/117177/79867/9094/23090",9,0.556317867719645 +"WP61","Notch Signaling Pathway Netpath","7/1022","57/4839",0.971411720535189,0.999930074063124,0.935607086842689,"6868/2273/2932/3066/3717/4609/23385",7,0.519586206896552 +"WP22","IL-9 Signaling Pathway","1/1022","15/4839",0.971688090166972,0.999930074063124,0.935607086842689,"6777",1,0.266055687701133 +"WP2453","TCA Cycle and Deficiency of Pyruvate Dehydrogenase complex (PDHc)","1/1022","15/4839",0.971688090166972,0.999930074063124,0.935607086842689,"47",1,0.266055687701133 +"WP481","Insulin Signaling","23/1022","150/4839",0.972563063883818,0.999930074063124,0.935607086842689,"1958/30846/1978/5167/2353/2308/2932/9020/4215/1326/5563/5579/5590/57381/6196/9252/6236/6517/9021/10580/6722/6812/6844",23,0.668936653188622 +"WP3865","Novel intracellular components of RIG-I-like receptor (RLR) pathway","6/1022","51/4839",0.972661216837911,0.999930074063124,0.935607086842689,"6387/8653/9636/54941/80143/7186",6,0.49501312335958 +"WP2873","Aryl Hydrocarbon Receptor Pathway","3/1022","31/4839",0.973077357447465,0.999930074063124,0.935607086842689,"10486/3726/3727",3,0.398394784803028 +"WP183","Proteasome Degradation","7/1022","58/4839",0.975146089269106,0.999930074063124,0.935607086842689,"5690/5691/5717/5709/6184/6185/7320",7,0.509263015551048 +"WP100","Glutathione metabolism","1/1022","16/4839",0.97768617720042,0.999930074063124,0.935607086842689,"2878",1,0.248253346392426 +"WP368","Mitochondrial LC-Fatty Acid Beta-Oxidation","1/1022","16/4839",0.97768617720042,0.999930074063124,0.935607086842689,"34",1,0.248253346392426 +"WP4494","Selective expression of chemokine receptors during T-cell polarization","1/1022","16/4839",0.97768617720042,0.999930074063124,0.935607086842689,"7043",1,0.248253346392426 +"WP2533","Glycerophospholipid Biosynthetic Pathway","2/1022","25/4839",0.979795488915296,0.999930074063124,0.935607086842689,"5320/9791",2,0.323444160272805 +"WP3851","TLR4 Signaling and Tolerance","2/1022","25/4839",0.979795488915296,0.999930074063124,0.935607086842689,"3569/11213",2,0.323444160272805 +"WP581","EPO Receptor Signaling","2/1022","25/4839",0.979795488915296,0.999930074063124,0.935607086842689,"3717/6777",2,0.323444160272805 +"WP244","Alpha 6 Beta 4 signaling pathway","3/1022","33/4839",0.981310074990616,0.999930074063124,0.935607086842689,"1978/3908/3913",3,0.371638861629048 +"WP4263","Pancreatic adenocarcinoma pathway","11/1022","85/4839",0.981895728220499,0.999930074063124,0.935607086842689,"10000/9459/675/1019/1869/1870/4616/5881/5888/7043/7048",11,0.550338171999893 +"WP3859","TGF-B Signaling in Thyroid Cells for Epithelial-Mesenchymal Transition","1/1022","17/4839",0.98241450539888,0.999930074063124,0.935607086842689,"7431",1,0.232676297747307 +"WP3874","Canonical and Non-Canonical TGF-B signaling","1/1022","17/4839",0.98241450539888,0.999930074063124,0.935607086842689,"7048",1,0.232676297747307 +"WP405","Eukaryotic Transcription Initiation","4/1022","41/4839",0.983902757348175,0.999930074063124,0.935607086842689,"2960/3611/5436/5437",4,0.401423034036001 +"WP1471","Target Of Rapamycin (TOR) Signaling","3/1022","34/4839",0.984463797563015,0.999930074063124,0.935607086842689,"1978/5563/51422",3,0.35955554148596 +"WP313","Signaling of Hepatocyte Growth Factor Receptor","3/1022","34/4839",0.984463797563015,0.999930074063124,0.935607086842689,"2353/3082/5906",3,0.35955554148596 +"WP4655","Cytosolic DNA-sensing pathway","6/1022","55/4839",0.98499866511702,0.999930074063124,0.935607086842689,"103/90865/3569/9636/5437/54941",6,0.454121806202796 +"WP4722","Glycerolipids and Glycerophospholipids","1/1022","18/4839",0.986141667464899,0.999930074063124,0.935607086842689,"9791",1,0.218931843060437 +"WP2583","T-Cell Receptor and Co-stimulatory Signaling","2/1022","27/4839",0.986584860633084,0.999930074063124,0.935607086842689,"2534/2932",2,0.297411764705882 +"WP4577","Neurodegeneration with brain iron accumulation (NBIA) subtypes pathway","4/1022","43/4839",0.988609839372155,0.999930074063124,0.935607086842689,"23400/80347/84557/4204",4,0.38063573623495 +"WP3945","TYROBP Causal Network","6/1022","57/4839",0.988988247391084,0.999930074063124,0.935607086842689,"54518/718/3071/5996/6696/7133",6,0.436081519221862 +"WP3937","Microglia Pathogen Phagocytosis Pathway","3/1022","36/4839",0.989310274384808,0.999930074063124,0.935607086842689,"3071/5336/5881",3,0.337585868498528 +"WP702","Metapathway biotransformation Phase I and II","11/1022","90/4839",0.990437699484362,0.999930074063124,0.935607086842689,"57404/1593/51302/2053/2878/2949/11185/7881/79829/55226/26151",11,0.514818014498742 +"WP2018","RANKL/RANK (Receptor activator of NFKB (ligand)) Signaling Pathway","5/1022","52/4839",0.991808941236611,0.999930074063124,0.935607086842689,"2353/4286/4772/7185/7186",5,0.394359714638382 +"WP4674","Head and Neck Squamous Cell Carcinoma","7/1022","66/4839",0.992314718762537,0.999930074063124,0.935607086842689,"10000/1017/1019/1978/4893/5563/7048",7,0.43927527761543 +"WP4136","Fibrin Complement Receptor 3 Signaling Pathway","2/1022","30/4839",0.992801390486254,0.999930074063124,0.935607086842689,"6347/3569",2,0.265336134453782 +"WP3915","Angiopoietin Like Protein 8 Regulatory Pathway","15/1022","117/4839",0.993096492146131,0.999930074063124,0.935607086842689,"1978/2194/2308/2932/9020/4215/1326/5563/51422/6196/9252/6319/6567/6517/7067",15,0.542525848472458 +"WP4217","Ebola Virus Pathway on Host","15/1022","118/4839",0.993885846002832,0.999930074063124,0.935607086842689,"6868/558/857/30835/10462/5610/2316/2318/2621/2934/3678/3690/388/9021/64601",15,0.537113988488349 +"WP2272","Pathogenic Escherichia coli infection","4/1022","47/4839",0.994390806182559,0.999930074063124,0.935607086842689,"25/2534/10381/84617",4,0.344862246995934 +"WP1433","Nucleotide-binding Oligomerization Domain (NOD) pathway","2/1022","32/4839",0.995269091959466,0.999930074063124,0.935607086842689,"22861/114548",2,0.247516339869281 +"WP4329","miRNAs involvement in the immune response in sepsis","2/1022","32/4839",0.995269091959466,0.999930074063124,0.935607086842689,"3569/3663",2,0.247516339869281 +"WP3869","Cannabinoid receptor signaling","1/1022","23/4839",0.995791481164406,0.999930074063124,0.935607086842689,"5577",1,0.168952007835455 +"WP477","Cytoplasmic Ribosomal Proteins","9/1022","85/4839",0.996761791106334,0.999930074063124,0.935607086842689,"9801/6138/6122/6164/6133/6207/6228/6196/6203",9,0.437327895256404 +"WP4532","Intraflagellar transport proteins binding to dynein","1/1022","25/4839",0.997388279639291,0.999930074063124,0.935607086842689,"89891",1,0.154791054521711 +"WP710","DNA Damage Response (only ATM dependent)","11/1022","100/4839",0.997554537460786,0.999930074063124,0.935607086842689,"25/10000/596/894/8061/2932/4609/4893/5881/7472/7482",11,0.45575078629458 +"WP4352","Ciliary landscape","27/1022","197/4839",0.997555018752146,0.999930074063124,0.935607086842689,"25904/51138/10238/9343/54512/3066/128239/25804/10982/55388/4171/4173/4174/4175/4176/84515/4436/4637/5048/10051/2040/79989/7431/89891/7465/10413/51646",27,0.582140112326338 +"WP4205","MET in type 1 papillary renal cell carcinoma","4/1022","52/4839",0.99774780836319,0.999930074063124,0.935607086842689,"10000/3082/4893/5906",4,0.308529796987557 +"WP69","T-Cell antigen Receptor (TCR) Signaling Pathway","8/1022","82/4839",0.998163678878075,0.999930074063124,0.935607086842689,"2353/2534/3569/3708/9020/1326/4772/7431",8,0.399061783677168 +"WP4396","Nonalcoholic fatty liver disease","16/1022","135/4839",0.998441141628455,0.999930074063124,0.935607086842689,"10000/637/6347/84701/1346/2932/3569/3570/3953/5465/5563/51422/4092/9021/7186/7381",16,0.4942446163356 +"WP1449","Regulation of toll-like receptor signaling pathway","12/1022","111/4839",0.998712123660994,0.999930074063124,0.935607086842689,"10000/695/8727/2353/3569/11213/3663/1326/57161/5347/6696/10771",12,0.446204620462046 +"WP2526","PDGF Pathway","2/1022","39/4839",0.998937671665641,0.999930074063124,0.935607086842689,"2353/6722",2,0.200317965023847 +"WP75","Toll-like Receptor Signaling Pathway","6/1022","78/4839",0.999677951800867,0.999930074063124,0.935607086842689,"10000/2353/3569/3663/1326/6696",6,0.307168635170604 +"WP4536","Genes related to primary cilium development (based on CRISPR)","8/1022","95/4839",0.999779505063155,0.999930074063124,0.935607086842689,"57545/11116/51715/163786/79867/79989/79770/89891",8,0.338252964247659 +"WP111","Electron Transport Chain (OXPHOS system in mitochondria)","4/1022","70/4839",0.999930074063124,0.999930074063124,0.935607086842689,"1346/9481/291/7381",4,0.223313686967911 diff --git a/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/bladder_cancer_WikiPathways_rSEA.csv b/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/bladder_cancer_WikiPathways_rSEA.csv new file mode 100644 index 0000000..e3fbbff --- /dev/null +++ b/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/bladder_cancer_WikiPathways_rSEA.csv @@ -0,0 +1,569 @@ +"set_id","name","ID","Name","Size","Coverage","TDP.bound","TDP.estimate","SC.adjP","Comp.adjP" +"WP1600","Nicotine Metabolism",38,"WP1600",6,0.17,1,1,3.39506009152496e-24,3.39506009152496e-24 +"WP2276","Glial Cell Differentiation",88,"WP2276",8,0.62,0.4,0.4,7.83386153710323e-26,5.70447887867626e-23 +"WP4030","SCFA and skeletal muscle substrate metabolism",332,"WP4030",6,0.33,0.5,0.5,7.99040804992212e-20,7.99040804992212e-20 +"WP334","GPCRs, Class B Secretin-like",210,"WP334",24,0.17,0.5,0.5,3.06579274689702e-21,1.60955895014834e-18 +"WP1991","SRF and miRs in Smooth Muscle Differentiation and Proliferation",60,"WP1991",13,0.69,0.888888888888889,1,5.37258163429194e-24,1.16900918682e-14 +"WP206","Fatty Acid Omega Oxidation",76,"WP206",15,0.33,0.6,0.8,2.94021006969881e-38,1.31928124608757e-14 +"WP3299","let-7 inhibition of ES cell reprogramming",205,"WP3299",15,0.33,0.6,0.6,1.69191698398203e-15,1.74501293167954e-14 +"WP2023","Cell Differentiation - Index expanded",66,"WP2023",50,0.22,0.727272727272727,0.727272727272727,4.7856489956754e-16,2.33586928012365e-14 +"WP2029","Cell Differentiation - Index",67,"WP2029",42,0.14,0.833333333333333,0.833333333333333,4.7856489956754e-16,2.33586928012365e-14 +"WP2366","Butyrate-induced histone acetylation",105,"WP2366",2,1,0.5,0.5,1.10524321914212e-13,1.10524321914212e-13 +"WP3297","EV release from cardiac cells and their functional effects",203,"WP3297",9,0.44,0.75,0.75,3.05550468161626e-32,3.37870774082303e-13 +"WP554","ACE Inhibitor Pathway",530,"WP554",17,0.65,0.545454545454545,0.545454545454545,3.79036700534385e-25,5.54255202240522e-13 +"WP4284","Ultraconserved region 339 modulation of tumor suppressor microRNAs in cancer",385,"WP4284",5,0.4,0.5,0.5,2.90591396510707e-11,2.90591396510707e-11 +"WP2361","Gastric Cancer Network 1",103,"WP2361",29,0.76,0.727272727272727,0.727272727272727,3.61848623532521e-17,1.04514067941364e-10 +"WP3944","Serotonin and anxiety-related events",309,"WP3944",13,0.46,0.666666666666667,0.666666666666667,1.45750470372243e-17,3.26510400891469e-09 +"WP3947","Serotonin and anxiety",311,"WP3947",17,0.41,0.428571428571429,0.428571428571429,1.45750470372243e-17,3.26510400891469e-09 +"WP1438","Influenza A virus infection",20,"WP1438",2,0.5,1,1,1.28737203377495e-08,1.28737203377495e-08 +"WP383","Striated Muscle Contraction Pathway",265,"WP383",38,0.61,0.565217391304348,0.652173913043478,1.03667354058147e-21,1.30607861950122e-08 +"WP2542","Sulindac Metabolic Pathway",133,"WP2542",5,0.8,0.5,0.75,4.35964063989166e-11,2.5564111779557e-08 +"WP4222","Phosphodiesterases in neuronal function",366,"WP4222",55,0.56,0.419354838709677,0.483870967741935,1.11151548949677e-22,3.51064709129753e-08 +"WP2943","Hypoxia-mediated EMT and Stemness",191,"WP2943",2,1,0.5,0.5,1.87433487284931e-07,1.87433487284931e-07 +"WP2874","Liver X Receptor Pathway",175,"WP2874",10,0.5,0.4,0.4,9.83107916736652e-08,2.35055233649832e-07 +"WP466","DNA Replication",480,"WP466",42,0.98,0.634146341463415,0.75609756097561,3.91911842678923e-14,4.20885218710584e-07 +"WP545","Complement Activation",528,"WP545",22,0.68,0.466666666666667,0.466666666666667,3.75341311013175e-54,6.35126956702113e-07 +"WP4240","Regulation of sister chromatid separation at the metaphase-anaphase transition",374,"WP4240",16,0.94,0.533333333333333,0.533333333333333,4.41152154021936e-12,6.65380602412947e-07 +"WP4300","Extracellular vesicles in the crosstalk of cardiac cells",395,"WP4300",28,0.61,0.411764705882353,0.588235294117647,1.55030261832076e-25,8.80494600850642e-07 +"WP531","DNA Mismatch Repair",525,"WP531",22,0.95,0.523809523809524,0.571428571428571,3.57124737003596e-13,1.25145166671192e-06 +"WP4589","Major receptors targeted by epinephrine and norepinephrine",471,"WP4589",15,0.73,0.636363636363636,0.636363636363636,1.11151548949677e-22,2.66815064645758e-06 +"WP4760","PKC-gamma calcium signaling pathway in ataxia",508,"WP4760",22,0.55,0.416666666666667,0.583333333333333,6.52294438984146e-17,2.70719651941471e-06 +"WP4191","Caloric restriction and aging",354,"WP4191",8,1,0.375,0.375,2.9447393377517e-11,3.80469322236512e-06 +"WP2446","Retinoblastoma Gene in Cancer",117,"WP2446",88,0.98,0.546511627906977,0.593023255813954,1.96366351804733e-14,4.24785596200959e-06 +"WP1992","Genes targeted by miRNAs in adipocytes",61,"WP1992",19,0.53,0.5,0.5,2.33586928012365e-14,8.49856030430427e-06 +"WP4337","ncRNAs involved in STAT3 signaling in hepatocellular carcinoma",406,"WP4337",17,0.76,0.538461538461538,0.615384615384615,1.55030261832076e-25,9.36831691097847e-06 +"WP2645","Heroin metabolism",145,"WP2645",3,0.67,0.5,1,1.87627142351219e-05,1.87627142351219e-05 +"WP2826","Cocaine metabolism",158,"WP2826",4,0.5,0.5,1,1.87627142351219e-05,1.87627142351219e-05 +"WP1602","Nicotine Activity on Dopaminergic Neurons",40,"WP1602",22,0.5,0.636363636363636,0.818181818181818,2.50026382158374e-16,2.24952453555091e-05 +"WP4545","Oxysterols derived from cholesterol",452,"WP4545",18,0.56,0.6,0.6,1.46780086933461e-09,2.36116814219851e-05 +"WP45","G1 to S cell cycle control",430,"WP45",64,0.95,0.491803278688525,0.573770491803279,3.91911842678923e-14,2.89588011644963e-05 +"WP1495","Glycine Metabolism",24,"WP1495",4,0.75,0.666666666666667,0.666666666666667,7.32732034249336e-10,2.91348117795513e-05 +"WP2879","Farnesoid X Receptor Pathway",180,"WP2879",19,0.37,0.428571428571429,0.428571428571429,1.03671457774015e-11,0.000129931976156264 +"WP34","Ovarian Infertility Genes",211,"WP34",32,0.53,0.411764705882353,0.411764705882353,8.1728342950092e-20,0.000152471085336278 +"WP516","Hypertrophy Model",519,"WP516",20,0.75,0.466666666666667,0.533333333333333,1.73723649603814e-29,0.000166791537749366 +"WP247","Small Ligand GPCRs",121,"WP247",19,0.53,0.6,0.8,3.77273931182897e-18,0.000182717661150266 +"WP2363","Gastric Cancer Network 2",104,"WP2363",33,0.88,0.448275862068966,0.448275862068966,1.12863099668653e-15,0.000185246692246443 +"WP170","Nuclear Receptors",44,"WP170",39,0.74,0.413793103448276,0.413793103448276,5.53853655041636e-45,0.000204208460415242 +"WP3996","Ethanol effects on histone modifications",325,"WP3996",31,0.9,0.428571428571429,0.5,2.94021006969881e-38,0.000238758692258098 +"WP4400","FABP4 in ovarian cancer",417,"WP4400",2,0.5,1,1,0.000245357066905715,0.000245357066905715 +"WP58","Monoamine GPCRs",534,"WP58",33,0.15,0.6,0.6,2.66815064645758e-06,0.000266280491622695 +"WP3679","Cell-type Dependent Selectivity of CCK2R Signaling",261,"WP3679",13,0.69,0.444444444444444,0.555555555555556,6.52294438984146e-17,0.000315427333264674 +"WP2338","miRNA Biogenesis",99,"WP2338",8,0.75,0.5,0.5,5.52094234656009e-11,0.000633704399420972 +"WP1455","Serotonin Transporter Activity",22,"WP1455",11,0.73,0.375,0.5,5.50097841431123e-07,0.000698192443745329 +"WP4016","DNA IR-damage and cellular response via ATR",329,"WP4016",83,0.9,0.413333333333333,0.466666666666667,3.1984443894539e-16,0.000704575375419051 +"WP179","Cell Cycle",48,"WP179",122,0.94,0.434782608695652,0.48695652173913,3.91911842678923e-14,0.000860192369254168 +"WP2848","Differentiation Pathway",162,"WP2848",48,0.54,0.461538461538462,0.538461538461538,1.55030261832076e-25,0.000900218402911242 +"WP2815","Mammary gland development pathway - Involution (Stage 4 of 4)",155,"WP2815",10,1,0.5,0.7,3.47598200773578e-10,0.000979886474579196 +"WP322","Osteoblast Signaling",199,"WP322",14,0.5,0.428571428571429,0.428571428571429,1.60955895014834e-18,0.00122105800992755 +"WP4583","Biomarkers for urea cycle disorders",467,"WP4583",12,0.67,0.375,0.375,1.05891161032475e-42,0.00125836568297114 +"WP3893","Development and heterogeneity of the ILC family",289,"WP3893",32,0.56,0.5,0.555555555555556,1.55030261832076e-25,0.00137922281926359 +"WP2406","Cardiac Progenitor Differentiation",112,"WP2406",53,0.57,0.466666666666667,0.5,5.00019440781505e-25,0.0019450999028179 +"WP558","Complement and Coagulation Cascades",531,"WP558",59,0.66,0.41025641025641,0.487179487179487,3.75341311013175e-54,0.00204133415581446 +"WP2516","ATM Signaling Pathway",127,"WP2516",40,0.92,0.405405405405405,0.459459459459459,6.96540853859659e-18,0.00226170199642674 +"WP3876","BMP2-WNT4-FOXO1 Pathway in Human Primary Endometrial Stromal Cell Differentiation",282,"WP3876",13,0.85,0.454545454545455,0.454545454545455,1.1219536394885e-16,0.00287452439577986 +"WP1545","miRNAs involved in DNA damage response",33,"WP1545",50,0.28,0.357142857142857,0.428571428571429,1.33825325438479e-13,0.00291300857028192 +"WP3591","Sleep regulation",223,"WP3591",38,0.34,0.461538461538462,0.538461538461538,1.55030261832076e-25,0.00298637777295038 +"WP2855","Dopaminergic Neurogenesis",166,"WP2855",30,0.33,0.4,0.6,8.1921343985721e-23,0.00300186445388684 +"WP497","Urea cycle and metabolism of amino groups",515,"WP497",21,0.76,0.375,0.4375,1.21134935033961e-14,0.00350987947486594 +"WP3407","FTO Obesity Variant Mechanism",212,"WP3407",8,0.88,0.428571428571429,0.428571428571429,2.9447393377517e-11,0.00376777148807062 +"WP289","Myometrial Relaxation and Contraction Pathways",186,"WP289",158,0.76,0.391666666666667,0.466666666666667,4.72920713559152e-27,0.00465022180500277 +"WP1530","miRNA Regulation of DNA Damage Response",27,"WP1530",93,0.69,0.375,0.453125,2.50026382158374e-16,0.00482551043459127 +"WP4149","White fat cell differentiation",344,"WP4149",33,0.91,0.4,0.433333333333333,3.05550468161626e-32,0.00497520122591071 +"WP2814","Mammary gland development pathway - Puberty (Stage 2 of 4)",154,"WP2814",13,0.92,0.5,0.5,8.1728342950092e-20,0.00569300599773054 +"WP1603","Nicotine Activity on Chromaffin Cells",41,"WP1603",4,0.25,1,1,0.00581825930604642,0.00581825930604642 +"WP4698","Vitamin D-sensitive calcium signaling in depression",486,"WP4698",41,0.54,0.363636363636364,0.5,6.52294438984146e-17,0.00581825930604642 +"WP1971","Integrated Cancer Pathway",56,"WP1971",46,0.93,0.372093023255814,0.418604651162791,1.47590569356761e-12,0.00623426422936051 +"WP4224","Purine metabolism and related disorders",368,"WP4224",22,0.86,0.368421052631579,0.421052631578947,3.39506009152496e-24,0.00660624701596271 +"WP4259","Disorders of Folate Metabolism and Transport",379,"WP4259",13,0.85,0.454545454545455,0.454545454545455,7.32732034249336e-10,0.00660624701596271 +"WP1601","Fluoropyrimidine Activity",39,"WP1601",34,0.82,0.392857142857143,0.5,7.38854762906026e-09,0.00668550277003425 +"WP2806","Human Complement System",152,"WP2806",99,0.64,0.349206349206349,0.428571428571429,3.75341311013175e-54,0.00703640980157322 +"WP707","DNA Damage Response",557,"WP707",69,0.9,0.370967741935484,0.451612903225806,2.50026382158374e-16,0.00934439177317729 +"WP2895","Differentiation of white and brown adipocyte ",187,"WP2895",25,0.72,0.388888888888889,0.388888888888889,4.791051754563e-15,0.00971361957709086 +"WP1995","Effects of Nitric Oxide",62,"WP1995",8,0.5,0.5,0.75,3.39506009152496e-24,0.0112147264561884 +"WP136","Phase I biotransformations, non P450",10,"WP136",8,0.62,0.4,0.6,1.87627142351219e-05,0.0123569322150726 +"WP536","Calcium Regulation in the Cardiac Cell",527,"WP536",152,0.7,0.355140186915888,0.429906542056075,7.92756655687513e-25,0.0169432049684982 +"WP35","G Protein Signaling Pathways",216,"WP35",97,0.78,0.355263157894737,0.434210526315789,1.11151548949677e-22,0.0169866528793556 +"WP241","One Carbon Metabolism",113,"WP241",31,0.81,0.4,0.48,7.32732034249336e-10,0.0170103318686093 +"WP4571","Urea cycle and related diseases",464,"WP4571",9,0.67,0.5,0.5,6.0595781921859e-07,0.020635406510022 +"WP4752","Base Excision Repair",503,"WP4752",31,0.97,0.4,0.466666666666667,3.57124737003596e-13,0.0220340720140378 +"WP4720","Eicosanoid metabolism via Cytochrome P450 Mono-Oxygenases (CYP) pathway",491,"WP4720",9,0.44,0.5,0.5,4.43345799464762e-09,0.0230432320025256 +"WP474","Endochondral Ossification",498,"WP474",65,0.83,0.351851851851852,0.462962962962963,4.81536487673321e-20,0.0246820506324245 +"WP3875","ATR Signaling",281,"WP3875",9,0.89,0.375,0.375,4.60260415203756e-08,0.0248929712443472 +"WP3959","DNA IR-Double Strand Breaks (DSBs) and cellular response via ATM",314,"WP3959",55,0.95,0.346153846153846,0.423076923076923,2.50026382158374e-16,0.0248929712443472 +"WP4560","MFAP5 effect on permeability and motility of endothelial cells via cytoskeleton rearrangement",458,"WP4560",18,0.94,0.411764705882353,0.470588235294118,6.52294438984146e-17,0.0254612754912739 +"WP2525","Trans-sulfuration and one carbon metabolism",128,"WP2525",32,0.88,0.357142857142857,0.464285714285714,7.32732034249336e-10,0.0321645449138761 +"WP98","Prostaglandin Synthesis and Regulation",568,"WP98",45,0.82,0.378378378378378,0.459459459459459,2.17394413943821e-22,0.0332806226599994 +"WP4304","Oligodendrocyte Specification and differentiation(including remyelination), leading to Myelin Components for CNS",397,"WP4304",31,0.52,0.375,0.375,7.83386153710323e-26,0.0344632354643189 +"WP3599","Transcription factor regulation in adipogenesis",228,"WP3599",22,0.86,0.368421052631579,0.368421052631579,1.55030261832076e-25,0.0362388400314306 +"WP1604","Codeine and Morphine Metabolism",42,"WP1604",15,0.27,0.5,0.5,6.49286728094462e-06,0.0372370714105519 +"WP236","Adipogenesis",102,"WP236",131,0.79,0.346153846153846,0.413461538461538,3.75341311013175e-54,0.0373548404617312 +"WP4661","Amino Acid Metabolism Pathway Excerpt (Histidine catabolism extension)",481,"WP4661",6,0.33,0.5,0.5,0.0431468886224066,0.0431468886224066 +"WP3585","Cytosine methylation",222,"WP3585",9,0.89,0.375,0.5,7.49087453817701e-07,0.046146524101977 +"WP3872","Regulation of Apoptosis by Parathyroid Hormone-related Protein",279,"WP3872",22,0.91,0.35,0.45,1.28737203377495e-08,0.0485074090657223 +"WP4399","MicroRNA network associated with chronic lymphocytic leukemia",416,"WP4399",7,0.57,0.5,0.5,1.28737203377495e-08,0.0485074090657223 +"WP53","ID signaling pathway",523,"WP53",16,0.81,0.307692307692308,0.384615384615385,1.33825325438479e-13,0.0542788662751285 +"WP734","Serotonin Receptor 4/6/7 and NR3C Signaling",564,"WP734",19,0.84,0.3125,0.375,1.69191698398203e-15,0.0542788662751285 +"WP2881","Estrogen Receptor Pathway",182,"WP2881",13,0.77,0.3,0.4,2.58938282317479e-38,0.0594386193019534 +"WP3963","Mevalonate pathway",315,"WP3963",7,1,0.285714285714286,0.428571428571429,0.00314781622146767,0.0618737980244723 +"WP2197","Endothelin Pathways",81,"WP2197",34,0.68,0.304347826086957,0.391304347826087,4.72920713559152e-27,0.0668243064530906 +"WP2355","Corticotropin-releasing hormone signaling pathway",100,"WP2355",93,0.78,0.328767123287671,0.410958904109589,5.53853655041636e-45,0.0668243064530906 +"WP727","Monoamine Transport",561,"WP727",32,0.53,0.294117647058824,0.529411764705882,4.62070637396041e-12,0.0730490654877152 +"WP167","Eicosanoid Synthesis",43,"WP167",27,0.67,0.333333333333333,0.388888888888889,2.17394413943821e-22,0.0735098081465718 +"WP3624","Lung fibrosis",235,"WP3624",63,0.67,0.30952380952381,0.428571428571429,1.55030261832076e-25,0.080115977530217 +"WP4584","Biomarkers for pyrimidine metabolism disorders",468,"WP4584",15,0.8,0.333333333333333,0.5,2.56816439701713e-12,0.0832724893457054 +"WP4204","Tumor suppressor activity of SMARCB1",357,"WP4204",33,0.79,0.269230769230769,0.423076923076923,7.79200875278231e-09,0.0908144088489654 +"WP4719","Eicosanoid metabolism via Cyclo Oxygenases (COX)",490,"WP4719",30,0.7,0.333333333333333,0.380952380952381,2.17394413943821e-22,0.0918721376616465 +"WP3611","Photodynamic therapy-induced AP-1 survival signaling.",230,"WP3611",51,0.9,0.304347826086957,0.456521739130435,1.55030261832076e-25,0.093911573076689 +"WP2011","SREBF and miR33 in cholesterol and lipid homeostasis",64,"WP2011",19,0.84,0.3125,0.4375,2.9447393377517e-11,0.103949453944605 +"WP3892","Development of pulmonary dendritic cells and macrophage subsets",288,"WP3892",13,0.77,0.2,0.7,7.70437079680464e-06,0.111367348220358 +"WP2431","Spinal Cord Injury",114,"WP2431",120,0.75,0.322222222222222,0.4,5.53853655041636e-45,0.114048118916392 +"WP272","Blood Clotting Cascade",148,"WP272",23,0.52,0.333333333333333,0.5,1.05891161032475e-42,0.114803285411883 +"WP117","GPCRs, Other",5,"WP117",94,0.23,0.318181818181818,0.363636363636364,3.77273931182897e-18,0.120172770046016 +"WP3596","miR-517 relationship with ARCN1 and USP1",227,"WP3596",5,1,0.2,0.4,7.70437079680464e-06,0.123137649892892 +"WP3672","LncRNA-mediated mechanisms of therapeutic resistance",257,"WP3672",12,0.58,0.285714285714286,0.428571428571429,1.61117377276123e-06,0.123137649892892 +"WP3995","Prion disease pathway",324,"WP3995",37,0.84,0.258064516129032,0.419354838709677,1.42295577093001e-17,0.148008766451471 +"WP4147","PTF1A related regulatory pathway",342,"WP4147",11,0.45,0.2,0.4,0.000808563677475246,0.156029921726251 +"WP2849","Hematopoietic Stem Cell Differentiation",163,"WP2849",63,0.68,0.325581395348837,0.395348837209302,1.4645909158934e-29,0.156167098725433 +"WP3958","GPR40 Pathway",313,"WP3958",16,0.81,0.307692307692308,0.538461538461538,1.06179313771239e-06,0.156624702837221 +"WP4249","Hedgehog Signaling Pathway",376,"WP4249",44,0.77,0.264705882352941,0.411764705882353,6.45939424963396e-09,0.171056939850016 +"WP2846","Proprotein convertase subtilisin/kexin type 9 (PCSK9) mediated LDL receptor degradation",161,"WP2846",3,0.33,0,1,0.191601747736878,0.191601747736878 +"WP3408","Evolocumab Mechanism",213,"WP3408",3,0.33,0,1,0.191601747736878,0.191601747736878 +"WP2118","Arrhythmogenic Right Ventricular Cardiomyopathy",80,"WP2118",76,0.74,0.303571428571429,0.410714285714286,6.58880500842654e-23,0.19520059624092 +"WP3640","Imatinib and Chronic Myeloid Leukemia",243,"WP3640",21,0.95,0.3,0.4,3.36912948711107e-08,0.202640916207215 +"WP2007","Iron metabolism in placenta",63,"WP2007",12,0.67,0.25,0.375,0.000425327317103322,0.20667484530917 +"WP129","Matrix Metalloproteinases",8,"WP129",30,0.73,0.272727272727273,0.409090909090909,1.66846236358396e-28,0.217106999492912 +"WP4754","IL-18 signaling pathway",505,"WP4754",279,0.8,0.265765765765766,0.373873873873874,5.53853655041636e-45,0.224063872360977 +"WP3301","MFAP5-mediated ovarian cancer cell motility and invasiveness",207,"WP3301",13,1,0.230769230769231,0.384615384615385,7.1834548445351e-10,0.236415904297976 +"WP704","Methylation Pathways",555,"WP704",10,0.7,0.142857142857143,0.428571428571429,1.10795143781028e-12,0.241165469354808 +"WP3930","EDA Signalling in Hair Follicle Development",297,"WP3930",14,0.64,0.222222222222222,0.555555555555556,6.78928901696758e-07,0.24293224118149 +"WP3967","miR-509-3p alteration of YAP1/ECM axis",317,"WP3967",19,0.89,0.235294117647059,0.352941176470588,3.92971708713555e-06,0.246081089028509 +"WP2858","Ectoderm Differentiation",168,"WP2858",144,0.78,0.285714285714286,0.366071428571429,6.10911950894992e-26,0.251410075884791 +"WP428","Wnt Signaling",384,"WP428",118,0.79,0.301075268817204,0.365591397849462,5.00019440781505e-25,0.251410075884791 +"WP1434","Osteopontin Signaling",19,"WP1434",13,1,0.230769230769231,0.461538461538462,1.51229007711679e-12,0.257536764433672 +"WP176","Folate Metabolism",46,"WP176",73,0.6,0.295454545454545,0.409090909090909,1.55030261832076e-25,0.257536764433672 +"WP28","Selenium Metabolism and Selenoproteins",150,"WP28",46,0.61,0.25,0.392857142857143,2.4987918295779e-23,0.257536764433672 +"WP2840","Hair Follicle Development: Cytodifferentiation (Part 3 of 3)",160,"WP2840",88,0.64,0.267857142857143,0.375,1.4645909158934e-29,0.257536764433672 +"WP3617","Photodynamic therapy-induced NF-kB survival signaling",234,"WP3617",35,0.86,0.233333333333333,0.4,1.55030261832076e-25,0.257536764433672 +"WP2059","Alzheimers Disease",75,"WP2059",150,0.46,0.260869565217391,0.36231884057971,6.52294438984146e-17,0.264407820025205 +"WP4658","Small cell lung cancer",478,"WP4658",98,0.91,0.269662921348315,0.359550561797753,1.33825325438479e-13,0.266714097046007 +"WP237","Glucocorticoid and Mineralcorticoid Metabolism",107,"WP237",8,0.25,0,0.5,0.273007477872406,0.273007477872406 +"WP3287","Overview of nanoparticle effects",202,"WP3287",19,0.79,0.266666666666667,0.4,1.55030261832076e-25,0.292450502904674 +"WP4586","Metabolism of alpha-linolenic acid",470,"WP4586",7,0.86,0.166666666666667,0.5,0.0386740237126384,0.296626199889639 +"WP3580","Methionine De Novo and Salvage Pathway",220,"WP3580",22,0.86,0.210526315789474,0.368421052631579,4.35964063989166e-11,0.301026666733762 +"WP4481","Resistin as a regulator of inflammation",422,"WP4481",33,0.85,0.25,0.357142857142857,1.55030261832076e-25,0.310639518319511 +"WP3595","mir-124 predicted interactions with cell cycle and differentiation ",226,"WP3595",7,0.86,0.333333333333333,0.5,1.28871879017951e-06,0.311537001183337 +"WP4225","Pyrimidine metabolism and related diseases",369,"WP4225",17,0.71,0.25,0.416666666666667,1.65319775729734e-07,0.312696646387934 +"WP24","Peptide GPCRs",111,"WP24",75,0.28,0.285714285714286,0.428571428571429,1.91116166189054e-21,0.317365436064072 +"WP4336","ncRNAs involved in Wnt signaling in hepatocellular carcinoma",405,"WP4336",91,0.76,0.289855072463768,0.36231884057971,5.00019440781505e-25,0.320170838547363 +"WP4462","Platelet-mediated interactions with vascular and circulating cells",418,"WP4462",17,0.88,0.266666666666667,0.4,1.28837373141904e-08,0.341095356415239 +"WP4493","Cells and Molecules involved in local acute inflammatory response ",426,"WP4493",17,0.76,0.307692307692308,0.384615384615385,1.55030261832076e-25,0.341095356415239 +"WP3670","Simplified Interaction Map Between LOXL4 and Oxidative Stress Pathway",256,"WP3670",21,0.81,0.176470588235294,0.352941176470588,2.45932835171728e-12,0.357129134137342 +"WP4538","Regulatory circuits of the STAT3 signaling pathway",447,"WP4538",79,0.85,0.26865671641791,0.343283582089552,1.91116166189054e-21,0.363878327573958 +"WP229","Irinotecan Pathway",90,"WP229",13,0.54,0.285714285714286,0.428571428571429,1.87627142351219e-05,0.372595026103777 +"WP4172","PI3K-Akt Signaling Pathway",350,"WP4172",345,0.73,0.281746031746032,0.361111111111111,1.96319556679318e-26,0.389653492019368 +"WP3584","MECP2 and Associated Rett Syndrome",221,"WP3584",71,0.72,0.274509803921569,0.352941176470588,2.08918249834541e-15,0.389709140526829 +"WP530","Cytokines and Inflammatory Response",524,"WP530",27,0.52,0.214285714285714,0.357142857142857,1.55030261832076e-25,0.394616722859002 +"WP3888","VEGFA-VEGFR2 Signaling Pathway",286,"WP3888",438,0.92,0.255583126550869,0.359801488833747,5.53853655041636e-45,0.415827475604265 +"WP4537","Hippo-Yap signaling pathway",446,"WP4537",23,1,0.130434782608696,0.347826086956522,1.54778757247964e-06,0.425582638865984 +"WP4673","Genes involved in male infertility",483,"WP4673",155,0.55,0.223529411764706,0.352941176470588,8.15687289296435e-21,0.434708802034794 +"WP4258","LncRNA involvement in canonical Wnt signaling and colorectal cancer",378,"WP4258",104,0.73,0.276315789473684,0.342105263157895,5.00019440781505e-25,0.442641490692933 +"WP1528","Physiological and Pathological Hypertrophy of the Heart",26,"WP1528",25,0.96,0.291666666666667,0.375,1.45750470372243e-17,0.443468145964458 +"WP1539","Angiogenesis",30,"WP1539",24,1,0.25,0.375,2.08918249834541e-15,0.443468145964458 +"WP2586","Aryl Hydrocarbon Receptor Netpath",136,"WP2586",48,0.83,0.225,0.35,1.44400359316927e-08,0.452666162731714 +"WP2865","IL1 and megakaryocytes in obesity",171,"WP2865",25,0.84,0.238095238095238,0.380952380952381,5.19525794232389e-10,0.452666162731714 +"WP384","Apoptosis Modulation by HSP70",266,"WP384",19,0.95,0.166666666666667,0.388888888888889,6.96540853859659e-18,0.452666162731714 +"WP706","Sudden Infant Death Syndrome (SIDS) Susceptibility Pathways",556,"WP706",164,0.61,0.31,0.35,7.75341732836066e-26,0.452666162731714 +"WP1742","TP53 Network",45,"WP1742",20,0.9,0.222222222222222,0.388888888888889,1.28737203377495e-08,0.467750156194828 +"WP2507","Nanomaterial induced apoptosis",124,"WP2507",20,0.95,0.105263157894737,0.368421052631579,1.28737203377495e-08,0.467750156194828 +"WP2267","Synaptic Vesicle Pathway",86,"WP2267",52,0.6,0.258064516129032,0.354838709677419,6.97840140254166e-30,0.492132771972666 +"WP2038","Regulation of Microtubule Cytoskeleton",73,"WP2038",49,0.86,0.285714285714286,0.357142857142857,5.70447887867626e-23,0.498108980109511 +"WP3594","Circadian rhythm related genes",225,"WP3594",207,0.67,0.289855072463768,0.340579710144928,1.86144948015588e-42,0.502912219194388 +"WP186","Homologous recombination",51,"WP186",13,0.92,0.333333333333333,0.333333333333333,3.57124737003596e-13,0.503680038828547 +"WP4299","Lamin A-processing pathway",392,"WP4299",3,1,0.333333333333333,0.333333333333333,0.0375633720082355,0.525565992204199 +"WP26","Signal Transduction of S1P Receptor",139,"WP26",26,0.92,0.208333333333333,0.333333333333333,1.36035451223937e-09,0.537154575485495 +"WP3932","Focal Adhesion-PI3K-Akt-mTOR-signaling pathway",299,"WP3932",309,0.79,0.246913580246914,0.337448559670782,1.96319556679318e-26,0.55485006897197 +"WP3529","Zinc homeostasis",218,"WP3529",37,0.65,0.208333333333333,0.333333333333333,1.09751947262418e-13,0.559735276252208 +"WP3613","Photodynamic therapy-induced unfolded protein response",232,"WP3613",29,0.83,0.25,0.333333333333333,1.63572753987345e-09,0.592395677119481 +"WP455","GPCRs, Class A Rhodopsin-like",454,"WP455",258,0.22,0.241379310344828,0.327586206896552,1.91116166189054e-21,0.594474156958518 +"WP314","Fas Ligand (FasL) pathway and Stress induction of Heat Shock Proteins (HSP) regulation",198,"WP314",44,0.91,0.175,0.325,1.28737203377495e-08,0.596740036001061 +"WP4321","Thermogenesis",401,"WP4321",108,0.83,0.266666666666667,0.333333333333333,2.44977316588364e-24,0.602303776230422 +"WP1533","Vitamin B12 Metabolism",29,"WP1533",53,0.57,0.2,0.333333333333333,1.55030261832076e-25,0.625924461178548 +"WP254","Apoptosis",132,"WP254",86,0.93,0.225,0.3375,6.96540853859659e-18,0.630454225897172 +"WP2817","Mammary gland development pathway - Pregnancy and lactation (Stage 3 of 4)",157,"WP2817",33,0.76,0.32,0.32,8.1728342950092e-20,0.631033926043019 +"WP4286","Genotoxicity pathway",386,"WP4286",63,0.78,0.244897959183673,0.326530612244898,6.52294438984146e-17,0.633739231633592 +"WP4228","Vitamin B6-dependent and responsive disorders",370,"WP4228",5,0.8,0.25,0.25,0.00334024416831868,0.635216999029685 +"WP306","Focal Adhesion",195,"WP306",202,0.86,0.248554913294798,0.323699421965318,1.96319556679318e-26,0.661870634611933 +"WP3941","Oxidative Damage",306,"WP3941",41,0.9,0.243243243243243,0.324324324324324,1.28737203377495e-08,0.699923750757195 +"WP561","Heme Biosynthesis",533,"WP561",9,0.89,0.25,0.25,6.5794345319789e-05,0.701076830955824 +"WP4541","Hippo-Merlin Signaling Dysregulation",450,"WP4541",123,0.77,0.221052631578947,0.315789473684211,5.28168194977512e-22,0.723397294815617 +"WP2064","Neural Crest Differentiation",77,"WP2064",102,0.63,0.25,0.328125,1.94200095136959e-19,0.727478052387628 +"WP3678","Amplification and Expansion of Oncogenic Pathways as Metastatic Traits",260,"WP3678",17,1,0.117647058823529,0.294117647058824,6.04285700943382e-06,0.727478052387628 +"WP3935","Leptin Insulin Overlap",302,"WP3935",17,0.82,0.285714285714286,0.285714285714286,9.45573250233619e-09,0.741018446305419 +"WP1772","Apoptosis Modulation and Signaling",47,"WP1772",93,0.85,0.189873417721519,0.316455696202532,6.96540853859659e-18,0.744856843612274 +"WP2877","Vitamin D Receptor Pathway",178,"WP2877",186,0.63,0.271186440677966,0.322033898305085,7.99040804992212e-20,0.818823949216948 +"WP1591","Heart Development",37,"WP1591",46,0.65,0.266666666666667,0.3,1.16900918682e-14,0.842767793418932 +"WP4357","NRF2-ARE regulation",410,"WP4357",23,0.96,0.227272727272727,0.318181818181818,6.33815645362995e-08,0.87065004588454 +"WP2882","Nuclear Receptors Meta-Pathway",183,"WP2882",322,0.69,0.238738738738739,0.315315315315315,2.58938282317479e-38,0.88225486075262 +"WP2032","Human Thyroid Stimulating Hormone (TSH) signaling pathway",68,"WP2032",68,0.91,0.274193548387097,0.32258064516129,8.47368187861688e-16,0.884931793800649 +"WP3998","Prader-Willi and Angelman Syndrome",326,"WP3998",66,0.45,0.333333333333333,0.333333333333333,2.9765880724211e-12,0.892842095899067 +"WP2369","Histone Modifications",106,"WP2369",70,0.43,0.166666666666667,0.3,4.29629046913145e-07,0.898693967045816 +"WP4540","Pathways Regulating Hippo Signaling",449,"WP4540",99,0.81,0.225,0.325,1.45750470372243e-17,0.900720485325998 +"WP4022","Pyrimidine metabolism",331,"WP4022",87,0.91,0.253164556962025,0.329113924050633,3.57124737003596e-13,0.90295173404126 +"WP4484","Control of immune tolerance by vasoactive intestinal peptide",425,"WP4484",13,0.31,0,0.25,0.189083662421517,0.90837549057179 +"WP3527","Preimplantation Embryo",217,"WP3527",60,0.52,0.193548387096774,0.290322580645161,1.4645909158934e-29,0.920619031124591 +"WP408","Oxidative Stress",335,"WP408",34,0.85,0.206896551724138,0.310344827586207,2.4987918295779e-23,0.926181011736354 +"WP4297","Thiamine metabolic pathways",390,"WP4297",9,0.89,0,0.25,0.171095325811961,0.927438681383965 +"WP1984","Integrated Breast Cancer Pathway",59,"WP1984",155,0.92,0.27972027972028,0.314685314685315,3.61848623532521e-17,0.929014479457768 +"WP3972","PDGFR-beta pathway",320,"WP3972",29,1,0.241379310344828,0.275862068965517,1.45750470372243e-17,0.936983896443534 +"WP15","Selenium Micronutrient Network",25,"WP15",92,0.54,0.2,0.32,1.55030261832076e-25,0.94158668008034 +"WP1423","Ganglio Sphingolipid Metabolism",14,"WP1423",13,0.62,0.25,0.25,4.87851969602103e-17,0.954898577153562 +"WP4298","Viral Acute Myocarditis",391,"WP4298",85,0.82,0.228571428571429,0.314285714285714,1.55030261832076e-25,0.960973679911299 +"WP2374","Oncostatin M Signaling Pathway",109,"WP2374",66,0.97,0.25,0.3125,1.45750470372243e-17,0.962619223865447 +"WP3850","Factors and pathways affecting insulin-like growth factor (IGF1)-Akt signaling",270,"WP3850",31,0.94,0.241379310344828,0.310344827586207,2.9447393377517e-11,0.979681670178472 +"WP3657","Hematopoietic Stem Cell Gene Regulation by GABP alpha/beta Complex",250,"WP3657",22,0.86,0.315789473684211,0.315789473684211,1.28737203377495e-08,0.990973876560315 +"WP465","Tryptophan metabolism",474,"WP465",42,0.64,0.259259259259259,0.333333333333333,1.2733947666864e-33,0.991085216247916 +"WP1541","Energy Metabolism",31,"WP1541",48,0.88,0.30952380952381,0.333333333333333,4.7856489956754e-16,0.991457884585696 +"WP4148","Splicing factor NOVA regulated synaptic proteins",343,"WP4148",42,0.74,0.258064516129032,0.32258064516129,8.59680057967434e-17,0.99308777325874 +"WP2380","Brain-Derived Neurotrophic Factor (BDNF) signaling pathway",110,"WP2380",144,0.85,0.227642276422764,0.284552845528455,2.46076597989882e-17,0.993357395961217 +"WP183","Proteasome Degradation",49,"WP183",64,0.91,0.189655172413793,0.258620689655172,0.000102727400071607,0.993739319892961 +"WP3942","PPAR signaling pathway",307,"WP3942",67,0.67,0.244444444444444,0.266666666666667,4.45382103461115e-22,0.993946338790036 +"WP4341","Non-genomic actions of 1,25 dihydroxyvitamin D3",407,"WP4341",71,0.82,0.224137931034483,0.310344827586207,1.55030261832076e-25,0.997223465039722 +"WP2036","TNF related weak inducer of apoptosis (TWEAK) Signaling Pathway",71,"WP2036",42,0.95,0.2,0.3,1.55030261832076e-25,0.998306181536745 +"WP262","EBV LMP1 signaling",140,"WP262",24,0.83,0.2,0.3,1.31802719833037e-09,0.998306181536745 +"WP4008","NO/cGMP/PKG mediated Neuroprotection",328,"WP4008",48,0.52,0.24,0.32,3.3920313877351e-19,0.998306181536745 +"WP4480","Role of Altered Glycolysation of MUC1 in Tumour Microenvironment",421,"WP4480",9,0.89,0.125,0.25,1.55030261832076e-25,0.998306181536745 +"WP411","mRNA Processing",337,"WP411",133,0.92,0.204918032786885,0.286885245901639,7.40715848733595e-20,0.999556795185293 +"WP4290","Metabolic reprogramming in colon cancer",388,"WP4290",44,0.89,0.230769230769231,0.282051282051282,1.21134935033961e-14,0.999559974562214 +"WP2583","T-Cell Receptor and Co-stimulatory Signaling",135,"WP2583",29,0.93,0.0740740740740741,0.185185185185185,0.0020390189701393,0.999564052655054 +"WP2113","Type III interferon signaling",79,"WP2113",10,0.6,0.333333333333333,0.333333333333333,0.000341914298724229,0.999577405939352 +"WP2203","Thymic Stromal LymphoPoietin (TSLP) Signaling Pathway",83,"WP2203",47,0.96,0.2,0.266666666666667,1.55030261832076e-25,0.999581638329153 +"WP3929","Chemokine signaling pathway",296,"WP3929",165,0.75,0.233870967741935,0.306451612903226,1.11151548949677e-22,0.999581638329153 +"WP2878","PPAR Alpha Pathway",179,"WP2878",26,0.62,0.3125,0.3125,2.35000378034819e-10,0.999593630002801 +"WP4211","Transcriptional cascade regulating adipogenesis",361,"WP4211",13,1,0.307692307692308,0.307692307692308,3.05550468161626e-32,0.999597380647255 +"WP395","IL-4 Signaling Pathway",312,"WP395",55,0.96,0.169811320754717,0.264150943396226,1.21006371795151e-15,0.999598637344068 +"WP4756","Renin Angiotensin Aldosterone System (RAAS)",506,"WP4756",44,0.64,0.214285714285714,0.285714285714286,3.79036700534385e-25,0.999600844420397 +"WP2037","Prolactin Signaling Pathway",72,"WP2037",76,0.96,0.164383561643836,0.246575342465753,1.21006371795151e-15,0.999622158178795 +"WP3646","Hepatitis C and Hepatocellular Carcinoma",246,"WP3646",50,0.88,0.25,0.340909090909091,1.55030261832076e-25,0.999661972130556 +"WP3414","Initiation of transcription and translation elongation at the HIV-1 LTR",215,"WP3414",37,0.73,0.259259259259259,0.296296296296296,1.30274002920557e-12,0.999679395222021 +"WP1422","Sphingolipid pathway",13,"WP1422",30,0.8,0.166666666666667,0.25,3.69949076638916e-07,0.999680873684117 +"WP4142","Metabolism of Spingolipids in ER and Golgi apparatus",340,"WP4142",20,0.75,0.2,0.2,1.78651764239784e-05,0.999680873684117 +"WP4725","Sphingolipid Metabolism (general overview)",496,"WP4725",24,0.83,0.2,0.25,1.3073328528498e-06,0.999680873684117 +"WP2359","Parkin-Ubiquitin Proteasomal System pathway",101,"WP2359",70,0.84,0.152542372881356,0.23728813559322,1.33825325438479e-13,0.999692096078023 +"WP2911","miRNA targets in ECM and membrane receptors",188,"WP2911",43,0.51,0.227272727272727,0.272727272727273,1.96319556679318e-26,0.999694369321929 +"WP4262","Breast cancer pathway",380,"WP4262",157,0.77,0.214876033057851,0.28099173553719,8.1728342950092e-20,0.999736194038243 +"WP2636","Common Pathways Underlying Drug Addiction",141,"WP2636",42,0.57,0.166666666666667,0.25,8.80436312071741e-23,0.999745706039956 +"WP2828","Bladder Cancer",159,"WP2828",41,0.93,0.184210526315789,0.289473684210526,2.88662493064661e-07,0.999745706039956 +"WP3612","Photodynamic therapy-induced NFE2L2 (NRF2) survival signaling",231,"WP3612",24,0.88,0.0952380952380952,0.238095238095238,1.21006371795151e-15,0.999752419955776 +"WP4312","Rett syndrome causing genes",398,"WP4312",49,0.76,0.216216216216216,0.297297297297297,1.22943627951508e-14,0.999766525303437 +"WP2533","Glycerophospholipid Biosynthetic Pathway",130,"WP2533",30,0.83,0.08,0.16,3.98592395806362e-10,0.999787685558907 +"WP3940","One carbon metabolism and related pathways",305,"WP3940",54,0.72,0.230769230769231,0.256410256410256,2.86780567028817e-25,0.999787685558907 +"WP4657","22q11.2 Deletion Syndrome",477,"WP4657",92,0.63,0.258620689655172,0.310344827586207,5.10653311534479e-29,0.999801314777508 +"WP382","MAPK Signaling Pathway",264,"WP382",249,0.78,0.261538461538462,0.302564102564103,5.53853655041636e-45,0.999829075430104 +"WP4666","Hepatitis B infection",482,"WP4666",154,0.84,0.2,0.276923076923077,1.55030261832076e-25,0.999846173141814 +"WP107","Translation Factors",3,"WP107",54,0.87,0.234042553191489,0.276595744680851,8.52450711689985e-13,0.999852323093054 +"WP1424","Globo Sphingolipid Metabolism",15,"WP1424",21,0.95,0.2,0.2,4.87851969602103e-17,0.999852323093054 +"WP1584","Type II diabetes mellitus",35,"WP1584",22,0.64,0.142857142857143,0.142857142857143,7.99040804992212e-20,0.999852323093054 +"WP2018","RANKL/RANK (Receptor activator of NFKB (ligand)) Signaling Pathway",65,"WP2018",55,0.95,0.0961538461538462,0.192307692307692,1.21006371795151e-15,0.999852323093054 +"WP231","TNF alpha Signaling Pathway",94,"WP231",94,0.94,0.204545454545455,0.284090909090909,1.55030261832076e-25,0.999852323093054 +"WP2371","Parkinsons Disease Pathway",108,"WP2371",84,0.37,0.193548387096774,0.290322580645161,6.96540853859659e-18,0.999852323093054 +"WP244","Alpha 6 Beta 4 signaling pathway",116,"WP244",35,0.94,0.121212121212121,0.181818181818182,2.61142544133486e-11,0.999852323093054 +"WP2453","TCA Cycle and Deficiency of Pyruvate Dehydrogenase complex (PDHc)",119,"WP2453",16,0.94,0.0666666666666667,0.0666666666666667,1.10524321914212e-13,0.999852323093054 +"WP2456","HIF1A and PPARG regulation of glycolysis",120,"WP2456",8,0.75,0.166666666666667,0.166666666666667,0.00320215171958638,0.999852323093054 +"WP2854","Gene regulatory network modelling somitogenesis ",165,"WP2854",11,0.55,0.166666666666667,0.166666666666667,0.0396104615656672,0.999852323093054 +"WP2870","Extracellular vesicle-mediated signaling in recipient cells",173,"WP2870",30,0.9,0.185185185185185,0.222222222222222,1.47923810515956e-16,0.999852323093054 +"WP3","Phytochemical activity on NRF2 transcriptional activation",193,"WP3",15,0.93,0.0714285714285714,0.214285714285714,0.00237947159212301,0.999852323093054 +"WP3286","Copper homeostasis",201,"WP3286",54,0.87,0.234042553191489,0.297872340425532,3.71596808468601e-16,0.999852323093054 +"WP3298","Melatonin metabolism and effects",204,"WP3298",42,0.62,0.269230769230769,0.307692307692308,1.86144948015588e-42,0.999852323093054 +"WP3413","NOTCH1 regulation of human endothelial cell calcification",214,"WP3413",18,0.89,0.125,0.125,2.23804617426945e-12,0.999852323093054 +"WP3601","Composition of Lipid Particles",229,"WP3601",10,0.4,0,0.25,0.191601747736878,0.999852323093054 +"WP3633","Caffeine and Theobromine metabolism",239,"WP3633",4,0.25,0,0,0.999852323093054,0.999852323093054 +"WP3664","Regulation of Wnt/B-catenin Signaling by Small Molecule Compounds",253,"WP3664",18,0.89,0.1875,0.3125,8.33920870140507e-09,0.999852323093054 +"WP3845","Canonical and Non-canonical Notch signaling",268,"WP3845",27,0.81,0.0909090909090909,0.181818181818182,0.000608063456248664,0.999852323093054 +"WP3859","TGF-B Signaling in Thyroid Cells for Epithelial-Mesenchymal Transition",274,"WP3859",18,0.94,0.0588235294117647,0.0588235294117647,2.97846854097459e-06,0.999852323093054 +"WP3931","ESC Pluripotency Pathways",298,"WP3931",119,0.7,0.265060240963855,0.289156626506024,1.04633266994318e-15,0.999852323093054 +"WP3945","TYROBP Causal Network",310,"WP3945",63,0.9,0.12280701754386,0.175438596491228,1.51229007711679e-12,0.999852323093054 +"WP3965","Lipid Metabolism Pathway",316,"WP3965",29,0.9,0.269230769230769,0.269230769230769,1.10524321914212e-13,0.999852323093054 +"WP3982","miRNA regulation of p53 pathway in prostate cancer",322,"WP3982",34,0.68,0.0869565217391304,0.217391304347826,4.32292432502445e-07,0.999852323093054 +"WP4153","Degradation pathway of sphingolipids, including diseases",346,"WP4153",10,0.8,0,0,0.999852323093054,0.999852323093054 +"WP4156","Biosynthesis and regeneration of tetrahydrobiopterin (BH4) and catabolism of phenylalanine, including diseases",348,"WP4156",2,1,0,0,0.999852323093054,0.999852323093054 +"WP4159","GABA receptor Signaling",349,"WP4159",33,0.39,0.0769230769230769,0.0769230769230769,0.0013300266749614,0.999852323093054 +"WP4220","Neurotransmitter Disorders",365,"WP4220",4,0.25,0,0,0.999852323093054,0.999852323093054 +"WP43","Oxidation by Cytochrome P450",393,"WP43",63,0.48,0.133333333333333,0.166666666666667,7.53565262981462e-07,0.999852323093054 +"WP4320","The effect of progerin on the involved genes in Hutchinson-Gilford Progeria Syndrome",400,"WP4320",39,0.56,0.227272727272727,0.227272727272727,5.61788394294512e-16,0.999852323093054 +"WP4342","Vitamins A and D - action mechanisms",408,"WP4342",3,1,0.333333333333333,0.333333333333333,1.20099662033474e-06,0.999852323093054 +"WP437","EGF/EGFR Signaling Pathway",411,"WP437",164,0.95,0.206451612903226,0.232258064516129,1.4645909158934e-29,0.999852323093054 +"WP4482","Vitamin D in inflammatory diseases",423,"WP4482",22,0.95,0.19047619047619,0.285714285714286,1.16949610776226e-27,0.999852323093054 +"WP4483","Relationship between inflammation, COX-2 and EGFR",424,"WP4483",25,0.88,0.272727272727273,0.318181818181818,6.500496706318e-05,0.999852323093054 +"WP4519","Cerebral Organic Acidurias, including diseases",435,"WP4519",7,1,0.285714285714286,0.285714285714286,1.97077141104003e-05,0.999852323093054 +"WP4522","Metabolic pathway of LDL, HDL and TG, including diseases",437,"WP4522",17,0.53,0,0.222222222222222,0.0725218231021907,0.999852323093054 +"WP4535","Envelope proteins and their potential roles in EDMD physiopathology",444,"WP4535",46,0.89,0.24390243902439,0.268292682926829,1.11151548949677e-22,0.999852323093054 +"WP4549","Fragile X Syndrome ",453,"WP4549",123,0.76,0.172043010752688,0.21505376344086,6.52294438984146e-17,0.999852323093054 +"WP4562","Canonical NF-KB pathway",460,"WP4562",8,1,0,0.125,0.452666162731714,0.999852323093054 +"WP4585","Cancer immunotherapy by PD-1 blockade",469,"WP4585",24,0.88,0.0952380952380952,0.19047619047619,2.79548473355309e-05,0.999852323093054 +"WP4724","Omega-9 FA synthesis",495,"WP4724",16,0.75,0.166666666666667,0.25,9.83107916736652e-08,0.999852323093054 +"WP4758","Nephrotic syndrome",507,"WP4758",45,0.73,0.151515151515152,0.181818181818182,7.19331431961561e-10,0.999852323093054 +"WP550","Biogenic Amine Synthesis",529,"WP550",16,0.19,0.333333333333333,0.333333333333333,0.0013300266749614,0.999852323093054 +"WP100","Glutathione metabolism",1,"WP100",23,0.7,0.0625,0.0625,2.4987918295779e-23,0.999852323093054 +"WP106","Alanine and aspartate metabolism",2,"WP106",12,0.58,0.142857142857143,0.142857142857143,0.0013300266749614,0.999852323093054 +"WP111","Electron Transport Chain (OXPHOS system in mitochondria)",4,"WP111",106,0.66,0.0714285714285714,0.128571428571429,1.43014316833318e-19,0.999852323093054 +"WP12","Osteoclast Signaling",6,"WP12",16,0.75,0.166666666666667,0.25,1.51229007711679e-12,0.999852323093054 +"WP134","Pentose Phosphate Metabolism",9,"WP134",7,1,0,0.142857142857143,0.154107526146787,0.999852323093054 +"WP1403","AMP-activated Protein Kinase (AMPK) Signaling",12,"WP1403",69,0.81,0.178571428571429,0.25,7.99040804992212e-20,0.999852323093054 +"WP143","Fatty Acid Beta Oxidation",17,"WP143",34,0.79,0.111111111111111,0.111111111111111,6.0888051023505e-05,0.999852323093054 +"WP1433","Nucleotide-binding Oligomerization Domain (NOD) pathway",18,"WP1433",41,0.78,0.0625,0.125,4.08325260581342e-05,0.999852323093054 +"WP1449","Regulation of toll-like receptor signaling pathway",21,"WP1449",145,0.77,0.117117117117117,0.198198198198198,1.55030261832076e-25,0.999852323093054 +"WP1471","Target Of Rapamycin (TOR) Signaling",23,"WP1471",37,0.92,0.0882352941176471,0.117647058823529,8.28904921253337e-06,0.999852323093054 +"WP1531","Vitamin D Metabolism",28,"WP1531",10,0.7,0.285714285714286,0.285714285714286,2.36116814219851e-05,0.999852323093054 +"WP1544","MicroRNAs in cardiomyocyte hypertrophy",32,"WP1544",101,0.75,0.223684210526316,0.263157894736842,1.45750470372243e-17,0.999852323093054 +"WP1589","Folate-Alcohol and Cancer Pathway Hypotheses",36,"WP1589",9,0.89,0.125,0.25,2.91348117795513e-05,0.999852323093054 +"WP185","Integrin-mediated Cell Adhesion",50,"WP185",104,0.84,0.195402298850575,0.218390804597701,5.28168194977512e-22,0.999852323093054 +"WP1941","Peroxisomal beta-oxidation of tetracosanoyl-CoA",52,"WP1941",4,1,0,0,0.999852323093054,0.999852323093054 +"WP195","IL-1 signaling pathway",54,"WP195",57,0.96,0.127272727272727,0.181818181818182,1.5288509675647e-18,0.999852323093054 +"WP197","Cholesterol Biosynthesis Pathway",55,"WP197",15,0.93,0.214285714285714,0.285714285714286,2.36116814219851e-05,0.999852323093054 +"WP1982","Sterol Regulatory Element-Binding Proteins (SREBP) signalling",58,"WP1982",73,0.88,0.140625,0.171875,1.10524321914212e-13,0.999852323093054 +"WP2035","Follicle Stimulating Hormone (FSH) signaling pathway",70,"WP2035",27,0.81,0.181818181818182,0.272727272727273,1.84528135455106e-08,0.999852323093054 +"WP205","IL-7 Signaling Pathway",74,"WP205",25,1,0.16,0.2,0.000601597866207179,0.999852323093054 +"WP2112","IL17 signaling pathway",78,"WP2112",32,0.84,0.148148148148148,0.222222222222222,1.31802719833037e-09,0.999852323093054 +"WP22","IL-9 Signaling Pathway",82,"WP22",19,0.79,0.0666666666666667,0.0666666666666667,0.000601597866207179,0.999852323093054 +"WP2249","Metastatic brain tumor",84,"WP2249",28,0.21,0.166666666666667,0.333333333333333,0.00291300857028192,0.999852323093054 +"WP2261","Signaling Pathways in Glioblastoma",85,"WP2261",83,0.96,0.2375,0.25,1.45750470372243e-17,0.999852323093054 +"WP2272","Pathogenic Escherichia coli infection",87,"WP2272",55,0.85,0.0851063829787234,0.191489361702128,4.18564642105688e-07,0.999852323093054 +"WP2289","Drug Induction of Bile Acid Pathway",89,"WP2289",17,0.24,0.25,0.25,6.49286728094462e-06,0.999852323093054 +"WP2291","Deregulation of Rab and Rab Effector Genes in Bladder Cancer",92,"WP2291",16,0.94,0.266666666666667,0.266666666666667,3.11005970071626e-15,0.999852323093054 +"WP2324","AGE/RAGE pathway",95,"WP2324",66,0.95,0.142857142857143,0.206349206349206,1.45750470372243e-17,0.999852323093054 +"WP2333","Trans-sulfuration pathway",98,"WP2333",10,1,0.2,0.2,7.49087453817701e-07,0.999852323093054 +"WP2436","Dopamine metabolism",115,"WP2436",14,0.64,0.222222222222222,0.222222222222222,6.78665345557183e-11,0.999852323093054 +"WP2447","Amyotrophic lateral sclerosis (ALS)",118,"WP2447",38,0.79,0.166666666666667,0.3,1.30274002920557e-12,0.999852323093054 +"WP2485","NAD Biosynthesis II (from tryptophan)",122,"WP2485",8,0.75,0.166666666666667,0.166666666666667,1.2733947666864e-33,0.999852323093054 +"WP2509","Nanoparticle triggered autophagic cell death",125,"WP2509",24,0.88,0.142857142857143,0.142857142857143,1.28737203377495e-08,0.999852323093054 +"WP2513","Nanoparticle triggered regulated necrosis",126,"WP2513",12,0.92,0,0,0.795485118928105,0.999852323093054 +"WP2526","PDGF Pathway",129,"WP2526",40,0.98,0.0769230769230769,0.128205128205128,1.21006371795151e-15,0.999852323093054 +"WP2572","Primary Focal Segmental Glomerulosclerosis FSGS",134,"WP2572",74,0.78,0.275862068965517,0.310344827586207,4.81412003815079e-10,0.999852323093054 +"WP2637","Structural Pathway of Interleukin 1 (IL-1)",142,"WP2637",50,0.98,0.142857142857143,0.204081632653061,1.21006371795151e-15,0.999852323093054 +"WP2643","Nanoparticle-mediated activation of receptor signaling",144,"WP2643",29,0.97,0.178571428571429,0.214285714285714,0.00101315545629077,0.999852323093054 +"WP268","Notch Signaling",147,"WP268",47,0.85,0.175,0.225,6.84417911248327e-08,0.999852323093054 +"WP2805","exRNA mechanism of action and biogenesis",151,"WP2805",8,0.62,0.2,0.2,0.000217368536815086,0.999852323093054 +"WP2813","Mammary gland development pathway - Embryonic development (Stage 1 of 4)",153,"WP2813",18,0.61,0.272727272727273,0.272727272727273,1.1219536394885e-16,0.999852323093054 +"WP2853","Endoderm Differentiation",164,"WP2853",146,0.77,0.223214285714286,0.258928571428571,5.00019440781505e-25,0.999852323093054 +"WP2857","Mesodermal Commitment Pathway",167,"WP2857",157,0.74,0.206896551724138,0.258620689655172,5.00019440781505e-25,0.999852323093054 +"WP286","IL-3 Signaling Pathway",169,"WP286",49,0.9,0.159090909090909,0.204545454545455,1.21006371795151e-15,0.999852323093054 +"WP2864","Apoptosis-related network due to altered Notch3 in ovarian cancer",170,"WP2864",54,0.93,0.16,0.28,4.12289297028431e-17,0.999852323093054 +"WP2868","TCA Cycle Nutrient Utilization and Invasiveness of Ovarian Cancer",172,"WP2868",5,1,0,0,0.999852323093054,0.999852323093054 +"WP2873","Aryl Hydrocarbon Receptor Pathway",174,"WP2873",48,0.65,0.129032258064516,0.225806451612903,4.12289297028431e-17,0.999852323093054 +"WP2875","Constitutive Androstane Receptor Pathway",176,"WP2875",32,0.53,0.176470588235294,0.235294117647059,2.9447393377517e-11,0.999852323093054 +"WP2876","Pregnane X Receptor pathway",177,"WP2876",33,0.55,0.166666666666667,0.222222222222222,2.9447393377517e-11,0.999852323093054 +"WP288","NLR Proteins",181,"WP288",9,0.89,0.125,0.125,0.00237947159212301,0.999852323093054 +"WP2884","NRF2 pathway",184,"WP2884",146,0.66,0.1875,0.260416666666667,2.4987918295779e-23,0.999852323093054 +"WP2889","Oxytocin signaling",185,"WP2889",4,0.5,0,0,0.999852323093054,0.999852323093054 +"WP2916","Interactome of polycomb repressive complex 2 (PRC2) ",189,"WP2916",17,0.94,0.1875,0.3125,6.05665966147348e-07,0.999852323093054 +"WP2942","DDX1 as a regulatory component of the Drosha microprocessor",190,"WP2942",9,0.67,0,0,0.990973876560315,0.999852323093054 +"WP299","Nuclear Receptors in Lipid Metabolism and Toxicity",192,"WP299",35,0.46,0.25,0.25,1.20099662033474e-06,0.999852323093054 +"WP304","Kit receptor signaling pathway",194,"WP304",60,0.98,0.169491525423729,0.220338983050847,1.45750470372243e-17,0.999852323093054 +"WP311","Synthesis and Degradation of Ketone Bodies",196,"WP311",5,1,0.2,0.2,6.0888051023505e-05,0.999852323093054 +"WP313","Signaling of Hepatocyte Growth Factor Receptor",197,"WP313",34,1,0.176470588235294,0.205882352941176,1.21006371795151e-15,0.999852323093054 +"WP325","Triacylglyceride Synthesis",200,"WP325",26,0.54,0,0,0.999852323093054,0.999852323093054 +"WP3300","Dual hijack model of Vif in HIV infection",206,"WP3300",9,0.67,0,0.166666666666667,0.118228105072828,0.999852323093054 +"WP3302","eIF5A regulation in response to inhibition of the nuclear export system",208,"WP3302",4,0.75,0.333333333333333,0.333333333333333,0.00071352422837791,0.999852323093054 +"WP3303","RAC1/PAK1/p38/MMP2 Pathway",209,"WP3303",69,0.9,0.225806451612903,0.274193548387097,3.11796204582401e-18,0.999852323093054 +"WP357","Fatty Acid Biosynthesis",219,"WP357",22,0.91,0.2,0.2,1.10524321914212e-13,0.999852323093054 +"WP3593","MicroRNA for Targeting Cancer Growth and Vascularization in Glioblastoma",224,"WP3593",9,0.78,0,0,0.999852323093054,0.999852323093054 +"WP363","Wnt Signaling Pathway (Netpath)",237,"WP363",53,0.91,0.208333333333333,0.208333333333333,1.45750470372243e-17,0.999852323093054 +"WP3630","NAD metabolism, sirtuins and aging",238,"WP3630",11,0.91,0.2,0.3,2.25748011539398e-08,0.999852323093054 +"WP3634","Insulin signalling in human adipocytes (normal condition)",240,"WP3634",8,1,0.125,0.125,7.99040804992212e-20,0.999852323093054 +"WP3635","Insulin signalling in human adipocytes (diabetic condition)",241,"WP3635",8,1,0.125,0.125,7.99040804992212e-20,0.999852323093054 +"WP364","IL-6 signaling pathway",242,"WP364",43,0.95,0.24390243902439,0.24390243902439,1.55030261832076e-25,0.999852323093054 +"WP3644","NAD+ metabolism",244,"WP3644",16,0.88,0.142857142857143,0.285714285714286,2.25748011539398e-08,0.999852323093054 +"WP3645","NAD+ biosynthetic pathways",245,"WP3645",22,0.77,0.176470588235294,0.294117647058824,2.25748011539398e-08,0.999852323093054 +"WP3651","Pathways Affected in Adenoid Cystic Carcinoma",247,"WP3651",66,0.85,0.196428571428571,0.25,2.89465973850597e-12,0.999852323093054 +"WP3655","Hypothetical Craniofacial Development Pathway",248,"WP3655",8,0.75,0.166666666666667,0.166666666666667,0.00407427421601939,0.999852323093054 +"WP3656","Interleukin-1 Induced Activation of NF-kappa-B",249,"WP3656",11,0.91,0.1,0.2,0.00279989180752429,0.999852323093054 +"WP3658","Wnt/beta-catenin Signaling Pathway in Leukemia",251,"WP3658",26,0.81,0.333333333333333,0.333333333333333,1.28160819617811e-23,0.999852323093054 +"WP366","TGF-beta Signaling Pathway",252,"WP366",133,0.96,0.2109375,0.234375,1.4645909158934e-29,0.999852323093054 +"WP3668","Hypothesized Pathways in Pathogenesis of Cardiovascular Disease",255,"WP3668",25,0.92,0.217391304347826,0.304347826086957,1.91116166189054e-21,0.999852323093054 +"WP3674","Tgif disruption of Shh signaling",258,"WP3674",9,0.44,0,0,0.999852323093054,0.999852323093054 +"WP3676","BDNF-TrkB Signaling",259,"WP3676",34,0.88,0.166666666666667,0.2,1.84528135455106e-08,0.999852323093054 +"WP368","Mitochondrial LC-Fatty Acid Beta-Oxidation",262,"WP368",17,0.94,0.0625,0.0625,0.0167383786864681,0.999852323093054 +"WP3680","Association Between Physico-Chemical Features and Toxicity Associated Pathways",263,"WP3680",68,0.81,0.163636363636364,0.2,1.46702371634426e-15,0.999852323093054 +"WP3844","PI3K-AKT-mTOR signaling pathway and therapeutic opportunities",267,"WP3844",30,1,0.2,0.2,6.62772818839576e-10,0.999852323093054 +"WP3849","MAPK and NFkB Signalling Pathways Inhibited by Yersinia YopJ",269,"WP3849",12,1,0.166666666666667,0.25,1.31802719833037e-09,0.999852323093054 +"WP3851","TLR4 Signaling and Tolerance",271,"WP3851",30,0.83,0.08,0.16,1.55030261832076e-25,0.999852323093054 +"WP3853","ERK Pathway in Huntington's Disease",272,"WP3853",15,0.87,0.230769230769231,0.307692307692308,1.84528135455106e-08,0.999852323093054 +"WP3858","Toll-like Receptor Signaling related to MyD88",273,"WP3858",32,0.84,0,0.111111111111111,0.114048118916392,0.999852323093054 +"WP3863","T-Cell antigen Receptor (TCR) pathway during Staphylococcus aureus infection",275,"WP3863",62,0.81,0.14,0.22,1.21006371795151e-15,0.999852323093054 +"WP3865","Novel intracellular components of RIG-I-like receptor (RLR) pathway",276,"WP3865",61,0.84,0.137254901960784,0.235294117647059,3.37870774082303e-13,0.999852323093054 +"WP3869","Cannabinoid receptor signaling",277,"WP3869",29,0.79,0.0869565217391304,0.130434782608696,3.92161302035637e-08,0.999852323093054 +"WP3871","Valproic acid pathway",278,"WP3871",13,0.62,0.125,0.125,0.0102047891408715,0.999852323093054 +"WP3874","Canonical and Non-Canonical TGF-B signaling",280,"WP3874",17,1,0.0588235294117647,0.235294117647059,1.47923810515956e-16,0.999852323093054 +"WP3877","Simplified Depiction of MYD88 Distinct Input-Output Pathway",283,"WP3877",19,0.74,0,0.214285714285714,0.0594386193019534,0.999852323093054 +"WP3878","ATM Signaling Network in Development and Disease ",284,"WP3878",46,0.89,0.219512195121951,0.268292682926829,2.50026382158374e-16,0.999852323093054 +"WP3879","4-hydroxytamoxifen, Dexamethasone, and Retinoic Acids Regulation of p27 Expression",285,"WP3879",18,1,0.111111111111111,0.111111111111111,2.45237666239285e-07,0.999852323093054 +"WP391","Mitochondrial Gene Expression",290,"WP391",20,0.8,0.125,0.1875,2.9447393377517e-11,0.999852323093054 +"WP3924","Hfe effect on hepcidin production",292,"WP3924",7,0.57,0.25,0.25,0.00378182889135815,0.999852323093054 +"WP3925","Amino Acid metabolism",293,"WP3925",91,0.73,0.166666666666667,0.227272727272727,2.58938282317479e-38,0.999852323093054 +"WP3927","BMP Signaling Pathway in Eyelid Development",295,"WP3927",20,0.8,0.1875,0.25,1.1219536394885e-16,0.999852323093054 +"WP3933","Kennedy pathway from Sphingolipids",300,"WP3933",15,0.8,0.0833333333333333,0.0833333333333333,0.000153115641692463,0.999852323093054 +"WP3934","Leptin and adiponectin",301,"WP3934",10,0.8,0.125,0.125,1.13349503425421e-06,0.999852323093054 +"WP3937","Microglia Pathogen Phagocytosis Pathway",303,"WP3937",40,0.9,0.0833333333333333,0.0833333333333333,1.57756315705304e-09,0.999852323093054 +"WP3938","miR-222 in Exercise-Induced Cardiac Growth",304,"WP3938",4,1,0,0,0.999852323093054,0.999852323093054 +"WP3943","Robo4 and VEGF Signaling Pathways Crosstalk",308,"WP3943",6,1,0.333333333333333,0.333333333333333,1.76304737966141e-10,0.999852323093054 +"WP3969","H19 action Rb-E2F1 signaling and CDK-Beta-catenin activity",318,"WP3969",16,0.88,0.214285714285714,0.214285714285714,7.1806031181162e-15,0.999852323093054 +"WP3971","Role of Osx and miRNAs in tooth development",319,"WP3971",36,0.28,0.2,0.2,1.74501293167954e-14,0.999852323093054 +"WP3981","miRNA regulation of prostate cancer signaling pathways",321,"WP3981",59,0.54,0.15625,0.21875,1.28737203377495e-08,0.999852323093054 +"WP399","Wnt Signaling Pathway and Pluripotency",323,"WP399",107,0.8,0.232558139534884,0.290697674418605,1.45750470372243e-17,0.999852323093054 +"WP400","p38 MAPK Signaling Pathway",327,"WP400",34,0.97,0.181818181818182,0.242424242424242,4.7856489956754e-16,0.999852323093054 +"WP4018","Pathways in clear cell renal cell carcinoma",330,"WP4018",87,0.91,0.164556962025316,0.189873417721519,1.10524321914212e-13,0.999852323093054 +"WP405","Eukaryotic Transcription Initiation",334,"WP405",43,0.95,0.0975609756097561,0.146341463414634,2.41984712730741e-07,0.999852323093054 +"WP410","Exercise-induced Circadian Regulation",336,"WP410",49,0.9,0.272727272727273,0.295454545454545,1.86144948015588e-42,0.999852323093054 +"WP4136","Fibrin Complement Receptor 3 Signaling Pathway",338,"WP4136",42,0.71,0.0666666666666667,0.166666666666667,1.55030261832076e-25,0.999852323093054 +"WP4141","PI3K/AKT/mTOR - VitD3 Signalling",339,"WP4141",22,0.86,0.263157894736842,0.263157894736842,3.87043570690072e-12,0.999852323093054 +"WP4146","Macrophage markers",341,"WP4146",9,1,0,0.111111111111111,0.21102640351702,0.999852323093054 +"WP4150","Wnt Signaling in Kidney Disease",345,"WP4150",39,0.69,0.222222222222222,0.222222222222222,8.33920870140507e-09,0.999852323093054 +"WP4155","Endometrial cancer",347,"WP4155",63,0.94,0.152542372881356,0.220338983050847,1.04633266994318e-15,0.999852323093054 +"WP4186","Somatroph axis (GH) and its relationship to dietary restriction and aging",352,"WP4186",6,1,0.333333333333333,0.333333333333333,2.25748011539398e-08,0.999852323093054 +"WP4189","Mevalonate arm of cholesterol biosynthesis pathway with inhibitors",353,"WP4189",2,1,0,0,0.999852323093054,0.999852323093054 +"WP4197","The human immune response to tuberculosis",356,"WP4197",23,1,0.130434782608696,0.130434782608696,0.000341914298724229,0.999852323093054 +"WP4205","MET in type 1 papillary renal cell carcinoma",358,"WP4205",59,0.88,0.115384615384615,0.173076923076923,3.90142119029615e-06,0.999852323093054 +"WP4206","Hereditary leiomyomatosis and renal cell carcinoma pathway",359,"WP4206",20,0.95,0.105263157894737,0.210526315789474,2.03101031117154e-10,0.999852323093054 +"WP4210","Tryptophan catabolism leading to NAD+ production",360,"WP4210",16,0.69,0.0909090909090909,0.0909090909090909,1.2733947666864e-33,0.999852323093054 +"WP4217","Ebola Virus Pathway on Host",363,"WP4217",132,0.89,0.135593220338983,0.186440677966102,7.15702783093164e-17,0.999852323093054 +"WP422","MAPK Cascade",364,"WP422",33,1,0.212121212121212,0.272727272727273,1.06179313771239e-06,0.999852323093054 +"WP4223","Ras Signaling",367,"WP4223",186,0.76,0.204225352112676,0.26056338028169,2.6982385516733e-21,0.999852323093054 +"WP4236","Disorders of the Krebs cycle",372,"WP4236",7,1,0.142857142857143,0.142857142857143,0.000542153786249434,0.999852323093054 +"WP4239","Epithelial to mesenchymal transition in colorectal cancer",373,"WP4239",164,0.78,0.1953125,0.2578125,5.10653311534479e-29,0.999852323093054 +"WP4241","Type 2 papillary renal cell carcinoma",375,"WP4241",36,0.83,0.133333333333333,0.166666666666667,6.62772818839576e-10,0.999852323093054 +"WP4255","Non-small cell lung cancer",377,"WP4255",72,0.93,0.149253731343284,0.238805970149254,1.45750470372243e-17,0.999852323093054 +"WP4263","Pancreatic adenocarcinoma pathway",381,"WP4263",89,0.96,0.141176470588235,0.211764705882353,1.47923810515956e-16,0.999852323093054 +"WP4271","Vitamin B12 Disorders",383,"WP4271",13,0.69,0,0.222222222222222,0.105553301023444,0.999852323093054 +"WP4292","Methionine metabolism leading to Sulphur Amino Acids and related disorders",389,"WP4292",11,0.82,0.222222222222222,0.222222222222222,5.6500805039415e-14,0.999852323093054 +"WP430","Statin Pathway",394,"WP430",33,0.45,0.133333333333333,0.266666666666667,0.00133659811986492,0.999852323093054 +"WP4313","Ferroptosis",399,"WP4313",40,0.9,0.138888888888889,0.194444444444444,1.14291084616521e-05,0.999852323093054 +"WP4331","Neovascularisation processes",404,"WP4331",37,1,0.189189189189189,0.27027027027027,3.37870774082303e-13,0.999852323093054 +"WP4352","Ciliary landscape",409,"WP4352",220,0.9,0.137055837563452,0.208121827411168,4.19419091059679e-15,0.999852323093054 +"WP4389","Bile Acids synthesis and enterohepatic circulation ",413,"WP4389",13,0.38,0,0.2,0.191601747736878,0.999852323093054 +"WP4396","Nonalcoholic fatty liver disease",414,"WP4396",160,0.84,0.133333333333333,0.207407407407407,1.55030261832076e-25,0.999852323093054 +"WP4397","Model for regulation of MSMP expression in cancer cells and its proangiogenic role in ovarian tumors",415,"WP4397",3,0.67,0,0,0.999852323093054,0.999852323093054 +"WP4478","LTF danger signal response pathway",419,"WP4478",20,0.7,0.0714285714285714,0.214285714285714,1.55030261832076e-25,0.999852323093054 +"WP4479","Supression of HMGB1 mediated inflammation by THBD",420,"WP4479",9,1,0,0.111111111111111,0.452666162731714,0.999852323093054 +"WP4494","Selective expression of chemokine receptors during T-cell polarization",427,"WP4494",29,0.55,0.0625,0.125,0.00407427421601939,0.999852323093054 +"WP4496","Signal transduction through IL1R",429,"WP4496",35,0.86,0.133333333333333,0.233333333333333,1.55030261832076e-25,0.999852323093054 +"WP4504","Cysteine and methionine catabolism",431,"WP4504",15,0.87,0.153846153846154,0.153846153846154,5.6500805039415e-14,0.999852323093054 +"WP4506","Tyrosine Metabolism",432,"WP4506",4,0.25,0,0,0.999852323093054,0.999852323093054 +"WP4518","Gamma-Glutamyl Cycle for the biosynthesis and degradation of glutathione, including diseases",434,"WP4518",10,0.5,0.2,0.2,0.000377573164229441,0.999852323093054 +"WP4521","Glycosylation and related congenital defects",436,"WP4521",25,1,0.12,0.16,1.02496252421453e-08,0.999852323093054 +"WP4523","Classical pathway of steroidogenesis, including diseases",438,"WP4523",16,0.31,0,0.2,0.273007477872406,0.999852323093054 +"WP4524","The alternative pathway of fetal androgen synthesis",439,"WP4524",12,0.33,0.25,0.25,2.8033361067803e-09,0.999852323093054 +"WP453","Inflammatory Response Pathway",440,"WP453",33,0.67,0.0909090909090909,0.181818181818182,0.000442098767154395,0.999852323093054 +"WP4532","Intraflagellar transport proteins binding to dynein",441,"WP4532",27,0.93,0.08,0.16,0.00558066527342552,0.999852323093054 +"WP4533","Transcription co-factors SKI and SKIL protein partners",442,"WP4533",18,1,0.166666666666667,0.277777777777778,1.54778757247964e-06,0.999852323093054 +"WP4536","Genes related to primary cilium development (based on CRISPR)",445,"WP4536",103,0.92,0.105263157894737,0.189473684210526,8.57900007846234e-13,0.999852323093054 +"WP4539","Synaptic signaling pathways associated with autism spectrum disorder",448,"WP4539",51,0.76,0.256410256410256,0.256410256410256,9.26038985479124e-09,0.999852323093054 +"WP4542","Overview of leukocyte-intrinsic Hippo pathway functions",451,"WP4542",36,0.86,0.161290322580645,0.258064516129032,1.54778757247964e-06,0.999852323093054 +"WP4553","FBXL10 enhancement of MAP/ERK signaling in diffuse large B-cell lymphoma",455,"WP4553",38,0.29,0.181818181818182,0.272727272727273,3.04356671038824e-07,0.999852323093054 +"WP4559","Interactions between immune cells and microRNAs in tumor microenvironment",457,"WP4559",40,0.6,0.125,0.25,1.47923810515956e-16,0.999852323093054 +"WP4561","Cell migration and invasion through p75NTR",459,"WP4561",31,0.9,0.214285714285714,0.285714285714286,3.88351886854851e-13,0.999852323093054 +"WP4564","Neural Crest Cell Migration during Development",461,"WP4564",41,0.8,0.151515151515152,0.242424242424242,1.21006371795151e-15,0.999852323093054 +"WP4565","Neural Crest Cell Migration in Cancer",462,"WP4565",44,0.82,0.166666666666667,0.25,1.21006371795151e-15,0.999852323093054 +"WP4577","Neurodegeneration with brain iron accumulation (NBIA) subtypes pathway",465,"WP4577",44,0.98,0.0930232558139535,0.116279069767442,0.000303680199088757,0.999852323093054 +"WP4595","Urea cycle and associated pathways",472,"WP4595",21,0.76,0.25,0.3125,1.21134935033961e-14,0.999852323093054 +"WP4629","Computational Model of Aerobic Glycolysis",473,"WP4629",12,0.92,0.181818181818182,0.181818181818182,1.94971495989183e-05,0.999852323093054 +"WP4655","Cytosolic DNA-sensing pathway",475,"WP4655",76,0.72,0.109090909090909,0.145454545454545,1.55030261832076e-25,0.999852323093054 +"WP4659","Gastrin Signaling Pathway",479,"WP4659",114,0.92,0.180952380952381,0.238095238095238,4.7856489956754e-16,0.999852323093054 +"WP4674","Head and Neck Squamous Cell Carcinoma",484,"WP4674",70,0.94,0.121212121212121,0.166666666666667,1.47923810515956e-16,0.999852323093054 +"WP4685","Melanoma",485,"WP4685",68,0.93,0.174603174603175,0.26984126984127,1.21006371795151e-15,0.999852323093054 +"WP47","Hedgehog Signaling Pathway Netpath",487,"WP47",16,0.75,0.0833333333333333,0.25,0.0317273821116764,0.999852323093054 +"WP4705","Pathways of nucleic acid metabolism and innate immune sensing",488,"WP4705",16,0.81,0.153846153846154,0.153846153846154,1.16208386478435e-12,0.999852323093054 +"WP4718","Cholesterol metabolism (includes both Bloch and Kandutsch-Russell pathways)",489,"WP4718",47,0.87,0.219512195121951,0.268292682926829,1.16398114740138e-08,0.999852323093054 +"WP4721","Eicosanoid metabolism via Lipo Oxygenases (LOX)",492,"WP4721",29,0.69,0.2,0.25,4.45382103461115e-22,0.999852323093054 +"WP4722","Glycerolipids and Glycerophospholipids",493,"WP4722",24,0.75,0.0555555555555556,0.0555555555555556,0.000153115641692463,0.999852323093054 +"WP4723","Omega-3/Omega-6 FA synthesis",494,"WP4723",15,0.73,0,0.0909090909090909,0.296626199889639,0.999852323093054 +"WP4726","Sphingolipid Metabolism (integrated pathway)",497,"WP4726",25,0.84,0.19047619047619,0.238095238095238,1.3073328528498e-06,0.999852323093054 +"WP4742","Ketogenesis and Ketolysis",499,"WP4742",8,1,0.125,0.125,6.0888051023505e-05,0.999852323093054 +"WP4746","Thyroid hormones production and their peripheral downstream signalling effects regarding congenital hypothyroidism",500,"WP4746",95,0.69,0.227272727272727,0.272727272727273,2.44977316588364e-24,0.999852323093054 +"WP4747","Netrin-UNC5B signaling Pathway",501,"WP4747",52,0.85,0.181818181818182,0.272727272727273,2.5665992363522e-08,0.999852323093054 +"WP4751","HIPK2 in kidney fibrosis",502,"WP4751",2,1,0,0,0.999852323093054,0.999852323093054 +"WP4753","Nucleotide Excision Repair",504,"WP4753",44,0.98,0.255813953488372,0.27906976744186,3.57124737003596e-13,0.999852323093054 +"WP4767","FGFR3 signalling in chondrocyte proliferation and terminal differentiation",509,"WP4767",27,0.89,0.166666666666667,0.25,1.60955895014834e-18,0.999852323093054 +"WP477","Cytoplasmic Ribosomal Proteins",510,"WP477",91,0.93,0.129411764705882,0.164705882352941,8.56966962716958e-10,0.999852323093054 +"WP4792","Purine metabolism",511,"WP4792",13,0.85,0.272727272727273,0.272727272727273,3.92279863878209e-05,0.999852323093054 +"WP481","Insulin Signaling",512,"WP481",161,0.93,0.186666666666667,0.246666666666667,2.30627807010563e-26,0.999852323093054 +"WP49","IL-2 Signaling Pathway",513,"WP49",42,0.98,0.195121951219512,0.24390243902439,1.21006371795151e-15,0.999852323093054 +"WP496","Steroid Biosynthesis",514,"WP496",10,0.4,0,0.25,0.386085732506969,0.999852323093054 +"WP500","Glycogen Synthesis and Degradation",516,"WP500",40,0.9,0.138888888888889,0.194444444444444,9.51262628208688e-25,0.999852323093054 +"WP51","Regulation of Actin Cytoskeleton",518,"WP51",151,0.77,0.213675213675214,0.273504273504274,1.04633266994318e-15,0.999852323093054 +"WP521","Amino acid conjugation of benzoic acid",520,"WP521",5,0.2,0,0,0.999852323093054,0.999852323093054 +"WP524","G13 Signaling Pathway",521,"WP524",41,0.85,0.2,0.2,6.63243812483213e-11,0.999852323093054 +"WP528","Acetylcholine Synthesis",522,"WP528",7,0.57,0,0,0.999852323093054,0.999852323093054 +"WP534","Glycolysis and Gluconeogenesis",526,"WP534",45,0.73,0.121212121212121,0.121212121212121,7.99040804992212e-20,0.999852323093054 +"WP560","TGF-beta Receptor Signaling",532,"WP560",58,0.79,0.217391304347826,0.260869565217391,1.47923810515956e-16,0.999852323093054 +"WP581","EPO Receptor Signaling",535,"WP581",26,0.96,0.08,0.08,0.000601597866207179,0.999852323093054 +"WP585","Interferon type I signaling pathways",536,"WP585",55,0.95,0.173076923076923,0.230769230769231,9.45573250233619e-09,0.999852323093054 +"WP61","Notch Signaling Pathway Netpath",537,"WP61",63,0.9,0.157894736842105,0.280701754385965,4.8712821556021e-23,0.999852323093054 +"WP615","Senescence and Autophagy in Cancer",538,"WP615",108,0.86,0.193548387096774,0.258064516129032,1.55030261832076e-25,0.999852323093054 +"WP623","Oxidative phosphorylation",540,"WP623",62,0.6,0,0.0540540540540541,0.0626324188453113,0.999852323093054 +"WP673","ErbB Signaling Pathway",542,"WP673",91,0.89,0.209876543209877,0.259259259259259,3.46021469111041e-20,0.999852323093054 +"WP678","Arachidonate Epoxygenase / Epoxide Hydrolase",543,"WP678",7,0.71,0.2,0.2,4.43345799464762e-09,0.999852323093054 +"WP688","Catalytic cycle of mammalian Flavin-containing MonoOxygenases (FMOs)",544,"WP688",5,0.6,0,0,0.999852323093054,0.999852323093054 +"WP690","Polyol Pathway",546,"WP690",4,0.75,0,0,0.855645046418417,0.999852323093054 +"WP692","Sulfation Biotransformation Reaction",548,"WP692",19,0.32,0,0,0.999852323093054,0.999852323093054 +"WP694","Arylamine metabolism",549,"WP694",6,0.33,0,0,0.999852323093054,0.999852323093054 +"WP696","Benzo(a)pyrene metabolism",550,"WP696",9,0.78,0,0.142857142857143,0.186101834726753,0.999852323093054 +"WP697","Estrogen metabolism",551,"WP697",19,0.47,0,0,0.999852323093054,0.999852323093054 +"WP698","Glucuronidation",552,"WP698",26,0.35,0.222222222222222,0.222222222222222,2.6913627863713e-23,0.999852323093054 +"WP699","Aflatoxin B1 metabolism",553,"WP699",7,0.43,0,0,0.999852323093054,0.999852323093054 +"WP702","Metapathway biotransformation Phase I and II",554,"WP702",188,0.48,0.133333333333333,0.188888888888889,2.4987918295779e-23,0.999852323093054 +"WP710","DNA Damage Response (only ATM dependent)",558,"WP710",115,0.87,0.13,0.21,1.57756315705304e-09,0.999852323093054 +"WP712","Estrogen signaling pathway",559,"WP712",23,0.91,0.19047619047619,0.333333333333333,1.21006371795151e-15,0.999852323093054 +"WP716","Vitamin A and Carotenoid Metabolism",560,"WP716",44,0.5,0.181818181818182,0.272727272727273,9.28054409606823e-14,0.999852323093054 +"WP733","Serotonin Receptor 2 and STAT3 Signaling",563,"WP733",4,0.75,0.333333333333333,0.333333333333333,0.0212542319346549,0.999852323093054 +"WP75","Toll-like Receptor Signaling Pathway",565,"WP75",104,0.75,0.0897435897435897,0.179487179487179,1.55030261832076e-25,0.999852323093054 +"WP78","TCA Cycle (aka Krebs or citric acid cycle)",566,"WP78",18,1,0,0.0555555555555556,0.345480440691871,0.999852323093054 +"WP80","Nucleotide GPCRs",567,"WP80",11,0.73,0,0,0.999852323093054,0.999852323093054 +"WP127","IL-5 Signaling Pathway",7,"WP127",40,0.95,0.236842105263158,0.263157894736842,1.21006371795151e-15,0.999852323093054 +"WP138","Androgen receptor signaling pathway",11,"WP138",91,0.9,0.195121951219512,0.25609756097561,1.33825325438479e-13,0.999852323093054 +"WP1425","Bone Morphogenic Protein (BMP) Signalling and Regulation",16,"WP1425",12,0.83,0.1,0.2,0.0044135122745415,0.999852323093054 +"WP1559","TFs Regulate miRNAs related to cardiac hypertrophy",34,"WP1559",12,0.58,0,0.142857142857143,0.452666162731714,0.999852323093054 +"WP1946","Cori Cycle",53,"WP1946",17,0.82,0.142857142857143,0.142857142857143,7.99040804992212e-20,0.999852323093054 +"WP2034","Leptin signaling pathway",69,"WP2034",76,0.99,0.213333333333333,0.266666666666667,6.63243812483213e-11,0.999852323093054 +"WP2290","RalA downstream regulated genes",91,"WP2290",12,0.92,0.181818181818182,0.181818181818182,1.57756315705304e-09,0.999852323093054 +"WP23","B Cell Receptor Signaling Pathway",93,"WP23",98,0.94,0.184782608695652,0.260869565217391,1.45750470372243e-17,0.999852323093054 +"WP2328","Allograft Rejection",96,"WP2328",90,0.69,0.17741935483871,0.209677419354839,2.86780567028817e-25,0.999852323093054 +"WP2332","Interleukin-11 Signaling Pathway",97,"WP2332",44,0.91,0.225,0.25,3.51846221320189e-12,0.999852323093054 +"WP2795","Cardiac Hypertrophic Response",149,"WP2795",57,0.89,0.196078431372549,0.254901960784314,2.08918249834541e-15,0.999852323093054 +"WP3614","Photodynamic therapy-induced HIF-1 survival signaling",233,"WP3614",37,0.89,0.181818181818182,0.242424242424242,3.51846221320189e-12,0.999852323093054 +"WP3891","Benzene metabolism",287,"WP3891",6,0.5,0,0,0.999852323093054,0.999852323093054 +"WP3915","Angiopoietin Like Protein 8 Regulatory Pathway",291,"WP3915",132,0.89,0.136752136752137,0.170940170940171,7.99040804992212e-20,0.999852323093054 +"WP3926","ApoE and miR-146 in inflammation and atherosclerosis",294,"WP3926",9,0.89,0,0.125,0.114048118916392,0.999852323093054 +"WP404","Nucleotide Metabolism",333,"WP404",19,0.95,0.166666666666667,0.166666666666667,3.57124737003596e-13,0.999852323093054 +"WP4216","Chromosomal and microsatellite instability in colorectal cancer ",362,"WP4216",74,0.96,0.211267605633803,0.267605633802817,1.47923810515956e-16,0.999852323093054 +"WP4269","Ethanol metabolism resulting in production of ROS by CYP2E1",382,"WP4269",10,0.9,0.111111111111111,0.333333333333333,7.45368111307164e-07,0.999852323093054 +"WP4288","MTHFR deficiency",387,"WP4288",27,0.7,0.315789473684211,0.315789473684211,1.69249742410717e-08,0.999852323093054 +"WP4301","Inhibition of exosome biogenesis and secretion by Manumycin A in CRPC cells",396,"WP4301",18,1,0.166666666666667,0.222222222222222,9.01134422889796e-05,0.999852323093054 +"WP4324","Mitochondrial complex I assembly model OXPHOS system",402,"WP4324",56,0.8,0,0.0222222222222222,0.0626324188453113,0.999852323093054 +"WP4329","miRNAs involvement in the immune response in sepsis",403,"WP4329",64,0.5,0.0625,0.1875,1.55030261832076e-25,0.999852323093054 +"WP438","Non-homologous end joining",412,"WP438",11,0.91,0.1,0.1,0.00934439177317729,0.999852323093054 +"WP4495","IL-10 Anti-inflammatory Signaling Pathway ",428,"WP4495",12,0.92,0.181818181818182,0.272727272727273,1.55030261832076e-25,0.999852323093054 +"WP4507","Molybdenum cofactor (Moco) biosynthesis",433,"WP4507",7,1,0.142857142857143,0.285714285714286,3.39506009152496e-24,0.999852323093054 +"WP4534","Mechanoregulation and pathology of YAP/TAZ via Hippo and non-Hippo mechanisms",443,"WP4534",48,0.92,0.159090909090909,0.272727272727273,8.80436312071741e-23,0.999852323093054 +"WP4558","Overview of interferons-mediated signaling pathway",456,"WP4558",37,0.38,0.214285714285714,0.214285714285714,0.000341914298724229,0.999852323093054 +"WP4566","Translation inhibitors in chronically activated PDGFRA cells",463,"WP4566",48,0.94,0.177777777777778,0.2,8.56966962716958e-10,0.999852323093054 +"WP4582","Cancer immunotherapy by CTLA4 blockade",466,"WP4582",15,0.8,0,0,0.835939678356078,0.999852323093054 +"WP4656","Joubert Syndrome",476,"WP4656",77,0.9,0.130434782608696,0.217391304347826,4.67701164770016e-10,0.999852323093054 +"WP501","GPCRs, Class C Metabotropic glutamate, pheromone",517,"WP501",16,0.31,0,0,0.999852323093054,0.999852323093054 +"WP619","Type II interferon signaling (IFNG)",539,"WP619",37,0.84,0.193548387096774,0.258064516129032,9.44618578094348e-09,0.999852323093054 +"WP69","T-Cell antigen Receptor (TCR) Signaling Pathway",545,"WP69",91,0.9,0.0975609756097561,0.182926829268293,1.55030261832076e-25,0.999852323093054 +"WP691","Tamoxifen metabolism",547,"WP691",21,0.24,0.2,0.2,0.0372370714105519,0.999852323093054 +"WP732","Serotonin Receptor 2 and ELK-SRF/GATA4 signaling",562,"WP732",20,0.75,0.2,0.266666666666667,6.52294438984146e-17,0.999852323093054 +"WP1981","Thyroxine (Thyroid Hormone) Production",57,"WP1981",6,0,NA,NA,NA,NA +"WP2491","Diclofenac Metabolic Pathway",123,"WP2491",4,0,NA,NA,NA,NA +"WP2536","Colchicine Metabolic Pathway",131,"WP2536",1,0,NA,NA,NA,NA +"WP2596","Gastric acid production",137,"WP2596",7,0,NA,NA,NA,NA +"WP2597","Secretion of Hydrochloric Acid in Parietal Cells",138,"WP2597",5,0,NA,NA,NA,NA +"WP2640","Aripiprazole Metabolic Pathway",143,"WP2640",2,0,NA,NA,NA,NA +"WP2646","Lidocaine metabolism",146,"WP2646",2,0,NA,NA,NA,NA +"WP2816","Felbamate Metabolism",156,"WP2816",2,0,NA,NA,NA,NA +"WP3627","Gut-Liver Indole Metabolism ",236,"WP3627",1,0,NA,NA,NA,NA +"WP3666","Metabolism of Dichloroethylene by CYP450",254,"WP3666",1,0,NA,NA,NA,NA +"WP4174","Metabolism of Tetrahydrocannabinol (THC)",351,"WP4174",2,0,NA,NA,NA,NA +"WP4194","Hormonal control of Pubertal Growth Spurt",355,"WP4194",2,0,NA,NA,NA,NA +"WP4233","Acrylamide Biotransformation and Exposure Biomarkers",371,"WP4233",1,0,NA,NA,NA,NA +"WP661","Glucose Homeostasis",541,"WP661",1,0,NA,NA,NA,NA diff --git a/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/bladder_cancer_diff_exp_results.csv b/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/bladder_cancer_diff_exp_results.csv new file mode 100644 index 0000000..608633b --- /dev/null +++ b/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/bladder_cancer_diff_exp_results.csv @@ -0,0 +1,12265 @@ +"Gene","baseMean","log2FoldChange","lfcSE","stat","pvalue","padj" +"2",60441.9949982826,-2.81518262410458,0.249721229329308,-11.2733011593187,1.77777061848998e-29,2.18025788651611e-25 +"144568",5647.27733329461,1.76837317447267,0.737339111764371,2.39831733629477,0.0164705891218147,1 +"53947",2542.44676154949,-1.08766112684586,0.282425533447364,-3.85114303784637,0.000117567802472002,1 +"8086",1731.31151871993,0.430613932325569,0.112871100569799,3.81509465356264,0.000136130743362086,1 +"65985",1423.46418384702,0.60694857867681,0.118930266407384,5.10339879839981,3.3360694976517e-07,0.00409135563192005 +"51166",328.399449333533,0.161071193249593,0.260770583227886,0.61767393873884,0.53679029446777,1 +"79719",2624.36686574575,0.534438824401626,0.118194809060732,4.52167763245012,6.13514444811248e-06,0.0752414115116515 +"22848",2442.66209975252,0.141743307662949,0.152105735644862,0.931873522467903,0.351401892609627,1 +"14",6360.80024777604,-0.0762253855561837,0.108471457205965,-0.702722979110045,0.482228404310139,1 +"57505",1083.17605770585,0.0885705619789756,0.131148007317892,0.675348133687519,0.499454609636871,1 +"80755",1511.26992543051,-0.306591276670005,0.18344754703729,-1.67127487732329,0.0946673963155535,1 +"132949",517.114689884292,-0.247049725944965,0.1088591147076,-2.26944456243789,0.0232413048699287,1 +"60496",1591.34292304916,0.432623351253181,0.131826564405663,3.2817615569643,0.00103160799374669,1 +"10157",931.187094225067,-1.04364357250393,0.284660174266213,-3.66627883649058,0.000246105571824154,1 +"26574",3687.7119092186,0.30272245662656,0.130886974333567,2.31285395791233,0.0207306699716362,1 +"9625",180.500953723439,-0.669619352841853,0.309997061181158,-2.16008290623935,0.0307662520627304,1 +"18",1314.82785616399,-0.498079719570295,0.330837682620844,-1.50551084636002,0.132192790416415,1 +"19",3258.42418863201,-0.496782921390549,0.236638364256584,-2.09933382083343,0.0357874840423822,1 +"10349",161.768404110915,-0.443258001797793,0.313321575940684,-1.41470628209054,0.15715463171696,1 +"79963",184.873523569386,-0.205295601541834,0.217515268963355,-0.943821564896304,0.345260838694944,1 +"26154",352.475198592121,3.40195030443541,0.575892887502464,5.90726223272006,3.47839830647703e-09,4.26590768306343e-05 +"20",1737.83627521876,-0.421118024000564,0.221699142189332,-1.89950227069858,0.0574984683514091,1 +"21",637.325819996394,-1.61793494448777,0.356587968445128,-4.53726734399549,5.69878448894951e-06,0.0698898929724768 +"23461",1090.86159877685,-0.105165279853412,0.289407674155076,-0.363381103007866,0.716320216025355,1 +"23460",571.011883128748,-2.37654886595371,0.40014968076168,-5.93914972374832,2.86504119915504e-09,3.51368652664374e-05 +"10347",952.01159960596,0.705224720640027,0.270458598517493,2.6075145124085,0.00912022043921017,1 +"10351",972.908348616387,-4.60598494695896,0.41745229742659,-11.0335599429033,2.63234522967557e-28,3.22830818967412e-24 +"10350",510.679971761323,-2.34805247613702,0.423122499604258,-5.54934440577642,2.86742815017169e-08,0.000351661388337056 +"5243",287.381076072206,-2.06197167857121,0.333070172207654,-6.1908025714343,5.98586455328166e-10,7.34106428814463e-06 +"23456",698.769925275584,0.124484309110284,0.143068846274373,0.870100740671046,0.384245352965336,1 +"5244",103.419780423401,-1.59908845706076,0.280951786970397,-5.69168281257186,1.25793374146833e-08,0.000154272994053676 +"10058",1770.13256154246,-0.538034647844657,0.238070903371834,-2.25997650374065,0.0238227091444676,1 +"22",909.145525820257,-0.32772705407189,0.133258449227911,-2.4593341433186,0.0139194997107198,1 +"11194",1420.98882233968,0.5572648768697,0.140411248459172,3.96880508495542,7.22339347912835e-05,0.8858769762803 +"23457",268.703756607731,1.00021988274184,0.194646677732988,5.13864348670734,2.76728847202847e-07,0.00339380258209572 +"4363",5899.70997278806,0.261035367619846,0.253086112877293,1.031409288531,0.302348926880685,1 +"89845",1237.74443377366,0.364333360439304,0.128907453563116,2.82631725605314,0.00470866026767893,1 +"8714",3448.51504226448,1.0223562822604,0.55158120380818,1.85350094456072,0.0638105908870997,1 +"10257",2334.72266268902,-0.918813694065388,0.291282569067092,-3.15437239175735,0.00160843702121755,1 +"10057",5623.21054297807,0.515061313315522,0.349739349269642,1.47270049650153,0.140831812661917,1 +"10060",740.780178861964,-2.08318553984828,0.306841598541044,-6.78912360564313,1.12816754984326e-11,1.38358468312777e-07 +"215",940.257307828175,-0.547376257639192,0.23523256896155,-2.32695778503641,0.0199675121862078,1 +"5825",3729.54434740127,0.30444258489426,0.17549761118145,1.73473919584861,0.0827870104007798,1 +"5826",1519.28321540282,0.202758164039551,0.0803552780505898,2.52327126429578,0.011626867321649,1 +"6059",2456.38949650541,0.211653236922167,0.150340621846922,1.40782467387739,0.159182992267047,1 +"23",5532.24262451531,0.125555633955771,0.161283626494946,0.778477249578125,0.436287713543876,1 +"10061",2373.55630128795,0.242321140553969,0.13173297983614,1.83948727839746,0.0658435473506451,1 +"55324",2889.48172978755,0.57070659455941,0.132968530235872,4.29204258742303,1.77036981995837e-05,0.217118154719694 +"9619",1918.57256442161,0.11241128812998,0.311106860877975,0.361326933815423,0.717855061576116,1 +"9429",327.022535779456,-1.56517252553642,0.41875987110026,-3.73763732762656,0.000185757634172234,1 +"55347",1297.93644025095,0.436315579655778,0.181127094992745,2.40889183185572,0.0160010396291362,1 +"83451",1684.7685032945,0.433140172302269,0.275139359283688,1.57425739970438,0.115427954085119,1 +"26090",4904.7812922131,0.62602370127544,0.260991771160154,2.39863386685586,0.0164563600688482,1 +"84945",1027.27038189889,-0.303674273256371,0.130136490430466,-2.33350593866391,0.0196216070042626,1 +"25864",574.344654078227,-0.257605994275086,0.187804011540743,-1.37167460993878,0.170164755855797,1 +"84836",3476.12799918143,-0.550502255425553,0.18959743567264,-2.90353217844177,0.0036897905105921,1 +"116236",1097.50487457298,0.503878927761807,0.251969961234674,1.9997579286545,0.0455264095565245,1 +"7920",2612.68751223572,-0.0263380483718109,0.101745638023617,-0.258861695532318,0.795741953557661,1 +"140701",264.069454235137,0.355860689334852,0.172470697290195,2.0633110141376,0.0390830882844843,1 +"11057",11633.5732489846,0.213883906701166,0.249109883148062,0.858592617837011,0.390565312340921,1 +"171586",823.342266770575,1.09842383260239,0.233434684525029,4.70548682530774,2.53260861437859e-06,0.0310599120467391 +"63874",2432.00096972497,0.0290036290917386,0.228868785820021,0.126726014593124,0.899157255165493,1 +"51099",2058.80976945629,0.0352040413260585,0.238709926800979,0.147476235269467,0.882756136126101,1 +"57406",452.312365958997,-0.686400730448376,0.19292527341625,-3.55785801566504,0.000373891310377568,1 +"79575",631.675791654942,0.327875082947421,0.243976242272291,1.34388119061812,0.178986809312069,1 +"10006",3587.45037333809,0.0181062540304467,0.178792985338085,0.101269375843851,0.919336625725563,1 +"10152",2548.22681924858,-0.562142028199493,0.193137628050572,-2.91057746682225,0.00360761522920368,1 +"51225",433.659191448744,-0.790931088349522,0.261608924963988,-3.02333373549239,0.00250006365326032,1 +"25890",2439.48171591797,-3.9529278594554,0.325677257566673,-12.137561857988,6.67865442542599e-34,8.19070178734243e-30 +"25",7737.34842614129,-1.2674701718634,0.245265296081387,-5.1677517859796,2.36926670482583e-07,0.0029056686867984 +"27",1922.39773698879,-0.0512409632623843,0.189640585729148,-0.270200406022625,0.787006080348112,1 +"3983",9797.94374662481,-1.41624269412466,0.247678902152042,-5.71805947870067,1.0774743052409e-08,0.000132141448794744 +"84448",167.950905128844,-1.21707056185418,0.340132075381442,-3.57822931133235,0.000345929887700657,1 +"22885",2257.75844929406,-1.08385240420147,0.329799445462877,-3.28639850403711,0.00101477336397814,1 +"28",505.650147655786,-0.149878036842446,0.431717565274617,-0.34716687227472,0.728465956979913,1 +"29",5029.49820922811,-1.03463333209025,0.154020985322798,-6.71748288015341,1.8489048033965e-11,2.26749685088547e-07 +"29777",1691.12316822614,0.438643379535901,0.137101353326693,3.1994095528049,0.00137709389343749,1 +"80325",1713.45946334868,-0.715723000333579,0.226794896718556,-3.15581616116242,0.00160049703060202,1 +"25841",473.073651786247,0.055831463519667,0.256019091001647,0.218075391570341,0.827370370663714,1 +"30",3938.71990305646,-0.0225345171178062,0.244050948629681,-0.0923352982003758,0.926431644240868,1 +"10449",2415.67731075638,-0.52247785544662,0.327993093790474,-1.59295383146203,0.111170548635129,1 +"31",4722.12257198923,0.0937270170419295,0.191083702881648,0.490502411396024,0.623778423873242,1 +"32",2159.98466625655,-2.61585530871165,0.341130250499109,-7.66820094343548,1.74425481893811e-14,2.1391541099457e-10 +"80724",1258.23836338688,0.174571008520349,0.126719737913974,1.37761497454216,0.168322195106721,1 +"27034",800.752303501283,0.0448830640754492,0.123005735605965,0.364885944987372,0.715196546322583,1 +"28976",2317.56132777351,0.247138168504198,0.124957154745899,1.97778325704323,0.0479531630877979,1 +"34",2451.45457909067,-0.571302513465304,0.119984706270135,-4.76146111637818,1.92196333522426e-06,0.0235709583431903 +"35",1266.22935758853,-0.190063657872763,0.188374699248996,-1.00896595259608,0.312990963128049,1 +"36",1231.4692770035,-1.05797967669585,0.217435736366814,-4.8657120231195,1.1404547542324e-06,0.0139865371059062 +"37",14907.6050615161,-0.136606974218385,0.152382683877355,-0.896473081733704,0.370000150691432,1 +"176",192.71437704046,1.0269899946725,0.318135494700711,3.22815282098167,0.00124592393921223,1 +"9744",792.338681738983,-1.19732746553244,0.29542498274975,-4.05289848674265,5.05869565424271e-05,0.620398435036326 +"23527",2919.50196070938,0.249879669790902,0.157743098006569,1.5840925717111,0.113172654560203,1 +"116983",2359.52555029476,-0.318255501904496,0.183079191016457,-1.73834885405348,0.082149362958005,1 +"38",2077.14066587154,-1.21257552389972,0.20827262693897,-5.82205900852751,5.8127017683537e-09,7.12869744870898e-05 +"39",1412.59782057284,0.951178465285723,0.197304256846787,4.82087148289124,1.429324214836e-06,0.0175292321707487 +"64746",3265.13321736941,0.387861825463906,0.138401522333513,2.80243901168412,0.00507178048587007,1 +"79777",672.771660750773,-0.408054591898223,0.231938091837637,-1.75932546769365,0.0785222432701818,1 +"91452",1680.74325464674,0.391553859569007,0.199598365519222,1.96170874721566,0.0497964028667646,1 +"84320",1654.62911773715,0.378472561921992,0.113239974953716,3.34221693422913,0.000831120775347303,1 +"414149",204.257630518398,1.72745950793041,0.359247433608126,4.80855072666923,1.52028453101947e-06,0.0186447694884228 +"84680",519.066638509487,-0.402720695454268,0.238268868644384,-1.69019434954101,0.0909907790399863,1 +"65057",1150.27388405,0.228514361415247,0.137397456134945,1.66316297145132,0.0962798175134719,1 +"1636",982.981755650525,-0.474425832329096,0.179372250292203,-2.64492323397984,0.00817094517396885,1 +"59272",200.113192878155,-0.140624218285872,0.500903263576189,-0.280741269844976,0.778908852402586,1 +"340485",1854.76680906958,0.354949370251825,0.501411456525843,0.707900399227376,0.47900711179256,1 +"55331",1021.38361890757,0.340851433223501,0.224494437745597,1.51830680816138,0.128937072186072,1 +"22985",7422.11461003262,0.214308800355966,0.0881725665063235,2.43056098793037,0.0150754686414146,1 +"47",7703.88350054001,1.00354522165497,0.116929992229809,8.58244495289667,9.28775814405141e-18,1.13905065878646e-13 +"48",2769.42387631963,-0.528613600303274,0.190741085769104,-2.77136726034564,0.0055821426772414,1 +"50",2829.17561904789,-0.589450346689266,0.159416722501953,-3.6975440056613,0.000217695489775512,1 +"641371",235.930018018994,-0.867296826957797,0.257566898068476,-3.36726820667468,0.000759168158425075,1 +"26027",782.464381029464,-0.058593906952315,0.286745201504261,-0.204341368730609,0.83808674433998,1 +"55856",1330.59865937479,0.520603115796333,0.211655604819759,2.45967082345713,0.0139064500025102,1 +"10965",724.154913347901,-0.670927325112291,0.215594304635181,-3.11199002333388,0.0018583077910312,1 +"122970",138.068537487694,0.963038862342465,0.269976817392226,3.56711687931097,0.000360930520914453,1 +"11332",1841.86470117533,0.630718300566037,0.243380927097345,2.59148614514797,0.00955623894263508,1 +"10005",856.838678985866,0.331462057794205,0.116284313263523,2.8504451588672,0.00436580784388022,1 +"23597",1384.1609627246,-0.161928047412654,0.219387880163382,-0.738090213971997,0.460459630085011,1 +"51",7316.28233755156,0.557255461889308,0.280876795417556,1.9839854020724,0.0472574673170351,1 +"8309",345.081164677949,-3.51447820542579,0.332157604161252,-10.5807549229541,3.65997291035512e-26,4.48859077725952e-22 +"8310",1443.78001623853,-0.249200680433968,0.199196493046655,-1.25102945650554,0.210923730677914,1 +"55289",483.483907611822,1.26235512744086,0.612274859459441,2.06174581225719,0.039231942490472,1 +"52",3014.52002532035,0.680579926806268,0.0988858313374474,6.88248172262205,5.88187139576342e-12,7.21352707976426e-08 +"53",1813.73277724346,0.262968359461321,0.17213818374472,1.52765849935597,0.126597349114378,1 +"54",1979.84499896129,0.296283366195091,0.311532978416766,0.951049765905444,0.34157911353203,1 +"51205",1292.33017607336,0.962082416841471,0.256027669790648,3.7577282862753,0.000171462917612686,1 +"55",326.53414949632,1.12903628939817,0.458043049481683,2.46491304840402,0.0137046504377681,1 +"23205",135.810122449944,-1.34409062824164,0.374429370178075,-3.58970405447203,0.000331053597440924,1 +"80221",2552.11918808354,0.61422869204878,0.373458361898669,1.64470461693783,0.100030740253304,1 +"197322",1053.51036998286,-0.195970099130292,0.112678309295982,-1.73919985447705,0.0819996150589538,1 +"2180",5142.18012006011,0.121762001873152,0.238696199632208,0.510112863383526,0.609972393817539,1 +"2181",3735.78259884709,-0.0440018155857978,0.184565276055577,-0.238407876747887,0.811564758777136,1 +"2182",2486.75590809191,-0.751110216951632,0.203789401611377,-3.6857177606517,0.000228058983805536,1 +"51703",7280.95813061081,0.64085175753566,0.501514168657384,1.27783380328277,0.201308032730523,1 +"6296",377.412153653181,-0.605915021675441,0.40231484173809,-1.50607175976345,0.132048753234743,1 +"84532",1875.5078671243,-0.260545162128582,0.312184144119521,-0.834588069369823,0.403949681865087,1 +"55902",1805.59855804593,-0.0123022694681301,0.166383209925207,-0.0739393684835161,0.941058630046371,1 +"79611",229.17159399474,-1.89320622271167,0.355137200058581,-5.33091498834642,9.771915803957e-08,0.00119842775419729 +"58",398.198959330215,-2.13456625917321,0.345984530175883,-6.16954248818031,6.84878714148524e-10,8.3993525503175e-06 +"59",93072.9246092863,-3.22597019344774,0.379991261154912,-8.48959048069424,2.07366514886975e-17,2.54314293857386e-13 +"60",296341.251219935,-0.765110881393028,0.198117615782382,-3.86190232691599,0.00011250754826566,1 +"70",30650.109265009,-5.59120101797523,0.63729887282367,-8.77327931430726,1.73536866694189e-18,2.12825613313754e-14 +"71",182670.382469885,0.07328306880811,0.209687970201955,0.349486280674707,0.726724268729626,1 +"72",106083.977470058,-5.13456914638648,0.478450913982606,-10.7316529163808,7.22913467502866e-27,8.86581076545515e-23 +"86",2602.55633800956,1.22246342567971,0.17018036885132,7.18333985248162,6.80287127010853e-13,8.3430413256611e-09 +"87",25566.4020172641,-1.19782631294089,0.270124689186047,-4.43434591836178,9.23522412170925e-06,0.113260788628642 +"81",33084.2808193533,-0.150469338058524,0.169966334262722,-0.885289070398723,0.376000743256185,1 +"55860",2475.87725326828,-0.181369992175808,0.0844282003491493,-2.14821577891937,0.0316966177860014,1 +"10121",6271.77836665512,-0.478299391361123,0.172038364516697,-2.78019029479149,0.00543270527134187,1 +"10120",3291.38186674703,-0.259570269807346,0.16468302576761,-1.57618108240029,0.114984076974727,1 +"10097",13238.4297031763,0.395028926246142,0.0845078488257874,4.67446434544195,2.94721829725939e-06,0.0361446851975891 +"10096",9685.47688693309,-0.0191943616336364,0.132923165177071,-0.144401930303624,0.885183092623953,1 +"57180",329.949570032248,0.64588439681268,0.162442889417549,3.97607060012626,7.00633330386654e-05,0.859256716386193 +"653857",122.421660465069,0.67673492197169,0.232587589954302,2.90959170308551,0.00361901199384745,1 +"79913",565.1471201986,0.59686378026066,0.117660519115529,5.07276174495378,3.92083282129493e-07,0.0048085093720361 +"64431",1215.49707942515,0.195217284542893,0.102933620035939,1.89653569431187,0.0578892447039015,1 +"93973",1092.26930776922,0.0640205989422026,0.111093977350007,0.576274254188437,0.564429822122868,1 +"90",1679.38791700607,-0.145893949878073,0.197033696632032,-0.740451772320628,0.459025914393945,1 +"91",2021.39030854396,0.366880895474289,0.169619440072853,2.16296490140935,0.0305438792687965,1 +"130399",126.527934637031,1.16862908046969,0.428501877287882,2.72724378214234,0.00638658354055189,1 +"92",1059.71713439034,-0.255666790690073,0.168616080731114,-1.51626576529065,0.129452164534948,1 +"93",749.766638290268,0.980533495546126,0.23037917759649,4.25617239273045,2.07956382874821e-05,0.25503770795768 +"94",1284.80672970758,-1.29828299995598,0.200976959574386,-6.4598598899366,1.04799966120643e-10,1.28526678450357e-06 +"95",99.4409594333322,0.59747483872346,0.26409686736144,2.26233216884683,0.023676888337026,1 +"97",316.816539280931,1.11713380353491,0.167782914969028,6.65820953069701,2.77183434680603e-11,3.39937764292292e-07 +"98",438.549177961793,-0.625361088390459,0.178694264161169,-3.49961478241086,0.000465930956954676,1 +"100",601.914012867716,0.634534386272892,0.308925915132173,2.05400180169867,0.0399755173305767,1 +"161931",108.855578895009,0.633718957733092,0.488098240551948,1.29834304876099,0.194169479789587,1 +"161823",342.230362974822,-0.227638138216231,0.180837069678321,-1.2588024049558,0.208101711480609,1 +"102",7701.49812962684,1.19694271022946,0.284502156951186,4.2071481040997,2.5861366259355e-05,0.31716379580473 +"4185",123.166510603834,-0.72565521392545,0.402933270080508,-1.80093148868164,0.0717136791254638,1 +"8038",725.649165297646,1.69982707235209,0.370698459860831,4.58547109418865,4.52963942100438e-06,0.0555514978591977 +"8751",7332.77462354834,0.37987550409189,0.188742808208047,2.01266213901597,0.0441501849917979,1 +"6868",2139.13456742868,1.17470151897541,0.203832666586902,5.76306800399233,8.25984941871567e-09,0.000101298793271129 +"8728",2539.56233048181,-0.66803339934982,0.348253112006634,-1.91824100436781,0.0550804591352019,1 +"53616",316.280569795846,-0.982485324343272,0.375423547405162,-2.61700506303874,0.00887050255520251,1 +"8745",405.380481042554,-0.206541697004064,0.445093427915624,-0.464041219326243,0.642618214107055,1 +"10863",460.973112719117,-0.968041162458153,0.430156180832119,-2.25044113183616,0.0244209564616272,1 +"80332",1292.62860282022,-3.69278339392031,0.339422220073266,-10.8796159341695,1.44169114229655e-27,1.76809001691249e-23 +"101",1720.43627263594,1.24149346156774,0.466243415113363,2.66275816735316,0.00775030916880514,1 +"8754",6945.85821416138,0.0336953043429456,0.260033518720232,0.12958061910164,0.896898237664494,1 +"27299",215.819670526216,0.387303629350612,0.504136380968596,0.768251695318013,0.442337666520467,1 +"9510",16534.9101901513,-3.23378135538731,0.319151246481088,-10.1324415650651,3.96620119984615e-24,4.86414915149131e-20 +"81794",255.916868309913,-0.663484035639109,0.279271123187783,-2.37577028396516,0.0175123614454124,1 +"81792",287.565009108123,1.5528704990959,0.33644147746444,4.61557389058854,3.92010532091159e-06,0.0480761716556597 +"11093",269.296495969106,0.00733325725851598,0.246851488734192,0.0297071623757246,0.97630059969441,1 +"140766",282.965124553493,0.843364771872276,0.368900310075727,2.28615902138752,0.0222449571343857,1 +"170689",641.525471758039,-2.47104608355924,0.354755456695153,-6.96549140238497,3.2725940939086e-12,4.0135093967695e-08 +"170690",350.564410790904,-0.316471796473353,0.475400663080966,-0.665694899166462,0.505606134529061,1 +"170691",125.23676380928,-0.643562150504517,0.274484440848249,-2.34462160593035,0.0190463983464146,1 +"9509",1976.16469396382,0.773688719765274,0.343174079539206,2.25450803511774,0.0241642257542113,1 +"9507",5942.13781575448,-1.78536754717585,0.358574257785357,-4.97907339529257,6.38894127694668e-07,0.00783539758204741 +"11096",586.746236908892,-1.79390553836235,0.282454153001028,-6.35113882838118,2.13726712827209e-10,2.62114440611289e-06 +"11174",132.436861274994,-0.483129620055462,0.271951267413294,-1.77653012854407,0.075645580565269,1 +"11173",725.807413487864,1.29961389841606,0.279093438014475,4.65655483576311,3.21544665440521e-06,0.0394342377696256 +"11095",504.978202391523,-3.92771629023995,0.458493110651554,-8.56657646318472,1.066071162609e-17,1.30742967382368e-13 +"56999",1365.29239851537,-1.67361727903969,0.331034660761744,-5.05571614521733,4.28778689464799e-07,0.0052585418475963 +"92949",339.21627208325,-1.86654553978084,0.331142890960692,-5.63667706821585,1.73362770381824e-08,0.000212612101596269 +"9719",437.237316034481,-0.60553488882121,0.265578591159299,-2.28005911989343,0.0226041823616216,1 +"57188",898.016334765215,-4.120253989642,0.516739986530794,-7.97355361891751,1.54175676953029e-15,1.89081050215195e-11 +"54507",2459.8252631557,-2.25486456038418,0.271730787382255,-8.29815635580582,1.05739455524457e-16,1.29678868255194e-12 +"339366",309.314907067608,-0.73389112025879,0.282433585734455,-2.59845555672971,0.00936441663318698,1 +"11033",718.51243371703,-0.0786589237316171,0.302107107420218,-0.260367670272007,0.794580178539597,1 +"55803",390.959672882728,0.0492698122551823,0.233233428456851,0.211246786454102,0.832694704093083,1 +"103",14263.8036525973,0.652267291293324,0.118311369731063,5.51314123719478,3.52485140288292e-08,0.000432287776049561 +"104",4172.59888733027,-1.92768182462537,0.373516105162425,-5.16090684707452,2.4575645143508e-07,0.00301395712039982 +"23536",680.315271479003,0.7395937110411,0.197025761253999,3.75379192210119,0.000174179468192729,1 +"134637",302.193430369353,0.589747762904407,0.211481769628372,2.7886458673991,0.00529289060656626,1 +"113179",141.852238436594,0.635057521966806,0.203410670984548,3.12204624709708,0.00179598723358997,1 +"57143",443.544997947113,0.0556228312214474,0.168281832322271,0.33053378640973,0.740996667925489,1 +"90956",1993.41504614554,0.522551571121528,0.144384001338708,3.6191791768929,0.000295538961548296,1 +"203054",667.262108376738,0.953043395208173,0.169503119579189,5.62257141682239,1.88135748456539e-08,0.000230729681907099 +"107",287.895949692979,-0.0239097621487187,0.322279228179599,-0.0741895848633296,0.940859533087977,1 +"108",245.629304293007,-2.33502777168664,0.489934482181418,-4.76600006043666,1.87919202028124e-06,0.0230464109367292 +"109",1626.72254680203,0.171731301023753,0.18985110122156,0.904557834633462,0.365699681990532,1 +"196883",499.118950505449,-1.582829394902,0.208957099803545,-7.5749012423609,3.59400926503494e-14,4.40769296263885e-10 +"111",2329.48359757707,-4.35552044869052,0.406674760357435,-10.7100830276813,9.12799120880984e-27,1.11945684184844e-22 +"112",2183.99732499059,-0.44454199790036,0.186540280613365,-2.38308850205787,0.0171680663658485,1 +"113",1182.94775278012,0.651798632744754,0.210359393745201,3.09850024351301,0.0019450281029007,1 +"115",1506.87807334322,-1.49322338621658,0.199771924721727,-7.47464083502507,7.74149984392617e-14,9.49417540859106e-10 +"118",13540.2902935207,-1.09297540774346,0.164144155931454,-6.65863125946366,2.76389388839502e-11,3.38963946472765e-07 +"120",3720.60889812408,-0.427920612545398,0.191132388589529,-2.2388702181941,0.0251643617784963,1 +"125",4991.16912007721,-7.89458430538393,0.578891855552604,-13.6374077984701,2.3993880118319e-42,2.94260945771064e-38 +"126",1208.52991813211,-3.43427407461307,0.583873565794214,-5.88187970103013,4.05633131403253e-09,4.97468472352949e-05 +"128",6240.05797193274,-0.723087582899688,0.240841379140939,-3.00233948783586,0.00267913217045461,1 +"137872",276.666713290659,-2.34327927574894,0.389830379398098,-6.01102274113934,1.84356539854072e-09,2.26094860477034e-05 +"55256",4675.7179726502,-0.232057443058604,0.164145400581491,-1.41373101065599,0.157440896536192,1 +"51094",5378.74335011955,0.248515338996271,0.161554763321441,1.5382730529697,0.123981865572529,1 +"79602",3846.32860782328,0.323408913710197,0.159245781009816,2.03087900765335,0.0422672697693767,1 +"132",1464.71997451714,0.367350489880088,0.21235758551354,1.72986752035126,0.0836539474488934,1 +"133",3097.72163602846,-0.284426260138542,0.365162405334929,-0.778903457703057,0.436036586969077,1 +"23394",5140.12708192304,0.385892644755863,0.103552676725043,3.72653471605083,0.000194130344514075,1 +"22850",1549.09277096255,-0.158179545121847,0.130026660485732,-1.21651624775216,0.223788325485513,1 +"84890",1202.93155081292,0.0909619505624551,0.147683691015029,0.615924141232347,0.53794458755524,1 +"135",220.328066045526,-0.562172473787561,0.273764799299131,-2.05348706344565,0.0400253631241218,1 +"136",471.437307422162,-0.782773727439936,0.458305295536589,-1.70797443333805,0.0876410865099751,1 +"140",187.960627281927,-0.383893570724761,0.278253497305569,-1.37965407242728,0.167693180169133,1 +"83440",2029.35092391854,0.779044105695012,0.206629137926462,3.77025289614415,0.000163082205389616,1 +"141",603.097013732385,-0.696847243337332,0.215994527499148,-3.22622638362948,0.00125434100581532,1 +"113622",115.032807368332,-0.0204590703852394,0.25146951482424,-0.0813580540748206,0.935157206479923,1 +"54936",2033.53976841443,0.591356158910005,0.114361099145658,5.17095553757152,2.32899983048962e-07,0.00285628539211247 +"150",476.798913903509,-1.98554013245548,0.313616314942982,-6.33111237473875,2.43399985993211e-10,2.98505742822074e-06 +"152",140.50960075864,-1.67295086264733,0.369953934376141,-4.52205182104214,6.12430606675755e-06,0.0751084896027146 +"154",342.723948739559,-1.95071532306125,0.350519310526584,-5.56521499523291,2.61829391959385e-08,0.00032110756629899 +"11047",6091.22333093898,0.341171977332052,0.136891832354467,2.49227416613596,0.0126928019095943,1 +"158",2349.44328420443,0.125475169199355,0.165973597039074,0.755994757225244,0.449652339068787,1 +"84830",280.404551888819,-0.76021764972621,0.508944823321038,-1.49371329639534,0.135250571714799,1 +"165",17381.0932079266,-0.776275054713295,0.329079765470039,-2.35892672891786,0.0183278741260125,1 +"121536",2182.87510332573,-0.2352121109908,0.124850231451281,-1.88395414455106,0.0595711783751053,1 +"64782",1513.52836935808,-0.340282244748168,0.209994285172461,-1.62043573932836,0.105138707838384,1 +"60312",2624.64941479765,-0.864390568047963,0.270744612471739,-3.19264180423235,0.00140977705194718,1 +"134265",647.023598949428,0.140291388386953,0.207621334904919,0.675707958679678,0.499226081953823,1 +"84632",1233.16306078773,-0.0205386400229015,0.289364320082662,-0.0709784814417834,0.943414881609916,1 +"4299",3704.42939638923,-0.738411135611204,0.178136316029808,-4.14520268560871,3.39513262822424e-05,0.416379065525421 +"3899",901.067429601705,-4.65529125483282,0.44314077295031,-10.5052198736739,8.17321105150331e-26,1.00236260335637e-21 +"27125",5680.33212998254,-0.579272907260924,0.17522582478997,-3.30586492005534,0.000946837215936227,1 +"172",644.769921320176,0.388306127737186,0.139597383027975,2.78161466436207,0.00540892195111189,1 +"10939",4804.23214382846,0.0438300561293221,0.131727754561382,0.332732128284311,0.739336495211112,1 +"125061",947.858135284252,0.63784097164311,0.205242428734791,3.10774422021341,0.00188521151396083,1 +"54812",3084.57049742846,0.137301300780189,0.144175515671242,0.952320511155801,0.340934458616971,1 +"175",796.459074013955,0.0837001546850005,0.159235010259073,0.525639145240872,0.599138953125726,1 +"116987",1513.351783486,-0.591404874946363,0.257060647650436,-2.3006433709394,0.0214117974149969,1 +"119385",404.856415441848,-0.0899449245391684,0.424809142637141,-0.211730199545156,0.832317526367947,1 +"116986",376.885225436749,0.581386010868652,0.361500339029704,1.60825854943633,0.107778564814728,1 +"116988",4739.48126786263,0.0491063126848677,0.147650459521226,0.332584895733482,0.739447646375807,1 +"119016",110.749828975911,0.166989898410938,0.191048534719485,0.874070553098601,0.382079832681428,1 +"414189",187.621614794686,0.136002093709946,0.214791928435914,0.633180653948662,0.526615677712686,1 +"60509",2174.10431234371,0.0903786416193358,0.212783731163823,0.424744133985285,0.671023207044345,1 +"177",254.518885892943,0.209491323587491,0.188798740937814,1.10960127460009,0.267170881791873,1 +"3267",3012.58401032862,-0.217627483069141,0.237153144020396,-0.917666447004489,0.358793518919878,1 +"3268",1275.85157069728,-0.79124619859474,0.204251402624608,-3.87388379432069,0.000107114503385526,1 +"55109",1314.3405094523,0.283774704559776,0.111274842547057,2.55021438866354,0.0107656693888156,1 +"55750",1053.47854040165,0.429845364722723,0.11184485048453,3.843228927041,0.000121426104873985,1 +"178",2221.25496347868,-0.391075694868775,0.177306519669713,-2.20564757346358,0.027408685344978,1 +"79814",269.539587924932,1.86230450631354,0.427189115551407,4.3594381001719,1.30396830600439e-05,0.159918673048378 +"10554",3993.79458992986,-0.253107031578804,0.198734026038133,-1.27359686020872,0.202806325564025,1 +"10555",3455.83665506129,0.556067100152179,0.231393656580244,2.40312162558934,0.0162557798307355,1 +"56894",4348.70293872801,0.0950008587053245,0.142229164907668,0.667942181668555,0.504170500251264,1 +"56895",514.865894744249,-0.737505256202871,0.244780431340097,-3.01292571536563,0.00258742244512507,1 +"55326",1310.34738551437,0.489054088370059,0.21822044813262,2.24110110924548,0.0250195263744876,1 +"8540",2621.74210625776,0.300692007417429,0.143739185028517,2.09192787170578,0.0364449683972454,1 +"10551",10029.4626600711,0.619552041525841,0.73071774582675,0.847867791721502,0.396511603581364,1 +"375790",13725.4580567107,1.515085510399,0.245665928896163,6.16725940469909,6.94837193119479e-10,8.52148333641729e-06 +"183",347.065456328368,-1.66448477520077,0.463002842214672,-3.59497744601107,0.000324419680641788,1 +"23287",650.712569585923,-0.00474874515109841,0.206881175660953,-0.0229539741154647,0.981686986600112,1 +"185",399.08066853913,-4.07410638619322,0.390114387066872,-10.4433635909327,1.57142054093943e-25,1.92719015140812e-21 +"57085",2058.11830739095,0.767215332926206,0.185915020782977,4.12669901385642,3.68007539398934e-05,0.451324446318853 +"25909",2273.80903230357,0.385085025995237,0.126693322154593,3.03950531445809,0.00236967021733061,1 +"191",7334.43672800108,0.651005462947361,0.132138369551926,4.92669513900378,8.36320857502082e-07,0.0102566389964055 +"10768",8314.95805556798,0.104697946987252,0.168483997030948,0.621411818524348,0.534328697907117,1 +"23382",1053.98787356691,-0.243506936274524,0.187404150009938,-1.29936789693084,0.193817703419527,1 +"27245",2322.04167796389,-0.530003691058028,0.231107555572024,-2.29332048338357,0.0218295608046849,1 +"54806",758.097564726932,-0.393670990539054,0.184143046697164,-2.13785422583169,0.0325285763395866,1 +"79026",97938.0473570013,-1.33463438505488,0.256924120416734,-5.19466363411145,2.05090313128297e-07,0.00251522760020544 +"113146",7701.59129606774,-1.67170034326635,0.39198951881482,-4.26465571916498,2.00210673001638e-05,0.245538369369209 +"196",12369.5720442374,0.527267973079127,0.352671210930344,1.49506950592366,0.134896303290012,1 +"57491",224.070579728077,-0.886955835546484,0.377251137759673,-2.35110181725023,0.018717911224533,1 +"10598",5035.40790030207,0.485271651118407,0.116093424819381,4.18000977982514,2.91496559244691e-05,0.357491380257689 +"64853",850.04025259151,-0.484958830940149,0.177523027354343,-2.73180802607738,0.00629878309520704,1 +"199",785.404397307571,-0.84406559687593,0.262523054719183,-3.21520560462324,0.00130351122277826,1 +"83543",1236.44373642462,-1.06087758005222,0.377525336996056,-2.8100831284426,0.00495287054953208,1 +"9131",2055.14632740355,0.271461471750347,0.11466347255085,2.3674625031957,0.0179105348435864,1 +"84883",1047.23062489095,-0.391519447797917,0.219684388044782,-1.78219058387575,0.074718157803012,1 +"150209",1333.58411660342,1.40469097575436,0.42663090721162,3.29252042458704,0.00099293685395162,1 +"51390",2069.84735746287,0.172112431887896,0.222917446956469,0.772090449795551,0.440060858169425,1 +"9447",457.906543993602,1.28296558293295,0.519779870042601,2.46828639752401,0.0135761650357002,1 +"9255",2407.7214280167,-0.0983519036175149,0.10266396279832,-0.957998317391311,0.338063607023445,1 +"7965",793.432100385891,0.60637633079811,0.14068278339591,4.31023836862571,1.63078665747808e-05,0.199999675673111 +"9049",3237.27809213175,-0.165235957632813,0.127637152709923,-1.29457571032111,0.195466636024264,1 +"84962",1203.40487271071,0.907685232409087,0.257345359599649,3.52710938258676,0.000420123162636566,1 +"203",1320.6229481824,-0.775186811803536,0.26025509326934,-2.97856538393002,0.00289601234303395,1 +"204",4832.10373596815,0.506699714929117,0.10071947140977,5.0308019674532,4.88432446616231e-07,0.00599013552530145 +"50808",4350.66371558537,-0.398975068193511,0.189845560558565,-2.10157702408022,0.03559034426321,1 +"205",1834.2801630604,-1.65502323140771,0.338969207792721,-4.88251792009306,1.04739717303333e-06,0.0128452789300808 +"8165",4164.70370505044,-0.415803059740006,0.204678271188361,-2.03149585603716,0.0422047194859741,1 +"11216",1118.43113366495,0.175688676534483,0.17956748519878,0.978399159179605,0.327876943903082,1 +"11215",3084.15349074862,-0.594940091269147,0.150178659648216,-3.96154881567565,7.44651534628898e-05,0.913240642068881 +"9590",7496.77763953162,-2.37195136039271,0.338036106164849,-7.01685801349275,2.269129896094e-12,2.78286090456968e-08 +"11214",7235.48994657155,-0.867154500228431,0.183823317058178,-4.71732593071414,2.38964701789686e-06,0.0293066310274871 +"8227",422.12914711317,-0.103241839234382,0.127483951369847,-0.809841851660718,0.418031075392471,1 +"9495",145.465757469563,0.415054689028068,0.278043006043449,1.49277154974799,0.135496996918041,1 +"9472",1118.56564854515,-2.84991566835447,0.430665584127316,-6.61746787621637,3.65403586718036e-11,4.48130958750999e-07 +"9465",433.265201094465,-1.04995052555763,0.209652422993893,-5.00805337979906,5.4983287484456e-07,0.00674315037709369 +"10270",1895.55408889159,-0.0262757922729789,0.095580194758205,-0.274908335764019,0.783386662795091,1 +"26993",2609.19016820724,0.132129612742813,0.106672484585748,1.23864755992069,0.215476046864881,1 +"10142",3001.4145556248,0.22752688926125,0.175633147617841,1.29546667213597,0.195159291208112,1 +"56672",608.19511460944,-0.0797105253743027,0.171578407184937,-0.46457200927612,0.642237980929198,1 +"79647",3253.28429296969,-0.534787299916894,0.136380872877489,-3.92127787888036,8.80806181391922e-05,1 +"55122",1832.22142909578,-0.197132409112207,0.170490101352188,-1.15626894200141,0.247571167922922,1 +"80709",1848.50597562828,-1.23854285669187,0.209889005057411,-5.90094205436391,3.61431840526305e-09,4.4326000922146e-05 +"10327",5891.44401743494,0.643875865499844,0.153280495873439,4.20063793394483,2.6616395126824e-05,0.326423469835369 +"231",4659.46148623844,0.886760655327992,0.238286068851375,3.72141208087615,0.000198111842189955,1 +"57016",10068.6573902684,-1.88204071990204,0.646616821518194,-2.91059659642505,0.00360739438830825,1 +"1645",12831.3545056451,0.149211263518944,0.489510446927873,0.304817321990534,0.760505287932904,1 +"1646",19124.7873287559,0.983850102575956,0.481705970448049,2.04242870741429,0.0411090245496147,1 +"8644",14261.6969132722,0.921252776539661,0.492025331097258,1.87236859225355,0.061155627117264,1 +"8574",1781.3728267684,0.143929764786897,0.139930909930594,1.02857735191093,0.303678325060592,1 +"246182",524.400440887878,0.143164898889095,0.136770975676521,1.0467491233498,0.295215300896483,1 +"207",8713.63851563219,0.0275691960285909,0.164597071367995,0.167495058080065,0.866980535684158,1 +"84335",2717.59049083354,0.260760585222906,0.150333448896406,1.73454801401247,0.0828208942822748,1 +"208",6534.52855945296,-0.139995101502782,0.146249293065909,-0.957236090294747,0.33844810473188,1 +"10000",2565.0256731563,-1.8899470730573,0.355187124827613,-5.32098981339646,1.03204182162653e-07,0.00126569609004278 +"64400",873.687201892274,-0.3328580893399,0.180769916748728,-1.8413356344163,0.0655723888000747,1 +"210",2485.92003621992,-0.686311554251367,0.180437597663378,-3.80359505523756,0.000142611234938125,1 +"211",5400.36175842968,-0.250700701270563,0.267832312647273,-0.936036054771064,0.349254624478857,1 +"214",5020.11789300334,-0.332174853083425,0.347999825830473,-0.954525917622852,0.339817496564536,1 +"126133",2502.83514257968,0.555893559662744,0.173550908268286,3.20305762274322,0.00135976770643782,1 +"5832",3546.45340045689,0.663350787467256,0.130530374885709,5.08196492998722,3.73550391109615e-07,0.00458122199656832 +"216",2920.12702392819,-1.80637973850377,0.430142760617195,-4.19948887646479,2.67518171284295e-05,0.32808428526306 +"8854",421.623928865803,-1.85458848700141,0.468332425241592,-3.95998309543634,7.49550690784722e-05,0.919248967178383 +"220",4644.41657183398,-0.736683470684988,0.459940461906702,-1.60169311399792,0.109223488634679,1 +"219",8094.21397692986,-1.61647749515598,0.387716249823686,-4.16922812982709,3.05632951590472e-05,0.374828251830555 +"10840",3783.82514576915,-1.42240143106662,0.471940288830214,-3.0139436380655,0.00257875708068015,1 +"160428",457.973238035102,-0.374454914778895,0.330580109970125,-1.13272064315283,0.25733158588382,1 +"217",6670.36665704366,-2.46862779541284,0.27975709123879,-8.82418309570467,1.10261700466993e-18,1.3522494945272e-14 +"218",15364.3008109407,-0.302796254646543,0.603758187502024,-0.501519086472891,0.616005848626524,1 +"224",5063.23445571132,-0.103302103596465,0.254968508482266,-0.405156323858911,0.685362607248154,1 +"221",1169.56272364348,-0.716417189243741,0.261271167886445,-2.74204457782006,0.0061058054617471,1 +"222",2555.66997470745,1.73059252443419,0.731763329378966,2.3649620785219,0.0180319171848159,1 +"8659",4146.01262231013,-0.990918246966849,0.323793389418872,-3.06034119086032,0.00221084973897125,1 +"7915",2281.74796877626,0.640630761367234,0.298549586441557,2.14581024547037,0.0318881208956123,1 +"4329",606.335912248146,-0.434322533813854,0.214538020545679,-2.0244548388633,0.0429233741886877,1 +"501",737.664370158558,-1.97667356606825,0.388212791589379,-5.09172703448427,3.54816673923803e-07,0.00435147168900152 +"223",4398.62769188504,-0.539705659754631,0.15630933467356,-3.45280504764329,0.000554789798291174,1 +"226",67023.8045492857,0.26469649836803,0.139719157121998,1.89448965925915,0.0581600456471955,1 +"230",1785.11674181598,0.28735283886754,0.284819800913359,1.00889347561531,0.313025724545165,1 +"56052",485.220711787997,0.0816210631752043,0.123807411096296,0.659258298452915,0.509729916176574,1 +"84920",202.63601018697,0.927615469496872,0.208981534534421,4.43874369840119,9.04854910626231e-06,0.110971406239201 +"144245",425.985359704785,0.361209537749974,0.158326218596874,2.28142591259428,0.0225232561362617,1 +"440138",219.091730316948,-0.141733934552077,0.178386558894746,-0.794532589395956,0.426885444481542,1 +"79087",1276.73393724175,0.247215092114221,0.117256922055314,2.10831981413943,0.0350033351782367,1 +"79868",1071.44102880174,-0.28926081889528,0.16872194759895,-1.71442318567143,0.0864510333468121,1 +"199857",375.173530427345,0.194637014684132,0.143367555213916,1.35760852163321,0.174587937516307,1 +"200810",408.609396436987,1.07615788219225,0.408986938057163,2.63127689921929,0.0085064697335078,1 +"85365",1320.44092531122,-0.100379664771718,0.179228319352943,-0.560065870918796,0.575434508527862,1 +"10195",2361.08202890028,1.00055844135972,0.181204654621706,5.52170386267697,3.35727985798163e-08,0.000411736801782867 +"29880",1378.65441910501,0.0705405364394353,0.147709156798793,0.477563733814583,0.632960748374355,1 +"29929",683.066079463347,0.801365132958596,0.206283857928991,3.88476898291504,0.000102427236348816,1 +"79053",1774.19067440307,1.0469482770915,0.193142310462793,5.42060553476287,5.93974948780848e-08,0.000728450877184832 +"79796",1226.60283956315,-0.418981036941772,0.149682366804974,-2.79913423260921,0.00512398316484554,1 +"8846",458.044370375685,0.0191449826090251,0.109266913662952,0.175212989616236,0.860912277979997,1 +"121642",770.015585470196,0.242161214615672,0.145678310702561,1.66230108962552,0.0964524194446804,1 +"221120",840.355489105871,-0.206506603695006,0.13248350531533,-1.55873444926967,0.119059244625091,1 +"54784",466.570780422992,0.662839660148105,0.207799916507602,3.18979752873892,0.00142372502110652,1 +"54890",4942.45469257239,-0.242482612984073,0.124899766244178,-1.94141766854889,0.0522076369059061,1 +"84964",544.732042351353,0.799131409573497,0.139656081972413,5.72213825769043,1.05191648044162e-08,0.00012900703716136 +"84266",1847.6248444926,-0.245432758429951,0.131111713325013,-1.87193616958956,0.0612154348460774,1 +"91801",390.274739771408,-0.109818824955365,0.119594887061712,-0.918256855735799,0.358484409009597,1 +"7840",1739.05373661397,0.436232131218529,0.192722323688823,2.26352673042116,0.0236032387482795,1 +"239",906.245679349718,0.468721547694984,0.457304618849004,1.02496569764529,0.305379373359633,1 +"245",154.743397218389,2.15268440907794,0.541939639154874,3.97218482197563,7.12164295722574e-05,0.873398292274165 +"246",257.5160268309,2.08914462543334,0.464362264413712,4.49895434132879,6.82885208676874e-06,0.0837490419921318 +"240",3747.02713438164,-0.0190128896772624,0.453823341879763,-0.0418949135549305,0.966582471234939,1 +"241",612.242026689751,-0.679276352971192,0.297205844219469,-2.28554170849206,0.0222810837109816,1 +"80216",805.02867886983,-0.3920867755368,0.18847465157695,-2.08031569368213,0.0374965862711161,1 +"115701",137.709625843952,0.752348551580996,0.459645453371002,1.63680190038503,0.101671868548819,1 +"57538",724.724004893805,-1.05567840200885,0.337620395080073,-3.12682058724112,0.00176707728049106,1 +"249",554.282211401177,-0.222907721234186,0.328081051935372,-0.679428817724273,0.496866195647537,1 +"57679",1040.00290185283,0.207851321947098,0.136375778127847,1.52410732169935,0.127481904012682,1 +"259173",2851.69474662489,0.504708691795897,0.350383004766577,1.44044855181298,0.149740535801007,1 +"257",137.972225376069,0.00979912576808073,0.261406979130976,0.0374860908482897,0.970097430248009,1 +"10189",3175.52644202741,0.537923889510912,0.159272397702302,3.37738300716958,0.000731790757481569,1 +"23600",184.552707227078,0.0759284374982856,0.26245118756379,0.289304987350575,0.772347996076973,1 +"55626",1768.73773487783,-0.21212450113928,0.170070025918412,-1.24727740819563,0.212295798188592,1 +"262",3617.0728185861,-0.297628027261381,0.201138010096374,-1.47972045223463,0.138947865182693,1 +"51005",584.466690240869,-0.128211062056545,0.152412215816799,-0.84121250629054,0.400228895510454,1 +"267",5087.5431502216,-0.0895165653273208,0.107268757883077,-0.834507335536537,0.403995155442838,1 +"57463",218.394519540211,-0.112316174563531,0.319695641766786,-0.35132219489393,0.72534664575921,1 +"347902",3946.74038071809,1.05149152893782,0.322192468885279,3.2635509221422,0.00110025410044461,1 +"386724",221.979578391999,0.568049617122797,0.19492265248562,2.91423090071434,0.00356566069385127,1 +"9949",1235.40955241679,0.944526509637896,0.247569316960478,3.81520020830643,0.000136072564698087,1 +"83607",1621.42382962227,0.169080828384536,0.124753052125199,1.35532418248855,0.175314293619448,1 +"81693",184.153921192979,1.80051932940906,0.453716165596101,3.96838258351123,7.23620959328296e-05,0.887448744520222 +"196394",413.443486735095,-0.550889728951041,0.158917815201949,-3.46650706373596,0.000527267880347306,1 +"154796",840.051134075421,-1.5064473909459,0.4180507930504,-3.60350324886069,0.000313956821223565,1 +"154810",6268.61279995971,-1.8513977026571,0.293015470984968,-6.31842986458583,2.64234165729771e-10,3.24056780850991e-06 +"51421",3917.24607297302,-1.06757239742308,0.314490107274537,-3.39461360700649,0.000687255197338424,1 +"271",2770.93970961106,0.751557763679895,0.181236396530536,4.14683682785134,3.37100122461623e-05,0.413419590186934 +"272",739.542246197185,-0.154627538761369,0.312109819607715,-0.495426702548856,0.620298949670455,1 +"273",163.493355382539,-1.3564036681406,0.383490818700094,-3.5369912446362,0.00040471308221222,1 +"275",658.763842130594,-1.16181245524145,0.281139823272891,-4.13250759610006,3.58826904342728e-05,0.440065315485921 +"280",217.449065920236,-1.14441740885623,0.332820713838088,-3.4385402148166,0.000584859661046946,1 +"51321",2808.80283458318,0.310720997850532,0.0954656165136751,3.25479485911059,0.00113474298472115,1 +"201283",507.951372367456,-0.332434995758403,0.219545387762617,-1.51419712864954,0.129975849740622,1 +"64682",1232.42596527993,0.482889082276729,0.160361707821705,3.01124931154774,0.00260175136969786,1 +"10393",243.075324833715,-0.337526958177648,0.137279751130925,-2.45867985188687,0.0139448909421901,1 +"51529",3331.09473373088,0.5355247978728,0.137603674246938,3.89179141330027,9.95067771779977e-05,1 +"25847",2167.65574508387,-0.182986336796563,0.113419642191675,-1.61335667491635,0.106667040075327,1 +"119504",4856.8529016349,-0.840652001757022,0.133261277594213,-6.3082991318517,2.8211856269422e-10,3.45990205288191e-06 +"29882",1777.04691367264,-0.125661665576357,0.120884230341283,-1.03952074825299,0.298562613642029,1 +"29945",1264.58115074594,-0.320869505923292,0.11934143944604,-2.68866797160069,0.00717377337390555,1 +"51433",5198.63336019414,0.336996269207605,0.0876576877627167,3.84445766034613,0.000120819341889671,1 +"51434",2700.76234214878,0.161632492220432,0.132279489691173,1.22190138923115,0.221744920051076,1 +"283",401.676315892923,-1.22006506285782,0.271691827129934,-4.49062114140936,7.10157706283405e-06,0.0870937410985967 +"23357",900.935397247379,0.308495802956402,0.140443383889185,2.19658480459155,0.0280501124426336,1 +"90806",903.481779870128,0.0716724103222017,0.128625739838182,0.557216700268306,0.577379380836426,1 +"284",342.13695163647,-1.88350416444876,0.374221605940542,-5.03312511770905,4.82547955527197e-07,0.00591796812658554 +"285",634.30042500997,0.187432766969403,0.295459355938626,0.634377497960624,0.525834491121612,1 +"9068",741.363520637142,-4.10497034133225,0.422492943634214,-9.71606840583414,2.57533827192864e-22,3.15839485669329e-18 +"23452",4547.27424843642,-1.30214100409295,0.287647883237946,-4.52685759212001,5.98672542238285e-06,0.0734212005801033 +"51129",2407.85807797416,-1.52352361759656,0.436292642432852,-3.49197641541947,0.000479460580318881,1 +"287",1217.71691043727,-3.82613248043902,0.371680289986812,-10.2941495245141,7.48783168034393e-25,9.18307677277379e-21 +"288",1486.8411855695,0.0589556422686983,0.257608021999497,0.228857943984421,0.818979328902992,1 +"150709",102.803365400416,-0.40259778401767,0.195426518946643,-2.06009801631677,0.0393891714881522,1 +"348094",566.654073849758,-0.866835103822785,0.252079015957211,-3.43874360398934,0.000584420460513282,1 +"51479",3072.43697569616,-0.0372528812286284,0.141980129995024,-0.262380948868929,0.793027758916219,1 +"56172",1891.76394444041,-0.141449884953949,0.206536087872446,-0.684867649092426,0.493427441986361,1 +"54882",515.923316457681,-0.150104958538551,0.120676264370901,-1.24386480904978,0.213549323004157,1 +"404734",162.919813211021,-0.319581396038902,0.236882284701188,-1.34911479953865,0.177300095354747,1 +"54467",2600.46618232131,0.462905310408844,0.117443925681136,3.94150065849849,8.09734127101645e-05,0.993057933477457 +"23141",3784.25542776743,0.344190535199244,0.142618669065562,2.41336241218896,0.0158060942983712,1 +"51281",359.424196708825,0.154083440495996,0.199966050149859,0.770548002426023,0.440974891984777,1 +"57037",1176.10555354536,-0.480295727405467,0.188711616706773,-2.54513069087723,0.0109236845620195,1 +"57763",622.885352755917,-0.147943989602987,0.132610511207203,-1.11562792614399,0.264581433236909,1 +"55608",2688.39175388038,-0.193908674160441,0.164726906478497,-1.17715240518861,0.239134681480638,1 +"29123",4034.88340478059,-0.0990972850041921,0.1124530473899,-0.881232543753127,0.378191968307091,1 +"23253",2428.82413005586,-0.47978229086339,0.172064064526477,-2.78839333584127,0.005297018734847,1 +"88455",3234.56947670073,-0.461864742281943,0.183373389052972,-2.51871192798057,0.0117784977729319,1 +"124930",709.963478482912,0.92414941099402,0.271177638001446,3.40791157340596,0.000654621046461938,1 +"81573",1129.11358343593,-0.16699342482367,0.128569115196595,-1.29886111892674,0.193991595077215,1 +"338692",2506.43193109891,0.45320112484735,0.160298109631953,2.82723935976479,0.00469512188521625,1 +"54522",410.957522853727,0.502159402358609,0.128909104711708,3.89545333885947,9.80152308995902e-05,1 +"26057",4836.27953953275,0.249320924022041,0.168393128271998,1.48058846925941,0.138716269894901,1 +"441459",213.090263300364,1.37478125970526,0.530402423226389,2.59195885897842,0.00954311830828082,1 +"138649",368.679928556887,0.108369946143056,0.206416754207845,0.525005572144285,0.599579317374858,1 +"118932",986.733631153852,0.880740523244025,0.672306094622736,1.31002906308361,0.19018600392473,1 +"200539",132.612731910742,0.625014704246965,0.214632031982315,2.91202901297819,0.00359089280462092,1 +"170961",119.444019609527,-0.442312801793158,0.32163558181244,-1.37519859992074,0.169069882261771,1 +"22852",499.691953637456,0.378629009430691,0.170358311504789,2.2225449764454,0.0262464980217907,1 +"84079",3029.54320970643,-0.133209228376252,0.146036326791537,-0.912165016081269,0.361681856977767,1 +"23243",2090.84069453739,0.242491666564117,0.15475274852483,1.56696193686802,0.117123588845854,1 +"147463",226.832723627546,-3.41376493099876,0.375611481687321,-9.08855319241961,1.00365674337178e-19,1.23088463007115e-15 +"554226",331.363979167259,1.25275863603733,0.440998159181752,2.84073438846492,0.00450097833148549,1 +"651746",334.027174576873,-2.01889559833239,0.339460368238161,-5.94736760821504,2.72488996435353e-09,3.34180505228317e-05 +"148741",583.552189367095,-1.98842958422116,0.335774292221833,-5.92192323916055,3.18198151574794e-09,3.90238213091328e-05 +"375248",160.728523590573,0.106417709555592,0.303760258618719,0.350334536978281,0.726087648807554,1 +"84832",227.662555935918,0.624890809427013,0.317924307504786,1.9655332878805,0.0493525468208231,1 +"353322",302.645839139576,-1.34027691158738,0.225939636924995,-5.9320132130349,2.99242535900266e-09,3.66991046028086e-05 +"51239",442.014843366503,0.417320698019468,0.169964575388546,2.45533927917306,0.014075167626463,1 +"91369",3075.2190790216,-0.379242204011308,0.166933066786944,-2.27182194223588,0.0230972670105017,1 +"338699",328.947792047749,-0.499641584399769,0.18018180687859,-2.77298575841477,0.00555445515204636,1 +"91526",651.620302354995,-1.53083657600427,0.196053046987071,-7.80827740007133,5.79748759789415e-15,7.11003879005739e-11 +"157567",922.304962782246,-0.11386652550484,0.194055240852263,-0.586773771245522,0.557355654541839,1 +"54851",446.691309146692,0.22805204985985,0.0998765697964997,2.28333882836094,0.0224104175245375,1 +"57182",3713.53027270472,-0.40571758058495,0.282067934008449,-1.43836832077764,0.150329576193035,1 +"283373",2825.3776568812,0.142714512897927,0.210426976375427,0.678213959807642,0.497636042639347,1 +"129138",933.66313856673,0.106684057575754,0.169736785644449,0.628526439750234,0.529659131831221,1 +"22881",473.234147228709,-0.331772964204071,0.215040687502151,-1.54283809291091,0.122870064412833,1 +"441869",1962.44738841122,0.756921118873324,0.309547988900453,2.44524644324774,0.0144753192242461,1 +"122416",397.987210595056,0.223821771535728,0.19133805598303,1.16977132638778,0.242093005608108,1 +"23294",4673.67214562315,-0.431366229120144,0.257542395383506,-1.67493289203044,0.0939473992073926,1 +"124401",664.565138591659,0.0868933317125959,0.181795342298161,0.477973366171741,0.632669161695587,1 +"203286",1145.49859576715,-0.0349170084715106,0.24257751320569,-0.143941653989598,0.885546543038928,1 +"55139",1449.02103977247,0.441929213078587,0.170868859059447,2.58636486198363,0.00969941965457727,1 +"54443",2505.93492266008,2.67027693952069,0.388860529902705,6.86692717357763,6.55995364450628e-12,8.0451271496225e-08 +"55107",2984.65216727418,1.76419354839849,0.429996868249287,4.10280557526227,4.08170235327176e-05,0.500579976605248 +"55129",1940.937396074,-0.0258639356225368,0.12444445301589,-0.207835182651608,0.835357660603435,1 +"203859",337.652764885775,-3.18595653652981,0.479891846703793,-6.63890532504983,3.16021286983863e-11,3.87568506357009e-07 +"196527",6665.30229825512,-0.830213864942122,0.191873972251722,-4.32687068078704,1.51242696031323e-05,0.185484042412814 +"57719",625.546426505669,0.751123158613932,0.247903244010772,3.02990451622043,0.00244631064689683,1 +"338440",1045.53056270577,1.66270030231407,0.465454064824985,3.57221136942753,0.000353979523023182,1 +"8125",4406.71232771936,0.456112301889688,0.122266985173497,3.7304616715826,0.000191129219337066,1 +"723972",928.902830285901,0.530877063837704,0.127894219319387,4.150907419138,3.3115971021623e-05,0.406134268609185 +"10541",6026.19987174503,-0.0209087055561643,0.188889805464542,-0.110692609930657,0.911860106387242,1 +"23519",101.550931832874,0.543329889964874,0.122917747881445,4.420272087062,9.85767041468125e-06,0.120894469965651 +"81611",3742.03851053472,0.629786767527945,0.170262372805035,3.69891924535262,0.000216519471506465,1 +"290",1973.5580555932,-0.506808398965847,0.399499347658659,-1.26860882736378,0.204580614385159,1 +"84168",7562.35097525051,-0.179557032155357,0.237928744521403,-0.754667253494477,0.450448659546869,1 +"118429",6830.11189493644,-2.290939293872,0.287890046968261,-7.95768842305467,1.75283072278017e-15,2.1496715984176e-11 +"301",37799.3456104177,-1.23941071639521,0.426296990993748,-2.90738790697538,0.0036446093825081,1 +"11199",1015.07476274926,0.91744373930331,0.863620080210829,1.0623233066551,0.288088937281932,1 +"311",15210.2834120656,-0.770163651700384,0.237465554309728,-3.24326470817681,0.00118168368071988,1 +"302",14894.5545775268,0.240838765508002,0.297113971598082,0.810593874844076,0.417598935526917,1 +"303",150.102232936917,0.194783671131227,0.310961394648631,0.626391810955573,0.531057979522634,1 +"304",27104.5768357092,0.225075552423886,0.294270406245324,0.764859624505522,0.444355138543277,1 +"305",2049.71523716043,0.31818982622115,0.29607284520655,1.07470114660184,0.282508550244311,1 +"306",887.668639488698,0.00296588997940261,0.428418627404513,0.00692287820763267,0.994476386482854,1 +"307",5359.96594153787,0.461760925789767,0.212251949612632,2.17553208171938,0.0295902666961568,1 +"308",10299.9883229952,-0.715303674083444,0.17516112641764,-4.08368962173681,4.43262270247668e-05,0.54361684823174 +"309",12386.311828083,-2.35671595425023,0.289679219897931,-8.13560584387318,4.09883348283542e-16,5.02680938334936e-12 +"310",6243.5401477966,-0.617523258981557,0.138075241559241,-4.47236776128766,7.73582385353574e-06,0.0948721437397623 +"8416",1105.05591404522,0.468622275120954,0.354527504656792,1.32182205601964,0.186227412013424,1 +"313",284.103889397561,-0.945605800452899,0.335694528528704,-2.81686390480458,0.00484950702243397,1 +"314",150.724881867576,0.1937018915534,0.328863123476292,0.589004597127974,0.555858189759632,1 +"8639",10062.070815918,-3.4700085671494,0.30927459732573,-11.2198305232769,3.25894389527108e-29,3.99676879316045e-25 +"316",968.622895137457,-4.36623437330868,0.395902473505565,-11.0285604801792,2.78283614059423e-28,3.41287024282476e-24 +"55435",1097.53627341101,-0.0133804455230877,0.156085161590961,-0.0857252885969561,0.931684798731027,1 +"162",9119.24235843561,0.310225929308168,0.194779022297455,1.59270708749328,0.111225916836705,1 +"164",4460.15258784721,0.328520125047966,0.156566260837751,2.09828173254012,0.0358802652468703,1 +"8906",4959.93950694201,1.2633821866618,0.311839667601804,4.05138382931786,5.09156041214197e-05,0.624428968945091 +"8907",2552.93835776784,-0.0248161815964609,0.145790476239122,-0.170218125604843,0.86483859756095,1 +"10053",3519.55514679465,1.94616128132438,0.61589912571276,3.15987018015677,0.00157839450111506,1 +"1174",2264.17701300429,0.708214751195841,0.180103429562802,3.93226688084187,8.41485687328675e-05,1 +"8905",721.923678166747,-1.32557100144484,0.254821588043719,-5.20195722670647,1.97200618311846e-07,0.00241846838297648 +"130340",892.244882129494,0.270630237355849,0.367438205847077,0.736532655149318,0.461406602101186,1 +"160",5222.56525645833,0.167044059952868,0.107782170965093,1.54983016631728,0.12118228451078,1 +"161",3403.94760543142,-0.420374205470327,0.138124030791309,-3.04345451737842,0.00233878792318504,1 +"163",7807.91433068866,0.134400784175963,0.189965814037305,0.707499845996341,0.479255908364246,1 +"1173",19443.2122653906,0.141186949177163,0.127521248145698,1.10716410974782,0.268222981643375,1 +"1175",3816.21382060521,0.5294079565721,0.156848609024756,3.37527989482229,0.000737406518584283,1 +"8546",2804.09732582897,-0.0136158467364233,0.164179915026288,-0.0829324752314751,0.933905231475879,1 +"8120",277.277290255155,0.304190437401198,0.401369651463724,0.757881011411473,0.448522218806205,1 +"8943",7882.13379760117,0.0905826816339781,0.11396139837523,0.794854072742467,0.426698392670377,1 +"26985",2548.8718418671,0.0278247571886451,0.136470400166037,0.203888587963339,0.838440563249725,1 +"10947",1175.71214569039,0.582347867731116,0.197082581318563,2.95484189335744,0.00312829322501592,1 +"1176",1603.58578664303,-0.283999337550044,0.112741545878104,-2.51903001096954,0.0117678626127553,1 +"10239",144.242893314791,0.147755574829476,0.106076222586718,1.39291889573731,0.163644317720214,1 +"10717",674.116736840607,0.232414385817762,0.150437626116095,1.5449219175953,0.122365151261395,1 +"23431",818.193101050201,-0.131505475441319,0.134200784887501,-0.9799158443936,0.327127661173058,1 +"9179",846.912063609405,0.26432850696079,0.18282262254054,1.44581946855169,0.14822784406311,1 +"11154",393.484652855431,-0.489078853061407,0.153425828003731,-3.18772177686741,0.00143398442713807,1 +"91056",1375.19167551976,0.0266303410332944,0.175905526396029,0.151390019284212,0.879668062179498,1 +"317",834.908298312165,0.566802768627524,0.136436335428584,4.15433884857022,3.26229436724517e-05,0.400087781198948 +"320",458.123460537194,-0.900026262672161,0.220195102095281,-4.08740364389535,4.36227761750521e-05,0.534989727010839 +"321",445.069934743195,1.34682671803075,0.281595373016386,4.78284392106253,1.72832324791355e-06,0.0211961563124118 +"9546",636.502769110953,0.262796479775682,0.089414001514699,2.9390976281548,0.00329169370068689,1 +"322",1527.91426635185,-2.39589254507811,0.32386936668184,-7.39771275568576,1.38550144356727e-13,1.6991789703909e-09 +"54518",468.113193965052,-1.29003202785778,0.264909519140759,-4.86970808765964,1.11763232648942e-06,0.0137066428520663 +"323",1645.5340149951,-0.499274934873104,0.190698157573952,-2.61814241534813,0.00884098984198031,1 +"10307",554.317423683577,-0.091533990798612,0.220577223702352,-0.414974806837393,0.678160345922869,1 +"324",1520.2986505399,-0.377697829157331,0.163633351078359,-2.30819589446935,0.0209882434218433,1 +"10297",317.545263711135,-0.00413584113688354,0.283675612410287,-0.0145794737226187,0.988367675110091,1 +"147495",2924.98280164481,-1.75995221548952,0.316456841689205,-5.56142887003209,2.67574736293046e-08,0.000328153656589791 +"327",5136.56203715551,0.269709274006383,0.14689787527838,1.83603250554351,0.0663528493243751,1 +"328",6588.55075576303,0.409194534009773,0.107440166867351,3.80858058899868,0.000139766795228308,1 +"27301",1852.65092888097,0.740012209347013,0.175381276290279,4.21944819310242,2.44900989188018e-05,0.300346573140185 +"51107",10043.9981732987,0.750389559143366,0.198226424045827,3.78551730807538,0.000153389157124933,1 +"83464",715.982581762311,-0.444781135543663,0.229180849222091,-1.94074302915529,0.0522894543567134,1 +"8539",3496.54518441175,-0.0890535810976236,0.0907553141115621,-0.981249219061193,0.326469857876396,1 +"51074",342.368222135125,-0.1844451225867,0.158928388166415,-1.16055491856852,0.245822947728457,1 +"200558",213.072563569519,-0.59222966256461,0.256987122486084,-2.30451104645012,0.0211939729809329,1 +"8862",253.717731781308,1.53559686643155,0.370407165004281,4.14569968270944,3.3877761565014e-05,0.415476867833332 +"187",772.472077533131,-0.304879186273126,0.235319286253226,-1.29559795598329,0.195114033707672,1 +"333",717.652831244421,0.357401212573825,0.41472270421692,0.861783569936615,0.388806627826356,1 +"334",30051.5366172464,0.108791792124704,0.176899290264982,0.614992812926167,0.538559466806879,1 +"200315",638.779587072978,-1.41255440070913,0.539612976067179,-2.61771762978004,0.00885200215911378,1 +"9582",684.800779627057,1.44371614401421,0.41617491842253,3.4690128599928,0.000522374448897699,1 +"27350",1867.49612523195,-0.0182125455792975,0.264964965023116,-0.0687356744606165,0.945200021230668,1 +"140564",381.826335674493,0.380636398813589,0.303495150376564,1.25417621448419,0.209777963244421,1 +"200316",585.17861934702,0.353239265002682,0.209737406773436,1.68419773295023,0.0921434612486457,1 +"60489",1317.03376292662,0.517724084044011,0.312785665030243,1.65520400045812,0.0978831240355906,1 +"55911",824.760156763397,-0.637213102189791,0.44466236377107,-1.43302684037782,0.151850167049207,1 +"341",1468.45173091867,1.97145218166646,0.374171535876822,5.26884595068574,1.37284112558024e-07,0.0016836523564116 +"347",3873.57832836079,-2.82738377613149,0.496560337286232,-5.69393800476195,1.2414217632479e-08,0.000152247965044722 +"348",7747.98664976649,0.519614828625992,0.358830627184546,1.44807825547944,0.147595166087276,1 +"8542",15635.9389234224,0.748062531183807,0.374487607772735,1.99756284495743,0.0457640747737865,1 +"23780",3007.1655598134,0.170528513848878,0.27888151153045,0.611472997665028,0.540886489259,1 +"80833",1466.41308675977,-0.833941284884176,0.310495663605875,-2.68583874956376,0.00723479952413209,1 +"80832",1845.08197889535,0.432670735910087,0.372635481755937,1.16110987035172,0.245597221257526,1 +"80830",3587.69999385595,0.489813263676286,0.310905609571859,1.57544041855918,0.11515482104789,1 +"81575",3918.93339686738,-2.40098281582142,0.187593066053611,-12.7988889266049,1.66313727828097e-37,2.03967155808378e-33 +"55937",87.2701252015909,-0.314367342936573,0.149612925213516,-2.10120444131369,0.0356230237108101,1 +"79135",357.229791531592,0.616590081069202,0.176423112251702,3.49495070798612,0.00047414931314589,1 +"139322",972.549431009466,-0.198397495158326,0.139488941973053,-1.42231701202991,0.154934242442225,1 +"351",37682.4563996013,-0.384888384814231,0.187646401270546,-2.05113651105573,0.0402536545941419,1 +"10513",2248.82623439418,-0.12027611280004,0.135339474154512,-0.888699424550192,0.374164640442941,1 +"26060",2695.9078926657,-0.128561228487734,0.167148658162719,-0.769143048474732,0.441808395028294,1 +"55198",1684.23661535304,0.431570461395311,0.133351492059028,3.23633770220041,0.00121074054273987,1 +"353",4794.07657189655,0.56912993414068,0.192244826391465,2.96044343467413,0.0030719652791334,1 +"54840",1318.03412526274,0.396826655865206,0.129008120219435,3.07598200167731,0.00209810509533972,1 +"358",13356.6828035399,-2.95387517991574,0.293813751954434,-10.0535633892788,8.86042869324108e-24,1.08664297493909e-19 +"360",60600.5570770886,-1.12293297771842,0.679916235593889,-1.65157547199557,0.0986211236125464,1 +"9716",2283.42728373371,0.204733057147245,0.121265075652966,1.68831014242835,0.0913517092904918,1 +"367",1658.65269805077,-1.55281448356847,0.439127648588553,-3.53613462636556,0.000406027721990216,1 +"369",3479.35368171425,-0.144114290216816,0.162706786880255,-0.88573004838992,0.375763012198896,1 +"116985",6089.32093772113,-0.143741533401652,0.0893486951698738,-1.60877037015889,0.10766656203461,1 +"116984",1382.75029882336,0.655281526157115,0.391188495228317,1.67510428898135,0.0939137716050858,1 +"64411",1655.05808780486,-0.0659276522022078,0.222133783624159,-0.296792550536818,0.766624893174397,1 +"372",7737.31246045703,-0.0543134617675151,0.112941474466888,-0.480899173876454,0.630588159952396,1 +"374",1033.98873162698,-2.70289057918119,0.559555612980195,-4.83042349407521,1.36242957662806e-06,0.0167088363277665 +"375",20855.5984347439,0.196815060806524,0.0992402875901207,1.98321735643698,0.0473431559908576,1 +"377",8663.58776602031,0.127553915734351,0.109375882258612,1.16619782259454,0.243534472726541,1 +"378",7671.64544290682,-0.0779975757428322,0.106809444598595,-0.730249801747007,0.465237506002763,1 +"381",7546.7347002351,0.420025408397006,0.125657446902884,3.34262249273318,0.000829907177851004,1 +"382",10226.2832157636,0.19498635663736,0.229947582816556,0.847960018753116,0.396460237250101,1 +"55738",3859.12239478981,0.469964594014938,0.105511506788794,4.45415489095122,8.42242830665742e-06,0.103292660752847 +"84364",4560.42675061634,-0.194959572966966,0.125283479108926,-1.55614750127956,0.119673021782718,1 +"26286",2391.70034710967,-0.175042630851506,0.119511108124906,-1.46465574286669,0.143014865353033,1 +"10565",4083.41671517282,0.300858216725905,0.177073361114097,1.6990597277478,0.0893079303967922,1 +"10564",3382.58907971974,0.171852305574079,0.15213260797802,1.12962176786523,0.258635634631938,1 +"27236",2067.49872958058,-0.386304836483306,0.126717707956552,-3.04854658999797,0.00229951253273981,1 +"23647",2220.31684889272,0.0157486474259231,0.1654207364033,0.0952035867349033,0.924153121127314,1 +"10139",2088.35770984085,-0.101955330608605,0.145623206135311,-0.70013106643092,0.483845456183909,1 +"384",1980.61961986508,-0.913600197790944,0.306908870140331,-2.97678003693152,0.00291292919662883,1 +"55082",2659.74214473158,0.0772336952414465,0.165337379693049,0.46712785327088,0.640408407474635,1 +"392",10995.5608452429,-1.05039034955719,0.188154517993646,-5.58259435254519,2.36956981855307e-08,0.000290604042547348 +"79658",2547.26409540773,-1.85971276510795,0.29334273869516,-6.33972660574547,2.30173239427909e-10,2.82284460834387e-06 +"9824",967.110664874822,2.29117229077458,0.311060696602478,7.3656759462048,1.7625149275437e-13,2.1615483071396e-09 +"94134",1539.79227432991,-0.183391343667371,0.234199266091478,-0.783056867461482,0.433593718416147,1 +"55843",312.899297965587,-1.62468829328768,0.248521237427902,-6.53742235513781,6.25881184056263e-11,7.67580684126601e-07 +"55114",2013.89327469151,-0.334388558665968,0.135133277599621,-2.47450934814672,0.0133419329094982,1 +"93663",921.900056802703,0.12760194290904,0.167504653734831,0.761781479283803,0.446190435990537,1 +"84986",637.391281460202,0.277003431911446,0.174868937058603,1.58406310789558,0.113179358666805,1 +"57569",363.705698148884,-2.66666324131105,0.360763217848524,-7.39172706467742,1.44933796788971e-13,1.77746808381994e-09 +"57584",2894.28117531323,-0.061499561718296,0.148096447711444,-0.415266960610181,0.677946484926745,1 +"58504",198.57330019377,-0.577764956757032,0.21326477000266,-2.70914392822511,0.00674570694658159,1 +"57636",10875.6385167592,-0.033500720940814,0.350045953650045,-0.0957037800079987,0.923755838671181,1 +"83478",758.219817974616,-1.74821915275965,0.290629995759326,-6.01527432910734,1.7958231908498e-09,2.20239756125819e-05 +"9938",543.33532471369,-1.01110623864744,0.26146658602332,-3.86705717937229,0.000110156606572454,1 +"23092",975.10280634912,-0.612287483657761,0.217818058214851,-2.81100423296315,0.00493871361585722,1 +"201176",3149.79446500884,0.57059208105278,0.349827269625981,1.63106804584683,0.102875962269984,1 +"79822",440.361860548739,-1.11539960203157,0.399209849188585,-2.7940182445365,0.00520575415916775,1 +"9411",1518.99319706836,-0.467564705689242,0.265438231665937,-1.76148214503511,0.0781568324256931,1 +"257106",1335.22791986102,-0.589271983737662,0.282739013195449,-2.0841551969707,0.0371460526039052,1 +"57514",1144.8606294773,-0.866013274254066,0.182435529014972,-4.74695515138937,2.06501717365527e-06,0.0253253706177083 +"9743",3251.35895296282,0.890054258665225,0.30606158842566,2.90808873875205,0.00363645132895945,1 +"115703",511.745854326756,0.407001125491279,0.284529094227522,1.43043763800767,0.152591452281656,1 +"2909",4878.70337487889,-0.626886022783954,0.176627988573908,-3.54918848278476,0.000386420379949256,1 +"80728",495.836353157058,1.55130508793719,0.166885444119117,9.29562848411109,1.46339057502091e-20,1.79470220120564e-16 +"393",1595.43664427434,-0.145514265540441,0.297485575064907,-0.489147299020102,0.62473741714498,1 +"343578",343.238412936093,1.63153090892249,0.636082490768359,2.56496748865335,0.0103185472925585,1 +"143872",222.029445937364,-0.299921479948088,0.259310216434095,-1.15661266290414,0.247430646355323,1 +"9912",290.27345207521,-1.12613659367789,0.33147271444493,-3.39737343257247,0.000680360526625134,1 +"394",4228.50359937423,-0.456439194348335,0.137669738125798,-3.31546497118529,0.000914908065221867,1 +"84837",176.053912494137,-0.704734258276809,0.199106112162746,-3.53949083040088,0.000400899697657619,1 +"395",773.248958284868,-3.66103118670675,0.366507358946281,-9.98897047315046,1.7034167876428e-23,2.08907034836513e-19 +"64333",507.941285018279,-0.946917630293063,0.28458183042188,-3.32740016778056,0.000876603922962286,1 +"396",15663.4170030271,0.028079085018926,0.148893492034873,0.188585039112049,0.85041805946715,1 +"397",8217.28158023812,0.0518146400166705,0.323664774281721,0.160087362400366,0.872812256127202,1 +"9138",4348.11658074085,0.263459970963687,0.119296675283029,2.20844353238373,0.0272133700240864,1 +"9639",1000.98646831318,-1.2915105800989,0.22968820126355,-5.6228860385257,1.87793294838303e-08,0.000230309696789694 +"55160",3412.2022273161,-0.244565822354699,0.231086556283615,-1.05832994479584,0.289905045556047,1 +"9826",3165.26402780458,0.24103664587379,0.153094018717333,1.57443542140487,0.115386820259334,1 +"23365",9022.48230355637,-0.396843247628481,0.151164497622111,-2.62524107095921,0.00865876380545429,1 +"22899",636.663488780495,-1.65340405684292,0.211286461662225,-7.82541410289766,5.05988578712222e-15,6.20544392932669e-11 +"27237",1465.93094570356,1.16070123984002,0.436043671692702,2.66189218005213,0.00777027637858021,1 +"9828",2853.45724139512,-1.00233966703401,0.296932628162655,-3.37564676955926,0.000736424010959032,1 +"23370",3721.87165654708,0.144118525891664,0.183599997101002,0.784959303743247,0.432477429664587,1 +"128272",1657.57376942047,1.29669349093662,0.34279142828223,3.78274771173396,0.000155106606625213,1 +"9181",2945.39802663998,-0.223240726517791,0.174600428478895,-1.27858063386583,0.201044773246181,1 +"115557",2680.43961624016,-1.80633248312226,0.40395701839698,-4.47159574127543,7.76380873673125e-06,0.0952153503472721 +"26084",958.514974212932,-1.44912121929056,0.322879170106946,-4.48812234871197,7.18536613122204e-06,0.0881213302333071 +"50650",1519.1269327833,-0.722014175313712,0.16187392339302,-4.46034889486619,8.18263343399446e-06,0.100351816434508 +"445328",229.793285159425,1.23431286689414,0.399764316340921,3.0876014102307,0.00201778912223188,1 +"389337",1159.79106085812,-1.85906823221093,0.350285537726629,-5.30729371322716,1.11264813593598e-07,0.00136455167391189 +"54848",144.329885481563,-0.189468874069243,0.166439351838016,-1.13836584904296,0.254967748119027,1 +"50649",995.917289943479,-0.927324270008203,0.401801076874952,-2.3079188269493,0.0210036517091615,1 +"55701",2250.29640671584,-0.316269497148033,0.245661337288004,-1.28742072578255,0.197947684199009,1 +"7984",1305.01537644423,1.02193171801452,0.399747543322395,2.55644277265848,0.0105748463813988,1 +"9459",1185.14289067212,-1.43345041934321,0.266750725802808,-5.37374515112985,7.7117834308572e-08,0.000945773119960328 +"8874",2550.20895641721,0.0357656211665146,0.123833815482394,0.288819504003731,0.772719505836169,1 +"23229",1599.85229119883,-1.28122145037921,0.269881209220482,-4.74735330436624,2.0609576577458e-06,0.0252755847145945 +"8289",5692.43014396655,0.168189739896537,0.121348540435279,1.38600546239154,0.165745235543039,1 +"57492",4353.3440622201,-0.255991413094797,0.102414218238647,-2.49956907837038,0.0124344454388601,1 +"196528",1539.87111439984,0.136211096150272,0.11131782545839,1.22362340073905,0.221094327776883,1 +"1820",314.233054131896,0.911393966908709,0.384979030999891,2.36738599643098,0.0179142381980616,1 +"10620",427.921848777542,0.605858210119955,0.271104685605257,2.23477587179042,0.0254320666509467,1 +"5926",1218.73541036401,-0.46244644206077,0.116041690830867,-3.98517497245705,6.74304193795044e-05,0.826966663270242 +"51742",2193.81726462731,0.0298462109973537,0.114097607710714,0.261584897319027,0.793641488885335,1 +"10865",3196.46478082485,-1.6464949027682,0.289388348682696,-5.68956874132318,1.27360612196352e-08,0.000156195054797606 +"84159",7262.00243696541,-1.31804313689624,0.260071819802674,-5.06799674757644,4.02024273161612e-07,0.004930425686054 +"25820",4160.37551396965,-0.0939154479791027,0.158068534751848,-0.59414385112471,0.552415903597117,1 +"10425",3328.72554035255,-0.237172071293796,0.14342426341567,-1.65363980713937,0.0982007194926695,1 +"400",4213.11046863023,-0.3360255150374,0.141895692750941,-2.36811638551426,0.0178789106421013,1 +"115761",137.551374430358,0.193937109281022,0.359351622642258,0.539686193302905,0.589413463161289,1 +"200894",495.619538143523,0.111462877838915,0.187906038009931,0.593184120209186,0.553057938782067,1 +"80117",753.30756225063,-0.952680316145571,0.646171829884232,-1.47434516963739,0.140388679218469,1 +"54622",769.57217179868,-0.429350296623489,0.232570062009081,-1.84611163154235,0.0648759983018704,1 +"339231",959.251525865188,0.367485563606655,0.10447489290978,3.51745336483857,0.000435708904656742,1 +"51326",217.151141890105,0.376841802780239,0.14845200683993,2.53847563803279,0.0111336554164321,1 +"402",2121.52142375476,-0.237464614153877,0.175223593557658,-1.35520913212945,0.175350935971428,1 +"23568",2670.75151921978,-0.284430319525199,0.160774022367614,-1.76913107812182,0.076872002620498,1 +"403",1217.59730003485,-0.460168038014702,0.16215279069385,-2.83786690346584,0.00454161161839153,1 +"10124",957.850378400312,-0.44068101528114,0.236334278581469,-1.86465128091534,0.0622302998378049,1 +"10123",3409.34358356182,0.0885627596671402,0.327930255714357,0.270065839073668,0.787109602387572,1 +"379",2337.9077597989,-0.985984014863477,0.246400993481948,-4.00154236770847,6.29309238509422e-05,0.771784850107955 +"26225",1783.57223845154,-0.306762180998439,0.139638261108885,-2.19683472539976,0.0280322520445908,1 +"221079",976.29368190166,-0.261144854442156,0.258511766621603,-1.01018556275006,0.312406394852628,1 +"84100",140.377962743495,0.183359342090754,0.216092130067887,0.848523923722489,0.396146254777051,1 +"23204",10935.8443568348,0.904474509466267,0.19490311711669,4.64063644977391,3.47337733212337e-06,0.0425974996011611 +"51329",6086.38178566773,-0.309251643145321,0.105919971107112,-2.91967265391897,0.00350399235549628,1 +"10550",5882.40118273322,-0.756693759729273,0.186987111052709,-4.04676961673563,5.19293047881074e-05,0.636860993921349 +"151188",1007.38533232159,0.787208809177025,0.204868194223767,3.84251353490819,0.000121780696011657,1 +"127829",2491.1341353402,0.187027271731424,0.121592534028945,1.53814766033992,0.124012514968362,1 +"55207",5029.89526820899,0.218070689240782,0.138447017028721,1.57512017175164,0.115228708766262,1 +"55156",1854.06490032413,0.0930656693349408,0.127551658335488,0.729631198444778,0.465615646673626,1 +"83787",1035.44877876223,0.167762028602295,0.109555873331541,1.53129196546686,0.125697250378385,1 +"84071",95.2804171765868,0.461285627219109,0.109848300981892,4.1992968766549,2.67745090292303e-05,0.328362578734481 +"79798",888.002471889872,-0.278721900981626,0.107138251075197,-2.60151624825385,0.00928126684097148,1 +"93436",1709.74470466999,0.657840670926592,0.154528395174667,4.25708602087673,2.07108682570043e-05,0.2539980883039 +"79637",873.207701005058,0.640953174816636,0.195095005381432,3.28533871773653,0.00101859839051646,1 +"25852",1710.6685474727,-0.216401887276847,0.122935312192215,-1.76029070425666,0.0783585294845945,1 +"80210",499.029622100284,0.392678734861242,0.333365072786227,1.17792404458955,0.238826888361836,1 +"51309",923.366942556208,-1.93561383438367,0.296898673971942,-6.51944250369603,7.05691829552532e-11,8.65460459763226e-07 +"9823",1480.34318136417,-1.02799860359639,0.340113619171473,-3.02251525857925,0.00250683444350287,1 +"51566",2901.05221854353,-0.238789478859923,0.179286447929605,-1.33188805744917,0.182896975975272,1 +"100131755",708.236279949511,-0.933261197881827,0.285186222107489,-3.27246243168814,0.00106615040378781,1 +"64860",603.098813896213,0.24033492808512,0.119705101535296,2.00772502594015,0.0446725197376767,1 +"54470",650.194742101873,0.289755343344447,0.147522751906277,1.96414003670791,0.049513854338694,1 +"405",2867.4581285169,-0.247466872406461,0.105115397478579,-2.35423999092894,0.0185606235272036,1 +"9915",874.423318223231,-1.37881663728673,0.388674363844812,-3.54748541593358,0.000388927283709082,1 +"406",395.626790002757,-0.192790141796801,0.200256618062292,-0.962715458107014,0.335690337061799,1 +"56938",1860.68177033672,1.04288472322328,0.33487740303677,3.11422841244612,0.0018442665652605,1 +"10552",3881.74188704155,0.309304887291592,0.133192599499786,2.32223778538152,0.0202201354515505,1 +"10095",7348.66836775606,0.506841293175641,0.187914973778998,2.69718417315548,0.00699285828166409,1 +"10109",18148.7598978135,-0.206921701050685,0.141700722120902,-1.46027273505449,0.144215132239685,1 +"10094",5954.58116504069,0.553615408091546,0.173459147572432,3.19161840605939,0.00141478109229359,1 +"10093",8208.80387794631,0.164872830601787,0.123999035851057,1.32962994002491,0.183640228457673,1 +"10092",8188.49933346599,0.529776670843317,0.131729540511365,4.02169983123573,5.77796597987541e-05,0.70860974777192 +"81873",2361.81986904124,0.310339751467064,0.194170673791834,1.59828333190918,0.109979935210783,1 +"10776",7639.68358031856,-0.01113688343587,0.122306096482107,-0.0910574677485459,0.927446928007971,1 +"408",1690.12945978443,-1.40392158925677,0.239121200937071,-5.8711715387639,4.32726234495194e-09,5.30695453984906e-05 +"409",1645.80578613897,0.0957031525639573,0.218871583359844,0.437257094296308,0.661924907773892,1 +"92714",2176.47374713565,0.676744142962051,0.255341193747723,2.65035238940205,0.00804078550765773,1 +"27106",1390.56244711391,-0.353069436358153,0.17505446720208,-2.01691189034653,0.0437047090057614,1 +"57561",5222.03545310897,-0.601663288908447,0.279547352439821,-2.15227682772624,0.0313755577605153,1 +"91947",1884.33748808919,-0.803435920519334,0.327152550988806,-2.45584488976467,0.0140553809412106,1 +"410",2094.24299225899,-0.318455958720532,0.173622153440638,-1.83418966076477,0.066625845659512,1 +"411",785.357261826428,-0.430252522454776,0.179395033026295,-2.39835248053781,0.0164690087434282,1 +"414",3137.26338211069,0.0116300984352028,0.250640271006961,0.0464015554582599,0.962990196773651,1 +"22901",185.295957010718,-0.331925235204545,0.235180243174004,-1.41136530316011,0.158136928191065,1 +"340075",2628.17395966867,-0.207228786193455,0.347634633280767,-0.596110877209656,0.551101158171698,1 +"79642",273.720079241707,-1.26625774707128,0.322353655242518,-3.92816314156149,8.5597139835276e-05,1 +"153642",264.364061644514,-0.0516388663864354,0.17456683751552,-0.2958114331529,0.767374091162669,1 +"9048",188.31770784428,1.00783594478022,0.414634637488069,2.43066028175039,0.0150713383087422,1 +"64801",791.1763668847,0.19184781326541,0.131909104953617,1.4543940187667,0.145837097276018,1 +"421",722.663502897072,0.479563301521922,0.25758682283547,1.86175401459972,0.0626377710886414,1 +"427",10048.5280064286,-0.533114159840842,0.256803937415349,-2.0759578891448,0.0378978459012227,1 +"50807",2258.76163493591,0.259454319380255,0.148980079174712,1.74153699486217,0.0815894944085407,1 +"8853",2381.61263324667,0.592405699301274,0.165593605645151,3.57746723971175,0.00034693968572317,1 +"55616",1495.30761816384,-0.339220094322539,0.255683858117855,-1.32671689491708,0.184602350057588,1 +"51665",1292.83479412226,-1.13489772269482,0.244443388921006,-4.64278345879738,3.43746562940759e-06,0.0421570784790546 +"79754",1458.78411617799,0.122711145752093,0.235596758714107,0.520852436263781,0.602469571515591,1 +"51676",1556.6430004943,-4.3211760272653,0.368887775150104,-11.7140667659886,1.07973609543508e-31,1.32418834744158e-27 +"51130",134.986626114269,0.276683621968886,0.130020532036573,2.12799946004727,0.0333371283482662,1 +"140459",1363.34261191141,0.179397693807138,0.139557448763798,1.28547559013328,0.198626141343554,1 +"140460",767.508660470292,0.346908546292647,0.134568382041043,2.57793503221908,0.0099392683072029,1 +"140461",1304.77949377602,-0.338858852419941,0.188563377297909,-1.79705549017921,0.0723268108797357,1 +"51008",1023.02332861412,-0.0102075694952911,0.135964043871848,-0.0750755067634804,0.940154635586481,1 +"84164",5759.92631312384,0.243588667367076,0.22426851557813,1.08614741012194,0.277413779870646,1 +"10973",2883.3227332952,0.407734735097135,0.190800835606865,2.13696514378611,0.0326008267643115,1 +"430",137.467754065695,0.623327355587526,0.45805302891811,1.36081919829191,0.173570833321593,1 +"25842",1068.83849199069,0.0662780202672591,0.157320536393573,0.421292869873324,0.673541236129809,1 +"55723",995.478132643083,2.90458918495929,0.383426361391973,7.57535077769459,3.58158573114046e-14,4.39245674067066e-10 +"55870",4352.61801326739,-0.351906069321239,0.195251652576915,-1.80232056772279,0.0714949843799531,1 +"9070",2768.4860726997,-0.0249751650611675,0.211427272799502,-0.118126506247146,0.90596742153582,1 +"435",1678.56357657776,0.381108405662527,0.179643040637005,2.12147603553768,0.0338817625496146,1 +"8623",469.472976504472,-0.920822128797681,0.167127937638393,-5.50968402895044,3.59478392534265e-08,0.000440864300604023 +"440",1524.37887635779,0.427461928193855,0.260208684355328,1.64276580258226,0.100431398215935,1 +"54529",1627.95736865789,-0.21520879824172,0.0926384457711404,-2.32310458633325,0.0201735346643465,1 +"374569",450.628167652374,-1.03328993535908,0.468730834159734,-2.20444199539678,0.0274932750090409,1 +"444",11166.3475011411,-0.211708209657912,0.27233854143279,-0.777371460330594,0.436939645429377,1 +"57168",277.370294783357,0.639839919760659,0.25223493734411,2.53668237436815,0.0111908436565465,1 +"259266",1091.66742949946,3.54177957395548,0.448948977259448,7.88904698163214,3.0450288173408e-15,3.73442334158676e-11 +"54829",974.308106611032,1.09264764525441,0.465812420452983,2.34568164625549,0.0189923216678749,1 +"79058",1511.2403079269,0.520641059995615,0.130228734306474,3.99789695237584,6.39077602005724e-05,0.78376477109982 +"80150",371.728715267593,0.0843023434162746,0.336451508548872,0.25056313101366,0.802151889693312,1 +"445",7107.455531805,-1.16014033952381,0.371639021668802,-3.12168602294328,0.00179818603214379,1 +"28990",405.486254025459,0.329951544454417,0.111003229869941,2.97244994439361,0.00295433378891751,1 +"23245",443.294595130111,-0.791949208492241,0.387862748242488,-2.04182848721817,0.0411685474234205,1 +"171023",3010.54783423686,-0.010754625037318,0.137134370051857,-0.0784239941690118,0.93749078771976,1 +"55252",1135.90111135619,0.228746536533305,0.187541104170341,1.21971413970954,0.222573259517093,1 +"84896",2163.31865897496,0.0289184011182385,0.102444849205681,0.282282626627506,0.777726806061496,1 +"29028",2182.41998734904,1.52207468860733,0.235576185685091,6.46107196353873,1.03963860558737e-10,1.27501278589235e-06 +"54454",984.872838743966,0.566393118286255,0.169148724318372,3.34849181138482,0.00081252681874012,1 +"55210",1863.08631302895,1.02516150028366,0.140922094900028,7.2746683265738,3.47272612240567e-13,4.25895131651831e-09 +"83858",1375.49968932743,0.99741833047208,0.211007480604691,4.72693350782516,2.2793586297237e-06,0.0279540542349315 +"219293",221.224967980371,0.167125722267362,0.234555024694069,0.712522456022183,0.47614131085647,1 +"79915",343.122272768534,2.02901495803195,0.208955047879324,9.71029404948256,2.72549692019929e-22,3.3425494229324e-18 +"79969",708.703292147835,0.837302390630323,0.194559936547126,4.30357043433508,1.68067383329119e-05,0.206117838914831 +"11101",639.871896659613,-0.543149734167735,0.218946572328756,-2.48074097890958,0.0131109607749402,1 +"466",916.593832362528,0.153910270310018,0.114267179437274,1.34693331075442,0.178001712048075,1 +"1386",1865.90349575605,-0.0205722753685541,0.128396270735557,-0.160224866740284,0.872703941616011,1 +"467",19373.6957519428,-2.4589554906602,0.337866315035444,-7.27789478037264,3.39069617414282e-13,4.15834978796875e-09 +"468",13868.2861654298,-0.564763109790733,0.192411295815334,-2.93518687350228,0.00333346864940235,1 +"22809",2177.62844008701,0.163644581231645,0.209962054778176,0.779400741741335,0.435743687039179,1 +"22926",3841.3929710061,0.238482907385602,0.187823345448842,1.26971919713015,0.204184672124017,1 +"1388",5422.91816667964,0.289965503377844,0.161857770951262,1.79148336019749,0.0732157624841276,1 +"11016",1953.79296934113,-0.336192258923337,0.14264638276398,-2.35682288193452,0.0184320359337688,1 +"55729",1832.93759569179,0.331676985203305,0.138979739199911,2.38651322209069,0.0170089957279234,1 +"80063",626.27999238648,-0.604887545772008,0.270386698969139,-2.23712019887874,0.0252784851405239,1 +"83734",329.284411273612,0.0562300309694985,0.119788216466766,0.469412039247608,0.638775144529489,1 +"9140",1574.84652266263,-0.0576348441119964,0.123450322588248,-0.466866695069154,0.640595254788263,1 +"9776",3365.54731762421,-0.131753685575167,0.147020421340101,-0.896159080311584,0.370167806799038,1 +"22863",1232.67165515591,0.109933586266492,0.108185481401139,1.01615840538594,0.309553960126039,1 +"55054",1406.41164355423,-0.303275821360644,0.157703647762121,-1.92307423236083,0.0544707278975605,1 +"89849",738.828079180195,-0.542600740825543,0.219429203026245,-2.47278271689591,0.0134065626362498,1 +"23130",1991.1925822402,0.0354192093381945,0.129751787198933,0.272976658763786,0.784871158015146,1 +"55102",1528.55401248248,-0.228380960199806,0.168294028605365,-1.3570354343073,0.174769951822471,1 +"64422",1997.45648702818,0.0810643813879948,0.111494545504058,0.727070378389444,0.467182843597584,1 +"115201",637.860902642661,-0.21172039050331,0.150041101968813,-1.41108261486454,0.158220255553924,1 +"23192",2182.89873820598,-0.121645473944264,0.115465245843119,-1.05352457404839,0.292100637673463,1 +"84938",505.024899585916,-0.0258430654969866,0.141481305060033,-0.182660638350918,0.85506430211722,1 +"84971",1058.14725325112,0.137433592414596,0.198521342134953,0.69228623450052,0.488757593008887,1 +"9474",2143.09242114977,0.278494630456718,0.178939384487764,1.5563629619826,0.119621807317419,1 +"10533",1282.19156477096,0.20007019852379,0.12967489569437,1.54285991480829,0.122864768522793,1 +"79065",3366.92784358535,-0.0808514907179641,0.121388775900627,-0.666054090405789,0.50537652752495,1 +"471",3720.17841771471,0.301225985584305,0.186117570082867,1.61847151480747,0.105561020812359,1 +"51062",647.366086252976,-1.17327068080592,0.266405415864129,-4.40407968809579,1.06233890963182e-05,0.130285243877246 +"64225",2924.2665848301,0.0701675200505641,0.156353513191581,0.448774821993205,0.653594103337885,1 +"25923",1406.38873100077,0.242856415030502,0.25216172584041,0.963097846118815,0.335498422579644,1 +"472",1989.7399740722,-0.610023028416872,0.167783199371397,-3.63578135774222,0.000277139321964803,1 +"23300",3248.99817834438,-0.0256684932352812,0.149116269602066,-0.172137442170331,0.863329477486664,1 +"1822",10431.7964417861,-0.289673715987908,0.236558635553408,-1.22453240952393,0.220751447937235,1 +"84913",956.852650843405,-3.02672120574858,0.437071696268374,-6.92499933441147,4.35977571249266e-12,5.346828933801e-08 +"475",1661.95234768959,0.08237864308652,0.152734734765114,0.539357620342273,0.589640117385733,1 +"57194",280.92678991982,-0.500498825357828,0.271050325751836,-1.8465162289311,0.0648172851607988,1 +"23120",683.281729537503,1.31143836933492,0.639761638314176,2.04988591186973,0.0403755652937479,1 +"57205",1284.25529888781,-0.645801865883772,0.217653471778859,-2.96711033647063,0.00300613059051588,1 +"23250",1270.13902747437,0.525066794375122,0.196949624319997,2.66599540967903,0.00767607410569144,1 +"23200",4495.49401313952,0.325849248691456,0.2064868304808,1.57806310423151,0.114551113340726,1 +"286410",1470.9876847694,-0.401097438369238,0.189895632702177,-2.11219938374411,0.0346693513660421,1 +"57130",3660.60753499855,0.804394707793734,0.162052039492309,4.96380490065917,6.91253841891859e-07,0.00847753711696176 +"23400",2613.89773570622,0.894514997392645,0.184466366542519,4.84920375545241,1.23958043120579e-06,0.0152022144083078 +"79572",4499.16466341207,0.54226954571615,0.237798916743103,2.28037012591597,0.0225857458766891,1 +"476",27437.7243702572,0.252976205197967,0.251670535043215,1.00518801358501,0.314806325781164,1 +"477",3218.4861623182,-6.19812013189209,0.510112747193092,-12.1504905846744,5.70224007398403e-34,6.99322722673401e-30 +"481",6111.17794084378,-0.480058045249899,0.312744890745883,-1.53498285489167,0.124788039552279,1 +"482",241.403382510532,-2.92097311046568,0.312032732324237,-9.36111121646833,7.89024366222792e-21,9.67659482735632e-17 +"483",5050.12833430143,0.137285684789146,0.258386960807713,0.531318160792611,0.595198322629725,1 +"488",19553.9187879643,-0.307178658403343,0.144047387580644,-2.13248336927575,0.0329671302338839,1 +"489",2316.78521002647,-1.51477490533345,0.246654628078665,-6.14127907160271,8.18596204048837e-10,1.00392638464549e-05 +"490",3473.58387243123,-0.0973471060758574,0.233969921157329,-0.416066755907474,0.677361155405211,1 +"493",14871.201960224,-1.61016494339414,0.280674940157785,-5.73676061884602,9.65045031977691e-09,0.000118353122721744 +"27032",5583.68247449806,0.783714043766433,0.154317587033225,5.07857891529693,3.80268476992962e-07,0.00466361260184168 +"9914",700.717447070966,0.937883639829811,0.507712236217435,1.84727405196543,0.0647074316487559,1 +"537",8019.05053672516,0.372908517493125,0.196997439568266,1.89296124005662,0.058363024162814,1 +"10159",7252.92972290305,0.159216344741387,0.130860928408005,1.21668359439552,0.223724623334249,1 +"535",2226.04239609909,-0.438460066289838,0.151887573762796,-2.88674086646868,0.00389254675889133,1 +"23545",929.569571895482,0.151162570718596,0.17470359657317,0.865251624372173,0.386900696155824,1 +"533",5193.84790365679,0.713265457857679,0.140539575298949,5.07519292228154,3.87103042812616e-07,0.00474743171705392 +"527",5817.92942853347,-0.0545630439686554,0.209668327761918,-0.260235031924386,0.794682483328445,1 +"9114",4834.52015586898,-0.204391630835313,0.132748977604656,-1.53968516009229,0.123637115855138,1 +"8992",6212.10030129954,-0.131124433716945,0.145758495695899,-0.899600624244328,0.368332824884723,1 +"155066",1527.27514550558,0.490673279562133,0.272391688692224,1.80135187647574,0.0716474360731868,1 +"523",3380.50262729572,0.713135262158352,0.187118624732957,3.81113992888784,0.000138327434051352,1 +"526",3299.20489780116,-0.118660643395503,0.110247065737852,-1.07631566066037,0.281786107045699,1 +"528",2949.23446339288,0.407784490285159,0.133593141293976,3.05243582369111,0.00226992263520515,1 +"51382",2842.53505766199,-0.131502426425895,0.167621773294516,-0.784518764127629,0.432735776070564,1 +"529",3613.47324307009,-0.201932048065398,0.141767680619306,-1.424387047762,0.154334461508546,1 +"90423",136.448677082194,0.48699950851083,0.213491267220817,2.28112144749752,0.0225412613310891,1 +"9296",4287.92375676481,0.374018146896875,0.147980666475885,2.52747981073477,0.0114884429094503,1 +"9550",4874.15407674673,0.138246487586192,0.174618650929917,0.791705163509006,0.428532610859432,1 +"51606",2712.04548809822,-0.141362105474636,0.118884595802722,-1.18906999279548,0.2344121252958,1 +"538",1156.62194310107,-0.254060381313781,0.214166684876008,-1.18627405313235,0.23551408991965,1 +"540",288.688448992374,-0.12779838295623,0.245600445134005,-0.520350779032591,0.602819109662513,1 +"10396",535.264275176358,-1.22451624996801,0.302073511808306,-4.05370283093568,5.04132497971956e-05,0.618268095512807 +"5205",5870.54111483134,-0.196591798242265,0.331297380676771,-0.593399796402462,0.552913625118501,1 +"57198",1755.85159522671,-1.53961341922177,0.309216278790395,-4.97908268363002,6.38863470428004e-07,0.00783502160132904 +"79895",222.955320459628,-1.78698889549916,0.251284732544148,-7.11141053977566,1.14862904999653e-12,1.40867866691575e-08 +"158381",111.570849112542,-0.137294208753832,0.127932488698998,-1.07317703384056,0.28319169296642,1 +"10079",4712.24636363599,0.14685192924881,0.16450912439297,0.892667381160078,0.372035323372597,1 +"374868",915.745945580461,-0.616522472734728,0.13092637525697,-4.70892493223519,2.4902675653558e-06,0.0305406414215235 +"64756",1750.23964304761,-0.296824744868059,0.130870470843351,-2.26808036186675,0.0233243090764921,1 +"91647",562.227717429307,0.183908530387678,0.162625654503268,1.13087034729802,0.258109665608442,1 +"545",1474.32682383433,0.561443188057988,0.190343030813941,2.9496387950594,0.00318145636928838,1 +"84126",633.871701312314,0.0833799037520647,0.0976114696336691,0.854201909519294,0.392993125356853,1 +"8455",3576.47591762904,0.653199460687932,0.141072536164114,4.63023830469769,3.6524513257353e-06,0.0447936630588177 +"546",3791.22827106716,-0.356146528494565,0.146158570291674,-2.4367132750672,0.0148214263510341,1 +"6310",2090.81369888589,-1.03575645138718,0.165175309036123,-6.27064939324959,3.59545392009292e-10,4.40946468760196e-06 +"25814",5724.84723267346,0.0123616618131201,0.11885573240468,0.104005600428518,0.917164904177531,1 +"342371",2339.0231520194,-0.294532867472686,0.137744564473118,-2.13825401096075,0.0324961329020382,1 +"6311",1679.6837638837,0.0190045209079453,0.126733348898395,0.149956748347127,0.88079873913637,1 +"11273",5354.92204040063,0.613257464989672,0.126365756207685,4.85303521613695,1.21586089631093e-06,0.0149113180323573 +"4287",1121.92743805316,-0.0475181038762588,0.10196837889892,-0.466008231074879,0.641209608849573,1 +"6314",1414.64261484179,-0.523076862220727,0.150771809407052,-3.46932801481828,0.000521762005676736,1 +"222255",416.955618738442,-0.564074363588678,0.120673725695625,-4.67437596988959,2.94848758689543e-06,0.0361602517656856 +"127002",419.055017726412,1.04991254717927,0.240253468334237,4.37002035582954,1.24234954888865e-05,0.152361748675704 +"56970",3872.33416068374,0.389398073065503,0.114922315160203,3.3883591060855,0.000703121420860066,1 +"552889",5539.88322438027,0.480109926243371,0.128794741217248,3.72771373819938,0.00019322467192769,1 +"549",568.029979880516,-0.47649718249873,0.229698324886623,-2.07444779030898,0.0380377428302697,1 +"550",7296.10001044716,0.861045326019267,0.143017269481101,6.02056890851948,1.73805092355318e-09,2.13154565264562e-05 +"6790",823.50741551574,2.77315148537237,0.293057552483446,9.46282210395864,2.99742067207191e-21,3.67603671222899e-17 +"54998",4135.32064743926,0.409229008160446,0.136936714026048,2.98845354272633,0.00280393124242661,1 +"9212",939.799422205543,3.14428206420479,0.435100121167498,7.22657133665646,4.95340484754291e-13,6.07485570502662e-09 +"26053",1808.87717479296,-0.48228389888885,0.329300063491127,-1.46457274795468,0.1430375217108,1 +"57099",723.234415207758,-0.17996284241821,0.184057298041386,-0.977754451104374,0.328195783819057,1 +"10677",162.610536230428,-0.100263820733604,0.232419412147771,-0.43139176632052,0.666183535721361,1 +"23080",876.810192592937,0.833207013860622,0.147630193639751,5.64387943494693,1.66260523447844e-08,0.000203901905956436 +"60370",1835.19196908228,-1.36838819968643,0.32103636851376,-4.26240866734628,2.02235163991668e-05,0.248021205119382 +"8312",1857.94180531344,-0.103816799089682,0.143583065715843,-0.723043477112684,0.469653173533196,1 +"8313",702.105544177751,-1.01271548319474,0.340014383120836,-2.97844895236338,0.00289711283780002,1 +"558",3455.10474933107,-1.67269886388734,0.246174694539573,-6.79476364138823,1.08490247184049e-11,1.33052439146518e-07 +"563",224.79787430267,-2.55897415563982,0.552801844036297,-4.62909844322408,3.67261156730502e-06,0.0450409082614288 +"64343",1556.24196071144,-0.230810149917036,0.155208325526891,-1.48709902728154,0.13698865841778,1 +"51582",8633.72960464922,0.112962451108426,0.145136062220648,0.778321041511319,0.436379773946532,1 +"567",97649.4114689661,-0.222228816670606,0.233510820924431,-0.951685304307691,0.341256604523416,1 +"8706",1063.90451566782,-0.00449552452945163,0.280467061643454,-0.0160287076247356,0.987211489261841,1 +"148789",1816.24068116479,-0.474484899968154,0.175346238310996,-2.70598847479466,0.00681014094301699,1 +"8705",781.71107432907,-0.740473850643495,0.273424342261136,-2.70814896918102,0.00676596449916887,1 +"126792",1127.13535260973,0.572071172321806,0.129646369560961,4.41255065035056,1.02159884412253e-05,0.125288882243188 +"26229",1259.56778991868,0.523843250144959,0.116565518338128,4.49398121857458,6.9903796381738e-06,0.0857300158825635 +"10678",1567.40695737792,0.227908028852412,0.234731397013443,0.970931165375204,0.331582557424554,1 +"10331",2521.69056192624,1.09888722926816,0.627514663876987,1.75117378529274,0.0799159795591555,1 +"84002",4199.28052649452,0.197548501920386,0.439359084361763,0.449628809217308,0.652978111495147,1 +"93010",747.241797124423,-0.171735938269051,0.434005921154273,-0.395699528274421,0.692326703541427,1 +"374907",428.337372010742,-0.721720395217935,0.33812851866512,-2.13445585148268,0.0328054838771333,1 +"84752",852.439953952019,0.298131553479752,0.211688681135515,1.40834905239406,0.159027737389895,1 +"146712",233.404311156885,0.589045492804679,0.153175464548277,3.8455603483352,0.000120277256460525,1 +"283358",413.095733987846,-0.289853670567151,0.488315924359806,-0.5935781655025,0.552794288400518,1 +"338707",776.92906381966,2.45789913907385,0.366341605921202,6.70930928768852,1.95547803591089e-11,2.39819826324111e-07 +"2683",10541.1368581554,0.0849864382593535,0.291694012333987,0.291354757608273,0.770780012438738,1 +"8704",3264.07237318638,0.0992150573881457,0.20199684623156,0.491171318954208,0.623305282566051,1 +"8703",2840.49559766613,0.948808359819107,0.212290552579923,4.46938569940318,7.84445648551704e-06,0.096204414338381 +"8702",3976.36457857306,0.993093456591565,0.32350342073554,3.06980820893207,0.00214196271749172,1 +"9334",7082.69344508729,-0.3714112039424,0.228530125624354,-1.62521769472488,0.104116181396448,1 +"9331",232.418633983012,-0.515943637584811,0.348484750671889,-1.48053433210508,0.138730705508767,1 +"11285",1239.06043723489,0.262343454988327,0.141323644184648,1.85633095227546,0.0634063998660164,1 +"27077",384.973550527201,0.806031147457816,0.203910223901078,3.95287265168638,7.72185382984255e-05,0.94700815369189 +"80776",279.744336016233,-0.0191567686571333,0.161189053366946,-0.118846585776039,0.905396900091083,1 +"79870",412.771873070925,-0.374320263012129,0.442040407825123,-0.846801008201529,0.397106046196612,1 +"29086",3277.02274443466,0.255843183041772,0.103673119991066,2.46778705091367,0.0135951169800168,1 +"23621",1933.27374482922,-0.580697733051244,0.203390809579802,-2.85508344379446,0.00430255229103486,1 +"25825",2819.06002766316,-0.0279832122681504,0.233828532392035,-0.119674070490397,0.904741341461788,1 +"571",2886.17354486738,0.159865454042254,0.236041475899564,0.677276963436191,0.498230244195492,1 +"60468",186.071776424149,-1.02166276623522,0.369567122071871,-2.76448500209534,0.00570127280082317,1 +"572",2175.95605028392,0.103671129456995,0.136465922510158,0.759685110759266,0.447442830806167,1 +"573",6255.79220412631,-0.631893421076047,0.223662526797085,-2.82520916724385,0.00472497603821221,1 +"9532",2283.67112407367,-2.13166739461716,0.293013492009832,-7.27498034304043,3.46470898680674e-13,4.24911910141979e-09 +"9531",6925.43255395747,-1.27352100534255,0.273270036212433,-4.66030239902536,3.1574515523678e-06,0.0387229858382387 +"9530",1305.52291347288,0.725680329659999,0.218384064319322,3.32295459342174,0.00089069411530322,1 +"9529",2733.12090321814,-0.245901369701005,0.134184852562053,-1.83255684234022,0.0668685012379799,1 +"7917",11276.3021346215,0.137729052292408,0.130176298046937,1.05801942718288,0.290046585566863,1 +"57597",1213.68737369325,-1.02827006416221,0.296319130749586,-3.47014403545608,0.000520179333677173,1 +"22893",1909.62234100772,-0.330556410966303,0.129986219365833,-2.54301119440966,0.0109901708024345,1 +"10458",3728.5086621442,-0.640835470314906,0.324290153035364,-1.97611757346521,0.0481414625137189,1 +"55971",3054.8372335296,1.18806105877103,0.385308349666649,3.0834033568151,0.00204647568018287,1 +"8938",462.717580917465,-0.247405795311006,0.430462911331218,-0.574743581382881,0.565464728230957,1 +"578",1402.02312918388,0.368455291315113,0.214619731584903,1.71678199667002,0.0860190115989002,1 +"25805",2300.75229256742,-1.02796467363137,0.395402702628921,-2.59979172321464,0.00932803561397689,1 +"8815",5046.60812535324,0.504707368399735,0.145864620976793,3.4601081812706,0.000539958412300167,1 +"55024",415.218408542686,-1.41259724591431,0.40601563049571,-3.47916961765646,0.00050297012736126,1 +"54971",663.498195727346,0.383947461366681,0.120652857808822,3.18224920933956,0.00146136015923958,1 +"8314",3553.7330032164,-0.249422447119313,0.11514487095693,-2.16616202742203,0.0302988077000067,1 +"580",227.693659814758,0.287234658298887,0.246183895195955,1.16674836942626,0.243312003021805,1 +"10409",4151.27181787599,0.173530976526793,0.312847127869125,0.554682977941186,0.579111521199266,1 +"10538",889.826736744647,0.493123504568052,0.43972348906104,1.12143998861884,0.262100622569377,1 +"116071",330.119856082948,-0.457133304923938,0.390755438630558,-1.16987061402397,0.242053041204423,1 +"581",3050.93654872487,0.655792074253043,0.166377094466134,3.94160071347157,8.09396359568832e-05,0.992643695375216 +"11177",3279.68216863266,0.636176510607369,0.241337100771526,2.63604936237979,0.0083877528683104,1 +"9031",5529.95713721766,0.306127140134928,0.110493287042513,2.77054967164787,0.00559617639462871,1 +"11176",5114.47888748176,0.0574116147446549,0.111109861411472,0.516710344296471,0.605358373927089,1 +"29994",1902.69261479942,-0.542156854206894,0.158170520208542,-3.42767320668909,0.000608777810863122,1 +"27113",521.623166203118,0.836559022096622,0.254690080075895,3.28461564677877,0.0010212157832372,1 +"92482",341.082475243543,-0.34653430085466,0.142513024910642,-2.43159740011092,0.0150324059908716,1 +"582",1388.99713322914,-0.769192805632332,0.181520915927093,-4.23748856545697,2.2603392728437e-05,0.277208008421551 +"79738",608.521334820473,0.373265036963037,0.205916982815139,1.81269670845039,0.0698786124491908,1 +"166379",161.494867620898,0.167812264164696,0.192703630652419,0.870830837989661,0.383846524610797,1 +"583",1627.94701098124,-0.325969511442098,0.129508593834283,-2.51697205406464,0.011836821739686,1 +"585",674.057435451484,0.134457612068521,0.208275969137541,0.645574295610301,0.518555088494086,1 +"129880",390.590214603134,-0.374146257836792,0.237099407346652,-1.57801431063794,0.114562322201334,1 +"55212",599.270883985768,-0.325125818745589,0.171822147710381,-1.89222299382273,0.0584612759719961,1 +"27241",735.932882937446,-0.050190263994718,0.15922290782983,-0.315220119257958,0.752594530717437,1 +"56987",3616.77011483157,-0.230414731541749,0.187218286017711,-1.23072770530519,0.218424722381083,1 +"4059",8460.58736862156,-1.02301245148511,0.3319114145596,-3.08218520547872,0.00205486944019122,1 +"63827",113.899606907297,1.03731826615548,0.378729401767538,2.73894305885493,0.00616370476389482,1 +"55973",2474.06994063265,-0.428288430715351,0.150475943649021,-2.84622525255143,0.00442408880133786,1 +"10134",15804.1337914873,0.423485540127189,0.205679723082208,2.05895619549199,0.0394984349837006,1 +"9564",4172.33836229266,-0.362431285216701,0.164239698697377,-2.20672156665671,0.0273335175717338,1 +"8412",1415.76667284764,0.0784387079236805,0.232645474617499,0.337159826782122,0.735996419613284,1 +"8537",3596.8666506056,-0.0365839316721058,0.561257210979247,-0.0651821142899462,0.94802900157032,1 +"10286",1900.43349332482,-0.099047040833799,0.142558546313096,-0.694781501322731,0.487192242813481,1 +"54828",1661.60646361872,-0.108949835310805,0.136408034223241,-0.798705413000098,0.424461247335735,1 +"55653",600.366479155312,0.395037462809386,0.247098193362288,1.59870639859432,0.109885855203973,1 +"586",1316.53125531178,0.6413163106254,0.328426318311939,1.95269463763339,0.0508557894858043,1 +"587",4575.62995206298,0.250008806252547,0.29815566470079,0.838517713568983,0.401740003494388,1 +"56647",2242.3207025185,0.0469022207195235,0.128853378521397,0.363996825366401,0.715860380005397,1 +"144233",218.196803759525,0.181042093489516,0.209267162705869,0.865124232338236,0.386970605742251,1 +"593",2494.39250676435,-0.00505889225487278,0.150413627417092,-0.0336332042630995,0.973169644066066,1 +"594",1068.54570336757,-0.0339943609797507,0.169608743467851,-0.200428116408953,0.841145771878175,1 +"10295",2521.47884643788,0.109863805944803,0.111395191728722,0.986252676079163,0.324009136061911,1 +"8915",1978.76229049819,-0.883559019853048,0.302937404334428,-2.91663890695268,0.00353825133504961,1 +"53335",487.736107935395,0.276896827414866,0.354565522262125,0.780946849113434,0.434833756094986,1 +"64919",552.028834222196,0.503822118970429,0.46195066996473,1.09064052014233,0.275431092449529,1 +"596",862.50960047004,-1.72897365728921,0.243035813442689,-7.11406945666847,1.12670403796162e-12,1.38178983215613e-08 +"597",204.844414691716,-0.510931792548143,0.368131188845558,-1.38790683329604,0.165165416800329,1 +"598",5628.30890911821,0.274071798391269,0.196675810610037,1.39352062432675,0.163462412732136,1 +"10018",1596.06815571482,0.751148607779633,0.228812531627281,3.2828123636305,0.0010277705031833,1 +"83596",893.285267256596,0.964241405025385,0.193116442190195,4.99305700793582,5.94310057502835e-07,0.00728861854521477 +"23786",2687.57375613413,-0.289785763586403,0.138058738720435,-2.0990034116798,0.0358165999875809,1 +"79370",198.666546567266,0.582378987318198,0.537920817152433,1.08264816818414,0.278964618460564,1 +"599",3678.42029936198,-1.23236989847611,0.246628260260322,-4.99687220424504,5.82676542659127e-07,0.00714594511917154 +"602",4741.16849904483,-0.827970684201264,0.305967079202457,-2.70607768116582,0.00680831178894808,1 +"604",5025.27186034839,-0.316921132088885,0.180056908419492,-1.76011648134339,0.0783880588703833,1 +"255877",560.961243140474,-1.19897600409816,0.245454252391872,-4.8847228858923,1.0357441957037e-06,0.0127023668161102 +"605",1196.76333810033,0.637921192982629,0.135160432434174,4.71973329393799,2.36154066761423e-06,0.0289619347476209 +"9275",2764.38050646675,-0.617187732870539,0.16922382921133,-3.64716798897029,0.000265146584818691,1 +"9274",2511.15293884793,0.213878591558484,0.156383172996816,1.36765732181965,0.17141936474898,1 +"607",1564.62270402362,0.209475672875672,0.194919406064697,1.07467838685155,0.282518743468842,1 +"283149",4136.9683422,-0.348963515464666,0.118919797414364,-2.93444424773731,0.00334145576642632,1 +"9774",6777.49791213313,-0.110581475432153,0.108454188390322,-1.01961461399882,0.307911271338921,1 +"83875",150.200176417606,-2.9134657751825,0.338674138493077,-8.60256347929576,7.7955011306747e-18,9.56040258665945e-14 +"54880",2212.29476948524,-0.0731393636741929,0.192392455527548,-0.380157129725497,0.703828780019928,1 +"63035",997.774151857566,0.118043191204417,0.205770487667984,0.573664340995696,0.566194963119677,1 +"613",3553.14944968437,0.121408079120503,0.151365013336922,0.8020881209204,0.422501986000703,1 +"617",849.249818872928,-0.0345538535760871,0.156185293588938,-0.221236281483895,0.824908460558845,1 +"622",1421.35132858992,0.696165783571767,0.276088781554025,2.52152868962386,0.011684614673849,1 +"56898",514.575168073179,-0.806759439790091,0.23065004422417,-3.49776408022708,0.000469175961620504,1 +"623",475.321335060945,-3.51458498247948,0.431729334584763,-8.14071387078619,3.92954041796992e-16,4.81918836859831e-12 +"624",2550.10195997067,-2.48170860060441,0.295630905899049,-8.39461825906612,4.67410357767348e-17,5.73232062765876e-13 +"627",191.677075659771,-2.59234934931714,0.366982488396185,-7.06395926586694,1.61824200171101e-12,1.98461199089838e-08 +"55814",1504.05278339501,-0.156429031139084,0.18288607770316,-0.855335917876605,0.392365208641359,1 +"8678",2918.23741936575,-0.00644554650410849,0.123729290812911,-0.052093942038791,0.958453839966571,1 +"57673",322.321661697084,1.01761202800153,0.212968854235995,4.7782199498237,1.76853863929464e-06,0.0216893578723094 +"79656",316.044988771438,-0.476105696561803,0.350486702938991,-1.35841300845207,0.174332668837416,1 +"221336",136.813450543371,-1.0012098435524,0.259785696035018,-3.85398372132637,0.000116211325375367,1 +"222389",257.484705449372,-0.640158611000264,0.362037169230718,-1.76821239752957,0.0770254023868694,1 +"10282",721.0224424717,0.515849097456157,0.133393741447682,3.86711619194276,0.000110129963352934,1 +"51272",3111.30513034059,-0.241174642853629,0.14825041371742,-1.62680586722228,0.103778335141269,1 +"84707",596.975921940073,0.863713512848747,0.407620856621175,2.11891393391444,0.0340977411572351,1 +"56271",2089.6472269448,-1.11835558626199,0.259883243823815,-4.30330008894368,1.68272683245358e-05,0.206369618732107 +"51283",2348.88883765747,0.185702009228121,0.106734355077079,1.73985226306952,0.0818849627360505,1 +"631",132.354232316438,-0.286207256384124,0.232633446479122,-1.23029280920622,0.218587476087484,1 +"633",13341.314483475,0.822044722279246,0.273249331974533,3.0084052405144,0.00262622687943148,1 +"80823",376.95091943241,0.192248691595916,0.275726833346909,0.697243316010656,0.485650535208284,1 +"8553",21613.5972200688,-0.522148477295422,0.329383613279671,-1.58522906496893,0.112914299075313,1 +"79365",3063.47317091063,0.059320207433683,0.366563911008581,0.161827734952049,0.871441511578183,1 +"635",1825.897666177,-0.843940668640298,0.648401560171003,-1.30157100241666,0.193063077903572,1 +"23743",537.957828488814,-4.26282629758097,0.378959698237799,-11.2487589508952,2.3487351927012e-29,2.88048884032876e-25 +"80114",224.704367674207,-0.196881327510083,0.332453330477263,-0.592207415180484,0.553711704577365,1 +"636",301.037080128218,0.338710479476569,0.198873686463777,1.70314376677611,0.0885411671174652,1 +"23299",3511.03824144484,-0.428072805119428,0.232233081690249,-1.84328951759934,0.0652867508038424,1 +"637",1929.76337663595,1.0833882761987,0.163931966809279,6.60876763260659,3.87532436129489e-11,4.75269779669206e-07 +"638",282.250808795262,0.64446153557937,0.528991452918204,1.21828345623388,0.223116274666036,1 +"274",3560.87262402044,-2.67801622814965,0.32080799338427,-8.34772288526449,6.95916191561491e-17,8.53471617331012e-13 +"51411",223.654119041135,-0.815437745131948,0.342100587243135,-2.38361983445649,0.0171433019452887,1 +"55909",1175.09492546807,-0.407316934345942,0.175012002991778,-2.32736570853988,0.0199458092524973,1 +"329",2409.0995986008,-0.02544767230368,0.177436672446693,-0.143418335977447,0.885959802652103,1 +"330",1605.09738682592,-1.79403995045632,0.288558712690157,-6.21724408780091,5.05962392257793e-10,6.20512277864957e-06 +"332",2071.00937371755,3.44731293851646,0.421742757895318,8.17397068231846,2.9840235885013e-16,3.659606528938e-12 +"57448",4816.41636970175,0.18485260740937,0.159276909379294,1.1605737964765,0.245815266755844,1 +"54841",638.211806951815,0.23758151986871,0.145257132240996,1.63559280156061,0.101924837928319,1 +"10904",5910.28178421741,0.400364430498753,0.188497873084784,2.12397319899028,0.0336723847223893,1 +"641",432.035273324208,2.35513624828451,0.284491462253637,8.27840747707503,1.24833434286358e-16,1.53095723808789e-12 +"642",2213.19660541025,0.191849029014084,0.139713724503268,1.37315807517247,0.169703209994311,1 +"29760",681.74992987807,-0.469764501925395,0.424168855988258,-1.10749409178311,0.268080365316715,1 +"2647",1253.00909179665,-0.201082574812511,0.156201955630658,-1.28732431038171,0.197981273600856,1 +"282991",1540.83464607474,0.502568130097729,0.222519304418302,2.25853721505878,0.0239121871210094,1 +"388552",658.281482845875,0.786544395769781,0.199756088363024,3.93752401849381,8.23266936958214e-05,1 +"644",1946.54328817873,-0.261078905823671,0.172174672112327,-1.51636069707944,0.1294281714812,1 +"645",3453.53334304946,-0.229277735860916,0.196505979552129,-1.16677231086545,0.243302331800342,1 +"8548",725.307969826594,-0.286333100944499,0.174915749784936,-1.63697723787912,0.101635225726212,1 +"90427",1102.13663315529,0.866959691670132,0.245592871484661,3.53006863118289,0.000415451881822822,1 +"649",2026.32000573626,0.200430652504973,0.148453357448899,1.35012542625697,0.176975753720057,1 +"650",2309.67141643036,-1.33255772597948,0.494359583216003,-2.69552320056319,0.00702781834542344,1 +"55589",520.842633526846,-0.091291593649577,0.231673632575636,-0.394052584381921,0.693542216755669,1 +"651",2090.57126080481,0.608467378641618,0.62247248419689,0.977500843955631,0.328321260150894,1 +"652",843.564252423173,-1.19452623585472,0.355225994493902,-3.36272191328956,0.000771780668697143,1 +"653",346.241396519228,-4.65654297551899,0.516818110749192,-9.01002282750648,2.06013605683772e-19,2.52655086010578e-15 +"654",193.335291967643,-0.440959940264972,0.295359202321529,-1.49296157627397,0.135447245098603,1 +"655",1830.28962208135,-1.28363163329154,0.488427181254472,-2.62809213441944,0.00858652558520454,1 +"353500",229.804908391762,1.45473425006319,0.235956930869754,6.16525331424229,7.0370395556042e-10,8.63022531099299e-06 +"656",336.729972849685,1.92808361948219,0.290430650925394,6.63870570595346,3.16449491680744e-11,3.88093656597264e-07 +"657",885.181066031484,-0.757488032084783,0.190911950035256,-3.9677350314891,7.25589411986597e-05,0.889862854860362 +"659",5158.51807149625,-0.376420386380276,0.167459338117308,-2.24783156682841,0.0245869321733524,1 +"9790",3066.40249803355,0.194589530009728,0.131077175581566,1.48454167666009,0.137665275163172,1 +"729096",95.5013251446521,0.159235676310291,0.181960690800435,0.875110308769556,0.38151388849738,1 +"660",108.449741350868,-2.80299933230963,0.281611961691307,-9.95341005927218,2.43686823398791e-23,2.98857520216277e-19 +"54796",1071.95624568345,-1.99555064123469,0.370470768608107,-5.38652657733877,7.1832311692132e-08,0.000880951470592307 +"662",419.738901130893,0.239452621081393,0.107991811133499,2.21732202255023,0.0266010940320518,1 +"663",2431.74725644661,-0.31327324150227,0.11756228256698,-2.66474276155523,0.00770472337542624,1 +"664",690.227746873221,-0.0500532646606406,0.265358686388018,-0.18862493382806,0.85038678923451,1 +"665",5291.25766354492,-0.319172358060165,0.15421751982114,-2.06962450459804,0.0384875214920697,1 +"149428",1058.45405238469,0.789914694395741,0.589673912792195,1.3395788371498,0.180382307870049,1 +"91653",1635.26455893736,-2.47209318396187,0.404275228995739,-6.1148767143186,9.66316395515425e-10,1.18509042746012e-05 +"91272",1621.43204408223,0.248295146350921,0.116616490839774,2.12915981747442,0.0332410401434633,1 +"666",2893.23684769053,-0.908705814964998,0.229858391652457,-3.95332886666565,7.70713922836946e-05,0.945203554967231 +"51027",597.437622142316,0.700979669981968,0.221075857946165,3.17076534947866,0.00152037902709221,1 +"388962",521.444877861287,0.702484965153179,0.200844375182403,3.49765814708625,0.000469362340308789,1 +"100507171",179.072403755029,-0.880661403098265,0.389146115965749,-2.26306101221829,0.0236319284962959,1 +"23246",305.582655169193,0.847988249423235,0.196216589935121,4.32169496831855,1.54835147414865e-05,0.18988982478959 +"79866",364.913712225053,1.67278329464153,0.203523309690822,8.21912387914044,2.04995209582647e-16,2.51406125032159e-12 +"669",1647.5205936775,0.563337341197297,0.24118901217282,2.33566751703285,0.0195085767093875,1 +"670",840.808458263969,0.292468397236521,0.148561622305682,1.96866722843626,0.0489913169330028,1 +"10380",1599.1094619367,0.478594888837092,0.148981710481407,3.21244055589509,0.00131612381579366,1 +"2186",3928.23997778961,0.253344023489078,0.115454014045181,2.19432841364818,0.0282118081928873,1 +"673",340.770542719827,0.209220819669182,0.21979698802096,0.951882105178028,0.341156775900601,1 +"8315",1289.89305149309,0.292774839308024,0.0807149367551811,3.62726963654878,0.000286434131941902,1 +"221927",2463.07595623385,0.330138971377963,0.10689239710672,3.08851686662389,0.00201158274682282,1 +"672",865.197465569317,1.69205107597786,0.212214837832787,7.97329297638979,1.54501322798588e-15,1.89480422280188e-11 +"675",386.880710751424,2.21523453166659,0.313763684577114,7.06020052847179,1.66262495221564e-12,2.03904324139726e-08 +"79184",1064.90937792638,0.125530561679332,0.19177190285733,0.654582656838533,0.512736493318694,1 +"23774",2287.0191787685,-0.104453261204765,0.0807855688798449,-1.29296930940873,0.19602167401525,1 +"6046",11994.5183960185,-0.0338959477447282,0.117474006725164,-0.288539981649125,0.77293343028664,1 +"8019",1719.67036663725,0.0883450169306435,0.18596896042928,0.475052485784257,0.634749563731807,1 +"23476",4241.97282437485,0.100082243182584,0.134027039837288,0.74673172894131,0.455225513195011,1 +"29117",1310.81673258381,0.202514540814038,0.124967401555667,1.62053894290047,0.105116555955418,1 +"10902",2048.49821239106,0.165879372782152,0.149879249436838,1.10675342587738,0.268400549626474,1 +"65980",2146.17440436374,-0.061696079649758,0.178100855073351,-0.346410912088819,0.729033925542242,1 +"2972",1734.39585479937,0.239459768829484,0.136416911942736,1.75535251032513,0.0791990297862756,1 +"55290",1072.03788960894,0.544479371229041,0.258280687677425,2.1080916894145,0.0350230591636234,1 +"25798",2964.73656213262,-0.0577423656951888,0.175679229038587,-0.328680664249192,0.742397070753134,1 +"140707",264.161503623635,1.90519301005556,0.246017269501115,7.7441433844014,9.62283706290285e-15,1.18014473739441e-10 +"83990",348.068820058872,2.59640496388398,0.334910608088314,7.75253127604523,9.0078620687178e-15,1.10472420410755e-10 +"55299",2180.71999665204,0.577402900591331,0.18161314607686,3.17930124037921,0.00147630577740308,1 +"55845",8249.96795893265,-0.176191025977583,0.147574828429252,-1.19390974634979,0.23251327460575,1 +"25855",2531.30388368703,0.737390018132948,0.174991828990436,4.21385399756723,2.51049606434404e-05,0.307887237331153 +"84312",508.266030814133,-0.421449984035497,0.195166948264135,-2.15943318161185,0.0308165759535421,1 +"148362",783.653152935785,0.688043670444518,0.193062369745478,3.56384142260137,0.000365466793629143,1 +"7862",1444.68225860898,0.123939352859532,0.127323873881041,0.973418017231616,0.330345587832512,1 +"27154",1715.59293468313,0.0324399531436372,0.142221390370595,0.228094754657555,0.819572577801482,1 +"84446",325.985258315038,-0.870636745453391,0.415763800643765,-2.09406577509948,0.03625412134284,1 +"54014",3685.81440168626,0.0715700317620454,0.166125335653838,0.43081948626535,0.666599629674742,1 +"254065",1133.06949575819,0.573942541766041,0.178642093762534,3.21280684567531,0.00131444656176833,1 +"26580",207.098371595169,0.202527517865799,0.206862977723408,0.979041876389276,0.327559288692907,1 +"55108",3968.26020126352,-0.00961144255630143,0.0984199810949551,-0.0976574314419788,0.922204318707956,1 +"682",27567.8442081227,-0.0223385791092369,0.163560304703154,-0.136577020627219,0.891365141151821,1 +"54836",603.084377380098,0.801169610116805,0.363055108090737,2.20674380352355,0.0273319631157178,1 +"683",371.585617833978,-1.52236005405486,0.303043473276898,-5.02356984492402,5.07197674942675e-07,0.00622027228549697 +"684",6471.29939146996,0.84216060041585,0.378380722482334,2.22569636975935,0.0260345260935028,1 +"9044",1809.91621584622,-0.0891748423546189,0.184233262881074,-0.484032258670807,0.628362975468318,1 +"53339",3291.64414160748,0.0136936018936484,0.109241331944045,0.125351839362985,0.900245013911331,1 +"84280",1524.27145087404,-0.366923133686399,0.116986434769386,-3.13645880746525,0.00171001456779389,1 +"121551",1113.84073911811,1.2226539956909,0.493138856463976,2.47933007035356,0.0131629434304305,1 +"118663",1415.73497391709,-0.354332969940732,0.671706746776665,-0.527511405298633,0.597838498299397,1 +"55643",5090.73720438019,0.189665596934663,0.153227756349089,1.23780182816591,0.215789550420398,1 +"22903",2398.20377378163,-0.551081941407519,0.202907215461675,-2.71593072801103,0.00660897447320294,1 +"90135",2677.35025466074,0.167267486489126,0.125532940919158,1.33245891687382,0.182709432901508,1 +"55727",2128.40716993061,-0.0672288515025624,0.126221641242954,-0.532625394825591,0.59429291943013,1 +"114781",1105.35441208549,-0.596093721444467,0.135453836294178,-4.40071494283759,1.07894789736369e-05,0.132322170132683 +"685",161.294711468366,-1.10659788092984,0.328348255929667,-3.37019570211111,0.000751148166708671,1 +"686",886.927949293223,-0.589850090462375,0.190548279746436,-3.09554140949103,0.00196453939421394,1 +"689",16685.7850004307,-0.52591101036116,0.18792984590791,-2.79844325854909,0.00513495906358755,1 +"91408",2159.03782964976,0.316116919129605,0.107111915386262,2.9512768769902,0.00316463096221633,1 +"694",9348.13685287341,-0.770786646857683,0.214343124051549,-3.59604092862018,0.000323096986949252,1 +"7832",38275.4917285478,-1.8325330411409,0.336177741208877,-5.45108380629606,5.00637691673645e-08,0.000613982065068558 +"10950",1699.25193476213,0.0596960329648669,0.167977016670769,0.355382147796265,0.722303321144992,1 +"695",270.444510215265,-1.19624767930596,0.238308708650776,-5.01973967329484,5.17415516476674e-07,0.00634558389406993 +"11120",1591.51171644083,-0.290556584631737,0.167409751060322,-1.73560131827113,0.0826343527128229,1 +"10385",502.728370388057,0.159379673382198,0.208460624551649,0.764555290597384,0.444536400884078,1 +"11119",1502.95971358992,0.0990944959276794,0.198144517660091,0.500112226661107,0.61699605743697,1 +"11118",2228.58070071181,-0.14294608064192,0.241294113979695,-0.592414287627209,0.553573201162998,1 +"10384",1108.73626840454,-0.0527464646777579,0.20613811107745,-0.255879247180742,0.79804407963912,1 +"153579",280.243736258305,-2.39567630621552,0.36624450976778,-6.54119377170873,6.10296945841101e-11,7.48468174379526e-07 +"8945",1226.18405371755,-0.202935584179742,0.132986790873982,-1.52598301565185,0.127014094384213,1 +"699",1320.05718000871,2.93848539347652,0.37039997764984,7.93327637901327,2.13438710232529e-15,2.61761234229174e-11 +"701",850.751734890921,3.2896438336788,0.419816022656556,7.83591777384352,4.65430397805718e-15,5.70803839868933e-11 +"9184",3536.60090876252,0.651905667744932,0.127304418635635,5.12084085322118,3.04176276046706e-07,0.0037304178494368 +"84811",1063.37817881486,0.143132073493843,0.125227444968914,1.14297687323552,0.253048193217619,1 +"8896",1987.31461735708,0.366056379855693,0.0901205190116635,4.06185388044999,4.8684547791514e-05,0.597067294115127 +"11149",966.3182309974,-2.63508031526189,0.380735519596579,-6.92102569798051,4.48385132285305e-12,5.49899526234698e-08 +"705",1226.3629751234,0.268356371897567,0.17727977894193,1.5137449600807,0.130090537069593,1 +"9689",4535.46418173636,0.00696472671836246,0.186266053724685,0.0373912829476532,0.970173023012074,1 +"28969",4911.40127798118,0.103381374814605,0.131106710802693,0.788528475633771,0.430387649080929,1 +"220979",110.634362997866,-0.770536655213162,0.279838188781781,-2.75350787027152,0.00589603525641666,1 +"80007",333.468346216454,0.150522652602221,0.0944924682443335,1.59295926330349,0.111169329999898,1 +"387695",2113.46512369073,-0.121742122877665,0.778404702092681,-0.156399521419091,0.875718114385159,1 +"64776",644.893065276644,-0.200204904210117,0.215251052864941,-0.930099535149474,0.352319551447956,1 +"53838",1768.37055236221,0.212314311546369,0.154172879487807,1.37711841571435,0.168475639940232,1 +"219833",119.163782883374,1.02420290931665,0.34076354267344,3.00561175436001,0.00265047179244937,1 +"79096",1275.47653628936,0.233843596385056,0.166148075413699,1.40744089754153,0.159296691146779,1 +"28970",836.553588695934,-0.494415338685558,0.131649408466004,-3.75554546310956,0.000172964358583969,1 +"10944",4629.52901326291,-0.490951015459725,0.132129124108177,-3.71569113754037,0.000202649005952621,1 +"83638",1827.74642672547,-0.359164651026706,0.134513993065795,-2.67009136254714,0.00758306105353141,1 +"54494",194.76364391938,-0.0102332618380172,0.204089452023394,-0.0501410618557796,0.960009978244155,1 +"119710",245.404082768318,-0.358479041439975,0.259177346182072,-1.38314187841149,0.166621366956862,1 +"79703",693.735377391472,1.02286447864494,0.280646533461961,3.64467170154295,0.0002677333443809,1 +"65998",1037.37796265929,-0.772819228339171,0.257679308635827,-2.99915128005633,0.00270732844387871,1 +"387763",7376.90265704486,-3.27778546079096,0.285730905690097,-11.4715818118256,1.83278057048923e-30,2.24772209164799e-26 +"60314",1898.56525916372,0.187034324925073,0.133356582682683,1.40251288059858,0.160762146869766,1 +"91298",749.981594668139,0.271744639624437,0.180142070418794,1.50850181189039,0.13142614329644,1 +"57102",866.676040187179,0.127402100749601,0.121163850560824,1.051486067502,0.293035405023195,1 +"64897",539.040840500986,-0.146208130687789,0.12007303843471,-1.21765995592166,0.223353220219532,1 +"121053",455.037249209468,0.495545745799569,0.141106461596044,3.51185721897134,0.000444986996938042,1 +"79794",828.570192621301,0.520671273537873,0.120613872533917,4.31684401304218,1.58275925089581e-05,0.194109594529862 +"113246",4361.13602073567,-0.344897061338006,0.143413145816781,-2.40491943310855,0.016176031557054,1 +"91574",594.129284453296,0.472580364547171,0.135543504537416,3.48655854930117,0.000489278270166637,1 +"144577",271.619907981626,0.756025427609454,0.173825785537224,4.3493284110461,1.3655508289933e-05,0.167471153667738 +"728568",296.789980426848,0.618149536514811,0.14064279248273,4.39517394103729,1.10684088266204e-05,0.135742965849672 +"387882",492.511232050532,0.928775876451137,0.322772869582171,2.87749053274966,0.00400851938162771,1 +"400073",249.948075199806,1.39438553284362,0.256151067387071,5.44360617766452,5.22125873115481e-08,0.000640335170788826 +"55017",2440.30047124145,0.160429877724573,0.0871851098325858,1.8401063901007,0.065752619330713,1 +"56967",728.291074078805,-1.783778383535,0.373068352993912,-4.78137148117763,1.74103294127073e-06,0.0213520279917442 +"122525",284.703232113609,-1.03620692059265,0.234996863457624,-4.40945000433808,1.03633479347979e-05,0.127096099072361 +"60686",506.021604958057,0.0479805164639312,0.146994805699682,0.32640960498943,0.744114471415285,1 +"56905",2307.99009808887,-0.153600753460628,0.139040103239323,-1.10472266549056,0.269279779120944,1 +"123207",472.521803306566,0.19969591808063,0.119661798832515,1.66883600304334,0.0951498854278171,1 +"84529",1003.04981561872,-0.697993487246833,0.222181959442295,-3.1415398846913,0.00168061916501176,1 +"84419",1153.26289263479,2.56076861801686,0.556910616502336,4.59816807605448,4.26222091207718e-06,0.0522718772657146 +"145853",242.897302665043,0.68677004331881,0.142161928705979,4.83089987291321,1.35917347258074e-06,0.0166689034677301 +"123775",131.575606230554,-0.349288805239128,0.198422146405809,-1.76033175512963,0.0783515730092042,1 +"283897",289.638558350872,-1.80353564983926,0.436654880522585,-4.13034579547307,3.62217990854516e-05,0.444224143983978 +"64755",3234.57443951455,0.275055154395939,0.0923298773759969,2.97904819342309,0.00289145296629897,1 +"80262",842.684642880715,0.569009943861989,0.145962214193509,3.89833729918366,9.68554434666744e-05,1 +"29035",2321.56208783186,-0.435887022226442,0.128809100261561,-3.38397691887706,0.000714440088416362,1 +"404550",889.702677488144,0.804207635028073,0.443067328358455,1.81509125939759,0.0695098861993487,1 +"388284",144.792681460664,-1.17728852515316,0.289019708556455,-4.07338492946824,4.63347493620982e-05,0.568249366176772 +"388272",431.219325685298,0.538225480254464,0.202586277162239,2.65677166190004,0.00788928584771467,1 +"146556",710.701361444596,-6.20672599642832,0.356416521243284,-17.4142488534972,6.43276102554458e-68,7.88913812172788e-64 +"283951",515.427955484548,-0.0240013074154112,0.164532105136444,-0.145876133995291,0.884019172338895,1 +"100506581",113.204500160506,0.573923769151876,0.200427454240095,2.86349877230075,0.00418990437760463,1 +"388327",145.096717898253,0.750598547934331,0.224281309469247,3.34668345619433,0.000817845426296937,1 +"100130311",123.231595333379,-1.16005607913224,0.286939867398559,-4.04285430828934,5.28044337168609e-05,0.647593575103582 +"284018",697.03636510953,0.150900621378712,0.162820834227752,0.926789388436829,0.354035895602996,1 +"64149",911.479237047642,0.516075272901389,0.159011191694809,3.24552798706078,0.00117233040407912,1 +"55028",969.681246789128,0.35289950966531,0.179396452549519,1.96714876269863,0.0491660629703548,1 +"400566",201.77676268861,0.000402825859557268,0.234235187201829,0.00171974955756827,0.998627839055939,1 +"83608",522.725905267614,0.465878932953164,0.110705268374071,4.20828150092158,2.57320181450232e-05,0.315577470530564 +"147339",1564.31229300848,-0.0961792023262913,0.128866362341733,-0.746348392074881,0.45545698585406,1 +"162681",271.251326469435,1.18633845411557,0.230335108973544,5.15048903921907,2.59808116213652e-07,0.00318628673724423 +"83636",1163.01325493047,-0.148750751067318,0.158920009368215,-0.936010208271916,0.349267931797507,1 +"148223",986.227201071026,0.663271946678113,0.125051125498673,5.30400621372376,1.13288453675345e-07,0.00138936959587444 +"84167",292.787678074096,-0.11556089175323,0.196661653274905,-0.587612733996962,0.55679226179622,1 +"126526",1193.88302408556,0.36671406357542,0.214783779177811,1.70736386602003,0.087754442165407,1 +"84798",2574.02312574719,1.26704572789824,0.147020359734851,8.6181650635554,6.80355579879796e-18,8.34388083164582e-14 +"28974",3468.06271256303,0.313367008421107,0.128109272371514,2.4460915484115,0.0144414325634276,1 +"284325",896.970223270102,0.7088982575063,0.214227019963585,3.30909825299722,0.000935969848244455,1 +"79173",151.578613506467,0.304924768312474,0.316232825539946,0.964241355374276,0.334924935044759,1 +"100128569",131.300731385551,-0.162778910138282,0.197601928411667,-0.823771870278321,0.41006919377042,1 +"10438",582.748226477784,0.0997788129726589,0.107443580452755,0.928662397066461,0.353064073981376,1 +"56913",1279.11211266499,0.491673379960806,0.190779862865265,2.57717650372797,0.009961107196095,1 +"29071",1175.39598495065,0.253369126264826,0.150341303194888,1.6852928694943,0.0919320807741168,1 +"712",4872.29839248104,-0.861215411145264,0.302614926865283,-2.84591186583687,0.00442844497247644,1 +"713",4733.29146378003,-0.395043231150718,0.320110215286236,-1.23408505035517,0.217171213593661,1 +"708",3637.28905629589,0.352583464235695,0.161597103672876,2.18186747300518,0.0291193150578799,1 +"714",3801.5818811973,-0.302448266282232,0.308039043721619,-0.98185042593354,0.326173541504164,1 +"114897",1549.74131453623,-0.913893925073981,0.269919657242825,-3.38579981320821,0.000709711360254915,1 +"114898",167.073053592728,-2.84001450769678,0.324974168321173,-8.73920078746071,2.34765295733914e-18,2.87916158688072e-14 +"114899",495.228884367155,-1.44408511385512,0.399865778054301,-3.61142461573446,0.000304519604475004,1 +"114904",1333.31733887507,2.14163334506639,0.291322228575782,7.35142441940122,1.9610564462224e-13,2.40503962564716e-09 +"114905",621.620553960947,-3.86330457052974,0.353565394615247,-10.9267044494946,8.59120730528152e-28,1.05362566391973e-23 +"715",22479.8788173295,-1.66812868177346,0.254630858246782,-6.55116466738982,5.70900635237855e-11,7.00152539055705e-07 +"51279",2284.74469212874,-0.172597309891647,0.207194535722604,-0.833020568277548,0.404833129274267,1 +"716",19787.6753725017,-1.69102292784551,0.317318808314757,-5.32909768830386,9.87018997991498e-08,0.00121048009913677 +"54955",627.895361631338,0.594448697808999,0.138130578723329,4.30352716468133,1.6810022619136e-05,0.206158117401084 +"55732",578.583978796451,1.47214890612963,0.169112246635441,8.70515846970668,3.17131337246814e-18,3.88929871999492e-14 +"79762",804.986948645752,-0.662631196652543,0.270109772641356,-2.45319223430085,0.0141594646964559,1 +"79098",5401.96746430377,-0.108519126536369,0.68284188269645,-0.158922774490402,0.873729717278318,1 +"127687",1606.02035933622,0.132668169583465,0.116497752574431,1.13880454044556,0.25478468761205,1 +"128061",483.543037208426,0.546604836632613,0.113045147774783,4.83527906674598,1.3295897348181e-06,0.0163060885078092 +"54991",720.633898085941,1.04627276263914,0.147884754431085,7.07491970125092,1.49535323605174e-12,1.83390120869386e-08 +"128346",446.133515818589,-0.90595890463554,0.289150391212541,-3.1331754414595,0.00172926046309504,1 +"339448",1072.61647282025,0.663979125681109,0.10404310785404,6.38176943553619,1.75053391652439e-10,2.14685479522551e-06 +"84886",3830.28317492979,0.000758850424258981,0.176361601109005,0.00430280979242162,0.996566865092167,1 +"81563",4449.11466030937,-1.39993527984108,0.20047992567819,-6.98291998615489,2.8910708787809e-12,3.5456093257369e-08 +"149466",371.032274026728,1.45694522154516,0.631372869731466,2.3075828743874,0.0210223479342862,1 +"127703",990.242084569,-0.105922033404287,0.283961429986923,-0.37301556556172,0.709136859064488,1 +"400793",511.249421346281,-0.134782300655911,0.202887380236676,-0.664320769969442,0.506485030368446,1 +"79169",890.215082489763,0.737185216182881,0.120238075107767,6.13104638877622,8.73029425588115e-10,1.07068328754126e-05 +"25912",8377.81368076204,0.32631447322469,0.0978817240575996,3.33376303254187,0.000856796183081829,1 +"79078",340.588820220981,0.0536881685547451,0.119318011453436,0.449958626537261,0.65274027335124,1 +"148423",820.084375481147,0.0608306772391322,0.162499819069227,0.374343045964979,0.708149110216224,1 +"79630",363.534646892375,-1.24391405957971,0.19058093207142,-6.52695968090634,6.71181045349517e-11,8.23136434016648e-07 +"54964",315.697866442571,-0.277414727249357,0.16361579371686,-1.69552535820245,0.0899758039433545,1 +"148304",348.413436375996,0.473086488554126,0.362964068110474,1.30339758152075,0.192439061763726,1 +"717",1772.4454174736,-0.153155050845422,0.326756501176007,-0.468713094595555,0.639274725827249,1 +"25943",2046.81740068361,-1.33065716430328,0.242267636083117,-5.49250896990119,3.96263418292483e-08,0.000485977456193901 +"54976",2325.07679843584,-0.18627377544248,0.217571015620041,-0.856151610597718,0.391913924276436,1 +"140680",386.656161513876,0.345793024639486,0.258553774814379,1.33741240052572,0.181088058902048,1 +"54058",296.764376204267,2.21679057103379,0.209680192343994,10.5722459820954,4.00779532655741e-26,4.91516018849001e-22 +"54149",1005.25012938224,0.138446054216413,0.169824415876051,0.815230563298152,0.414940346285417,1 +"84645",1017.46565330608,-1.389179659189,0.257645449074505,-5.39182688527629,6.9744943507239e-08,0.000855351987172779 +"128977",1102.02508686232,-0.715794081615607,0.249561171806104,-2.86821093375752,0.00412800220415969,1 +"79640",965.158704571432,-0.196316119921605,0.21224789123965,-0.924937905272018,0.354998208051292,1 +"25966",2387.69375997668,-0.276494522436317,0.1981429418135,-1.39542958182464,0.162886335956048,1 +"9854",640.859527246155,-0.190051081545078,0.167436433983951,-1.13506407788937,0.256348471241423,1 +"26005",775.193398986558,0.550700633165833,0.148178570674018,3.71646608994046,0.000202028741624202,1 +"388125",377.124189791743,-3.33279064576395,0.45784490966635,-7.27930042553642,3.35555673959323e-13,4.11525478543714e-09 +"150590",147.693239365363,1.77314375128826,0.35080038763317,5.05456611166128,4.31370316209651e-07,0.00529032555799516 +"54980",438.848023783839,-0.0274596233803218,0.106631602526307,-0.257518622338506,0.796778441390792,1 +"79074",307.671491522221,0.238811990343052,0.0954874446742641,2.50097791555435,0.0123850901340981,1 +"388969",1713.49159960762,0.751219707485287,0.156833484909511,4.78991911656316,1.66848554434696e-06,0.0204623067158711 +"205327",816.035350869176,-0.22710785549647,0.12652915711696,-1.79490530618598,0.0726687883903479,1 +"339804",358.178320354519,-1.67602978301567,0.258304465737415,-6.48858229466102,8.66478243703836e-11,1.06264891807838e-06 +"130355",285.910138782846,-0.293338703260553,0.136184661335434,-2.15397755065848,0.0312419324847526,1 +"388963",326.371129192316,0.611903311933101,0.283322104179083,2.15974434365463,0.0307924663399635,1 +"84281",299.204299122751,-1.87890323156509,0.32442174549635,-5.79154528834205,6.97417472958203e-09,8.5531278883594e-05 +"718",29205.1710301071,-2.44513943117914,0.361379481886441,-6.76612689357802,1.32275542735464e-11,1.62222725610774e-07 +"719",353.23846226433,-0.436104691917451,0.289305998457922,-1.50741669457946,0.1317038822165,1 +"57415",504.860049078566,0.153015060841818,0.383098772082232,0.399414125005269,0.689588087855048,1 +"51161",392.227503470269,-1.34753911009326,0.385941108732582,-3.49156666549085,0.000480196614679084,1 +"285315",232.938448937302,-0.0940873204703421,0.20861291312499,-0.451013885290841,0.651979541481138,1 +"285237",762.412551383402,0.199403890799011,0.133239080701365,1.49658711054862,0.134500726048752,1 +"79669",975.959226445383,0.473158630044024,0.407411882663252,1.16137660725795,0.245488777841978,1 +"375341",331.950526237287,0.0931466083108713,0.156103800515422,0.596696608303711,0.550709957472158,1 +"285382",1118.60211554792,-2.69704097920229,0.39462812012355,-6.83438620227545,8.23568808714828e-12,1.01002478700786e-07 +"401097",121.403738523034,-0.124945060763081,0.33810045928143,-0.369550106582609,0.711717732362177,1 +"55286",574.396591521671,0.296386395485386,0.433361227063144,0.683924580641361,0.494022791395387,1 +"401152",7126.96320526263,-0.913362522957278,0.15225102766709,-5.99905653809065,1.98467252735563e-09,2.43400238754894e-05 +"132321",379.699722185357,-0.0848632726019587,0.216163144237963,-0.3925889998553,0.69462306541812,1 +"201725",408.776933906212,0.735002387652094,0.204970677163181,3.58589042015481,0.000335930007162507,1 +"401115",167.667556558252,2.06256864060449,0.255248231659002,8.08063831509702,6.44286351877683e-16,7.90152781942791e-12 +"727",228.717829605658,-0.97938401188936,0.293687299525894,-3.33478503656917,0.000853653621900551,1 +"728",770.628289760605,-0.955622613482768,0.317573341430817,-3.00913990191129,0.00261988444709371,1 +"56951",2895.23383469544,0.48051603184139,0.163832486449961,2.93297161175756,0.00335734588565036,1 +"55322",1137.27049058709,0.460618014519244,0.145823322971714,3.15874035190236,0.0015845259136667,1 +"134553",2296.20780720525,-0.150226489275244,0.168113755983814,-0.893600219661428,0.371535828797642,1 +"90355",398.013297904255,0.698627512220674,0.25144889114625,2.77840760814624,0.00546260457118763,1 +"375444",164.66929972291,0.77834390721569,0.218027567417363,3.5699334558264,0.000357071922489745,1 +"285636",1808.41403442859,0.311122455279467,0.133648449322972,2.32791668631796,0.0199165280309003,1 +"401207",153.335371276861,0.628256274085033,0.310417850474711,2.02390511088284,0.042979915976717,1 +"387263",1453.3864903496,-0.0594612125004956,0.167878550150113,-0.35419183956096,0.723195118801297,1 +"647024",2237.89454181407,0.249372258256349,0.457702473565984,0.544834849402225,0.585867108002799,1 +"221545",830.638552816524,0.725529117732344,0.177621657121089,4.08468837354521,4.4136008983161e-05,0.541284014169487 +"441150",223.313134408646,-0.272526718890685,0.205124553194725,-1.32859140773837,0.183982808325932,1 +"57827",2104.41294129023,-0.124786024908763,0.152256056594818,-0.819580039701425,0.412455556299896,1 +"81688",6499.54491806937,0.499691602307075,0.145202792031921,3.4413360467423,0.000578849148705926,1 +"221477",4784.81768038027,-0.629022753072852,0.12323034279707,-5.10444699572649,3.31763243648817e-07,0.00406874442010909 +"730",6578.31121849328,-6.15428443270572,0.574256001055143,-10.7169701690497,8.47336720310787e-27,1.03917375378915e-22 +"79020",658.522375991231,0.468944901352619,0.127492571039302,3.67821354240364,0.000234873282511367,1 +"79034",1404.25724875666,0.0555834501023161,0.136269993441998,0.40789207292341,0.683352912780312,1 +"136895",238.111344569757,-0.142239785958832,0.254922225320001,-0.557973263336614,0.5768626415595,1 +"84310",2881.26441170343,-0.0323631688090872,0.14390427342668,-0.224893729966793,0.822061947127889,1 +"65265",2057.7819345292,0.16981504733613,0.155136139135798,1.09461952761041,0.273683356863865,1 +"157657",145.049943447701,0.243848587307726,0.186336246535372,1.30864816610674,0.190653557270364,1 +"541565",500.978609219367,-0.236927927391762,0.150072009008276,-1.57876161555681,0.114390745965075,1 +"84933",303.708123644869,0.554275384370645,0.228214092006002,2.42875178959618,0.0151509007742537,1 +"414919",999.13140521774,0.164542760608074,0.0962586688755682,1.70938121761039,0.0873803577662515,1 +"138162",128.289400280211,1.32852111714643,0.25282035769558,5.25480277480699,1.48183180165889e-07,0.00181731852155447 +"445577",133.812422154896,0.27364250637703,0.281036006278236,0.973691983461059,0.330209498867493,1 +"79095",3341.92207663968,-0.354094416432758,0.207669950472227,-1.70508258718978,0.0881790226844341,1 +"55071",296.932688982002,-0.138231664059402,0.256309063572086,-0.539316332137918,0.589668601408081,1 +"84267",653.66257960952,-0.0746508229708001,0.159914683111695,-0.466816564421785,0.64063112368876,1 +"203228",647.597460852845,-0.477994782348566,0.184468281850127,-2.59120309223088,0.00956410305024326,1 +"51759",2871.69683813143,-0.254636987190136,0.196207891995087,-1.29779176872515,0.194358898898838,1 +"138241",313.042705031588,0.0295891492589559,0.178506072394038,0.16575990307848,0.868345902216216,1 +"770",447.171329846555,-1.25775300831243,0.292713173584999,-4.29687872570995,1.73219899526656e-05,0.212436884779491 +"771",5400.09347614042,-0.731196581199265,0.409127447952647,-1.78720979210345,0.0739035872567565,1 +"377677",171.676247780114,-0.826206472394162,0.277372102932039,-2.97869347227251,0.00289480211086144,1 +"760",720.281893070091,1.08277662608105,0.413584972005481,2.61802700622957,0.00884398054427823,1 +"11238",413.028519318252,-0.907190340151192,0.218986328400419,-4.14268026126446,3.43270366340264e-05,0.420986777279699 +"340591",472.170378462977,0.300908892670612,0.179483713427641,1.67652477722957,0.0936354471457686,1 +"768",990.822229337232,3.59163629055113,0.563633330419918,6.37229222742254,1.86223614733147e-10,2.28384641108732e-06 +"51719",4372.88052507505,-0.562307820322228,0.142604050008701,-3.94314060707196,8.04214724959987e-05,0.986288938690928 +"81617",2969.29267523399,-1.28832859797282,0.305906316864589,-4.21151354825767,2.53665337121257e-05,0.311095169445509 +"23523",3629.64441927997,-0.0234318534846258,0.163233409984699,-0.143548146711033,0.885857289364993,1 +"91768",725.175409996077,-1.02642311235715,0.258573339354221,-3.96956281309053,7.2004623981974e-05,0.883064708514929 +"81928",629.966437142161,0.508428053062695,0.189192967898087,2.68735174838302,0.00720210651856797,1 +"26256",634.900140378833,0.748141865381481,0.389476480569147,1.92089099780354,0.0547454509186486,1 +"57685",776.633593265311,-1.10344918885234,0.30627847510926,-3.60276440732146,0.000314850870577443,1 +"775",2145.69726320708,-1.98413646050007,0.398303820403513,-4.98146479863031,6.31047647076618e-07,0.00773916834374765 +"776",370.338175155758,-0.317840693127039,0.515717582169303,-0.616307653871487,0.537691488275561,1 +"8912",5511.53834559523,-3.35744577265767,0.43619696504998,-7.69708650373799,1.39203664565681e-14,1.70719374223352e-10 +"781",446.930514303677,-2.23034345916039,0.414779382251865,-5.37718014586864,7.56614614939646e-08,0.000927912163761982 +"9254",226.933968142477,-0.257652705229221,0.339322566055202,-0.759314973432404,0.447664162527672,1 +"55799",165.748644510621,-0.444437595155065,0.382987220633281,-1.16045019575372,0.245865560011902,1 +"782",421.037583908148,0.614771812870466,0.215432998074625,2.85365667453372,0.00432192107982598,1 +"783",643.939393794713,-2.76484848655134,0.435072040558075,-6.35492109078033,2.08533640663981e-10,2.55745656910306e-06 +"784",1500.16165088957,0.85663360371316,0.218995147280493,3.91165564329135,9.16655516361464e-05,1 +"785",418.630014570848,-2.76014263455514,0.466097623028351,-5.92181229464724,3.18412941547725e-09,3.9050163151413e-05 +"27101",2171.87714262169,0.762683597522156,0.131939722435871,5.78054571770726,7.44587000177456e-09,9.13161497017631e-05 +"790",3066.70844584212,0.991000540597875,0.165458359989129,5.98942562142516,2.1058340833804e-09,2.58259491985772e-05 +"23705",1261.64564235646,-0.870410409014513,0.369067525778808,-2.35840421662071,0.0183536955829835,1 +"57863",553.05808150086,-4.85097050413572,0.517610739104557,-9.37185057738114,7.12717673658957e-21,8.74076954975345e-17 +"199731",1525.70651562286,0.256765114954844,0.299434399719371,0.857500391389513,0.391168398600082,1 +"93664",866.076551400547,-0.68475266804214,0.248199302063431,-2.75888232702258,0.00579994156632705,1 +"57658",4554.39765154708,-1.1980252940329,0.221195607746534,-5.4161350952579,6.09010931919308e-08,0.000746891006905839 +"10241",5276.28661857454,-0.633899681967729,0.145952871637154,-4.34318060931089,1.40434588159514e-05,0.172228978918827 +"10203",725.946452772509,-0.485949185889784,0.182235057985133,-2.66660647661675,0.00766213309521539,1 +"800",51369.9398829762,-2.08754440475013,0.357897924814825,-5.83279270431705,5.45072697625461e-09,6.68477156367865e-05 +"51063",1033.0060468185,-0.801336617315835,0.230751526877378,-3.47272509161626,0.000515202784527937,1 +"801",21290.7990168874,-0.515133743157955,0.166556617969141,-3.09284464009347,0.00198247890926083,1 +"805",15267.3088901715,-0.40863878412609,0.168732912790534,-2.42180839154585,0.0154434910521916,1 +"808",14633.14810011,-0.614752940910296,0.209368423725007,-2.936225673255,0.00332232528087721,1 +"810",6276.22664127507,1.88974219853782,0.852951871839695,2.2155320375368,0.0267235678537043,1 +"91860",700.597442045198,-0.457516401640978,0.162782161120861,-2.81060528064427,0.00494484082220048,1 +"811",39012.2008133315,0.926280007275943,0.160113829397767,5.78513430576197,7.24544181588636e-09,8.88580984300303e-05 +"813",11251.3268183992,0.0205030634550118,0.223164871483243,0.0918740629685139,0.926798099038939,1 +"8536",840.843987863261,-1.04180444064056,0.275518867797425,-3.7812453606863,0.000156045782538414,1 +"57118",337.280625509276,-0.0176135925725433,0.240547582707909,-0.0732229040685522,0.941628740497075,1 +"817",2373.16486635202,-0.913033896316829,0.186488800207034,-4.89591812110544,9.78478038929873e-07,0.012000054669436 +"818",4941.6876032847,-0.641390897212144,0.346516756119984,-1.85096647098375,0.0641743768484281,1 +"55450",4762.72335474143,0.544264264983187,0.357944850134763,1.52052547977231,0.128378959923919,1 +"84254",783.899082778053,-1.08024343934122,0.260400385310538,-4.14839416636416,3.34815566258898e-05,0.410617810459913 +"10645",3038.81063370335,-0.35022092817255,0.209905856909032,-1.66846667991893,0.095223121050008,1 +"79823",258.116005973994,-0.0242150400435557,0.125905184428531,-0.192327584868446,0.847485612124478,1 +"819",1802.80944765371,-0.646181107092149,0.10136453812797,-6.37482416460439,1.83172985964051e-10,2.24643349986312e-06 +"157922",2448.20892725428,-0.138600768306499,0.178193725880852,-0.777809474611769,0.436681341556964,1 +"23271",2797.85502169102,0.0259982598753957,0.15845176222108,0.164076811207196,0.869670676379093,1 +"57662",1577.46043724099,1.65304022885256,0.597888653203009,2.76479612047644,0.00569583832297448,1 +"23261",1524.23766494621,-0.211740256698458,0.169461437832918,-1.24948931984884,0.211486157405623,1 +"23125",2505.6303653998,-0.754014964179191,0.17368096228471,-4.34137947107386,1.41590942536885e-05,0.173647131927236 +"55832",5765.76810335071,0.447198712097162,0.122602927784267,3.64753697304894,0.000264766221296949,1 +"23066",467.284074765628,-1.59804298268899,0.420877107411228,-3.79693491175701,0.000146496234323573,1 +"124583",3162.86071675609,0.669245783017964,0.177412320171083,3.77226216517879,0.000161774144948428,1 +"821",26403.804760015,0.220051648094117,0.0971095084199404,2.26601546722413,0.0234504362539637,1 +"10487",13896.438522119,0.020259301669178,0.130624239408393,0.155096035474992,0.87674560760037,1 +"10486",1146.05152569935,-1.81771499563027,0.28229034331412,-6.43916817801875,1.20130034767832e-10,1.47327474639269e-06 +"822",12661.2077369687,1.1096531997071,0.37675281147318,2.94530834519359,0.00322632958755187,1 +"823",18898.9943034923,0.442708944777699,0.22687891491438,1.95130052056521,0.0510213071908735,1 +"11132",746.658663296151,0.257769768515037,0.110343961116092,2.33605687078642,0.0194882777240055,1 +"147968",331.410353845391,1.35217453135105,0.356553953992534,3.79234198978864,0.000149233204773757,1 +"92291",849.868054697288,1.98735528957594,0.700555300237796,2.83682856856747,0.0045564069474435,1 +"824",10017.2584547589,-0.214793151721968,0.183464836308909,-1.17075923671995,0.241695567116314,1 +"825",304.979434065477,-0.72116969772264,0.236480035497963,-3.04960076737155,0.00229145747742632,1 +"726",3263.35169206986,-0.171667302958064,0.274546214543552,-0.625276524913921,0.531789584414878,1 +"23473",1587.46954990388,-0.102118654484515,0.133926918378178,-0.76249536479407,0.445764408553239,1 +"388743",679.879686596921,0.331660254696755,0.677449563730673,0.489571877307475,0.624436880813625,1 +"826",20528.6742176519,0.0101375437704875,0.166006046944277,0.0610673162640294,0.951305598395178,1 +"84290",1311.37104350374,-0.18883653343908,0.751786594326621,-0.251183693436595,0.801672091253599,1 +"4076",10248.4693292875,0.350638685316722,0.104668490875205,3.34999274743328,0.000808136763070071,1 +"65981",809.590390806664,-0.0985841120425874,0.196687074355458,-0.501223135102531,0.616214094049179,1 +"828",4017.97553017165,0.554507749731149,0.471849586465562,1.17517905204654,0.239923089128993,1 +"829",7647.94660864092,0.765825732633085,0.202360764232537,3.78445760242859,0.0001540441641681,1 +"830",4828.6109621925,-0.810587028458817,0.158264761565129,-5.12171515909588,3.02769007243206e-07,0.00371315910483068 +"832",13386.0313173693,-0.149274626715438,0.12667709306597,-1.17838689776138,0.238642398710053,1 +"29775",966.513136287608,-0.295451480888432,0.277353144635396,-1.06525376258786,0.286761110389279,1 +"84433",3203.24916588742,1.6112736390256,0.497139747581435,3.24108793727393,0.00119074445603389,1 +"79092",477.265348225947,1.53629263304717,0.428156487564703,3.58815684841167,0.000333023935203979,1 +"114769",323.555545415306,-0.6282669232773,0.309956550583334,-2.02695159077913,0.042667363645326,1 +"84674",827.518706263174,-0.292364957086316,0.332816163158764,-0.878457807792372,0.379695324997563,1 +"22900",946.804981467828,-0.365333584901255,0.111607441126536,-3.27338017262716,0.0010626943852585,1 +"64170",178.494564154987,0.867652692563644,0.310231369250563,2.79679226075578,0.00516127071776025,1 +"23589",2904.90183147077,0.27305196171871,0.191677660909145,1.42453721744933,0.154291019436726,1 +"10498",3661.26293908473,0.38250658485169,0.156317539190108,2.44698443203163,0.0144057061248195,1 +"79587",1803.66715615598,-0.0169312099744071,0.130453919648914,-0.129786901152326,0.896735026619614,1 +"22794",5018.6645159714,-0.436261254989734,0.173100350914684,-2.52027943724246,0.0117261702162503,1 +"113201",3800.33566053447,-0.140895881598845,0.12603972232798,-1.11786886702437,0.263623003455499,1 +"64921",1001.70389171363,-0.556705609169462,0.19443494241951,-2.86319733604427,0.0041938927618883,1 +"8573",2945.40682807829,0.809716794172661,0.179397033919615,4.5135461633969,6.37525648840369e-06,0.0781861455737828 +"57513",2101.97571191198,-0.743445425918165,0.16084724958626,-4.62205867884279,3.79950498584123e-06,0.0465971291463568 +"834",1027.94704127573,-0.59167054586639,0.344279396691628,-1.71857668960757,0.0856914792036268,1 +"843",836.752606525206,0.0688725866085296,0.239590810250934,0.287459216555077,0.773760725175354,1 +"835",1899.23337990042,1.24837075502268,0.12958272537285,9.63377449757072,5.75748763315969e-22,7.06098283330704e-18 +"836",2005.78831900902,0.451936950388285,0.154610584028298,2.92306605804922,0.00346602974769437,1 +"837",2059.44018859226,-0.433434411788736,0.277561495942228,-1.56157975124529,0.118387022703905,1 +"839",839.348367826603,0.777494399352762,0.191643938495072,4.05697360145181,4.9712698455964e-05,0.609676533863942 +"840",1712.88435961829,0.176497142501376,0.208945199216025,0.844705421151594,0.398275331925295,1 +"841",963.37206102412,0.237636845582438,0.202087704781669,1.17590946880798,0.239631054677737,1 +"9994",987.605485167042,0.557479126061128,0.171944213530818,3.24220928761415,0.00118606886686041,1 +"842",1130.13189776789,-0.553547865877903,0.173036176207274,-3.19902969431564,0.00137890965394012,1 +"844",309.341973610705,-2.29291802773753,0.547349672155404,-4.18912834771284,2.80027993757284e-05,0.343426331543933 +"845",3806.26587978191,-5.13059143115,0.573488072940972,-8.94629142824053,3.6762564500836e-19,4.50856091038252e-15 +"831",16223.7155178479,-0.773503521583768,0.249043541994144,-3.10589672548889,0.00189702957490685,1 +"54897",2497.97562055964,-0.773411886416034,0.185324868319067,-4.17327633053801,3.00250412854621e-05,0.368227106324907 +"847",5285.88263287149,-0.577251279251093,0.225016481176065,-2.56537332836264,0.0103064846009611,1 +"117155",118.498720134832,0.108824401181764,0.248934568952037,0.437160662899862,0.661994835671927,1 +"857",13413.9519846872,-2.35217022717011,0.29358053840007,-8.01201006030156,1.12848633272841e-15,1.38397563845813e-11 +"858",3599.6467375383,-0.598886543713397,0.218635916516165,-2.73919561459207,0.00615897161734207,1 +"9139",1572.17417607067,0.143347322507498,0.143611893999238,0.998157732731098,0.318202878590301,1 +"863",265.045277830329,-1.82572360184232,0.288255925885565,-6.33368974543516,2.39366611040042e-10,2.93559211779507e-06 +"865",2765.17529675373,0.846449950553608,0.196123469150883,4.31590341644636,1.58951472267851e-05,0.194938085589292 +"867",1614.9664852199,-0.264055362087734,0.17621422430779,-1.49849061915974,0.134005828084383,1 +"868",1237.57412629661,-0.304650415442835,0.185667087473742,-1.6408423247654,0.100830149871675,1 +"23624",2360.10572139145,1.70616613073026,0.660080255254501,2.58478589103143,0.00974394852898729,1 +"79872",1166.5977428274,0.0483425494303283,0.111176804080684,0.434825859855127,0.663688832865978,1 +"643866",138.498446457359,-0.675193633120237,0.196138048450306,-3.44244086476319,0.000576489890992175,1 +"873",6059.4090312075,0.289796205302739,0.289009895643878,1.00272070150785,0.315995638750334,1 +"874",1139.38044681253,-0.205039062949445,0.330779374325494,-0.619866529971975,0.535345662958526,1 +"100506428",455.664579282004,-0.00863387500578546,0.224628423417894,-0.0384362534109193,0.969339856285411,1 +"84869",902.941421954112,-0.359181377077449,0.152093968291324,-2.36157542019986,0.0181974699912707,1 +"875",1244.16038801157,0.890347368863306,0.387339825441285,2.29862077272575,0.0215264829326904,1 +"55871",453.899729465859,0.0489071064161751,0.146105604528948,0.334738058638162,0.737822689358455,1 +"150472",605.512145318058,0.171591037963842,0.115818240185195,1.48155452620817,0.138458866344416,1 +"445571",161.418014568323,0.451640559547154,0.173253068339389,2.60682574846193,0.00913858530418227,1 +"644019",145.838629942802,0.395883411741455,0.178128630654983,2.22245806463444,0.0262523650373485,1 +"10951",3104.04024459928,0.425923452132545,0.160830790823324,2.64827058271715,0.0080904741038224,1 +"84733",1232.8582298211,3.65382747413197,0.372129817029729,9.81869043253814,9.35508974271638e-23,1.14730820604674e-18 +"11335",6869.44246842088,0.985467115290116,0.107450221468833,9.17138282098338,4.66989521441822e-20,5.72715949096251e-16 +"8535",1660.20638915059,0.901429151274454,0.218878714310777,4.11839567914563,3.81519210845417e-05,0.46789516018082 +"23468",3537.593122057,-0.305959670594415,0.223760693524009,-1.36735217332344,0.17151494560645,1 +"23466",1609.72609031521,-1.50296930773261,0.300359571723142,-5.00390015577057,5.61818639952739e-07,0.00689014380038039 +"23492",4171.21239000746,-2.96246673240789,0.318981866386426,-9.28725750453492,1.58314870076061e-20,1.94157356661281e-16 +"57332",357.204623226087,1.35501916408024,0.223272467261314,6.06890397504475,1.28786115668199e-09,1.57943292255479e-05 +"25776",1470.14771651761,-0.218660065199038,0.185942198184913,-1.17595719171604,0.239611982881934,1 +"54862",3123.89480471747,0.261101578308556,0.156178436694428,1.67181580143112,0.0945606499349516,1 +"200014",1954.32999751147,0.32116014872954,0.127278143621017,2.52329378471944,0.011626122675459,1 +"57545",1001.7153678497,-1.62755798738917,0.285369538088078,-5.70333469470323,1.17485971592638e-08,0.000144084795561211 +"55749",3010.81928816523,0.403211495482456,0.109487422574831,3.68271976817132,0.000230758783477031,1 +"92922",519.659269622396,-1.29075365384395,0.312456109266381,-4.13099189154767,3.61201323796016e-05,0.442977303503434 +"79839",187.815524440941,-0.738151223490246,0.22566306012226,-3.27103258765671,0.00107155561884506,1 +"29903",622.537556012044,-0.373155107847464,0.218891216408996,-1.70475140103488,0.0882407988918127,1 +"203260",288.105326667025,-0.820323147327728,0.277707451113841,-2.95391118977017,0.00313774289101796,1 +"153733",341.100952983494,0.27955876739965,0.247425154569298,1.12987205317215,0.258530141473487,1 +"29070",351.377623114903,-0.0533493967733145,0.28128628256512,-0.189662276762336,0.849573782978567,1 +"84317",2366.80722965169,0.00688328527312301,0.133255334367777,0.0516548572391521,0.958803707890324,1 +"150275",1279.14252135653,0.218430423744925,0.179166229410621,1.21914952646749,0.222787445052107,1 +"151903",2270.13007205837,0.0795421129632844,0.161613296122069,0.492175550353266,0.62259524705584,1 +"90060",1304.23011794649,0.768008122073889,0.211954944538202,3.62344989755814,0.000290699535005993,1 +"79635",144.648794492911,-0.0104107024148185,0.224635579921871,-0.0463448507063723,0.963035391997988,1 +"160857",162.143298912372,-0.142365717000734,0.177006985383386,-0.804294342917475,0.421227004018454,1 +"115098",2815.13218978049,0.181779826418297,0.150040891183017,1.21153523539504,0.225690338946832,1 +"202243",496.731906000303,0.309416802777672,0.223575073434996,1.38395035736233,0.166373655797862,1 +"90693",373.495682489198,0.265455185791912,0.136871252548825,1.93945171720568,0.0524463583211074,1 +"133957",720.039818408784,0.00387865909971282,0.157505721523957,0.0246255124079595,0.980353669508966,1 +"81576",1184.47921975266,0.224066570716611,0.126391741804214,1.77279438923866,0.0762627834834072,1 +"79879",123.487148626068,0.850595299399571,0.205006791727384,4.14910790141375,3.3377346582089e-05,0.40933977848274 +"64753",493.510362028904,-1.74885401625379,0.47755651287112,-3.66208808616072,0.00025016780389841,1 +"339230",1770.1892938164,0.994971765642214,0.146369169839719,6.79768674463176,1.06312299432692e-11,1.30381404024254e-07 +"165055",213.33362470066,1.22719061442372,0.239123818541222,5.13203001654212,2.86633772810541e-07,0.00351527658974848 +"64770",1404.74548329002,1.04121517424759,0.185376567220376,5.61675723021555,1.94574500342999e-08,0.000238626167220654 +"84865",357.530306141823,0.852762640779204,0.137639574945484,6.19562099866237,5.8055672486296e-10,7.11994767371934e-06 +"57639",314.037960428859,-1.29448765559131,0.258635624460872,-5.00506323631821,5.58436954745646e-07,0.0068486708130006 +"91050",660.395991592952,-0.685683836541839,0.221502023107032,-3.09560981395872,0.00196408629646496,1 +"80071",142.249015555751,0.858133338742752,0.214766288518473,3.99566125886158,6.45139251795107e-05,0.791198778401519 +"126075",527.98828963539,-0.834173650093321,0.200610413794351,-4.15817720683456,3.20797132725142e-05,0.393425603574115 +"154467",574.715549846301,0.728444381172351,0.189798199420618,3.83799416114597,0.000124043430999675,1 +"343099",264.484411814122,1.09292679348491,0.156134139892586,6.99992195324353,2.56105134793549e-12,3.14087337310809e-08 +"28952",1367.06538159163,0.0750802973727197,0.152703090984463,0.491675033482845,0.622949090546415,1 +"149473",612.727736524614,0.489519971101918,0.206744081022541,2.36775809339155,0.0178962329288865,1 +"55246",1642.51949213605,-0.384290319211364,0.163472662330815,-2.3507925651427,0.0187334741131253,1 +"25901",1006.13958488305,-0.323149976048294,0.144973363271658,-2.22903000079236,0.0258119087183682,1 +"79140",354.262435465602,0.286331071792687,0.270508884004207,1.0584904553014,0.289831899956627,1 +"83643",1471.58210609023,-1.79459054546142,0.23776108739647,-7.54787322480955,4.42423257667585e-14,5.42587883203527e-10 +"91057",632.152027847986,1.21747014509001,0.168600056844112,7.22105417921472,5.15860937189489e-13,6.32651853369189e-09 +"55036",170.907351521415,0.141741594755322,0.278444963388885,0.509047077132301,0.61071922622744,1 +"124808",1119.33495790734,0.817041501506801,0.13755834318008,5.93959975540849,2.85718776206197e-09,3.5040550713928e-05 +"57003",6227.66055072646,0.395459349247745,0.164482078288323,2.40427013911229,0.0162047935924367,1 +"152137",4086.90451176641,-0.761216759892779,0.221130951886685,-3.44237997167783,0.000576619690214335,1 +"79714",729.770376164152,0.431755686306027,0.167611829937092,2.575926093451,0.00999720123468115,1 +"284001",772.67128494076,0.168595316389362,0.184706803052963,0.912772640762008,0.361362130346532,1 +"131076",283.257141350818,1.16504959659552,0.192396187990187,6.05547131035127,1.40007127164297e-09,1.71704740754293e-05 +"29080",1084.17113102444,0.181757871700515,0.114279727225363,1.5904646967006,0.111730097184221,1 +"8030",4216.22029586091,-0.186664384015997,0.140380403737533,-1.3297039974682,0.183615817244663,1 +"729440",675.986688511319,0.0248069269286181,0.216613814932121,0.11452144424118,0.908824448182857,1 +"285331",441.083706624628,-0.144462908928766,0.152747863879068,-0.945760583880497,0.344270713901349,1 +"80323",141.154060669441,0.0818499015704548,0.321444222971454,0.25463173926048,0.799007542633707,1 +"26112",6206.0306365605,-2.82751039541086,0.311736235977758,-9.07020124414602,1.18797396893706e-19,1.45693127550441e-15 +"64925",1063.76920264529,0.185715334131238,0.139635008107201,1.33000553835797,0.18351644653225,1 +"168455",1839.75655124102,-0.355013718969051,0.28776742332375,-1.23368279448938,0.217321127661984,1 +"90557",352.972715799564,-0.419821448563332,0.397714303807563,-1.05558549075083,0.291157632590333,1 +"84318",393.741001368436,0.822152749279455,0.147866969300155,5.56008385896221,2.69645056168442e-08,0.000330692696884977 +"83987",403.417955266034,-1.01961460095101,0.362595460585334,-2.81198942563996,0.00492361219329176,1 +"151887",11049.6298653943,-2.70806711046331,0.360874885158455,-7.50417172775612,6.1818219832015e-14,7.58138648019832e-10 +"79780",949.547021612764,-0.232204123372405,0.115731999825994,-2.00639515191588,0.0448141051659595,1 +"338657",369.427293127046,0.114447101438448,0.154760322776293,0.739511907091858,0.459596212125484,1 +"11007",1450.04122229434,-1.10264231781069,0.186104699606676,-5.92484940004781,3.12583721440979e-09,3.83352675975216e-05 +"317762",1894.40288314019,-0.709941521400401,0.238227525473796,-2.98009862625421,0.00288155590637594,1 +"79080",1655.37990391245,0.537569840434153,0.177982267299594,3.02035617699639,0.00252477585522915,1 +"55704",1493.67080225668,-0.382228300169019,0.229824894170816,-1.66312836365294,0.096286743364488,1 +"283234",1215.04861335949,-0.161736094004606,0.278113093865635,-0.581547929860308,0.560871224856041,1 +"440193",1858.72484937344,0.0883341396110295,0.203476430393502,0.434124676947598,0.664197906682174,1 +"26093",1695.72046103442,-0.567157152498661,0.180272129185332,-3.14611667960933,0.0016545398492734,1 +"60492",1523.74367641772,0.127612168376838,0.14276469456086,0.893863631826968,0.371394858354679,1 +"55297",1312.8074047998,-0.260726083553458,0.1650160420917,-1.58000446652679,0.114105843601601,1 +"80212",1709.52084115927,-0.59750027293731,0.220176453951504,-2.71373374497581,0.00665296143393171,1 +"54520",1325.00849546504,0.155046647487523,0.159617021688874,0.971366623979119,0.331365742675768,1 +"257236",103.437240209875,0.144040136220179,0.207450421006018,0.694335232108305,0.487472000932835,1 +"90324",2016.87533048519,0.0901008549508921,0.156488798010172,0.575765525050779,0.56477367879246,1 +"54535",1374.11126290682,0.60928783039611,0.141629887700593,4.30197213517639,1.69284604530518e-05,0.207610638996227 +"6356",352.319852113384,-0.128293116290089,0.38389043454092,-0.334192010914546,0.738234672151652,1 +"6357",215.216765094032,-1.32931407272906,0.449521495736731,-2.95717576431004,0.00310471084493232,1 +"6362",1457.87450174614,0.961697273138103,0.520087991326059,1.84910493835107,0.064442661450845,1 +"6363",1081.13634256564,-1.99162211688152,0.485978508393512,-4.09816912164527,4.16430979720403e-05,0.510710953529102 +"6347",5787.68080951316,-2.49938121193735,0.356152828008795,-7.01772108875583,2.25516144130762e-12,2.76572999161966e-08 +"6364",223.229454717696,-0.468744788427818,0.575447005360819,-0.814575076524907,0.415315581648236,1 +"6366",930.651182337647,-2.78100075772744,0.48048691046409,-5.78788037127034,7.12801441657901e-09,8.74179688049249e-05 +"6367",492.173099555293,0.0472779139078492,0.541307090044423,0.0873402820272857,0.930401035913328,1 +"6348",257.631412615392,-0.228129394074634,0.440326037351072,-0.518091992576735,0.604394086823121,1 +"6351",340.044467443794,-1.20281745950908,0.411827321912804,-2.9206839748329,0.00349263914161487,1 +"6352",1621.63182273699,-0.284879478758545,0.455835922994864,-0.624960571090742,0.531996936474356,1 +"83605",2473.40245291193,0.144822355742822,0.1535754666906,0.943004497160916,0.34567860264892,1 +"890",1042.25681658933,2.68442322064176,0.385004770393463,6.97244145286397,3.114873057029e-12,3.82008031714036e-08 +"891",2149.75082809195,2.59852387390072,0.333573057119021,7.78996929890999,6.70254789439297e-15,8.22000473768354e-11 +"57820",1332.09444394608,0.221484069053643,0.133502824693451,1.65902159420383,0.0971114410002635,1 +"9133",1059.50282822768,2.96414134380737,0.374657149857256,7.91161024135454,2.54080801916498e-15,3.11604695470393e-11 +"892",2312.82964872462,0.227261868881814,0.149248188129306,1.52271107428733,0.12783100612304,1 +"595",9324.4992021263,-0.229747171050647,0.309390600909563,-0.742579672346942,0.457736199257595,1 +"894",4680.46947923919,-2.23270144460662,0.310383418173592,-7.19336573372585,6.32133141024822e-13,7.75248084152842e-09 +"896",2967.58929238129,-0.457896023056372,0.190161534995765,-2.40793188310437,0.0160431740453112,1 +"23582",2318.05482720017,-0.340838124921005,0.108188418928632,-3.1504122927043,0.00163040201655384,1 +"898",642.28097454914,1.98220701978201,0.231556484556974,8.56036065487206,1.12514986916495e-17,1.37988379954389e-13 +"9134",414.636661649776,2.5790120905078,0.325853294155796,7.91464176291166,2.47966035080388e-15,3.04105545422588e-11 +"899",1596.02184799432,1.08582923669764,0.245425857062698,4.42426584424739,9.67707981779246e-06,0.118679706885407 +"900",5064.98932768279,-0.480611142988448,0.1719653592143,-2.79481370657633,0.00519296303337998,1 +"901",2857.21211656539,0.11701106308242,0.219609649163323,0.532813851887717,0.594162444155607,1 +"902",930.840263942743,-0.564878411403262,0.167653257213011,-3.36932559971416,0.000753523591911322,1 +"10983",11316.3508459353,-0.704771484160609,0.144981712113702,-4.86110609321465,1.16731668250976e-06,0.0143159717942997 +"54619",450.128743262479,0.558816380421229,0.240521342325852,2.32335465542247,0.0201601079281227,1 +"79616",493.654251115326,0.877534477766102,0.403228094123063,2.17627315793697,0.0295348413996562,1 +"8812",2469.88727290029,0.301878589475647,0.154458130196339,1.95443638409913,0.0506496313537783,1 +"57018",4259.90446147709,-0.313293400872277,0.235675665224396,-1.32934132412007,0.183735386525639,1 +"81669",4586.33691520293,0.823065172163015,0.202229288930422,4.06996027388592,4.70211550517805e-05,0.576667445555036 +"10309",266.893644059019,1.76277061157155,0.525583274801417,3.35393209047146,0.000796719134994417,1 +"904",1685.7486229006,-0.0947378802178213,0.143170515988894,-0.661713618641777,0.508154775115382,1 +"905",1871.59698698164,0.206072548408542,0.14934295307475,1.37986121317286,0.16762938091082,1 +"219771",3829.84952145885,-0.388912021567695,0.113350275433171,-3.43106375420314,0.000601219283256922,1 +"151195",1037.48851637073,-0.243482829932455,0.210319634237685,-1.15767997987906,0.246994656865466,1 +"9738",1224.98585682301,0.00181711682617179,0.205408395290499,0.00884636104382164,0.992941717165272,1 +"9236",721.754850408486,-0.488660117871623,0.179598852855457,-2.72084208836736,0.00651158589100181,1 +"1230",279.971270826241,-0.104302057299376,0.319498462260105,-0.326455584673403,0.744079688400944,1 +"1234",242.852821514671,-0.647337216149384,0.452670862505545,-1.4300395050089,0.152705681096644,1 +"1236",1218.88294436058,0.0373614860355403,0.545294687073783,0.0685161380097675,0.945374773989741,1 +"9034",166.465753013399,-0.250511591615041,0.349923287244771,-0.715904316021724,0.474050433245548,1 +"9973",1712.5938791934,-0.25154664385083,0.146008586237976,-1.72282089931917,0.0849209181731186,1 +"10576",7680.69890641061,0.484257464704513,0.127962742277709,3.78436298007401,0.000154102778372288,1 +"7203",15288.3140846179,0.634007098141343,0.106250512385055,5.96709685355379,2.41512063966446e-09,2.96190395248449e-05 +"10575",8922.976853737,0.376439407296882,0.0988073723622858,3.80983117248209,0.000139061719231494,1 +"22948",13030.1495412725,0.970425852029127,0.200418936187311,4.84198684261136,1.28547277795053e-06,0.0157650381487853 +"908",7605.70191860481,0.661156821133417,0.181208489786116,3.64859738036442,0.000263675956571278,1 +"10693",133.849144739417,-0.583907903881046,0.257085634861903,-2.27125838514742,0.0231313408521767,1 +"643253",304.680988853851,-0.2855729889206,0.237793236437946,-1.20092982121097,0.229778425259242,1 +"643180",191.343318967628,0.204074947832808,0.17194355317921,1.18687176145597,0.235278207395259,1 +"10574",12646.7422264347,0.426908190145094,0.0817076053274726,5.22482807364267,1.74317000407817e-07,0.00213782369300147 +"10694",8431.40100610846,0.670198206388332,0.0994386778332827,6.73981413461647,1.58589368242086e-11,1.94494001212094e-07 +"51622",1430.21147491446,0.536388919808521,0.128863076028664,4.16247179827686,3.14821033835523e-05,0.386096515895886 +"221960",1496.72674179208,0.533330705474199,0.128746607361766,4.14248356832882,3.43564990466426e-05,0.421348104308025 +"9398",119.212718172109,0.0427541253851068,0.220274115488891,0.194095095060151,0.846101422172882,1 +"135228",1814.24169053524,0.185285294207333,0.316469897855913,0.585475255190598,0.558228200235769,1 +"929",2319.97089181263,-0.51065626262965,0.242944258694874,-2.10194826324753,0.0355578081036547,1 +"977",13402.9117826023,-0.399018362501506,0.226157745534225,-1.76433648805153,0.0776753442313232,1 +"9332",1563.20516410562,-0.434698746125094,0.288277715893635,-1.50791657543687,0.131575879804907,1 +"283316",212.027689130586,-1.05038043145348,0.275280601357228,-3.81567181368664,0.00013581291571547,1 +"8763",13243.4871208693,-0.00417139520587577,0.16010417067973,-0.0260542569763543,0.979214062308601,1 +"4064",171.426504310227,-0.391543025752797,0.353071176907965,-1.10896343672613,0.267445955506236,1 +"911",135.725751327875,-2.09141682310959,0.392769891308407,-5.32478906706062,1.01070254422535e-07,0.00123952560023796 +"914",545.664805381927,-0.901647985002315,0.472061220981354,-1.91002341418324,0.0561301986860965,1 +"4345",1048.58172011281,-1.97303597796535,0.321301569068767,-6.14076048144995,8.21273404266834e-10,1.00720970299285e-05 +"50489",167.658132944978,-0.401370703677837,0.522050200186061,-0.768835455928926,0.441990997666247,1 +"30835",490.682807270473,-1.43817907102957,0.289015972311627,-4.97612315169515,6.4870384331468e-07,0.00795570393441124 +"933",372.441640487687,-2.39920953859568,0.33288885697334,-7.20723895779973,5.70977556044121e-13,7.0024687473251e-09 +"100133941",34694.0251994253,1.72935549562301,0.543941437693951,3.17930456439325,0.00147628884627958,1 +"919",344.05137909961,-0.599698253655476,0.389602817247638,-1.53925543427038,0.123741949173201,1 +"57124",3888.8082998054,-1.55707329286963,0.267643307619405,-5.81771801701027,5.96564272236407e-09,7.3162642347073e-05 +"939",236.081814183568,-0.799842636571228,0.399596057522938,-2.00162794780655,0.045324760887702,1 +"29126",347.051758210504,0.0780286829020294,0.384798613489928,0.202777973117806,0.839308575165525,1 +"80381",4682.89980373813,0.872046604580722,0.178740114990014,4.87885220746022,1.06704980744357e-06,0.0130862988384879 +"940",155.328875074789,-1.13932229371136,0.308606198977452,-3.69183217150672,0.000222644369721499,1 +"23607",4218.78126482788,0.442297327754274,0.313278037135701,1.41183637320444,0.157998145825549,1 +"10421",4289.3908204707,0.0310221870137935,0.11376024940406,0.272697951844385,0.785085409247279,1 +"11314",329.684630429324,-0.0901405521744242,0.304267915419909,-0.296253885494383,0.767036200037739,1 +"342510",177.035950428236,-0.650499964717863,0.395320154181204,-1.64550164679864,0.0998664033383686,1 +"51293",1175.90500047365,-0.401384715129532,0.260624109795049,-1.5400904983241,0.123538295535071,1 +"947",4358.29666053232,-2.35576275233186,0.256226114947237,-9.19407747651703,3.78225995522086e-20,4.63856360908286e-16 +"948",4567.55230384384,-1.60221571180145,0.441371396136145,-3.63008506175882,0.000283327834156193,1 +"951",852.077059246417,-1.43278651743118,0.320081401982512,-4.4763191755498,7.59409292393087e-06,0.0931339556190881 +"915",385.982022287742,-1.17349325347325,0.496432386666728,-2.36385313487023,0.0180859807449162,1 +"916",851.653448694661,-1.26394258172472,0.463465130109755,-2.72715788008776,0.00638824650897087,1 +"10849",240.810293127888,1.01254636462027,0.184445362326384,5.48968188654437,4.02658281662991e-08,0.000493820116631493 +"920",2093.73431915137,-1.09011570760159,0.356969592996166,-3.05380550329759,0.00225958523369889,1 +"958",1236.07265704853,-0.517691501904772,0.275328513414019,-1.88026839460069,0.0600715084193419,1 +"960",17605.3067263389,-0.973833594735725,0.288861513695624,-3.37128190694819,0.0007481925296587,1 +"4179",11177.0781615842,0.414922196197871,0.23212764851302,1.78747425761562,0.0738608691126341,1 +"961",5177.23074441416,-0.20535199204326,0.169006009524412,-1.21505733802677,0.224344223360432,1 +"962",657.550926503566,-1.74375780789548,0.382155757787189,-4.56295050476912,5.04397089301952e-06,0.0618592590319914 +"921",344.169503787379,-1.19879477926078,0.436043549862223,-2.74925470091133,0.00597309521685909,1 +"1043",1083.53199721973,-1.55197869912789,0.386382029847662,-4.0166948233586,5.90200737455934e-05,0.723822184415957 +"963",1296.33314468379,-0.635193053438975,0.326051882336871,-1.94813490689406,0.0513988229992002,1 +"1604",11740.0430047209,-1.24804814023048,0.358844796691943,-3.47796081129161,0.000505243785442323,1 +"965",735.736049506149,0.0931016600896458,0.271789196985676,0.342550995853424,0.731936273409907,1 +"966",20894.2471655572,-0.9422289466229,0.186270412204476,-5.05839298615274,4.22804410317484e-07,0.00518527328813362 +"923",559.743330975117,-0.793683530773027,0.402327419532641,-1.9727303987757,0.0485262866428067,1 +"967",29486.520305057,-0.313759836959073,0.164410043862618,-1.90839823156578,0.0563397652515554,1 +"968",4903.37531561925,-0.221563408782105,0.278574111299883,-0.795348166950062,0.426411002160967,1 +"969",746.409938266184,-1.80712153907196,0.370863401892015,-4.87274163439332,1.10060116710843e-06,0.0134977727134177 +"924",625.717164947228,-0.497725594472269,0.416077724592964,-1.19623225434426,0.231605937267461,1 +"971",183.332576290754,-0.00843331566359279,0.343616848376022,-0.0245427885839992,0.980419653628127,1 +"972",60720.4873486156,-0.707546933226371,0.305017281425163,-2.31969457573167,0.020357405484311,1 +"973",863.850628898303,-1.297910753373,0.55874512769032,-2.32290303584062,0.02018436201321,1 +"974",631.093764183731,-2.32895651600798,0.364642312783936,-6.38696178243026,1.69213905389695e-10,2.07523933569922e-06 +"975",28789.8667703988,-1.24337187091387,0.185926852605294,-6.68742493884644,2.27131641287066e-11,2.78554244874458e-07 +"3732",3796.85681959119,-0.318844615205318,0.368441273367749,-0.865387887439723,0.386825926895315,1 +"9308",887.893652589941,-0.210699101616135,0.292870828267727,-0.719426727688718,0.471878033600693,1 +"8832",301.526140264647,-0.319179371499889,0.308057303721963,-1.03610389250165,0.300153676466387,1 +"942",440.882681437178,-0.000307058300284612,0.32438467650278,-0.000946586946075982,0.999244733003058,1 +"925",534.268993823983,-0.642467790557472,0.484583688110433,-1.3258139023678,0.184901346902629,1 +"926",133.003255427261,-0.84167360397908,0.455161396767053,-1.84917616027494,0.064432379922168,1 +"928",26631.8650964592,0.193829833833749,0.260960587784749,0.742755201002337,0.457629902636939,1 +"22918",4036.08544088156,-1.31399668246762,0.232758359421615,-5.64532541702385,1.64869099783488e-08,0.000202195463974469 +"10225",473.840390616559,-0.563067766340051,0.474270196033576,-1.1872299188292,0.235136942575831,1 +"4267",4008.94174808154,-0.474740383359762,0.236239133872622,-2.00957553296711,0.0444761329626096,1 +"83692",2457.73902455812,-1.41026235315604,0.275923069045361,-5.11107084317113,3.20337821703258e-07,0.00392862304536876 +"978",352.363878647482,-0.56145387906828,0.388986675616617,-1.44337560709058,0.148914691728025,1 +"81602",341.23207250028,-0.60771231577623,0.157405254384565,-3.8608134026549,0.000113010185097525,1 +"146059",829.78721351218,0.394893790871,0.12664762095626,3.11805139243306,0.00182051055636464,1 +"8872",3181.32480639316,0.50954465843851,0.146477609419273,3.47865220123852,0.000503942171771643,1 +"8556",413.042955330113,-0.231605148700597,0.152236652002705,-1.52134946252287,0.128172163906392,1 +"8555",1148.36659171113,-0.589586254428838,0.243282768531692,-2.42346080648139,0.0153734120579237,1 +"168448",130.712688870713,-0.513236056625355,0.283100639392465,-1.81291027009604,0.0698456619656531,1 +"8881",2907.59139967798,0.0341027830977559,0.124858088809533,0.273132349076548,0.784751480814343,1 +"991",2096.21465870604,3.38081787457474,0.414997972707221,8.14658889179656,3.74333605449246e-16,4.59082733722955e-12 +"8697",1542.92151481187,0.29119731290246,0.0806838134608112,3.60911687749982,0.000307241169496693,1 +"993",492.354747932837,2.43110769314569,0.347860699436321,6.98873916221377,2.7736753912962e-12,3.40163549988566e-08 +"994",2534.27413627554,0.428573189989858,0.200791138590779,2.13442282860554,0.0328081845300566,1 +"995",221.310912819207,3.17641549736776,0.390176441417511,8.14097203262154,3.92116969955907e-16,4.80892251953924e-12 +"246184",270.486839173534,-0.0695889158225941,0.146837061551614,-0.473919289089924,0.635557463521402,1 +"996",2507.20314801086,0.267318740127934,0.122866472644402,2.17568498854527,0.0295788234333384,1 +"997",2682.90085647868,0.404829791228116,0.142163467117842,2.84763589011616,0.00440452855121122,1 +"11140",8356.70263908709,0.139827203972971,0.0957182473029395,1.46082077255793,0.144064633610905,1 +"55664",1128.59289949861,-0.985389719744951,0.176921332626334,-5.5696489796747,2.55253054289307e-08,0.000313042345780406 +"51362",943.516347716023,0.254067451353742,0.135792945277658,1.87099153666817,0.0613462541056568,1 +"998",10732.3230524131,0.130392078395062,0.110039803876721,1.18495375129113,0.236035733298063,1 +"8476",4698.67678577149,-0.933759919681426,0.257966942666366,-3.61968828265363,0.000294958124894161,1 +"9578",7271.34151486506,-0.324911797996385,0.172716190651525,-1.88118900012062,0.0599462135207162,1 +"55561",2149.63024492702,1.39840484898945,0.530524709834689,2.63589013492922,0.00839168969142691,1 +"11135",2757.50482140475,-0.338306251312124,0.269058040656436,-1.25737276048967,0.208618688064576,1 +"10435",1197.34383656609,-2.11356479883574,0.232520264770367,-9.08980901481021,9.92131786354664e-20,1.21675042278536e-15 +"10602",3380.52995593584,-1.08418862531839,0.337549479258621,-3.2119398545649,0.00131841974022193,1 +"23580",4466.79146404181,-0.811538414983178,0.254263016265335,-3.19172810463439,0.00141424392411691,1 +"148170",1049.60370873413,-1.61057571078755,0.435758830713577,-3.69602540962889,0.000219001063789085,1 +"56882",7620.01197701038,0.343588498811375,0.214291620847695,1.6033687992662,0.108853255251063,1 +"56990",2778.70480796026,-0.0942695151138591,0.166732747746559,-0.56539292003484,0.571806539115534,1 +"8318",617.403400914625,3.12040599030259,0.381294919879368,8.18370722402965,2.7524232787194e-16,3.37557190902148e-12 +"988",2808.2423109196,-0.0986004213373017,0.110844703977119,-0.889536602106447,0.373714761107864,1 +"990",1109.58697500806,2.79896186027489,0.341579876403997,8.19416497757752,2.52338765040785e-16,3.09468261446019e-12 +"8317",542.50172072037,1.95325433788191,0.239410760035216,8.158590439271,3.38956871586071e-16,4.15696707313157e-12 +"79577",2481.33543312051,-0.138099981230792,0.153604369243169,-0.899062845095032,0.368619187196444,1 +"157313",366.997338696107,3.17986010431193,0.411571916090091,7.7261348017144,1.10861231985066e-14,1.35960214906485e-10 +"83461",583.099997963149,3.11342825501732,0.390843371367354,7.96592313725339,1.63994857523031e-15,2.01123293266246e-11 +"55038",1189.04659099701,1.61921097052915,0.223381096846952,7.24864813265082,4.20951880833706e-13,5.16255386654457e-09 +"113130",1271.03299786233,2.91740767634005,0.348542896527267,8.3702973304229,5.74730304863307e-17,7.0484924588436e-13 +"83879",655.205418261841,1.78957085527781,0.319699874305183,5.5976589267267,2.17265654599745e-08,0.000266454598801128 +"55536",589.738137505502,0.00923028625892599,0.354799428382885,0.0260155048755181,0.979244971534411,1 +"55143",966.956190473016,3.22502463529472,0.37367962246587,8.63045357949451,6.11091502636075e-18,7.49442618832882e-14 +"64866",2927.49182004752,1.50933972053645,0.484332681372805,3.11632846302739,0.00183118181978205,1 +"999",20564.6660632586,1.49522955156586,0.652639442289741,2.29104993458556,0.0219605257752952,1 +"1009",2462.84251852028,-0.523891734416029,0.32957386808508,-1.58960337923632,0.111924234889034,1 +"1012",613.748633748459,-0.875769705458608,0.204542384802897,-4.28160503898752,1.85550101322647e-05,0.227558644262094 +"1000",319.480669930006,0.175099211883259,0.428405466804128,0.408723103347596,0.68274287707678,1 +"64072",832.918239896464,-0.526475995353991,0.418451764496894,-1.25815216955047,0.208336729120748,1 +"64403",555.06140929455,1.3498886341264,0.252146029458801,5.35359861515078,8.62220093262955e-08,0.00105742672237769 +"60437",515.364004870241,1.4952973556942,0.437099884603697,3.42095115639285,0.000624025384333368,1 +"1001",3528.96669697959,2.18572595949,0.558241297311183,3.91537847525387,9.02625008965044e-05,1 +"1003",1667.51641946992,-1.267913383972,0.192853350092098,-6.57449498993147,4.8818573679053e-11,5.98710987599906e-07 +"1004",352.469029721973,-0.726070973987285,0.251901008067437,-2.88236628966926,0.00394700612648109,1 +"10423",5065.11048634434,-0.0541868790380854,0.110927813444945,-0.488487759338904,0.625204393901302,1 +"983",1739.70686499571,3.19276109063608,0.417387932583871,7.6493852394607,2.01942406148336e-14,2.47662166900319e-10 +"8558",2092.93351371784,0.525955799794218,0.117237571829707,4.48623927965851,7.24913270454165e-06,0.0889033634884987 +"728642",807.534401928583,0.0816931265690094,0.173838331816638,0.469937359127319,0.638399772036124,1 +"984",1366.04337755577,0.000481211901905476,0.157014831860371,0.00306475443245646,0.99755468358372,1 +"51755",2979.27355236157,0.337122598810482,0.167415853900835,2.01368383552354,0.0440427381952591,1 +"8621",2556.44333056074,0.189369690356384,0.0995462783926217,1.90232817754863,0.0571282641410619,1 +"5218",937.317505826728,-0.181671437951241,0.299805180570861,-0.605964972337434,0.54453801331301,1 +"5127",5438.85026183937,0.667051156853996,0.148435500992129,4.49387883892659,6.9937430245813e-06,0.085771264453465 +"5128",1649.22403736855,-0.322020904029175,0.17282600678504,-1.86326647256106,0.0624247847396691,1 +"5129",1140.23131957643,0.805443422247504,0.242050289535348,3.32758710511635,0.000876015979701111,1 +"23097",1223.59438559566,0.173409242512167,0.1267711134561,1.36789239902209,0.171345759333996,1 +"1017",2221.28017097762,0.890589299532111,0.144425592797104,6.16642301605958,6.98520637960797e-10,8.56665710395121e-06 +"23552",414.570963028734,-0.619794933442379,0.354689007207579,-1.74743203439527,0.0805624247712296,1 +"8099",6073.45466928953,0.377343116474618,0.124420048685388,3.03281601688469,0.00242283266770011,1 +"10263",2634.1167729578,0.398863918625353,0.166423531088753,2.39667982055158,0.0165443733532573,1 +"1019",5728.54594397684,0.774627648187931,0.136768240289274,5.66379772489242,1.48058929244783e-08,0.000181579470825802 +"1020",658.67242723961,1.22360594437516,0.132162389259336,9.25835217744238,2.07611377695237e-20,2.54614593605439e-16 +"8851",328.088538799961,1.25685459617904,0.381053338270897,3.29836920438032,0.000972481743019811,1 +"51654",1101.01025198883,0.21547878729753,0.0825052784320343,2.61169698948457,0.00900940670225001,1 +"55755",3483.31648139886,-0.226492887608249,0.247063595089248,-0.91673922063035,0.359279308641659,1 +"80279",3082.8152111461,0.381851608566446,0.130622994508739,2.92331078461763,0.00346330647342229,1 +"1021",1579.21578146376,-0.498771635591978,0.292975408089362,-1.70243515947197,0.0886738237672273,1 +"1022",414.446585309866,0.404687174272177,0.209596909984162,1.93078788376583,0.0535092893305968,1 +"1024",706.669394346625,0.0393226300721049,0.211120824704368,0.186256519825405,0.85224360291318,1 +"1025",2804.34648808273,-0.114843164560505,0.126732750078122,-0.906183796135669,0.364838578165031,1 +"54901",1022.98086223915,0.579813105181303,0.222711192480478,2.60343047299756,0.00922959857828736,1 +"8814",179.006994950054,-1.50036065854704,0.232898238366046,-6.44212970039269,1.17808535180624e-10,1.44480387545517e-06 +"51265",84.8412439969413,-0.474761527828868,0.20844086152182,-2.2776797426505,0.0227456655307492,1 +"6792",151.83630859845,-0.0497565405442893,0.225826080237578,-0.220331241156661,0.825613191004736,1 +"1026",22066.2755946472,-1.44629517862277,0.335889611218288,-4.30586457668932,1.66334796559357e-05,0.203992994500396 +"1027",2529.48501474599,0.00674469801191813,0.165718303648589,0.040699777051909,0.967535239336537,1 +"1028",1468.95732038471,-1.58262245529101,0.264804071402586,-5.97657901144926,2.27872059015632e-09,2.79462293176771e-05 +"1029",1081.99487378253,0.850683478585913,0.578394948542875,1.47076574705399,0.141354478721616,1 +"55602",1123.01631812601,-0.91383743909967,0.160403984761975,-5.69709936106466,1.21862913651581e-08,0.000149452677302299 +"91368",749.379659607322,0.0654305158414379,0.146485277285027,0.446669570172058,0.65511365602575,1 +"1030",1570.16995831755,-0.22374408089231,0.351290780695461,-0.636919877172286,0.524177034619011,1 +"1031",967.004636388904,0.0893569476152174,0.378619162946186,0.236007461745717,0.813426880076845,1 +"1032",523.384650015024,0.0498189148012288,0.248164746347508,0.200749363213205,0.84089455907276,1 +"1033",436.190808572464,2.23082303163355,0.360151570824002,6.1941227315199,5.86105451517107e-10,7.1879972574058e-06 +"1036",151.072420422425,-3.28485245934834,0.379335987780519,-8.65948015786186,4.73920525410292e-18,5.81216132363182e-14 +"50937",750.863726038444,-1.71798555730774,0.429858067492673,-3.99663444105774,6.42493998489847e-05,0.787954639747949 +"1039",2174.12710364658,-0.882383380269645,0.230580294272028,-3.82679440606771,0.000129822857162282,1 +"30850",1976.8570617462,0.7435765974746,0.218258115139562,3.40686804245116,0.000657128886569239,1 +"1040",1530.09693749472,1.16825541557394,0.451955781884487,2.5848887488567,0.00974104227674457,1 +"8760",3427.59959523725,-0.58407443335726,0.151087767007805,-3.86579565589244,0.000110727620505439,1 +"81620",1038.54916657236,3.15933667313162,0.408659944306184,7.73096731683722,1.06732425713403e-14,1.30896646894918e-10 +"55573",8070.64749409093,-0.352477633325409,0.161684835825827,-2.18002901462641,0.0292553108870076,1 +"9425",1813.51509070826,0.426319552258192,0.136131081413275,3.13168416670359,0.00173806738329858,1 +"124359",135.361123872222,-0.267722898066239,0.205633725257419,-1.3019406117897,0.192936688043185,1 +"634",2283.62337020069,0.811354290537155,0.503910386275743,1.61011622827154,0.107372484930669,1 +"56971",223.796030853526,-0.480142149409426,0.362785206072195,-1.32348877896051,0.185672885442647,1 +"1048",7547.59874863119,4.97116819674052,0.887473164614034,5.601485650445,2.12522383878821e-08,0.000260637451588986 +"4680",11722.8581919924,4.68098719594954,0.823151672791846,5.68666425723616,1.29544783399438e-08,0.000158873722361071 +"1050",2881.32994354013,1.12369526071318,0.349276909809,3.21720454217162,0.00129446277018848,1 +"1051",4518.26988482004,-0.759322735587594,0.339628264165397,-2.23574659621911,0.0253683749010892,1 +"1052",5973.32068720359,-1.59286700753172,0.267376174453854,-5.95740069505196,2.56281342917855e-09,3.14303438954458e-05 +"1054",2993.63595558777,0.234793270383403,0.159518472688754,1.47188765304644,0.141051218311361,1 +"10153",3045.95443344055,-0.0517909040326226,0.126808788584792,-0.408417307748288,0.682967328821906,1 +"27443",177.444439982891,0.804897380571145,0.498086584785717,1.61597883813197,0.106098888616116,1 +"1056",233.216707578914,-0.406033022945755,0.477689836857906,-0.849993011399432,0.395328971707591,1 +"10658",5856.5561727363,-0.160868946333184,0.120762642838015,-1.33210852754328,0.182824528560775,1 +"10659",2068.70003102281,-2.814236453928,0.278906985926748,-10.0902329304406,6.10245385346511e-24,7.48404940588961e-20 +"60677",121.951136733899,-0.575302849762422,0.368315315395663,-1.56198459774718,0.118291617334067,1 +"9620",2832.12176595249,0.49233031379836,0.442094981587822,1.11363017971865,0.265437873664258,1 +"1952",3152.91870217165,0.568699942990372,0.31450732973234,1.80822476688973,0.070571525449703,1 +"1951",662.283176544727,2.50376968003059,0.332965442213406,7.51960823137275,5.49406211764759e-14,6.737917781083e-10 +"752014",235.137806551161,-0.153049109910988,0.189692999396064,-0.806825293491372,0.419767144521128,1 +"1058",315.802163325325,3.56782288030968,0.434971954751348,8.2024205039822,2.35594530862258e-16,2.88933132649473e-12 +"1059",5264.90505733273,-0.398374688905572,0.13806439287935,-2.88542672442486,0.00390883443298379,1 +"92806",402.474859226859,0.262218356090189,0.179719200905548,1.45904474741127,0.144552792061417,1 +"1062",817.455403850624,2.24253273916865,0.306143899090061,7.32509367599365,2.38731894133355e-13,2.92780794965146e-09 +"1063",3322.97138494666,3.45273197771784,0.403599313232938,8.55485097350769,1.1802110390967e-17,1.44741081834819e-13 +"64946",466.89887052976,1.57083083620502,0.200949477322077,7.81704365265569,5.40783544001443e-15,6.6321693836337e-11 +"2491",175.172125157312,2.3311852456232,0.324862753801896,7.17590803605875,7.18288275978528e-13,8.80908741660066e-09 +"55835",680.066717380705,0.560436570736529,0.233504387489589,2.40011152150842,0.0163900775739977,1 +"64105",301.975360569377,2.58369867450993,0.347958556459454,7.42530576284592,1.12519678255467e-13,1.37994133412504e-09 +"91687",280.941323286517,1.54943855940894,0.250774811712961,6.17860521487478,6.46703838925942e-10,7.93117588058775e-06 +"79019",420.8729081813,2.39193799193735,0.407388210402727,5.87139718543346,4.32137562114707e-09,5.29973506177477e-05 +"55839",974.588828647732,0.973135280520766,0.258888142815842,3.75890247400399,0.000170660339389352,1 +"79172",596.442518767868,1.53526480509484,0.195364599991966,7.8584595426089,3.88886284419947e-15,4.76930139212623e-11 +"401541",137.102229393907,0.614003294860028,0.226584644844751,2.70981864318619,0.00673200065906115,1 +"55166",304.965515227171,0.673578154833838,0.126545058824968,5.32283252375347,1.02163796643652e-07,0.00125293680203775 +"80152",1585.36615305091,0.112565953918186,0.166535069781226,0.675929424751564,0.499085454728461,1 +"201161",580.777642508828,-0.0845487895925243,0.293702658989496,-0.287872060414502,0.773444674571928,1 +"387103",739.811153695418,1.51405777045111,0.306178327798155,4.9450193987905,7.61362823955914e-07,0.00933735367299532 +"9731",1902.89458585646,-0.0184064122857208,0.134703214028486,-0.136644195303524,0.89131204132038,1 +"201134",439.685648492595,-1.18870858460619,0.297111464040715,-4.0008842756848,6.310621616553e-05,0.77393463505406 +"153241",1006.22719326698,-0.474831242468899,0.128733096703784,-3.68849390426372,0.000225585429674883,1 +"145508",258.960260054806,0.460671820618805,0.188365370739745,2.44562903897708,0.0144599693896323,1 +"9662",403.30742378321,0.432799996244425,0.173575243472789,2.4934431177236,0.0126510852989181,1 +"22995",295.926379901744,1.32371714685241,0.214526014283265,6.1704271683552,6.81057415905733e-10,8.35248814866791e-06 +"22897",1265.89436667811,0.122422178918558,0.159375411200693,0.768137179984422,0.442405690210814,1 +"9859",1023.44304544929,0.192191360449494,0.192874418503413,0.996458534733533,0.319027404480415,1 +"84984",113.761399554517,0.408066260672468,0.286665822038129,1.42349114997808,0.154593825832401,1 +"55125",1456.82278664053,0.425639648567779,0.156979951162562,2.71142681224945,0.00669943288973318,1 +"11190",2298.05077334413,0.488255868357111,0.140092335603117,3.48524325941958,0.000491689819110322,1 +"80184",978.464731343161,0.419527328337389,0.177665232890862,2.36133610111045,0.0182092190104983,1 +"9857",3267.07421576535,0.279678604779665,0.19074152904322,1.46627012052678,0.142574712182366,1 +"95681",492.230221485092,0.781189413863047,0.153067431503393,5.10356387502151,3.33315936719474e-07,0.00408778664792763 +"80817",655.333412548607,-0.245030569460874,0.205903690382935,-1.19002514721893,0.234036508306087,1 +"55165",1086.51712155259,2.94410858315819,0.412484486776974,7.1375013546874,9.50426854486339e-13,1.16560349434205e-08 +"9702",1371.69593274902,-0.0574478757441192,0.0839417440914028,-0.684377914301675,0.493736558559978,1 +"285753",238.836498802663,0.53683599655162,0.158285447240464,3.39156887705583,0.0006949369375372,1 +"80254",1213.25826619658,-0.0741504710533646,0.140888126368373,-0.526307453755807,0.598674604975971,1 +"23177",1651.58949012081,-0.716858952893385,0.22329365547631,-3.21038657083313,0.00132556573121899,1 +"80321",1060.86612799439,0.319936527911162,0.173224796989681,1.84694416429434,0.0647552330443453,1 +"55722",217.058381121679,0.8553196734304,0.186481431429895,4.5866211282915,4.50477090866363e-06,0.0552465104238508 +"79959",339.827948015375,0.595216456484347,0.15803436960997,3.76637346643863,0.000165635969129696,1 +"84131",499.428021863201,0.632730214169547,0.134103123032706,4.71823623388124,2.37898152907866e-06,0.0291758294726207 +"64793",874.992975830719,1.42641474145288,0.187692074126108,7.59976012889329,2.96680150595063e-14,3.63848536689786e-10 +"387119",606.394155401522,-1.36477752793874,0.255124038212287,-5.34946662612451,8.82138258887908e-08,0.00108185436070013 +"84902",626.513440404601,0.417705009275481,0.172943329374981,2.41527100689614,0.0157235058939683,1 +"90799",1246.34136005131,0.402982083831827,0.158298569457532,2.54570894236626,0.0109056076313184,1 +"79598",320.602938682335,0.612031506256806,0.227317884037145,2.69240367448078,0.00709390243766208,1 +"10390",1745.33745409765,0.444678359416849,0.136884635375891,3.2485629829509,0.00115989527486265,1 +"51148",3467.86316826877,0.276384650767344,0.266591332006789,1.03673532326365,0.29985922501397,1 +"64781",1640.6679423205,-0.857116460850714,0.241327355873586,-3.55167551456411,0.000382786600883589,1 +"29956",7850.70127014946,0.6422518459032,0.101343756106134,6.33735979975509,2.33735730447448e-10,2.86653499820751e-06 +"204219",922.001699717323,3.0917406089163,0.676787014195855,4.56826231010039,4.91784338468951e-06,0.0603124312698321 +"79603",1196.8262996935,-1.735789418422,0.391950946656554,-4.4285884068625,9.48518381830398e-06,0.11632629434768 +"91012",2003.88988295243,-0.0302903411216073,0.132887933727763,-0.22793898792693,0.819693672439376,1 +"253782",1905.60131831657,0.42378881131955,0.17757756499846,2.38649973223378,0.017009619756028,1 +"1066",12163.9305606167,-2.89415562900983,0.480825903222496,-6.01913418061132,1.7535246948712e-09,2.15052268579005e-05 +"51716",479.219667049022,-2.84660089764087,0.487802803933887,-5.83555665257445,5.36112762346136e-09,6.57488691741301e-05 +"8824",2926.34240836308,-0.825093792286448,0.205756691403466,-4.01004597546008,6.0706926239552e-05,0.744509743401866 +"283848",185.115287745374,0.528372891200551,0.381949020893456,1.38335972157902,0.166554594367983,1 +"1069",2506.81180373673,-0.343359180375038,0.159227720530811,-2.15640328976887,0.0310521880261808,1 +"1070",642.922302599621,-0.0799288869682522,0.275874610108877,-0.289729043701076,0.772023535208751,1 +"629",2618.02767637242,-0.183275493598092,0.378723911941665,-0.483929025390724,0.62843624034329,1 +"1675",7294.73422863866,-5.07034172866517,0.315148860394922,-16.0887198586451,3.06101215962465e-58,3.75402531256368e-54 +"10428",3035.47633960459,0.177848523625959,0.136721821980764,1.30080568741236,0.193324974728756,1 +"3075",5999.42680854369,-1.67581187061009,0.298982171057083,-5.60505619677949,2.08187405848656e-08,0.000255321034532791 +"3078",126.011272525869,-1.78124170204942,0.268109981291075,-6.643697834269,3.05909400473619e-11,3.75167288740846e-07 +"3426",1054.65550630994,-1.01224952632608,0.344650198874532,-2.93703450522187,0.00331367231701392,1 +"1072",40126.0690819613,0.571048064047792,0.10715416031054,5.32921971851448,9.86356109548996e-08,0.00120966713275089 +"1073",4451.52040458333,-2.74304964004373,0.351176809056252,-7.81102159739809,5.67262925490261e-15,6.95691251821256e-11 +"8837",3898.76554942922,-0.7251037840993,0.175742000264637,-4.12595613460311,3.69197640191413e-05,0.452783985930748 +"5199",250.911565160891,-2.82990128060311,0.287945429587601,-9.82790831115507,8.53735050073986e-23,1.04702066541074e-18 +"8545",3934.20899841784,-0.0698751679400215,0.12086151338494,-0.578142420883574,0.563167968977229,1 +"57530",3207.94891746204,1.24600503304341,0.512908492736858,2.42929304288719,0.0151282991648213,1 +"84952",1794.11738993445,-2.92781451550568,0.363631689886374,-8.05159340326073,8.17230124551573e-16,1.00225102475005e-11 +"10669",186.239210385243,1.48943366620622,0.407657987466838,3.6536354296931,0.000258553313992272,1 +"10668",456.876217212643,-0.748979468071165,0.12521602906402,-5.98149832469313,2.21094332876325e-09,2.71150089839525e-05 +"9023",842.511465575053,-2.54287676851364,0.356743425232641,-7.12802700387645,1.01817805056104e-12,1.24869356120806e-08 +"79094",189.903449260691,2.01710986253548,0.400000394462671,5.04276968337771,4.58841407327725e-07,0.00562723101946723 +"494143",135.708574605371,1.07857985207176,0.301781948566594,3.57403700650355,0.000351519215533255,1 +"150356",231.56255534427,-0.675469941881058,0.22607748434641,-2.98778068870432,0.00281011122374191,1 +"10036",1545.58029865738,1.08691661653896,0.162456763635821,6.69049778053871,2.22412732813813e-11,2.72766975522861e-07 +"8208",614.779569192516,1.94132165374673,0.236821937718881,8.19738944983708,2.45663553225075e-16,3.01281781675233e-12 +"283489",938.428488547779,-0.140421173066098,0.225918629036178,-0.621556414648794,0.534233588117861,1 +"118487",1359.20970819276,0.393554338477851,0.187121430715351,2.10320291467055,0.0354480356214205,1 +"400916",1580.7685529464,-0.444750676441474,0.237764766296376,-1.87054912874302,0.0614076013475304,1 +"51142",5248.09485830316,0.397411634325927,0.167950138668021,2.36624772969954,0.0179694159505555,1 +"54927",1734.11575287141,0.231332439830293,0.14628434365265,1.58138891732384,0.113789139927507,1 +"131474",670.899980287399,0.198766807443796,0.168537913317189,1.17935960836133,0.238255011708802,1 +"84269",892.278495099533,0.120395533919659,0.124282148056912,0.968727494672262,0.332681170607851,1 +"84303",690.861429116542,0.703990540144583,0.187428028766811,3.756057964097,0.000172610731313004,1 +"79145",1194.74154691935,-0.183750009316951,0.162330547158292,-1.13194967018606,0.257655594630461,1 +"1105",2032.05826235328,-0.331572428635865,0.226392594328855,-1.46459043688606,0.143032692668699,1 +"9557",1783.0099852109,0.508823580773509,0.169141240808084,3.00827626865317,0.00262734175840563,1 +"1106",5668.96584479237,-0.329533099612106,0.195786482743696,-1.68312487662133,0.0923509196569667,1 +"1107",11517.5732876785,-0.33860800348226,0.175744850838878,-1.92670227244777,0.0540167445130498,1 +"1108",15342.5404144442,0.123215826845255,0.102116541837943,1.2066196585544,0.227578652415324,1 +"84181",3095.24705070306,0.155538998241909,0.157276901476593,0.988950041497715,0.322687585198232,1 +"55636",1441.98822379272,0.679861193521541,0.19490941735726,3.48808796793737,0.000486487992965993,1 +"57680",4155.51756859881,0.320761334522682,0.0838814372884968,3.82398472047486,0.000131312056091329,1 +"80205",2473.65572965368,-0.405580971795831,0.196170440059943,-2.06749279693668,0.0386877422362525,1 +"1111",810.625887366196,1.76940884986171,0.255137871432451,6.93510861373698,4.05909176473901e-12,4.97807014027592e-08 +"11200",681.144166469802,0.985262608922799,0.198343560981182,4.96745447166938,6.7837478012628e-07,0.0083195883034687 +"10523",3113.86737567855,0.191344475158511,0.139693295182976,1.36974702263183,0.17076588459043,1 +"55743",1568.42477624483,0.426869506588652,0.122934523873883,3.47233220691179,0.000515957433409438,1 +"1116",2085.99634537131,2.86898575096656,0.538551498636236,5.32722638082272,9.97238423141865e-08,0.00122301320214118 +"53344",644.580320355711,-1.05397879137168,0.193792785039036,-5.43868953201421,5.36738918384832e-08,0.000658256609507158 +"26511",634.002889897,-0.0626117215173026,0.196419358634568,-0.318765532850505,0.74990431664092,1 +"66005",3154.48759563612,-0.376119775580143,0.127681911345958,-2.94575614991409,0.00322166273045562,1 +"1119",1471.13935254199,0.00869440917785474,0.204171508231383,0.0425838514549324,0.966033268484905,1 +"10752",628.313833476772,-0.370233167527664,0.502263776576147,-0.737128944578653,0.461043938750401,1 +"1121",892.892267779817,-0.255624951531878,0.144281204676328,-1.77171345432922,0.0764421351277861,1 +"1122",771.346784088684,0.82643773077948,0.192481936077349,4.293585920953,1.75810232057946e-05,0.215613668595864 +"5119",6257.29504186337,0.299842413582717,0.113623091466148,2.6389214526173,0.00831702487732812,1 +"57132",5201.19362565773,-0.35367497087882,0.182262301082672,-1.94047243328941,0.0523223012087057,1 +"27243",5773.22373996291,0.0887194806983656,0.148587195866192,0.597086984387677,0.550449307259439,1 +"25978",3023.68311394286,-0.328924395111585,0.128358027108199,-2.56255415046477,0.0103905383161101,1 +"51652",449.685584312948,-0.620287079219044,0.13930209982686,-4.45281930415983,8.47500735292587e-06,0.103937490176283 +"29082",2678.08958355329,-0.438390382457341,0.158981405786337,-2.75749469121261,0.00582461590968822,1 +"128866",11056.0210219354,-0.127468577382897,0.160217559445041,-0.795596798655655,0.426266427925125,1 +"92421",819.47719026415,1.35327308315808,0.466144805934654,2.90311737024435,0.00369468141661197,1 +"51510",2722.09903838034,0.301555968657777,0.133024497387114,2.26692056411399,0.0233950787538091,1 +"79643",1198.60840387178,-0.364359827910061,0.143158503368153,-2.54514974198255,0.0109230885745231,1 +"91782",2394.26843323754,-0.56766567293635,0.157041245208383,-3.61475529682088,0.000300631441529171,1 +"1123",510.635486652266,0.0724973648357342,0.234286889269506,0.309438419972099,0.756988048562455,1 +"1124",441.243702055442,-0.687087813718473,0.296840747442434,-2.31466811628252,0.0206311019438168,1 +"26973",870.202813635279,0.483838247918852,0.151356420692119,3.19668135455614,0.00139018405386145,1 +"63928",688.389006938889,-0.834110975175993,0.658064315584493,-1.26752196620043,0.204968714333932,1 +"79586",5051.7046884804,0.602047750822285,0.174082311390709,3.45840853107157,0.000543376747071681,1 +"54480",3043.58761769229,0.275904196642389,0.156924355133544,1.75819869648399,0.0787137069659723,1 +"56994",1758.7070854698,-0.828850256623344,0.25118126263745,-3.29980926093078,0.000967505614008372,1 +"54108",1728.5215843246,-0.0160853542991586,0.121356463347479,-0.132546333796013,0.894552177215392,1 +"8646",296.447304868178,-1.16430509268428,0.319031945837608,-3.64949375093905,0.000262757631456218,1 +"91851",1372.66968107791,-5.21699337213196,0.590565568632552,-8.83389355768208,1.01093853068785e-18,1.23981501403558e-14 +"25884",849.679621566267,-2.29984778403728,0.529119721542839,-4.3465546461418,1.38292609415804e-05,0.169602056187542 +"1131",390.328831872933,-2.15791033728508,0.653097714502616,-3.30411558541205,0.000952765414705779,1 +"1138",348.158160299979,1.3915104249378,0.232336927728385,5.98919181097443,2.10886335009929e-09,2.58631001256177e-05 +"1140",359.492219501286,0.839404598050398,0.302435245730346,2.77548536389445,0.00551193801979314,1 +"8534",153.784836767809,0.24253737242338,0.315875942274784,0.767824769043015,0.442591297055459,1 +"9486",501.954520988923,-0.649306156369412,0.364290538908423,-1.78238545067633,0.0746863964697828,1 +"50515",1449.28542945499,0.590957652419442,0.25132420628188,2.35137578334431,0.0187041335283231,1 +"55501",788.828083443846,-0.0409057539750067,0.205470361039094,-0.19908347738399,0.842197445667393,1 +"113189",1257.06610955273,0.228544908487224,0.209936082578445,1.08864043608047,0.276312477844841,1 +"51363",1045.22558429496,-0.113647564029552,0.298828966664418,-0.380309731342667,0.703715512706355,1 +"9435",1248.99830761644,-0.715788144445237,0.339234048361448,-2.1100126826968,0.0348572634679245,1 +"9469",1307.71258178773,-1.13551871269516,0.322973406359835,-3.51582727969262,0.000438386076555255,1 +"56548",165.664885719621,-0.526487554665144,0.214746586069466,-2.45166903139888,0.0142195383697285,1 +"22856",2769.75900927252,-0.238894613881961,0.207655175142642,-1.15043900888991,0.24996310121031,1 +"337876",152.753701444005,0.154292714927703,0.293357040112301,0.525955384839708,0.59891920600965,1 +"63922",874.871997179583,1.46674368500314,0.16798973737376,8.73115053296257,2.52094884210528e-18,3.09169165995791e-14 +"54921",3850.41664135535,0.182800089913681,0.0816363579489273,2.23919947565572,0.0251429399559958,1 +"26097",3476.75830098565,0.225960301057225,0.0853472603417629,2.64754018057984,0.00810797238366521,1 +"1147",1126.17075557425,-0.0646785228126203,0.194808907680656,-0.332010089182605,0.739881640664489,1 +"91612",2393.20191669532,-0.716641702007069,0.135252378711706,-5.29855155845066,1.16724918633032e-07,0.0014315144021155 +"9391",3667.72946261582,0.362913787019766,0.100143029240099,3.62395455553536,0.000290132604875945,1 +"57019",1386.68123979616,0.596401594152843,0.134571037982699,4.43187184325293,9.34185396418606e-06,0.114568497016778 +"10519",6298.47021380136,0.333591036950684,0.208837863748876,1.59736855645977,0.110183577190824,1 +"10518",628.81026905128,0.100797903519359,0.284025099205537,0.35489083113185,0.722671377672272,1 +"23152",3834.12161939031,-0.356355814314673,0.122729811658998,-2.90357990041408,0.00368922820974756,1 +"27141",1472.90531821178,-0.656560149418485,0.166584667322132,-3.94130000061089,8.10411913485985e-05,0.993889170699212 +"4261",601.697301790313,-0.205680681164639,0.345183276332028,-0.59585934565033,0.551269194128519,1 +"8483",4369.53155190144,-3.73351709652083,0.564641238776309,-6.61219344271083,3.78666717869865e-11,4.64396862795602e-07 +"148113",426.337580915328,1.85267818942308,0.461765144391541,4.01216551730928,6.01642910064916e-05,0.737854864903613 +"51550",980.945199110957,0.376711141236606,0.12878227605489,2.92517847002519,0.00344258725661294,1 +"9541",1862.46907750798,-0.0237598352933413,0.135851442291671,-0.17489571617745,0.861161576390594,1 +"1153",12304.8262051481,-0.83808458246954,0.159821941956703,-5.24386434183477,1.5724783471798e-07,0.00192848744498131 +"55847",857.168436264302,-0.728322876569864,0.149634317858703,-4.86735186815637,1.13103549068775e-06,0.0138710192577946 +"493856",1148.69970311334,0.398181839058984,0.116700887474609,3.41198638395633,0.000644913345197499,1 +"284106",1942.15919742941,0.0870844326344241,0.24215207485752,0.359627034728749,0.719126063623466,1 +"1154",568.832731615094,-0.0741396388008461,0.300080152212469,-0.247066119682425,0.804857053611844,1 +"11113",1071.19191944382,2.19340066323562,0.299638860682975,7.32014752103962,2.47698504190519e-13,3.03777445539252e-09 +"10370",2863.98030743138,-1.01851940745444,0.2406633126743,-4.23213408033173,2.31484334524343e-05,0.283892387860655 +"163732",747.592760013633,0.221957502513541,0.335194643361115,0.662174968811838,0.507859094206885,1 +"25792",5319.68971062437,-0.257308671248443,0.184753543713987,-1.39271304937337,0.163706580920565,1 +"26586",1574.40661841389,1.53300679118006,0.249270115434378,6.1499822732807,7.74916073859683e-10,9.50357072981515e-06 +"150468",424.118955770843,3.46782892107204,0.395914510270312,8.75903466812663,1.96929550454332e-18,2.41514400677193e-14 +"10970",6501.63920386811,0.447733165921867,0.131146010654339,3.41400522736414,0.00064015347534001,1 +"9793",5601.44258501375,0.703765244359853,0.169247072214051,4.15821222283705,3.20747973597074e-05,0.393365314819452 +"1152",12416.2262274865,-3.23818828553754,0.394326291153116,-8.21195126520275,2.17622608000773e-16,2.66892366452148e-12 +"51192",372.259458967366,0.84500494768015,0.236387220077958,3.57466426231281,0.000350677596601048,1 +"548596",665.164141244967,1.5302729739956,0.611606109285913,2.50205639015328,0.0123474256425271,1 +"1159",644.193132188427,1.63575982287685,0.578337089225606,2.82838478346104,0.00467835378371172,1 +"1163",632.449291243869,1.62961036588695,0.228271578853056,7.13891047705053,9.40735743030799e-13,1.15371831525297e-08 +"1164",1293.96986205788,1.92835473185218,0.255613018389656,7.5440395954818,4.55632701296722e-14,5.587879448703e-10 +"23332",3123.63828493296,-0.278877503641993,0.131825584366937,-2.11550364052046,0.0343870449773258,1 +"23122",2041.61824760058,-0.147067897892879,0.175200778074811,-0.839424912999422,0.401230908560322,1 +"11129",1795.09265176535,0.0436807384338314,0.116786889644426,0.374020907370883,0.708388761393289,1 +"9635",5446.39573151318,1.0984981092833,0.823157015945023,1.33449401269109,0.182042007769633,1 +"22802",7465.94252751225,-2.40068221067728,0.844494050096175,-2.84274615126522,0.00447266783626901,1 +"23155",1476.73165887061,0.0679896196845011,0.117130907102126,0.580458406466716,0.561605527966131,1 +"23529",658.186575063821,-0.920750205311859,0.378440408367645,-2.43301239760151,0.0149737881833159,1 +"1181",370.271747412557,1.27718530015437,0.199014496916624,6.41754907276649,1.38485727227266e-10,1.69838895871519e-06 +"1182",4659.68589547886,-0.313983101006038,0.264307501794063,-1.18794623260705,0.234854593476697,1 +"1183",247.413728781482,-0.255130420822676,0.352681462057336,-0.723401846341442,0.469433037220919,1 +"1184",490.083415601859,0.683510591773467,0.217031184021578,3.1493658151241,0.00163625232067564,1 +"1185",751.277997546939,-0.293004357767684,0.192794888019949,-1.51977244198179,0.128568177520949,1 +"1186",3104.82731357113,0.120159604705171,0.134894479569058,0.890767398999866,0.373053968218424,1 +"9076",10345.0816560853,1.15853058148954,0.563324306395989,2.05659611761036,0.0397250920016986,1 +"5010",528.207708313622,-2.34752336017528,0.402358564085251,-5.83440634726465,5.39824180498998e-09,6.62040374963971e-05 +"9069",1571.64242266663,0.49296728639874,0.11356213782391,4.34094757147967,1.41869574543687e-05,0.173988846220377 +"24146",371.62472784204,0.356187823419745,0.192406672027159,1.85122386696376,0.064137353540101,1 +"137075",7459.63812617492,0.0956600023349813,0.423216760173674,0.226030751465811,0.821177502961295,1 +"1365",1302.03792711133,0.784012475727803,0.592641460013962,1.32291196047832,0.185864657348726,1 +"1364",48562.5572395275,0.286689113602194,0.659253594148641,0.434869246291215,0.663657338479913,1 +"7122",1915.3458272031,-3.18362913199473,0.2655975635377,-11.9866654256519,4.17370912574156e-33,5.11863687180944e-29 +"1366",6822.31612505232,1.24421595714161,0.601207368064779,2.06952879028512,0.0384964925422517,1 +"56650",3793.60152184888,-0.259163011943723,0.204160585531373,-1.26940766391904,0.20429570417942,1 +"10462",360.03631226425,-2.89820790673239,0.341639258698493,-8.48324023934893,2.19007818716596e-17,2.68591188874033e-13 +"6320",637.654020843765,-0.610405580638187,0.292482592602363,-2.08698088733112,0.036889862254229,1 +"161198",953.122035268446,-1.27611521237559,0.181630440273891,-7.02588844937698,2.12708353620183e-12,2.60865524879792e-08 +"23274",1378.69579140653,-0.179292812420845,0.127276697515357,-1.40868529684479,0.158928244442246,1 +"51267",139.592197294204,-1.74038991337487,0.253873206619462,-6.85535089168977,7.11376878462745e-12,8.7243260374671e-08 +"9976",1098.66590545418,-0.799119281143763,0.27939726850287,-2.86015423638816,0.00423435014564835,1 +"29121",957.951688641155,-0.0763546758847252,0.133604708065542,-0.571496895508116,0.567662864154632,1 +"7123",2741.73038518691,-5.43053924462222,0.352271513627524,-15.4157774175411,1.28218522360151e-53,1.57247195822489e-49 +"64581",334.376927079805,0.490580588901687,0.439371987467355,1.11654953637238,0.264186978650659,1 +"1192",14608.3221757227,0.133450018311177,0.182741203648702,0.73026780849993,0.465226501367891,1 +"1193",630.228800748829,-1.21091114644641,0.24173806043483,-5.00918698639453,5.46604474861296e-07,0.00670355727969893 +"9022",1613.64289821492,1.54102059470718,0.545276971497712,2.82612447482325,0.00471149515584887,1 +"25932",16706.9000740047,-1.57267775969716,0.295441577989261,-5.32314297263307,1.01989520812556e-07,0.00125079948324519 +"53405",319.271160309443,-1.11840546474572,0.314875436047247,-3.55189810543972,0.000382462937308971,1 +"54102",1634.54161744613,-0.572416653689846,0.432174027082936,-1.32450498599722,0.185335388250397,1 +"9685",5353.06702401871,-0.0682522551380874,0.168836872143926,-0.404249701332452,0.686029108847942,1 +"6249",7033.0160571049,-0.757230877708541,0.182580413987945,-4.14738284993997,3.36297448470473e-05,0.412435190804188 +"7461",1919.69433560671,-0.65851593562341,0.22473271010699,-2.93021845956428,0.00338723780253626,1 +"25999",4012.96027285884,-2.60127181619606,0.455686107772358,-5.70847294185135,1.13994295694466e-08,0.000139802604239693 +"79745",1976.0413301673,-1.34247538989768,0.263244365637519,-5.09973076402417,3.40136953743782e-07,0.00417143960071375 +"1195",3581.39976603476,-0.669677690052808,0.206885569167626,-3.23694732671379,0.00120815709555136,1 +"1196",1576.43153182663,0.84657829069336,0.13367567651246,6.3330765385313,2.40320270350927e-10,2.94728779558377e-06 +"1198",2403.80274715216,0.184245456912034,0.158990897626512,1.15884279957239,0.246520268155994,1 +"57396",634.33286252594,-0.535698976561061,0.177553585977805,-3.01711155880583,0.00255195875483845,1 +"79789",1053.91898986186,-0.0596589742704658,0.290554915353145,-0.20532770611695,0.837316098830578,1 +"79827",685.24345574517,-1.08363637200077,0.298272641953911,-3.63303977495935,0.000280101820698766,1 +"1201",2629.94747203081,0.601530874107882,0.184465620262465,3.26093758420675,0.00111044480710438,1 +"1203",1337.10305697401,-0.361524333705012,0.144518216059303,-2.50158314683777,0.012363940613228,1 +"54982",1979.07305424129,0.829371969686921,0.172470268878475,4.80878226189413,1.51852497895034e-06,0.018623190341847 +"2055",919.059589532404,-0.927883607928103,0.236323924253308,-3.92632109025718,8.62549956073721e-05,1 +"1207",3903.30524346885,0.632366066638969,0.18298752099311,3.45578793136816,0.000548686823115113,1 +"9575",734.436847577016,-0.178249779474446,0.249959182333626,-0.713115548748002,0.475774258709002,1 +"10978",543.924159590468,0.196048916508176,0.169615352526064,1.15584417087509,0.247744901987675,1 +"81570",850.370242652143,0.888043268119446,0.152388676484151,5.82748855497674,5.62677075113659e-09,6.90067164919392e-05 +"8192",1910.53876937052,0.296990985556556,0.112830488654601,2.63218735554458,0.00848370647454755,1 +"1209",6270.75652723567,0.272684637326008,0.14512725575141,1.87893470398898,0.0602534095165338,1 +"81037",5704.92671178262,0.407401771920471,0.167666194661959,2.42983848200203,0.0151055528079136,1 +"10845",1714.84224201731,0.347094944645737,0.128645066571252,2.69808204773632,0.00697402497275753,1 +"63967",572.463841836986,3.16882986558231,0.369564154100119,8.57450548281218,9.95134448214289e-18,1.22043288729e-13 +"22883",11105.3960521779,0.182521705267405,0.137505733701547,1.32737523268349,0.184384588398923,1 +"64084",139.2487618851,-0.465002835980308,0.310043325360133,-1.49979953750071,0.133666337187048,1 +"9746",2908.35518638258,0.894761388466523,0.269267215871133,3.32294960443585,0.000890710045098323,1 +"1211",5437.21228450882,0.244235573917024,0.120647716197915,2.02436964091696,0.0429321330290661,1 +"1212",5460.59050142917,-0.595782127340032,0.208896360413291,-2.85204647013144,0.00434387497937093,1 +"1213",22062.9395983196,0.408918228586964,0.118006316033735,3.46522323830586,0.000529791510238806,1 +"8218",395.650562674057,0.587034814724808,0.284803745283072,2.06119064249433,0.0392848559113163,1 +"1191",42996.7616028027,-3.32221178773111,0.391922452365663,-8.4767069803684,2.31657422947924e-17,2.84104663503334e-13 +"23059",838.428759061349,-0.744789628859546,0.264193285587507,-2.81910884753676,0.00481571847919632,1 +"171425",297.312396017844,-1.48407025122912,0.254938450142513,-5.82128843412795,5.83956917143663e-09,7.16164763184989e-05 +"8418",416.024517664074,-1.63385520303116,0.274836614946752,-5.9448236303875,2.7675467397456e-09,3.39411932162401e-05 +"55907",2520.57802427603,0.542363377693315,0.223377456711467,2.4280130398023,0.015181797415251,1 +"134147",1121.0834119457,-0.642622787109587,0.326641262416289,-1.96736561191279,0.0491410758506864,1 +"152100",530.146855937919,0.442654724929759,0.143309120480957,3.08881056170168,0.00200959534337388,1 +"56942",1085.39126843734,0.270809225704965,0.148138641172006,1.82807958519428,0.0675376083280126,1 +"80790",4569.1422168837,0.434048522683683,0.198884150221695,2.18241887148801,0.0290786328017524,1 +"1240",410.183534967143,-1.01867994258717,0.281753085197574,-3.61550590252753,0.000299761644336354,1 +"51727",8075.47060860717,-0.329916078412897,0.141849570411727,-2.32581654956934,0.0200283393801825,1 +"129607",491.373233651071,1.13084537253244,0.28799769318361,3.9265778834259,8.61630007985586e-05,1 +"123920",1984.47125088991,0.509927605430973,0.229311834123932,2.22373000233116,0.0261666153762034,1 +"146223",1633.70094036934,0.619312057622605,0.28849194747432,2.14672216345911,0.0318154072166225,1 +"54918",7576.40323530654,0.729951262892209,0.216176826671212,3.37663973577708,0.000733770896847692,1 +"112616",1670.13730004226,0.884912138905964,0.321214619429613,2.75489372332218,0.00587112027440102,1 +"152189",301.506444663603,1.19494823699206,0.282016711102574,4.2371540052371,2.26370872433087e-05,0.277621237951938 +"202333",1270.37337716781,-0.48897654173164,0.337985142874383,-1.44673975185168,0.147969826440353,1 +"7555",17382.2258910155,-0.397642153629755,0.123212019603379,-3.22730002243101,0.00124964356608399,1 +"55748",8679.59814633292,0.42880202157837,0.255505166702483,1.67825186125366,0.0932979413049925,1 +"255919",457.630905977499,0.204175507316445,0.155884550146325,1.30978667946753,0.190268010628317,1 +"84518",4003.66152833453,1.44524252832482,0.584461226318812,2.47277742858593,0.0134067610078423,1 +"1259",572.080618595605,0.352442111275261,0.534815060975887,0.658998104189799,0.509896986057028,1 +"29097",1128.54661878186,0.773708117374437,0.154649139759348,5.00299011412813,5.64478367005708e-07,0.00692276269295801 +"10256",1533.78810508189,1.81906479656328,0.403372161679322,4.50964387078706,6.49365438008958e-06,0.0796381773174186 +"154043",1133.74805558041,-1.42322522225834,0.267607800022522,-5.3183248849195,1.04726946530878e-07,0.00128437127225469 +"1264",59143.7456820333,-5.33551529052323,0.459743958216581,-11.6054059986357,3.86847209455339e-31,4.74429417676027e-27 +"1265",9615.21585527814,0.0137371714141917,0.223053583660528,0.0615868671049856,0.950891835620743,1 +"1266",8175.7391126061,-0.383382296159969,0.2079312034001,-1.8437939563225,0.0652131738406445,1 +"54805",479.060771406821,0.192475998701545,0.186474780351368,1.0321824663843,0.301986647245468,1 +"26505",1580.72345826489,0.00687556020661839,0.13952159632354,0.049279540858137,0.960696523735411,1 +"26504",1341.42395203623,0.146888051441485,0.196100521353365,0.749044675800729,0.453830278591423,1 +"23019",9674.24990439478,0.291318536178271,0.133501453226837,2.18213756582321,0.0290993814562518,1 +"25904",1366.54626241889,0.519463089122467,0.107133494341719,4.84874587834835,1.24244462396743e-06,0.0152373408683365 +"4848",2887.90904420124,0.326049575699051,0.0713777917356666,4.56794148110537,4.92537488903879e-06,0.0604047976391717 +"4849",2675.25340888429,0.370238953667998,0.120194145021748,3.08034100663561,0.00206763714495742,1 +"4850",982.316397706241,-0.256798421824377,0.133674679408977,-1.92107004078689,0.0547228779868454,1 +"57472",2230.05839644571,0.430640236727375,0.0953467664546954,4.51656886478679,6.28496841816706e-06,0.0770788526804009 +"246175",2222.74630594744,-0.381813012871357,0.191159623509477,-1.99735177262696,0.0457869828993534,1 +"29883",2635.93069871558,0.028106739507092,0.152764726196136,0.183987103613209,0.854023572041837,1 +"9337",2560.00732785887,0.129257084790785,0.111503858606103,1.15921624961337,0.246368049476711,1 +"1267",5051.91345204122,0.126073496724424,0.175157614152379,0.719771717230319,0.471665561385697,1 +"27013",3560.96998468346,-0.38438938404964,0.198600985169871,-1.9354857868447,0.0529307111466105,1 +"10330",3147.50182951811,0.847716961398907,0.153756434415852,5.51337551901185,3.52016038334246e-08,0.000431712469413119 +"10695",3390.76837279332,0.125463472291644,0.169439084457762,0.740463587212782,0.459018747798975,1 +"245812",725.530183766681,-0.230697683741836,0.207275520503911,-1.11300014194143,0.265708368527729,1 +"25927",655.135227559659,-2.21664420337625,0.275913521781306,-8.03383679446201,9.44708435414524e-16,1.15859042519237e-11 +"163882",1657.87864460875,-0.691976542341196,0.170583028273544,-4.05653803514118,4.98054549032702e-05,0.610814098933705 +"54875",459.94201803109,-0.988970743082965,0.322737112219015,-3.06432296020494,0.00218163255963159,1 +"1272",3207.43959437635,-2.78507251166173,0.482080282993058,-5.77719647518095,7.59555727306046e-09,9.31519143968134e-05 +"5067",254.373318699978,-3.19397720049543,0.471463931867579,-6.77459501057342,1.24755227914349e-11,1.52999811514158e-07 +"152330",262.440678840076,-2.21769815716926,0.343545581554332,-6.45532434774898,1.07987367644986e-10,1.32435707679811e-06 +"8506",804.083640113812,-1.32458681798448,0.278111145272827,-4.76279660308133,1.90928263747546e-06,0.0234154422659991 +"11064",1149.01939491832,0.194978720588398,0.158477746268604,1.23032239654601,0.218576400683324,1 +"116840",1797.25079276989,0.0961756030244189,0.119690474438608,0.80353598292193,0.421665007581588,1 +"493753",920.745677083975,0.237170858949137,0.157447552748531,1.50634833510519,0.131977776115179,1 +"80347",3596.90133435272,0.881042463128883,0.158985095076706,5.5416670518944,2.99605563426161e-08,0.000367436262985844 +"23242",296.313704694879,-2.48912238441451,0.525267549275237,-4.73877053293887,2.15018824381398e-06,0.0263699086221346 +"22837",2515.29306073038,-0.586720573922882,0.232356186962695,-2.5250912471596,0.0115668252057667,1 +"1690",265.151878055463,1.72365825752148,0.427469882250567,4.03223321476281,5.52493185382764e-05,0.677577642553421 +"9382",1732.43546367194,0.145979747863924,0.133793948312058,1.09107885450428,0.275238186411115,1 +"22796",1248.98653100103,0.148864015152104,0.0998460286278868,1.49093576577694,0.135978360105564,1 +"83548",1483.78397989588,0.0474498644403172,0.107806070002618,0.440140934913638,0.659835035589605,1 +"25839",3812.52268699337,0.407502958836055,0.176342783474039,2.310857018405,0.0208407538396059,1 +"10466",1606.3926794288,0.0383663966752823,0.109281863958389,0.351077436690602,0.725530254812693,1 +"57511",1201.87216887532,0.17573287105285,0.135839673567827,1.29367854351552,0.195776479720258,1 +"91949",1405.86934861821,0.148633277325176,0.114769843977252,1.29505514841194,0.195301205728937,1 +"84342",576.461540780209,0.203469806361927,0.136639914644686,1.48909494631216,0.136462368403835,1 +"8161",994.094469584878,0.582203501908484,0.107083398216134,5.4369165679014,5.42105063639614e-08,0.000664837650047622 +"1301",1482.39582703347,5.5238210010294,0.543018417182383,10.1724376673842,2.63236890346735e-24,3.22833722321236e-20 +"1303",9797.46107041433,1.10671764225057,0.337856691467914,3.27570141482805,0.00105399928326349,1 +"1305",340.192911982717,-0.85502326721569,0.339939995415101,-2.51521821129526,0.0118958730362798,1 +"7373",7123.4447043182,-3.17481774495485,0.281302136256531,-11.2861487196798,1.53621471518345e-29,1.88401372670099e-25 +"1306",4191.38602575551,-0.668790114055107,0.247405997841453,-2.70320897589432,0.00686735556451418,1 +"1307",5323.62945334668,-1.33577840777238,0.305975952097178,-4.36563200021724,1.26755727245901e-05,0.155453223894372 +"1308",3739.66484424118,0.210340206371039,0.646007037892389,0.325600487352705,0.744726643418752,1 +"80781",10640.1692978692,-0.833078397063531,0.253883818022527,-3.28133712322544,0.00103316175962992,1 +"1277",177632.45994807,0.720690045135371,0.368696614180154,1.95469667313849,0.0506188830078674,1 +"1278",128196.298349164,-0.0205558989724904,0.35108523404616,-0.0585495970183346,0.953310857514368,1 +"81578",571.929297318026,-3.08883182607863,0.434887716308522,-7.10259616504625,1.22434778240312e-12,1.50154012033918e-08 +"255631",197.404752992376,-0.19698659144366,0.302169903426406,-0.651906722707863,0.514461347804848,1 +"85301",697.640519655599,0.87719011849326,0.269555314076752,3.25421192862662,0.00113707417865332,1 +"340267",231.8923823497,-1.60768964721898,0.429063078266733,-3.74697737617856,0.000178978221383106,1 +"1281",122513.547774223,0.393707124185142,0.360796733495718,1.09121587762328,0.275177902996159,1 +"1282",20799.0171165146,0.255782756284,0.315572544124131,0.810535520426604,0.41763245867357,1 +"1284",26404.9306375933,-0.276563991419992,0.314932446037468,-0.878169254707688,0.379851874205515,1 +"1286",528.801911961398,-2.91469585984387,0.431797812049373,-6.75014040949007,1.47702147812186e-11,1.81141914076865e-07 +"1287",4919.30272145763,-0.921581950989991,0.345889100206043,-2.66438563817424,0.00771290866688647,1 +"1288",5439.55964169754,-2.52079268933743,0.491776386580555,-5.12589208860786,2.96132192206245e-07,0.00363176520521739 +"1289",14692.7636466831,0.573306443353908,0.315693509181563,1.81602227058836,0.0693669559357469,1 +"1290",9701.9976150393,0.985652612707948,0.291158418318716,3.3852794585146,0.000711058225881004,1 +"50509",1202.94084676557,0.649383876279094,0.266821406804526,2.43377727468034,0.0149421862375775,1 +"1291",33205.6110333502,-1.29143011027631,0.252485516297757,-5.1148680891197,3.13960284634459e-07,0.003850408930757 +"1292",53052.9691566368,-1.753201422966,0.284290619825875,-6.16693376672021,6.96269040507568e-10,8.53904351278482e-06 +"1293",41549.8107803806,-0.673513378963849,0.307863983170112,-2.18769786588416,0.028691617629861,1 +"1294",7140.05792257079,2.31465097327398,0.431248336549971,5.36732730795303,7.99119604283291e-08,0.000980040282693028 +"1295",1138.60962247374,0.421000468335935,0.3317388504072,1.26907194565595,0.204415405077428,1 +"1296",1360.91923664157,-0.648136235245199,0.356241600249638,-1.8193726807622,0.0688545917227134,1 +"1298",955.27821782315,-0.603798619218678,0.35879823080067,-1.68283611062207,0.0924068224113174,1 +"1299",248.504785524981,-1.23385516185624,0.354523178063499,-3.48032297520262,0.000500809659734245,1 +"78989",218.388342643416,-2.11278659499956,0.400804428604593,-5.27136539472695,1.35412580000953e-07,0.00166069988113169 +"81035",1576.56678916853,-2.26990820000686,0.369648847276802,-6.14071494265233,8.21508903891814e-10,1.00749851973292e-05 +"8292",120.561792458788,-0.799548256151709,0.241071516538607,-3.31664340786467,0.000911058171578084,1 +"150684",1081.40438517458,-0.148970913551912,0.153574248377142,-0.970025346867235,0.332033858001938,1 +"51397",719.861794595928,-0.305973870041541,0.114458829463326,-2.67322207885743,0.00751264977563003,1 +"51122",1294.57477553074,0.469643009482331,0.161271362279661,2.91212899081191,0.0035897436172112,1 +"23412",1216.30022759927,-0.00363629932640347,0.149890945615036,-0.024259632971711,0.980645511868559,1 +"54939",2507.88681842071,0.654080066213269,0.146359603278013,4.46899316180047,7.85886427937857e-06,0.0963811115222988 +"28991",1108.91079200824,0.425119459169651,0.114611313169015,3.70922771421995,0.000207892393587844,1 +"170622",3657.86991219919,-0.677828174578268,0.125830743739323,-5.38682482861651,7.1713264725869e-08,0.000879491478598058 +"149951",2662.94160722079,0.151165484139055,0.147990408911888,1.02145460135229,0.307039107593312,1 +"54951",720.089895410313,0.134876151598981,0.129725131609423,1.0397071864615,0.298475960791781,1 +"29099",1301.05810893917,0.506142054690282,0.160903227319152,3.14563022211076,0.00165729397041499,1 +"1311",2026.5709813573,2.15765519033906,0.563118677739301,3.83161716283537,0.000127303725142801,1 +"1312",6368.45195458392,0.267079203666445,0.295847192979413,0.902760648078988,0.366652940672282,1 +"118881",701.513576423037,1.00484085180362,0.309798074717984,3.2435348499772,0.00118056367407235,1 +"1314",11597.8014407559,0.508236890825193,0.112888373523356,4.50211899562927,6.72792928234984e-06,0.0825113247187384 +"1315",5775.79508563533,0.141483406154838,0.115932423038195,1.22039548943289,0.222314986430657,1 +"9276",7293.08633206497,0.549645663818368,0.154132521097659,3.56605899847774,0.0003623898216942,1 +"11316",6097.40026426593,0.419398109430116,0.140968481002784,2.97511973206148,0.00292874211482516,1 +"22820",8920.2386521033,0.811726739885702,0.14937288951117,5.43423068631877,5.50333463440649e-08,0.000674928959563611 +"26958",1702.91301214144,0.763484364815661,0.133601229970782,5.7146507182803,1.09929580330715e-08,0.000134817637317589 +"9318",3522.48544304884,-0.114467880927881,0.120169934341424,-0.952550082973808,0.340818078923816,1 +"8533",2494.81765575552,0.0794652963464552,0.151317947957807,0.525154467258655,0.599475814823748,1 +"51138",1708.37048058831,-0.629748528347639,0.119956259275646,-5.24981799324491,1.52249564073297e-07,0.00186718865379491 +"10987",2641.99836730731,0.243232426174917,0.105770927600222,2.29961513710321,0.0214700337475726,1 +"10980",4813.46147302502,-0.170702669638324,0.13985755194407,-1.2205466724213,0.222257707963311,1 +"50813",4184.87209300967,0.119580485331753,0.120175398333738,0.995049627376034,0.319712128119928,1 +"64708",1410.49692548772,0.167799252212063,0.181048825552891,0.926817678599318,0.354021204524839,1 +"10920",1744.31328271193,-0.351468964163526,0.143961942707804,-2.44140192576377,0.0146303616129375,1 +"22818",6583.46462803112,0.501908456739914,0.108929551220073,4.60764274816385,4.0725960447072e-06,0.0499463178922891 +"51226",845.895360188913,-1.50185639708579,0.30086496445757,-4.99179557112439,5.98205518627325e-07,0.00733639248044552 +"93058",307.702875597041,-0.442360205020205,0.182762013711905,-2.42041656269729,0.015502736568679,1 +"80219",1785.12989266516,-0.591395256288622,0.142150070373284,-4.16035851924396,3.17748404919035e-05,0.389686643792705 +"27235",484.692163300449,0.213875961964503,0.192198197279444,1.11278859527252,0.265799234659219,1 +"51805",455.300206420434,0.412094740312235,0.194122235176385,2.12286212312461,0.0337654072428599,1 +"51117",2192.50359608265,0.220655106231325,0.206156523505948,1.07032803269483,0.284471680590269,1 +"84274",922.104305634775,0.241967226607024,0.121633650472572,1.98931155701511,0.0466668248347206,1 +"51004",827.106570530276,0.180530817417838,0.106536595191635,1.6945427727731,0.0901621910579353,1 +"10229",992.021903363127,-0.466983920828751,0.156829332192128,-2.9776567578357,0.00290461068865379,1 +"57017",3035.91232164617,-0.315532520069867,0.202752986365948,-1.55624104840736,0.119650783757144,1 +"11151",2934.37741478018,-0.719300232998568,0.321522970354834,-2.23716592380552,0.0252754976083037,1 +"57175",5816.04948992518,0.433883717052118,0.127863159022297,3.3933442624897,0.000690448062765147,1 +"23603",9160.31129304484,-1.12589068412488,0.203961208930846,-5.52012164483015,3.38765064558723e-08,0.000415461475174818 +"7464",2808.03845556689,0.83337224108441,0.434627355206401,1.9174408400701,0.0551819500105147,1 +"10391",198.06196770121,-1.87338732140799,0.33041926310547,-5.66972792022117,1.43024467616767e-08,0.000175405207085203 +"84940",206.871261676895,-1.51432833139588,0.385390448701468,-3.92933539608532,8.51809616655104e-05,1 +"79585",579.182111425008,0.10356747098091,0.192348536572382,0.538436490479548,0.59027573975774,1 +"23406",5902.66160814507,-0.436965928540922,0.192020460747402,-2.27562170635419,0.0228686610194943,1 +"1352",821.373152249891,0.0018230204756269,0.146003002486179,0.0124861848358185,0.99003772475795,1 +"1353",1132.69398968877,-0.211090277863392,0.122812138277186,-1.71880630713361,0.0856496467093398,1 +"84987",1858.17482430012,-0.25135965087843,0.165055924807187,-1.52287566273104,0.127789815653626,1 +"1355",1824.82639284794,-0.137841433208446,0.114182916479868,-1.20719839235101,0.227355749445549,1 +"51241",871.194117054222,0.546527888871805,0.13717629231376,3.98412786680184,6.77283993455287e-05,0.830621089573563 +"10063",402.150325942051,0.409936300754534,0.184484981019698,2.22205785256179,0.0262793961370672,1 +"285521",741.468545874242,0.408030632725254,0.149428262361704,2.73061217654783,0.00632168149061697,1 +"90639",689.885183296976,0.490861940377315,0.170498806394629,2.878975816647,0.00398968926714276,1 +"116228",289.898147638113,-0.381818210042249,0.249434944982157,-1.53073263278953,0.125835485188305,1 +"1327",13356.5834716677,-0.221597821510893,0.134871200576346,-1.64303291261542,0.100376123798597,1 +"84701",145.904161872923,-1.564759151542,0.209264024008299,-7.47743984642073,7.57844370347394e-14,9.29420335794043e-10 +"9377",3787.75943029445,0.407882888183037,0.177592159516985,2.29673927774963,0.0216336473718405,1 +"1329",4475.25028236334,0.0538020596268879,0.142656879680522,0.37714311253251,0.706067253542796,1 +"1337",4918.8275605928,0.34333188647055,0.136025447148776,2.52402689104955,0.011601905338741,1 +"1340",9960.3957898717,0.367731839707381,0.14567135375523,2.52439364519999,0.0115898068363891,1 +"1345",5930.05805027449,0.0722950629457905,0.186892513127082,0.386826961316699,0.698884315842476,1 +"1346",979.78795777395,-3.06641526301574,0.305864396798907,-10.0254076483173,1.17872180691764e-23,1.4455844240038e-19 +"1347",1677.79008802734,0.139055821946297,0.127886109618372,1.08734109092267,0.27688609511736,1 +"9167",3783.50655451699,-0.0304667957154488,0.0810429922817702,-0.375933746492502,0.706966151542241,1 +"1349",4004.51975411496,-0.1859340119139,0.191714253989192,-0.96984970102631,0.332121414908908,1 +"1350",4291.33910199853,-0.497841485084154,0.113173629800182,-4.39891771575355,1.0879206247432e-05,0.133422585418506 +"1351",6499.01831636057,0.161085518057107,0.143007657978427,1.12641183230487,0.259991240752773,1 +"1356",2433.40736682006,-0.604435115003411,0.62831218813959,-0.961998074226638,0.336050571295276,1 +"1359",1082.45314312888,-2.68361472370495,0.287479449196151,-9.33497935664221,1.01010932929638e-20,1.23879808144908e-16 +"27151",230.639538583649,0.194253417752767,0.357565026606722,0.543267387183318,0.586945715285713,1 +"1362",4923.2831852918,0.385093750729477,0.20231056484401,1.9034782045436,0.0569781750272891,1 +"1363",2095.92041360147,-1.41308596091421,0.334505995313696,-4.22439651519261,2.39581908157991e-05,0.29382325216496 +"132864",1360.60579913484,-1.75172215691261,0.235802096203986,-7.42878110547943,1.09602948602123e-13,1.34417056165643e-09 +"22849",334.690785992716,-1.32544205080641,0.221591141374615,-5.98147580532407,2.21124907532112e-09,2.71187586597382e-05 +"80315",2531.3402331551,-1.27586906166461,0.226498418799147,-5.63301531387739,1.77085726619709e-08,0.000217177935126411 +"1368",1554.23426535981,-0.382217895451864,0.357106185845347,-1.07032000733079,0.2844752917137,1 +"8904",6961.01440674203,0.548095418352456,0.125559274212966,4.36523245127087,1.26987645778509e-05,0.155737648782764 +"221184",1424.44567659649,-0.202022832612055,0.226098128496439,-0.893518376094106,0.371579635825047,1 +"8895",6233.51722123358,0.115922341322617,0.161334368790294,0.718522297460969,0.47243530457965,1 +"57699",256.584096048768,-0.394277341077136,0.265457511775164,-1.48527475617672,0.137471056113165,1 +"27132",141.234091791134,0.724834198847581,0.594615855790877,1.21899574622595,0.222845807004756,1 +"144402",490.2538886839,-1.06240414017888,0.314940335115363,-3.37335051031086,0.00074259356809347,1 +"1371",1060.66500314733,1.00391584738237,0.217889728750607,4.6074491585211,4.07638831467937e-06,0.0499928262912278 +"55313",1133.35369163156,-0.648624304451477,0.319954650902662,-2.0272382433622,0.0426380538219945,1 +"10404",2223.08138257229,-1.77643225300075,0.265041833060182,-6.70245988148363,2.04939852369378e-11,2.51338234945805e-07 +"29894",4372.19741282223,0.566152635540583,0.118007174755307,4.79761198176744,1.60568444138029e-06,0.0196921139890878 +"53981",2954.28906012298,0.549121866740207,0.12815486922468,4.28483029995131,1.82878725573632e-05,0.224282469043502 +"51692",2414.34693013941,0.829222194153106,0.102802493231995,8.06616812572624,7.2538901145297e-16,8.89617083645922e-12 +"10898",1196.75815397873,0.421086384006753,0.112761643680867,3.73430512593888,0.000188234174780621,1 +"11052",3431.68279738467,0.545671504298121,0.0811298758629675,6.72590089031798,1.74509320583434e-11,2.14018230763524e-07 +"79869",4552.19011395162,0.179073836106555,0.10987832459124,1.62974669274153,0.103155044436855,1 +"1374",4114.26164650817,-0.353449295749723,0.135385542238143,-2.61068715245832,0.00903605142513661,1 +"126129",209.72131258321,-0.286167366405636,0.302495321680083,-0.94602245355809,0.344137133943906,1 +"1376",1431.74348147215,0.189627846116375,0.129107094230405,1.46876395326476,0.141896824321215,1 +"54504",999.405412748639,-1.47802821928436,0.284689527436129,-5.19171966947733,2.08360561723953e-07,0.00255533392898256 +"56265",2230.957612534,-1.40443110255783,0.399706770558658,-3.51365352304365,0.000441988918498011,1 +"119587",3263.35408309269,-2.52041186818024,0.413880463745779,-6.08970968421542,1.13115622699948e-09,1.38724999679217e-05 +"8532",1915.11938040717,-0.537602920130934,0.276529381125214,-1.94410777597446,0.0518824557618638,1 +"1382",9492.24548288005,0.154583548317885,0.518115524848919,0.298357298525191,0.765430476511798,1 +"8738",435.495018973548,-0.477951375427559,0.140200256956727,-3.40906205025773,0.000651866508144104,1 +"1384",3763.04330216356,-0.740664134381735,0.219303136697881,-3.37735312651773,0.000731870266270876,1 +"92359",724.892780808274,1.04466634595675,0.463321166958919,2.25473477245511,0.0241499816645181,1 +"51185",1558.54268676803,-0.429385155446202,0.180123726680623,-2.38383450841845,0.0171333052810264,1 +"27297",2042.73909168365,0.246144460103243,0.10501071616674,2.34399372833917,0.0190784922063026,1 +"1385",2097.55576930544,-0.137139598956975,0.0879681450920239,-1.55896886098386,0.119003750428967,1 +"10488",2304.2975231004,-0.320988849251338,0.122065521862534,-2.62964385318259,0.00854743607104445,1 +"90993",2199.57238560914,-1.71062095051651,0.286994545004305,-5.96046503424255,2.51521120478693e-09,3.08465502155069e-05 +"64764",4887.80341857065,-0.126621571037963,0.197923925494626,-0.639748684862259,0.522335998659704,1 +"148327",769.835409289889,0.903144298349881,0.226155286097135,3.99346976997908,6.51133835559628e-05,0.798550535930328 +"9586",308.215389489631,-2.25854831716531,0.377108994470599,-5.9891128301937,2.10988759022392e-09,2.58756614065062e-05 +"1387",4567.31778530107,-0.318554355393162,0.155593051642855,-2.04735592000834,0.040623151056022,1 +"1389",2591.2239157681,-0.651854207341441,0.128151709302835,-5.0865822304488,3.64573688887969e-07,0.00447113172052205 +"58487",2689.08336085596,0.513036265903142,0.177715916157514,2.88683353182854,0.00389140058057376,1 +"8804",7727.42625736837,-0.162392835880422,0.207858589054784,-0.781265939593295,0.434646098360088,1 +"78987",2061.24965217649,-0.47263680302998,0.198091745900697,-2.3859489999493,0.0170351132724786,1 +"79174",1570.87838633133,0.29128890447699,0.143538152217076,2.02934829505446,0.0424228274952554,1 +"1390",1688.99835451825,-1.61708906677762,0.203771878133851,-7.93578133345472,2.09174262817162e-15,2.56531315918968e-11 +"51232",4830.07979682525,-0.264638014232363,0.210840641537099,-1.25515655948996,0.209421931692666,1 +"1396",3144.93478218246,-0.346470722812288,0.348193627612594,-0.995051877278401,0.319711033910115,1 +"1397",6068.89863031969,-1.55700154578811,0.327524712900163,-4.75384447176883,1.99584593767295e-06,0.024477054579621 +"9419",949.78409997494,0.310336138671942,0.124551194652739,2.4916351829237,0.0127156568628875,1 +"83690",281.900011274216,-0.445109830130469,0.354721335728355,-1.25481549965558,0.209545744599734,1 +"83716",8124.37577655262,-2.17682360675461,0.281795455747743,-7.72483573582981,1.11997674883238e-14,1.37353948476804e-10 +"1398",3202.62913184279,-0.240005733694107,0.119165572489571,-2.01405262174284,0.0440040090211813,1 +"1399",5747.97019412237,0.359240873281758,0.193889860340988,1.85280897438356,0.0639097434697074,1 +"9244",272.237203039823,-1.55185535448956,0.468415013272092,-3.31299234763879,0.000923035053568096,1 +"51379",756.917716623209,0.515250664422184,0.170893683295141,3.01503633421209,0.00256948472411439,1 +"54675",1691.35262522044,0.371628623438773,0.110391910564525,3.36644797194223,0.000761429442436716,1 +"1400",901.840625872059,-0.923888366925802,0.310854615607253,-2.97209151976395,0.00295778501804622,1 +"643911",345.712839186203,0.989206208652476,0.410336406730598,2.41072006389608,0.0159210632248833,1 +"51340",1857.61537020792,0.320747464150998,0.0861195119194938,3.72444591245291,0.00019574467237979,1 +"9696",1575.72486480577,-0.0326898542702729,0.167751906250148,-0.194870240231587,0.845494532389223,1 +"84809",616.60104046367,0.481190379922261,0.180729439312339,2.66249030458542,0.00775648040728132,1 +"114819",180.070883637031,0.298320465076394,0.244097782325561,1.2221350896114,0.221656545483746,1 +"54677",3404.85683595528,-0.0891781540194007,0.31103712422709,-0.286712250960408,0.774332656340123,1 +"441089",169.746421956582,-0.0544731681721231,0.143067906533254,-0.380750438669916,0.70338843817625,1 +"55118",5213.27563269927,-2.46467513551301,0.745304024081261,-3.30693925683713,0.000943213425561903,1 +"10491",10864.9168175166,-1.2088791263825,0.197732837850253,-6.11369937095633,9.73476166277097e-10,1.19387117032223e-05 +"23373",874.410123161042,-0.699135800311062,0.179274185769827,-3.89981300045447,9.62670120994169e-05,1 +"200186",2451.96812672268,0.40650832136369,0.153185970898777,2.65369158140666,0.00796165604438702,1 +"64784",2798.59747284424,-0.777072805715416,0.187657196402702,-4.14091663209047,3.45920679067083e-05,0.424237120807871 +"1407",1006.78731638866,-0.218041951282178,0.219164636063492,-0.994877436426429,0.319795878144624,1 +"1408",2509.07623118376,-1.57947633928654,0.171836707778089,-9.19172835484185,3.8657927413604e-20,4.74100821800439e-16 +"1410",6769.80426659647,-3.78405482812294,0.355932165712528,-10.631393261544,2.12907719607614e-26,2.61110027326777e-22 +"1416",402.049860897164,0.740958760613234,0.166484081420438,4.45062827803951,8.56194321205985e-06,0.105003671552702 +"51084",1161.35999239118,-0.771933625485625,0.185139561131081,-4.16946880920328,3.05310394099398e-05,0.374432667323502 +"1428",522.449830234143,-3.57507564781414,0.390223925758498,-9.16160033207878,5.11333036258813e-20,6.27098835667808e-16 +"1429",1928.92344380352,-0.291057099846746,0.238729831822104,-1.21919031913714,0.222771965446397,1 +"9946",942.661454225351,-0.325124270503791,0.126247356810461,-2.57529566335325,0.0100154432108882,1 +"1431",5937.75441256746,0.0647489938412146,0.142925395618849,0.453026514713214,0.650529648975047,1 +"51380",588.566126170184,0.144572239320437,0.177130921934718,0.816188600732965,0.414392275512277,1 +"27254",486.740896485692,-2.35043258093368,0.391662470261912,-6.00116875983012,1.95902247939636e-09,2.40254516873169e-05 +"7812",38150.5991889892,-0.442531409872256,0.160257247010794,-2.76138157947047,0.00575573854619724,1 +"1434",6066.77079059149,0.774360281565697,0.123585580486366,6.26578180495033,3.7095946977911e-10,4.54944693737101e-06 +"1435",2480.79415443621,-1.07486430096502,0.269193639365995,-3.99290378292944,6.52690577007942e-05,0.80045972364254 +"1436",1634.08673670611,-0.966692849584729,0.251248737175792,-3.84755306813089,0.000119303440172144,1 +"1438",116.867152875728,-0.430149636336394,0.349661801313075,-1.23018766911646,0.218626836351258,1 +"1439",635.838453487994,-0.668471944098138,0.290580174712561,-2.30047333669402,0.021421418183457,1 +"1440",2101.16126858678,-4.84664026248433,0.602045932030135,-8.05028321699836,8.26026634817573e-16,1.01303906494027e-11 +"1441",381.097713534398,-0.425248630331424,0.310468688673533,-1.36969892889452,0.170780903200441,1 +"55790",1349.54035315603,-2.56916104989609,0.204610389958515,-12.5563567442347,3.66838856798445e-36,4.49891173977613e-32 +"55454",1314.8157306271,-0.443929611038982,0.192256087047102,-2.30905360583055,0.02094060677791,1 +"1445",3926.89893914334,0.603511647821955,0.194018502910719,3.11058810766967,0.0018671518368653,1 +"114788",384.680595577373,-0.0526493106047804,0.142519764397505,-0.369417609040772,0.7118164746773,1 +"1452",8808.05052192583,-0.436427869092505,0.166023968581396,-2.62870399269211,0.00857109315389343,1 +"1453",8018.61074585883,-0.300781775970107,0.143704877948637,-2.09305195664696,0.0363445167587371,1 +"1454",5203.67006778949,0.0360337932668335,0.142314485615865,0.253198352303333,0.800114939712298,1 +"53944",1239.85063682608,0.326826222117992,0.140004732552559,2.33439410339432,0.019575095267874,1 +"1455",3254.66205378744,0.598359007083363,0.112633703478744,5.31243303383241,1.08171182526933e-07,0.00132661138251031 +"1456",1431.1013795695,-0.0563835391340159,0.134823627947782,-0.418202209748084,0.675799280287718,1 +"1457",2800.36795271236,0.509763550477962,0.0886286044245541,5.75168201945346,8.83598774817052e-09,0.000108364553743563 +"1459",1477.74251136518,0.0580331594069771,0.124520475851811,0.466053145155349,0.641177460288662,1 +"1460",6252.11047111243,0.318772120906675,0.134255341075253,2.37437198664593,0.0175788306101153,1 +"1464",4797.75475212437,-2.05260919968711,0.379068490045935,-5.41487687208815,6.13308950753508e-08,0.000752162097204103 +"79848",665.024603074393,0.529309100520919,0.14649483554058,3.61315877496785,0.000302489347255438,1 +"64651",7075.50422456571,-2.90462405909963,0.253215060443642,-11.4709767026125,1.84564277607103e-30,2.26349630057351e-26 +"81566",1571.19394461549,0.25307777247949,0.153941990376414,1.64398142352631,0.100180039610525,1 +"80034",250.040216097832,-1.77701374275221,0.386339755857599,-4.59961398175962,4.23274546767793e-06,0.0519103904156021 +"1465",69146.3492269015,-2.91267059831363,0.395097524282526,-7.37202948462629,1.68049836389782e-13,2.06096319348428e-09 +"1466",1377.19306800768,-0.851184349580351,0.279430066647266,-3.04614446037702,0.00231796437523255,1 +"1471",15237.7733485178,-0.977246334552172,0.191103785678383,-5.11369427394193,3.15918520358657e-07,0.00387442473367857 +"1474",553.863636589641,3.85852215684392,0.663623344499301,5.81432553394449,6.08788411283592e-09,7.46618107598198e-05 +"8530",370.602176921096,-1.45338326233604,0.376429588196152,-3.86096977472105,0.000112937875257654,1 +"1475",10849.7567795753,1.09664464171659,0.584182312501219,1.87723013560823,0.0604865588988797,1 +"1476",27377.8970456718,0.53529605250388,0.4284001457842,1.24952350686997,0.211473661243315,1 +"1477",1269.69446495862,0.418214956843207,0.116025631707561,3.60450488989626,0.000312748561049736,1 +"1478",1111.72219635349,0.893963470860223,0.189768980586573,4.71079872009112,2.46747840347112e-06,0.0302611551401698 +"23283",1657.29899319413,-0.695250643240765,0.194777293378607,-3.56946454682138,0.000357711621189828,1 +"1479",1391.08191836128,0.358375227762728,0.100492627468479,3.56618427431543,0.000362216721570143,1 +"64693",128.99077092682,0.378285699694826,0.250062990766958,1.51276163871591,0.130340216274732,1 +"100128553",88.499177730775,1.45917042411775,0.40994095064173,3.55946489813603,0.000371611196364986,1 +"1487",5916.22934635515,-0.0785913094961899,0.0891682496774811,-0.881382215984416,0.378110979976564,1 +"1488",2202.28278389928,-0.464268218148528,0.168110176132925,-2.76169015361349,0.00575030207240387,1 +"1486",839.306906722451,0.101138726517188,0.162532158003735,0.622269019001542,0.533764989169376,1 +"80169",985.068858762272,-0.797663214290962,0.184815822588189,-4.31598984935578,1.58889280673271e-05,0.1948618138177 +"10664",3183.93945793207,0.160026345825142,0.0897574884158195,1.78287459519576,0.0746067194064926,1 +"23399",3370.17750245759,0.0739387331667734,0.12792748551581,0.577973786232478,0.563281817362333,1 +"9150",1372.56680372179,-0.164395482294248,0.114026910912012,-1.44172529957514,0.149379883525084,1 +"58190",6666.29605141401,-0.704706352616061,0.173493918943162,-4.06185044933435,4.86852635073195e-05,0.597076071653766 +"10106",8195.01390225239,-0.380024617874187,0.189922413695763,-2.00094665226269,0.0453981392773979,1 +"10217",3129.7069303981,-0.872035573049447,0.198128888371475,-4.40135499783583,1.07576949442774e-05,0.131932370796618 +"51496",1231.78339294198,0.388979774523928,0.131216564807588,2.9644105917139,0.00303263353826578,1 +"1489",534.622024140393,-0.778741302858197,0.260541416383599,-2.98893478690407,0.00279951876147288,1 +"1491",103.776682182466,-0.0743433761900809,0.249958608223458,-0.297422748184048,0.766143778499731,1 +"115908",1823.6791037374,1.69967887514774,0.362669491397537,4.68657804271893,2.77810911964369e-06,0.0340707302433102 +"9811",2259.96023763106,-1.16975400532146,0.28417762144136,-4.11627769768928,3.85040350807302e-05,0.472213486230075 +"1495",15488.8458483499,-0.27146612459482,0.144626922458726,-1.87700961881624,0.0605167755454017,1 +"8727",1349.69343369132,-1.28483621560736,0.251452706308414,-5.10965355859593,3.22750079526877e-07,0.00395820697531762 +"1499",19052.7473529682,-0.00152858096189852,0.13565244370873,-0.0112683628846426,0.991009337495619,1 +"56998",2423.20425094153,0.713653707928074,0.210782997442017,3.38572710602233,0.000709899410097704,1 +"56259",2433.06798839852,0.155379382138703,0.120433674239202,1.29016558799072,0.19699317134527,1 +"1500",460.157207039034,0.566167559815457,0.275506732412904,2.05500444528861,0.0398785753539092,1 +"1497",763.262214445431,0.28567381252679,0.17667850575584,1.61691322498264,0.105897013279979,1 +"56474",1341.51083485664,0.491573019296141,0.173884459794986,2.82700949743133,0.00469849343655015,1 +"9646",2961.48125344859,-0.271190566734689,0.115217629573518,-2.35372457963691,0.0185863766940823,1 +"5476",7269.94726696925,0.273532331983688,0.179241265934093,1.52605668431435,0.126995748268732,1 +"1508",43365.3823649794,0.0156611269655688,0.224095187628612,0.0698860476715086,0.944284358320753,1 +"1075",8899.34924933959,1.07023189290046,0.288763947196155,3.70625177863169,0.000210349194569212,1 +"1509",57295.5619540811,0.178173022141058,0.3037570476729,0.586564241080337,0.557496404659126,1 +"1510",1473.52361305089,1.37517926120437,0.910125853924711,1.51097703166461,0.130794302864078,1 +"8722",3066.77482815773,-1.54637385920287,0.272191760646959,-5.68119275736844,1.3375862400467e-08,0.000164041576479327 +"1511",473.786992329694,-4.45082565002426,0.39654111815901,-11.2241213992833,3.10456794605934e-29,3.80744212904718e-25 +"1512",16766.6149081828,0.13458339087189,0.406035808613779,0.331456950389086,0.740299353426805,1 +"1513",5697.03837184617,-0.760786393817307,0.334485960037892,-2.27449425300578,0.0229362862507926,1 +"1519",1504.30744347765,-1.15444714240161,0.190399986861522,-6.06327322512495,1.33378796271843e-09,1.63575755747789e-05 +"1520",4442.77109654726,-0.120121656685321,0.31536687606379,-0.380894969644889,0.703281185283994,1 +"1521",421.999682647789,0.563450046063404,0.378804865439201,1.48744141765475,0.136898264785619,1 +"1522",8557.10624314304,0.201057113267834,0.193714970596952,1.03790178243972,0.299315783627844,1 +"2017",13505.5926484339,0.247993727291244,0.164937292328714,1.50356371072832,0.132693740919789,1 +"83992",536.756830242858,-1.61239738569867,0.498031355988917,-3.23754190636655,0.00120564231102805,1 +"55917",2514.8762319796,0.133803459030686,0.17196528828027,0.778084114351101,0.43651942708603,1 +"90353",153.190661828722,0.70903854043026,0.144265203243957,4.91482716889987,8.88608154385898e-07,0.0108978904053887 +"348180",807.044036676101,0.328939243539967,0.136926920199656,2.40229783201385,0.0162924374663449,1 +"404217",605.010554290631,-0.0875514829008931,0.474424485590429,-0.18454250478226,0.853587885712784,1 +"404093",1314.02939305156,-1.00153028174377,0.293416320268279,-3.41334211003683,0.000641713305312209,1 +"79004",1981.06776658035,-0.386467513692058,0.148567416965013,-2.60129388789918,0.0092872854355915,1 +"8454",3309.05873608751,-0.0577971233598523,0.133820974143907,-0.431898838949558,0.665814938668073,1 +"8453",1883.27193018921,0.15681712930707,0.110371550546305,1.4208111468116,0.155371669267694,1 +"8452",3465.58005535993,-0.50477789525066,0.0994908381310041,-5.07361184942473,3.90334863427538e-07,0.00478706676507532 +"8451",3813.12758589567,0.128453965296027,0.109155701321995,1.1767957490109,0.239277039748089,1 +"8450",3553.9612886082,-0.110314200632885,0.175885026256297,-0.62719495218505,0.530531451668119,1 +"8065",1843.37357744625,-0.138113020681328,0.129221310145803,-1.06880993951765,0.285155319651966,1 +"9820",2292.93748626767,0.299629371407292,0.138326572426717,2.16610132204375,0.0303034452106835,1 +"23113",1906.02555083152,-0.435316897012653,0.153138564627901,-2.84263404238112,0.0044742412313182,1 +"51596",4759.89010634843,0.0939116023308013,0.140719085006667,0.667369336052407,0.50453624759714,1 +"51076",830.79016011762,-1.18218800613735,0.146013635332712,-8.09642197760207,5.659924982773e-16,6.94133199887281e-12 +"1523",6175.77286989552,-0.592815004625558,0.194702376464063,-3.0447240315784,0.00232893903047594,1 +"51503",1915.4541065906,0.0348300081113545,0.119343764618135,0.291846065211704,0.770404322694905,1 +"57703",1533.22196693113,-0.099668637669183,0.106411530131369,-0.936633817276549,0.348946950529473,1 +"54883",1048.47964588793,-0.215182609008776,0.153724927087768,-1.39978995654959,0.161576226262993,1 +"10283",1187.91998870171,-0.252265318419695,0.120057448049523,-2.10120506905692,0.0356229686295723,1 +"55280",1033.32530881786,0.0273105817695724,0.11285399236749,0.241999252278467,0.808780742608904,1 +"143884",870.472805930463,-0.609942770812057,0.132676780890544,-4.59720809261457,4.28189914059917e-06,0.0525132110603083 +"6376",3450.40338546121,-2.69595168894678,0.365855908260402,-7.3688893033481,1.72055448330012e-13,2.11008801831927e-09 +"1525",4507.86270107726,1.48064228059886,0.539234508060952,2.7458225659985,0.00603593983873698,1 +"646243",119.620302161007,2.07830709464006,0.510055970408077,4.07466477252934,4.60806771595849e-05,0.565133424685149 +"2919",1413.68256483716,-0.202598188347232,0.593779315020772,-0.34120115541604,0.732952153525467,1 +"3627",1061.11360459151,1.98634132961107,0.516564363864811,3.84529299456458,0.00012040847754778,1 +"6387",4053.81167573591,-2.6705994999501,0.315945960691036,-8.4527097422261,2.84618628660014e-17,3.49056286188641e-13 +"10563",3002.85497882903,1.50112136593692,0.828356989417195,1.81216719978794,0.0699603655226152,1 +"9547",2640.10642143611,-1.71511797688482,0.399131601769211,-4.29712397936497,1.73028429409011e-05,0.212202065827211 +"58191",2482.0470036871,0.37082920337954,0.261891029853581,1.4159675632528,0.156785001648575,1 +"284340",3085.21030333308,1.07977936245489,0.684979127637276,1.5763682700514,0.114940956440422,1 +"2920",1009.94554649149,-2.80058163641431,0.423421301984525,-6.61417274777701,3.73635223487837e-11,4.58226238085483e-07 +"4283",1437.1999625469,1.63596142441755,0.573489701079871,2.8526430750841,0.00433572896660963,1 +"3579",360.096694538006,-1.96756671462507,0.456312721168339,-4.31188223196437,1.61870649307673e-05,0.19851816431093 +"2833",117.876355346329,-0.83947436143001,0.574920458322844,-1.46015739964955,0.144246820271827,1 +"7852",3296.1599685736,-1.46414908542853,0.38342710188674,-3.81858527533357,0.000134219188383347,1 +"10663",245.016217711148,-0.6640383395091,0.465257238339385,-1.42724988412692,0.153507880439562,1 +"30827",2740.88725841409,0.130081778838442,0.149407264485712,0.870652302524968,0.3839440292998,1 +"80319",140.116111434465,-0.0367919391154946,0.434121456032768,-0.0847503356588702,0.932459877814185,1 +"51523",1148.84957374094,0.427806896606534,0.278312394846986,1.53714640284612,0.124257461877645,1 +"159013",1204.300085116,0.490722383361897,0.182313193352359,2.69164493440402,0.00711005971622644,1 +"91966",540.845443189249,-0.0330050394865634,0.110226180989347,-0.299430128036036,0.76461187720471,1 +"541578",969.69413079138,-0.0225906789015952,0.117040938284574,-0.193015189665244,0.846947072139538,1 +"63932",1004.29938353367,0.183330329323629,0.110895586305627,1.65317967496355,0.0982943017272239,1 +"1534",3887.54781614549,1.13790586525857,0.214777088096394,5.29807846518463,1.17027678818302e-07,0.00143522745302766 +"284613",647.316090478293,0.216947507082904,0.227313161880879,0.954399231825357,0.339881594953441,1 +"11068",770.982483266436,0.444411460744498,0.285737751807903,1.55531237273565,0.119871692055137,1 +"1528",4112.13307632196,-0.426844311491708,0.356486153076575,-1.19736575406344,0.23116402562221,1 +"80777",4786.16046273059,0.223909640962313,0.186913180582398,1.19793392988466,0.230942739397844,1 +"124637",740.011515618866,-0.426828609815726,0.196177288050144,-2.17572897483742,0.0295755322859443,1 +"124936",856.8385320786,-0.494246095216031,0.205806848534771,-2.40150460849474,0.0163278034018712,1 +"51706",4458.43927176113,-0.140690687895626,0.311008398476418,-0.452369416983104,0.651002875255553,1 +"51700",854.376032484391,0.972906184673074,0.285799626488709,3.40415485011668,0.000663691172427686,1 +"1727",12152.6162804431,-0.951164039533486,0.180315666960517,-5.2749938791606,1.32760518616118e-07,0.00162817500030808 +"51167",887.484751463522,0.0573972542054019,0.125906608419492,0.45587165698378,0.648482271963193,1 +"606495",129.382224862235,-0.0388621953146582,0.236948806777008,-0.164010934865063,0.869722535603871,1 +"1535",5700.13289720426,0.753989593150412,0.209142529032471,3.60514715318064,0.000311976103442721,1 +"1536",1329.94684662503,-0.57894769591183,0.289753916090251,-1.99806685522588,0.0457094125298027,1 +"79901",6802.03777329664,-2.27733009240366,0.304092619520739,-7.48893575908817,6.94343133139668e-14,8.51542418482489e-10 +"1537",5927.91341265441,0.117022533943178,0.13190476154872,0.887174447451275,0.374984987341254,1 +"54205",6222.64128173585,0.0209216781094118,0.156552717233313,0.133639827395853,0.893687388946128,1 +"23191",6367.23491869435,0.121655757668247,0.110645145441093,1.09951283613266,0.271544438185487,1 +"26999",1994.73798708901,-1.45546224784751,0.303675353333497,-4.79282309832078,1.64450623876062e-06,0.0201682245121602 +"114757",2077.00654304666,-2.14086636260046,0.316426133910146,-6.76576974267363,1.32602290949731e-11,1.6262344962075e-07 +"50626",2289.16068765799,0.116937279424801,0.123457267467954,0.94718830104639,0.343542835674371,1 +"1540",2722.33682671554,-0.712950463540043,0.195269646380648,-3.65110746475289,0.000261111947232731,1 +"1543",8266.58208865785,-0.849821666619805,0.687088448465922,-1.23684464280723,0.216144764743026,1 +"1545",4723.80422135744,-1.20591791876618,0.444681398583774,-2.7118694926453,0.00669049286010307,1 +"57404",1361.03984353536,-0.614004502338364,0.123829372639439,-4.95847220454066,7.10497013260353e-07,0.00871353537062497 +"1591",4027.33885771557,1.25404970406317,0.819015849763604,1.53116658783237,0.125728226212579,1 +"56603",265.019975806393,-0.27288651706373,0.376897298994672,-0.724034154109414,0.469044767203895,1 +"1593",1368.91944104216,-1.75320761803609,0.31832501121253,-5.50760247006027,3.63753680456989e-08,0.000446107513712451 +"339761",296.586868159709,0.535823416288433,0.458304107777675,1.16914382218098,0.242345690574174,1 +"1573",991.876767217578,1.09518957902658,0.544380386249092,2.01180940146043,0.0442400325260664,1 +"120227",407.951230677294,0.22977759359991,0.163504593288212,1.40532806436134,0.159923746763969,1 +"29785",971.792432139387,-0.0352943437938757,0.465511650578402,-0.0758183898298189,0.939563585267792,1 +"113612",503.049856257514,-1.22356148891519,0.294504861433645,-4.15463935963201,3.25800999688388e-05,0.399562346017839 +"51302",178.438363132281,-2.45403649024895,0.37607698474861,-6.52535674813857,6.78398688316044e-11,8.31988151350797e-07 +"1577",917.872569859872,-1.34908627219516,0.459161777232399,-2.93815020999088,0.00330177008225462,1 +"1580",10161.1045570357,-0.334460317430253,0.534171657756296,-0.626128909263177,0.531230391666432,1 +"57834",1811.12383340996,0.898881647655323,0.574071003768259,1.56580221219148,0.117394928191427,1 +"66002",1184.29593721982,-0.537376126328253,0.37831493115707,-1.42044651709806,0.155477728514395,1 +"126410",1384.43851312131,-0.118225758408897,0.66880940601605,-0.176770478024736,0.859688678958624,1 +"4051",1102.41215867127,1.34653560258483,0.542914600157958,2.4801978104716,0.0131309514111097,1 +"11283",911.222425214782,2.39466769140877,0.668019898569733,3.58472509057872,0.000337433442465657,1 +"285440",976.251187460303,-0.963095353748624,0.312269561830975,-3.08417941249723,0.00204114462877074,1 +"260293",463.263392485263,-0.502162401892294,0.445255057004317,-1.12780841900112,0.259400837066938,1 +"1595",2782.3363034984,0.234106225960546,0.246315219920321,0.950433456918642,0.341892050653262,1 +"9420",143.108948273463,-0.817940029243481,0.291109331682181,-2.80973483232914,0.00495823324890093,1 +"192668",262.968634827097,-1.77973803915543,0.394239702133049,-4.51435517408848,6.35097045889744e-06,0.0778883017079182 +"84418",3228.64662355411,-1.13727883673154,0.304036934432669,-3.74059434211076,0.000183585619447146,1 +"9267",2793.74187611199,-0.33906494348025,0.244696173643199,-1.3856569084511,0.165851692166619,1 +"9266",4544.32882111841,0.121430261481007,0.13306213699232,0.91258313015081,0.36146183010003,1 +"9265",1401.94002466404,-0.251248080052941,0.15423017422727,-1.62904620520436,0.103303237938228,1 +"27128",557.616054890884,-0.732751225985856,0.251470176799674,-2.91386929182294,0.00356979338135921,1 +"9595",519.925997553363,-1.05455329480595,0.386429034526566,-2.7289701357403,0.00635324572436451,1 +"116159",712.321932621138,-1.80243364090824,0.247156250576579,-7.2926888828562,3.03829163050965e-13,3.72616085565703e-09 +"728294",1184.62755835544,0.0539976072178121,0.231239484464442,0.233513784823005,0.81536246666033,1 +"23002",1601.39724116472,-0.487402156016573,0.209314533780179,-2.32856336927105,0.0198822085187724,1 +"23500",1019.40862038948,-1.73455587212359,0.339467259385395,-5.10964113376942,3.22771304273895e-07,0.00395846727561505 +"1601",3050.20956106571,-0.695930746846147,0.30593605811959,-2.27475882092365,0.0229204017520019,1 +"153090",4191.28267968392,-0.920732171844407,0.236347629954752,-3.89566915488291,9.79279884044999e-05,1 +"1602",312.380964473081,-1.52463001870009,0.385700896714706,-3.95288170623007,7.72156152950912e-05,0.946972305978998 +"51339",692.10201575687,-1.22454742407455,0.290993111850293,-4.20816635929356,2.57451304687601e-05,0.315738280068874 +"147906",1607.49812374705,-2.98171905648409,0.38761956851879,-7.69238526289612,1.44416973603693e-14,1.7711297642757e-10 +"1603",4796.64910143748,0.292828716701191,0.124324010765741,2.35536735742026,0.0185044020764985,1 +"1605",7300.29889349954,0.233923310412886,0.153316470466186,1.52575460223941,0.127070990554834,1 +"747",272.483461319386,0.707983895246215,0.331929565598515,2.13293411802478,0.032930131064196,1 +"221955",998.256918451503,0.550106143546823,0.178118693722217,3.08842453338859,0.00201220792860111,1 +"55152",849.542090571514,0.347193224267663,0.162766069566652,2.13308108497078,0.032918075146423,1 +"57291",1780.88458394631,0.181604640431278,0.230167647188806,0.789010282936544,0.430105996501328,1 +"1611",9394.63509597165,0.245731277103564,0.24478400911566,1.00386981155888,0.315441369258999,1 +"7818",4614.65501243833,0.283627334864734,0.105425377343016,2.69031367980703,0.00713848847811353,1 +"1612",3522.31716005542,0.251970152114552,0.268155830776783,0.939640772996268,0.347401854616393,1 +"23604",352.380684203948,-1.03420451774796,0.318607681364798,-3.24601250452536,0.00117033698763327,1 +"1613",2943.08104231533,-0.605700481239004,0.177965388562678,-3.40347348510232,0.000665348707443407,1 +"92196",867.082091349961,-2.68905945219938,0.793514936876219,-3.38879500212716,0.000702004712623896,1 +"27071",1003.73050051879,-0.174004177112742,0.493923240282388,-0.352289916573393,0.724620849466095,1 +"55157",1495.94406499266,1.5153684302209,0.207763301860858,7.29372519905252,3.01500090984118e-13,3.69759711582923e-09 +"1616",3215.05144920669,0.151978192260666,0.0999199201628468,1.52099993687921,0.128259853159639,1 +"26528",5545.23086981735,0.466630297118435,0.0848910931189325,5.49681103133735,3.86720714520198e-08,0.000474274284287571 +"9802",11452.7287720674,-0.181989820833969,0.153771803276156,-1.18350579857047,0.236608749804604,1 +"10926",424.525805208556,1.26382207061828,0.178631054077406,7.07504121915237,1.49404345256363e-12,1.83229489022403e-08 +"80174",396.936816698958,0.986350120516913,0.156229125069279,6.31348425000473,2.72822103081317e-10,3.34589027218927e-06 +"1622",4668.70372752577,0.785660655689302,0.250272211758289,3.13922448748759,0.00169395623025664,1 +"1627",5344.68672507815,-0.362225504220103,0.327266891719441,-1.10681988733107,0.26837180811612,1 +"79007",823.953474978997,1.58672125824461,0.418016945824581,3.79582998750119,0.000147150319002476,1 +"55861",131.540926650158,-1.41762032566798,0.314546211909132,-4.5068745767554,6.57894949568671e-06,0.0806842366151018 +"28988",6272.23370906541,-0.248151071085973,0.134830689250179,-1.84046430724334,0.0657000998011392,1 +"1628",576.775699119806,-0.111967163445877,0.253772003472912,-0.441211646334455,0.659059782612551,1 +"51163",671.359829242811,0.682604042662878,0.13947386250332,4.89413593637754,9.8738575098791e-07,0.0121092988501157 +"1629",1723.44114055309,0.104074422883439,0.132701252724921,0.784276114553171,0.432878111620408,1 +"79269",1839.48036940493,-0.047909287717322,0.128015697580948,-0.374245413825345,0.708221739434792,1 +"80344",3843.57872633889,0.0622032965449491,0.0893975728329272,0.695805205597687,0.486550828777084,1 +"25853",2932.93337921738,0.739621789745777,0.167541467393483,4.41455957890547,1.01215838733449e-05,0.124131104622702 +"25879",2193.7198107579,0.708795284622292,0.190235355968358,3.72588618458594,0.000194630216738287,1 +"90379",1523.76189934967,0.642516636642402,0.154401629948989,4.16133325052771,3.16394981871759e-05,0.388026805767525 +"54876",1543.17792010383,-0.0331872406719485,0.151773999127661,-0.21866222714494,0.82691317528027,1 +"80067",888.471607072519,0.291992062620575,0.171453791495725,1.70303648623516,0.088561240565333,1 +"26094",582.532616198757,0.444889488798458,0.175778138905561,2.53097166444276,0.0113747037222171,1 +"8816",3262.29283303844,-0.199750796750105,0.126949089578275,-1.57347167603704,0.115609641744568,1 +"55827",3424.98098084262,-0.183061319402549,0.20186011398617,-0.906872168986742,0.364474400158114,1 +"10238",6202.87916161667,0.536232167009469,0.0899905478091714,5.9587610039509,2.54157472374331e-09,3.11698724119879e-05 +"50717",4910.15143052792,-0.283044904249005,0.148222282826176,-1.90959752374708,0.0561850542036277,1 +"79877",2146.52796080841,0.0338656913941348,0.175071471674718,0.193439234103527,0.846614991270914,1 +"285761",302.368832022808,1.04569485492148,0.221100350600712,4.72950337745015,2.25069711050337e-06,0.0276025493632133 +"131566",2275.86125870812,0.20781333049993,0.26083317376043,0.796728911065593,0.425608489375082,1 +"8642",3022.5546892456,-1.81069388851569,0.32375555178179,-5.59278096869854,2.23461121681766e-08,0.000274052719630518 +"1633",992.124187813697,0.367392714629673,0.20609333402852,1.78265209964933,0.0746429532346059,1 +"9201",709.202929304409,-2.68946292822369,0.41519295940072,-6.4776217113739,9.31796048419192e-11,1.1427546737813e-06 +"166614",428.375401517843,-1.87420192085364,0.392542412647586,-4.77452081728617,1.80135650209583e-06,0.0220918361417033 +"9937",529.554281495746,0.548476912003001,0.128526566350461,4.26742056196722,1.97746151751194e-05,0.242515880507664 +"64858",578.575494673643,1.20325164707294,0.168871465103075,7.12525142325559,1.03890868359471e-12,1.27411760956056e-08 +"64421",842.702931549524,0.340407669552693,0.211883159384663,1.60658199802798,0.1081460941334,1 +"1634",45750.7446540799,-2.5940867239721,0.318208489033052,-8.15216065371109,3.57478958777169e-16,4.38412195044320e-12 +"55802",1672.18486136574,-0.429262116663385,0.14307464911688,-3.00026677900649,0.00269743236106111,1 +"196513",890.922966471458,-0.515430423197619,0.275303066579346,-1.87222913860665,0.0611749094523142,1 +"167227",1489.81806440857,0.60789928116977,0.152981856430364,3.97366913537542,7.07738596440343e-05,0.867970614674437 +"28960",981.750472307065,-0.189548265706273,0.169958081088033,-1.11526480231377,0.264736963799943,1 +"1635",2912.63122542222,-0.0820089570284254,0.118880251490837,-0.689845083602858,0.490291613794114,1 +"1639",9676.9950953373,-0.367717784951543,0.177547386966443,-2.07109657446574,0.0383497719222816,1 +"10540",6003.71747537855,-0.1728869101735,0.107515659117769,-1.60801609358248,0.107831654118726,1 +"11258",2102.01066074074,-0.260822355850373,0.139682699200105,-1.86724882425651,0.0618668483046526,1 +"51164",3024.25623615258,-0.258967181265628,0.104845780498923,-2.46998191089137,0.0135119884543506,1 +"84516",3574.29092075425,0.00646094765168451,0.108982302322595,0.0592843747470084,0.952725606369347,1 +"10671",1268.43652200703,-0.678802180405635,0.139364540620992,-4.87069506619814,1.11206351617234e-06,0.0136383469623375 +"79077",2102.76922974625,0.748617811572453,0.186232139554261,4.01980997138432,5.82451025695261e-05,0.714317937912668 +"54165",1128.69569056594,0.344583704367522,0.118315494544447,2.91241401385575,0.00358646927809015,1 +"55208",483.37482327822,0.12233376893439,0.166982544383928,0.732614114761118,0.463793819831795,1 +"123879",730.429660926667,-1.23008998646146,0.256624227378346,-4.79335095921367,1.6401832139826e-06,0.0201152069362826 +"23142",1782.02098039378,-0.844076822725233,0.163986803977994,-5.14722405858038,2.64369483803362e-07,0.00324222734936443 +"84259",1396.44061621207,0.0595714308364514,0.120823957871708,0.493043200088718,0.621982063255782,1 +"51181",2417.81698145081,0.590522300971559,0.196228212974853,3.00936492270474,0.00261794461496617,1 +"79016",1934.74206618817,0.131331504976251,0.113853951197631,1.15350853962267,0.248701714497384,1 +"23576",2390.05907106467,-0.930815792545457,0.3088091860079,-3.01421018130479,0.00257649244173133,1 +"23564",3541.71820204704,-0.710996294559397,0.309672488409025,-2.29596209276521,0.0216780489013508,1 +"1642",13761.9781324666,0.263810372932595,0.107970593145537,2.44335392857383,0.0145514588951969,1 +"1643",1736.58160809083,-0.0366561198125139,0.227231085266119,-0.161316484360335,0.871844140652981,1 +"80821",1062.73395546506,-0.0867145271369747,0.17545181454381,-0.494235567539954,0.621139823477081,1 +"23259",2343.81704893286,-0.162732526114228,0.247322561730899,-0.657976874310766,0.510552991233371,1 +"84301",226.3205356524,0.725100394158388,0.241009824633053,3.00859267983114,0.00262460735780815,1 +"1649",999.49157271697,-0.0871036636176259,0.232485450596544,-0.374662859091282,0.707911217628938,1 +"54541",13016.0808511227,0.732160017599102,0.381202017548143,1.92066144431315,0.0547744033470621,1 +"1650",12722.2127363357,0.906833627488657,0.143558971866134,6.3168021872869,2.67031023837578e-10,3.27486847634405e-06 +"780",16379.838849223,1.17083898201581,0.35285401605861,3.31819655928566,0.00090600703491413,1 +"4921",880.132374779665,-1.70424819117633,0.378206736940402,-4.50612859242877,6.60210866299502e-06,0.080968260642971 +"65992",2615.71202954592,0.251814176475743,0.137080607182414,1.83697885245469,0.0662130173670362,1 +"1652",299.666732291642,0.492991017018846,0.198762955302671,2.4802962718487,0.0131273256641769,1 +"100037417",388.103402487375,0.568440422745249,0.177974977525757,3.19393451061391,0.00140347951919877,1 +"1653",6005.1386534811,0.118386551621437,0.104312894173484,1.13491771616026,0.256409796244091,1 +"1662",917.177591394563,0.177439830768305,0.113577916897266,1.56227403720395,0.118223445547339,1 +"1663",1068.75139553101,1.28566970434832,0.203258796040797,6.32528446193428,2.52766500634489e-10,3.09992836378138e-06 +"440081",457.815760265142,1.3464138526801,0.185168925697297,7.27127323123932,3.56114801977344e-13,4.36739193145015e-09 +"10521",20885.6621094968,-0.382637984614882,0.1136143410123,-3.36786695416784,0.000757521425862648,1 +"8886",3122.90159535806,0.164187123463069,0.11116931190172,1.47691049494144,0.139699631315284,1 +"55308",2275.60625159641,0.0325993306982696,0.126942365492499,0.256804184889685,0.797329939318919,1 +"11269",1405.89393747842,0.0619920270826575,0.123335701802639,0.502628405048984,0.615225554607363,1 +"11218",832.59974524426,0.226569206934683,0.119512662153413,1.89577575172618,0.0579897035680867,1 +"9188",4894.44130741667,0.258608006027089,0.250781816968802,1.03120716307459,0.302443682286438,1 +"9416",4771.05004580764,0.280024082173389,0.110613801793185,2.53154739855114,0.0113560467998285,1 +"57062",7240.22641943921,-0.658729642369754,0.132818744056294,-4.95961354739627,7.06335524540151e-07,0.00866249887296041 +"55661",3953.89329942165,0.352053621149769,0.131346455424939,2.68034352362831,0.00735466408021016,1 +"55794",826.644534233251,0.318434128499324,0.197301329374615,1.61394821569962,0.106538659102501,1 +"64794",589.032736169348,0.538557702915009,0.159875221497802,3.36861270852039,0.000755475019284765,1 +"10212",3414.66418029064,1.07941255140894,0.159480286733039,6.76831333527644,1.30292346331261e-11,1.59790533540659e-07 +"1654",19728.916626231,-0.552534521564288,0.130451699949752,-4.23554864963135,2.27994332714749e-05,0.279612249641368 +"8653",2276.75712760081,-1.34092786588029,0.289952027139489,-4.62465421990377,3.75223821676946e-06,0.0460174494904606 +"51428",2970.52345220566,0.42330583334096,0.0970361893158144,4.36235013272488,1.28672725821294e-05,0.157804230947235 +"11325",6884.83542068743,-0.161813634619464,0.122113996352615,-1.32510309589912,0.185136959458522,1 +"9879",3158.71115270107,0.0642599167888629,0.125143423325659,0.513490162576423,0.607608490414695,1 +"51202",3139.15609752568,0.106824052766707,0.135103935215693,0.790680542325899,0.429130433314236,1 +"54555",2273.2125112132,0.677759333507582,0.146959958288037,4.6118639485403,3.99074174694761e-06,0.0489424567845655 +"1655",31748.5492039396,-0.417951593203016,0.162872361456414,-2.56612963344836,0.0102840385813825,1 +"79009",1479.27013840548,-0.34712263580898,0.139491864953637,-2.48847942440481,0.0128290660362192,1 +"317781",1328.24687719607,0.127268407427307,0.144810250015633,0.87886325321286,0.379475425030384,1 +"11056",1632.25233128422,0.552689649823522,0.132616667860879,4.16757304144694,3.07859880746877e-05,0.377559357747969 +"79039",3908.10857423081,0.423627536199259,0.106865675275286,3.96411228495956,7.36695731702784e-05,0.903483645360294 +"57696",986.07185377718,0.763987339556851,0.111386867967648,6.85886364790104,6.94104488840283e-12,8.51249745113723e-08 +"54606",3582.18053686417,0.535870535028383,0.12699465382086,4.21963066086458,2.44702870543411e-05,0.300103600434439 +"23586",1067.86598534015,0.143495415703255,0.23294883946384,0.615995409264658,0.537897549672299,1 +"83479",759.304338389981,-0.278446573276128,0.148932699602612,-1.86961341612077,0.061537520864374,1 +"1656",6606.66667889777,-0.269133283294291,0.1237141226795,-2.17544511059196,0.0295967771523362,1 +"55601",1370.81260792114,0.482867963990633,0.241380583980734,2.00044243835773,0.0454525096802169,1 +"91351",864.550392444088,0.61405792690444,0.173220558613623,3.54494831225044,0.000392690082935657,1 +"10522",1432.79285299697,-0.191375827394662,0.136054884491114,-1.40660754746487,0.159543793814321,1 +"1666",3055.4215805756,0.098751596213119,0.193272023166825,0.510946150379356,0.60938876420711,1 +"26063",785.894470438484,0.0473739990156095,0.220473705429002,0.214873691733118,0.829865796759661,1 +"9191",1937.80598910349,0.23222657394903,0.112528372191648,2.0637157494247,0.0390446751988788,1 +"162989",1539.00101854192,0.345298028765725,0.222916105162501,1.54900440465712,0.121380661242774,1 +"50619",1339.83221798445,0.295168744404794,0.365771128172171,0.806976608240813,0.419679960054892,1 +"54849",1884.15799477228,-0.026473502286245,0.144903494448917,-0.182697473148777,0.85503539852687,1 +"1672",621.00429356863,-0.00772100421137202,0.596316378640942,-0.0129478318689969,0.989669413504183,1 +"8560",2443.83348320633,-0.403676836302888,0.21399688157837,-1.88636784482793,0.0592454025431106,1 +"123099",993.299686379449,-0.408311939860879,0.608174142437127,-0.671373396811408,0.501982688012169,1 +"7913",7092.97312519783,0.462092165037743,0.18278871681744,2.52801252223492,0.0114710260552062,1 +"57706",1508.15807579,-0.302315797784546,0.181217690875967,-1.66824660618517,0.095266782447118,1 +"163486",1218.64984532357,0.369022799986846,0.17789521876995,2.07438290100453,0.0380437640626001,1 +"79958",863.559689345756,0.223249964647589,0.35850341641486,0.622727579224082,0.533463556037806,1 +"27147",952.281809832855,-2.69784477246032,0.317813584483713,-8.48876481111705,2.08844889114318e-17,2.561273720098e-13 +"163259",555.998358301642,-0.351399091665774,0.388320838877152,-0.904919480195451,0.365508046084513,1 +"79961",2416.83272491654,0.897320401068976,0.372466963517389,2.40912749038234,0.0159907109054552,1 +"22898",750.32701540276,-0.776571070085008,0.123558721277548,-6.28503647541488,3.2777672418582e-10,4.01985374541489e-06 +"10260",1148.16928092098,-0.395888789910147,0.181453034951318,-2.18177001016467,0.0291265109715619,1 +"9909",2180.91188688127,0.175673739900538,0.15873453104119,1.10671407631495,0.26841756749198,1 +"55667",3199.14296157971,-0.430700514772058,0.209262643914873,-2.05818155937696,0.0395727081109161,1 +"23258",3480.9072398142,-1.01851131171521,0.257944182339977,-3.94857252633356,7.86185979833513e-05,0.96417848566782 +"160518",437.088983692816,-1.32110449829429,0.244463226387578,-5.40410317664619,6.51334465525073e-08,0.00079879658851995 +"8562",3247.6648740318,0.53332425762502,0.0773760019553091,6.89263136047089,5.47696757863486e-12,6.7169530384378e-08 +"55635",487.948739883468,3.22384350809137,0.418975587872291,7.6945855591807,1.41953531168834e-14,1.74091810625458e-10 +"55789",369.381086863402,3.04183770875323,0.40829294793641,7.45013531124467,9.32445475529916e-14,1.14355113118989e-09 +"9681",1018.18676800028,0.210589270164709,0.140069042978222,1.50346761630585,0.132718501682418,1 +"64798",715.461248825938,-0.728547500184129,0.27064366635984,-2.69190670516365,0.00710448161023488,1 +"51071",1330.72726769403,0.539636858617841,0.163560981989559,3.29930067705444,0.00096926033068777,1 +"79139",4067.77437972692,0.326365881294093,0.161580389118233,2.01983596570795,0.0434004051646202,1 +"51009",1229.35957480158,0.232243327579103,0.142476637190773,1.63004498251973,0.103091990288381,1 +"91319",632.826103983814,1.40004128523544,0.454173019683134,3.08261659006564,0.00205189334806983,1 +"1674",218097.361006748,-6.14212283174546,0.584892842872039,-10.501278835257,8.52177180913665e-26,1.04511009467252e-21 +"55070",308.002800820672,-0.624004306868594,0.252834933237803,-2.46803042157821,0.013585877297325,1 +"28955",1121.53455615632,-0.405743580978334,0.151582311871726,-2.67672115544515,0.00743464815593024,1 +"1676",1426.8673012405,0.634508316345582,0.119731333911909,5.29943412150083,1.16162139213638e-07,0.00142461247531606 +"1677",238.738469819635,0.691197669732457,0.148746760840749,4.64680821165891,3.37110311040309e-06,0.0413432085459835 +"8694",2287.71697782665,0.279775849897524,0.127367906554989,2.19659612428925,0.0280493032771418,1 +"84649",2633.85044883544,0.983274547765745,0.421943604845611,2.33034589569268,0.0197878768686163,1 +"25786",99.8688814752675,-0.248780340196309,0.177548454827828,-1.40119687573489,0.161155208325273,1 +"9993",6644.39123666478,-0.0078210359550269,0.101305888523396,-0.0772021850755561,0.938462703398016,1 +"8214",435.445482928914,0.539017145493508,0.185626770238576,2.90376837780854,0.00368700817026269,1 +"85359",1543.8826907504,-0.0401831231071557,0.139262596696046,-0.288542107216765,0.772931803479032,1 +"54487",1823.13588888864,0.0354003079498988,0.138946028346004,0.25477740077424,0.798895030961559,1 +"1606",3772.99650052014,-0.192613474765916,0.352652628608958,-0.546184713057951,0.584938973181421,1 +"8527",1275.37860687547,-0.595196040833892,0.234457834344923,-2.53860589686361,0.0111295115158473,1 +"8526",595.950304545261,-0.521561611978424,0.237506752306738,-2.19598645896531,0.028092912608309,1 +"1608",497.664667282571,-2.28469149171401,0.440282121187749,-5.18915345812952,2.1125225167483e-07,0.00259079761454012 +"160851",310.14992664888,0.081663520701723,0.344676866720963,0.236927767966031,0.812712827490172,1 +"1609",1222.32046575211,0.00551797139583735,0.15648314973699,0.0352623998501545,0.971870505245169,1 +"8525",1942.88894659689,0.197152743899799,0.193804507929053,1.01727635753433,0.309021980397723,1 +"1716",2431.52078479599,0.57577759063266,0.106528089068278,5.40493681683916,6.48312421220138e-08,0.000795090353384377 +"1718",12034.2519199248,1.88925738947431,0.417090917268076,4.52960568369325,5.90938697915937e-06,0.0724727219124105 +"1717",2854.68236654407,1.70765448691475,0.285503597707183,5.9812012900312,2.21497949549579e-09,2.71645085327603e-05 +"79947",1729.72902063688,-0.0263982536960963,0.129692916275391,-0.20354429874984,0.838709624887225,1 +"1719",767.843925546631,0.639673837966782,0.186093501421632,3.43737869984764,0.000587373741420807,1 +"1723",458.480008999864,0.433755909468155,0.160167599093914,2.70813767529737,0.00676619475824855,1 +"1725",2385.88550502087,0.180810499298971,0.091876242148217,1.96797882751107,0.0490704738632742,1 +"115817",1325.44792988568,-0.373529580914928,0.215515288116551,-1.73319296361436,0.0830613772559863,1 +"79154",742.46095976346,0.800900653745946,0.236839596108135,3.38161636359267,0.000720607052514627,1 +"79758",471.864994904696,-0.911562435481673,0.169094615075219,-5.39084248824943,7.01281234811047e-08,0.000860051306372269 +"147015",1318.23597580073,1.20686354774001,0.281230427427861,4.29136903420448,1.77574921966876e-05,0.217777884300177 +"10202",35544.7127600284,0.553000220913639,0.779625308924512,0.709315378276392,0.478128787359219,1 +"9249",7786.8514508215,-0.00413676409065129,0.297812030435363,-0.0138905204219046,0.988917324609002,1 +"10901",634.801521878376,-0.276277910096928,0.165928075101166,-1.6650461950365,0.0959035399253695,1 +"317749",831.504678705822,-0.212497742971367,0.168775672576912,-1.25905433956739,0.208010705256437,1 +"51635",2460.46872972882,0.0100433005862279,0.171501271044227,0.0585610854373079,0.95330170678338,1 +"25979",1298.29583752276,0.0171237895840768,0.224091561145609,0.0764142544972953,0.939089529314956,1 +"10170",863.831933167295,0.262714327753722,0.576888464790362,0.45539882280224,0.648822342026019,1 +"207063",266.188632659951,0.0629534593384611,0.201124682363288,0.31300712870611,0.754275246175614,1 +"55526",1809.81676170096,1.04144039992666,0.191554783951215,5.43677572778285,5.42533559741253e-08,0.000665363157666672 +"1665",5360.13448003134,0.0632339534904197,0.164558741559782,0.384263715747047,0.700782998042144,1 +"8449",2423.7761729671,0.408409328409481,0.130979826216883,3.11810864471004,0.00182015693744302,1 +"54505",2088.38645843052,-0.231060238499465,0.145976231392332,-1.58286206114238,0.113452907624317,1 +"22907",4664.1700130816,0.168716800781143,0.105567780279116,1.59818460078505,0.110001899830846,1 +"55760",1606.96032081067,0.322163954328129,0.1353387774054,2.38042607229341,0.0172926304816995,1 +"56919",1130.10678360304,0.557689204235906,0.155368821702526,3.58945377923813,0.000331371576905873,1 +"9704",1502.60123967645,0.402405991576842,0.130540429544962,3.08261580706874,0.0020518987463266,1 +"60625",622.391582329204,0.493631559519134,0.156296047374545,3.15831121650955,0.00158686050911737,1 +"170506",2156.98739866935,0.243754376450751,0.15298346052498,1.59333810082659,0.111084363699735,1 +"57647",1424.77966548388,0.701106347616517,0.115985655584279,6.04476772653211,1.49625401561912e-09,1.83500592475529e-05 +"9785",3783.23423413226,0.0420212248144571,0.132138098049286,0.318009911106665,0.750477418902262,1 +"79665",2560.59150489856,0.380017429728722,0.162375602371797,2.34036040007158,0.0192651391442673,1 +"90957",1444.35250172206,0.480068188839141,0.128150592643908,3.74612538993953,0.000179586851707688,1 +"79132",868.873691942421,0.219626925632376,0.249913699327965,0.878811070473398,0.379503722801641,1 +"1659",2738.29704561747,0.485198141122435,0.109727164616413,4.42185982676761,9.785493482809e-06,0.12000929207317 +"1660",9039.93129386927,0.313987354104372,0.105023313236657,2.989691949604,0.00279258924673249,1 +"56616",2603.3425316532,0.30473907609614,0.0863244134289387,3.53016098217682,0.000415306885972213,1 +"1729",6588.07741570336,0.355597667394377,0.199589666233502,1.78164367978029,0.0748073566221323,1 +"1730",1073.35498941454,-0.281334982758876,0.255544653031321,-1.10092298712427,0.270930176520309,1 +"81624",419.227296600383,2.19557511565939,0.405036392033116,5.42068603919394,5.9370750318669e-08,0.000728122881908157 +"23405",4034.04701226968,0.0769321632867656,0.191070472675035,0.4026376352646,0.687214818891736,1 +"400242",113.212662208588,0.351433548577475,0.212237110315139,1.65585343701509,0.0977515030909259,1 +"11083",3552.86047222141,-0.14993647749136,0.110515442113964,-1.35670160317275,0.174876042888908,1 +"27292",1253.51679445804,-0.406218199311463,0.136888132258453,-2.96751948185325,0.00300213256599908,1 +"1734",1070.10599529527,0.939969865121554,0.4569624121985,2.05699602424464,0.0396866083032101,1 +"23181",1799.57817032439,0.059737555806611,0.155117474724798,0.385111709126224,0.700154653197167,1 +"57609",2349.21033331921,0.691989407870432,0.184332716484768,3.7540238166436,0.000174018318368176,1 +"22982",2190.81618616034,-1.06346650584001,0.271583937089971,-3.91579309599487,9.01075013436672e-05,1 +"148252",462.002316427585,-2.81476236657196,0.50081455540705,-5.62036852999249,1.90550549379944e-08,0.000233691193759563 +"9077",116.651518104958,-2.05913884225989,0.364859453974472,-5.64364941028486,1.6648291786668e-08,0.000204174650471697 +"22894",2531.22072719256,-0.0577814484029984,0.187633335974482,-0.30794873471128,0.758121341574427,1 +"115752",1472.65294248688,0.00997923230926115,0.15730844957003,0.0634373572210349,0.949418240383074,1 +"129563",1155.97659648669,-0.153013483513196,0.134283297453425,-1.1394826193203,0.25450191354734,1 +"84976",626.221414677635,-1.55951881992234,0.336490344658049,-4.634661423962,3.57522154267692e-06,0.0438465169993898 +"85455",265.901301489759,1.36177328466611,0.373435303185604,3.64661100075288,0.000265721720900897,1 +"85458",2513.82604974163,-2.65833708986924,0.347308614723421,-7.65410639752256,1.94661062668825e-14,2.38732327257047e-10 +"1736",3831.86993984083,0.90369807385423,0.168304118213526,5.36943530227655,7.89835650888685e-08,0.000968654442249884 +"222161",540.003248629972,0.110273699251925,0.18113918339394,0.608778825131958,0.542671050823643,1 +"22943",3295.3780694344,-2.52180833642131,0.505489003306475,-4.98884905492664,6.07400823197013e-07,0.00744916369568817 +"27122",3257.25948120955,-1.04969780627592,0.265052798825388,-3.96033473680633,7.48447754121326e-05,0.917896325654394 +"1737",1849.38761700046,-0.0419110412936434,0.129862454563287,-0.322734091501547,0.746896631260863,1 +"10395",2104.98838609985,-1.53083823289749,0.249982173465553,-6.12378959537462,9.13755441385207e-10,1.12062967331482e-05 +"1738",4499.7560932856,-0.202061551486134,0.149177845453771,-1.35450107133201,0.175576571829775,1 +"10301",189.340416879859,0.287632960143004,0.20646243915487,1.39314909443285,0.163574709711855,1 +"1739",3655.92711883561,0.174536973203634,0.164615843533162,1.06026837670988,0.289022521591289,1 +"1740",220.304677386978,-3.3388539646003,0.382926199926569,-8.71931449255907,2.79891149734263e-18,3.432585060341e-14 +"1741",2674.33080527664,0.0759589150212922,0.172141710096917,0.441258048258769,0.659026193382456,1 +"1742",724.874845780664,-0.657595779396632,0.238422067069039,-2.75811625778001,0.00581355180286919,1 +"9231",4842.37471008356,-0.32892517722907,0.166610712808832,-1.97421385266191,0.0483574315088056,1 +"22839",4958.05024948958,-0.406065035457246,0.175870682874865,-2.30888416886497,0.020950009704351,1 +"9787",954.881630146566,3.52327471744685,0.473680285722604,7.43808603322401,1.02154525865987e-13,1.25282310522046e-09 +"28514",578.359572282758,-0.919977178296814,0.289149116005909,-3.18167038172102,0.00146428365306061,1 +"54567",565.119831602131,-0.268363211143812,0.215874001144306,-1.24314743656611,0.213813508139886,1 +"1743",3734.92619889918,-0.405701944152909,0.122550424630586,-3.31048990956866,0.000931328099801105,1 +"1749",259.006839195543,1.61872184528984,0.541465524151264,2.98951968886136,0.00279416439035101,1 +"55929",1575.19008192777,-0.0571169633709169,0.148837778838367,-0.383753129190029,0.7011614304888,1 +"1756",3983.4530029049,-3.24880457976049,0.456801729508661,-7.11206716151212,1.14317603457437e-12,1.40199108880201e-08 +"93099",3907.55205817621,1.26387690475284,0.549573818717069,2.29974001982709,0.0214629533840199,1 +"1760",6458.62639372395,-1.78204901071746,0.389795897626418,-4.57174901421199,4.83670060531571e-06,0.0593172962235919 +"9988",1653.66099488902,0.34772424029072,0.169017123459342,2.05733142993862,0.0396543560409491,1 +"1762",1493.74845503011,-0.427357117065945,0.14748814342323,-2.89756930385657,0.00376066639820906,1 +"1657",1809.05276592518,-0.578611257418081,0.153529205295423,-3.76873739628045,0.000164075392393359,1 +"23312",1266.54483602306,0.46358537380813,0.214088996925032,2.16538626677048,0.030358116870848,1 +"1763",311.21302907888,1.8014264852084,0.215753046890121,8.34948340787897,6.85621766805874e-17,8.40846534810724e-13 +"55172",623.649518933108,0.819997547397494,0.159439241414927,5.14300958860889,2.70371817407945e-07,0.00331583996869104 +"25981",345.024051826654,-0.348598071369966,0.238132326931509,-1.46388386600795,0.143225682398356,1 +"127602",232.75278148425,1.57813629139438,0.267228205766021,5.90557529984749,3.51418224659272e-09,4.30979310722131e-05 +"8632",148.877166195107,0.494835095862787,0.337085134593712,1.4679825512306,0.142108962629316,1 +"1767",143.806850499495,0.186112792744666,0.438459892176865,0.424469366674917,0.67122354140901,1 +"3301",6139.89693515204,0.207982631866293,0.155185546816979,1.34021908697194,0.180174127994152,1 +"10294",4512.51372848381,-0.158368955227339,0.14289107308551,-1.10831944786758,0.26772387935562,1 +"9093",2236.61379446184,0.0759032156980007,0.124628272615953,0.609036891106561,0.542499986521196,1 +"55466",3896.40090115194,0.468026841459777,0.22934779258715,2.04068605230604,0.0412820426012959,1 +"3337",12651.4172825588,-0.304869357402342,0.298138278042572,-1.02257703842647,0.306507870703968,1 +"51726",3280.18341346288,0.8683661541687,0.172117193170881,5.04520285377053,4.53040457942758e-07,0.00555608817620998 +"54788",2232.225313341,-0.446257399283278,0.135542005948317,-3.29239187631205,0.000993390870976205,1 +"79982",635.91778224541,-0.0408702284320875,0.165863347664963,-0.246409040981396,0.805365608277508,1 +"3300",4519.97663821548,-0.27024586659507,0.165088518687284,-1.6369755373902,0.101635581051576,1 +"11080",1953.93741397339,-1.34881490486705,0.275292337634605,-4.89957300103762,9.6045160103973e-07,0.0117789784351512 +"25822",2313.03870309673,-2.41241466173588,0.367941777270505,-6.55651195586389,5.50809054535647e-11,6.75512224482517e-07 +"10049",3622.50146506873,-0.328238566485394,0.176476519606606,-1.85995602824155,0.0628917473749049,1 +"4189",1190.46040795218,-0.361649935213244,0.129535343689587,-2.79190161474296,0.00523992858956519,1 +"64215",1822.78427434429,-0.605600468569379,0.180900878146094,-3.34769225432008,0.000814874449645645,1 +"54431",3829.85397621709,0.429576438399858,0.147247090912414,2.91738489187117,0.00352979906547252,1 +"55735",1503.00776200014,0.400285622319535,0.100057010985525,4.00057545570138,6.31886340770445e-05,0.774945408320874 +"56521",122.47779929508,-1.19327990291286,0.302585688094324,-3.94360985950162,8.0264196720264e-05,0.984360108577318 +"23317",3513.57236073442,0.0657316676996148,0.135659487554858,0.48453424735984,0.628006765237566,1 +"85406",2200.58395133516,0.434724023996025,0.109333283966004,3.97613616116384,7.00440303101002e-05,0.859019987723069 +"29103",1445.4168682291,-0.674179732731769,0.28410315053831,-2.37301040644693,0.0176437668116035,1 +"23341",1335.17031824477,0.427447079101535,0.13462057894313,3.17519863944507,0.00149733962353925,1 +"55192",692.585572898408,0.0287616991172169,0.150361513010663,0.191283650592005,0.848303369527244,1 +"202052",518.262929736521,-1.31733380325297,0.269488758823568,-4.88826995605935,1.01725975157806e-06,0.0124756735933533 +"131118",556.087349886966,-0.114705892942844,0.140179438233849,-0.818279017151505,0.413197884637636,1 +"27000",1479.17124268099,0.501469256790438,0.13391636062072,3.74464519843625,0.000180648880557726,1 +"134218",3140.08507283186,-0.215743001431715,0.158611770859232,-1.36019540203726,0.173768097217279,1 +"120526",550.073923144773,-0.264759455010599,0.235221539762688,-1.12557487412808,0.260345508239731,1 +"548645",463.723747402317,-0.30702605704828,0.142704368140157,-2.15148324504499,0.0314380768930111,1 +"51277",364.512883865855,-0.655074116220461,0.230984560036416,-2.83600824278984,0.00456812670045723,1 +"5611",4574.40131086125,-0.068933955234935,0.150524186817098,-0.457959326621022,0.646981662914539,1 +"84277",715.203451523928,-0.218360242597702,0.165163137692643,-1.32208824346783,0.186138768160102,1 +"3338",1584.26814398066,-0.148670036534747,0.139679386094763,-1.06436633701901,0.287162777266883,1 +"80331",4476.2308078068,-0.287286324926947,0.166061463978933,-1.72999995329074,0.0836302835725111,1 +"9829",159.352140896026,-1.57518912723813,0.494453543201588,-3.18571713944807,0.00144395699602989,1 +"7266",2867.34799531145,0.267630936736252,0.128174697883391,2.08801691094862,0.0367963092477442,1 +"22826",3021.54204953994,-0.0450194287406014,0.122343607377301,-0.367975325443559,0.712891632775509,1 +"23234",1269.67348618348,0.655754335170676,0.181376174233561,3.61543812433849,0.000299840088371018,1 +"83544",797.315497275604,-0.0604890978671553,0.138040252292432,-0.438198980823446,0.661242047331859,1 +"10126",1048.85914452804,0.436640189627814,0.141849080934391,3.07820245821522,0.00208253378418366,1 +"7802",367.410764649074,-2.53783264869789,0.356243973785044,-7.12386127331156,1.04944674717048e-12,1.28704149072988e-08 +"1773",202.060442097927,0.625003896505425,0.201841254219358,3.09651215219948,0.00195811835787666,1 +"1774",963.484778418484,0.215668268977032,0.182205265054751,1.18365552670624,0.236549450458637,1 +"1777",2819.4637013311,0.570725783690822,0.162161116110466,3.51949836915304,0.000432363694244177,1 +"373863",309.066997633787,0.679336753878805,0.172768947363589,3.93205355618191,8.42232954129988e-05,1 +"144132",358.8202290449,-0.803479125131345,0.258738962603623,-3.10536579820118,0.00190043837741454,1 +"728489",390.656697310199,0.102844612678036,0.154406159368127,0.66606548015251,0.50536924771782,1 +"1759",777.723091233683,-0.361895733355802,0.318032910313029,-1.13791913233005,0.255154251455171,1 +"10059",4487.25719698592,0.211731367061446,0.139029377166681,1.52292538006269,0.127777375253565,1 +"1785",8933.40955118541,0.286621007085872,0.138088770478388,2.07562864158262,0.0379283103307642,1 +"26052",304.188241761885,-0.915641146902532,0.365146530448035,-2.50759919799605,0.0121554457304325,1 +"100628315",348.346526012474,-1.32739636821012,0.364557417601411,-3.64111743204586,0.000271457274256786,1 +"23268",2593.62465679721,-1.02311303784226,0.273312242694348,-3.7433853227952,0.00018155748327953,1 +"1786",3669.73339350858,1.14975236601867,0.176173146876153,6.526263431208,6.7430682673301e-11,8.26969892305364e-07 +"1788",1581.65436164181,1.02449837076992,0.215320197104753,4.75802263115849,1.95498584859318e-06,0.0239759464471467 +"1789",470.629821317404,2.17173020733869,0.349177456717054,6.21956018511952,4.98550365508982e-10,6.11422168260216e-06 +"23549",3289.60337235895,-0.140953611431152,0.154791435448465,-0.910603425976237,0.362504364731959,1 +"116092",1696.15810828571,-0.0207578889134104,0.186489211656465,-0.111308792230024,0.911371483542035,1 +"30836",4071.33498458898,-0.0229754620477527,0.193092612092485,-0.118986748373098,0.905285854459081,1 +"1793",3334.9782466935,-0.642152997059616,0.201348008171486,-3.18926918071472,0.00142632994236298,1 +"55619",435.290182907067,-0.662495433611577,0.326350664459148,-2.03001098437937,0.0423554227597628,1 +"139818",590.781567197279,-1.12890404249631,0.310429958519177,-3.63658213879047,0.00027627957083676,1 +"1794",681.702859971482,-0.79902653427741,0.279495647110103,-2.85881566507061,0.00425225801481791,1 +"1795",450.196788166681,0.783747421254864,0.393443096112069,1.99202230004722,0.0463686111768939,1 +"9732",505.740067255346,0.0416166521396166,0.207476627720901,0.20058477235132,0.841023265979659,1 +"80005",677.872082244045,0.189790767285139,0.274506144692266,0.69138986851425,0.489320569280851,1 +"57572",2268.73007196006,0.195132792994416,0.141658241144864,1.37748987575574,0.168360842797353,1 +"85440",1967.77741276712,0.0675900290060928,0.177680808750784,0.380401403400267,0.703647473024906,1 +"81704",1544.57432160311,-0.407138753128399,0.325031513954108,-1.25261316410655,0.210346521706276,1 +"23348",3369.09219649829,-0.0408191355272247,0.188208493517228,-0.216882536831358,0.828299887290145,1 +"83475",715.273972329779,0.0469573442730931,0.129409063759669,0.362859778974211,0.716709633592081,1 +"1796",617.558205212008,-0.109931761627015,0.208976676513107,-0.526047994739358,0.598854860586843,1 +"9046",383.51012713381,-0.930479589133546,0.282892877482942,-3.2891587706716,0.00100487321170538,1 +"79930",291.094906474232,-0.0149785598937051,0.255526667521852,-0.0586183823354725,0.953256068872149,1 +"55715",1339.0830506953,-0.392720023747479,0.154734789461408,-2.53802021584439,0.0111481544544036,1 +"220164",706.473316384934,-3.46347504913194,0.378169456941877,-9.15852664871415,5.26106803308984e-20,6.45217383578139e-16 +"285489",169.943837572805,-0.133049979663102,0.445967837384791,-0.298339854379013,0.765443789057022,1 +"22845",796.80894132945,0.291710103364029,0.122857075355958,2.37438586682003,0.0175781697198715,1 +"57171",969.661766587725,0.960033833421902,0.216556644717098,4.43317652374997,9.28547797241009e-06,0.113877101853637 +"29980",730.300819808753,1.51062824834723,0.219816174105748,6.87223428618364,6.32040363798789e-12,7.75134302162834e-08 +"84444",1919.06046880472,0.37374553814748,0.207467736832291,1.80146341717509,0.0716298683477888,1 +"1798",1944.11247784741,0.558591416453835,0.185238025510772,3.01553320336678,0.00256527850431963,1 +"25911",635.88472135506,0.420605453406081,0.185627015763681,2.26586335871255,0.0234597506586961,1 +"64174",271.189156402628,-0.610762110038477,0.405203496595728,-1.50729723501828,0.131734486012465,1 +"5977",2476.18311414674,0.049190850388443,0.160991925127715,0.305548556857245,0.759948393876926,1 +"1801",772.897113252194,-0.235841843174445,0.150827985531498,-1.56364776963221,0.117900309936613,1 +"1802",1246.34040507113,0.725543902184665,0.173364612696513,4.18507497521873,2.85071993787346e-05,0.349612293180801 +"285381",1401.92329570065,-0.53638533188659,0.182461390288492,-2.93971963623923,0.00328509349834029,1 +"100132911",98.6288788032464,0.0391167940129751,0.169667051991268,0.230550325203907,0.817664162654407,1 +"51611",872.283253129126,-0.127946990194863,0.111216687206087,-1.15042979079006,0.249966895995929,1 +"8813",1845.49918925402,0.371353699182837,0.117709831755911,3.15482312431551,0.00160595433933084,1 +"8818",1998.48392064871,0.723975284703795,0.168229308993016,4.30350269544204,1.6811880172711e-05,0.206180898438128 +"54344",1259.71197072078,0.351990665194334,0.159403431473637,2.20817495545915,0.0272320795194981,1 +"10072",2712.92037895525,1.24020011926655,0.169537058102342,7.31521552366381,2.56968617880293e-13,3.15146312968391e-09 +"1803",236.875023637599,-0.733742738800256,0.30663134744229,-2.39291496098047,0.0167151147331607,1 +"29952",4863.18484628603,-0.0727674011792334,0.118775001992902,-0.612649126148462,0.540108367809562,1 +"54878",1013.13064073535,0.0948436006491609,0.155297429619604,0.610722282277802,0.541383452007908,1 +"91039",3138.1043577864,0.232113076760903,0.110204020130888,2.10621242750695,0.0351859041315507,1 +"1805",3131.97313442404,-4.45923299866459,0.50951307770113,-8.75195003587383,2.09697246750928e-18,2.57172703415338e-14 +"23333",1421.04987696254,0.0567309114466349,0.218974052189829,0.259075953882676,0.795576637564738,1 +"100129460",194.947910989615,0.681940699846162,0.160239255339571,4.25576553261576,2.08334945933125e-05,0.255501977692385 +"283417",112.580709070812,-2.09837393952984,0.351663433213306,-5.96699497686198,2.41662845819026e-09,2.96375314112454e-05 +"147991",1209.0705034584,0.119152741813442,0.184131697398034,0.647106084922856,0.517563287391202,1 +"286148",1792.39521725066,0.568669275208881,0.14825526763534,3.83574414777371,0.000125184676860408,1 +"84661",1569.97238105966,0.606747679095147,0.143636906661165,4.22417673283959,2.39815806846036e-05,0.294110105515979 +"1806",1501.66352212676,-1.39701949170237,0.317440552606157,-4.40088539486519,1.07810058707542e-05,0.132218255998929 +"1808",4373.32774001988,-1.53865196429993,0.262703111392059,-5.85699939428443,4.71304844824824e-09,5.78008261693164e-05 +"1809",19551.8814291258,-1.25083395556697,0.402145691993132,-3.11039998804298,0.00186834153561304,1 +"10570",431.523631540835,-0.203788349644547,0.37325218287401,-0.545980329104559,0.585079458913919,1 +"165545",280.58808631299,2.50801144920645,0.551932202357673,4.54405711153117,5.51816963971591e-06,0.0676748324614759 +"1810",2617.42846410863,0.207761397733426,0.141364939621501,1.46968122569641,0.141648109809965,1 +"55332",1385.60468087111,-0.37638327434266,0.271462493828747,-1.3865019400437,0.16559368829168,1 +"128338",1974.07830550821,0.130228193941595,0.163052650638489,0.798687990852287,0.42447135195524,1 +"10589",3817.07487747678,0.183991958567825,0.104153029925175,1.76655406664604,0.0773029393236422,1 +"4733",1467.64693494494,0.146290436896586,0.153503881384359,0.953008064534141,0.340585984662743,1 +"1819",1612.6100069961,0.0392888291571991,0.135320859031378,0.29033830732695,0.771557435338981,1 +"29102",2867.02368490806,0.434466843364298,0.163992968562708,2.64930165709005,0.00806583015029432,1 +"1824",4125.77300052637,2.14296422826459,0.510999590320201,4.19367112784135,2.74475836361093e-05,0.336617165713244 +"1825",5880.16206032656,0.400248843406622,0.81702484080823,0.489885770193574,0.624214732934018,1 +"79075",374.810786088601,1.57279064580868,0.296935923821171,5.2967341424,1.17892143222085e-07,0.00144582924447565 +"29940",1462.41897075911,-0.425996570352526,0.242465335023579,-1.75693803945665,0.0789283709232452,1 +"92126",426.214405268525,-1.31415256515626,0.274456859462739,-4.78819355336488,1.68289298990965e-06,0.0206389996282519 +"1829",8127.17331301778,1.76033940636228,0.47165067333255,3.73229490784825,0.000189743171213063,1 +"1830",5830.89634393526,0.385313308425812,0.971735201311127,0.3965208916029,0.691720798952397,1 +"79980",918.672002676895,1.0714854819085,0.154930909626149,6.91589228059149,4.64927590970058e-12,5.70187197565679e-08 +"1832",29151.4311773116,1.7794086543318,0.569095107582098,3.12673335374808,0.00176760164400318,1 +"667",12434.3081165839,-1.07154960816452,0.314812867677147,-3.40376686655462,0.000664634536420933,1 +"11034",38626.0640739733,-1.70153924740648,0.27013461513988,-6.29885676267515,2.99848912151798e-10,3.67734705862965e-06 +"171220",370.06600174239,-0.853529633915538,0.23498048951523,-3.63234256459499,0.000280859930919574,1 +"25778",1243.47528622062,-0.183735415246743,0.151729354651108,-1.21094178294787,0.225917717526296,1 +"92675",1467.08024805417,0.697645445056091,0.13183727036968,5.29171639476338,1.21173700593874e-07,0.00148607426408327 +"51514",665.761570296292,3.06830354564417,0.368294499438864,8.33111423146168,8.00850106383006e-17,9.82162570468118e-13 +"1837",2666.69295479994,-3.49624050758362,0.517707218038077,-6.75331613268424,1.44503601677159e-11,1.77219217096868e-07 +"1838",962.187315917939,0.971884786730403,0.26896837351934,3.6133794245535,0.000302231933942406,1 +"84062",986.961363189298,-0.135225164047429,0.192416768330149,-0.702772243921121,0.482197697280727,1 +"56986",629.917423336852,-0.694575508035377,0.145658344292776,-4.76852535574116,1.85579318790643e-06,0.0227594476564844 +"285605",410.8054211002,-0.0899202117542602,0.155355706177095,-0.578802117842761,0.562722701965354,1 +"1840",268.820140664172,-0.376153464085666,0.414726357509164,-0.906991941252141,0.364411058835485,1 +"113878",1697.81316635218,0.317609331724676,0.214616004853065,1.4798958350852,0.138901047363626,1 +"441263",174.896178986767,0.152536524832483,0.201711731243977,0.756210478645809,0.449523011184564,1 +"196403",1572.21732573007,-0.663787080748121,0.32265909837646,-2.05723961942537,0.0396631822323614,1 +"151636",3832.30715553787,0.915575700745166,0.193421044728921,4.73358885031534,2.20584335841261e-06,0.0270524629475723 +"23220",3128.24823595096,1.02436028807895,0.401417546833341,2.55185727719131,0.0107150401817096,1 +"1841",1199.52920957877,1.06547166337496,0.176468741624934,6.03773593875059,1.56291546019825e-09,1.91675952038713e-05 +"53905",3113.13302113002,0.127266343126367,0.486349039489532,0.261676970226866,0.793570497111135,1 +"50506",4703.31619695647,-1.14972768622386,0.568357743563647,-2.02289438165297,0.043084037933298,1 +"90527",945.788619975184,-0.0332762819942043,0.578158143151752,-0.0575556746685311,0.954102557597169,1 +"405753",820.736074053358,-0.878811168066366,0.626331423453354,-1.40310885764111,0.160584380236421,1 +"64118",4512.93670915084,0.89191962339382,0.179694698035404,4.96352776762558,6.92241389986638e-07,0.00848964840679613 +"56931",1230.75264079472,0.201734357361004,0.157404324447433,1.2816316074491,0.199971906999465,1 +"11062",344.517824392133,0.74986538174624,0.117342380174031,6.39040541562313,1.65446516467928e-10,2.02903607796266e-06 +"1843",46638.0401613465,-2.93440589299249,0.250282900435773,-11.7243562699782,9.562519278514e-32,1.17274736431696e-27 +"11221",1119.91234582143,0.230301684128555,0.334081924464465,0.689356912971958,0.490598690898974,1 +"8446",1387.88607008628,0.280201968684902,0.163491372274707,1.71386394759775,0.0865537156579258,1 +"11266",752.998655140714,0.735528320477886,0.172519825368817,4.26344229659088,2.01301502094783e-05,0.246876162169042 +"11072",952.984016222359,-0.47918105451053,0.213077398513267,-2.24885913688633,0.0245214595204781,1 +"80824",3573.22902830322,-0.317499458022778,0.292478473501591,-1.08554812332556,0.277678961832606,1 +"150290",267.05759146774,0.308145374926917,0.16703641127426,1.84477966556026,0.0650695965868264,1 +"142679",271.630969665931,-0.586382099642769,0.280221821174845,-2.09256401655064,0.0363880915452187,1 +"1844",6031.12650472057,-2.14407181836246,0.489003155573672,-4.38457665134522,1.16211558415497e-05,0.142521855240765 +"56940",1104.87668827204,-0.741434090425457,0.188001443483697,-3.94376807266244,8.02112351874617e-05,0.98371058833903 +"54935",1451.48016409589,0.714919505740551,0.235682141341764,3.03340550824274,0.00241810426061565,1 +"285193",105.298811059482,-0.0542966421202273,0.155762280485139,-0.348586589456154,0.727399697034372,1 +"1845",5807.65599304535,-0.97958497425765,0.233048467004298,-4.20335300570583,2.62989961001354e-05,0.32253088817206 +"1846",5360.70455439058,-1.37897787784005,0.509758517772075,-2.70515906995912,0.00682716883130708,1 +"1847",10164.7109199275,-2.14512019235912,0.378787536765183,-5.66312242128738,1.48643032202083e-08,0.000182295814692635 +"1848",5514.04417524934,-0.586866162381941,0.287822788969241,-2.0389843503485,0.0414515894674663,1 +"1849",2690.71627940322,-0.225250841664887,0.329101641980722,-0.68444156130367,0.493696379236372,1 +"1850",688.670548665197,-2.17965355583039,0.338284932236569,-6.44324753520537,1.1694372748011e-10,1.43419787381607e-06 +"1854",2231.34329168032,0.209181159058099,0.110817166793906,1.88762413902105,0.0590764270946857,1 +"1855",3676.5901487645,0.250440672735655,0.181953389104778,1.37640015373079,0.168697780422485,1 +"1856",1793.79093277267,0.138858185439173,0.17109950150451,0.811563939217628,0.417041890223664,1 +"1857",5815.19082024416,0.388590761406567,0.178110576532228,2.18173883310211,0.0291288131714052,1 +"54808",1763.16946287682,-0.469613771260205,0.16516339129773,-2.84332846141225,0.00446450345137369,1 +"1778",22502.6563608837,0.0143494947393417,0.155106484334185,0.092513828812114,0.926289804536582,1 +"1780",991.370465539812,-2.15685269652784,0.475325459901879,-4.53763342904686,5.68890360755395e-06,0.0697687138430416 +"1781",3272.90566015109,-0.114803427786946,0.112849398268496,-1.01731537383833,0.309003425332337,1 +"51143",1683.07079891312,0.00881460871553412,0.131999050395604,0.0667778191518539,0.946758581738563,1 +"1783",7570.21067916785,-0.326891209841188,0.164810533602324,-1.98343639023676,0.0473187057035963,1 +"79659",841.530228332434,-0.990549788071647,0.245927236913461,-4.02781652208865,5.6297249016802e-05,0.69042946194206 +"51626",790.434308959383,0.288744890712127,0.144198626052306,2.00241083162186,0.0452405644841877,1 +"8655",8056.65265450399,0.1336311136616,0.146074177183404,0.914816815937424,0.360287805314956,1 +"140735",3942.02899914462,-0.476040636868629,0.154438990542358,-3.08238635332225,0.00205348124285316,1 +"83658",4723.32877356745,-0.073720209292934,0.164529824198641,-0.448065933650606,0.654105612880511,1 +"6993",2892.04363274478,0.0401604467763383,0.134875906322403,0.297758494243887,0.76588749515338,1 +"6990",2119.40908839465,-0.315548811261974,0.20366767999548,-1.5493317902427,0.12130198144734,1 +"1859",3809.95307739537,-0.234174294319252,0.129851533892414,-1.80340029339408,0.0713253715836486,1 +"9149",1591.23138160489,0.747584852159903,0.224855273581624,3.32473790919796,0.000885016889300198,1 +"8445",1975.25600352355,0.674079937664656,0.192349937560736,3.50444583561047,0.000457558635206162,1 +"8444",330.844641288634,-1.13523008584164,0.216862363008577,-5.23479533328123,1.65167779410184e-07,0.00202561764668649 +"8798",769.995702224241,-0.061443715698839,0.197354673973172,-0.311336511377438,0.755544813478201,1 +"8291",2644.12477705463,-1.34784787406995,0.31720403193571,-4.24915114049726,2.14582106852717e-05,0.263163495844172 +"55184",158.737862243793,0.79339762628169,0.167585506007087,4.73428547125155,2.19828143747296e-06,0.0269597235491683 +"22873",965.848578601066,-1.21290298292665,0.295247599851528,-4.10808752903184,3.9894891882712e-05,0.48927095404958 +"199221",258.944719706258,-0.40008808950528,0.265542733152525,-1.50668061880448,0.131892541738167,1 +"9666",864.130914550666,-0.66763737456789,0.223769561977873,-2.98359333890955,0.00284885128591123,1 +"1869",769.422498744017,1.75011111495405,0.262433028658878,6.66879136325833,2.57918596376573e-11,3.1631136659623e-07 +"1870",358.283617435177,2.49917649448385,0.436666228650557,5.72331069019726,1.04467964393993e-08,0.000128119511532793 +"1871",1566.81375522144,0.945630389578844,0.22059110403026,4.28680201649984,1.81263707303361e-05,0.222301810636843 +"1874",3562.20963619962,0.358346008660754,0.14758404545924,2.42808094564478,0.0151789550838675,1 +"1875",214.358030048259,0.282165286906127,0.276921318282303,1.01893667362394,0.308233031546281,1 +"1876",438.678881133457,0.0438415854426554,0.144359358660191,0.303697563147635,0.761358314699646,1 +"144455",367.419364221615,3.00033217584672,0.386974325323084,7.75331069662503,8.9527212558989e-15,1.09796173482344e-10 +"79733",442.935381814535,2.24351498293399,0.432304611175979,5.18966239298502,2.10675701598079e-07,0.00258372680439884 +"1877",1229.49131285896,0.184799260971767,0.108553658750955,1.70237708335318,0.0886847031541366,1 +"85403",1665.91281725809,0.242600614275335,0.190368642055518,1.27437277303572,0.202531336815044,1 +"55840",209.728822306009,0.281935338012009,0.260346066973165,1.08292528206723,0.278841589023331,1 +"55837",1483.8442933308,-0.0668051784623966,0.0964710040681996,-0.692489718622282,0.48862984034675,1 +"124454",1244.92789118852,0.646453139499838,0.140308394204925,4.60737323068264,4.07787660551063e-06,0.0500110786899824 +"9166",1085.40368444664,0.071945529766481,0.131750931758828,0.54607226534214,0.585016263511278,1 +"1879",824.73972273427,-2.56403719220702,0.270239534154808,-9.48801662283136,2.35471747630317e-21,2.88782551293821e-17 +"253738",213.504411405044,-2.0559946802097,0.323562376577709,-6.35424520599637,2.09452501207328e-10,2.56872547480667e-06 +"57593",925.514741298386,-1.13865794658949,0.300576015222677,-3.78825285093336,0.000151710408440932,1 +"10969",3248.3294777467,0.628755946960831,0.125875355592556,4.99506789077951,5.88150732363253e-07,0.00721308058170294 +"10682",2477.56084562358,1.23257678309559,0.237278055751647,5.19465139408297,2.05103806484959e-07,0.00251539308273153 +"84650",1334.22779360596,0.323407851222706,0.212912787866709,1.51896865596054,0.128770385818293,1 +"11319",1519.97892785564,-0.308873139087716,0.123457869893639,-2.50185054507918,0.0123546067017621,1 +"1889",8281.94998809947,-0.413535107900883,0.206211907793173,-2.00538907925556,0.0449214682887831,1 +"9718",523.407297732072,2.06707540861601,0.286554513459596,7.21355034216716,5.45115576163177e-13,6.6852974260652e-09 +"1891",9276.13187044202,-0.146102540748528,0.183398602046589,-0.796639337040382,0.425660524617678,1 +"55862",3019.65539004678,0.00656913051998551,0.121843872328174,0.0539143281846152,0.957003421029068,1 +"55268",1659.52609959529,-0.66404028088322,0.19368511380945,-3.42845285227501,0.000607031963047301,1 +"1892",6734.59037016546,0.00724475476048732,0.158428753773123,0.0457287871547744,0.963526418972218,1 +"1632",1860.23744120372,-0.335951677325738,0.160095546107351,-2.09844486929366,0.0358658651748546,1 +"10455",1408.22262942978,-0.730498283789832,0.219264161633288,-3.3315899796318,0.000863513794298489,1 +"1893",3900.50345531191,-1.22309988483593,0.313084034255722,-3.90661851455804,9.35967464723887e-05,1 +"1842",443.650694215192,-1.24268003610873,0.276654240867427,-4.49181632716857,7.06183146426691e-06,0.0866063010777693 +"641700",544.161757337183,-1.88818741105561,0.216144219807574,-8.73577564432024,2.4198984725958e-18,2.96776348679149e-14 +"51295",2077.08002450978,-0.0602826464715481,0.113488264167237,-0.531179562167901,0.595294354309468,1 +"1894",1738.3050599564,2.2255916409434,0.311851965105874,7.1366926938806,9.56032523628212e-13,1.17247828697764e-08 +"1896",282.768401309182,-1.7218370153614,0.425401869170072,-4.04755394874163,5.17556555345784e-05,0.63473135947607 +"60401",187.266565930589,-0.931258821027624,0.342567505244508,-2.71846805890984,0.00655849877140339,1 +"10913",227.916744804897,0.331847536300691,0.655352188099014,0.506365191612901,0.61260030563425,1 +"128178",16650.7482697723,1.06962528673316,0.163523626066989,6.54110548095955,6.10657403936642e-11,7.48910240187898e-07 +"80153",1730.96822993141,0.411295728114553,0.111382651576227,3.69263724910583,0.000221940492205057,1 +"23644",3754.05092377173,0.0117458727558421,0.155653004536027,0.0754619083059423,0.93984720385652,1 +"9695",3497.35137764011,0.5745543448212,0.234990661047594,2.4450092708358,0.0144848418525553,1 +"55741",1521.83606375921,0.751456969432255,0.177678970160478,4.22929606555884,2.34423672743384e-05,0.287497192252486 +"80267",2329.31083783223,0.377049957756891,0.178792189954306,2.108872640652,0.0349555763517393,1 +"8721",10356.9446504593,-0.0959195002366507,0.14136955025949,-0.678501841878865,0.497453556386005,1 +"10085",502.781128072829,-0.695585955309426,0.317860069404126,-2.18834016054109,0.028644833582477,1 +"1906",553.404813852456,-0.00108600709733825,0.311688066163883,-0.00348427551527506,0.997219955985817,1 +"1907",213.413054410806,-0.191467017683175,0.523141812739416,-0.365994483753007,0.714369191767502,1 +"1909",1384.87691281166,-1.73842353706441,0.277236659259039,-6.27053991240059,3.59798304993183e-10,4.4125664124364e-06 +"1910",1226.76386021805,-2.71426316760082,0.278301274290774,-9.75296708402747,1.79154008547184e-22,2.19714476082267e-18 +"8411",2194.13038003735,-0.292995369364389,0.152273320042163,-1.92414120400909,0.0543368865495802,1 +"8726",914.012834364765,0.220712939016767,0.127299332779222,1.73381065083471,0.0829516852344482,1 +"1915",99878.8844994851,-0.897278773995461,0.139442483840183,-6.43475897219275,1.23669415553924e-10,1.51668171235332e-06 +"1917",1693.98316481182,1.82929159107055,0.634188949974422,2.88445831663313,0.00392087661352006,1 +"1933",4726.80524371771,-0.825896805358135,0.152451723357904,-5.41743174276369,6.04612196603688e-08,0.000741496397914763 +"1936",15982.938628952,-0.495660677776584,0.0961294340416069,-5.15618013065646,2.52038451058244e-07,0.00309099956377831 +"9521",350.363413855353,0.72726068081648,0.167566374681993,4.34013495963418,1.42395234131567e-05,0.174633515138954 +"1937",26532.3520098462,-0.19139840896075,0.187399869907111,-1.02133693612285,0.307094832518847,1 +"1938",114174.787533998,-0.565030206393163,0.154279348519839,-3.66238392768753,0.000249878984488102,1 +"29904",2855.04492300965,-0.787876041355715,0.204773844053314,-3.84754237045326,0.000119308648083448,1 +"60678",1213.20553882931,0.156474153641293,0.1424279699404,1.09861955981519,0.271934042388438,1 +"80820",630.955133154311,-1.32059589578446,0.203910091309784,-6.4763636135015,9.39594664236867e-11,1.15231889622009e-06 +"79645",110.693561475997,-1.00450594786137,0.456874510080947,-2.19864738718602,0.027903004703598,1 +"90141",205.459396111731,0.675933038550955,0.136444010381898,4.95392239394799,7.27322239118933e-07,0.00891987994055459 +"84288",256.953264945635,-0.934780906395603,0.236599022157683,-3.95090773356033,7.78553373135207e-05,0.954817856813018 +"84455",284.982951509454,0.138527190755243,0.190604922054092,0.726776566220729,0.467362840647177,1 +"2202",4719.29685675543,-2.36373761041876,0.387819547240988,-6.09494190593223,1.0947720175352e-09,1.34262840230517e-05 +"30008",3092.96051214974,-1.09789575992447,0.291280748385824,-3.76920124659327,0.000163770804080699,1 +"114327",464.440226224787,0.081370988603021,0.152373861074294,0.534021964327245,0.593326337883507,1 +"80303",468.665309277137,-1.68971746105663,0.378734611478449,-4.46148149613409,8.13949755893152e-06,0.0998227980627362 +"79180",9262.22263608672,0.306027456677388,0.280956532438468,1.08923417448715,0.276050632183263,1 +"1942",3317.36666901657,1.26018662203106,0.382094383261003,3.29810297465232,0.000973404294223371,1 +"1944",353.870218095376,1.88710762637585,0.381824577650007,4.94234194663506,7.71896765417639e-07,0.00946654193108192 +"1945",594.448111395154,1.48669578965839,0.298118140481254,4.98693500254097,6.13446914923589e-07,0.0075233129646229 +"1946",995.76815881275,0.0795764752953613,0.476792123480865,0.16689972710624,0.867448947875201,1 +"1947",4809.67278377117,-0.398268675713869,0.312847479657998,-1.27304421997982,0.203002350772473,1 +"1948",2422.33990696937,-0.16453549232313,0.309168287327233,-0.532187481923011,0.594596152092016,1 +"1949",280.417084733604,0.417439158647616,0.46086431782098,0.905774525181983,0.365055207322851,1 +"23167",3814.84292644325,-0.314661926433198,0.1469636227368,-2.14108716547313,0.0322670094913776,1 +"10278",2424.34189043355,0.198429342526583,0.239390639983582,0.828893487816366,0.407164680675241,1 +"9343",5425.83175344178,0.845661010031322,0.106587669752078,7.93394781965233,2.12287319005238e-15,2.60349168028024e-11 +"25975",614.157810385206,0.115305957052861,0.292673359624389,0.393974898162383,0.69359957193325,1 +"51162",1810.34538454652,-1.28758584105546,0.247112751851914,-5.21051961667708,1.88312467235997e-07,0.00230946409818227 +"133584",372.226153374669,-0.295903815180324,0.277433521903747,-1.06657556430036,0.286163539666666,1 +"1956",4315.50894945677,0.329796184898209,0.357664694205348,0.922082023306616,0.356485793029879,1 +"54583",2447.12210770892,-0.329919650301898,0.157612496959204,-2.09323281254337,0.0363283769842154,1 +"112398",113.313847422014,-0.421569123017299,0.214351930795496,-1.96671483878305,0.049216095206696,1 +"112399",3332.0482411293,-0.266656026053143,0.342450533979182,-0.778670200786877,0.436174014217459,1 +"1958",55984.7529510258,-2.93679254094381,0.324452351749743,-9.05153722913687,1.40969587067325e-19,1.72885101579367e-15 +"1959",1481.58457116872,-1.99652803950953,0.333788262154005,-5.98142075645657,2.21199664985495e-09,2.71279269138211e-05 +"1960",3158.37199236759,-3.33129445871197,0.33714580336326,-9.88087179339037,5.03925710284586e-23,6.18014491093016e-19 +"23301",2560.66763025278,-0.565234697699852,0.178824799498008,-3.16082947827462,0.00157320568604824,1 +"254102",7769.59663264389,-0.889500053890339,0.217790938598973,-4.08419220566476,4.42304100321861e-05,0.54244174863473 +"10938",3794.21379948873,-0.659568441222972,0.171970885374047,-3.8353494534169,0.000125385890267312,1 +"30846",8052.05226090286,-1.6966000438656,0.218053950140927,-7.78064347272361,7.21565820375976e-15,8.84928322109097e-11 +"30845",1356.51121240906,-0.500932547764729,0.262961414824021,-1.9049659741904,0.0567844942350858,1 +"30844",4609.88196341565,-0.181049650864158,0.321806916980877,-0.56260335409421,0.573705007568716,1 +"26298",11964.3098251364,1.36815154029725,0.67738104976943,2.01976648263625,0.0434076153402169,1 +"1962",716.364058582325,0.600907245938246,0.230430486461333,2.60775930809433,0.00911370126664163,1 +"79813",3051.76781369615,0.157621335256826,0.10465549886325,1.50609702279271,0.132042268793948,1 +"10919",4386.48987563695,0.58901931578016,0.200329193215028,2.94025701560092,0.00327940101067286,1 +"9538",6022.26961073306,0.153397105735218,0.131433492686061,1.16710818985552,0.243166680880292,1 +"23741",7735.68688148359,-0.819130044013849,0.16151442869702,-5.07155955428866,3.94568746007409e-07,0.00483899110103486 +"163126",660.842479433767,0.177868247555577,0.191557232608121,0.928538406688363,0.353128354927574,1 +"493861",109.542573089245,-1.15361005403784,0.339452166562248,-3.39844657855879,0.000677696968851109,1 +"10209",26796.8773522055,-0.835573085356246,0.181979612986475,-4.5915752410043,4.39912989027148e-06,0.0539509289742894 +"84285",1277.06075522237,0.570715940623269,0.151194718380736,3.77470818250477,0.000160195079523558,1 +"1964",3856.14986570575,-0.161422136726226,0.114468144019838,-1.41019266197109,0.158482801983031,1 +"9086",591.58565304422,-1.35136328979286,0.433169465160208,-3.11971041008872,0.00181028917700275,1 +"10289",2061.39674860357,-0.741176489910143,0.156214865426373,-4.74459641140536,2.08922456181289e-06,0.0256222500260733 +"83939",4231.99724860181,-0.100702397063706,0.116056512902491,-0.867701385688835,0.385557827093752,1 +"27102",6727.97903632522,1.04249103435283,0.124943097557402,8.34372650216942,7.19853666348577e-17,8.82828536409895e-13 +"5610",1356.90114086147,1.15875784220845,0.16410239849382,7.06118772695507,1.65085385895552e-12,2.02460717262305e-08 +"9451",1826.62614281212,0.18678673389628,0.225666158550297,0.827712649057427,0.407833253895775,1 +"440275",2508.0083815973,0.247398286755074,0.0996872131496144,2.48174544095008,0.0130740636982723,1 +"1967",2489.01461848769,0.0814498890879516,0.124284805236062,0.655348728537239,0.512243254058605,1 +"8892",1280.56593096445,0.155083045063467,0.118628143995736,1.30730398234201,0.191109492261905,1 +"8891",1123.74926224347,0.023115431488855,0.132060183155258,0.175037100029455,0.861050481959448,1 +"8890",1955.161102003,-0.0179177207539666,0.126213961060637,-0.14196306496837,0.887109180031708,1 +"8893",3160.491356962,0.475267665041236,0.106793730686069,4.45033301101104,8.57372382417559e-06,0.105148148979689 +"1939",2513.49136460001,-0.178305681270521,0.12200161820501,-1.46150259229265,0.14387756466519,1 +"1965",4189.11267735879,-0.0150563400854295,0.134448119783593,-0.111986245026439,0.910834312841868,1 +"8894",2675.44170204448,0.389164710769098,0.121375327703882,3.20629174092563,0.0013445759284095,1 +"1968",10071.518712839,0.0643771150686685,0.114841913262906,0.560571600033262,0.575089616544461,1 +"8661",13759.4932107703,-0.488595882150228,0.145842022449916,-3.35017215163768,0.000807613502733338,1 +"8662",11528.6191196096,0.452094682046804,0.144415279557185,3.13051834565597,0.00174498099713393,1 +"8664",12076.3634350227,-0.0961472949087274,0.135739173553277,-0.708323856642535,0.478744165393573,1 +"3646",7695.03078966918,-0.3004889533695,0.147258033158379,-2.04056068741811,0.0412945130952348,1 +"8665",3964.84005579258,-0.513383013407682,0.116785818900009,-4.39593623817661,1.10296310031439e-05,0.135267394622556 +"8666",6951.7090593076,-0.288195300367368,0.0983340448566621,-2.93077845813686,0.00338113814655788,1 +"8667",10954.8509370147,-0.285012843148007,0.122411828067753,-2.3283113049358,0.0198955794467502,1 +"8668",8234.92138597444,0.318781329002498,0.0958879773596473,3.32451823242494,0.000885714419140358,1 +"442720",917.481589956427,0.46568561374927,0.0983784885073464,4.7336122033883,2.20558945325256e-06,0.0270493490546894 +"8669",3039.80019785337,-0.0946784037641033,0.144098105549867,-0.657041280333408,0.511154373708956,1 +"27335",9595.96220755533,-0.275972771618846,0.122445711463697,-2.25383778917129,0.0242063745322858,1 +"51386",13214.3021150264,-0.75450051919143,0.129684492606374,-5.81797024476577,5.95665017109642e-09,7.30523576983265e-05 +"10480",6680.04549752969,-0.0689787422967102,0.104805273846296,-0.65816098527515,0.510434691687579,1 +"1974",11771.1432450332,-0.35220514972886,0.141924407470964,-2.48163903591366,0.0130779679391903,1 +"9775",6072.9121410207,0.474052454617771,0.186232834501286,2.54548267971778,0.0109126777419538,1 +"1975",12163.7979300515,-0.708477974061148,0.148260640057338,-4.77859783815282,1.76521863192216e-06,0.0216486413018933 +"1977",1103.95351988147,-0.312488482370456,0.147294111259419,-2.12152732854399,0.0338774506507978,1 +"9470",1994.36640300091,0.311231775559985,0.138201389969901,2.25201624692608,0.0243212453238646,1 +"317649",1996.86501723606,-1.1733231318317,0.253177078545023,-4.63439715228028,3.57979153166884e-06,0.0439025633443866 +"1978",3294.08167694472,1.51583819134606,0.268381092146396,5.64808116407546,1.62248577577205e-08,0.000198981655540684 +"1979",8258.4164032419,-0.875433809650666,0.158386821318819,-5.52718845142106,3.2540337195258e-08,0.000399074695362644 +"8637",115.712690441834,-1.47466091582378,0.281106738937035,-5.24591093546885,1.55512019047764e-07,0.00190719940160178 +"56478",1500.29203493098,-0.431681716508738,0.200659853570831,-2.1513108318718,0.0314516738743705,1 +"1981",22917.284040319,0.279010550041271,0.147457254527263,1.89214529278846,0.058471625043442,1 +"1982",48527.9342621028,-0.123062939012258,0.0948577427912168,-1.29734205549378,0.194513520186753,1 +"8672",4521.07885988736,0.0824767312412319,0.121396176126786,0.679401393624569,0.496883567103243,1 +"7458",10103.3474502512,-0.150958295161136,0.103100235029821,-1.464189631745,0.14314214235364,1 +"1983",8855.83803997747,0.130567854625368,0.180349384922608,0.723971721230978,0.469083096348211,1 +"1984",12519.7666767849,0.43231878048638,0.17338624380792,2.49338569768724,0.0126531316213606,1 +"56648",434.496941219635,-0.503620627279237,0.283563602102609,-1.7760411545943,0.0757261341445539,1 +"143244",2747.98671459449,0.355478621440181,0.17646403149986,2.01445370152083,0.0439619210860404,1 +"9669",10225.2692673901,-0.245210479276546,0.158757838335873,-1.5445566773073,0.122453532027395,1 +"3692",9068.12105520888,0.428272212016274,0.206760870155659,2.07134073141524,0.0383269654001028,1 +"55520",239.640716103334,-0.301083599059757,0.16610629556748,-1.81259595267683,0.0698941625137978,1 +"60528",3459.5470635563,0.0214743062383445,0.142775428279741,0.150406176308362,0.880444168713554,1 +"1994",4245.81189554677,0.264122799191237,0.0790059653139003,3.3430741355016,0.000828557612146625,1 +"1997",3579.99453379791,-0.227222534456451,0.229335224230926,-0.990787765893533,0.321789224402074,1 +"1998",1294.85226822908,-0.227668443267811,0.154690833061722,-1.47176428468111,0.14108454130061,1 +"1999",29263.822091094,1.0521822216305,0.678704031109918,1.55028137951356,0.121073994581939,1 +"2000",3309.26130402138,0.493526405861551,0.280660135906487,1.7584485387194,0.0786712204250762,1 +"2001",588.837135292116,0.0588751261016381,0.827931810775429,0.0711110810520693,0.943309349094874,1 +"2002",1700.67077332762,0.491016801615384,0.109094661769857,4.50083252149605,6.76878242612901e-06,0.0830123476740461 +"2003",1439.70393590794,1.2113957370325,0.571731095643923,2.11882079925728,0.0341056142861815,1 +"2004",1088.88947969521,0.109428843942447,0.181987222253785,0.60129959997876,0.547640455964213,1 +"2005",3098.2382753988,0.0346882256225757,0.1750209278348,0.198194730491416,0.84289271017083,1 +"8178",1559.24498440199,-0.506200604648846,0.186273317629057,-2.71751537521273,0.00657740993375165,1 +"22936",3757.1486454192,-1.01173612763649,0.30370240155351,-3.33134055727325,0.00086428795634468,1 +"80237",282.042266445376,0.257678169541496,0.199357891094169,1.29254060688161,0.19616999284771,1 +"9844",822.440991219583,-1.1165106312636,0.239783405220093,-4.65632986669273,3.21896045840979e-06,0.0394773310619376 +"63916",2099.84310581664,-0.152408481822867,0.158249389050043,-0.963090491140354,0.335502113260239,1 +"79767",1948.84243723828,1.69091308289475,0.461543793729171,3.66360268704417,0.00024869244849673,1 +"255520",1288.97310777774,0.100173005633211,0.143330259844313,0.698896421048979,0.484616764314102,1 +"84173",745.838936331267,0.250156744560872,0.137337315082152,1.8214768827484,0.068534397598021,1 +"2006",5551.24028892162,-2.28576989914607,0.36571157479581,-6.25019839862136,4.09931615876233e-10,5.02740133710613e-06 +"84337",2346.71839532854,0.215215159053602,0.117383125075889,1.83344206345218,0.0667368570568971,1 +"64834",5999.9063358322,0.371603160228481,0.258318682479899,1.43854543024543,0.150279356986143,1 +"6785",408.963098670316,-0.502352302542223,0.418600103151119,-1.20007687231952,0.23010948675549,1 +"60481",3565.22114709031,0.0318766974190096,0.197387131851321,0.161493290469514,0.871704895428865,1 +"79071",1231.55938837123,0.756457384818984,0.288709324095272,2.62013493048585,0.00878949822946072,1 +"79993",767.026488696819,0.564713522952596,0.328071353202317,1.72131311509038,0.0851940208687331,1 +"55250",2765.4402761705,-0.155737638785148,0.169844651376925,-0.916941673008767,0.359173205130797,1 +"55140",1528.31270652417,-0.298744109460102,0.162353892147217,-1.84007975114764,0.0657565296222714,1 +"26610",613.764431440763,-0.167040294925114,0.138118680772602,-1.20939683170105,0.226510425280015,1 +"133418",1178.41532500865,0.137190295505034,0.35558184548939,0.385819178468513,0.699630590608325,1 +"51705",852.98252656437,-2.48808217434318,0.248404009214758,-10.0162722099711,1.29287669572341e-23,1.58558397963519e-19 +"2010",2985.95437524239,-0.52027972299494,0.133566963320366,-3.89527252893388,9.80883788491805e-05,1 +"146956",141.814909075081,2.74698485383096,0.326650778574538,8.40954632289092,4.11599649135366e-17,5.04785809699613e-13 +"10436",1865.2030265276,0.588258626434017,0.131587281195234,4.47048241357936,7.80433614226197e-06,0.0957123784487008 +"129080",466.412056657301,-0.630977433626925,0.32838314448382,-1.92146717706461,0.0546728365388557,1 +"11117",9844.78742514935,-2.1554806906526,0.323005862910205,-6.67319370376822,2.50295669895877e-11,3.06962609560304e-07 +"84034",945.659802222233,-0.516001539458937,0.255117040135049,-2.02260711078251,0.0431136704986527,1 +"2009",1888.31073312026,-1.59112061805069,0.396174576139198,-4.01621081684868,5.9141355429088e-05,0.725309582982335 +"24139",2937.16565023463,-0.337603711835519,0.231325938690449,-1.45942869073271,0.144447154110072,1 +"256364",2453.16475643976,0.0284841594159122,0.147972410513749,0.192496420900473,0.847353371195815,1 +"27436",3719.23316308518,0.490644485130942,0.18745067509074,2.61745915235266,0.0088587090302238,1 +"161436",166.011295292936,-0.21089971194856,0.246834116021343,-0.854418811094669,0.392872976766237,1 +"400954",206.271289609531,0.0575583899948021,0.360737325710123,0.159557622382149,0.873229563633811,1 +"2012",28361.9606267151,-2.13901593868079,0.361530576595414,-5.91655610107509,3.28752373157168e-09,4.03181910439951e-05 +"2013",10959.0086248517,0.0202852577466578,0.268646575352602,0.0755090874321891,0.939809667454926,1 +"2014",1956.5979949759,-1.88102832413674,0.287923395707908,-6.53308606447878,6.44280946573475e-11,7.9014615287771e-07 +"2018",344.48898959751,-0.00789363664368282,0.620445492017221,-0.0127225304160381,0.98984916324788,1 +"196047",464.29599407418,-1.16013635088744,0.596067146699712,-1.94631822490276,0.0516165257091623,1 +"55740",8873.52348534324,-0.34019394008733,0.229086899060453,-1.4849995415825,0.137543945541436,1 +"8507",3489.51578873495,0.686505595308503,0.412946728509391,1.66245558546153,0.0964214616465883,1 +"23052",2587.22464112778,-0.35631852273855,0.258922986409404,-1.37615639182821,0.168773219819643,1 +"2021",213.412345735159,0.170003625191803,0.186207824491433,0.912977881869969,0.361254174377469,1 +"284131",473.273701180225,-0.179656614531712,0.169020866428341,-1.06292565130046,0.2878156692707,1 +"2022",5178.0378191997,-0.682476116492719,0.22382751979315,-3.04911619948891,0.00229515688495143,1 +"64772",1824.87212065826,0.71421381487725,0.221228784620092,3.22839460562848,0.00124487121580542,1 +"2023",45810.2833073606,1.06722372107034,0.177492147389488,6.01279401239329,1.82352689851462e-09,2.23637338833833e-05 +"2026",3192.33412670328,0.0854719014688639,0.36394364642509,0.234849274904038,0.814325721233536,1 +"2027",155.335509627769,-0.0550514698953847,0.353196957083741,-0.155866206634199,0.876138482899137,1 +"58478",1548.24784476987,0.416431987540153,0.101607147080678,4.09845172810035,4.15922954946297e-05,0.510087911946139 +"55556",1248.04931927881,0.369427971658046,0.154177136792362,2.39612681454561,0.016569356541785,1 +"55068",248.978186858047,-1.33885252706873,0.411427398175208,-3.25416472749968,0.00113726313402494,1 +"10495",816.594330375244,0.040993751740332,0.162109038367866,0.252877644288451,0.800362765400102,1 +"2028",436.515774823557,-0.00275463578371279,0.302020671480051,-0.00912068624380482,0.99272284615628,1 +"5167",375.713672159718,-1.75216476888863,0.365653774494473,-4.79186840423308,1.65235273287826e-06,0.0202644539160189 +"5168",1685.27297055271,-1.96676816550402,0.356463781559442,-5.51744179142095,3.43969958791871e-08,0.00042184475746235 +"22875",922.307914569861,-0.78832027309573,0.280485443413713,-2.8105568100123,0.00494558571410177,1 +"59084",598.5455604653,-0.683594059265749,0.380798327607309,-1.79516035052205,0.072628155630951,1 +"2029",10142.0970553977,-0.0468709245541658,0.15046761478964,-0.31150174487509,0.755419216609818,1 +"953",3862.31322869602,-1.08137605753283,0.231840650364564,-4.6643073845436,3.09658221374187e-06,0.0379764842693303 +"954",165.340347256647,0.434621905049272,0.270106018815361,1.60907893483992,0.107599082735614,1 +"956",1677.2546535309,0.86570213526275,0.503063273864446,1.7208613314436,0.0852759898957547,1 +"9583",2161.97581797431,-0.183082707020064,0.187608914782185,-0.975874239412468,0.32912678929553,1 +"957",486.165599489911,0.14799820473543,0.245317365753616,0.603292817370586,0.54631391033349,1 +"955",3103.21783819879,0.661374283603918,0.173640081966308,3.80888027760922,0.000139597525377665,1 +"57089",1622.67987904942,0.053118916458677,0.264071073435266,0.201153862737254,0.840578266254276,1 +"56943",2311.94765165261,0.257448338356677,0.131969507046517,1.95081685245616,0.0510788363895513,1 +"2033",4716.25994520402,-0.0250297746992214,0.117015618301075,-0.213901144673022,0.830624147572523,1 +"57634",3115.86900161853,0.0953864790291073,0.121577880080302,0.784571000630249,0.432705138261227,1 +"2034",13594.4406640372,-0.746675210465475,0.212400356251611,-3.51541411531795,0.000439068748943155,1 +"2035",2708.55732227038,0.332278028061886,0.201268801075709,1.65091671578497,0.0987555820821188,1 +"2036",5467.87589868577,-0.409619299741169,0.220404043766909,-1.85849266982763,0.0630990833681491,1 +"2037",2581.64103200555,-1.47391136274486,0.25109743255168,-5.86987826903213,4.36115231764876e-09,5.34851720236443e-05 +"23136",1200.83636912831,-1.0380523264257,0.338090854117979,-3.07033542546957,0.00213818488808071,1 +"64097",983.697394014093,-0.601137844507485,0.237406670323274,-2.53210174629434,0.0113381085899295,1 +"114915",811.290983199926,-0.858561207324784,0.194673139746959,-4.41027051004963,1.03241567606809e-05,0.12661545851299 +"54566",765.706435910698,1.43938840048725,0.374878337183318,3.83961477022712,0.000123227513782529,1 +"57669",958.900163862902,-0.123789971627702,0.153401280028751,-0.806968309550613,0.41968474131469,1 +"80314",929.86024004606,-0.651836124391726,0.168514938913621,-3.86812070546368,0.000109677373223064,1 +"26122",1320.98602931716,-0.296814262302998,0.148382961792526,-2.00032577000325,0.0454650980795201,1 +"4072",5007.70403589496,2.78942095188025,0.558065023247653,4.99837982256485,5.78140206263237e-07,0.00709031148961234 +"54749",668.7367847433,-0.970704343229124,0.379800557269511,-2.55582653750637,0.0105935913463157,1 +"57724",1495.08176237392,0.0168977378710595,0.145259329266322,0.116328073084234,0.907392537539501,1 +"2041",2306.81912438355,2.07614137090419,0.518902779836429,4.00102187072238,6.30695275665637e-05,0.773484686076337 +"1969",13144.8998247743,-0.481643801922841,0.495914739281708,-0.9712230022049,0.331437241793951,1 +"2042",1105.82046842029,-3.01323458986548,0.343672528070369,-8.76774936531587,1.8227301734403e-18,2.23539628470718e-14 +"2043",1324.51719939536,1.37068147310762,0.299786250664163,4.57219592316506,4.82639330044921e-06,0.0591908874367091 +"2045",1127.54973664843,-3.82167053022794,0.47695513214312,-8.01264159388722,1.12270462347202e-15,1.37688495022609e-11 +"2048",1180.02552455167,1.56129599680029,0.302701076088705,5.15788056314264,2.49760847289074e-07,0.00306306703115321 +"2049",1728.47709355692,1.16023682636965,0.315401878987127,3.67859833332509,0.000234519271149817,1 +"2050",3596.17721370095,0.40066960653896,0.196315848488267,2.04094376294285,0.0412564172203062,1 +"2051",3679.32504964389,-0.277586545044601,0.369364443092457,-0.751524815763378,0.452336871824849,1 +"2052",9952.25323815469,-0.899536833535235,0.298911548701485,-3.00937463755734,0.00261786089591201,1 +"2053",988.715847058521,-2.29742601002097,0.316432024545808,-7.26040928796189,3.85920786442168e-13,4.73293252492674e-09 +"79852",815.37281864261,0.507421324893507,0.642608676551737,0.789627254360072,0.429745486647638,1 +"7957",764.089548658229,-1.84545479281598,0.390032532829318,-4.73154067284835,2.22822159020393e-06,0.027326909582261 +"9852",1655.53358575561,-0.154680676607307,0.153100415442205,-1.01032173009157,0.312341173493193,1 +"29924",5357.97065111246,0.0321734761235337,0.12561234768581,0.256133069051525,0.797848088040678,1 +"22905",3469.04678233559,-0.198522464429647,0.173525509736828,-1.14405348660684,0.252601455882438,1 +"55040",2727.86276251876,1.92426996718983,0.657370822590449,2.92722144193594,0.00342005275100488,1 +"2057",306.579578681874,0.563415518792895,0.265536908928893,2.12179738427162,0.0338547564046878,1 +"83481",3059.02292418649,-1.56618176235514,0.345722840157879,-4.53016572940312,5.89374355997107e-06,0.0722808710194852 +"2060",3546.38271366947,-0.150230831318782,0.101147067834854,-1.48527124448203,0.137471985983101,1 +"58513",1427.51370668364,-0.235110709788949,0.11135823401466,-2.11130063141984,0.0347464798158785,1 +"2059",5125.4382983161,-0.578460006295745,0.294112641242826,-1.96679749585519,0.0492065613995808,1 +"54869",2284.95464972469,1.10251261745376,0.529189278156971,2.0833993864984,0.0372148341492622,1 +"64787",5528.64625481587,1.00783195489461,0.309438198085119,3.25697331852152,0.00112607017198738,1 +"94240",1044.22029192608,1.49955717298201,0.375897243721213,3.98927419136429,6.62757767678567e-05,0.812806126280994 +"26284",2814.36580328704,0.811406702471519,0.106498743106214,7.61893219399104,2.55782773214075e-14,3.13691993069742e-10 +"51752",3297.96013142886,-0.0979187971248548,0.198622065253235,-0.492990529526577,0.622019279023658,1 +"64167",2500.21323096975,0.197472936778374,0.242194919122915,0.815347148872912,0.414873627521037,1 +"2064",22404.4697338704,0.7513480449077,0.382323699270192,1.9652144147536,0.0493894262814734,1 +"2065",6810.74198542867,1.20518151774247,0.331102053555903,3.63990952275683,0.000272733856630494,1 +"23085",4058.4630866249,-0.876005164788899,0.187692554083058,-4.66723450521777,3.05280836406395e-06,0.0374396417768802 +"2067",2257.12549859055,-0.0889816732789309,0.119064645612337,-0.74733916874575,0.454858854751672,1 +"2068",1166.98319968736,0.200805984360504,0.177289874941875,1.13264214567436,0.257364562264878,1 +"2071",2422.93075031015,0.32777666972905,0.102922650201997,3.18468936707082,0.00144909465830738,1 +"2072",502.415962485848,-0.12554090690903,0.184324106648208,-0.681087835942321,0.495815913455249,1 +"2073",107.400210566237,-0.0526538010154847,0.147779137015357,-0.356300639446913,0.721615430497736,1 +"2074",699.944362991858,0.188566261486525,0.177408058919151,1.06289569163517,0.287829257053779,1 +"54821",245.296616903243,2.81768806989309,0.35476400632382,7.94242938873899,1.98259223617696e-15,2.43145111844742e-11 +"1161",265.094036893581,0.255401264629893,0.134310283612836,1.90157639281081,0.0572265566178962,1 +"2069",1298.81791169903,-1.34416380263752,0.664395124596428,-2.02313917257294,0.0430588008449296,1 +"2077",2651.44592097001,-0.399100919428024,0.179487972291508,-2.22355244383641,0.0261785712012424,1 +"2078",634.720948209896,-1.28326295527306,0.268784514320281,-4.77431878290403,1.80316565665387e-06,0.0221140236132031 +"57222",6331.53261112869,-0.404775481976637,0.114114212118252,-3.54710841413148,0.000389484278707713,1 +"51290",2051.37224800802,0.258397585626652,0.1424068312712,1.81450274063439,0.0696003611852935,1 +"51614",11979.4752857581,0.373639766120845,0.138208009822188,2.70345956505382,0.00686217965353533,1 +"2079",2879.74401809555,0.575984700590802,0.112094755446985,5.13837331901947,2.77126917179995e-07,0.00339868451229546 +"90459",715.811981013873,0.128050198510393,0.153624028766649,0.833529751422533,0.404546025807204,1 +"112479",643.27842600668,0.44387280404827,0.12351845915238,3.59357465349112,0.000326172139125201,1 +"79033",2456.32467543983,0.442925185454675,0.112347306982068,3.94246375238322,8.06488419624014e-05,0.989077397826891 +"157697",612.061833705341,-0.337081615844208,0.142459908237361,-2.36615072980796,0.0179741249201412,1 +"27248",3082.11194508057,0.231922771692111,0.101916976168136,2.27560491305687,0.022869667017931,1 +"10613",2555.37069359086,-0.0738276814484869,0.2091665020414,-0.352961304644633,0.724117450243861,1 +"11160",7700.84078899704,0.253253037211051,0.21833425334686,1.15993268728529,0.246076213058222,1 +"114625",643.321801404531,-0.104833284829936,0.172293008370898,-0.608459309064127,0.542882885813817,1 +"79956",8198.97389886791,1.25915820597587,0.400112751647406,3.14700843897493,0.00164950200987589,1 +"2081",360.333150617406,-0.120672081275493,0.244403995749841,-0.49374021445626,0.621489660511492,1 +"10595",677.290570397673,-0.537937652363943,0.659977720973083,-0.81508456311343,0.41502390717708,1 +"121506",1410.83209430446,1.81628618356971,0.632911238130565,2.86973286954817,0.00410818703409869,1 +"10961",6992.55474767007,0.239486018807546,0.195207582156592,1.22682744267297,0.219887454059013,1 +"23071",3519.98318795699,0.0459549905707466,0.157679237076327,0.291446048464209,0.770710200699599,1 +"54206",9836.54027144219,-1.29254615462058,0.27986412508942,-4.61847746368921,3.8656595393465e-06,0.0474084485905455 +"2086",988.438956407123,0.892251041285584,0.389773325325196,2.28915367807985,0.0220704249226601,1 +"100507321",302.160128139462,-0.382755341024002,0.209525780046007,-1.82676967454773,0.0677344072743874,1 +"100288413",177.886624846079,2.21168741440323,0.493488362464953,4.48174178486389,7.40362902664263e-06,0.0907981063827452 +"90952",1392.17990282474,-0.919154977694193,0.199136932473956,-4.61569316286624,3.91785440672415e-06,0.048048566444065 +"114799",1107.9710484221,0.474257670352664,0.115276173905426,4.11409968153308,3.88693456336568e-05,0.476693654851167 +"157570",257.01039026361,2.76637583387821,0.394708482682992,7.0086556414345,2.40618856102788e-12,2.9509496512446e-08 +"2098",3581.63940977176,-0.756539364659503,0.156766572156649,-4.82589721936084,1.39374376438897e-06,0.0170928735264663 +"51575",956.980046181593,0.34050433740008,0.142983948056959,2.3814165298082,0.0172461987689676,1 +"9700",1085.31007611186,2.88610187261128,0.441020408867788,6.54414583674403,5.9836385109078e-11,7.33833426977732e-07 +"83715",433.548332343097,1.96905245068986,0.547702818135092,3.59511104469831,0.000324253240987463,1 +"2099",1095.96176291172,-2.53854705884056,0.451147645001449,-5.62686536650859,1.83513846382074e-08,0.000225061381202975 +"54845",5469.04659670733,1.7651781548141,0.726652176599601,2.42919268896203,0.0151324874918949,1 +"80004",3650.87460390785,1.59540232071799,0.620928912831346,2.56937998496992,0.0101880674761123,1 +"2101",2326.42574949731,0.102027865598998,0.189925625295718,0.537199050629101,0.591130126979602,1 +"23344",8073.49073604267,-0.457843221542972,0.15707391845039,-2.91482651009038,0.00355886319306168,1 +"57488",6738.79128155245,-0.796184830878609,0.146819166312389,-5.42289437323567,5.86416479554155e-08,0.000719181170525215 +"54465",680.618662178073,0.551708639312953,0.15000612253192,3.67790747471359,0.000235155225733227,1 +"2107",6539.39855289185,-0.666269582219244,0.164331697108812,-4.05441916526958,5.02590258154078e-05,0.616376692600161 +"2108",4344.57249101541,0.178906834200194,0.177632171653034,1.00717585409951,0.313850274295113,1 +"2109",4445.95681177671,-0.188971510131237,0.236284520379887,-0.799762548250804,0.423848385765209,1 +"2110",938.683162978095,-0.979166869708827,0.154522495442712,-6.33672700472177,2.34697295446439e-10,2.87832763135513e-06 +"23474",2009.13103210226,0.200679043591963,0.249396112315858,0.804659871112205,0.42101598244884,1 +"55500",2237.34263894387,0.417156274736088,0.156297587700143,2.66898728812375,0.00760803296097601,1 +"55224",1042.90381284465,0.0157904404766119,0.191424566063465,0.0824891015888565,0.934257784471654,1 +"2113",5636.79532278628,-0.648560598625811,0.297300035820375,-2.18150191888191,0.0291463126845312,1 +"2114",19889.235772887,-1.38302941890369,0.324513249088359,-4.26185809913455,2.02734165742814e-05,0.248633180866987 +"2115",402.623679936412,-0.103821328537177,0.246505146606646,-0.421173066633154,0.673628710056815,1 +"2117",697.195779033943,-0.265339163100032,0.234438315634796,-1.13180800835207,0.257715160131262,1 +"2118",809.955515787733,2.27836972043379,0.386412075941472,5.89621769682706,3.71928217257979e-09,4.56132765645186e-05 +"2119",583.092480210564,0.264124280555556,0.205076961606686,1.28792760769547,0.197771164171955,1 +"2120",3114.07576220575,-0.0611975554513761,0.225232334747084,-0.271708569376131,0.785846111696057,1 +"51513",429.981779056912,0.849256292048262,0.374459031074813,2.26795516083731,0.02333193975714,1 +"2121",1078.9939411889,-0.996965461931633,0.244283265261397,-4.08118608069539,4.48064641718858e-05,0.549506476604008 +"132884",297.0284767695,-1.22795359194065,0.269356081101292,-4.55884859521278,5.14348340112665e-06,0.0630796804314172 +"2123",340.145930866957,-0.943143778226543,0.318688659353359,-2.95945196211327,0.00308186746027143,1 +"2124",501.941013245153,-1.13123870529774,0.322637542221388,-3.50622155595739,0.000454516713609918,1 +"7813",1067.93106000953,-0.00637085901933141,0.141506014200863,-0.0450218250814993,0.964089912691346,1 +"115704",1312.63735074947,-0.441100518759836,0.173366407319493,-2.54432519875054,0.0109489097260004,1 +"51466",2679.83184498195,-0.476432416672922,0.187206837668073,-2.54495200393087,0.0109292759429714,1 +"2125",10422.9147517846,1.58557223772595,0.572711202793784,2.76853714401125,0.00563085667272515,1 +"2130",7240.35322113539,0.125162886384308,0.109908720824306,1.13878940129224,0.254791003470593,1 +"55218",1412.36616623268,0.0419740343281566,0.139754075606544,0.300342112714681,0.763916213776356,1 +"54932",351.255556158732,-1.04630464578362,0.221049018452954,-4.7333602886199,2.20832986661721e-06,0.0270829574841934 +"9156",394.588949190031,3.10956971816535,0.375386879377934,8.28363986327471,1.19466520440302e-16,1.46513740667986e-12 +"55763",1982.41280481771,0.0295103595991369,0.134617695924712,0.219216050285404,0.826481753225356,1 +"55770",1739.82686154925,0.202644773101363,0.137035873378009,1.47877171215142,0.139201338632297,1 +"11336",3287.07936092284,-0.617132275695088,0.189200613597577,-3.26178791897422,0.00110711938852413,1 +"283849",183.897790123902,0.227640298424269,0.195484135287851,1.16449500154613,0.24422346782396,1 +"90332",201.424746398453,-0.315520847990628,0.243433038078952,-1.2961299356922,0.194930723045732,1 +"60412",4313.23736511234,0.176094527028101,0.137771054692634,1.27816780833221,0.201190264124725,1 +"10640",2404.50794415515,0.0388672667749486,0.166008693566611,0.234127899809976,0.814885686871735,1 +"54536",811.664558131457,-0.291581211097863,0.140271812921436,-2.07868712198917,0.0376461174027947,1 +"23233",709.717255648937,0.263378183007095,0.180757074288272,1.45708368009464,0.145093282720738,1 +"23265",7053.45310851417,-0.200160409528236,0.135867679564242,-1.47320105981198,0.140696829405082,1 +"149371",778.53970281303,-0.200393774603886,0.120017298653691,-1.66970742427824,0.094977264131059,1 +"9941",361.31910340209,-0.0908995035293782,0.167274424949763,-0.543415429804513,0.5868438043842,1 +"51013",1019.29076358644,0.0736242398172376,0.109483252161026,0.672470340111492,0.501284316024942,1 +"5394",3127.75989842293,0.503496335973944,0.0836146002377613,6.02163180284583,1.72667331706009e-09,2.1175921560425e-05 +"23404",1054.20591893823,0.357862856659952,0.144955506148298,2.46877725564862,0.0135575580117124,1 +"51010",649.107828815671,0.505351057939407,0.122463304058518,4.12655090293765,3.68244523653983e-05,0.451615083809245 +"54512",1192.04581212819,0.713337292150928,0.148663777937013,4.7983261427216,1.5999710133671e-06,0.0196220445079341 +"56915",1219.15163702263,0.669579843047827,0.20587232401635,3.25240338276188,0.00114433492781576,1 +"118460",737.140553650947,0.154971942810049,0.13137693793867,1.17959776838758,0.238160230943877,1 +"23016",1657.20503257515,0.186912163398202,0.140491131965677,1.33041965555424,0.183380042010865,1 +"11340",804.519989918087,0.0965422806300921,0.108208903859499,0.892184258288435,0.372294178289269,1 +"5393",964.698358249425,0.0904236923252336,0.122855050258256,0.736019334452692,0.461718931457907,1 +"23086",452.676055155423,0.0538963229234285,0.33071298097052,0.162970085919406,0.870541987734008,1 +"2131",2712.05835484506,-0.0993809457565937,0.196425406943098,-0.505947511084365,0.612893497835364,1 +"2132",3690.27680041125,0.1861122855304,0.171085383026067,1.08783276653181,0.276668941470414,1 +"2135",826.245978429879,0.24008326120788,0.221527701573966,1.08376180270944,0.278470425312633,1 +"2137",2690.75847065438,-0.539509799301152,0.197424275668825,-2.73274295915953,0.00628093281589412,1 +"2139",1637.46927237678,1.27217352379578,0.418666514169259,3.03863213498243,0.00237654858022249,1 +"2140",1434.41531799892,0.543791688429676,0.148714721669608,3.65660966395641,0.000255573101270071,1 +"2070",199.653128794628,-1.97856765313502,0.3853319703944,-5.13470930301964,2.82580456956699e-07,0.00346556672411695 +"2145",2092.71006219129,-0.887434270830921,0.218333806984231,-4.06457562889019,4.8119934304089e-05,0.590142874305348 +"2146",936.205530983488,2.1520560564094,0.328141373987765,6.55831975790301,5.44174273268057e-11,6.67375328735945e-07 +"7430",33339.5097052256,-0.470716118013311,0.27680475382983,-1.70053480476961,0.0890303754469471,1 +"2159",450.087234900151,-4.18494026168013,0.291338615621469,-14.3645230576559,8.63994460121369e-47,1.05960280589285e-42 +"50848",17863.9559425232,1.04357811291094,0.430992658058338,2.42133617220385,0.0154635694824952,1 +"2161",288.448840062935,2.42145417678895,0.489899864964323,4.94275330523983,7.7026927220287e-07,0.009446582354296 +"2162",2536.48528248434,-2.2926991572235,0.299682039878587,-7.65043897242678,2.00294378895437e-14,2.45641026277364e-10 +"2149",1124.21941122115,0.707133190945435,0.212730572610333,3.32407882077542,0.000887111192806832,1 +"2150",1755.75254442385,0.166199835054007,0.603912929006659,0.275204962621647,0.783158774507741,1 +"9002",198.439031540634,-0.204576742871204,0.310628883302063,-0.658588926749188,0.510159775495537,1 +"2152",5326.42098138156,-1.93417680117196,0.46408157425776,-4.16775176705825,3.0761866401898e-05,0.377263529552877 +"2153",1176.42591051278,0.105320328159717,0.504876642384883,0.208606061992125,0.834755777904641,1 +"2157",656.464723627664,-1.64787243503203,0.262932797097112,-6.26727609954038,3.67418361541891e-10,4.50601878594975e-06 +"8263",546.238010536841,0.566511024535077,0.237034718267209,2.3899917643982,0.0168487506082317,1 +"79152",1091.06615721567,-0.762953831775102,0.574603403265025,-1.32779205176967,0.184246813419435,1 +"2166",1204.47364726911,0.812733028714769,0.304602002008813,2.66818019367862,0.00762633440410418,1 +"158584",373.012925201826,0.661569396432424,0.403057259627521,1.64137819287464,0.100718933756411,1 +"2170",755.828241306183,-0.859922740592029,0.419033680366934,-2.05215661862556,0.0401544439474232,1 +"2167",7146.66344625993,-3.12466972119078,0.559994061859431,-5.57982652675901,2.4075857806468e-08,0.000295266320138523 +"2171",1299.53836159253,0.100035079119119,0.506732353312291,0.197412062729432,0.843505090671675,1 +"2172",301.516052966039,2.93720078343762,0.571782613950293,5.13691866764763,2.79279749929612e-07,0.00342508685313676 +"8772",1148.2954397148,0.537987289337089,0.159266443511264,3.37790734492694,0.000730396863368031,1 +"3992",2143.2499099789,1.06979152232723,0.26248694419586,4.07559898114012,4.58960544467955e-05,0.5628692117355 +"9415",4044.3963023855,1.06171278650274,0.38677480666059,2.74504121835018,0.00605032980043894,1 +"3995",823.349219327218,0.401850349114934,0.255248663536751,1.57434849431474,0.115406904256804,1 +"11124",2690.79633555318,0.0300863048916566,0.117102665672175,0.256922459612339,0.797238632146781,1 +"23197",2944.082698196,0.118003638972284,0.120717541482285,0.977518573716159,0.328312487047178,1 +"2184",1197.94534280592,0.228788122496765,0.196997737736852,1.16137436462534,0.245489689457084,1 +"81889",1231.69453306116,-0.119568482396573,0.17632974650969,-0.678095924047632,0.497710874909709,1 +"51011",565.617194370628,0.119638042243382,0.128352785203503,0.932103203321192,0.351283192735201,1 +"151313",595.109133745796,-0.465503808715749,0.22468985931743,-2.07176153890465,0.0382876851410633,1 +"55179",623.474547363398,0.222643600598209,0.15779670109576,1.41095218754349,0.158258712515683,1 +"23017",422.947286644812,-4.52365113302344,0.368612503289404,-12.2721044258009,1.27885660676325e-34,1.56838974253444e-30 +"399665",6637.44563742367,-1.03738327269846,0.203757424841508,-5.09126611462324,3.55680416631316e-07,0.00436206462956646 +"284611",2455.49669562499,-0.941480688782857,0.271384465361149,-3.46917679142012,0.000522055795909911,1 +"84923",1677.45904981735,0.403689138414589,0.132992934453052,3.03541793460536,0.00240202582127021,1 +"90736",739.028264459483,0.076557826454868,0.203832789054884,0.375591320757791,0.707220744163385,1 +"11170",2127.99460796494,-5.13783453562488,0.397809649760443,-12.9153089642718,3.68960090062623e-38,4.52492654452801e-34 +"83641",4607.98914507538,-0.351637435050099,0.361697621410307,-0.972186197075386,0.330957926085307,1 +"83541",1353.7196734266,1.34495516401427,0.334999017761637,4.01480330599433,5.9495390070838e-05,0.729651463828757 +"90362",432.367850261749,-2.34629611381773,0.379247717145033,-6.18671123845014,6.14323466154357e-10,7.53406298891703e-06 +"642273",2748.90783282432,1.06837355293704,0.607883456110982,1.75753023412104,0.078827473117738,1 +"79927",165.000989495562,-2.48317835869807,0.302634904689304,-8.2051948411152,2.30217222259141e-16,2.82338401378611e-12 +"63901",1524.19342123018,0.603160543209594,0.157869024694075,3.82063894027611,0.000133106394392926,1 +"374393",469.894567099108,2.94926056036742,0.37688097108104,7.82544300898982,5.0587232368555e-15,6.20401817767959e-11 +"92689",3657.62357137462,-0.745743690023936,0.172348061428208,-4.32696302960494,1.51179324343581e-05,0.185406323374967 +"10827",775.038670720872,-0.421020442444658,0.114620229761172,-3.67317744277703,0.000239553012291203,1 +"81558",1020.44129560867,-1.11475459923673,0.244428592858425,-4.56065547078775,5.09941902103651e-06,0.0625392748739917 +"150864",1028.77105785173,0.427289891444113,0.141234391949897,3.02539548296207,0.00248308208333454,1 +"55007",1473.9285509203,-0.139982419782935,0.192381438575758,-0.727629551058851,0.466840385957693,1 +"79607",596.174417036729,-0.238859477712453,0.110121952098441,-2.1690450737645,0.0300792620631059,1 +"23196",9476.31402828044,-0.033143302522184,0.189073035731393,-0.175293649853219,0.860848901202327,1 +"158293",1779.05607468007,-0.45351210964838,0.131776411956471,-3.44152722718073,0.000578440254779915,1 +"84498",1488.89225169588,-0.401375977073464,0.137134336614472,-2.92688167662821,0.00342379111610289,1 +"54954",601.329154225721,0.0617838624581759,0.217666018249978,0.283847074315571,0.776527577427037,1 +"116224",849.331439570333,-0.730485885303295,0.135111321645732,-5.40654829221981,6.42509095147776e-08,0.000787973154289232 +"159090",1938.09926603627,0.296352368466675,0.147791667293378,2.00520349958833,0.0449412961148947,1 +"159091",135.282175188451,-0.417433917338453,0.172064766941704,-2.42602785426653,0.0152650986175883,1 +"220108",233.188719606976,-2.17069355231047,0.340284081912166,-6.37906287038947,1.78174885922112e-10,2.18513680094878e-06 +"84668",1081.01635562491,-0.144343019697742,0.255681714547548,-0.564541816974163,0.572385449558175,1 +"285172",859.2780720002,-0.0616710003067235,0.141802865992895,-0.434906585807748,0.663630234052496,1 +"131408",1114.537056137,-0.810979818206073,0.225730400612935,-3.5926920609895,0.000327279266791548,1 +"57579",1068.87833334861,-0.149090647782088,0.267726783214343,-0.556876103287454,0.577612082728479,1 +"84908",2028.61044435229,0.830670757031692,0.136016717311778,6.10712251735664,1.0144336880291e-09,1.24410147499888e-05 +"10144",1845.04389776325,-0.317662542927335,0.267866041818673,-1.18590076133044,0.235661492488223,1 +"51306",2166.07352667456,-1.13792576157436,0.264992395185717,-4.2941827095712,1.75338037547552e-05,0.215034569248318 +"220965",132.798528690287,-1.51643102055162,0.325310229280878,-4.66149196692585,3.13925323232561e-06,0.0384998016412413 +"25854",552.669666154917,-2.57130275214112,0.400157449876402,-6.42572755532934,1.31240275443344e-10,1.60953073803717e-06 +"317662",900.388162278885,-0.484334107587676,0.143523280593858,-3.37460309981518,0.000739222202521342,1 +"29057",106.62174263294,0.529654429955264,0.208343121841381,2.5422218179034,0.0110150244081648,1 +"729830",389.822669226149,0.218880313691321,0.415903999877115,0.52627604869391,0.598696421905023,1 +"84067",1673.28895902743,-0.37453139804253,0.106507218687437,-3.51648839072265,0.000437295782220347,1 +"57700",1259.62937955932,-0.420247384372895,0.190600650124933,-2.20485808467828,0.0274640545933662,1 +"64760",2828.14016583612,-0.631540996442437,0.166227861234477,-3.79924876463157,0.000145135356211825,1 +"84140",209.791552087111,0.786651856237701,0.23647090251368,3.32663278177403,0.000879021291398474,1 +"145483",349.9479210365,-0.644866009481049,0.196252039017195,-3.285907309348,0.00101654454903728,1 +"26355",4154.94795038899,0.0504553233547946,0.224532238806965,0.22471304621058,0.822202514749318,1 +"84734",241.84995542176,-0.25370169138365,0.226415337423543,-1.12051460060351,0.262494534254441,1 +"23201",426.576926973192,-0.171951145144149,0.217837511108945,-0.789355076032579,0.429904504736708,1 +"130074",6679.35602484262,-0.82933523246687,0.231683504203835,-3.57960414711796,0.000344115085149913,1 +"26049",542.758216168728,0.412248576313222,0.34221967602804,1.20463142592492,0.228345619315272,1 +"221061",935.209384504923,-1.4069590694272,0.323752436068037,-4.3457868194435,1.38777301346134e-05,0.170196482370898 +"165215",299.286520922325,1.23640386005923,0.303365058100685,4.07563042296348,4.58898529834479e-05,0.562793156989005 +"83989",1197.86127694271,-0.949360091443762,0.264763987606392,-3.58568436752477,0.000336195386417076,1 +"345757",838.789792214162,-0.288842380545555,0.133930950051854,-2.156651471775,0.0310328307988071,1 +"400451",3205.49397937897,0.886376469935221,0.416835140425053,2.12644372792411,0.0334663300393886,1 +"283635",2046.040328298,-0.495114465043631,0.128917345497501,-3.8405573984862,0.000122755265031526,1 +"79632",219.399507351367,-1.60835157699596,0.409479966980216,-3.92779062882378,8.5729792482504e-05,1 +"27146",128.236772469451,-0.726726430582605,0.210442488839533,-3.45332558358378,0.000553720248644048,1 +"222234",225.702926684933,-0.070167490928504,0.182704413873163,-0.384049238007,0.700941953894151,1 +"23359",183.258142279721,-1.250454112737,0.469886281769957,-2.66118454879513,0.00778662655481561,1 +"9413",487.516363746056,-3.00220168805933,0.380709004500168,-7.88581738958583,3.12483286540862e-15,3.83229502613713e-11 +"10712",2097.2669756365,0.454227582664362,0.197306993329641,2.3021362547727,0.0213274894370654,1 +"8603",1434.72808148443,-0.313058245597564,0.11877856349323,-2.63564599866041,0.00839772905452645,1 +"54540",1585.55597319211,0.133569472369719,0.14299422984235,0.93408994556618,0.350257497919486,1 +"139231",2599.47777472135,0.416590070935415,0.120096719238672,3.46878810325793,0.000522811629904608,1 +"221786",339.94373956506,0.677048971067383,0.167541464005248,4.0410830541995,5.32049096294021e-05,0.652505011694988 +"285550",797.872170895904,-0.111136991005643,0.11091095420234,-1.00203800251228,0.316325238987616,1 +"63877",1399.7746282234,-0.436262923929356,0.131348454673875,-3.32141649486896,0.000895617781763145,1 +"85395",289.941883051428,-0.289444928246794,0.182167754184068,-1.58889222487933,0.112084726856763,1 +"54757",416.310596286079,0.14605096216409,0.270231805525591,0.540465478813742,0.588876061835497,1 +"9917",4445.53274717232,-0.0577587964582542,0.163392471828865,-0.353497292817443,0.723715657953955,1 +"56975",1847.07327248468,-1.00327730170443,0.252524503500894,-3.97298989917973,7.09760600692246e-05,0.87045040068897 +"125228",805.261126747007,0.266829337558914,0.168611051974009,1.58251392441372,0.113532296107907,1 +"116151",4201.89679027089,0.0025841520187409,0.189561606551856,0.01363225426154,0.989123371679276,1 +"56204",1596.42285635735,-0.00917046820717852,0.157353048028169,-0.0582795714610933,0.953525939465481,1 +"80256",1166.5401767437,-0.406071883285871,0.191646629319979,-2.11885742382603,0.0341025180465605,1 +"29902",193.288457078844,-0.612161711744789,0.223406363440165,-2.74012656720382,0.00614155289174312,1 +"63939",709.638304462047,0.637978995927738,0.221497926435095,2.88029331107388,0.00397305360663793,1 +"26017",3795.78315437846,0.211966605517205,0.111053293013172,1.90869266246849,0.0563017502771645,1 +"60343",2314.82302676588,-0.0243526988666572,0.125751181691178,-0.1936578133036,0.846443826519623,1 +"54097",2399.63978354138,-0.569298611743326,0.64672414067897,-0.88028044097077,0.378707405589833,1 +"10447",1389.52110072546,0.324727413034372,0.233962364174378,1.38794722040142,0.165153117424791,1 +"131177",828.699429714534,-0.576540428594343,0.511765561754338,-1.12657136720563,0.25992375073532,1 +"131583",1108.88994743821,-2.06667964879432,0.373688777799004,-5.53048357771643,3.19349195638251e-08,0.000391649853530751 +"81553",1022.672766967,-1.41571921617154,0.24191324789446,-5.85217729286648,4.85179018550987e-09,5.9502354835093e-05 +"51571",2942.43583011503,0.882643415302502,0.161459527029299,5.46665428508491,4.58609261208629e-08,0.000562438397946263 +"9130",3798.94560199043,0.307398161440972,0.14745451173564,2.08469824234394,0.0370967003128031,1 +"26240",380.884783485596,-1.95313539689261,0.350306956358356,-5.5754970360754,2.46824110041126e-08,0.000302705088554437 +"9679",1770.66446624453,-0.956812822787804,0.188456274688291,-5.0771078032312,3.8322346168859e-07,0.00469985253414887 +"51307",2185.40152453679,-0.599560353786875,0.16586736898476,-3.61469743842119,0.000300698585505384,1 +"199870",679.924364955551,-0.208119595679061,0.133511763446985,-1.55881092651211,0.119041137315282,1 +"143684",600.609839055955,0.217089077661934,0.104841896169655,2.07063288239886,0.0383931168200622,1 +"286336",280.995056512445,-0.301655211494531,0.30404504252359,-0.99213987832453,0.321129295699388,1 +"84985",3940.26244930936,3.20792454486639,0.874670090068609,3.66758230479193,0.000244854746567882,1 +"222584",934.123544733994,1.90034412183595,0.650503976151233,2.92134128538231,0.00348527805194254,1 +"128876",718.169694099244,1.20029519949169,0.66996693136985,1.79157379758655,0.0732012634925404,1 +"81610",2033.1154501224,0.507020308842235,0.401916426344942,1.26150680989358,0.207126308020856,1 +"113828",571.803689868956,0.61863535347019,0.567546699856529,1.0900166517162,0.275705809024121,1 +"644815",504.331224001985,0.473371562587826,0.393469920865301,1.20306924998691,0.228949523671854,1 +"286077",7117.00162626812,1.61339139088007,0.56606369433153,2.850194080695,0.00436925590483966,1 +"55199",321.016838806366,0.391654907877115,0.120155706814038,3.25956143292694,0.00111584611934892,1 +"645332",154.875397692287,-0.19480398461116,0.148721992737369,-1.3098532437981,0.190245487035294,1 +"692099",291.028990076711,-0.177722692255803,0.213704985642714,-0.831626326925907,0.405619897085063,1 +"348926",160.168688885265,-0.117314493344478,0.145945528243853,-0.803823829041638,0.421498725774633,1 +"729375",115.230748683332,0.0607438170080374,0.226285076218852,0.268439342191921,0.788361159687836,1 +"375061",402.507028578585,0.274990417852501,0.269637657893245,1.0198516779929,0.307798809840724,1 +"23625",2673.59542527238,-0.00936903594534719,0.165259589198542,-0.0566928430040527,0.954789875303173,1 +"51439",1855.2100904269,-0.566401508841838,0.159970633524114,-3.54065928454587,0.00039912863363677,1 +"157769",2748.66474533011,0.699789911765402,0.198552195664842,3.52446322450473,0.000424341712944061,1 +"25940",2268.80818459652,0.110804075131559,0.127152810170754,0.871424508689661,0.383522408531612,1 +"283742",906.477474877261,0.061682102312906,0.160083711458819,0.385311545758193,0.700006608410652,1 +"147965",761.838920711381,0.253170039689681,0.171492085261354,1.47627827432298,0.13986920398956,1 +"22909",1052.5290715373,-0.150994357175598,0.191330660800126,-0.789180137381823,0.430006729332764,1 +"2175",702.814351549394,2.46019051492128,0.305391327821402,8.05586239947208,7.89203758795905e-16,9.67879489787297e-12 +"2176",500.588829559386,0.726573750600458,0.181600819219272,4.00093872772217,6.30916945571708e-05,0.773756542049143 +"2177",1034.184237444,1.85636559422165,0.281275045922851,6.59982327309199,4.11648195165722e-11,5.04845346551241e-07 +"2178",485.428762902594,0.557587655556165,0.15291390446358,3.64641565796241,0.000265923705232972,1 +"2188",617.013786602608,0.992605822385487,0.259894357646947,3.81926653341928,0.000133849075565485,1 +"2189",1042.1611644543,1.25772131477492,0.161784203012826,7.77406750073867,7.60052043851447e-15,9.32127826579415e-11 +"55215",1821.88320797978,2.08012304253209,0.228691735725433,9.09575081903916,9.39351641020829e-20,1.15202085254794e-15 +"55120",743.454332740311,0.824154373683919,0.134769671150071,6.11528073527901,9.63871280149089e-10,1.18209173797484e-05 +"57697",328.976305670576,0.572088294271477,0.182708946538666,3.13114549182959,0.00174125872531783,1 +"92565",142.804459941537,0.602480431274043,0.267854082577565,2.24928597494712,0.0244943075481369,1 +"2191",788.597512334042,1.52941556527289,0.364525352655208,4.19563565094334,2.721073699091e-05,0.333712478456521 +"84188",3720.50678699401,-0.142772207193224,0.11392432293655,-1.25321971211311,0.210125758042566,1 +"55711",540.224884906807,0.523649139144686,0.313956240377368,1.66790485997435,0.0953346147631053,1 +"10160",4801.17300595481,0.135657403143376,0.261808427935993,0.518155218351267,0.604349976464031,1 +"9855",951.166493961642,-0.346894659392181,0.194859586223515,-1.7802288617932,0.0750385138222263,1 +"10667",704.738013706604,-0.269558554547245,0.154889827193921,-1.74032445791135,0.0818020617782341,1 +"2193",3318.36431756823,0.50686563161553,0.114855609194177,4.41306815724266,1.01915894068078e-05,0.124989652485091 +"10056",2021.87601115274,0.113851716030049,0.158202760584307,0.7196569491553,0.471736238911374,1 +"355",719.716463780322,-0.868825416818348,0.20703799624589,-4.1964539484167,2.71126559250812e-05,0.332509612265196 +"2194",12979.0895025126,1.23922453618199,0.181536068810451,6.82632682475852,8.71163417577892e-12,1.06839481531753e-07 +"10922",3891.16850850717,0.450513558903057,0.120600043094711,3.73560031441493,0.000187267907556576,1 +"79675",596.603466408024,0.181885213937329,0.172199148842062,1.05624920425217,0.29085437623362,1 +"22868",1939.96319991903,-0.395320019804831,0.160956958796599,-2.45606044473291,0.0140469528286174,1 +"79072",338.715607620191,0.807865580357488,0.179229765522548,4.50742976760661,6.56176400000938e-06,0.080473473696115 +"60493",953.035927780293,-0.00466221708752446,0.160397601019901,-0.0290666260460217,0.976811453102321,1 +"2195",8148.34452381248,-0.0292454715865782,0.345502250832012,-0.0846462548830045,0.932542624919701,1 +"2196",3890.16840400606,0.677858437840952,0.639305920633807,1.06030370744717,0.289006453125067,1 +"120114",381.621815294765,-2.33477191134677,0.523619535673842,-4.4589090976947,8.23778458936659e-06,0.101028190203992 +"79633",869.238969402769,-1.88934014157061,0.357133198880703,-5.29029546256697,1.22118920891282e-07,0.00149766644581069 +"2197",17693.5639537336,-0.316707492312943,0.117245986145893,-2.70122247015651,0.00690851105071831,1 +"84553",604.270390832979,-1.11535524229501,0.499412357015718,-2.23333529222207,0.0255268418356559,1 +"85302",599.39290584067,0.0243964006300024,0.212722219298327,0.11468665901698,0.90869348871091,1 +"2091",11336.510146104,0.473209576146141,0.145538294407739,3.25144373906432,0.00114820497871399,1 +"54751",3743.49248327007,-0.825713297507748,0.167112590567426,-4.94105976518025,7.76990850219703e-07,0.00952901578709444 +"2192",53498.330137148,-1.76551534376556,0.317946560796271,-5.55286819062916,2.81019977161427e-08,0.000344642899990774 +"2199",8952.02277560218,-2.2957210849446,0.325234251008121,-7.05866949077042,1.68104369815813e-12,2.06163199142113e-08 +"10516",3208.63512394081,-2.50405536493508,0.289039212485341,-8.66337595997318,4.57994833970306e-18,5.61684864381183e-14 +"129804",199.141572437969,-1.25007462003998,0.302527632201992,-4.13210063140719,3.59462973260006e-05,0.440845390406071 +"2200",7158.95484428102,-1.02444916624907,0.348409521399014,-2.94035927070954,0.00327831883511754,1 +"2201",742.877204779216,2.55816046704154,0.468073962453872,5.46529111260626,4.62147724201278e-08,0.000566777968960447 +"2203",5089.5856168431,-0.0622616147713097,0.537083668414395,-0.115925354712649,0.907711701011102,1 +"64319",4246.12018771247,-0.0622306563410662,0.123386880187428,-0.504353917098287,0.614012695189851,1 +"57666",2185.22321591505,-0.116331388244447,0.18077995854979,-0.643497150777405,0.519901562956604,1 +"54850",1021.40931885113,-0.24211573153444,0.0808995273046217,-2.99279537966605,0.00276435019716465,1 +"144699",557.130459370567,0.316917044065242,0.1566526544262,2.0230556911153,0.0430674060871836,1 +"79176",677.415114080326,-0.194884264209356,0.122302333647093,-1.5934631694903,0.111056324353333,1 +"64839",1375.42062617725,-0.621965557584542,0.14649972188362,-4.24550674627652,2.18099946376559e-05,0.267477774236212 +"80028",673.800053144613,0.148670617566808,0.24816881249793,0.599070512005002,0.549125864712305,1 +"54620",1888.02002834329,0.81459201891104,0.153496610219479,5.30690559059438,1.11501891159938e-07,0.00136745919318548 +"25827",228.618661522608,0.040176024595314,0.295971834698048,0.135742729156312,0.892024667346212,1 +"84961",1301.81347635844,0.0377478760491193,0.168118110058246,0.224531884376057,0.822343460034296,1 +"283807",607.311238904494,-2.94543830910315,0.458124596539989,-6.42933894261243,1.28160069235325e-10,1.57175508910202e-06 +"26224",2205.27406556695,-0.582531354828635,0.12887533749167,-4.52011506752629,6.18060286221312e-06,0.0757989135021817 +"26235",531.991458905406,0.157541564225269,0.174988692295279,0.900295682874355,0.367962917927985,1 +"26234",4553.17001384238,-0.879228304691319,0.133171743178938,-6.60221368064494,4.05063084616713e-11,4.96769366973937e-07 +"26233",944.460696288717,1.38638263497413,0.169074807846426,8.19981789500779,2.40751453811082e-16,2.95257582953912e-12 +"23194",1128.73196984533,-2.24611398619577,0.361122119031195,-6.21981836012029,4.97730742149114e-10,6.10416982171673e-06 +"55336",164.437228498352,0.872811161177157,0.217975774935475,4.00416588235792,6.22366837770077e-05,0.763270689841222 +"26267",408.302492707601,-0.41733761099449,0.224720614107469,-1.85713986521461,0.0632912577886804,1 +"80204",3184.2399810709,-0.0773448263874611,0.123909052340362,-0.624206423393547,0.532492028964598,1 +"157574",81.7362847130202,0.70084449713793,0.294025707561759,2.38361639514368,0.0171434621444745,1 +"115290",641.605504887698,-1.1026977373625,0.382386905695657,-2.88372253583428,0.00393004858509427,1 +"26232",208.645759993194,-0.462867611581867,0.318811782135082,-1.45185227623033,0.146542684690851,1 +"23014",2577.55250637854,0.0646644094125433,0.107602732131049,0.600955088517539,0.547869899957383,1 +"26263",940.041339179782,0.557844621363124,0.145242541508166,3.84077981265398,0.000122644086472337,1 +"26260",944.993709723444,-0.541261885363968,0.169374510776688,-3.19565135794013,0.00139515584498445,1 +"126433",1185.76946245455,0.41403507842528,0.328844446815324,1.25906057540269,0.208008453054569,1 +"23219",2079.19459711658,0.0042264764963638,0.118047531818296,0.0358031754773948,0.971439301027223,1 +"26273",1347.97113814792,-0.516003505849793,0.103202406735897,-4.99991736791842,5.73548895978604e-07,0.0070340036602816 +"84085",1390.59467359763,-0.910700643023662,0.245382814782596,-3.71134646829496,0.00020615969619667,1 +"79791",1941.94507993123,-0.965680520136337,0.18724461344109,-5.15732069611795,2.50508543463775e-07,0.00307223677703974 +"114907",7511.40658995578,-1.45842063783348,0.282215317460977,-5.16775861407715,2.36918017376052e-07,0.0029055625650999 +"254170",805.199726222858,-0.352430549103161,0.132575613701094,-2.65833616955947,0.00785275199446548,1 +"55030",2047.5150738711,0.285723508998639,0.210636400292671,1.35647736384423,0.174947332816408,1 +"130888",148.314427584384,0.12802893859316,0.189472216255779,0.675713522136284,0.499222548994865,1 +"81545",1745.08562252927,-0.0821742660635085,0.102949874888651,-0.798196852132041,0.424756263883068,1 +"26272",427.445042507995,0.0612668258405285,0.173161379687127,0.35381345396547,0.723478690068425,1 +"150726",660.169500170989,1.49258000079157,0.210673987427474,7.08478544986671,1.39259882762361e-12,1.7078832021976e-08 +"54455",1157.94015381235,-0.0310464907357357,0.0956084601111622,-0.324725350660794,0.745388946481806,1 +"93611",835.79871717482,0.241777845414066,0.178078232430706,1.35770577972323,0.17455706209794,1 +"200933",1512.18426662025,0.866144748775836,0.200852185528472,4.31234913624106,1.61529096396594e-05,0.198099283820782 +"23403",1089.98615428031,0.428841716158382,0.138334533581588,3.10003370131331,0.00193498624575343,1 +"26271",370.416407018416,0.944131782023425,0.226591528941949,4.16666848240961,3.0908347685109e-05,0.379059976010177 +"26270",725.437476401376,0.954203078118424,0.170272794292651,5.60396675277683,2.09500910463549e-08,0.000256931916592497 +"25793",4252.44457775921,-0.195905798986416,0.110552375322434,-1.77206322718117,0.0763840622658987,1 +"26269",913.782881949476,-0.858854766340386,0.158820562758905,-5.40770509448553,6.38374225248037e-08,0.000782902149844192 +"26268",1720.52116307984,-0.401005336181788,0.175704927399992,-2.28226574015707,0.0224736559210986,1 +"23291",2335.98304124497,-0.428718075791502,0.13797743403784,-3.10716081061435,0.00188893614468809,1 +"26190",3168.05580961481,-0.134378649935065,0.141770165901923,-0.947862683803503,0.343199364151754,1 +"6468",2173.19097825081,-0.647619774622079,0.177974384786351,-3.63883698993826,0.000273872080041188,1 +"26226",816.615011613752,-0.646506924340773,0.167866027100329,-3.85132677235742,0.000117479616258651,1 +"54461",5099.41116240389,-0.389600714884778,0.162061991037941,-2.40402275937463,0.0162157636896972,1 +"55294",881.781978806255,-0.446586361007426,0.159364938611615,-2.80228740962773,0.00507416464836942,1 +"26259",746.737440990763,0.144761084498825,0.159376188760624,0.908298069018638,0.36372076245479,1 +"84261",571.506724747409,1.09817731658499,0.171237847037699,6.41316937571181,1.42525018089327e-10,1.74792682184751e-06 +"2205",197.972330059382,-2.94318205989617,0.45055243177887,-6.53238525042671,6.47303887447861e-11,7.93853487566057e-07 +"2207",917.776715509944,-0.0380192245204948,0.302413162379213,-0.125719476696654,0.899953984018326,1 +"51077",1778.04928508237,0.388047406272535,0.114765842723134,3.38120992331034,0.000721673857628616,1 +"8857",1430.54856751575,-0.433003705813891,0.436098140425478,-0.99290427010634,0.320756608643873,1 +"2212",1151.65534647202,0.550048349207041,0.270040864590278,2.03690782149438,0.0416592801870075,1 +"2213",377.640377247959,-1.19365225799478,0.302958287061915,-3.9399888003421,8.14854131782622e-05,0.999337107218208 +"2214",1250.13340868503,1.42613857728436,0.359107818043401,3.97133814867824,7.1470048947986e-05,0.8765086802981 +"2217",5314.09243863894,-1.31942127811631,0.204213657257204,-6.4609845190448,1.04023962116871e-10,1.2757498714013e-06 +"23149",546.60539360438,1.83208789834307,0.331575609396033,5.52540007897513,3.2873562957916e-08,0.000403161376115881 +"115548",1594.77739644941,-0.366223826318229,0.190294557401013,-1.92451025042443,0.0542906571322859,1 +"89848",1109.95457979144,0.569749039023232,0.195430350939946,2.91535596330332,0.0035528306112749,1 +"9873",2083.06870678507,-0.179236275671397,0.172363171516567,-1.03987571181451,0.298397647940359,1 +"2219",228.67891617432,-1.66103356337141,0.390366326853869,-4.25506363921908,2.08989565502917e-05,0.256304803132777 +"127943",519.326575507799,2.14678201419819,0.458334484821943,4.68387626349387,2.81499981525509e-06,0.0345231577342884 +"2222",7399.56631248882,0.362509289777595,0.195820388282504,1.85123363791218,0.0641359484544862,1 +"2224",3526.96816229903,0.770878804175247,0.172430354687304,4.47066762446327,7.79758009130086e-06,0.0956295222397138 +"2230",866.9791006328,-0.363023276294856,0.197088605104353,-1.84192929927453,0.0654854922301981,1 +"91893",169.527860680609,0.223368825185672,0.156521889773237,1.42707723187651,0.153557634406422,1 +"2232",1684.51891794416,0.905123582359052,0.221144077027522,4.09291351830512,4.25986629994509e-05,0.522430003025265 +"2235",1388.84729218709,0.0308867191727253,0.217040072262373,0.142308831962548,0.886836070631159,1 +"55527",2179.46672316037,0.054160615238537,0.148581520270404,0.364517842730171,0.715471352400902,1 +"10116",1246.7826104532,-0.422496751442804,0.190968056607727,-2.21239488398139,0.0269393920782792,1 +"56929",1559.63038977369,-0.81534222863953,0.1497135428026,-5.44601519259064,5.15107387670154e-08,0.000631727700238676 +"2237",2020.24349635232,1.7008718892355,0.246302546259068,6.90562040494082,4.99844920443651e-12,6.13009810432093e-08 +"2241",253.496066529921,-0.425747504512797,0.222783389172657,-1.91103791936141,0.0559997080708863,1 +"80307",4281.46436378063,2.44218115539477,0.573117456093326,4.2612227728012,2.03311444140571e-05,0.249341155093996 +"55612",2893.82113320363,1.5685166275252,0.454292952052812,3.45265454909118,0.000555099387371247,1 +"10979",5947.85513630823,-2.47505318505544,0.344217088747315,-7.19038439974822,6.46091602817209e-13,7.92366741695025e-09 +"83706",909.991605410144,-0.592699568008706,0.244052676885849,-2.42857228845693,0.0151584029311002,1 +"2242",1056.16810930021,-0.904622732071233,0.199141536530888,-4.54261199260618,5.5561461609937e-06,0.0681405765184268 +"9638",1207.24368303849,-1.54610245187651,0.284207027403845,-5.44005708092353,5.32635027325434e-08,0.000653223597511912 +"9637",2142.95101242163,-0.431987472470488,0.157809420635692,-2.73739977455304,0.0061926986802351,1 +"2245",860.792576889229,0.0526950651936854,0.242532204221433,0.217270384206687,0.827997635791974,1 +"221472",407.61897709527,-1.10378587770426,0.317257561236697,-3.47914758406895,0.000503011485103301,1 +"89846",1554.09270456558,0.627322681041567,0.432320229944294,1.45106020396594,0.146763096729676,1 +"121512",672.929212515411,-0.0241014364273567,0.227645743001203,-0.1058725549163,0.915683469661714,1 +"152273",1072.2847046624,-1.1062127316839,0.245350537537329,-4.50870311020044,6.52251074352628e-06,0.0799920717586063 +"100505641",6151.94306407206,-0.154915592402075,0.176663921857347,-0.876894335715959,0.380544033086216,1 +"55785",934.215336060234,0.106422381539574,0.166034004967891,0.640967382315178,0.521543875162014,1 +"2256",630.087200428535,2.20883814102453,0.467767309163279,4.72208745193331,2.33436261194988e-06,0.0286286230729534 +"2257",251.910491155457,0.428307858380609,0.404336063332078,1.05928680922246,0.289469180461711,1 +"2258",254.51427256971,-2.84600717547186,0.360240682353747,-7.90029365055762,2.78247120984412e-15,3.41242269175283e-11 +"2247",858.789271755127,-3.08053375972238,0.341203461385179,-9.02843642680641,1.74142077048046e-19,2.13567843291724e-15 +"2252",1194.88634292317,-2.92406630809201,0.355848857411835,-8.21715806356487,2.08382337884874e-16,2.55560099182009e-12 +"9982",5522.14775850879,-0.204441815430014,0.870725069900905,-0.234794911157527,0.814367917656216,1 +"143282",102.473141177269,-0.177210438509973,0.251766207187993,-0.703869039809819,0.481514333705319,1 +"2260",7228.87049340487,-2.3555605532688,0.368594791279257,-6.39065067928257,1.65181343051287e-10,2.02578399118098e-06 +"11116",452.176147529615,0.647093020049673,0.137993558789671,4.68929873050065,2.74142928182128e-06,0.0336208887122561 +"26127",1501.91188615206,-0.310093347063285,0.142137928475868,-2.18163688178368,0.0291363426298864,1 +"2263",2418.26573400295,-0.0734085131278213,0.261490554929746,-0.280731031174506,0.778916706018318,1 +"2261",8115.40792203492,0.873344103729094,0.546961764694216,1.59671874727358,0.11032841480632,1 +"2264",412.708144529478,-0.516826736088764,0.481645228111591,-1.07304444417546,0.283251175603293,1 +"53834",974.797172671625,-0.383279767180246,0.237955560417038,-1.61071994497004,0.107240776514557,1 +"55277",611.073042998789,-0.272718590022263,0.230919308859614,-1.18101249899401,0.237597758027848,1 +"10875",5650.9546097294,-3.67537685593221,0.34868667193099,-10.5406290282859,5.61222496031768e-26,6.88283269133361e-22 +"2268",494.873505183869,-0.692554740498503,0.255131841145111,-2.71449748251767,0.006637640483236,1 +"2271",2275.64643981459,-0.06240313353404,0.137686877159413,-0.453224990075051,0.650386739392127,1 +"114827",128.074877347202,0.976460605718706,0.243440561119568,4.01108427136392,6.04405301143286e-05,0.741242661322126 +"85462",658.787485106102,0.408030099823215,0.327050883885806,1.24760433292602,0.212175990932866,1 +"2272",231.252822697929,-0.883545028102801,0.238662971711709,-3.70206162173356,0.000213854658876315,1 +"2273",19214.7398881691,-4.78997641383805,0.444082705515544,-10.7862259762565,3.99875402692669e-27,4.9040719386229e-23 +"2274",5520.90416269828,-0.862797180647832,0.327469381590629,-2.63474153356548,0.0084201373107224,1 +"2275",1450.34615333941,-0.839283759525412,0.268542535736246,-3.12532894360441,0.00177606331493729,1 +"29109",1043.19324643337,0.530222347771903,0.14869121896527,3.56592912117929,0.000362569361557667,1 +"80206",1394.38919076291,-0.382046131278446,0.30331299439934,-1.25957719693158,0.207821925834724,1 +"387758",490.618735618558,-0.787977455497794,0.379807414008049,-2.07467633973331,0.038016541641382,1 +"9158",2805.10549754973,0.564406956454186,0.105665472601972,5.34145111506985,9.22054823485199e-08,0.00113080803552225 +"11153",105.72615643481,-0.0410842532939735,0.175502634980382,-0.234094794636935,0.814911386952674,1 +"9896",1192.49632737488,0.0330402233770283,0.141186423821222,0.234018416805185,0.814970681057806,1 +"55137",128.019720308491,-0.337775172147601,0.339963984275169,-0.993561635264881,0.320436329654128,1 +"63979",606.380130757359,1.42453319115743,0.204098828491713,6.97962453623426,2.9596997203438e-12,3.62977573702963e-08 +"27145",1371.11487920534,-3.47612656516765,0.424465531412766,-8.18942012463984,2.62487762124406e-16,3.21914991469371e-12 +"11259",5625.47878651365,-2.60259866529196,0.262611257476533,-9.91046115197302,3.74911675234678e-23,4.5979167850781e-19 +"81608",1883.11483621468,-0.032974503297003,0.103086083230527,-0.319873471409943,0.749064248891042,1 +"51024",3632.16776440457,-0.479247833718391,0.13731016802417,-3.49025742677725,0.000482555471495841,1 +"128486",118.961690335031,-0.424312021555709,0.278842731654639,-1.52168937320999,0.128086931571242,1 +"84922",759.001301872952,0.178572276663551,0.157765869102848,1.13188155130777,0.257684235839646,1 +"24147",373.017749661063,0.657839347175504,0.285677129212777,2.30273718091564,0.0212936348897033,1 +"60681",4342.32020542358,-0.195710843108515,0.285834652190471,-0.684699498849075,0.493533565353738,1 +"51303",1053.66632489535,0.572745194084318,0.18090409645333,3.16601561442295,0.0015454249771062,1 +"55033",500.473093497617,0.419523857812446,0.183334220964052,2.28830087261618,0.0221200057377052,1 +"23307",2088.48098531701,0.0535866676145007,0.112928086346151,0.474520284088095,0.635128936822173,1 +"2280",8501.48631997096,0.219857720460762,0.12557714478245,1.75077814391818,0.0799841327806492,1 +"2282",156.347458777959,0.245663334486381,0.147927581486258,1.66069999940615,0.0967737135337364,1 +"2281",291.895813001855,0.140604276505299,0.264254101950643,0.532079825695802,0.594670709440174,1 +"2286",2957.23053586881,0.0735397908390305,0.11599392657861,0.633996908357026,0.526082839764765,1 +"2287",2831.17040102444,0.415728944653031,0.124382210474436,3.34235051031254,0.000830720879183677,1 +"2288",9004.02098281682,0.968521135286983,0.167973739551272,5.76590803940134,8.12193397651828e-09,9.96073982880202e-05 +"2289",4359.70161864401,-1.90158401012192,0.236447917634988,-8.04229544138959,8.81709965759611e-16,1.08132910200759e-11 +"51661",590.304208901464,-0.732745477899803,0.229010371021147,-3.19961700700507,0.00137610317346673,1 +"23770",11672.2713024119,-0.442575903263481,0.132995579794943,-3.32774896688941,0.000875507197832024,1 +"11328",4905.61756416172,0.053962036302452,0.20426194663028,0.264180564185677,0.791640786751366,1 +"63943",383.953444175648,1.01159568890087,0.247796175610141,4.08237006245174,4.45787372647976e-05,0.546713633815477 +"79147",735.996810901688,-0.336248700528473,0.145621669689017,-2.30905675814974,0.0209404318744012,1 +"2218",795.088377314176,0.33263409651144,0.194399449905494,1.71108558523776,0.0870653147577142,1 +"80308",2215.52377103644,1.03421837583614,0.134340507546968,7.69848495231091,1.37688944713263e-14,1.68861721796345e-10 +"201163",1446.34067866095,-0.0628803357434929,0.197411149020256,-0.318524744197912,0.750086928127445,1 +"2313",691.724392422212,-1.21666348857283,0.20272675689882,-6.00149436208887,1.95509732503175e-09,2.39773135941894e-05 +"2314",9541.27951189505,-0.290250837209618,0.148540437729618,-1.95401899742579,0.050698970549019,1 +"90024",230.988732613959,-0.750469440628951,0.215451058750835,-3.48324786603558,0.000495369490381208,1 +"729614",336.292325571649,0.245170820222789,0.197849394725262,1.23917902586075,0.215279206180454,1 +"645644",191.638288505091,-0.16841188876914,0.197501179852381,-0.852713330092595,0.39381829682683,1 +"392490",20024.9941138272,-0.812660969526897,0.166888686021423,-4.86947910550737,1.11892813799074e-06,0.0137225346843184 +"441172",140.414481275285,1.5310039032928,0.298174502598552,5.13459028169846,2.82759335602922e-07,0.00346776049183423 +"2316",261046.581649056,-2.72258732122883,0.36013353086749,-7.55993843358783,4.03260186902928e-14,4.94558293217751e-10 +"2317",19018.7443256862,0.0703885995924366,0.292472956804939,0.240667035890711,0.809813189643876,1 +"2318",42647.3561542707,-4.60102870930582,0.48993071433251,-9.39118241560818,5.93304139180273e-21,7.27628196290687e-17 +"10211",9078.7047774386,-0.305048398843051,0.170942723691018,-1.78450648413928,0.0743414021238831,1 +"2319",10728.0627227691,-0.107064048267225,0.179171612204622,-0.597550286844289,0.550140043667932,1 +"23768",716.329277986904,-1.77980546345648,0.357942410606196,-4.97232350992516,6.61551885064666e-07,0.00811327231843307 +"23767",1415.62498054457,0.503787077949823,0.322515547034509,1.56205517092768,0.118274992364088,1 +"2321",2194.56406435055,-0.286762925705655,0.231175806613901,-1.24045387753136,0.214807563634475,1 +"2323",431.93328482149,-1.02552306219879,0.246672673247542,-4.15742469036956,3.21855325620254e-05,0.394723371340679 +"2324",457.803065078819,-0.691397663401148,0.236159904649714,-2.92766743968104,0.00341515117332259,1 +"28982",677.700866826659,1.25681211668907,0.20748574999952,6.05734184970281,1.3838928854259e-09,1.69720623468632e-05 +"55640",244.953130929572,0.533040599933617,0.269431854851015,1.9783874487609,0.0478850145691745,1 +"84256",1781.24439426701,-0.75516585157847,0.155015778430716,-4.87154184705135,1.10730703081894e-06,0.0135800134259635 +"114984",1019.80917493222,-0.00669381031025185,0.110707175726046,-0.0604641051165122,0.95178600348908,1 +"342184",250.413989653322,-0.102618034389036,0.367724654517554,-0.279062154599529,0.780197126057238,1 +"752",1247.42001902352,-0.386719622974894,0.227804548159072,-1.69759395104286,0.089584425288045,1 +"114793",1561.01073877034,-0.178254054124963,0.202598801117031,-0.879837655218873,0.378947262539954,1 +"91010",1126.45195846501,0.0805475345902641,0.174354892796158,0.461974615673297,0.644099524140705,1 +"2327",244.471693971479,-1.18212553552481,0.417940984081104,-2.82845085921367,0.00467738814274741,1 +"2329",173.599432189037,-0.558731744701266,0.264701266260488,-2.1108011782287,0.0347894048243513,1 +"2330",297.333707464793,-0.0855836198658523,0.385705222337018,-0.22188867277268,0.824400548569653,1 +"116123",737.422470912794,1.54277413950999,0.857821466985432,1.79847928605894,0.0721010882860404,1 +"2331",2650.56280930368,-0.791713675615539,0.248451802903201,-3.18658857116041,0.00143961401305392,1 +"2332",2490.99524012761,0.154734863507606,0.115730870900529,1.33702323592295,0.181215052325737,1 +"2335",116437.224051156,0.452625495198889,0.378580521967031,1.19558579730181,0.231858236598827,1 +"64122",804.349655296857,-0.062943393643576,0.262990376939423,-0.23933725019176,0.81084408310501,1 +"79672",2061.38699393167,-0.0246777749261447,0.145328415919113,-0.169806949109525,0.865161961702165,1 +"23048",6086.69405124397,-2.2165990573291,0.277696075312508,-7.98210437376412,1.4385930020797e-15,1.76429045775054e-11 +"54874",2835.89222630759,0.803665855091015,0.187551066565878,4.28505083872037,1.82697405339742e-05,0.22406009790866 +"23360",2565.59717527918,-0.0574470448002833,0.127791636826798,-0.44953681028551,0.65304446013505,1 +"84624",706.211364134085,2.57675893351648,0.483462829820222,5.32979740029789,9.8322389014725e-08,0.00120582577887659 +"22862",2799.54913008487,-0.434770353272316,0.135227423182618,-3.21510491762592,0.00130396853617349,1 +"64778",5125.524968232,0.730170507029698,0.227356767184756,3.21156267337467,0.00132015171334894,1 +"64838",367.175724451143,-0.146042169163988,0.236255766475951,-0.618152823706228,0.53647460451018,1 +"252995",224.047724534187,-0.884680306425468,0.40100945670172,-2.20613327601277,0.0273746694198794,1 +"96459",1263.81327588951,-0.103382843632113,0.127356422413229,-0.811759954253982,0.416929384684066,1 +"57600",897.610702037772,-0.502743451924231,0.225864733850161,-2.22586077673264,0.0260235083345461,1 +"2339",2435.62844933126,0.0971735263176772,0.152111771696622,0.638829758103691,0.522933687147317,1 +"2350",747.03751842727,-1.93098095642033,0.273377362902739,-7.06342667116634,1.62445943152852e-12,1.99223704682658e-08 +"123811",1632.59349948936,0.0399983381182576,0.148037781189035,0.270190067677265,0.787014033479588,1 +"2353",88778.6857362091,-2.86474768370983,0.31521789190463,-9.08815063256805,1.00737905257369e-19,1.23544967007637e-15 +"2354",42998.4692932043,-3.88859872224059,0.321644905499005,-12.0897258304395,1.1968545524993e-33,1.46782242318514e-29 +"8061",4164.83056317796,-2.13429109332624,0.428070394728884,-4.98584139339508,6.169273946392e-07,0.00756599756785515 +"2355",11521.8719707435,-0.743790416198802,0.246401395540192,-3.01861283929894,0.00253934816445565,1 +"3169",3612.04142084041,1.36680770780332,0.574177071397155,2.38046375567984,0.0172908619158346,1 +"2296",1693.37415518858,0.042677790301475,0.387542893764811,0.110124043010772,0.912311000556551,1 +"2294",2694.32656983261,-3.44359194888919,0.295240376249385,-11.6636890679899,1.9538942051178e-31,2.39625585315647e-27 +"2295",512.818346725285,-0.600808000605452,0.254164764933916,-2.36385244336156,0.0180860145017992,1 +"55810",1839.49689916361,-0.334046067987085,0.176506958633377,-1.89253766861925,0.0584193797057231,1 +"22887",2683.93329273957,0.0654192606839001,0.121595050317684,0.538009240614508,0.590570669073952,1 +"221937",2404.52785050411,-0.387950547318713,0.232366865850328,-1.669560528344,0.0950063453988182,1 +"3607",3361.31158746982,0.539280979593893,0.112804897969057,4.78065216407376,1.74727449825912e-06,0.0214285744466498 +"2300",374.780691015842,0.215844101408249,0.432549190402257,0.499004751823766,0.617776036477607,1 +"2305",2435.93171835542,3.27058435100047,0.354266820067572,9.23198043321317,2.65673593276344e-20,3.25822094794108e-16 +"3344",964.924681159812,-0.109579671340059,0.158043630348107,-0.693350760791175,0.488089454788321,1 +"1112",5848.36421855552,-1.14213869916528,0.206801153461108,-5.52288360122746,3.33480673822881e-08,0.000408980698376381 +"2308",1987.57767597866,-0.983720584383521,0.196242176150821,-5.01278880859681,5.3646767585839e-07,0.00657923957672729 +"2309",3109.53520248171,-0.383306883537043,0.174679825010095,-2.19433974996764,0.0282109938149313,1 +"2310",746.902026528245,-0.172259159062347,0.151787602403703,-1.13486975440983,0.256429894249554,1 +"4303",1377.22962136891,-0.770110652693317,0.237428220714529,-3.24355146315676,0.00118049482793286,1 +"27086",4281.10443600826,-0.91107922985118,0.249859444375543,-3.64636698896125,0.000265974051344459,1 +"93986",954.924297266731,-2.17373145136613,0.393335112362346,-5.52641089759526,3.26848134980404e-08,0.000400846552739968 +"50943",181.734639946658,0.747750093111306,0.393784703235994,1.89888049730358,0.0575801901225064,1 +"116113",2222.82678376655,0.0444671952840557,0.183158804921321,0.242779457439446,0.808176250125362,1 +"94234",6524.92183381973,-0.23923317031722,0.743000263823551,-0.321982618264633,0.747465862511509,1 +"55572",1050.59997056945,0.450557324707545,0.122485670043434,3.6784492793955,0.000234656342750906,1 +"80020",1228.12902438703,0.3506893685989,0.237109941319501,1.47901588034368,0.139136070589863,1 +"2356",2641.82538726014,0.176601353574457,0.1598314539908,1.10492239897049,0.269193215805957,1 +"8790",656.382506962011,0.41833989726227,0.152360861168132,2.74571759476094,0.00603787128362188,1 +"2357",330.23398924943,-0.544644016213364,0.317487579662295,-1.71548133250659,0.0862570150436482,1 +"2359",607.721946851032,0.410800438452596,0.351952213206916,1.16720515751121,0.243127528595784,1 +"118924",832.186232772522,-0.510488457578596,0.172276444289659,-2.96319360248856,0.00304465006502029,1 +"80144",611.934454961348,1.22538927686121,0.456681882052229,2.68324478158532,0.00729116022724065,1 +"10023",288.359306318091,-0.281622736485476,0.229852629636138,-1.22523173622721,0.22048792019896,1 +"23401",741.30563719196,0.646219239090494,0.198408273333677,3.25701760431986,0.00112589450005136,1 +"158326",373.62029498792,-2.49895157250879,0.414487612519408,-6.02901388854361,1.64963112947573e-09,2.02310761718904e-05 +"2483",1022.00836061527,-0.377072174631795,0.0959820503583101,-3.92856969843995,8.54525853492421e-05,1 +"2444",218.525196582695,0.618690566987284,0.244748371114603,2.52786387982775,0.0114758835185104,1 +"257019",399.945046191143,-2.35557075257841,0.32343758290359,-7.28292219918227,3.26665638096788e-13,4.00622738561901e-09 +"55691",1273.73216397979,-0.371545518269135,0.186157992713777,-1.99586121902591,0.0459490309740338,1 +"23150",1383.72799650235,-0.563046467202077,0.301184998785517,-1.86943728762215,0.061562000950219,1 +"122786",4493.1511130903,-0.371031935026535,0.273555891727371,-1.35632953355035,0.174994342727001,1 +"83786",2569.25777153475,0.21401619533787,0.261149261741601,0.819516754175751,0.412491647010221,1 +"83957",337.739804280639,0.182144995187411,0.256914276871479,0.708971869549036,0.478341933667604,1 +"391059",617.219180758799,1.33556838609215,0.346205386482924,3.85773427634993,0.000114442967114099,1 +"10818",1314.45415040881,0.149293489603313,0.152499019991574,0.978979993521019,0.327589864858967,1 +"10817",280.476988568123,0.235054668959597,0.201401337196054,1.16709587052435,0.243171655329941,1 +"10129",3016.70692960364,-1.57244620607017,0.320170752724608,-4.91127372718736,9.04866651257808e-07,0.0110972846110258 +"285527",2342.16274188277,-0.303744458018936,0.154641221991105,-1.96418816475989,0.0495082748142444,1 +"2487",509.0513923025,-1.17064009353658,0.250304764138998,-4.67685901849837,2.91302379705234e-06,0.0357253238470499 +"6624",9176.89092217354,1.38412108323241,0.294992827738666,4.69204995200292,2.70481062217093e-06,0.0331717974703043 +"401024",209.238535297524,0.0695868724656531,0.437342107932922,0.159113131810135,0.873579742336239,1 +"10468",864.344151050858,-1.05568897512251,0.373984971028534,-2.82281122746499,0.00476045921686125,1 +"11167",20668.3412628696,-0.818630998213971,0.296863465872246,-2.75760102648086,0.00582272175897768,1 +"10272",1958.84228368009,-0.280138761277865,0.294560338598926,-0.951040328818003,0.341583903926233,1 +"23105",1044.39222763877,-0.106617938663683,0.604793158716949,-0.176288268355862,0.860067478194959,1 +"2495",42327.0276036867,0.271617417198125,0.22206899011003,1.22312177428981,0.221283705608068,1 +"2498",2840.51511514594,0.226296910178918,0.24193338385224,0.935368681145419,0.349598331369411,1 +"2512",128928.572861666,0.0269713184714986,0.243621405296274,0.110709969999139,0.911846339669607,1 +"79068",2171.01444913575,-0.290608876317374,0.144560085313682,-2.01029817938182,0.0443996394694742,1 +"24140",1892.83168898155,0.78194125746615,0.133357037681641,5.86351699962664,4.53164428991675e-09,5.5576085571539e-05 +"117246",3685.59368115102,0.415293890159058,0.0921491842170123,4.50675601404172,6.5826250866797e-06,0.0807293140630398 +"100302692",196.865670096983,-0.291284408457985,0.17258436565857,-1.68777981334789,0.0914535040338406,1 +"8880",3028.55020372148,0.541205278272507,0.168236192595113,3.21693727089392,0.00129566924198596,1 +"8939",2612.8683743037,-0.109670469984767,0.141248391256576,-0.776436949186574,0.437491035291757,1 +"2517",3586.20081851732,-0.154566486276604,0.275663362468302,-0.560707396487543,0.574997024110814,1 +"2519",3189.57556859722,0.59457384428233,0.15421091423248,3.85558860889692,0.000115451501846122,1 +"139341",729.870429425127,0.420273077531892,0.173418418590608,2.42346274950204,0.0153733298193685,1 +"65991",2305.14867327539,-0.841382002476614,0.155892134254543,-5.39720625739073,6.76865615263912e-08,0.000830107990559662 +"388965",118.168296477434,-0.918708304539216,0.184100199510825,-4.990262405909,6.02973250682529e-07,0.00739486394637054 +"5045",6617.73445105482,0.153423408318264,0.214295387106462,0.71594358791327,0.474026182578358,1 +"2521",11610.8144127533,-0.206884759689033,0.16072386968913,-1.28720618840989,0.198022430866923,1 +"2523",354.810963601032,0.252979770054236,0.279787305061076,0.904186020874006,0.365896771391287,1 +"84750",248.801629585352,-0.375358621319742,0.175583578308641,-2.13777748998791,0.0325348067938812,1 +"170384",395.581989161806,0.29786125319949,0.220398417988007,1.35146729236368,0.176545790423517,1 +"2524",663.43593433811,-0.779718948947476,0.493998892746425,-1.5783819769566,0.11447788317017,1 +"2525",1236.16364988994,1.80039142472872,0.687428396063279,2.61902393767712,0.00881817593642033,1 +"2526",391.871832497498,-0.400063723417422,0.238066380241448,-1.68047131649448,0.0928656505500908,1 +"2530",1585.59388877028,0.401303848486879,0.238481740113259,1.68274455015421,0.092424553448283,1 +"10690",404.317418812413,1.35608770982783,0.661462720706975,2.05013475041865,0.0403512831376178,1 +"80199",715.985702799844,0.0159042861483039,0.226334025356016,0.0702690906649451,0.943979483750879,1 +"2395",397.498680938965,-0.366578054050129,0.179195855353516,-2.04568377615066,0.040787492970795,1 +"8087",4019.93384295489,0.187779554182766,0.108073064260671,1.73752410433967,0.0822947031381784,1 +"9513",2230.84950836836,-0.122919759258053,0.154541626939895,-0.795382847275576,0.426390834547169,1 +"5348",675.159387446455,-4.4438553965148,0.297771012651074,-14.9237340362679,2.30977704442836e-50,2.83271056728694e-46 +"5349",23270.8521404317,1.66784469278848,0.605145550499527,2.75610502533106,0.00584942115346379,1 +"53827",6105.5953014807,0.13633522488548,0.330416690908644,0.412616034954404,0.67988795121446,1 +"53826",5508.57510859278,-3.67198672575684,0.440105652844024,-8.34342095364592,7.21716898034708e-17,8.85113603749765e-13 +"79443",5782.81698137628,-1.59103238688118,0.281363256484035,-5.65472694182957,1.56094228023799e-08,0.000191433961248387 +"2534",2593.81296520314,-1.42255737099909,0.274988640553747,-5.17314958223173,2.30180593984991e-07,0.00282293480463193 +"84248",4281.6558092755,-0.0275948550556052,0.121864711370417,-0.226438439358614,0.820860433932142,1 +"8321",1396.32764319876,-0.206178407997355,0.222790022221432,-0.925438248722079,0.354737990785513,1 +"11211",709.610907130998,-0.88217464504035,0.486526498113896,-1.8132098631015,0.0697994591769187,1 +"2535",455.922556624195,1.91644792971924,0.3069251174352,6.244024424374,4.26453356710485e-10,5.23002396669738e-06 +"7976",910.048859332893,0.296372856617998,0.214969886658249,1.37867150243774,0.167996059737966,1 +"8322",1447.00920372835,-1.28687411804065,0.229717578584408,-5.60198364431133,2.1191255594434e-08,0.000259889558610138 +"7855",791.934155899386,0.885562376265364,0.28441140387513,3.11366690716159,0.00184777965154046,1 +"8323",3393.9004318216,0.60162955582534,0.267596192857516,2.24827397356017,0.0245587252426265,1 +"8324",2761.37472268697,-1.88429931615609,0.262655864375171,-7.17402339612188,7.28251567671389e-13,8.93127722592191e-09 +"8325",217.50092684836,-0.616523875351469,0.273106218087293,-2.25745089097316,0.0239799148142522,1 +"51343",2639.56190309765,0.154014574929532,0.110986030957135,1.38769333042475,0.165230447820972,1 +"50486",896.396519397474,-1.42119788312008,0.293504763219208,-4.8421629261895,1.28433386059801e-06,0.0157510704663739 +"55632",858.225231658097,0.66647370700915,0.167492541478287,3.97912468893757,6.91694591140431e-05,0.848294246574624 +"10146",3744.40821904006,0.414739006296043,0.16846187825166,2.46191607620851,0.013819699961995,1 +"9908",6489.97664580064,-0.339908332473174,0.144499928810592,-2.35230795801097,0.0186573210907943,1 +"92579",2447.49259241272,0.339723063893488,0.166535166028635,2.03994791007129,0.0413555141738435,1 +"2539",6920.62962790286,0.509518957911015,0.264580249986271,1.92576338535266,0.0541339252524224,1 +"2548",6375.47347400231,0.29284934532628,0.217518514048798,1.34631917014927,0.178199606030493,1 +"2549",1130.05760908569,-0.962356557183655,0.210482927076091,-4.57213594732916,4.82777533262319e-06,0.0592078366792909 +"9846",1462.43953733384,-0.866492563782464,0.20737541717841,-4.17837647090542,2.93597386565075e-05,0.360067834883408 +"139716",151.958463662864,-1.06112648911265,0.238669986008684,-4.44599887425326,8.74844060014224e-06,0.107290875520144 +"11337",10907.4278641286,-0.315699849654005,0.161058971460751,-1.96015066277099,0.0499781831470979,1 +"23710",3557.206592393,-1.11735593004789,0.151916316066579,-7.35507520836795,1.90819648290792e-13,2.34021216663828e-09 +"11345",3273.21652544795,-0.232893986105541,0.111684900510022,-2.08527728495081,0.0370441380844993,1 +"23766",483.624390815775,-1.15855716745395,0.156607889410188,-7.39782121971807,1.38437055912361e-13,1.6977920537092e-09 +"2550",1220.41739843188,-0.649275112746331,0.361192131741547,-1.79758930410733,0.0722421145639724,1 +"2551",1429.78714501064,0.188745761457574,0.134615317242379,1.40211207256401,0.160881782547847,1 +"2553",873.467536328896,0.223724428947419,0.107843716474862,2.07452447171151,0.0380306284259736,1 +"126626",263.99277811775,-0.123333838236135,0.195145633768873,-0.632009212064716,0.527380857702459,1 +"2556",163.572842495782,1.35560127229969,0.601909186897082,2.25216910093694,0.0243115878584548,1 +"2562",306.98341202982,-0.695113529252063,0.525367899590321,-1.32309859394552,0.185802592251367,1 +"2564",1311.52935783047,-0.0192686261645996,0.45875048065276,-0.0420024108469207,0.966496776236879,1 +"2571",205.872881299769,2.3902359475037,0.453573417167463,5.26978843343724,1.36581092109406e-07,0.00167503051362975 +"1647",3793.11231649668,-0.883224091672575,0.25563620865569,-3.45500387569183,0.000550284912108164,1 +"4616",8667.61028365239,-1.90098514035898,0.31943157786395,-5.95114970495697,2.66265392447619e-09,3.2654787729776e-05 +"10912",394.987900808309,-1.32551848743515,0.313891039783239,-4.22286181966361,2.41219719837126e-05,0.295831864408251 +"90480",2207.63260615109,0.329072981306963,0.11555107662937,2.84785733639215,0.00440146505048881,1 +"2580",4166.36841441647,-0.0485032425919742,0.145305043609112,-0.333802883831437,0.738528307144882,1 +"79690",516.905359028545,-0.394936470560087,0.251007612333425,-1.57340435570327,0.115625219085906,1 +"2581",1203.21568727119,-0.000480063674743117,0.228418893459628,-0.00210168111521811,0.998323102320931,1 +"2582",2511.76087203436,1.03019313839271,0.325929556678685,3.16078464589302,0.00157344783280303,1 +"2584",810.350202955591,0.672031949118089,0.167665846976322,4.00816243282387,6.11930277922212e-05,0.750471292843801 +"2585",918.991413364647,0.382037000580382,0.139190885949163,2.74469839009369,0.00605665336568365,1 +"130589",1270.83153932519,0.224579257380017,0.237872085106347,0.944117748325168,0.345109480641443,1 +"2588",1130.14459360795,0.593693213710041,0.194619922699448,3.05052640796124,0.00228440590221157,1 +"2589",9765.40388227905,0.937898244334194,0.267552721030499,3.50547077496282,0.000455800539036504,1 +"55568",1848.75813854103,-0.177509765607796,0.216011434857974,-0.821760967073374,0.411212952854464,1 +"63917",2471.88740173538,-0.175814552681755,0.12455164523759,-1.4115795286877,0.158073803576218,1 +"79695",1405.54233242335,-0.391530945426924,0.292172205475513,-1.34006910338957,0.180222879758443,1 +"79623",687.70640722859,1.90619239449717,0.473202565976122,4.02827991975293,5.61864227956723e-05,0.689070289166125 +"2590",4986.3328212146,0.442995700606304,0.139234972970502,3.18164101414489,0.00146443212391161,1 +"2591",2108.26444944987,1.54899203002341,0.535531140934798,2.89244062879249,0.00382261422280197,1 +"11227",527.573833818889,1.28925254813982,0.549921830018132,2.34442874925936,0.019056251157224,1 +"11226",974.41218889918,2.12316731128558,0.33882561673129,6.26625380857607,3.69837353260908e-10,4.53568530039178e-06 +"51809",1984.83404834899,0.303512512732789,0.196996923383791,1.54069671505216,0.123390616683271,1 +"2592",885.149077617878,-0.11547998230014,0.13835364984716,-0.834672467460827,0.403902147658635,1 +"2593",587.400441581104,-1.71451126727438,0.32470288548697,-5.28024647733899,1.29010219701777e-07,0.0015821813344226 +"8139",397.69262839346,0.304852442523673,0.301661831457926,1.01057678079566,0.312219033586551,1 +"23193",18548.1145699426,0.607508702814603,0.106694475691034,5.69390963196473,1.24162818801239e-08,0.000152273280977839 +"2595",624.107447008691,-0.0540286632286187,0.141756646403795,-0.381136719859452,0.703101801576264,1 +"2597",135201.944219423,0.59702292870087,0.180358400552699,3.31020305608901,0.000932283125837948,1 +"26130",2331.40776933892,0.0961511164191571,0.154333120615835,0.623010252339131,0.533277784623659,1 +"54433",768.673132714273,0.0801621020534674,0.152450047995044,0.525825364489708,0.59900954952848,1 +"84253",475.389704279841,-2.11601912122458,0.346589668852615,-6.10525734431051,1.02635175930947e-09,1.25871779761714e-05 +"2618",3891.5956078431,0.87321618074686,0.17620620786558,4.95564935721787,7.20891206455992e-07,0.00884100975597629 +"2619",1289.5225440919,-1.19587578220275,0.447999629501843,-2.66936779285401,0.007599418408497,1 +"10634",1402.43876269746,-0.0562570698605122,0.203785286961565,-0.276060508093121,0.782501592400123,1 +"283431",107.907717663644,1.26682174077743,0.346508070804635,3.65596604383762,0.000256215270828772,1 +"60674",3607.23066295702,0.0443289336152796,0.224337376952797,0.197599411285828,0.843358495448082,1 +"2621",7586.43937410941,-2.31309023970824,0.275048018810557,-8.40976877314432,4.10819797463044e-17,5.03829399608677e-13 +"8522",2378.94428710783,-2.07961474735129,0.261961864921486,-7.93861636301369,2.04449060882556e-15,2.50736328266366e-11 +"2622",822.113524448774,0.117374743062699,0.147730229606162,0.79452081930429,0.426892293696321,1 +"2624",2270.24395531002,-0.317480096249049,0.349868426652851,-0.907427112775916,0.364180977162942,1 +"2625",8945.98494477365,1.64665716042259,0.620473081585674,2.65387364785337,0.00795736169833835,1 +"140628",430.785839109901,-5.04920317885594,0.504622837062811,-10.0058951121696,1.43587233645943e-23,1.76095383343384e-19 +"2627",1187.90924582687,-2.957548762228,0.344788272377349,-8.57786937425514,9.6646613333334e-18,1.18527406592001e-13 +"57798",1951.63462415917,0.337300902059876,0.140728262740567,2.3968241737034,0.0165378573491307,1 +"54815",4086.29338586269,0.488200407898899,0.167494091931591,2.91473210946624,0.00355993977066361,1 +"57459",1875.58346057435,0.0885840441585185,0.132755666618677,0.667271284268147,0.504598865185251,1 +"283459",1660.30879721062,0.403654919730382,0.099706386305804,4.0484359596822,5.15610377977584e-05,0.632344567551709 +"2628",2242.16857706943,-0.715374265998175,0.400550588004063,-1.78597732077457,0.074102930297046,1 +"2629",2468.73268907177,0.622542183148103,0.185433783039844,3.35722096018683,0.000787301673273249,1 +"57704",2598.824533725,-0.475168209987082,0.164341178109403,-2.8913520972252,0.00383588098208408,1 +"2630",300.503154604579,0.627176970282282,0.155961375085557,4.02136086539522,5.78628816679841e-05,0.709630380776157 +"2632",1486.60456482758,-0.451317417471472,0.139616352282093,-3.23255413921423,0.00122688885463451,1 +"8729",4109.96986905171,-0.236934890414188,0.12877241334881,-1.83995068704968,0.0657754774597939,1 +"26301",232.841171103506,-0.678212005777447,0.25667687847914,-2.64227931162317,0.00823501127516355,1 +"2633",3641.0391457063,-0.0132569275898076,0.324684497437638,-0.0408301834378585,0.967431276512388,1 +"400759",176.156173670269,0.941947740831385,0.296953836816035,3.17203424926591,0.00151375153539747,1 +"2634",8615.14475536545,-0.631852628159764,0.304418128173716,-2.07560775683897,0.0379302434446531,1 +"2635",1905.54592603127,0.372041034201411,0.269723288747331,1.37934338532379,0.1677889058478,1 +"115361",2306.19529417413,0.505361486364401,0.323311846058782,1.56307754424971,0.118034356732084,1 +"115362",686.007438549744,0.630549995332431,0.474411314907756,1.32912090314506,0.183808084986475,1 +"163351",1776.2486724113,3.67710578289209,0.674697011958213,5.45001047539814,5.03668533498561e-08,0.000617699089482635 +"25801",740.807377843755,0.395355003531299,0.169364716004846,2.33434101775949,0.0195778725673806,1 +"23464",626.220851903559,0.449041022789235,0.239771777037203,1.87278514735102,0.0610980597804006,1 +"79571",1334.43534386874,0.170087727320583,0.122872350555567,1.38426364069322,0.166277742891883,1 +"9648",1898.67880032253,-0.294300208858025,0.158080239361515,-1.86171408929225,0.0626434015546016,1 +"2639",1044.37094709109,0.0281700696278659,0.148686543529055,0.189459442389696,0.849732739661966,1 +"6936",904.196482654277,0.255110493120644,0.107212976387366,2.37947403119299,0.0173373645741553,1 +"2643",1076.0468853259,-0.204946615051709,0.326702949345866,-0.627317921255559,0.530450858313861,1 +"2644",507.35896138919,0.917758106483143,0.25040458855701,3.66510099424235,0.000247240997390301,1 +"2729",5778.61386473472,-0.28858579063739,0.314214678089357,-0.918435104280269,0.358391119480684,1 +"2730",2379.21915956519,1.23151345155836,0.346211674265339,3.55711127931094,0.000374955349961118,1 +"2650",338.486628220148,0.304136416969929,0.359451133868562,0.846113388756596,0.397489492387311,1 +"2651",390.660252585071,-0.488538650732236,0.383238428535452,-1.2747642573298,0.202392695296468,1 +"51301",388.303266910237,-0.95094175998315,0.442322732898726,-2.14988217709552,0.0315645357642468,1 +"9615",325.392600973062,-1.74795760466637,0.777742067448293,-2.24747725219658,0.0246095427729514,1 +"54332",702.945697206614,0.492563905406759,0.248504924483264,1.98210923357348,0.0474670163351781,1 +"54834",998.893038545302,0.589186809691875,0.151215795024394,3.89633113126065,9.76608450293292e-05,1 +"51573",5244.08693525925,-0.194677330364002,0.144374598956219,-1.34841815507337,0.177523927931354,1 +"10220",778.003234072289,-0.371863999017018,0.28426984241382,-1.30813735238114,0.1908267262439,1 +"9518",8656.28863531527,0.175882141600801,0.569705561810266,0.308724634953408,0.75753100264595,1 +"2664",6657.49073768466,-0.130173549178822,0.147241612890166,-0.884081250019479,0.376652354017989,1 +"2665",12227.2563907405,0.293695639451143,0.181804086611049,1.61545125264139,0.106213008787915,1 +"284161",196.624199601481,0.756943241803315,0.327086683678755,2.31419767166902,0.0206568816373812,1 +"54857",244.51596056259,0.903525783166933,0.489592951546029,1.84546321656346,0.0649701845300307,1 +"79153",1531.68315025026,1.40298545669271,0.496374030375883,2.82646828970945,0.00470644036512093,1 +"81544",445.34866909301,-0.779688427199915,0.269729411696164,-2.89063184580773,0.003844682215378,1 +"2669",3893.23316622579,-2.87073353275682,0.305804890113586,-9.38746771410535,6.14600716248091e-21,7.53746318406658e-17 +"8487",336.590157427053,0.792493035179045,0.15352783331755,5.16188509962157,2.44475339222618e-07,0.00299824556022619 +"50628",1507.38018086824,0.00125327670664606,0.142641145584339,0.00878622154576738,0.992989699677452,1 +"25929",1276.05059598027,-0.0806754325954662,0.156602846705919,-0.515159425849806,0.606441619259414,1 +"79833",445.444299211873,0.975709877139261,0.158453242002072,6.1577148236986,7.38020960799467e-10,9.05108906324466e-06 +"79760",757.412446252392,0.498140614218632,0.162455095857825,3.06632803106766,0.00216705425355025,1 +"54960",774.332157473031,0.0588960284962673,0.168050840636309,0.350465539316928,0.72598934785389,1 +"348654",640.873574087578,1.43012143800176,0.217769738450767,6.56712658138714,5.12954406622806e-11,6.2908728428221e-07 +"51608",2289.47320415667,0.581703664331575,0.133938842706228,4.34305428192659,1.40515397396921e-05,0.172328083367583 +"2671",828.583592596284,0.00121798142917129,0.163577261180538,0.00744590917087808,0.994059078927125,1 +"2672",138.276792996799,0.819175711808092,0.422701985454657,1.93795094415511,0.0526292077649215,1 +"85476",2689.91219626051,0.311168394464127,0.147173134162545,2.11430160969771,0.03448951497573,1 +"84340",1210.79278543903,0.258181786155506,0.168498469267815,1.53225003928758,0.12546074467366,1 +"54438",324.97705225414,-0.348515541868614,0.248052445163952,-1.40500748395469,0.160019052837419,1 +"81577",1634.42930923688,0.238808300638664,0.203255588887403,1.17491628124901,0.240028211204523,1 +"2673",4262.5004895444,0.608968451027076,0.17640819529679,3.45204172630723,0.000556361681476696,1 +"9945",1046.12270696142,-1.29755040696124,0.366232247253849,-3.54297147968474,0.000395645488197665,1 +"2674",814.994079974731,-3.0582494674038,0.433268001787277,-7.0585629559261,1.68233276054406e-12,2.06321289753124e-08 +"2676",226.630224291874,-3.17218176054519,0.381714228321473,-8.31035765812124,9.54140538888603e-17,1.17015795689298e-12 +"26088",2952.86493770486,0.00647426834297114,0.140271626959789,0.0461552238559769,0.963186530599813,1 +"23062",3488.92758103775,-0.198316348425048,0.128731547577677,-1.54054194295601,0.123428307194746,1 +"23163",1996.98689831374,0.131013213622441,0.130607849417473,1.00310367414192,0.315810842151537,1 +"79017",3989.15408371292,1.38266108984249,0.251283170322761,5.50240228212072,3.74650887308435e-08,0.000459471848195065 +"2677",2537.13123791218,0.503370161184774,0.178175742238296,2.82513295503243,0.00472610008411724,1 +"8836",1448.7771204329,1.99860553386011,0.312624345443752,6.3929939014289,1.62668752094566e-10,1.99496957568775e-06 +"79893",3209.63089478301,-0.215693141779265,0.108548498080355,-1.98706703080861,0.0469149691930912,1 +"9453",1552.15054978416,-0.186799791331569,0.117786953323083,-1.58591241272017,0.112759179654756,1 +"2678",220.531468242802,-0.7956343466308,0.281632765718483,-2.82507734709429,0.00472692039248942,1 +"2687",1416.53964045594,-0.468691582795419,0.26176359932621,-1.79051473926035,0.0733711999156808,1 +"124975",2601.94128703092,0.632524060230466,0.760601333764813,0.831610506255107,0.405628829898639,1 +"2686",1102.44980136251,-0.190140653463649,0.263775716270403,-0.720842146320744,0.471006641173867,1 +"2681",315.288594704138,-2.38194091140661,0.250817402517436,-9.49671309685552,2.16619849219622e-21,2.65662583082945e-17 +"84514",1546.19175685613,-0.192174992848585,0.173544711251411,-1.10735147998941,0.268141994914797,1 +"27069",8319.85081676892,-0.32735146694092,0.125494137610202,-2.60850007159464,0.00909399927061076,1 +"2690",391.67077965106,-2.65133418603802,0.364035192186525,-7.28318097520508,3.26039373720425e-13,3.99854687930729e-09 +"64599",3111.83675968837,-0.0179305516397325,0.166095410666712,-0.10795332374181,0.914032718004866,1 +"26058",3148.93505516449,-0.464866717918337,0.140880050701601,-3.2997341753019,0.000967764489291538,1 +"170575",277.401248475644,-1.6685891044572,0.236852269791782,-7.04485165341275,1.85659198041528e-12,2.2769244047813e-08 +"26157",257.525817946897,-0.141265940385369,0.258022172340728,-0.547495353224226,0.584038462019634,1 +"55303",903.370680906038,-1.20328827648479,0.223457141245964,-5.38487277594008,7.24959077968862e-08,0.000889089813221013 +"474344",672.341426198919,-1.18821440030058,0.251639414304164,-4.72189304519817,2.33659555516633e-06,0.0286560078885599 +"168537",406.06788346104,-1.42520308844326,0.247315328928475,-5.76269612812975,8.27807588324833e-09,0.000101522322632158 +"155038",586.29448926394,-1.23441515926094,0.247088520206073,-4.99584180694202,5.85796667645362e-07,0.00718421033200272 +"54826",251.943949238207,-0.489341582146588,0.171624776642225,-2.8512292439377,0.00435505586329343,1 +"9837",854.310088042096,2.92531863233084,0.314860583532531,9.29083786706695,1.53078484032428e-20,1.8773545281737e-16 +"51659",720.362768826981,2.35078481079244,0.348150068820988,6.75221699295762,1.45602888364606e-11,1.78567382290352e-07 +"64785",430.424805151015,1.14610998787389,0.26844111104485,4.26950247453865,1.9590947607563e-05,0.240263381459152 +"84296",438.73204141422,1.73081830847401,0.244360233049109,7.08306047541775,1.41005102960516e-12,1.72928658270776e-08 +"10755",8578.09199799161,0.655348229823926,0.215742645960202,3.0376387890636,0.00238439576157266,1 +"54810",255.006773977322,-1.89723674133572,0.381590439354644,-4.9719189624991,6.6293417053894e-07,0.00813022466748956 +"126326",152.863636281542,-0.42506027193491,0.202695811117011,-2.09703530424481,0.035990450229544,1 +"28964",3967.50349814866,0.620070118607142,0.0878645977646162,7.05710985291563,1.70001229948983e-12,2.08489508409432e-08 +"9815",2278.52608588646,-0.299661845721247,0.123415807646242,-2.42806696675516,0.0151795401592311,1 +"2697",9124.29654483865,-0.483340086191088,0.262309312352871,-1.84263410953888,0.0653824502586778,1 +"2701",662.913878358977,-1.18103389023918,0.20757530729132,-5.68966466026553,1.27289094945329e-08,0.000156107346040952 +"2702",489.838410851248,-0.910061084457325,0.271964383256221,-3.34625098169544,0.00081912216720535,1 +"2706",13496.7413009243,1.96369771939217,0.669355443516737,2.93371442394651,0.003349322171459,1 +"2707",2094.68785720493,0.707514692884686,0.655361821078899,1.0795787458597,0.280329810266731,1 +"127534",923.578730945241,0.320261682168019,0.63772930623487,0.502190630157538,0.615533433288044,1 +"2709",1300.89179541262,0.56274839319696,0.644167805035151,0.873605276138027,0.382333251907423,1 +"10804",3639.16250678541,2.31595801893184,0.8311229670393,2.78654075362873,0.00532739188769302,1 +"10052",1328.26852521015,-1.16803588492644,0.364966867241534,-3.20038882914113,0.00137242302289107,1 +"57165",161.202865848535,-2.6055766267346,0.313431711876927,-8.31305999999676,9.32653330904676e-17,1.14380604502149e-12 +"125111",803.470037109744,0.462977884300643,0.226572832623696,2.04339540155541,0.0410133123193272,1 +"2710",238.260125269374,0.0626026766037331,0.294724117648409,0.212411108745484,0.831786319986084,1 +"256356",1192.86809085183,0.389653093664682,0.165177554156926,2.35899541952591,0.018324481947128,1 +"80318",273.618646305841,-1.18397282020893,0.337638678507502,-3.5066267450239,0.000453825248543619,1 +"2717",1385.22790180272,0.794207345944678,0.235049175654829,3.37889866549022,0.000727768283838274,1 +"2720",2876.24706561859,0.508194456442383,0.174349022389219,2.91481104670539,0.00355903952260352,1 +"79411",259.981557953786,-0.501740407695791,0.187735940521428,-2.6725857941864,0.0075269124662929,1 +"89944",631.83116635673,0.052490065754108,0.445453917368225,0.117835007634961,0.906198390687524,1 +"113263",1038.86097290267,1.15353018554062,0.274403110538325,4.20377955365599,2.62494598807577e-05,0.321923375977613 +"26035",939.559015947956,0.495420159399327,0.204052666434403,2.42790338424022,0.0151863882520174,1 +"342035",212.615230030457,-1.21787586558539,0.325948658489094,-3.73640398224291,0.000186670682343598,1 +"2733",1940.44874533166,0.251863331304075,0.175014771396596,1.43909756470403,0.150122881930066,1 +"2734",8919.43562799075,-0.173611444902144,0.15028985594772,-1.15517739908232,0.248017787929962,1 +"2735",159.678255750598,-1.58475548035623,0.374941866388876,-4.2266698451663,2.37175264687818e-05,0.29087174461314 +"2736",350.435056096101,-1.10584279701486,0.388784041769181,-2.84436262348287,0.00445003707605837,1 +"2737",1103.02181836148,-0.298298860580962,0.278446775579795,-1.071295797769,0.284036448713101,1 +"2738",515.837338489753,0.32049845352983,0.170350629525961,1.88140457374117,0.0599169051744809,1 +"11010",1221.05419433891,-0.991194675986688,0.27331654753296,-3.62654469673907,0.000287239118053884,1 +"152007",1640.82446767501,-1.5618330996351,0.292649556492916,-5.33687157551836,9.4563968057912e-08,0.00115973250426223 +"84662",1407.58494802623,-0.537503025075912,0.319090725810782,-1.68448338230503,0.0920882883358279,1 +"169792",489.774693612507,-0.238741982693864,0.294197996471137,-0.811501048809102,0.417077990835635,1 +"11146",442.68773977164,0.460903594050387,0.166891543775265,2.76169531196282,0.00575021123172579,1 +"2739",5311.95734479005,0.204082971126759,0.151121635809095,1.35045501614718,0.176870073691019,1 +"51031",2670.91941645971,0.126563649590513,0.106907511634289,1.18386114928447,0.236468031423667,1 +"2743",149.303211719851,-1.01483053931001,0.408274986192139,-2.48565445748963,0.0129313457466547,1 +"2745",874.668596368081,-0.426200162637473,0.270845699770098,-1.57359028775146,0.115582200037087,1 +"51022",336.301975979673,0.340103156514452,0.150124865831844,2.26546851269399,0.0234839441458383,1 +"10539",2191.41303773044,0.396087589784247,0.156838335211596,2.52545137800571,0.0115549769756147,1 +"51218",1927.4671103941,0.299395152441789,0.122156710402901,2.45091040397465,0.0142495417156798,1 +"2744",3562.44575991343,-0.0938002669146511,0.159153785530921,-0.589368745466801,0.555613938002277,1 +"27165",274.553531998267,0.177651265583194,0.280201570419857,0.634012383717191,0.526072740356908,1 +"55830",2169.8234041098,0.449890066668949,0.162295289746675,2.77204635680541,0.00557051029666407,1 +"83468",667.860785696474,-1.2033832394868,0.294747950576601,-4.08275354292602,4.45052143376951e-05,0.545811948637493 +"51228",6927.43813414026,0.346366300548547,0.313210328386097,1.10585848919253,0.26878777434463,1 +"2746",5171.04259057938,-0.369711548384761,0.123170254005519,-3.0016301530741,0.0026853821610547,1 +"2747",2657.38622675283,-0.357823216542154,0.126404270761212,-2.83078423210962,0.00464340336863225,1 +"2752",32227.0205964829,-0.452955990475623,0.255819529009941,-1.77060755380415,0.0766259849475755,1 +"132158",288.638171486818,0.303882887759796,0.19129149191576,1.58858548656005,0.112154006982656,1 +"84656",4245.27228461203,-0.6614841202589,0.141340989636067,-4.68005864372485,2.86792871097409e-06,0.0351722777113862 +"2760",7192.34809539488,0.219063687004947,0.257216915876679,0.851669052396136,0.394397801917626,1 +"64395",424.791730209207,0.688004764435689,0.117960657238675,5.83249348164971,5.46051387478393e-09,6.69677421603502e-05 +"2762",1216.62216514861,0.556152876822268,0.27159997240358,2.0476912125597,0.0405902654280214,1 +"10691",538.157190201353,0.145766940586554,0.159991094278652,0.911094090854056,0.362245799688742,1 +"26205",1258.87992808577,0.103658443000133,0.132377563889433,0.783051447348827,0.433596901143034,1 +"2764",1950.94422260361,0.0886960921530449,0.145400560791681,0.610012036199242,0.541853834463516,1 +"9535",1074.43716317192,-1.50905083291973,0.293395943510827,-5.14339365044438,2.69819423451052e-07,0.0033090654092037 +"51291",1466.34500016462,0.756948282734512,0.278420289125072,2.71872529517587,0.00655340091721193,1 +"51053",1537.07996300605,1.18925211655657,0.295707188129637,4.02172204226297,5.77742105738138e-05,0.708542918477253 +"29926",1777.79447812505,0.259693634184878,0.172969559875184,1.50138344788687,0.133256412537747,1 +"29925",831.593960016838,0.0803060790469591,0.170993454763198,0.469644169469361,0.638609262173198,1 +"2766",249.219281765024,-0.831228199961099,0.354049434877415,-2.34777440119033,0.0188859563154495,1 +"51292",2554.57604931617,0.0935791925755896,0.104331221115634,0.896943326982362,0.369749158906829,1 +"8833",2986.90772206066,0.672134512795162,0.166567472468684,4.03520869251064,5.45537864923699e-05,0.669047637542424 +"2767",1017.34607822251,-0.644672922130972,0.157729422459431,-4.08720777695604,4.36596081191164e-05,0.535441433972843 +"2768",4026.79556500578,-0.397753852481832,0.212368184131273,-1.87294464144387,0.0610760298042161,1 +"10672",5217.88265375812,0.235769417021635,0.113084244472971,2.08490066958875,0.0370783178922277,1 +"9630",424.890175441318,-1.96776360372604,0.310919980409902,-6.32884255663415,2.47006981698422e-10,3.02929362354945e-06 +"2769",3080.06224868429,0.381199877092867,0.430799129788274,0.884866868882061,0.376228438905835,1 +"2770",2198.8388813776,-0.959959107180448,0.216479495230188,-4.43441124139586,9.23242459057435e-06,0.113226455178804 +"2771",15327.0981685642,-0.554554816455505,0.19574137114093,-2.83309968262272,0.00460990079890235,1 +"2773",7356.5324819231,0.596038058712826,0.204020691742127,2.92145886587911,0.00348396278107295,1 +"2774",843.033630944889,-3.05602933828062,0.355860646061891,-8.58771367977878,8.87170219959639e-18,1.0880255577585e-13 +"2775",1196.846534565,-3.23367285932649,0.43957098876155,-7.35642920484142,1.88894988678184e-13,2.31660814114925e-09 +"2776",1204.61019262505,-0.385658696906106,0.254282010450472,-1.51665741600396,0.129353201026284,1 +"2778",45492.7618398508,0.228669050329993,0.140484539189176,1.62771684094053,0.103584940476797,1 +"2781",588.475905793351,-2.60833772925866,0.418139565538944,-6.23795962933274,4.43315020883859e-10,5.43681541611964e-06 +"2782",18715.5105072629,0.158111706018018,0.106901288578506,1.47904396776194,0.139128564117602,1 +"54584",340.43415488235,0.382155821392372,0.147505007754595,2.59079896479289,0.00957534099290088,1 +"2783",11522.2082347422,0.247283052246223,0.0998432509676838,2.47671274572441,0.0132598573353699,1 +"59345",1464.29631505703,-0.408165797807005,0.230664851163106,-1.76951883110438,0.0768073310462997,1 +"10681",1739.1077311136,-0.672764449797197,0.156397279968616,-4.30163779019814,1.69540292916632e-05,0.207924215232958 +"10020",1884.06675646905,-1.02056083039957,0.261417716812295,-3.90394669054648,9.46366349267094e-05,1 +"2791",1825.68744715581,-2.18870328608596,0.210238611903917,-10.4105676224986,2.21894617736291e-25,2.72131559191787e-21 +"55970",6441.97566591288,-0.947558927662346,0.20523349011785,-4.61698004121176,3.89364701103027e-06,0.0477516869432752 +"54331",639.314503349216,-1.20701171986683,0.250188594532086,-4.82440745200331,1.40420099544789e-06,0.0172211210081729 +"2787",3250.18448631134,0.54969222106321,0.155756049446552,3.5291869755071,0.000416838509118846,1 +"2788",708.282234703175,-3.45459125855249,0.35621174926447,-9.69813956357632,3.07046108396569e-22,3.76561347337552e-18 +"2794",4854.12262473717,-0.17863306476125,0.140729889515691,-1.26933280041646,0.204322392465462,1 +"29889",3338.33672126286,0.399464754713209,0.145115468989019,2.75273723398459,0.00590993101196028,1 +"26354",5569.37631023668,0.348283595211518,0.231377639951771,1.50526038421048,0.132257145989414,1 +"54552",1813.34562099445,0.545182427917796,0.100860932182824,5.40528841166746,6.47041925144514e-08,0.000793532216997232 +"10578",247.333075595009,0.183826178204649,0.419651078446235,0.43804528963745,0.661353453026747,1 +"8443",2299.17167458617,0.0498328530462253,0.156234551454228,0.318961795469582,0.749755483579694,1 +"10007",3006.49247725214,0.211778863540834,0.190562145283059,1.11133752837563,0.266423091485631,1 +"132789",521.316310000733,-0.630043630748048,0.193497070373111,-3.25608873319459,0.00112958443831516,1 +"64841",1801.34804743301,0.835320731635326,0.171571542470008,4.86864382991339,1.12366723456481e-06,0.0137806549647028 +"79158",2828.27318448931,0.0764588377508728,0.166820701591598,0.458329434065416,0.646715780579892,1 +"84572",2207.78228937565,-0.28534550292469,0.112724390729564,-2.53135546866037,0.0113622633531727,1 +"2799",8412.28351451129,-0.166808160486025,0.16682356670031,-0.999907649652927,0.317355202087364,1 +"2800",1542.45915891639,-0.241733505538575,0.142002023514429,-1.70232437225806,0.0886945784435129,1 +"2801",4602.6684463929,0.0748385195856881,0.145994288856141,0.512612651988271,0.608222301235968,1 +"55592",265.456055707924,0.434884449324847,0.173651030073208,2.50435859287162,0.0122673631421185,1 +"2802",5415.23067980329,-0.154047374996244,0.109356035358551,-1.40867739481558,0.158930582070079,1 +"2803",5995.00129626507,-0.111790056246008,0.156673553950917,-0.7135221830803,0.475522691275994,1 +"9950",2417.36275438861,0.467901094591596,0.118755328840008,3.94004293670032,8.14670268488479e-05,0.999111617274271 +"440295",143.437725628181,0.307440577443567,0.243951014165725,1.260255377478,0.207577251598337,1 +"51125",2009.07480193642,-0.129784204673182,0.115433178511124,-1.12432323485466,0.260875924909448,1 +"401647",190.716044763783,1.05340161596568,0.472753999916289,2.22822359229579,0.0258656085834664,1 +"23015",1575.20125083906,0.804153353435642,0.322181352797531,2.49596491681813,0.012561502455963,1 +"440270",1025.51803053917,0.779342289807703,0.282638048006429,2.7573863296352,0.00582654672651676,1 +"2804",8816.84730923947,0.121089040503053,0.179795436950637,0.673482278286615,0.500640519433866,1 +"27333",1685.04988310755,0.00846514293166318,0.205317922980543,0.0412294397331566,0.967112984107413,1 +"51280",3501.14330900141,0.602245970623367,0.233112065369679,2.58350407418123,0.00978023119675261,1 +"64083",4912.99974124622,-0.145504580228804,0.142109100054574,-1.02389347461159,0.305885592690243,1 +"55204",1752.62957816076,0.104621049523741,0.208078646971306,0.50279570271412,0.615107915256736,1 +"127845",537.580629448307,0.88915795445178,0.612507923499235,1.45166767700253,0.146594030959724,1 +"51026",1960.99719581156,0.617543175754836,0.143420751761388,4.30581466189953,1.66372311488157e-05,0.204039002809075 +"54856",2097.89287439568,0.188238914219664,0.0994266632729814,1.89324380425845,0.0583254545383414,1 +"57120",1959.28930212909,0.158060860264537,0.115422566677086,1.36941037454779,0.170871033114897,1 +"92344",434.289387058734,0.765028249338649,0.133952655001101,5.71118392041101,1.12192915256381e-08,0.000137593391270426 +"64689",2690.41126381615,-0.0652265663766574,0.132680218008887,-0.491607319881615,0.622996967784172,1 +"26003",4873.22314379254,0.232607946478051,0.139388815277783,1.66877052519957,0.095162866188357,1 +"9527",2159.24574469203,0.060961445793823,0.110443416825662,0.551969936696654,0.580968950780705,1 +"9570",1983.22420585486,0.0214182720572465,0.0864231802726218,0.247830176923397,0.804265805326016,1 +"2805",2030.63777283599,-0.146253615898313,0.169586425085433,-0.862413461600091,0.388460035388308,1 +"2806",6986.49952449617,0.108410165390115,0.176698428594886,0.613532142035433,0.539524536693166,1 +"8733",4467.79147443443,0.0864129902603281,0.138210354265932,0.625228049803417,0.531821394676066,1 +"57678",761.991625383165,0.370691027940408,0.197942547046397,1.87272030936087,0.0611070173501455,1 +"7918",877.377267455999,0.0630607438135092,0.176809662537566,0.356658922982283,0.721347160374169,1 +"150763",147.343189848842,-0.991408674493527,0.317112510957821,-3.12636253769689,0.00176983222879578,1 +"55094",579.254825304936,0.226692888675413,0.101105090908873,2.24215107901672,0.0249516096908902,1 +"55105",450.756172917395,0.348334038740332,0.141438305650796,2.46279844160713,0.0137857389408271,1 +"63906",668.07535974062,0.205435050485888,0.130726356030309,1.57148915279378,0.116069072042572,1 +"54865",1878.32734719864,0.125914063537906,0.188543928925925,0.667823484188527,0.504246274081039,1 +"23131",2614.07431455196,0.276456659947823,0.0859236323776908,3.21746942369259,0.0012932681089304,1 +"65056",3699.28685601484,-0.240551908150004,0.123509596017914,-1.94763739746274,0.0514583656549523,1 +"60313",5571.32309149852,0.15126678658914,0.105728818835826,1.43070534840671,0.152514679739861,1 +"2817",8840.84465697358,0.0297275048380305,0.290067394106428,0.102484820569399,0.918371860836932,1 +"2719",1223.6366050891,-1.43971736088423,0.445818645390488,-3.22937897678819,0.00124059376556673,1 +"2239",1505.95671021399,-0.773236934785564,0.337688435205403,-2.28979394664562,0.0220332642404158,1 +"10082",1206.06018680983,-1.66791035974554,0.36073944990206,-4.62358735702007,3.77159796537474e-06,0.0462548774473558 +"56261",1983.60798346991,-1.03516304483801,0.198302405060526,-5.22012350037842,1.78803854610245e-07,0.00219285047294004 +"23171",3922.16250667553,-1.10940512774514,0.231795892410444,-4.78612936669604,1.70028484429818e-06,0.0208522933304728 +"2820",3075.69601843745,0.92451930288304,0.243479492233855,3.7971136476458,0.000146390685198135,1 +"10243",821.985382180694,-0.156537380849439,0.149807144197089,-1.04492600595533,0.296057169309909,1 +"2821",20920.6485440931,0.50705290790057,0.162691635330026,3.11665013921579,0.001829185108803,1 +"338328",283.967302645623,-4.10911356889451,0.349260566976934,-11.765180376535,5.90001127363078e-32,7.23577382598079e-28 +"27238",1456.09201893396,0.00490687786911404,0.153329459514697,0.0320021859115971,0.974470307686323,1 +"2822",165.435649468357,-0.307998609129123,0.277902788745163,-1.10829621580933,0.267733909235929,1 +"2824",508.56541186916,-1.79155721451026,0.312608943433918,-5.73098515618434,9.98490052681664e-09,0.000122454820060879 +"11321",1836.29269912029,0.573699957258611,0.0720993469751091,7.95707563699113,1.76153036785116e-15,2.16034084313267e-11 +"54707",848.104004972268,0.265465572275808,0.112821452958933,2.35297069230651,0.0186241019253362,1 +"51184",907.209500594449,0.140520645806733,0.0898537432660971,1.56388193411808,0.117845297889803,1 +"10457",13581.0368170759,-0.449479121434365,0.400746753589826,-1.12160389924061,0.262030893018362,1 +"57720",4446.85333501424,0.0247009961086122,0.136204103765,0.181352803812946,0.856090661642839,1 +"56927",2912.37244719748,0.0409107381246991,0.115120031214513,0.355374626753415,0.722308954845744,1 +"29933",268.601876560741,-0.523669375924344,0.374169896972682,-1.39954972369831,0.161648198430769,1 +"56834",1554.81208184995,0.415538008952361,0.14967754624488,2.77622141314717,0.00549947426497943,1 +"7107",1222.560706477,0.0538297282909038,0.190921872213591,0.281946367206595,0.777984635247637,1 +"4935",153.889769382559,0.588836618516922,0.53481167572079,1.10101676019567,0.270889362769853,1 +"115330",226.910218602189,-1.74123433319067,0.251152694058345,-6.93297095505638,4.12092840153682e-12,5.05390659164476e-08 +"387509",1298.32798569486,-0.566286616248062,0.317555825241322,-1.7832663463746,0.0745429568965115,1 +"151556",664.95298015905,-1.17568970124174,0.315450425942204,-3.72701890552256,0.00019375792994969,1 +"80045",204.32946806132,0.293850933939336,0.381295339211813,0.770664898623634,0.44090558277203,1 +"26996",1274.7494090953,1.16750611748536,0.5037845846597,2.31747090529576,0.0204780937670337,1 +"23432",436.371214370705,0.222115995361817,0.25914378839943,0.857114873305238,0.391381402092221,1 +"27239",206.892565040402,-1.30135189725452,0.359362414121484,-3.62127992833049,0.000293149112381649,1 +"54328",234.399917804043,0.554045466114441,0.347985792533704,1.59214967392894,0.111351077978715,1 +"11245",176.180422813783,-0.141051904378609,0.320131289721474,-0.440606429010202,0.659497947744313,1 +"160897",849.11773668851,1.00601937353718,0.172901426726824,5.81845617229433,5.93936279459457e-09,7.28403453129079e-05 +"1880",840.414262690569,-1.96869234090326,0.265711102427194,-7.40914595935143,1.27115343321608e-13,1.55894257049621e-09 +"2857",148.877913958679,-1.00419347494716,0.257897281570407,-3.89377301238832,9.86970082104468e-05,1 +"2859",125.154125992553,0.23066327498678,0.237094246470991,0.972875885518383,0.330614991300657,1 +"2863",169.40768791817,0.705157615060451,0.521361745376461,1.35253040967031,0.17620569747225,1 +"2828",386.728006529865,-0.411121233670147,0.236107763624333,-1.74124402924876,0.0816408125045469,1 +"8477",138.066788879482,-1.4167106859131,0.285952144876678,-4.95436285859676,7.25676763083536e-07,0.00889969982245648 +"8111",459.002384852141,-0.133992196254573,0.259054018910169,-0.517236508502254,0.604991069421543,1 +"54329",192.061117221459,0.0250041281867504,0.316765817440056,0.0789356894276705,0.937083775736598,1 +"53836",1507.8407370941,1.18347265854285,0.843552944316059,1.40296192019387,0.160628194589702,1 +"653519",440.826959339126,0.740102984108714,0.138139531721019,5.35764798742331,8.4312302911358e-08,0.0010340060829049 +"9737",1211.40352168829,-2.68884063415974,0.386816189295341,-6.95121018346717,3.6216580377729e-12,4.44160141752468e-08 +"9052",8642.076535379,-0.696030301350279,0.471609226113572,-1.47586235130748,0.139980848192577,1 +"51704",834.918070023292,-0.820759046737832,0.232347206019222,-3.53246789922634,0.000411700206076163,1 +"55890",3107.18248912446,0.782853987709119,0.384785538194485,2.03452029767666,0.0418991642117325,1 +"114787",417.954130471342,2.61032182497273,0.31227064484083,8.35916493624707,6.31637513991254e-17,7.74640247158874e-13 +"9721",163.985543459101,2.14582205650656,0.579699629812973,3.70161018939906,0.000214235581014202,1 +"285513",118.092318680356,-0.289828986889272,0.365515299875045,-0.792932572147742,0.427817108813811,1 +"2873",5103.26327016018,0.606680332862539,0.101293422164467,5.98933593019978,2.10699562850255e-09,2.58401943879553e-05 +"2874",2245.44674355242,-0.0744695661896401,0.172303410354463,-0.432200187079531,0.665595923403674,1 +"26086",850.964829000115,-0.224824598356807,0.278222977158013,-0.808073440423006,0.419048306060392,1 +"29899",1085.20352521314,0.938199271157368,0.23876803467566,3.92933364146422,8.51815831663477e-05,1 +"63940",1055.16501276132,-1.03304147251273,0.318890404753907,-3.23948747630064,0.00119744724983602,1 +"84706",1715.92676653691,1.29714225112377,0.284897442470458,4.55301472654768,5.2882569705119e-06,0.0648551834863579 +"2876",8941.41398952639,0.233328995899625,0.146863747652851,1.58874466727593,0.112118050103462,1 +"2877",16447.4921018025,0.896057572227577,0.615466257436259,1.45590040298899,0.145420154262658,1 +"2878",7610.38273025543,-2.84448003175799,0.262225916209356,-10.8474405309619,2.05087970254259e-27,2.51519886719824e-23 +"2879",9154.78150855954,0.0143938365346738,0.11360951198114,0.126695699010336,0.89918125009867,1 +"2882",628.288095011103,0.257292287284926,0.287984636223581,0.893423658493967,0.37163033771831,1 +"493869",952.529239336175,0.439833854139821,0.279379202025244,1.57432568692095,0.115412174227395,1 +"57655",2829.43211950708,0.0159242394751411,0.2230567091829,0.0713909908089056,0.943086579608542,1 +"54762",442.371437551681,1.17762084171913,0.40230685144663,2.92717073419106,0.00342061044148645,1 +"23151",1575.11192523842,-0.102654994844038,0.208677906123917,-0.491930347351098,0.622768583945672,1 +"10750",245.616184746665,-0.627455308937404,0.30967249514903,-2.02618998705532,0.0427453193295391,1 +"160622",875.633673862753,-2.08467402885824,0.189577974124367,-10.9963936395409,3.97721508308732e-28,4.87765657789829e-24 +"2887",2519.45174204615,-1.03202970225336,0.340531126263865,-3.03064719391814,0.00244030208687949,1 +"2885",7430.40867190993,-0.0113517405447381,0.0963312404758661,-0.117840697251086,0.906193882439791,1 +"2886",2435.22082004169,2.04494286783066,0.595649487175258,3.43313124893027,0.000596653195289803,1 +"9687",180.714244124001,0.0731659053147296,0.382013175120825,0.191527177803719,0.848112589835227,1 +"26585",2616.80076416787,1.92569747982374,0.449156756056102,4.28736171472217,1.8080774436316e-05,0.221742617686979 +"64388",359.575674805802,-4.44534118653077,0.437020057916913,-10.1719385781051,2.6458943935211e-24,3.24492488421427e-20 +"29841",3551.21206381331,1.18940040114528,0.510821119203287,2.328408823426,0.0198904055798538,1 +"79977",3560.3604474227,2.09092020668791,0.626376058820418,3.3381228053727,0.000843464620881436,1 +"57822",4739.91152676964,0.833067716846563,0.669041294150597,1.2451663658582,0.213070603167428,1 +"9380",3344.89488385988,-0.246432028032339,0.135447303220651,-1.81939412725619,0.06885132204362,1 +"2899",126.844974180315,-4.16223347287061,0.471637748295246,-8.82506433786347,1.09396900437357e-18,1.34164358696374e-14 +"2901",264.689534106265,-2.44554483541661,0.472151789636914,-5.17957336833826,2.22393932729645e-07,0.00272743919099636 +"2906",352.926667639672,2.56946728294078,0.363122330189009,7.07603765817252,1.48334568282837e-12,1.81917514542071e-08 +"2907",7917.84153058822,0.290985284801397,0.132806100152915,2.19105360722401,0.0284479133895977,1 +"23426",393.693561834307,-0.173372278910521,0.302591020103704,-0.572959101202351,0.56667238633723,1 +"56850",3047.10444306016,0.205357263693661,0.153363318478638,1.3390246489891,0.180562648661614,1 +"2869",1031.74911888052,-1.53751658510924,0.241455945674131,-6.36768989397459,1.91896397598118e-10,2.35341742014332e-06 +"2870",2191.12142659493,-0.104911179557279,0.136624814816267,-0.767877926849259,0.442559712262572,1 +"2896",24116.4056485186,0.0668838451498215,0.252590597678337,0.264791507540574,0.791170079455962,1 +"80273",1760.4641503871,-0.0183326955956037,0.214964762248313,-0.0852823290843684,0.932036939694814,1 +"134266",1120.80014754879,0.960615024024828,0.186728719481788,5.14444176927222,2.68317460881507e-07,0.0032906453402508 +"2926",4881.82987028236,0.0243149259172709,0.122160280934464,0.199041175505443,0.842230535538859,1 +"79774",567.089091706985,0.346987830623168,0.326355447181392,1.06322058853306,0.287681927750748,1 +"83743",2027.15496529264,0.130214692990233,0.132028856560088,0.986259340441771,0.324005866576824,1 +"55876",1401.67142872004,1.093201991277,0.430336142268425,2.54034435851568,0.011074337160704,1 +"56169",428.42390249944,1.30008597826193,0.667289354425288,1.94830918497366,0.0513779787881359,1 +"79792",3606.06518376243,0.318062881697922,0.135605665256121,2.34549847970725,0.0190016560829946,1 +"2931",3997.61512177105,0.254528662103732,0.152220093917496,1.67210948011691,0.0945027355741243,1 +"2932",2821.97964279618,0.591202850143488,0.11690230859471,5.05723845192087,4.25371229979235e-07,0.00521675276446534 +"2934",58847.9348491768,-2.59052280191724,0.296620358361841,-8.7334625857242,2.46992444307463e-18,3.02911533698672e-14 +"2935",6704.96220167514,-0.232279964756445,0.157193752694936,-1.47766664243475,0.139497027105163,1 +"23708",978.573384708995,-0.379193451562096,0.155067943477485,-2.44533746342713,0.0144716661703048,1 +"2936",5171.63839812575,-0.137202968177591,0.260689787580666,-0.526307414843154,0.59867463200816,1 +"2937",2980.98990326229,0.583323332270507,0.198977078764992,2.93161069551865,0.00337209166632402,1 +"2941",940.353778374886,-0.558461750697993,0.320574443078961,-1.74206572842876,0.081496943641256,1 +"79807",399.440433487747,0.383179393703557,0.173995345456321,2.20223933403867,0.0276484069521492,1 +"373156",5580.9318294224,0.207677819472194,0.210574596423697,0.986243464308137,0.324013655321375,1 +"2944",4308.60647748063,0.163278304491084,0.409529622726216,0.398697177029953,0.690116348180155,1 +"2946",2071.65723198965,-0.146131914172019,0.502366020794541,-0.290887337365886,0.771137486082808,1 +"442245",1434.43084574211,-0.148366014104522,0.451034583547557,-0.328945982229494,0.742196517748056,1 +"2947",10292.3592790682,0.126209824419967,0.438709273769329,0.287684423298348,0.773588314598173,1 +"2948",5303.53612965599,0.106812999034708,0.426326304657833,0.250542830380676,0.802167586735772,1 +"2949",654.424673175175,-3.26798322255352,0.366082908156807,-8.92689374384481,4.3813790313682e-19,5.37332324406996e-15 +"9446",3769.09760886493,-0.0773177560768857,0.154867253808201,-0.49925180550203,0.617602002638125,1 +"119391",590.694353193321,0.492538899933344,0.474317620354134,1.03841577625897,0.299076527877908,1 +"2950",29891.9353866176,0.214347447231891,0.255241613770518,0.839782526310957,0.4010303324635,1 +"2952",1877.1797910938,-0.477804276006842,0.237729634858206,-2.00986417318913,0.0444455665212359,1 +"2954",999.003756924077,0.42142949129221,0.171697000382,2.45449536307911,0.0141082484030081,1 +"79712",773.245175443345,0.149992652986418,0.125864794083262,1.19169664622178,0.233380213578658,1 +"2957",359.939148233707,0.474505009631193,0.198390321404018,2.39177499322093,0.0167671180196479,1 +"2958",1845.74739570727,-0.0133661625675743,0.136298309880247,-0.0980655048424145,0.921880278609675,1 +"2959",1527.78587119098,-0.166699492999913,0.156466511517405,-1.06540045779297,0.286694749708693,1 +"2960",702.544575424895,0.68897377788215,0.136392606206055,5.05140122362118,4.38580721427957e-07,0.00537875396759247 +"2961",1422.83064554168,0.139073271713958,0.146965888093631,0.946296269957252,0.343997495340075,1 +"2962",4598.82938104201,0.00639721089156375,0.0658720786189096,0.0971156676043822,0.92263453872601,1 +"2963",1351.52192283778,-0.00338224747837813,0.121987020751627,-0.0277262897113013,0.977880455603396,1 +"2965",1596.89747953045,-0.158471380900799,0.123231013652652,-1.28596995353359,0.198453548035598,1 +"2966",356.763239144675,0.037360160466702,0.0902229287010462,0.414087206041547,0.678810242169905,1 +"653238",149.51139976624,-0.238638522017593,0.131572390349785,-1.81374315221585,0.0697172781994118,1 +"2967",676.245956195342,0.529009162434911,0.168016023769777,3.14856375341784,0.00164074929512213,1 +"2968",1117.53470706597,0.696814514538355,0.165653441398755,4.2064596343701,2.59402390421794e-05,0.318131091613289 +"404672",1614.01094542674,-0.296380962487257,0.175921866863556,-1.68473065782737,0.0920405487265739,1 +"2969",3213.30030201939,0.495575541525531,0.126896821795742,3.90534242317928,9.40920547029881e-05,1 +"9569",2155.13884689639,0.627664798342504,0.171809210942175,3.65326628823035,0.000258925462260543,1 +"84163",200.77373170149,-1.21294634350558,0.236154672680125,-5.13623689821518,2.80294294977177e-07,0.0034375292336001 +"389524",462.165587978617,-1.20917370270327,0.25262645171802,-4.78640971473939,1.69791266804736e-06,0.0208232009609328 +"2971",3959.22690718335,0.429041877659579,0.132743234312291,3.23211860764382,0.00122876042302814,1 +"2975",5719.30549680273,0.0147957230758609,0.141355538682968,0.104670274781696,0.9166374496527,1 +"2976",3140.52202695636,0.61910330554972,0.100792312440165,6.1423663229996,8.13010915323387e-10,9.97076586552602e-06 +"9330",1530.69338504493,0.431480025497833,0.124044381853804,3.47843263072055,0.000504355197020381,1 +"9329",788.869086101685,0.494461091622176,0.183101949725254,2.70046874085239,0.00692418435019665,1 +"9328",2874.10286624672,0.524124330322071,0.124602297922986,4.20637772383635,2.59496381284456e-05,0.318246362007257 +"112495",1743.54746612807,-0.00182214868454954,0.166456581971143,-0.0109466905001415,0.9912659790914,1 +"9567",3252.54136826815,-0.575217821399626,0.128804192555222,-4.46583150741008,7.97583645010106e-06,0.0978156582240394 +"85865",902.345706627702,0.13692338368145,0.106979956702144,1.27989754251513,0.200581172042617,1 +"54676",2517.99057302424,0.504896584791718,0.125625278440654,4.01906838383832,5.84287121839688e-05,0.716569726224193 +"84705",786.982876082458,1.02524127526787,0.136780988624623,7.49549543088555,6.60484059701798e-14,8.10017650818285e-10 +"23560",3486.23621493605,0.411293277845557,0.163799315442946,2.51095846605547,0.012040386228913,1 +"8225",491.401338700244,-0.172341158329092,0.142803966576825,-1.2068373341463,0.227494795021783,1 +"29083",403.75807131512,0.21395201830718,0.124173089127062,1.72301438106489,0.0848859244318839,1 +"51512",542.978644451937,3.20293673288536,0.403414301767888,7.93957159884786,2.02880750788614e-15,2.48812952767157e-11 +"2977",298.325883812926,-0.260546130846004,0.316595837059485,-0.822961329074743,0.410529984751521,1 +"2984",121.096846512602,0.20855054633559,0.297188158779633,0.701745813803544,0.482837696469679,1 +"60558",1183.96234216882,0.03031240277709,0.127045048211911,0.23859570446641,0.811419096285313,1 +"2987",7425.54874739919,-0.169834130398743,0.120842252731821,-1.40542009569821,0.159896394490989,1 +"51454",695.761029148142,-1.67794315128666,0.326622887346785,-5.13724915273661,2.78789230292829e-07,0.00341907112031126 +"2990",3148.99177824617,0.307071061979381,0.136207376134727,2.25443783364307,0.0241686374266696,1 +"728411",311.338700726279,0.252965610070459,0.246665952895322,1.02553922461204,0.305108827316056,1 +"91316",543.836185825927,0.370063836283819,0.217322086751758,1.70283583143822,0.0885987952779744,1 +"387751",140.453102063882,-0.984970168908596,0.361824480455142,-2.72223197189309,0.00648426087859706,1 +"283464",850.300173654264,0.643361133475769,0.177345775270891,3.62772179090848,0.000285933122434053,1 +"727936",163.002015616952,-0.808569410305914,0.385234282021251,-2.0989030520947,0.0358254477615755,1 +"2992",3049.68308276624,-0.864633807554659,0.218248247447153,-3.9616987429144,7.44184002696875e-05,0.912667260907448 +"8908",387.019452423991,-0.0617495186615883,0.375305078177316,-0.164531529819627,0.869312727742763,1 +"2995",1683.70406348656,-2.50968419522824,0.263651454205103,-9.51894690964182,1.74942836269672e-21,2.14549894401126e-17 +"2997",3408.6937668529,-0.0286079286987424,0.184350917275963,-0.155181916756714,0.876677903923236,1 +"64412",897.491330440199,-0.172595029107316,0.139644793341841,-1.23595749599353,0.216474363276373,1 +"3001",256.141124966794,-0.448538553206646,0.438058556730274,-1.02392373420256,0.305871298868137,1 +"3002",334.313866698648,0.219918067033297,0.4323574600331,0.508648716310944,0.610998475192657,1 +"2999",138.810097828709,-0.868810209990409,0.519960663586311,-1.67091526500868,0.0947384159113355,1 +"3003",216.677820967551,-1.49747325631978,0.485689479666827,-3.0831906372504,0.00204793916898845,1 +"283120",140102.051263108,0.147410002782776,0.56584784436288,0.260511733412633,0.79446906573894,1 +"339942",125.604104594298,0.374580752270034,0.204190565750579,1.83446649894486,0.0665847763115859,1 +"9563",4458.36668801752,-0.354292394141501,0.163240363470988,-2.17037249003962,0.0299786390991086,1 +"23498",619.498687326415,-3.16573307484231,0.246642368984042,-12.8353173377407,1.03976056722985e-37,1.27516235965069e-33 +"22927",1078.07680260542,-1.51804734910172,0.254273677700116,-5.97013172119243,2.37062116747661e-09,2.90732979979332e-05 +"57531",629.607355822079,0.045603003211925,0.245649970182555,0.185642209433346,0.852725350536577,1 +"26061",889.3723892064,0.116093788699775,0.158348177969905,0.733155191225751,0.46346378133893,1 +"3033",2915.53039318361,-0.498965081132128,0.189387716453096,-2.6346221944954,0.0084230979439048,1 +"3030",8462.51530128621,-0.385649449966573,0.124237624241888,-3.1041276933606,0.00190840945872797,1 +"3032",5388.14985843621,-0.295947737773745,0.148494287898558,-1.99299072012735,0.0462624632532614,1 +"3029",1422.71572508536,-0.275355055814546,0.155131408635395,-1.774979407695,0.0759012873793257,1 +"9464",930.705844906438,-3.53432945286083,0.458051424115425,-7.716010183106,1.20027726392626e-14,1.47202003647916e-10 +"145864",656.141708517598,0.595712884586296,0.324065437450959,1.8382487477593,0.066025759561501,1 +"283254",147.216579439435,0.338826108709553,0.159248678690567,2.12765412872228,0.0333657707887219,1 +"23438",1628.81262863801,0.476174606453663,0.113439120155733,4.19762252915886,2.69731725898561e-05,0.330798988641995 +"3037",766.267474031465,-0.518579988483033,0.402709079534043,-1.28772857339859,0.197840463499947,1 +"3038",9731.19900821518,-0.877343259920843,0.60201765425514,-1.45733809252879,0.14502307673506,1 +"8520",2234.70178433972,0.200406428594339,0.155802143962166,1.28628800283393,0.198342567905282,1 +"115106",673.613473759233,0.483887754953088,0.150543602413522,3.21426980087746,0.00130776728988894,1 +"55142",1146.23562448058,0.389023894455015,0.0911962469662843,4.26578842217968,1.99197489751797e-05,0.244295801431603 +"79441",572.488980527897,0.253408437498685,0.134016243917384,1.89087852406088,0.0586405618633059,1 +"54930",1803.49631688122,-0.0542299316644378,0.13215760372288,-0.410342879537617,0.681554441374787,1 +"23354",1136.35873183413,0.733498273617041,0.170653913682989,4.29816262508698,1.72219789443799e-05,0.211210349773875 +"54801",793.231407778888,0.659992776585652,0.159050716044417,4.14957438105052,3.33094040325429e-05,0.408506531055106 +"55559",846.592894030087,0.265801523504806,0.144785452070816,1.83583032482297,0.0663827550072299,1 +"93323",465.988565047307,0.877742687981406,0.16213839180029,5.41354011369833,6.17907437012738e-08,0.000757801680752422 +"84868",371.792960052493,0.171349299264847,0.303326980333149,0.564899631007605,0.572142034684303,1 +"10456",2476.77187641048,-0.0540841408905111,0.0975977069955328,-0.55415380704576,0.5794735885317,1 +"3039",398.607382850444,-1.78054610224085,0.4309923059372,-4.13127120301841,3.60762651488249e-05,0.442439315785189 +"3040",1271.08841165222,-1.88073444891573,0.404083635759716,-4.6543197558094,3.25052038035769e-06,0.0398643819447067 +"3043",2557.85023468253,-1.50589605764436,0.410143322080255,-3.67163373526705,0.000241004908973081,1 +"1839",6476.29793632736,-2.54267460052449,0.41642364731356,-6.10598033259599,1.02171589658349e-09,1.25303237556999e-05 +"26959",2325.79714803694,-0.383431931172902,0.13101704776384,-2.92658045435463,0.00342710851082882,1 +"10767",2071.54343139042,-0.053535812542428,0.123131062493333,-0.434787221504944,0.663716881097839,1 +"27198",311.472761045557,2.40900806230731,0.505516029144188,4.76544347443469,1.8843872140549e-06,0.0231101247931693 +"338442",951.385561638022,1.87572841982743,0.512219975849138,3.6619587448106,0.00025029417353319,1 +"8843",752.924470889983,0.954246928173508,0.575278800362664,1.65875559393452,0.0971650517868434,1 +"3052",1176.1819999271,-0.114312856912121,0.193248242022771,-0.591533748072344,0.554162849816854,1 +"3054",5075.73098728162,0.136340303927175,0.133334266709682,1.02254512130808,0.306522968300469,1 +"54985",1942.53766526191,-0.407712714212623,0.215577652140304,-1.89125686343068,0.0585900639634653,1 +"29915",720.065961286836,-0.804654952986359,0.147657123908416,-5.44948277257143,5.0516515991066e-08,0.000619534552114433 +"493812",658.89819319565,-0.681505018439441,0.285444557271426,-2.38752150313872,0.0169624104238156,1 +"414777",1126.4329852612,0.168371371138809,0.172497677169069,0.976079063219989,0.329025285766222,1 +"352961",161.43750440042,0.138682100775792,0.29459842372486,0.47074963613965,0.637819533926437,1 +"3055",628.264384258335,-0.608541409651962,0.285085960498192,-2.13458919053231,0.0327945811758427,1 +"3059",2904.96264478841,-0.207312620232967,0.351979414343975,-0.588990752823883,0.555867476832397,1 +"57657",257.130271869086,1.34900895330101,0.202429329636065,6.66409830890766,2.66295176109994e-11,3.26584403981296e-07 +"10866",1442.65544334881,0.877872368006164,0.318944308417609,2.75243152123199,0.00591545165440877,1 +"10870",361.219193740325,-1.09707881445666,0.277567690338463,-3.95247304583215,7.73476439916064e-05,0.948591505913061 +"3065",7504.37880589702,0.336939029171475,0.163573995268233,2.05985693886705,0.0394122193568558,1 +"83933",1573.16226078602,0.660578686031068,0.172955762776232,3.81935054043685,0.000133803503022025,1 +"79885",1111.00704337485,-0.426194535544092,0.255791519836103,-1.66617930030352,0.0956777075558263,1 +"3066",6094.6717136103,0.643763701287225,0.112774206126091,5.70843035301391,1.14022817998589e-08,0.00013983758399347 +"8841",2702.84525539976,0.229981369437114,0.094443165410439,2.43512983112798,0.0148864473135815,1 +"9759",1479.36989883336,-1.72254610673888,0.280191858475906,-6.14773789684187,7.85957671719622e-10,9.63898488596944e-06 +"10014",3613.295074406,-1.10540345262535,0.142490167106414,-7.7577525177566,8.64476342280948e-15,1.06019378617335e-10 +"10013",2248.23934358861,0.550547012759039,0.0985818557214436,5.58466878849069,2.34146015747866e-08,0.000287156673713182 +"51564",4658.39924932525,-0.219033059403932,0.162397885161683,-1.34874329912525,0.177419432642998,1 +"55869",848.226028113728,0.383462768375932,0.11327407716944,3.38526499582364,0.000711095694441572,1 +"9734",377.723516687813,-1.35028201744253,0.412139397456796,-3.27627503163922,0.00105186074838482,1 +"51020",1781.66942865479,-0.0385634873237916,0.150388954370449,-0.256424998000845,0.79762268736012,1 +"374659",691.350956286463,0.588162434380007,0.192227670611011,3.05971784660598,0.00221545600426128,1 +"3068",15251.9478862348,0.776924346046191,0.155170273671544,5.00691484047224,5.53093823323729e-07,0.00678314264924221 +"84064",1254.25994646683,-0.405187434361205,0.148999284655613,-2.71939180981792,0.00654020864568566,1 +"81932",1207.74130671791,0.482775995781543,0.196212627667102,2.46047362762314,0.0138753769205726,1 +"3069",25858.2531842824,-0.0288987469210711,0.143402356673603,-0.201522119938707,0.840290334997589,1 +"139324",161.578591273896,-1.04203347501996,0.313545566038842,-3.32338769188932,0.000889312241213209,1 +"55127",2021.30275020874,0.696243487010694,0.164453350259925,4.23368381313154,2.29894111671469e-05,0.281942138553889 +"55027",653.30179430543,0.638113447650791,0.182657236485098,3.49350214604201,0.000476729152281389,1 +"25938",1450.95926895832,0.0540865769401484,0.170320976717594,0.317556756557522,0.750821180625175,1 +"54497",1684.47718353692,0.337698987230399,0.127788673937209,2.64263629025788,0.00822633499401752,1 +"63897",894.626218071505,0.480373278339687,0.149295688055179,3.21759646643073,0.00129269548547378,1 +"50865",2097.29243796914,-0.222078293415984,0.203372112530695,-1.09198006871501,0.274841861900009,1 +"23593",3808.76671959435,0.287325833840839,0.217761751191154,1.31945041895177,0.187018575419025,1 +"51696",2809.9011359747,-0.392526651476683,0.130911716755135,-2.99840733286607,0.00271394675499309,1 +"25831",7326.51094141447,-0.0426317000034877,0.145229864895747,-0.293546372394485,0.769104559708811,1 +"143279",684.240675054312,-1.19623842337672,0.24419069382318,-4.89878792941602,9.64296528946604e-07,0.0118261326310011 +"79654",2655.75849680516,0.274747050926776,0.133678709979104,2.05527904158952,0.0398520604526379,1 +"57520",254.869710389447,0.20880642050664,0.317904257552423,0.656821717690293,0.511295558093918,1 +"57493",3038.64851155996,-0.80074659118546,0.205182587826619,-3.90260499035179,9.51629377419595e-05,1 +"3070",413.398414371657,1.86216175791187,0.344706100191372,5.40217233428143,6.58386500624837e-08,0.0008074452043663 +"113510",467.994469293632,-0.649786280248876,0.114786259512006,-5.66083678491948,1.50636646116938e-08,0.000184740782797813 +"9931",2461.3839945709,0.113282896052933,0.137152629182887,0.825962263558763,0.408825498689791,1 +"51409",997.523036024236,-0.214704991554177,0.166796671384565,-1.28722587670322,0.198015570435687,1 +"113802",754.535050491418,1.2121755739622,0.298715909692345,4.0579545134059,4.95044066599703e-05,0.607122043277875 +"9843",1827.0930090163,-1.57743260215625,0.341286248137164,-4.62202216106368,3.80017405646806e-06,0.0466053346285243 +"8925",3297.30510160784,-0.798821605500481,0.153822597319179,-5.19313559530492,2.06781465572288e-07,0.00253596789377854 +"8924",3204.45114311331,-0.189264857775628,0.17151306513245,-1.103501110131,0.269809609725396,1 +"400322",667.458386558393,0.42694608406333,0.227775167238363,1.87441892476601,0.060872707092441,1 +"283755",125.194849600888,0.172690992497056,0.246436478364978,0.700752557587261,0.483457450125304,1 +"440248",503.158874749503,-0.0246761807228096,0.192658930877091,-0.128082205223863,0.898083918225493,1 +"8916",1420.89178113273,-0.689453252356029,0.190961491415119,-3.61043081119046,0.000305688840094177,1 +"26091",1806.47746513015,-0.103675047611342,0.142633365650119,-0.726863922328372,0.467309319986026,1 +"51191",518.482996475635,-0.528408063400389,0.285339483536674,-1.85185750268758,0.0640462878190313,1 +"55008",1079.09451059762,0.176435397728821,0.265046714217487,0.665676608177247,0.505617828207974,1 +"9709",4471.55829415309,-0.394613634721014,0.206142196638033,-1.91427878986814,0.0555845430559373,1 +"64224",1631.61294533756,-0.0800440459665504,0.111479005547804,-0.718019016883196,0.472745561303759,1 +"3280",5461.16304815221,0.974746101232462,0.300361003535694,3.24524851681229,0.00117348163538109,1 +"54626",1033.90886328971,3.05564580687909,0.691325033052521,4.41998432110435,9.87080626059717e-06,0.121055567979964 +"57801",556.339271882086,0.665974304233251,0.243481381802101,2.73521654634993,0.00623392507285586,1 +"55502",306.577306125652,0.912522330831585,0.327296167651827,2.78806298704455,0.00530242333025986,1 +"3073",4294.82698814078,0.220281449602418,0.172854131800672,1.27437769237959,0.202529594233443,1 +"3074",4277.92227409501,-0.100924172437644,0.178974320738174,-0.563903089680047,0.572820087227911,1 +"10614",3988.59983801069,-0.0689975501656632,0.17960616987343,-0.384160244685839,0.700859681897533,1 +"124790",346.216725834343,0.397220277300559,0.22167810454109,1.79187871586538,0.0731523960699964,1 +"23462",448.30450489451,0.490357809490292,0.285857604267326,1.71539186703504,0.0862734055132181,1 +"23493",111.213025175252,-0.964445272994272,0.254227242167915,-3.79363464265274,0.00014845807028796,1 +"26508",682.13341485112,-0.218615014159481,0.246090219072836,-0.888353120994119,0.374350833652886,1 +"3077",443.174522828637,0.582088987643075,0.245198627393501,2.37394880155232,0.0175989905921164,1 +"3082",271.823093152934,-2.25335067335936,0.359290664958108,-6.27166495857077,3.57207580140648e-10,4.3807937628449e-06 +"9146",5743.94115171175,0.55604340499466,0.124858038772943,4.45340492658095,8.45191421096299e-06,0.10365427588325 +"138050",3796.95199695338,-0.452065214819944,0.167854441184169,-2.69319781848334,0.0070770265524951,1 +"55733",515.691294673579,-3.94655601115484e-05,0.21322874082257,-0.000185085556287124,0.999852323093054,1 +"3087",251.952005105552,-1.31806324992988,0.241709492180606,-5.4530884908112,4.9502419329551e-08,0.000607097670657614 +"84439",210.872919571154,-0.634244383394979,0.317793709045223,-1.99577387891188,0.0459585412667648,1 +"11147",261.403142198668,-0.352622273379568,0.219508796930299,-1.60641522486015,0.108182707902243,1 +"11112",2352.05833926171,-0.294765551610712,0.178785273542322,-1.64871270306799,0.0992065064597532,1 +"26275",1566.43352558534,-0.334797719410891,0.167884390580191,-1.99421589019601,0.046128466347398,1 +"3090",619.595954136261,-1.97002929571276,0.204783983980825,-9.62003598825009,6.58081350994876e-22,8.07070968860116e-18 +"23119",830.149038095666,0.868403712199675,0.326806402224433,2.65724204387924,0.00787828567381871,1 +"3091",6280.71820010483,0.311959377695087,0.250923685544621,1.24324404457072,0.213777916797241,1 +"55662",2536.49833239432,-0.510059996498467,0.170452045427981,-2.99239586839677,0.00276797078496726,1 +"64344",881.910065336247,-4.8563155065824,0.558755774812532,-8.69130257886237,3.58307344049286e-18,4.39428126742044e-14 +"25994",3561.84194013061,-0.0411227928321525,0.180483423268797,-0.227848032175829,0.819764384352254,1 +"192286",3288.55401481401,-0.563560770294112,0.145851134650628,-3.86394505359227,0.000111570328844521,1 +"29923",1797.95240896282,1.98518378406038,0.349462813263569,5.68067247419294,1.34166180756039e-08,0.000164541404079206 +"25988",681.288946309351,0.309410514434649,0.143779730088789,2.15197590260864,0.0313992523367306,1 +"3094",7410.00788429948,-0.00439787339338683,0.137609539631143,-0.0319590735146353,0.974504688815906,1 +"84681",1054.79361816304,0.186590957680804,0.147029018454468,1.26907572152899,0.204414058500081,1 +"135114",2013.21274050979,-0.609049417647688,0.127410532768304,-4.78021247077936,1.75110032642301e-06,0.0214754944032518 +"3092",2021.55307278107,-0.189474132458172,0.205925041030046,-0.920112151054643,0.357514155183773,1 +"9026",2798.35925703508,0.803291194346949,0.29603362661689,2.71351333808615,0.00665738881236997,1 +"204851",3906.75665906874,-0.184035626126825,0.160615643444955,-1.14581383344454,0.251872190078466,1 +"28996",1844.94454487442,-0.338437464101285,0.237953851260372,-1.42228193537814,0.154944420930171,1 +"10114",2614.41432538647,-1.07109379579304,0.246995627657253,-4.33648889234332,1.44776739603786e-05,0.177554193450083 +"7290",1681.50768487879,-0.173367364272489,0.197737211204768,-0.876756394085877,0.380618968598853,1 +"8479",1206.74475712961,-0.305949627532885,0.189941673465525,-1.61075567015269,0.107232986627654,1 +"3096",1449.15165713851,-0.401449780508435,0.144431361242278,-2.77951946900935,0.00544393901028134,1 +"3097",2750.07689917953,-0.145453076176923,0.236974289435937,-0.61379264612689,0.539352357381084,1 +"59269",386.552830153962,-0.451232775850127,0.261036662465938,-1.72861839247967,0.0838774156349509,1 +"55355",726.31462599164,3.41775620213854,0.39297659246157,8.69709867636141,3.40477348114842e-18,4.17561419728042e-14 +"3098",11997.6657215647,-0.497488403039059,0.188565556947464,-2.63827822584622,0.00833281842581519,1 +"3099",4882.54637610422,1.10592271045637,0.399383246720338,2.76907636847066,0.00562154568459218,1 +"3101",182.510408916867,0.29711873458609,0.367570674993409,0.808330900149794,0.418900118824819,1 +"3105",59473.1918734844,0.0835497016928596,0.247991051270383,0.336906115220126,0.736187675274284,1 +"3106",79595.3327198603,0.107866315688432,0.26291932450308,0.410263931311631,0.681612347691481,1 +"3107",50085.683457012,0.388420661589886,0.221336183965096,1.75489002580409,0.0792781205753556,1 +"3108",2729.27019839312,-0.757449944285746,0.251122962825719,-3.01625122514751,0.00255921125221747,1 +"3109",1371.86003918746,-0.503601873000451,0.282938655816285,-1.77989773630452,0.0750926982418516,1 +"3111",1012.68583476707,-0.994713787174181,0.341457009261954,-2.91314502321746,0.00357808387205088,1 +"3112",194.058879136272,-0.541285060491981,0.408803398781756,-1.32407182059891,0.185479193277404,1 +"3113",7598.6694280097,-0.922558639781802,0.34257075533779,-2.6930455253605,0.00708026004746753,1 +"3115",8180.76849250492,-0.958242944822867,0.333795231055374,-2.8707508546277,0.00409498137672342,1 +"3117",2597.58142353438,-0.618212713677504,0.404271325856479,-1.52920247897318,0.126214256248604,1 +"3118",994.35806761947,-0.715827747605214,0.403458157357422,-1.77423044881223,0.0760250396138127,1 +"3119",4274.59877621732,-0.637185823345831,0.347833843034304,-1.83186839379223,0.0669710304486155,1 +"3120",443.166527462253,-0.413157005583068,0.367969686888887,-1.12280174238327,0.261521705214529,1 +"3122",19438.0917386751,-0.698831066482,0.334615278761659,-2.08846131912513,0.0367562411347495,1 +"3123",12012.1768681221,-0.825036537684727,0.314434792958144,-2.62387164576457,0.00869365405589483,1 +"3127",5116.59319143981,-0.86507371791133,0.32564842495714,-2.6564652294117,0.00789645935971076,1 +"3128",1678.53049146403,-0.988789746372589,0.312218493816189,-3.16698006670519,0.00154030876129149,1 +"3133",36780.4028538644,-0.391899118405396,0.208976597611626,-1.87532538515975,0.0607479731170537,1 +"3134",5199.27647871531,0.061189840388349,0.265170575332817,0.230756524593837,0.817503958052952,1 +"285830",137.795332914764,-0.739289803478671,0.231996307220121,-3.18664470282807,0.00143933468098899,1 +"3135",837.912731523771,0.35740551978652,0.214848467524924,1.66352371000765,0.0962076488016554,1 +"3136",5349.55506861901,0.124051972667412,0.253239941516961,0.489859427088453,0.624233375130538,1 +"3137",1716.85720533585,0.387974782294598,0.251420354721997,1.54313195017003,0.122798764051141,1 +"3139",443.346943014117,0.0296032452180337,0.26907623629221,0.110018058918757,0.912395052908002,1 +"3141",1521.36499567289,0.453368476488839,0.174141143405598,2.60345411556695,0.00922896203214372,1 +"3131",1099.73359518143,-4.97343485730175,0.449604903193662,-11.0617896334629,1.92223336618355e-28,2.3574270002875e-24 +"6596",2279.29442090868,0.569050682971751,0.195739201785724,2.90718812471041,0.00364693800049884,1 +"3142",361.335165666454,-0.686905870976968,0.210928443127561,-3.25658247314496,0.00112762166794978,1 +"81502",7090.46579954537,0.611559460640544,0.170527383475121,3.58628302491821,0.000335424906153828,1 +"79618",226.843812499255,-0.31532510191396,0.202301603613761,-1.55868809876557,0.119070219959158,1 +"3145",1035.23705678506,0.799709651767457,0.13767074924161,5.80885668286717,6.29009037474082e-09,7.71416683558214e-05 +"83872",380.67334813003,0.120849104591422,0.334915686494445,0.360834411359906,0.71822323683326,1 +"10363",1498.77818192737,0.163407942259875,0.110719263650848,1.47587634591917,0.139977090572284,1 +"10362",3249.38516022597,0.133774709684512,0.130572775889635,1.0245222158529,0.305588683129237,1 +"3159",10078.3763360118,1.33350900744425,0.361955794785801,3.68417642887415,0.000229443283615193,1 +"3146",8148.3459580397,0.11452676183146,0.127318559447254,0.899529199267346,0.368370850033773,1 +"3148",4465.12417325031,0.646058604317992,0.240346257426406,2.68803272094143,0.00718743532422511,1 +"3149",3065.65130491418,2.18974742861999,0.234969768667016,9.31927303262217,1.17140129413745e-20,1.43660654713017e-16 +"3155",2104.39788395757,0.0918750771700279,0.165336161360464,0.555686526250739,0.578425169023337,1 +"3156",2756.05182606319,0.580318643471812,0.270261222588891,2.14725086311981,0.0317733153863424,1 +"3157",4345.19789248171,0.381366205918496,0.280355262941645,1.36029622528569,0.173736202407966,1 +"3158",5559.13568988213,-1.01476610813415,0.716977915570986,-1.41533802659182,0.156969410689,1 +"3150",4956.06275688268,0.887016378775238,0.165007753920291,5.37560422283986,7.63262853069242e-08,0.000936065563004119 +"3151",7354.01704279705,0.240517627649703,0.166576783485739,1.44388445146256,0.148771481017537,1 +"9324",2052.59050498458,-0.145776552611379,0.115213610553299,-1.2652719753448,0.205773849009238,1 +"10473",3904.97126103007,0.110057534153082,0.123745394862574,0.889386908299148,0.373795178418815,1 +"79366",373.233496527662,-1.08011512474096,0.309803581489211,-3.48645138170741,0.000489474345590423,1 +"22993",2249.55076484374,0.338300087248953,0.120703477617375,2.80273687160323,0.00506709915523502,1 +"10042",1290.51349253551,0.363319584075486,0.116706875060762,3.11309495594263,0.00185136441345248,1 +"3161",637.757075503289,2.94892235349906,0.409167577269254,7.20712616864681,5.71450515521279e-13,7.00826912235297e-09 +"3162",2711.58806836707,0.584606922053872,0.297603855274634,1.96437953236321,0.0494860946289525,1 +"3163",2184.41708984743,-0.207580401078669,0.183666602672246,-1.13020221454794,0.258391026847715,1 +"6928",475.691259329587,0.840134908374027,0.820432957839747,1.02401408956822,0.305828620043639,1 +"3176",1692.86795176358,-0.468393605212623,0.229382551767056,-2.04197573705732,0.0411539381387545,1 +"10949",9038.01162279111,-0.158550158610549,0.110255771162464,-1.43802140186315,0.150427981772071,1 +"3178",2380.04825082708,-0.362068826117591,0.113045019383718,-3.20287287393521,0.00136064029823167,1 +"144983",965.049019485613,-0.165896576114522,0.109868137849751,-1.50996075260138,0.131053439072422,1 +"3181",35382.6090506852,0.400045291147619,0.104549452339274,3.82637385655002,0.000130044740824718,1 +"220988",8674.04316463649,-0.0867269405375112,0.115170749873978,-0.753029225149698,0.451432352278706,1 +"10151",288.477531480831,0.393312782729972,0.116860600014138,3.36565773821449,0.000763613931065886,1 +"3182",8524.48131743333,0.187409578584825,0.145368768573028,1.28920111537354,0.197328177378237,1 +"3183",12157.3580945345,0.18983941511128,0.100853831605512,1.88232228849602,0.0597922700620806,1 +"3184",6958.69738175064,-0.227638173514985,0.162306459873971,-1.40252072340031,0.160759806572189,1 +"3185",12215.0158151657,0.16973777590973,0.196824929124461,0.862379459069423,0.388478740180784,1 +"3187",12482.4970267944,0.0209629615666016,0.123947922811359,0.169127171243571,0.865696613218594,1 +"3188",205.514350829002,-0.353830674177627,0.168132002070626,-2.10448141829058,0.0353364738349513,1 +"3189",6597.35660470102,-0.424239405895649,0.174147730644696,-2.43608920038815,0.0148470227908219,1 +"3190",14335.7530693477,0.0601666093627178,0.0889600795837501,0.676332683651378,0.498829446181772,1 +"3191",12852.0952174752,0.546017737036007,0.0891514671205305,6.12460742006416,9.09074662430644e-10,1.11488916600494e-05 +"4670",12590.4348739274,0.0132177644130969,0.114991122521265,0.114945955159735,0.908487959520584,1 +"10236",7281.79556388712,0.394704455417864,0.101796969479743,3.87736940927704,0.000105591971394833,1 +"3192",20801.6521657996,0.111059874451577,0.080157677760739,1.3855176142088,0.165894250307661,1 +"11100",13961.781319324,0.176514412347572,0.12019804817432,1.46852977255985,0.141960375141584,1 +"221092",3818.82697957319,-0.0771599751923204,0.152938083860564,-0.504517731912141,0.613897604836408,1 +"9456",702.40074409319,0.523210551994825,0.330965904622586,1.58085937157625,0.113910195709048,1 +"9455",386.781615122718,2.12933446783589,0.494356624967933,4.30728417561716,1.65271224137952e-05,0.202688629282784 +"9454",1725.0381060567,0.685328536064557,0.167889666219932,4.08201738376674,4.46464563881941e-05,0.547544141144812 +"57594",1149.97544132429,0.0487037478696455,0.211907746398193,0.229834674274374,0.818220239698505,1 +"51361",952.926689454573,1.97946295148431,0.565106388125936,3.50281467892941,0.0004603696402042,1 +"29911",1710.62915676156,0.633576283608495,0.181182917229169,3.49688752834858,0.000470720246600492,1 +"84376",2960.59827837524,-0.573388913513593,0.150228387964005,-3.81678137723862,0.000135203869636173,1 +"84525",2907.10632066306,-0.739516522741153,0.41414962604013,-1.78562644088805,0.0741597628024941,1 +"100506311",804.953103592828,0.390155074798351,0.366839975876653,1.06355659266954,0.287529615229403,1 +"100316868",161.807659220049,-1.64525308188068,0.386538705745225,-4.25637344314258,2.07769557350664e-05,0.254808585134854 +"3198",399.984833453661,0.975926846173508,0.458029517574204,2.13070732065953,0.0331132616099171,1 +"3206",1240.68117994773,-0.490608714822272,0.262995040528408,-1.86546755344338,0.0621158961080685,1 +"3207",490.303385920292,-0.636394001334501,0.327669407542026,-1.94218314766807,0.0521149324777701,1 +"3209",573.311080901396,-1.3384896117391,0.360084095019745,-3.71715838119899,0.000201476147186974,1 +"3200",516.787543076278,-0.155703775482237,0.253489156406085,-0.614242351388013,0.539055190969395,1 +"3201",215.117207794402,0.164925426167679,0.267647842239507,0.616203085321696,0.537760492390665,1 +"3202",402.92945636493,0.277377694388885,0.268690111353668,1.03233309551828,0.301916102208107,1 +"3204",105.200957861658,-0.289801281972294,0.298305029542988,-0.971493113663815,0.331302780673034,1 +"10481",272.245731746263,-0.098549950401726,0.509433724982394,-0.193449992744654,0.846606566237051,1 +"3212",511.472864648569,0.138483571987346,0.378265394412909,0.366101615513311,0.714289252072237,1 +"3213",807.790246997549,0.75013700170114,0.249875590700629,3.00204193453959,0.00268175230979524,1 +"3214",314.418246528525,0.902698755128941,0.254334001233475,3.54926494590189,0.000386308181711152,1 +"3215",157.615795238348,1.79831537207421,0.400513964612166,4.49001915280431,7.12167697048498e-06,0.0873402463660278 +"3216",227.380025614699,1.50075019092432,0.371166897308151,4.04332983843214,5.26974049565956e-05,0.646280974387688 +"3217",881.826264755803,1.30574728319538,0.326948928178328,3.99373471101633,6.50406326148159e-05,0.797658318388102 +"3231",160.721711593828,-0.140196609906669,0.453851845201042,-0.308903910800597,0.757394621817183,1 +"3236",169.913565188999,0.306849921348486,0.34722149692021,0.883729619479748,0.376842187116795,1 +"3237",150.902569014823,0.442836769166039,0.424970612019707,1.04204092386864,0.297392705911539,1 +"3234",365.985172332759,-0.0682496801131314,0.212098701609164,-0.321782639852721,0.747617366788074,1 +"3235",303.218054507505,0.0247714196906683,0.251385486568397,0.0985395777171429,0.921503846392375,1 +"50809",8219.60011931957,0.115600280109689,0.0975809834149504,1.18465992106386,0.236151934962889,1 +"3241",1267.55999377071,0.0969431327755143,0.146281401538333,0.662716734704723,0.507511989888743,1 +"3248",9999.17739923676,-2.22073207793011,0.507320613532632,-4.37737402875562,1.20117742998073e-05,0.147312400012837 +"3251",1524.03298831103,0.727300293447333,0.143932257776642,5.05307361033672,4.34756241919708e-07,0.0053318505509033 +"3257",2700.3347560407,-0.451769079201509,0.155813867949225,-2.8994150851112,0.00373859595927479,1 +"84343",1293.60704189562,0.681649902225753,0.149286841008138,4.56604143823095,4.97020558790945e-06,0.0609546013301214 +"89781",1541.19561303317,0.390776445899014,0.112849853432423,3.46279976458293,0.000534586064335592,1 +"11234",931.931654971948,-0.313454501228248,0.161323514289445,-1.94301805666006,0.0520139766668527,1 +"79803",952.389653918281,-0.110007004954119,0.140921671965507,-0.780625175814299,0.435022980129066,1 +"10855",274.05725495862,0.424934860561403,0.409693791271368,1.03720112341156,0.299642134631713,1 +"60495",1200.43163916253,-4.75217540883098,0.441578359192833,-10.7617941638208,5.21449156054947e-27,6.39505244985788e-23 +"55806",1770.23287532071,-1.08827857960364,0.428754213930171,-2.53823413099068,0.0111413420623994,1 +"3265",2666.37941391529,0.229716267572848,0.230555486416472,0.996360013562603,0.319075254158244,1 +"3269",977.599694073298,-0.75691752398065,0.34061153653221,-2.2222310250759,0.0262676967788415,1 +"64342",1903.72631894992,-0.534262473306043,0.247606743956755,-2.15770566168163,0.0309507234911201,1 +"9653",2340.74716926229,0.572061663998203,0.152570528258336,3.74948996066641,0.000177194589905177,1 +"9957",2772.473460688,-1.09449709246477,0.470379028684615,-2.32684075122453,0.019973742591785,1 +"64711",191.613001854645,-0.370922821827463,0.791669011213525,-0.468532703154424,0.63940368993076,1 +"9394",4099.52621082915,0.56764647938771,0.235955856909588,2.40573167719764,0.0161401144334246,1 +"90161",732.729713162222,1.81220349639242,0.449191974365889,4.03436303364649,5.47506148259306e-05,0.671461540225213 +"266722",173.670106342325,0.917788658640268,0.507200268897938,1.80951926668823,0.0703703697038585,1 +"3281",4607.92981875614,0.470500402810948,0.125364178244964,3.7530689340266,0.000174682793628204,1 +"440498",402.765703037614,0.806227506697791,0.229800199133475,3.50838471741058,0.000450836579218991,1 +"150274",515.533526332477,-0.183346356910466,0.128671748527226,-1.42491540690979,0.154181655475968,1 +"3290",171.225637846142,-1.28523945428818,0.313591797143477,-4.0984472999469,4.15930910636949e-05,0.510097668805154 +"374875",306.588204907378,0.117705673486285,0.249903654017495,0.471004211399184,0.637637727484716,1 +"3291",437.830570322071,0.730853739091442,0.37488452198889,1.94954364937239,0.0512305354129528,1 +"3292",935.324260882098,0.67722252286345,0.169330662691597,3.99940868416065,6.35009428465409e-05,0.778775563069978 +"3028",3936.8702050862,0.413646122729021,0.162317541918647,2.54837596626704,0.0108225764573335,1 +"51170",2550.53618469098,-0.379609355197588,0.211203577706119,-1.7973623331599,0.0722781164388586,1 +"51144",2983.74159831286,0.0230582180974686,0.151211542706053,0.152489801273257,0.878800633775223,1 +"51171",541.280593692636,-0.427832880780995,0.32124309332443,-1.33180413733881,0.182924558072555,1 +"3294",1865.84283237123,0.281449325336952,0.82814618812516,0.339854640850458,0.733965996875859,1 +"3295",5997.89128782094,-0.261635899058819,0.16807216383374,-1.55668787198833,0.119544609498421,1 +"8630",868.587968504974,-2.76601171657029,0.377743678614475,-7.32245666351252,2.43471956468673e-13,2.9859400741318e-09 +"51478",371.303875624975,0.945072515928476,0.282560290698135,3.34467562159368,0.000823788560740858,1 +"7923",721.141652587119,-0.189557320127385,0.231509421209423,-0.818788795449978,0.412906924670354,1 +"80270",1069.74978361714,0.0294772453781546,0.225640969927703,0.130637824272779,0.896061819678935,1 +"83693",1220.88679264928,0.307855005811917,0.159317143447019,1.93234073340196,0.0533174639313149,1 +"84263",3502.92996145618,-0.716344006711184,0.230347815183525,-3.1098363409284,0.00187191030074997,1 +"3297",4692.70015960735,0.019137412208967,0.14450406654383,0.132435111804707,0.894640144051131,1 +"3298",598.224121953967,0.159110040755263,0.224626068237276,0.708332928603784,0.478738533010876,1 +"3299",612.171313343415,0.322261743119801,0.308985092647709,1.04296857935224,0.296962845303134,1 +"84941",672.423944202193,0.484952652646741,0.352043997230708,1.37753421862476,0.16834714286583,1 +"3320",55225.283407205,0.63196653871774,0.141796874997534,4.45684390949189,8.31751192113716e-06,0.102005966200826 +"3323",3027.80476234148,0.626884501117475,0.159928659853561,3.91977586563586,8.86313573796574e-05,1 +"441051",100.762476880553,0.574499501723282,0.187120950671193,3.07020405605348,0.00213912565848305,1 +"3326",48407.5638975892,0.190153236961075,0.13605723542161,1.39759738886236,0.162234002915496,1 +"391634",752.141862634285,0.0988406870494388,0.163036123944359,0.606250226380328,0.544348604900573,1 +"3327",4059.18771421246,0.10233863558575,0.145918954913203,0.701338874354079,0.483091558825812,1 +"664618",1287.4397286003,0.306380794214772,0.165221577395675,1.85436308649352,0.0636872321495292,1 +"7184",31126.3648718531,0.663363555507489,0.11345550429879,5.84690500128131,5.00803314755186e-09,6.14185185215761e-05 +"343477",428.241303736882,0.590068987645843,0.132468186666895,4.45442035927942,8.41201462588638e-06,0.10316494737187 +"259217",545.664730537658,-1.96089355612882,0.330061327227694,-5.94099760974446,2.83292745645651e-09,3.47430223259826e-05 +"116835",451.996757811604,-1.33115612948834,0.265150767305405,-5.02037441949052,5.15708574955063e-07,0.00632464996324889 +"6782",1450.62373131687,-0.0541072964754827,0.158406258666986,-0.341572971489917,0.732672280677489,1 +"51182",919.090767621596,0.57716434166117,0.16534319861333,3.49070506982826,0.00048174773934989,1 +"3303",11761.5373086032,-0.755655644118357,0.341047248278382,-2.2156919545105,0.0267126062876523,1 +"3304",16417.2797704908,0.396438833308254,0.291550769165953,1.35975917485094,0.173906145392319,1 +"3305",141.997442771535,-0.694596240532358,0.228927161525084,-3.03413642970562,0.0024122531487837,1 +"3306",2684.97242849364,-2.27127660239536,0.31317142532906,-7.25250268286403,4.09140138603197e-13,5.01769465982961e-09 +"3308",6500.69178968711,0.179559016776461,0.119404939183518,1.50378215511244,0.132637467407362,1 +"22824",582.065556399214,-0.897666681931913,0.389868286062983,-2.30248705529974,0.021307720597201,1 +"3309",24520.0886492724,0.551372827377555,0.142676692609705,3.86449123043415,0.000111320989204169,1 +"3310",3657.07976654335,0.688536092338478,0.469806644231588,1.4655733391439,0.142764558923064,1 +"3311",460.795949664019,-0.00425032357174508,0.388730365292407,-0.0109338604627605,0.991276215367535,1 +"3312",47819.0148741884,-0.111154852278348,0.195697889092831,-0.567992086136508,0.570040341628585,1 +"3313",8191.83494019543,-0.0314843181118243,0.148617998773813,-0.211847275374373,0.832226185048784,1 +"3315",51828.4563254164,-0.406295243324535,0.274507007179707,-1.48009060861078,0.138849067512915,1 +"51668",994.382678913554,0.179025632302632,0.18614004753242,0.961779233839783,0.336160511474516,1 +"3316",365.533976670741,-2.76885653999265,0.282870002415364,-9.78844174479445,1.26226136687971e-22,1.54803734034127e-18 +"126393",19976.3559531983,-6.04624940012833,0.469796637050704,-12.8699290784318,6.64631510261799e-38,8.15104084185071e-34 +"27129",3562.18901885941,-4.18455205490986,0.468226988136817,-8.93701593656776,3.99820725574815e-19,4.90340137844953e-15 +"26353",14722.856601537,-3.31812101342547,0.472570303363231,-7.02143361487332,2.19603152901715e-12,2.69321306718664e-08 +"79663",388.361044392428,0.329479792495081,0.186027152345829,1.77113818246581,0.0765377259388437,1 +"23640",2500.34160605464,0.355907529351817,0.1215194751607,2.92881061970648,0.00340261665497503,1 +"3329",9666.15246136267,0.616787970214009,0.152113898526054,4.05477721753588,5.01821062913696e-05,0.615433351557357 +"3336",1074.87609385326,0.803869346811325,0.156528735314287,5.13560238762085,2.81241711021932e-07,0.00344914834397298 +"3339",22904.530965224,-1.04399992526301,0.320068186448847,-3.26180473244211,0.00110705372874707,1 +"10808",10467.5311955691,0.964274008587226,0.2438337419087,3.95463729112718,7.6650846704092e-05,0.940045983978985 +"10553",1985.52485560379,0.256773855400813,0.181537473927826,1.41443994920243,0.157232767419091,1 +"27336",4822.9246098089,-0.0773325496908035,0.134227121539616,-0.576132072294939,0.564525914576063,1 +"93164",266.597365690167,0.148681480140066,0.235631595321644,0.630991272359344,0.528046231051526,1 +"5654",6569.86007595846,-0.654568373727971,0.260752180441397,-2.51030834188971,0.0120625782333846,1 +"27429",1150.62896743157,0.280011311669846,0.1218503848853,2.29799283714553,0.0215621968057656,1 +"94031",3720.49529139134,-1.03772509407416,0.343149174814798,-3.02412236495756,0.00249355560384616,1 +"3064",3828.89510143286,-0.286402612320867,0.132892484971654,-2.15514528441512,0.031150467008475,1 +"30811",388.25430510324,-1.79971300846099,0.388624713682343,-4.63097931011164,3.6394024319603e-06,0.0446336314255611 +"3364",744.22331886423,0.536027002603602,0.152671506426499,3.51098260015967,0.000446453619624739,1 +"10075",13967.277123554,0.0450977179613385,0.149700924185966,0.301252101191546,0.763222262949832,1 +"84329",338.332866115386,-0.712969989800016,0.211550974388033,-3.3702042349957,0.000751124905956451,1 +"3373",236.831022330444,-2.11833615842375,0.2676281361524,-7.91522217685464,2.4681194406388e-15,3.02690168199943e-11 +"8692",2910.44549740001,-0.232570898081785,0.193704436921795,-1.20064827516409,0.229887666372853,1 +"8372",262.612017310687,0.483286703590998,0.265591418975348,1.81966234246392,0.0688104413943641,1 +"219844",272.041615375043,0.764181150049645,0.217160192447671,3.51897436374665,0.000433218567959737,1 +"10525",7588.85429071752,0.775132174657327,0.142130710378273,5.45365721872746,4.93442788123707e-08,0.000605158235354914 +"285148",1598.61107651559,0.363727191020592,0.162839343030321,2.2336567088266,0.0255056695173656,1 +"55699",5898.54947713255,0.430897513461535,0.134382364191177,3.20650344303011,0.0013435869709632,1 +"200205",475.359735937171,-0.492133014079625,0.163019093229059,-3.0188673260998,0.002537216161703,1 +"25998",2655.0529884137,-0.246570198639671,0.137710945316096,-1.79049093064973,0.0733750239491678,1 +"3382",1683.83027669669,0.491968801296884,0.349911561511596,1.4059804116549,0.159729941506929,1 +"130026",343.401519529406,-0.824862710607639,0.289661523535449,-2.8476778708467,0.00440394763891697,1 +"3383",4604.94780405008,-0.216125586449001,0.360007797829252,-0.600335847590466,0.548282432694271,1 +"3384",444.851968131466,-1.20323958271132,0.284879372739948,-4.22368096060678,2.40344219940627e-05,0.294758151335185 +"3385",992.758889504463,-0.233045662105973,0.225286740276442,-1.03444020637882,0.300930416349026,1 +"22858",1462.12844342879,-0.298700243175605,0.189851254093505,-1.5733382673811,0.115640512955496,1 +"23463",5848.88277855249,0.53889602066604,0.11755727957005,4.5841144218119,4.55914541247595e-06,0.055913359338605 +"23308",608.772704121693,-0.910604423259348,0.266788960808817,-3.41320128276182,0.000642045023653071,1 +"3397",13688.2630992574,-0.541430595765049,0.387943844648091,-1.39564167142847,0.162822427118699,1 +"3398",2962.08299773674,-1.67157321097132,0.271206919778973,-6.16346077133139,7.11720165986572e-10,8.72853611565932e-06 +"84099",331.953119111645,-1.80758090899308,0.281580872018455,-6.41940234091828,1.36810387970342e-10,1.67784259806828e-06 +"3399",4640.33172489359,-0.830935686461149,0.279772409795505,-2.9700415672457,0.00297759455973197,1 +"3400",2335.01938857618,-2.06634078483238,0.329945853144604,-6.26266632884993,3.78449855926536e-10,4.64130903308304e-06 +"3416",2346.75783071666,-0.0752464187439155,0.143644400887727,-0.523838160616706,0.600391108982602,1 +"3417",14886.8423428746,0.629901267947725,0.342427349735115,1.83951798369781,0.065839035267362,1 +"3418",7477.39041515865,0.239182698357258,0.237380947490512,1.00759012416874,0.313651271970457,1 +"3419",2578.59653737364,-0.319680588952043,0.143317919188771,-2.23056956702654,0.0257096545571004,1 +"3420",3611.76239025067,-0.0484706505941403,0.0822100944499522,-0.589594877836423,0.555462286555104,1 +"3421",2396.01780481388,-0.241659935307121,0.135808829425257,-1.77941254872623,0.0751721506363539,1 +"3422",2552.63700448758,-0.171877201659545,0.224981471665735,-0.763961584867355,0.444890135498087,1 +"91734",230.955964967682,-0.473274897332746,0.151752015144127,-3.11873879818499,0.00181626896056642,1 +"3620",767.251036703109,0.958472848669245,0.486197941638248,1.97136344394973,0.0486823192697304,1 +"3423",6425.64617706961,-0.594718347014784,0.182311385089033,-3.26210207181712,0.00110589315690929,1 +"3425",655.103388047132,-0.0343420102326332,0.19902459421102,-0.172551590263369,0.863003906361978,1 +"9592",13080.5765122353,-1.08351233131302,0.237112749636845,-4.56960805765399,4.88637177031984e-06,0.0599264633912025 +"8870",15803.6583955789,-1.8289746940396,0.420816877570381,-4.34624843138262,1.38485714130377e-05,0.169838879809494 +"51124",2195.30853413346,0.472088247968011,0.129466263998313,3.64641902367836,0.00026592022386637,1 +"51278",4414.19934649914,0.0984626624092658,0.351742446402976,0.279928292465622,0.779532520363424,1 +"389792",895.101010883494,1.70737957135175,0.271285522885819,6.29366268125692,3.10061228406168e-10,3.80259090517324e-06 +"25900",531.737356223598,-1.73292195650075,0.242090028807191,-7.15817154898565,8.17602031942108e-13,1.0027071319738e-08 +"126917",3266.27856590068,-1.15435702211536,0.333813357593898,-3.45809116338508,0.000544017266187106,1 +"3428",7101.48955349896,0.117969641135634,0.288878792883484,0.408370721706856,0.683001525098541,1 +"3429",9963.4840112915,1.58391160677248,0.395264319991322,4.00722131157006,6.14372892985313e-05,0.753466915957188 +"122509",264.901048106444,0.277083855612077,0.208796838013461,1.32705005616135,0.18449212487785,1 +"83982",1194.30860986351,-0.172034824740673,0.234155811895554,-0.734702347757268,0.462520790175992,1 +"10437",5443.48044684436,0.934751565188846,0.332660554056584,2.80992607566525,0.00495528803426478,1 +"3430",1879.88560889027,0.119672556024669,0.26948680533559,0.444075753080535,0.656987816083854,1 +"10561",1550.06538228837,1.1204925728983,0.317137778224171,3.53314127119308,0.000410652971846371,1 +"10964",1316.37131934177,1.02483686921749,0.327600907525522,3.12830900548603,0.00175815235539789,1 +"2537",7035.94096021716,1.66669336621782,0.321088469765048,5.19076056339675,2.09436808339704e-07,0.00256853301747813 +"64135",858.328429148196,0.406450299222755,0.223909366568035,1.81524473697823,0.0694863074531681,1 +"3434",835.051712777132,0.126152852645265,0.352636887694602,0.357741509885712,0.720536765729707,1 +"3433",457.377993656975,0.60473760782773,0.346140164334446,1.74708881007933,0.0806219341175738,1 +"3437",1314.21257011252,1.07150498633039,0.336456113637923,3.18467979298924,0.00144914259664734,1 +"24138",896.416158394159,-0.145193744075969,0.20596395125725,-0.704947361854705,0.480842994443128,1 +"8519",5068.74190764265,-0.373579112634408,0.311127392917596,-1.20072716558697,0.229857052814815,1 +"402778",1533.87400842656,0.404804215695811,0.493851097258493,0.819688804870523,0.412393533658617,1 +"10581",3858.57824974478,-1.24938665515442,0.244235781077865,-5.11549392820582,3.12921013901929e-07,0.00383766331449326 +"10410",14284.5032685932,-0.736811732071273,0.289092160540889,-2.5487087947757,0.0108122542057969,1 +"3454",3814.51469862501,-0.0122213431877048,0.134163057051359,-0.0910932074470127,0.927418529876163,1 +"3455",1366.36405654937,0.348419979673153,0.210663582459813,1.65391652228082,0.0981444751112244,1 +"3459",4294.31835997914,-0.226480854998762,0.184002073528463,-1.23086034116744,0.218375102619198,1 +"3460",4734.70126608405,0.458538314748192,0.219918940352506,2.08503330369456,0.0370662775936911,1 +"3475",1705.56059041461,-0.280752407352521,0.179407600034895,-1.56488580917371,0.117609686662407,1 +"7866",1739.35187925249,-0.0345073469379177,0.224062584947195,-0.154007626690775,0.877603722102172,1 +"55764",1012.98320669338,-0.0089839669777281,0.153524043147459,-0.0585183062766203,0.953335781180459,1 +"9742",1544.33717151881,-0.27000862231872,0.21292413841922,-1.26809775689738,0.204763042480429,1 +"26160",1053.16854656015,-0.20834844293505,0.161638518206172,-1.28897768457206,0.197405844704788,1 +"90410",885.095060206736,0.523032739365528,0.16020845781926,3.26470116799696,0.0010957961873265,1 +"11020",1022.49115753025,0.0956269855851713,0.185771621145117,0.51475561765417,0.606723802886726,1 +"112752",938.515324689031,-0.08151175799111,0.113129030770839,-0.720520254047123,0.471204733830638,1 +"56912",982.036705071544,-0.337524349764626,0.153517100208709,-2.19861076913098,0.0279056105698701,1 +"51098",1337.56714680335,0.113001793328092,0.0940748116409706,1.20119074762919,0.229677217625095,1 +"55081",1716.98685959792,-0.27397292689912,0.147341256999237,-1.85944475077024,0.0629641236348477,1 +"80173",674.3516917576,-0.0524773567835198,0.205549147545047,-0.255303208066184,0.798488922350549,1 +"57560",1085.927224081,0.71299412595859,0.162824713610099,4.37890606499656,1.19276526827318e-05,0.146280732501023 +"28981",738.226050931759,-0.0129263567202108,0.202540292794095,-0.0638211614187403,0.949112628231148,1 +"8100",497.848931098251,-0.352615258528522,0.158449506194486,-2.22541090216911,0.0260536663286358,1 +"3476",2457.42970416999,-0.423884918816748,0.119840593025292,-3.53707294094654,0.000404587911968991,1 +"57722",383.112534015482,-1.29736526136678,0.286816890262836,-4.52332238934008,6.08764059576586e-06,0.0746588242664725 +"3479",1221.17550552182,-2.87820810370267,0.458633655761225,-6.27561468188705,3.482556725277e-10,4.27100756787971e-06 +"3480",3551.10619378482,-0.219204048190157,0.147544405130398,-1.48568187317185,0.137363287512136,1 +"3481",1134.23936877179,0.913033216109805,0.368199144810127,2.4797266071344,0.0131483152901466,1 +"10644",769.907892526223,1.60439648510517,0.447346620702302,3.58647279504734,0.000335181014476699,1 +"3482",6641.97854701241,0.10566102369852,0.127181283931093,0.830790666933096,0.406091895996294,1 +"3485",9146.07794506487,-1.59936582435072,0.422420469540583,-3.7861939457862,0.000152972297823901,1 +"3486",52939.145658035,1.56810533715153,0.434941841289654,3.60532188051144,0.000311766266108842,1 +"3487",33584.8674631578,-0.924575907858478,0.223134342945,-4.14358406534656,3.41919650312455e-05,0.419330259143195 +"3488",34723.866678193,-1.94696329338722,0.40642691230844,-4.79043890653987,1.66416888617717e-06,0.0204093672200768 +"3489",2513.1131041235,-2.46713794869198,0.326251596912785,-7.56207164053057,3.96699775102806e-14,4.86512604186081e-10 +"3490",15739.890737347,-1.10204481236674,0.25995780605306,-4.23932186957217,2.24196012118182e-05,0.274953989261739 +"374918",4210.49224887382,4.5140939207072,0.838600993156166,5.38288644724581,7.33007830550802e-08,0.000898960803387504 +"79713",501.17213211043,0.394363204104227,0.22360866721077,1.76363111959568,0.0777941048144194,1 +"3508",1066.43401703864,0.119044832335699,0.130143967818931,0.914716481530098,0.360340489658066,1 +"492311",681.576326633286,-1.32318388640066,0.190738018833122,-6.93717956438626,4.00005274820616e-12,4.90566469040003e-08 +"100423062",9525.65915754576,0.378880328322918,0.577353942421404,0.656235803524447,0.511672415520332,1 +"285313",813.890045329331,-4.5143639401764,0.530546155544811,-8.50889954247365,1.75591885188794e-17,2.15345887995537e-13 +"3321",4608.55143547885,1.61323299487441,0.361649571069456,4.46076291506118,8.16683992040467e-06,0.100158124783843 +"10261",133.381717390365,0.242827897627105,0.328164029387664,0.739958910427228,0.459324926980733,1 +"93185",2716.2637343942,0.865862928498913,0.199634337568878,4.33724447929791,1.44280113226125e-05,0.17694513086052 +"57549",1481.78949296606,2.65515003180356,0.520178657270106,5.10430405918183,3.32014078623664e-07,0.00407182066024062 +"3550",2188.85140829801,-0.269069092463188,0.105513641200056,-2.55008821042415,0.0107695666277288,1 +"121457",790.683693909271,0.302507738473789,0.144518396829369,2.09321266434304,0.0363301747288559,1 +"3551",2291.87858829243,-0.301954648356891,0.168958578571385,-1.78715192155405,0.0739129375672389,1 +"9641",871.893688872252,0.758282942594875,0.283662516103071,2.67318697236454,0.00751343607594914,1 +"8517",475.044300858904,-0.103224629836652,0.125374179305341,-0.823332446988582,0.41031896682598,1 +"10320",516.288479276927,-1.27010960017883,0.31112454258396,-4.08231889914655,4.45885552730647e-05,0.546834041868866 +"22807",1981.12943225077,1.03077019203365,0.418768727812638,2.4614306741998,0.0138384138931019,1 +"22806",133.580166325442,0.663927080299714,0.532119012108172,1.24770411353907,0.212139434322658,1 +"64375",744.462431840521,-0.406660953329942,0.292558979343333,-1.39001357689556,0.164524754612399,1 +"64376",319.371863997557,-0.276781388072474,0.139603744806247,-1.98262151532262,0.047409722260738,1 +"3587",969.982921250986,-1.22118158406401,0.2899883176724,-4.21114062064935,2.54084515071255e-05,0.311609249283387 +"3588",2134.88674763803,0.253219230376346,0.181225316938003,1.39726189836364,0.162334829038985,1 +"3590",673.261607308958,-1.6734887565629,0.272907702498399,-6.13206861236436,8.67436751016525e-10,1.06382443144667e-05 +"3597",4136.0715640263,0.272902947640863,0.171227768424397,1.59380076112689,0.110980667031321,1 +"3600",192.621487376006,-0.740944643497434,0.23989376952418,-3.08863646174334,0.00201077324173392,1 +"3601",662.250930758802,-0.508304836171701,0.233996133110524,-2.17227878689607,0.0298346410839062,1 +"3603",1079.63548706477,-1.38814081289261,0.282332487197826,-4.91668821632972,8.80205688962522e-07,0.0107948425694364 +"53342",164.596596594535,-0.875475210375647,0.316330653330156,-2.76759523985147,0.00564715426201194,1 +"23765",1246.34146816462,0.388224631545063,0.155730139407121,2.49293189502733,0.0126693144502329,1 +"55540",176.339347403048,0.381175352264851,0.21959509030755,1.73580999343384,0.0825974365162382,1 +"84818",1544.30556213019,-0.623917079378337,0.145522006488539,-4.28744142850637,1.80742893810834e-05,0.221663084969607 +"54756",825.925355204489,-1.11829583789809,0.385707456130198,-2.89933684227407,0.00373952913238565,1 +"132014",648.841575673897,0.855038458270188,0.33954083470315,2.51821981593973,0.011794968421843,1 +"3606",857.422327033124,-0.685647603244512,0.388167328576911,-1.76637123417423,0.0773335878254832,1 +"10068",477.678162647988,0.0875936730913133,0.228699696260556,0.383007387082484,0.701714286868466,1 +"8809",190.128525954215,-0.254990030728703,0.288096487051287,-0.885085525820069,0.376110505368784,1 +"3552",1205.77783272,1.76221311836716,0.753299407388884,2.33932630383371,0.0193185523767735,1 +"3553",1241.03966815365,0.104922823473051,0.53723272874304,0.195302366850467,0.845156244271555,1 +"3554",4486.6958602346,-0.483233519465605,0.277093843349484,-1.74393452277512,0.0811705079411771,1 +"7850",277.316200039732,0.40963508413359,0.449614434628037,0.911080811879357,0.362252795771665,1 +"3556",779.323312636088,0.604444891028172,0.343541722844176,1.75945118404828,0.0785009047644027,1 +"8808",129.147553152957,1.0719631850183,0.490677139637607,2.18466094795042,0.0289137155447372,1 +"3557",9224.77282041453,0.808852027484197,0.547471284530153,1.47743279024829,0.139559661921932,1 +"53832",1205.48358491497,1.38144080310909,0.368365536286983,3.75019014274139,0.000176700531176151,1 +"53833",694.975159714807,1.0125804347284,0.504959810000724,2.0052693594109,0.0449342586313048,1 +"58985",246.141641205803,3.06105761402772,0.512216021128274,5.97610673575777,2.285332981491e-09,2.80273236850056e-05 +"51561",115.136539356039,0.384960046797466,0.433302921800743,0.888431689307862,0.374308585670451,1 +"9466",473.377439133466,0.194343104405215,0.281799385871066,0.689650560466922,0.490413963541394,1 +"3559",259.539038677009,0.0181486802027735,0.366215668650024,0.0495573558326294,0.960475129964394,1 +"3560",623.83155953013,-0.069915778390166,0.421880923652678,-0.16572396254571,0.868374187429188,1 +"3561",1091.44261722683,-0.713366548310973,0.389020874489699,-1.83374876540169,0.066691296197005,1 +"9235",2436.55319636446,0.136691088621148,0.346901778108237,0.394033980934219,0.693555951387539,1 +"90865",1553.34179466542,-3.35718211078487,0.359837192748785,-9.32972516025778,1.06145790845281e-20,1.30177197892653e-16 +"146433",320.329769886899,-2.19842459934451,0.253458289641689,-8.6737135425809,4.18251690072971e-18,5.12943872705492e-14 +"3563",183.884779345088,-1.30773884061095,0.228935408176222,-5.71226116147278,1.11484821071577e-08,0.000136724984562182 +"259307",307.382501639386,0.84778719316648,0.375011663693486,2.2606955336179,0.0237781172462617,1 +"3566",5409.80679433313,-0.875950108990526,0.237579369848457,-3.68697883805846,0.000226932220367624,1 +"3569",2965.87299372748,-3.8642848716209,0.341884248120282,-11.3029041053139,1.26949117124202e-29,1.55690397241122e-25 +"3570",906.521336167066,-1.82501381349758,0.34156508858748,-5.34309235479775,9.13741781274099e-08,0.00112061292055455 +"3572",7784.58600019891,-1.83015273822609,0.240853835370971,-7.59860325830903,2.99343955195985e-14,3.67115426652356e-10 +"3574",116.040030829006,-1.03695653390908,0.255964209241111,-4.05117784624449,5.09604539487058e-05,0.624979007226928 +"3575",240.489513372272,-0.634548926394051,0.458292565959898,-1.38459354029665,0.166176787801672,1 +"286676",533.025026068869,1.48853827120523,0.594240798319002,2.50494122149813,0.0122471744404967,1 +"387597",106.291233008267,-0.43041697584241,0.366923396274332,-1.17304314800522,0.240778503123886,1 +"3608",8232.98367974765,0.816849834796841,0.156695024472374,5.21299152635734,1.85819387471582e-07,0.00227888896795148 +"3609",13804.4639079463,0.572075286190075,0.0961481373008763,5.94993623641278,2.68246970461017e-09,3.28978084573391e-05 +"3611",9710.97164837244,-1.47901353747657,0.280036707958041,-5.28149880157205,1.28131321099303e-07,0.00157140252196185 +"80895",1237.4831113108,-0.143677554126192,0.134351344017579,-1.06941657470425,0.284882002002179,1 +"10994",4097.76970707023,0.181249189377862,0.16369084288938,1.10726529461607,0.268179244588891,1 +"196294",105.916061530113,0.465215406383098,0.137800553679915,3.37600534946838,0.000735464892372471,1 +"83943",417.866371526676,-0.694664771530766,0.21398136458375,-3.2463797624717,0.00116882809129071,1 +"10989",4709.61949460972,0.108843173125332,0.102854701868772,1.05822263005731,0.289953956457025,1 +"55272",2357.37312434785,0.236385247842662,0.199223977183297,1.1865301114091,0.235413017351013,1 +"92856",2019.83620536783,0.424547495462301,0.120229251712902,3.53114977772702,0.000413757384892687,1 +"3612",1060.65837437292,-0.122841239754509,0.173581129619401,-0.707687753984865,0.47913918385062,1 +"3613",2724.11543982065,-1.32333910147347,0.311275512178,-4.25134342311109,2.12492042724662e-05,0.260600241197526 +"55364",1396.27660035892,0.125401094204628,0.151623664460498,0.827054897075769,0.40820594674519,1 +"54928",4831.25993165858,-0.170921555509447,0.156899370962292,-1.08937055936652,0.275990508747699,1 +"3614",2181.83644196085,0.326964647034053,0.14765257306205,2.21441889059833,0.0267999765914905,1 +"3615",9083.19878473838,-0.0738335203686763,0.175622127791613,-0.420411261935537,0.674185042383296,1 +"9118",1626.81076475572,2.03096147455299,0.633056772453152,3.20818220881333,0.0013357684149382,1 +"388324",132.974627672663,-0.0603287645907607,0.182292470314033,-0.330944906757987,0.74068610070372,1 +"3619",1279.00137016104,1.45554282868964,0.229693357208946,6.3368956176019,2.34440702446613e-10,2.87518077480526e-06 +"64423",5688.24506335722,0.047014344992512,0.178829211035671,0.262900813129092,0.792627029566917,1 +"3621",834.742400295352,0.0825837519650314,0.151232139014017,0.546072762730528,0.585015921623607,1 +"3622",414.356474189568,-0.199386703529951,0.146288313933709,-1.36297082226475,0.172891706440378,1 +"54556",484.935646012472,-0.356548573139934,0.156485947364624,-2.27847023419393,0.0226985759910707,1 +"51147",1390.68931377562,0.10223140382802,0.20181624911411,0.506556851971896,0.612465789774975,1 +"84289",798.391766280273,-0.39421628863521,0.162297049899502,-2.42898000228172,0.0151413674649055,1 +"3624",510.677993713757,2.93929159240066,0.347756058249732,8.45216502393723,2.85950034797013e-17,3.50689122675057e-13 +"3625",710.180549261117,-1.70837437065814,0.29057998350108,-5.87918806407322,4.12283748847426e-09,5.05624789586484e-05 +"11185",516.224143530289,-2.35211390451056,0.282958208709664,-8.31258409231733,9.36402499839658e-17,1.14840402580336e-12 +"54617",1915.89889123441,-0.184697740147745,0.124801561070789,-1.47993132908796,0.138891573845996,1 +"125476",1062.48903555814,0.467873678401963,0.277655005560195,1.68509001830521,0.0919712051697156,1 +"54891",1149.26291439276,-0.192454926618008,0.127015676913432,-1.51520608553836,0.129720222442798,1 +"283899",1410.76999939355,0.159872775753888,0.1217661778185,1.31294895362642,0.189200149597214,1 +"3628",1826.03625669104,-1.04910062044076,0.273322178703006,-3.83832964239875,0.000123874111633036,1 +"3631",2354.17572281886,-0.106131586593901,0.224724852906617,-0.472273472298157,0.636731602691585,1 +"8821",1068.84934574577,0.948334012782813,0.291831812174443,3.24959093978399,0.00115571119434129,1 +"3632",2583.86729585021,-1.4557290730543,0.201628426511092,-7.21986030563115,5.20410060513054e-13,6.38230898213209e-09 +"3633",1109.77670127928,-0.499485692374584,0.153949545179596,-3.24447657050166,0.00117666697024763,1 +"3635",1631.70084387351,-0.872948617499399,0.35219955061505,-2.47856255345857,0.0131912978201171,1 +"56623",820.569232536304,0.353504909087592,0.15224491292565,2.32194890649797,0.0202356869565924,1 +"22876",988.37054389768,-0.479525422691254,0.135703644356962,-3.53362229115885,0.000409906409292698,1 +"27124",183.034074639804,-0.604490489113516,0.301305647710145,-2.00623683527842,0.0448309855759872,1 +"51763",1983.87197334096,-0.187148589552529,0.177231839805291,-1.05595354513124,0.29098943915622,1 +"3636",4727.57673443834,0.0968253520709326,0.155206060997944,0.623850328062994,0.532725883999573,1 +"3638",3410.2054867228,-0.03326202011652,0.248299452776354,-0.133959296907833,0.8934347606238,1 +"51141",1050.42433952634,0.414618172392817,0.137897133171054,3.00672075523503,0.00264082229284214,1 +"3643",3523.51950392127,-0.280349902827571,0.152855286126919,-1.83408706320297,0.0666410714548513,1 +"26173",6706.37478251227,0.327162639773789,0.173936670826219,1.88092964076942,0.059981490518384,1 +"55174",2242.36763327495,-0.285615417374284,0.160343672624296,-1.78127027215794,0.0748683085097641,1 +"57117",675.559609283066,-0.157826989033366,0.113230578245871,-1.39385483566689,0.163361445154163,1 +"57508",937.790160855364,0.600985651866697,0.146407354527957,4.10488703797962,4.04512495215328e-05,0.496094124132078 +"65123",4436.13059161344,0.0255315740063947,0.122803224975214,0.207906380402859,0.835302067188901,1 +"92105",1279.69037373913,0.609988713041243,0.161512382943117,3.77673031581781,0.000158900622513062,1 +"80789",1421.65417398001,0.0342762711412604,0.113868513852485,0.301016233387088,0.763402115841705,1 +"26512",1729.80253622625,-0.24972565679589,0.221711480693358,-1.12635419697223,0.260015625921125,1 +"25896",1074.71248010122,0.674004577217247,0.144110822515115,4.6769879281381,2.91119388291747e-06,0.0357028817800998 +"55656",1859.59193023415,0.680480374302445,0.116686764495472,5.83168431522372,5.48706558765165e-09,6.72933723669599e-05 +"55756",950.134297118681,-0.0145754371396872,0.128437051593473,-0.113483118452619,0.909647546140959,1 +"27152",234.370256018458,-0.0286770722948134,0.213212342480389,-0.13450005736629,0.893007165729986,1 +"27130",537.344857067945,0.101492993438088,0.169086442999446,0.600243234393548,0.548344143961505,1 +"9807",2281.20787814776,-0.213011116668218,0.158793665093345,-1.3414333408263,0.179779798719036,1 +"51447",3341.77482192313,0.488120380980347,0.158181432664695,3.08582602115535,0.00202987555858486,1 +"26034",214.357158575939,-0.8260333983735,0.299681953966249,-2.75636683304104,0.0058447406732219,1 +"253430",634.177124427963,0.152375150862449,0.214048129431429,0.711873312171426,0.476543229652243,1 +"51194",1154.28684937066,-0.315998751812886,0.142547923147182,-2.21678958792416,0.0266374733561485,1 +"9670",2161.32642953679,0.226244968795449,0.190193799107484,1.18954965859634,0.234223442111727,1 +"79711",2338.5003826034,0.492715984431005,0.181168774206979,2.71965180858427,0.00653506898986529,1 +"3843",8163.39879624785,-0.0932946818667931,0.17140891650649,-0.544281381437124,0.586247857145951,1 +"10527",6792.0457145114,-0.409689679376555,0.17678747333877,-2.31741351148497,0.0204812170226508,1 +"10526",3215.15314619526,-0.18430371625904,0.135777391028169,-1.35739621201591,0.174655351197284,1 +"55705",3880.18158533327,0.556384014040063,0.153759116268669,3.6185432613171,0.000296265979871199,1 +"3652",480.330582899227,-0.00883186610581944,0.133837526978016,-0.0659894597968038,0.947386217027717,1 +"64768",737.302921830562,0.0859900641993849,0.288971420212606,0.297572902317188,0.766029158937562,1 +"3653",468.993944850222,-2.50407786479445,0.34734387609768,-7.20921840605662,5.62739405543138e-13,6.90143606958105e-09 +"79781",291.246201488217,0.299175954010819,0.398635338099065,0.750500333054945,0.452953423274972,1 +"9657",875.94723933451,0.483957872869973,0.175697348209421,2.75449730916328,0.00587823733296793,1 +"55721",201.677362159564,0.942870492251696,0.216552481434361,4.3540045628038,1.33672922208797e-05,0.163936471796868 +"23288",1028.30927359563,-0.170978378920033,0.198339679052349,-0.862048278675017,0.388660951205792,1 +"84223",344.361283212676,0.199659365760014,0.209177993878326,0.954495078847302,0.33983309914549,1 +"64799",96.741934676397,0.619249315106714,0.27664834279483,2.23839878761163,0.0251950610317389,1 +"124152",502.752215842088,-0.168748365368112,0.205987930420077,-0.819214820130377,0.4126638608743,1 +"8826",16199.6830483802,-0.336587513183711,0.1380806677591,-2.43761504522075,0.0147845089168014,1 +"10788",473.257767311301,-0.89562322244781,0.245886553626234,-3.64242456221996,0.000270082140740927,1 +"128239",1240.61493787911,3.67042589453331,0.410024185561862,8.95173022416635,3.4995335090503e-19,4.29182789549929e-15 +"9922",3063.01908567424,-0.545965712665026,0.194192927242543,-2.81146033698295,0.00493171707317675,1 +"23096",1111.43932809124,-0.263468457220178,0.194849484668057,-1.35216399298679,0.176322859559935,1 +"3654",5853.80565062394,0.409039232708097,0.192385144148429,2.12614770500427,0.0334909628373772,1 +"134728",85.6948145996531,-0.0516120420876621,0.267779717372114,-0.192740669809359,0.84716207069074,1 +"3656",1318.81318183266,-0.0270650743798743,0.459289972698871,-0.0589280759186511,0.953009395553557,1 +"11213",567.294861772687,-1.62897439012103,0.26682210856928,-6.10509525936855,1.02739387288776e-09,1.25999584570954e-05 +"51135",983.320334919658,-0.0104612276069404,0.147963597333352,-0.0707013603039937,0.943635438182747,1 +"3658",2363.22536459044,0.343882520917487,0.116959507887741,2.94018440337103,0.00328016967039776,1 +"3659",4434.9408582943,0.0183638959143519,0.345062331926657,0.0532190686007857,0.957557362597714,1 +"3660",2036.73514339101,-0.24146017435828,0.151167501626591,-1.5973021433848,0.110198373273872,1 +"26145",1405.41902126395,-0.0186093367881039,0.151448862979723,-0.122875381313331,0.902205780738646,1 +"359948",9697.89827469964,-0.499547876201992,0.190018971200868,-2.62893685322568,0.00856522640893415,1 +"64207",3977.27309746079,-0.145217154452758,0.154694078813662,-0.938737639904625,0.347865463091074,1 +"3661",3442.13533868475,0.519944225970978,0.153592364490198,3.38522183506174,0.000711207522134365,1 +"3662",286.846709803875,-1.84932328347324,0.430127391685413,-4.29947805980652,1.71200822506505e-05,0.209960688721977 +"3663",1325.68955731944,1.61071227823717,0.309939861072597,5.19685423056926,2.02689175051764e-07,0.00248578004283484 +"3664",10789.7290026565,1.07465870323289,0.555850343477171,1.93335978981369,0.0531918910785305,1 +"3665",1215.68816944125,0.6003545305916,0.287943624811338,2.08497246981924,0.0370717995760712,1 +"3394",623.901029558229,-1.38912515675726,0.311067899048905,-4.46566540939946,7.9820273926255e-06,0.0978915839431591 +"10379",3491.02138826769,0.596245551924264,0.16556305071304,3.60132015782737,0.000316605399621136,1 +"126298",1482.2942728195,-0.23893738750459,0.113162994406502,-2.11144454737812,0.034734119499473,1 +"3667",3856.91646741345,-0.373483634736282,0.292886774414887,-1.27518094827739,0.202245203007375,1 +"8660",896.031769254389,-0.900847279674816,0.238157685644514,-3.7825664842052,0.000155219615899753,1 +"79191",790.42672594947,1.37794495640419,0.541320385264478,2.54552570698211,0.0109113329399171,1 +"10265",168.06351004085,0.55724754102971,0.480793381441723,1.15901666399552,0.246449392614352,1 +"81689",1310.73962159782,-0.266706944699108,0.135748283733795,-1.96471688159332,0.0494470149537103,1 +"122961",546.596725101408,0.624082784857255,0.137140817107651,4.55067133198842,5.34750228996376e-06,0.0655817680841156 +"23479",3715.14601672435,-0.851553002356279,0.112355624638826,-7.57908653966944,3.4799634046332e-14,4.26782711944215e-10 +"9636",4583.98425129275,1.78050406182064,0.304264160768871,5.85183630343227,4.86175020547041e-09,5.96245045198891e-05 +"3669",881.398133406702,-0.365128993574445,0.37958683466209,-0.961911637160665,0.33609399244587,1 +"81875",1812.35780451615,0.265872242652859,0.142472578712346,1.86612922329186,0.0620232882875594,1 +"3671",4499.63185291553,-1.06182874228311,0.347801690716849,-3.0529717670279,0.00226587255389962,1 +"140862",164.065042666928,0.491555697606982,0.357145023911213,1.37634760306554,0.168714041654607,1 +"51015",1416.08731943942,-0.213769555341975,0.139588716647151,-1.53142431907542,0.125664557509999,1 +"79763",2539.14990105803,0.120812833641664,0.192061084488346,0.629033382600705,0.529327201590409,1 +"9798",5905.6636490378,0.0703381687242692,0.11397609481461,0.617130889057739,0.537148396008281,1 +"57461",1028.14536209994,0.267546715665,0.101868774868036,2.62638591670107,0.00862969150342143,1 +"51477",3593.19399728289,1.02070540837615,0.319847117284617,3.19122903792774,0.00141668925580792,1 +"83737",3450.52067456687,0.270277666029598,0.141697178953166,1.90743152422908,0.0564647304090467,1 +"81533",2420.85770599806,-0.119563373578996,0.118307549582456,-1.01061491004566,0.312200776772736,1 +"55846",962.873589156222,0.205476840842463,0.157240269376843,1.30676983483167,0.191290892881441,1 +"3672",3179.97647004127,-1.14715777706054,0.334862350247815,-3.42575919989688,0.000613083651715914,1 +"22801",1141.73484071077,0.425297146501793,0.388494493491385,1.09473146628068,0.273634298898772,1 +"3673",3505.33924061111,0.801457341669123,0.457222631744528,1.75288204481736,0.079622256220083,1 +"3675",12579.2210204983,0.240948854723785,0.376101880824604,0.640647832431745,0.52175151496068,1 +"3676",365.407870852755,-0.466641974311745,0.263590028663942,-1.77033242371501,0.0766717797545928,1 +"3678",24770.2528812951,-1.96783465016809,0.346799906335622,-5.67426522965576,1.39285189167429e-08,0.000170819355994935 +"3655",11137.0083659039,0.0837496067344971,0.396405934494587,0.211272333350097,0.83267477044488,1 +"3679",4057.86923584899,-2.76337347997969,0.411157850588016,-6.72095516606983,1.80537142989417e-11,2.21410752162221e-07 +"8516",773.605948475743,-3.79482007252438,0.359195945915506,-10.5647630928915,4.34063276608738e-26,5.32335202432956e-22 +"3680",603.886601623523,-2.06175173102955,0.353078780019624,-5.83935327666804,5.24038437314392e-09,6.4268073952237e-05 +"3682",735.118006932003,0.035532291919612,0.164298403638866,0.21626681168317,0.828779777339342,1 +"3683",797.204876520179,-1.17170506631939,0.421691272851413,-2.77858504966558,0.00545962187152505,1 +"3684",440.470099419001,-0.728326377007398,0.27308425618378,-2.66703905668311,0.00765227784535038,1 +"3685",6388.41374076475,0.203128988771881,0.216482369583339,0.938316543572766,0.348081760362862,1 +"3687",607.393562017543,0.340419087768998,0.328907121590739,1.03500065952535,0.300668603192103,1 +"3688",19443.8404451793,-0.609110486150129,0.193639024177037,-3.14559778814648,0.00165747774801778,1 +"9270",2092.86597355192,-0.169489565206321,0.111524246660457,-1.5197553023814,0.128572486750511,1 +"3689",2365.05007161752,-0.284290053301355,0.327413519680068,-0.868290514023821,0.385235313848659,1 +"3690",809.790707079044,-1.79030561828825,0.332137973745239,-5.39024670410458,7.03610242613453e-08,0.000862907601541138 +"23421",602.655167145083,0.390036796657171,0.171278018808162,2.27721455077098,0.0227734166423386,1 +"3691",18964.151168631,0.919451647172376,0.391217097066038,2.3502338064156,0.0187616219456068,1 +"3693",6691.77007801562,0.21847958784815,0.206297066113572,1.05905329612332,0.289575508202899,1 +"3694",2761.14067909093,1.67626857468216,0.759416589717481,2.20731097710911,0.0272923409321431,1 +"3695",583.778623601987,-0.197181147315338,0.39280664834961,-0.501980167962537,0.61568147140873,1 +"3696",1729.03658734244,-0.690446155493699,0.347015938380431,-1.98966698393193,0.0466276319768198,1 +"9358",780.186089990892,-0.30274201171262,0.438142958102074,-0.69096628421012,0.489586729282086,1 +"3700",255.948397121691,-0.360869644417244,0.244417899133077,-1.47644524274698,0.139824404741971,1 +"80760",6245.38941148114,-4.10706469087915,0.315463166419766,-13.0191576325401,9.52154794764985e-39,1.16772264029978e-34 +"3702",254.765856461852,-1.6582505776469,0.438937403971645,-3.77787484648726,0.000158172326780313,1 +"9452",1396.18415207554,-3.33408958221819,0.286820134294407,-11.6243219480398,3.10045271780305e-31,3.80239521311367e-27 +"9445",29036.2000414583,-0.940827397757515,0.187260546504533,-5.02416240537214,5.05634370600446e-07,0.00620109992104387 +"81618",10360.6627501578,-0.992864299546647,0.259943499374525,-3.819538868776,0.000133701390848956,1 +"3704",2437.53457096008,0.690727085302305,0.117141643660308,5.89651181014072,3.71266197121152e-09,4.5532086414938e-05 +"3705",4174.02894603183,-0.93444478780928,0.214300765858918,-4.36043606313782,1.29803506818885e-05,0.15919102076268 +"3707",4565.72771304553,-1.70256033571579,0.277275236629164,-6.14032596784992,8.23523136477862e-10,1.00996877457645e-05 +"80271",5826.1454170498,-0.912699861743341,0.22657117296074,-4.0283141487796,5.61782447807541e-05,0.688969993991168 +"3708",3994.95813430668,-2.55536997845401,0.271820223249433,-9.40095607275368,5.40694992526646e-21,6.63108338834679e-17 +"3709",1572.80873114937,0.214051322313777,0.219767719280539,0.973988914361597,0.330062043506769,1 +"3710",4002.45830804214,1.10137148946322,0.266171418740705,4.13782777532602,3.50609379056764e-05,0.429987342475215 +"85450",3264.88803939971,-1.32373269740559,0.220883476056334,-5.99290051496651,2.061309635529e-09,2.52799013701276e-05 +"162073",5157.00047188499,0.035394951317605,0.236558403090424,0.149624578350216,0.881060815754915,1 +"6453",1879.47529342458,-0.436484787218144,0.209788091113687,-2.08059849775556,0.037470671525572,1 +"50618",2451.56621004349,0.368855333438524,0.208991908408252,1.76492638517846,0.0775761385995062,1 +"3712",2673.64963207815,-0.230414256656616,0.156278085721345,-1.47438622371829,0.140377631523706,1 +"3713",10658.5478951814,0.0597393024152015,0.827560166893118,0.0721872617908602,0.94245288234427,1 +"10625",6395.90683155128,0.363117215865184,0.175971883327985,2.06349565054316,0.0390655606190982,1 +"55677",2905.28033986967,0.148530289633077,0.0923305427905517,1.60867991396966,0.107686350040542,1 +"182",6797.28576641033,0.206310672579851,0.273771809276979,0.753586255373442,0.45109770005108,1 +"3714",1594.85979462583,0.0659007568814866,0.250629510055865,0.262940931683573,0.792596107072699,1 +"84522",1637.27267619892,0.283512211496594,0.153545317627442,1.84643996884685,0.0648283482870869,1 +"3716",8638.16245670947,-0.413228211071037,0.124902567031365,-3.30840446991989,0.000938291898215772,1 +"3717",1014.77941392115,-0.944617541864065,0.200578079787745,-4.70947544648784,2.48355128939646e-06,0.0304582730131581 +"3718",875.265050582713,-0.0101488852209257,0.32831986034682,-0.0309115787579981,0.975340055823221,1 +"58494",546.1273988312,-2.84575299988347,0.303773755893003,-9.36800149676465,7.39188452386476e-21,9.06540718006774e-17 +"83700",3605.57592516857,-2.46083065465828,0.324023697547585,-7.59460086803339,3.08742576466789e-14,3.7864189577887e-10 +"3720",1863.89796423742,0.531993378980179,0.23817264225658,2.23364603902354,0.0255063721135463,1 +"221895",1212.28525237973,-1.72068053776833,0.266516612387511,-6.45618493479304,1.0737538341686e-10,1.31685170222437e-06 +"122953",1726.73674145696,-1.65501287832007,0.238998923550805,-6.92477126562561,4.36680512865312e-12,5.35544980978019e-08 +"51528",1409.50749556047,0.329659338785947,0.156183552622321,2.11071737869301,0.0347966113268935,1 +"221037",2753.79586674048,-0.720635869587304,0.191193405714734,-3.76914604817758,0.000163807022332589,1 +"65094",571.36747353465,0.18019916810033,0.129458099269244,1.39194974372021,0.163937616993038,1 +"23210",1826.1865083807,-0.5427214080378,0.144055782868956,-3.76743923242221,0.000164930670091237,1 +"100137047",526.553206510008,0.033136275551666,0.302511063087995,0.109537400759546,0.912776258710222,1 +"339123",1969.92798248158,-0.533414739133267,0.149439669224058,-3.56943201161338,0.000357756046361747,1 +"133746",1676.87236866427,-0.758074195100146,0.175330157687741,-4.32369539329485,1.53437116438424e-05,0.188175279600083 +"9929",4215.53057317754,-0.458310351346643,0.152182996392909,-3.01157397481758,0.00259897068499644,1 +"126119",1210.85024153324,0.443662069041477,0.203243122639178,2.18291307120448,0.0290422122569064,1 +"56704",485.553743495106,-0.87290630693857,0.324402230716093,-2.69081474875095,0.00712777626480448,1 +"57158",3338.91188980721,-3.50918055676032,0.444882551246855,-7.88788085063187,3.07360999751015e-15,3.76947530094644e-11 +"554203",243.280315890609,0.00981326783220847,0.129122157276196,0.0759998751509211,0.939419197527366,1 +"8629",628.606386137758,0.295907613326463,0.24312088135508,1.21712134176697,0.22355805180717,1 +"8690",660.897878900276,0.191328658445576,0.158064612997247,1.21044587284637,0.226107848570927,1 +"10899",5786.54912085826,0.549448940118564,0.125007682827529,4.39532137298016,1.1060898870486e-05,0.13565086374764 +"3725",33203.2448341998,-1.28371321551247,0.286541498500759,-4.48002548401928,7.46341277021012e-06,0.0915312942138569 +"3726",36819.7610977708,-1.60842485981128,0.2837656032968,-5.66814596668706,1.4435096909363e-08,0.000177032028496427 +"3727",14302.8106273346,-1.61506579899135,0.170921744400923,-9.44915349800646,3.41581853378982e-21,4.18915984983984e-17 +"3728",36812.3807099396,1.05339088459154,0.446618961565405,2.35858970451991,0.0183445255182647,1 +"8997",685.71852493735,-0.584788513740132,0.333047964811526,-1.75586875022962,0.079110821940228,1 +"23189",6019.59386267897,-1.39192421180953,0.31412360241877,-4.43113539094685,9.3738207259986e-06,0.114960537383647 +"25959",13261.7204633477,-2.33080863711846,0.321829719949367,-7.24236604837231,4.40923850210902e-13,5.40749009898651e-09 +"256949",424.185591134973,-1.44105922367421,0.171559115094602,-8.39978233088679,4.47307009990125e-17,5.48577317051889e-13 +"284058",2666.89141781807,0.128583422272415,0.131482321259259,0.977952176695091,0.328097977395102,1 +"151050",802.136927784779,-0.568305636511188,0.185839921865061,-3.05803850328691,0.00222790948173709,1 +"54934",1158.89134524327,0.228441851886432,0.114887505222088,1.98839596564338,0.0467679146389962,1 +"55683",2935.59325247484,-0.233788059562638,0.138016754049527,-1.6939107224529,0.0902822491293128,1 +"2648",3306.73707647879,0.916116407084781,0.133187028975991,6.87842062495385,6.05197551727232e-12,7.42214277438278e-08 +"8850",1496.46578440826,-1.12137510938537,0.209090812255467,-5.36310083302596,8.18053093358202e-08,0.0010032603136945 +"10524",1582.69022284311,-0.402574473590051,0.104984441417674,-3.83461080664736,0.000125763268427213,1 +"7994",2955.25880090711,-0.165477798426869,0.177821515842674,-0.930583667801333,0.352068966032673,1 +"23522",1818.8917790363,-0.796067331038481,0.201857631934201,-3.94370687603217,8.0231716715783e-05,0.983961773802363 +"11143",1723.75521372169,-0.202793878736551,0.138172196418119,-1.46768947728733,0.142188590352419,1 +"84148",1295.93440611618,-0.0426062615364109,0.120486407658971,-0.353618821942182,0.723624566777799,1 +"11104",864.994904741462,-0.1193968069366,0.11350229509214,-1.05193297492068,0.292830301745515,1 +"84056",907.745880410903,-1.21225240857008,0.326408160393117,-3.71391575232087,0.000204076757289026,1 +"83473",111.508425317524,-0.0376046464840922,0.236667252690903,-0.158892479024994,0.873753586286179,1 +"10300",1130.05451008258,0.629934479774859,0.177634950175795,3.54623050898176,0.000390784215240436,1 +"81621",133.348729960615,-1.09936252623393,0.329044588831274,-3.34107462498847,0.000834547887896132,1 +"23254",1068.08700892055,0.0532548364874496,0.251363432478966,0.211863897474053,0.832213216846688,1 +"9920",353.462890416402,-1.72919399376366,0.356772531531788,-4.84676885392336,1.25488490935287e-06,0.0153899085283036 +"25948",2415.33371174491,0.0100134554257903,0.116805061699589,0.0857279237739195,0.931682703875772,1 +"143879",196.281511815095,-0.744966286517796,0.180528654583929,-4.12658194475966,3.6819484331867e-05,0.451554155846017 +"55709",392.999349446555,-0.125524815692526,0.153469621225715,-0.817913113292376,0.413406801979124,1 +"89890",559.761932838117,0.275229635997392,0.114771708377613,2.39806168164591,0.0164820894975288,1 +"84078",266.502292819862,-0.0189992085649992,0.18582455762501,-0.102242721886842,0.918564018250087,1 +"84541",208.747721702367,-1.48823874533009,0.315157718354598,-4.72220307057689,2.33303559540398e-06,0.0286123485420344 +"56888",3286.70822300448,0.129081342166022,0.117793015625407,1.09583188341585,0.273152352797604,1 +"7881",202.845931699677,-1.30815135164296,0.258152745568623,-5.06735401462242,4.03383650550278e-07,0.00494709709034861 +"8514",901.712112799746,-0.604359572944985,0.19166929501649,-3.15313714120455,0.00161525902854319,1 +"3749",373.306349657223,-0.461482934018013,0.277166922196937,-1.66500003088432,0.09591274966182,1 +"3750",260.210585775408,-0.261112935979263,0.324747537997484,-0.804049008621848,0.421368671744311,1 +"3751",121.741790882679,0.994632267745769,0.471247053104836,2.11063870042811,0.0348033785761828,1 +"3752",179.753495970951,-3.32927731317602,0.495911045668547,-6.71345666174417,1.90067087303028e-11,2.33098275868434e-07 +"10008",404.626807925461,0.216205462745676,0.316975436609755,0.682089013136554,0.495182667427777,1 +"23704",1998.24569424958,-2.01674808983693,0.376165901652919,-5.3613261621404,8.26131996654144e-08,0.00101316828069664 +"3755",1315.66358188758,2.40585069723989,0.385017348987237,6.24868126999556,4.13932632556882e-10,5.07646980567761e-06 +"3757",1118.67344269653,-3.85616986734846,0.511647502584688,-7.53677062404929,4.81752615481005e-14,5.90821407625904e-10 +"3770",100.218881499619,0.498429854439169,0.198447830963802,2.51164173485013,0.0120171018434182,1 +"3772",2102.56188355204,1.00788758670238,0.544408108460004,1.85134565602529,0.0641198417992934,1 +"3759",348.615067750754,0.658687074322415,0.361937043338658,1.819894057393,0.0687751400810994,1 +"3764",685.250889253235,-1.31903734432923,0.360754918410341,-3.65632532507537,0.000255856612991771,1 +"3775",1088.69070689953,0.600210362163785,0.299540009906245,2.00377359389034,0.0450943186980894,1 +"3777",493.444711733588,-3.44987755144704,0.437073483112456,-7.8931293815402,2.94701815504312e-15,3.61422306534489e-11 +"8645",566.426457779668,0.151785603448992,0.334448872559957,0.453837988112163,0.649945439371531,1 +"9424",1518.91594270486,-0.803346346848196,0.244706912561473,-3.28289192339995,0.00102748049376857,1 +"3778",3880.33142494525,-3.60842752942719,0.460225940971334,-7.84055657925625,4.48553764870513e-15,5.50106337237197e-11 +"3779",2886.35673026839,-3.94763704266669,0.407802379653601,-9.68026975717975,3.65749653056641e-22,4.48555374508664e-18 +"27094",197.719454131432,0.490073849686484,0.167768034684721,2.92113959973042,0.00348753518648003,1 +"27345",397.4247786643,-0.453185740253061,0.299478174720915,-1.51325131013432,0.130215835334387,1 +"3782",380.16686009299,-2.13255524083992,0.256493163595993,-8.31427711733846,9.23132166847938e-17,1.13212928942231e-12 +"3783",2847.94838543698,0.830358723276305,0.551476245776363,1.5057017045355,0.132143766212364,1 +"3784",1351.61039193349,-1.15390936001669,0.392848822158345,-2.9372860370995,0.00331098559150344,1 +"10984",339.467988200078,0.579019560409353,0.325187400730234,1.78057193823967,0.0749824074628397,1 +"3790",769.098948476527,0.960953778493003,0.331455851346964,2.89919087138724,0.00374127063862702,1 +"375616",203.033222473337,1.16133551657863,0.309446213221353,3.75294790163713,0.000174767186761022,1 +"284252",1340.2703769946,-0.000835902098389253,0.282718723266005,-0.00295665631456169,0.9976409330121,1 +"83892",4764.23523430703,-0.82308394253053,0.190556621100601,-4.31936679909956,1.56477519625578e-05,0.191904030068809 +"147040",3063.8883724462,-0.535468757675219,0.334127346677162,-1.60258884224941,0.109025458756528,1 +"115207",4993.00647711842,-1.50898387900887,0.228232325493295,-6.61161330125954,3.80153990142158e-11,4.66220853510343e-07 +"253980",697.858450603766,0.307589823396409,0.176468743813557,1.74302721688428,0.0813288607632318,1 +"79047",1884.10899603509,-0.715562402644048,0.306062453063961,-2.33796205800687,0.0193892164820025,1 +"79734",971.056558097034,-0.512607944287834,0.216823715842077,-2.36416916985774,0.0180705588656975,1 +"130535",812.863191956843,-0.259316004040881,0.153604601293908,-1.68820466220738,0.09137194857668,1 +"23510",2265.54776445789,-0.50717646434022,0.15493646752486,-3.27344796510764,0.00106243950461358,1 +"222658",2935.88104198951,-0.611003268924001,0.154460236719061,-3.95573179157638,7.63007268253438e-05,0.935752113786016 +"283219",722.141715684133,-0.0277560580424243,0.193077081050031,-0.143756358297296,0.885692865856998,1 +"51133",3446.69324683603,-0.225818178122176,0.175024208786357,-1.2902111067265,0.196977370875402,1 +"54442",1864.21465431825,0.491467555860244,0.218570052682226,2.24855852770817,0.0245405974837081,1 +"200845",271.632876272774,-0.413363265698512,0.193971830582114,-2.13104791792705,0.0330851947450056,1 +"154881",659.491368837385,-0.722487027481537,0.271651572966678,-2.65960921776131,0.00782313611674336,1 +"54793",1080.53466452304,-0.718101401163791,0.163806013162704,-4.38385250516123,1.16598732323576e-05,0.142996685321634 +"10945",9676.4721812903,0.55728406163343,0.174642473296896,3.19099959541935,0.00141781478786837,1 +"11014",12032.6145524914,0.565677400556311,0.141615828995887,3.99445037018241,6.48445020346775e-05,0.795252972953285 +"11015",881.218611326005,1.08444460630012,0.272309584441123,3.98239602372348,6.82239746928917e-05,0.836698825633624 +"23028",6783.91422986802,1.12424582095094,0.161904975430308,6.94386208924674,3.81522972303435e-12,4.67899773232933e-08 +"221656",1011.75346548129,0.361908423307594,0.13927760232121,2.5984682194122,0.00936407126152575,1 +"22992",7300.81718552723,-0.177869548785397,0.14089060058733,-1.26246568645398,0.20678126594301,1 +"84678",1961.72555239613,0.310338321116529,0.142444390327143,2.17866298843918,0.0293567131747409,1 +"55818",3083.93015778214,0.396043464117746,0.167155121782448,2.36931695478165,0.0178209739612157,1 +"51780",4591.85360453736,-0.221267143057017,0.1106711872977,-1.99932022471051,0.0455737172609541,1 +"9682",2944.13371842218,0.66563101102223,0.143864558397915,4.62678938047521,3.71377840498061e-06,0.0455457783586822 +"23030",2280.1773727705,0.167630432821236,0.175394385677727,0.955734313692589,0.339206481832548,1 +"23081",1305.24948535638,-0.305294545082179,0.155391540333062,-1.96467931541073,0.0494513654659086,1 +"5927",3280.21673778376,0.0946064716258969,0.110870396846936,0.853306872857213,0.393489149717002,1 +"10765",5572.89323557852,0.809762343282321,0.173950344331782,4.65513504093921,3.23768431484948e-06,0.039706960437314 +"8242",6249.01020131888,0.32161983613824,0.0908980869231422,3.53824648048074,0.000402793870466216,1 +"8284",1272.49418979975,-1.3323274372294,0.338016098464195,-3.94160941825832,8.09366980077801e-05,0.992607664367415 +"7403",1600.70670899662,0.173927444761998,0.157741067600746,1.10261358952014,0.270195006212324,1 +"23135",5252.33414437656,-0.996279692688556,0.247134015817764,-4.03133372551681,5.54612266114131e-05,0.680176483162371 +"3791",1204.63664201323,-0.71940446535955,0.211114514322787,-3.40765042928127,0.000655247798342018,1 +"2531",3331.66115951332,-0.424799384668472,0.127574887114694,-3.32980411957223,0.0008690709920229,1 +"9817",4375.65245340394,0.157040865354137,0.126979757956176,1.23673936603609,0.216183858946777,1 +"10657",8871.58856491927,0.137297897693733,0.0813207232700174,1.68835067093353,0.0913439337387093,1 +"10656",407.448926376731,-1.60034813262655,0.361165648886524,-4.43106407699744,9.37692175333762e-06,0.114998568382933 +"3795",317.886386125914,0.391804295071225,0.329783997763578,1.18806339218469,0.23480843558961,1 +"23351",3373.06010588348,-0.0557296184406876,0.135019853178519,-0.412751289004911,0.67978884326944,1 +"8570",6616.08706321046,0.440926776853384,0.101844401052685,4.32941597472096,1.49505299734661e-05,0.183353299594588 +"9674",1699.11339176088,-0.842066029274164,0.252480239560714,-3.33517597551104,0.000852454352410841,1 +"9703",7594.23499695215,-0.00767622546309733,0.163126208495345,-0.0470569722296731,0.962467820508353,1 +"9778",2728.52100841148,-0.955524562884407,0.168432627939824,-5.67303719339812,1.40287756034428e-08,0.000172048904000623 +"79932",3083.24877973946,0.312017776916245,0.111724883443921,2.79273307161567,0.00522648005425747,1 +"9710",1486.58410067883,-0.290744111731035,0.150486960069407,-1.93202196121803,0.0533567953229822,1 +"9764",1638.78550502332,-1.87574226693611,0.223730644764732,-8.38393090454186,5.11888483815525e-17,6.2778003655136e-13 +"23247",1132.49688206201,0.105951281662069,0.13806927017979,0.767377719344079,0.442856971742857,1 +"9786",796.230252367361,-0.0372865361347864,0.16283719565111,-0.228980461040826,0.818884102532694,1 +"9851",830.506623898039,0.286899395223531,0.110581703279355,2.59445628630584,0.009474066035821,1 +"643314",340.551036208977,-0.132270247883054,0.304907695312923,-0.433804229661395,0.664430609890993,1 +"285600",93.4707413954416,-0.64776676760163,0.30788476801349,-2.10392599731744,0.0353849028154824,1 +"23366",245.040818228114,0.961893437546262,0.269819947837259,3.56494560634348,0.000363931655558918,1 +"653319",892.782823088108,0.581146341692856,0.225834320403741,2.57333048694236,0.0100724974823185,1 +"23313",4811.43284601812,-0.338540212022796,0.13140702216978,-2.57627184934909,0.00998720909502576,1 +"23285",283.912197303096,0.401031541492083,0.203911412807321,1.96669492879746,0.049218391889888,1 +"84162",3671.86547235618,-0.66994985336912,0.198723921581164,-3.3712592225365,0.000748254144901936,1 +"57456",1388.50796266199,-0.0715068940815166,0.169515840743689,-0.421830159162744,0.673148990501783,1 +"57179",4100.05597281293,-0.379996224312835,0.111964566132778,-3.39389717155871,0.000689055603343652,1 +"56243",3902.42559623346,0.244663870135011,0.314090056044342,0.778960891714669,0.436002752582302,1 +"222223",1000.22419971273,0.255723026300253,0.264936583883646,0.965223535955912,0.334432860862613,1 +"57536",242.793936628161,-0.799571379722818,0.194640047002018,-4.10794896547948,3.99188279415845e-05,0.489564505875592 +"57648",10921.5817498252,0.904586339689155,0.286160708376003,3.16111301521021,0.00157167505291089,1 +"57670",762.775590992529,1.22896985978141,0.236349988819907,5.19978810203311,1.99515850052486e-07,0.00244686238504369 +"57691",384.820829246561,0.0764420758474803,0.170666369334659,0.447903568497349,0.654222792891635,1 +"57710",257.489367957026,-1.12010071953813,0.328259883526842,-3.41223760729978,0.000644319242511206,1 +"85371",113.990442668608,0.828198164746598,0.184198675331627,4.49622215390817,6.91714657677015e-06,0.0848318856175091 +"85379",3445.89780429697,-0.719846238062444,0.223647346101645,-3.21866657758273,0.0012878814213971,1 +"85449",323.294165248118,-1.41766600147717,0.33272340698893,-4.26079431653673,2.03701636914028e-05,0.249819687511363 +"84542",575.93126125001,1.31857706985791,0.237126408824941,5.56065044122247,2.68771051642233e-08,0.000329620817734034 +"158405",118.349193031087,0.306685102743885,0.244484308704402,1.25441630331657,0.209690729774557,1 +"90231",3519.18509791805,0.274402550014809,0.100824663080874,2.72158162130138,0.00649703385914253,1 +"158358",1535.87054844743,-0.284038824870964,0.147083333396471,-1.93114215126824,0.0534654755673905,1 +"57498",4588.86260728719,-0.122298274595156,0.152631200122976,-0.801266546398244,0.422977353416396,1 +"3832",1403.57100489135,2.4798038454703,0.324630806692804,7.63884324699018,2.19181954514784e-14,2.68804749016931e-10 +"63971",4701.96015509637,-0.769256524870347,0.186791817120022,-4.11825601747889,3.81750453582225e-05,0.468178756273241 +"23303",2779.16718118508,-0.964069074052743,0.229988185295219,-4.19181999638476,2.76725522612021e-05,0.339376180931383 +"9928",513.976272634136,3.52673512149141,0.393527553296551,8.96185055391474,3.19274374892049e-19,3.91558093367609e-15 +"56992",554.959077084431,2.81031048563135,0.341830573375724,8.22135497676035,2.01216719827676e-16,2.46772185196661e-12 +"55614",1258.99794641996,-0.0922408068545868,0.145882166944719,-0.632296659601587,0.527193045913036,1 +"81930",295.228247522741,2.63358706869042,0.325999726460743,8.07849471925112,6.55711130009714e-16,8.04164129843913e-12 +"146909",410.674495191902,4.1370598927117,0.445769773816207,9.28070976480659,1.68353307232425e-20,2.06468495989846e-16 +"23095",3587.61610043649,-0.335101032296724,0.207091472554156,-1.61813052060409,0.105634472291575,1 +"10749",9464.57596905381,-0.64555432752637,0.206782668707099,-3.12189765013999,0.00179689396580616,1 +"10112",1282.57254451416,3.71837865924175,0.45325593366756,8.20370652217207,2.33086708276863e-16,2.85857539030745e-12 +"9585",717.676352691752,1.49228921673186,0.230323285905274,6.47910701198315,9.22670498852441e-11,1.13156309979263e-06 +"55605",1222.4867836252,0.245720302743905,0.223791057851466,1.09798981739026,0.272208935666542,1 +"23046",452.647565530615,0.267209309703685,0.303613956250187,0.880095608923513,0.378807517706785,1 +"3835",3304.08407963991,1.30291491434003,0.186798643856558,6.97496987901331,3.05936355979269e-12,3.75200346972975e-08 +"9493",1277.11494921149,2.759576493958,0.363583835113276,7.58993175012372,3.20074033008212e-14,3.92538794081271e-10 +"347240",233.129651485972,2.09468913337546,0.260975692277036,8.02637638432571,1.00393894243745e-15,1.23123071900529e-11 +"26153",258.155987268747,-1.87458574188352,0.231006445654286,-8.11486336051825,4.86331718868967e-16,5.96437220020901e-12 +"55083",580.442847360509,3.26633666419502,0.31073380233526,10.5116876234497,7.63155026491642e-26,9.35933324489349e-22 +"55582",148.630371143288,0.427236007546317,0.240220764898111,1.77851405863073,0.0753194650520692,1 +"3796",1447.29456596011,0.0328794964860458,0.161159469417481,0.204018396218915,0.838339123143512,1 +"11004",1408.16810360138,3.14129790374849,0.351756953808598,8.93030790077223,4.24824745779444e-19,5.2100506822391e-15 +"11127",745.758965238151,0.175409372846178,0.131502931454332,1.3338818451138,0.182242582321793,1 +"9371",2980.29953836818,0.199930133548413,0.141819082294502,1.40975481094453,0.15861209411294,1 +"3797",1195.55359451607,1.18919846656682,0.255560957146968,4.65328694900344,3.26685125477725e-06,0.0400646637885882 +"24137",791.049390506024,3.29382822579218,0.378521522683077,8.70182546673836,3.26587600474924e-18,4.00527033222447e-14 +"3799",12320.3865604761,-0.514151769247064,0.129745609381511,-3.9627681560709,7.40857196273559e-05,0.908587265509893 +"3800",858.025487907241,-0.604359204443518,0.478937401690934,-1.26187514758666,0.206993716020153,1 +"374654",767.461333342365,-0.762306294720884,0.26531575448885,-2.87320402887315,0.00406331608042342,1 +"64147",328.65567002459,0.052773725532629,0.188724155477532,0.279634185666878,0.779758176616115,1 +"22920",1572.8798459274,0.144442465404645,0.148159736829566,0.974910380482131,0.329604716539864,1 +"3833",1277.01303562136,2.63611429544556,0.348127014133869,7.57227732528641,3.66737500472861e-14,4.49766870579917e-10 +"90990",1471.22808247788,1.47606032515994,0.300390833060226,4.91379949954732,8.9328103597668e-07,0.010955198625218 +"3801",1832.15915845658,0.0184093008168451,0.269904541500198,0.0682067101002507,0.945621085525587,1 +"22944",697.15776374541,0.212149264746421,0.169057675901984,1.25489282645422,0.209517668469954,1 +"3815",1001.23733344476,-2.14528807372565,0.350828778210833,-6.11491475889251,9.66085893865232e-10,1.18480774023632e-05 +"4254",1981.70258390299,-1.26476542186942,0.367891621619165,-3.43787503586772,0.00058629820162167,1 +"9365",171.650807343292,-2.07544312407474,0.386937445374327,-5.36376912828102,8.15030660120949e-08,0.000999553601572332 +"3831",4658.24148199614,-0.480500146758406,0.136413758131156,-3.5223730607614,0.00042770181285598,1 +"64837",2183.65847160528,0.269195368999637,0.16332457848262,1.64822325886659,0.0993068656634327,1 +"147700",551.464458919538,2.40049548904135,0.390936286319667,6.14037523004061,8.23267775380172e-10,1.00965559972624e-05 +"89953",1332.49577670309,-0.540037584293372,0.21213072963996,-2.54577724410769,0.0109034741822243,1 +"7071",4804.33273748028,-1.03863027822206,0.207707877670669,-5.00043758508215,5.72003433590843e-07,0.0070150501095581 +"8462",1683.8762063249,-0.815317497274109,0.219718382557125,-3.71073866367159,0.000206655360627408,1 +"11278",857.605062080608,-1.10351130843086,0.308926035206122,-3.57208905262572,0.000354144936752149,1 +"51621",3204.517623676,-1.10240410229042,0.178746655032179,-6.16741108857093,6.94171212172396e-10,8.51331574608226e-06 +"28999",386.194979320991,-2.1463843655554,0.418199663366544,-5.13243924750397,2.86011061566495e-07,0.00350763965905149 +"83855",1654.25528689299,-0.223144842946735,0.181840588122447,-1.22714540934323,0.219767943184007,1 +"10365",2805.98852487889,-3.23956721954204,0.257378170175124,-12.5867987068903,2.49591952427403e-36,3.06099570456967e-32 +"51274",6009.3744702248,-0.47053833108796,0.204814089599357,-2.29739239135547,0.0215963954294336,1 +"9314",6591.8701736895,-2.58299786048309,0.293762565094826,-8.79280809537223,1.45867502439149e-18,1.78891904991372e-14 +"688",16084.0464841742,0.724563908620416,0.531202292364297,1.36400749589294,0.172565206497376,1 +"1316",18992.931768373,-1.67400073149277,0.235836866126731,-7.09812998699371,1.26456221487807e-12,1.55085910032647e-08 +"8609",365.613496086769,-0.130313386927319,0.256265145811597,-0.508509990754356,0.611095734407844,1 +"11279",583.857315868062,-0.260424321871124,0.281213532660549,-0.926073220613747,0.354407929768423,1 +"687",4839.72250697107,-2.432928237193,0.190305830850799,-12.7843073767951,2.00642288423706e-37,2.46067702522833e-33 +"122773",133.682835334136,-1.58193412033899,0.261918655743828,-6.03979168970008,1.54313315751219e-09,1.89249850437295e-05 +"23008",2112.52029912936,0.308518200482457,0.140038192493835,2.20310041845219,0.0275876717166658,1 +"23588",2339.42522441348,-0.344410060087771,0.154754230652064,-2.22552920612629,0.0260457327247912,1 +"116138",4204.03220964785,0.24657153916515,0.138502519472192,1.78026753668302,0.0750321872576382,1 +"54758",1055.78129393635,0.0289792087556493,0.131510283020457,0.220356979622205,0.825593147212922,1 +"127707",1041.89053500529,2.19475473720049,0.615455682537114,3.56606462410581,0.00036238204681358,1 +"113730",1213.39466969195,3.04466985439853,0.616454314181487,4.93900323893615,7.85229084042494e-07,0.00963004948669715 +"200942",1869.13036560252,-0.685699790107605,0.236601795275321,-2.89811744373998,0.0037540998313587,1 +"126823",222.051726283869,-0.210646294337571,0.298762163850234,-0.705063491383617,0.48077072520827,1 +"59349",1343.56555052605,0.311498465562833,0.151779864511712,2.05230428005025,0.0401401003205427,1 +"90293",630.037395583893,-2.74117100557858,0.445648980754984,-6.15096437769183,7.70132168425628e-10,9.4449009135719e-06 +"80311",756.985074151405,-0.759819206071778,0.239540170802635,-3.17199075013526,0.00151397829109844,1 +"339451",403.629106353406,1.06767495794907,0.194739020768913,5.48259385167614,4.19134515714733e-08,0.000514026570072548 +"23276",1118.33670875411,-0.126928483726758,0.124003136543981,-1.02359091281324,0.306028539150539,1 +"11275",908.688212766118,-0.506991647587533,0.166457203072028,-3.04577776287729,0.00232079304457396,1 +"27252",961.110986718796,-0.168247857340718,0.160809677691765,-1.04625455231127,0.295443522339308,1 +"9903",3813.39725447679,-1.22379699683218,0.26054300256657,-4.69710176353513,2.63878999451437e-06,0.0323621204927242 +"84861",1010.14944608863,-0.202703240693802,0.200737358667625,-1.00979330424205,0.312594328770667,1 +"54800",3000.10268502839,0.47029686424745,0.212441263522624,2.2137736165242,0.0268443558741028,1 +"64410",583.575808466273,-0.0162513394221072,0.166414085563912,-0.0976560329435925,0.922205429240099,1 +"55295",474.00396807561,-0.416609145505926,0.205931247670368,-2.02304968390609,0.0430680253644633,1 +"54813",780.322565335164,0.187002432266346,0.1632121577898,1.14576288187541,0.251893277331232,1 +"114818",516.96298827072,-1.58491973839778,0.384930328322298,-4.11741975568823,3.83137867448021e-05,0.469880280638254 +"26249",324.668099422363,-0.568314703409747,0.218322551520888,-2.60309665424268,0.00923859040731367,1 +"79786",753.98774075797,-0.0386417901585562,0.136422435856526,-0.283250991055425,0.77698444289298,1 +"51088",3338.15070678363,-1.06157359311887,0.293997723966906,-3.61082248799439,0.000305227521627373,1 +"89857",313.568242540042,-0.0530437296554256,0.355772970669206,-0.149094321459134,0.88147920662962,1 +"55975",1394.41264846522,0.368904223233728,0.142433140915187,2.59001676761025,0.00959712572140031,1 +"57563",806.740008218066,-0.00571128000591285,0.177203330002829,-0.0322300941287146,0.974288556996225,1 +"55958",1609.42614041695,-0.555059721512933,0.204049592631179,-2.72021969931696,0.00652385555603464,1 +"3820",204.948632217311,-2.2392202166974,0.407860759982746,-5.4901584962283,4.01573221620179e-08,0.000492489398994988 +"9735",1162.7058282097,1.84014520975447,0.194551412263431,9.45840067849435,3.12689024404578e-21,3.83481819529775e-17 +"3836",3655.79184862446,0.150250383305955,0.168643947030005,0.890932559110597,0.372965351797694,1 +"3838",5182.53026084964,1.90317314900097,0.234053003745517,8.13137673323889,4.24441994289411e-16,5.20535661796533e-12 +"3839",2874.39280412898,-0.370204768766221,0.181101015093013,-2.04418936346704,0.0409348435604678,1 +"3840",5356.17347384303,-0.136568596879759,0.141921119109681,-0.96228523095435,0.335906345726534,1 +"3841",207.401543308428,-0.328794694173144,0.222499533459563,-1.4777320611007,0.139479509286184,1 +"23633",4478.83409536842,0.119457785001174,0.104576139003425,1.14230441226427,0.253327507863212,1 +"3837",10536.9597326544,0.32700457508573,0.112175293585055,2.91512118787355,0.00355550449000875,1 +"11133",538.802745804291,0.749262864097814,0.151887210007425,4.93302144440725,8.09672618260986e-07,0.00992982499035274 +"3845",2796.87779913393,0.148595751685323,0.159396123567505,0.932241941394463,0.351211504719726,1 +"84626",609.248930411473,-0.0062815740676863,0.213297511921608,-0.0294498234465808,0.976505836653063,1 +"124751",121.446241956004,-0.146569945105232,0.233448609424046,-0.627846725953273,0.530104353044444,1 +"51315",1359.17985627726,-0.615973001058756,0.209166051573393,-2.94489950173688,0.00323059578318266,1 +"83999",2691.12416297128,0.281314494700552,0.252943370764053,1.11216393555127,0.266067671051638,1 +"65095",1929.49958877429,0.287896105130339,0.114949429414054,2.50454575196995,0.0122608746681877,1 +"889",1447.90179961064,0.234752946162089,0.131768540356901,1.78155533578993,0.0748217734830777,1 +"11103",1295.80633010006,0.457619339985203,0.128786052162431,3.55332997868459,0.000380386994945546,1 +"3858",7409.60721573611,0.834139791544361,0.316150036296151,2.63843016219991,0.00832908541934202,1 +"3860",236382.478945954,-0.325228095347577,1.16486939205898,-0.279197047810412,0.780093609102371,1 +"3861",8421.6682072282,3.26700348288873,0.796477877763623,4.10181321301972,4.0992513451374e-05,0.50273218496765 +"3866",21018.9900862147,2.26851838125286,0.864924113975304,2.62279469909384,0.00872118073336462,1 +"3868",13619.542135355,3.1148625068609,0.816841296698926,3.81330194671706,0.00013712241631165,1 +"3872",86488.5930801383,1.45895627791713,0.781968394825987,1.86574839542179,0.0620765752839203,1 +"3875",20484.7985367589,1.70055803001486,0.532312784035862,3.19465938263149,0.0013999596019902,1 +"3880",103333.813833194,1.26753161379685,0.642614648970306,1.97245988062657,0.0485571318708053,1 +"160313",169.869292081386,1.07068585909606,0.597766801062755,1.79114306313518,0.0732703402234939,1 +"54474",5217.88225277752,1.28329456904775,0.774306020200146,1.65734804530647,0.0974491289157998,1 +"25984",5991.59260282777,1.35575820756353,0.745361150223814,1.81892792125862,0.068922427412348,1 +"3851",88802.5182119565,1.8161003600374,0.906757287239785,2.00285168434179,0.0451932103775504,1 +"3852",69795.326596049,0.792060190753726,0.937157502461294,0.845172971110519,0.39801427102118,1 +"3853",34896.7409056948,5.02285826303824,1.04664859043989,4.79899204844598,1.59466124675887e-06,0.0195569255302508 +"3855",56246.9828791385,2.6037962190588,0.823347516466087,3.16245105133082,0.00156447034461825,1 +"3856",40138.7784508327,1.13427291370162,0.429533121489776,2.64071117442016,0.008273221547904,1 +"144501",4719.00484174465,1.22553429541174,0.759177262681686,1.6142926766309,0.106463957845081,1 +"3892",284.085950604887,2.23836952952692,0.580965321014612,3.85284533957686,0.000116753141081113,1 +"283102",403.845395830486,0.907163362842034,0.434472033234238,2.08796721871613,0.0368007918415314,1 +"200185",3911.86288049712,0.587887238353007,0.154178088484519,3.81304012866936,0.00013726781464052,1 +"200634",1478.97830440444,1.72714236083747,0.542130639793159,3.18584162942059,0.00144333583276131,1 +"8844",436.11997010554,-0.217258271282992,0.236610758328915,-0.918209606432939,0.358509140328533,1 +"112970",398.848026271897,0.13036139730861,0.138779238027538,0.939343659479831,0.347554329534447,1 +"3895",15253.018880704,0.214532091073788,0.159666384205893,1.34362716448282,0.17906898078205,1 +"79036",3009.74495105222,0.0622021695678525,0.109199530121544,0.569619388459076,0.568935875345823,1 +"8942",1386.66954307459,0.998535080785489,0.418482807432118,2.38608387979585,0.0170288665571273,1 +"3897",585.383238357255,-3.18287019000072,0.449719714858426,-7.07745309987735,1.46827859242471e-12,1.80069686574967e-08 +"79944",501.570522118229,0.878167376066161,0.2489596030971,3.52734887564733,0.000419743297710881,1 +"26013",187.530781921764,0.488603030559013,0.303092824259419,1.61205740107134,0.106949449413251,1 +"83746",1874.75956985251,-0.225569562803417,0.127425109260097,-1.77021282628835,0.0766916934437042,1 +"84456",619.791330974426,0.388868633462972,0.182518308536262,2.13057329197039,0.0331243118092575,1 +"91133",144.138058884723,-1.75214318107167,0.388516892005034,-4.50982497061921,6.48811346249314e-06,0.0795702235040159 +"144811",678.097122959204,-0.417448268425892,0.20773837279827,-2.00949041240092,0.0444851504518572,1 +"114294",720.027341522714,0.36499919307094,0.210567294092112,1.73340876437948,0.0830230409146204,1 +"51110",624.127084388387,0.804949541042483,0.158215923186102,5.08766453358589,3.62499853841751e-07,0.00444569820751523 +"3898",11769.3447315901,1.57377193300228,0.633107668871376,2.48578876924331,0.0129264666197084,1 +"3902",285.388395017652,-0.280954503672168,0.368875554884505,-0.761651185479436,0.446268216796874,1 +"8270",1042.30426996699,0.628916995994215,0.131939437672148,4.76670968961523,1.87258827117211e-06,0.0229654225576548 +"3903",599.609902235065,-0.300674527389066,0.277789590722997,-1.08238226855983,0.279082703841987,1 +"284217",200.787481033131,1.06390434707704,0.417796256567453,2.54646692102487,0.0108819524510209,1 +"3908",2644.54295673118,-2.02137083952162,0.254967422177121,-7.92795731415998,2.22779853381237e-15,2.73217212186749e-11 +"3909",2707.14086613048,-0.68482634648731,0.470127451200976,-1.45668232037476,0.145204092241595,1 +"3910",6334.91473137265,-1.06690762186519,0.261778500682756,-4.0756120883974,4.58934691255919e-05,0.562837505356259 +"3911",11359.5536463055,-0.148008733723996,0.219447181971454,-0.674461765215326,0.500017786110401,1 +"3912",11506.9720758557,-0.237404771655629,0.240541761052074,-0.98695864958033,0.323662910324402,1 +"3913",11658.099285264,-1.28738804191021,0.235189104512574,-5.47384218575219,4.40381280161764e-08,0.000540083601990387 +"3914",16400.8344065038,0.781129953427095,0.570881375510358,1.3682876810069,0.171222045282036,1 +"3915",14085.2074359555,-0.737797655587261,0.244056985780101,-3.02305485429549,0.00250236879617126,1 +"3918",5174.83015952028,2.19667175813771,0.526622950401207,4.17124197960642,3.02943950489805e-05,0.371530460880697 +"10319",2180.90060735042,-2.97963033579946,0.390400536156903,-7.6322393537952,2.30710577023667e-14,2.82943451661825e-10 +"3916",16658.9001783598,0.0486535641980838,0.178980037192104,0.271837937690575,0.785746633171932,1 +"3920",7009.05785874052,0.194638228908359,0.175258819966369,1.11057594103229,0.266750923420922,1 +"27074",747.946228667502,1.45145327839261,0.51418234694807,2.82283763145061,0.00476006719797574,1 +"55004",4020.02513168142,0.117002519238265,0.0935301191648487,1.25096086996367,0.210948754056495,1 +"28956",2219.39379533151,0.743173528565165,0.164835873199392,4.50856669813733,6.52670514130416e-06,0.0800435118529543 +"8649",1641.31322372541,-0.414219349364731,0.107485474813181,-3.85372395744338,0.000116334751442938,1 +"10314",2970.9663972475,-0.242785347531381,0.171078744767185,-1.41914384432607,0.155857083708143,1 +"55915",1740.41552029121,0.29370169269791,0.259087349005909,1.1336010570366,0.25696192944897,1 +"51056",3730.12479882064,-0.159461973269571,0.19014023073333,-0.838654569075469,0.401663179197106,1 +"9741",16069.88286188,-0.168452994109217,0.130263407074793,-1.29317202652696,0.195951568303323,1 +"55353",5968.98669999038,0.627336524726375,0.192847158440503,3.25302446662661,0.00114183665159073,1 +"7805",6320.06208540351,-0.194773257453101,0.308467807210187,-0.631421668324646,0.527764851781941,1 +"23367",9130.24707860486,0.310039119688095,0.12068922202095,2.56890478285025,0.0102020485232179,1 +"55132",915.504890523479,-0.0792756116132452,0.147710297327351,-0.53669658140053,0.591477217830105,1 +"113251",2452.54679989127,0.323135139245632,0.166756189960402,1.93776998216596,0.0526512915596268,1 +"23185",3851.84852858693,0.409692889463513,0.147849031384855,2.77102180261886,0.00558806849915436,1 +"55323",789.459320986232,-0.68598348903005,0.269927160555704,-2.54136518762248,0.0110420519962062,1 +"51574",2200.81445847561,-0.454163667506787,0.101284924687343,-4.48402039009012,7.32496582824944e-06,0.0898333809176512 +"23395",1178.50551992124,0.495777872740629,0.136628685720217,3.6286514074787,0.000284905639254378,1 +"81887",2244.990095241,0.409649839972248,0.113154916928838,3.62025664540829,0.000294310945428983,1 +"3927",11432.5802517365,0.679281311035128,0.193716735050997,3.50657010018418,0.000453921855289486,1 +"27040",458.135441330236,-0.44881374410114,0.216204809223583,-2.07587308401179,0.0379056907112212,1 +"7462",372.56136868204,-0.666499002712889,0.214910371972943,-3.10128820956487,0.00192680651712314,1 +"9113",715.04402666676,-0.029829063680735,0.180261748363746,-0.165476391699828,0.868569030354468,1 +"26524",1930.20682401956,-1.45777470820966,0.227226081889973,-6.41552543653654,1.40337979189377e-10,1.72110497677852e-06 +"143903",326.199905139334,-0.786198763179241,0.260881090775347,-3.01362877946666,0.00258143456768572,1 +"81606",4157.09729967385,0.681874330853556,0.25798352817142,2.64309250938097,0.00821525860409964,1 +"3930",3993.13878260394,-0.304486870109108,0.16378989880618,-1.85900884198861,0.0630258850940028,1 +"167691",418.670400558534,-0.631264277229561,0.180973687911251,-3.48815501587795,0.000486366010653847,1 +"3931",382.540124869174,-0.526067659243265,0.216630316030344,-2.42841200106812,0.015165104823861,1 +"3932",528.092597753349,-0.593461614144022,0.407314969916681,-1.4570090911842,0.14511387072122,1 +"253558",1136.52256634632,0.781793151059883,0.199310370128346,3.92249109043571,8.7638135091565e-05,1 +"51451",1452.57256243888,0.338876128991517,0.145199087934757,2.33387229776392,0.0196024096931708,1 +"9836",529.40142575522,-0.218858083005849,0.174138866521032,-1.25680204183146,0.208825326516832,1 +"3934",5442.40930738228,0.291033982586374,0.781867865032927,0.372229113897804,0.709722271246957,1 +"84458",1378.06951232684,0.256915629068196,0.241922446729046,1.06197515998151,0.288246962087489,1 +"254251",281.50972615858,-0.0714781744824239,0.176381322128636,-0.405247979886978,0.685295240132541,1 +"3936",5949.78436651413,0.546530748255534,0.289650741232096,1.88686121061089,0.059178995552089,1 +"3937",688.69774618397,-0.741246915313118,0.291013982400216,-2.54711787110531,0.0108616738549752,1 +"8861",2884.22961637795,-0.238942342867563,0.160677194294633,-1.4870955639754,0.136989572991802,1 +"9079",810.385791155077,-1.96203285378006,0.221428183630484,-8.86080905154454,7.94358253658078e-19,9.74200962286267e-15 +"11155",378.138082368236,-3.27923650782222,0.328846002928833,-9.97195185167534,2.02215213642888e-23,2.47996738011638e-19 +"3939",19377.6225317439,0.369055389380088,0.241800101270042,1.52628302238769,0.126939394945094,1 +"3945",21557.4335818448,-0.0831004718405537,0.189122194204025,-0.439400950217959,0.660371038125635,1 +"197257",417.021522891456,0.365003623627509,0.437195899020144,0.834874307937392,0.403788481808177,1 +"3949",6969.58629114525,-1.8022102964359,0.429814082183045,-4.19299965064521,2.75289867438044e-05,0.337615493426017 +"143458",302.158618444686,0.560651315802715,0.292186149416113,1.9188155116972,0.0550076860483417,1 +"26119",1665.80084986891,0.40575341419741,0.227248789535921,1.78550308244116,0.0741797518042354,1 +"23641",1371.4295089804,-1.31635641350961,0.368064870245225,-3.57642502701379,0.000348325154690467,1 +"51176",459.894939473377,0.915889537967425,0.383768655820686,2.38656681330267,0.0170065168472449,1 +"221496",2163.87230525846,0.437352916289915,0.0996009479478799,4.39105174499722,1.128036891121e-05,0.13834244432708 +"23592",1375.65229005964,0.116649512558914,0.124953322361891,0.933544705766788,0.350538799390181,1 +"79165",502.29314029851,-0.289989868803233,0.152673836091238,-1.89940775857584,0.057510884179049,1 +"114823",3740.97173161089,-0.391751177315251,0.162742268381479,-2.40718764222309,0.0160759076265532,1 +"94059",308.444482487803,-0.272125628742932,0.215223996553207,-1.26438330809296,0.206092481080663,1 +"123169",1359.77710236812,0.30935862994808,0.176885800286728,1.74891726439667,0.0803053218551824,1 +"3953",926.050264160373,-2.12494248749171,0.328768114424328,-6.46334724768696,1.02411911298718e-10,1.25597968016748e-06 +"54741",5076.61402057542,-0.376087327322702,0.148753964546106,-2.52825078289685,0.0114632437769813,1 +"23484",1743.55481034881,-0.121818921433333,0.131879822449734,-0.923711597198763,0.35563649240756,1 +"3954",2249.46758818791,0.273414431336914,0.215912368726431,1.26632129946821,0.205398074349226,1 +"25875",2035.01458277022,0.0825355660142407,0.171872812946596,0.480213040091954,0.631075915413585,1 +"3955",983.39091839559,-0.0742631389372688,0.320502021149378,-0.231708800683839,0.81676419543905,1 +"3956",13753.6226986215,-0.506733310613445,0.292247780389726,-1.73391671251598,0.0829328620779854,1 +"3958",12635.7271355924,-0.589272764517804,0.283215014614471,-2.08065509987158,0.0374654866228512,1 +"3959",26422.4477073067,0.279700994569161,0.250375459376189,1.11712623619757,0.263940354106466,1 +"3964",2667.09812035601,0.200361505108744,0.160280981796368,1.25006412403498,0.211276123879812,1 +"3965",4329.79329560804,0.375184749559337,0.362083430673148,1.03618314945214,0.300116706455716,1 +"284194",135.896359609419,0.335783345556303,0.375787987506041,0.893544649430565,0.371565572589738,1 +"29094",1009.90130025603,-0.335842396196372,0.277828786748653,-1.20881064963295,0.226735599218586,1 +"55203",230.11192023226,-1.02873528415134,0.371169420483725,-2.77160570720144,0.0055780557783836,1 +"163175",533.60990294847,-2.86379455998592,0.226795923277038,-12.6271871143279,1.4952842003316e-36,1.83381654328667e-32 +"5641",7829.60035375027,-0.598906704075532,0.219498400986636,-2.72852422333589,0.00636184175588706,1 +"55366",1605.12068037751,-0.0906333487159111,0.198499960058117,-0.456591269284768,0.647964855725543,1 +"59352",373.171989533642,-1.92896249385117,0.352568626756211,-5.47116886604031,4.47077047531016e-08,0.000548295291092038 +"10184",2556.2207372192,-0.249480451114644,0.234659302858983,-1.06316028418685,0.287709269802464,1 +"64077",1183.07716742429,-0.825848350943394,0.140452144276221,-5.87992696871353,4.1044753555919e-09,5.0337285760979e-05 +"26468",207.577340110401,-0.598105052327675,0.271185307025226,-2.20552160029835,0.0274175137633156,1 +"11019",384.914124929836,-0.363142189507205,0.191532355210607,-1.89598352251189,0.0579622234068968,1 +"3976",2005.5184072065,-1.79403991237952,0.389715162980234,-4.6034644858571,4.15520080351084e-06,0.050959382654257 +"3977",1928.02330968604,-2.61514910356711,0.397127001963868,-6.58517071524902,4.54363017912636e-11,5.57230805168057e-07 +"3978",1881.85952503503,1.36186754524606,0.206182989922488,6.60514015127068,3.9714145052711e-11,4.87054274926448e-07 +"3980",1686.24414939622,0.49164522542602,0.161394256635087,3.04623742923908,0.00231724772427411,1 +"3981",656.427192320875,-0.227324030279721,0.124477014776141,-1.82623298517031,0.0678151747704381,1 +"10859",165.738685227263,-0.535266260891464,0.280284418002224,-1.909725359357,0.0561685840416398,1 +"10288",259.903898722694,-0.423371350846766,0.287862807024883,-1.4707400209926,0.141361438559378,1 +"11025",181.417916496929,-0.219915699758398,0.301740992976891,-0.728822748241039,0.466110094546388,1 +"11006",408.435766250284,0.0547344574788791,0.345237329655107,0.158541538754106,0.874030091351017,1 +"10990",263.671064335966,-1.871720106502,0.324452229963815,-5.76886189597385,7.98086722970789e-09,9.78773557051375e-05 +"51474",6960.89019037269,-0.192586075818207,0.261632021359766,-0.736095202786304,0.461672762028345,1 +"22998",3633.20103978444,-0.90392491593968,0.273766259090917,-3.30181271768589,0.000960621867503296,1 +"8994",1370.97917625925,0.517445478625349,0.147934643964194,3.49779784342194,0.000469116573192164,1 +"80774",1590.86611671531,1.02204320445146,0.33446849642928,3.0557233801168,0.00224518288846307,1 +"54923",602.651703582203,0.113025081908121,0.189516658617913,0.596385999691944,0.550917391119697,1 +"3984",2221.46663959781,0.95985116138432,0.153580378561115,6.24982937519173,4.10901326832603e-10,5.03929387227504e-06 +"3985",3947.43804697637,0.733728350844744,0.238272405699878,3.07936770390832,0.00207440478691722,1 +"3987",2787.54874366153,0.124790038136084,0.103893039635468,1.20113954287927,0.229697076323023,1 +"55679",5998.87362544185,-3.33528796024176,0.396363477195717,-8.41472070998826,3.93832100021895e-17,4.82995687466852e-13 +"55957",517.85736907058,0.392123606528172,0.191299928071081,2.04978439083611,0.040385475474422,1 +"91750",340.893756416037,0.023115271640097,0.165375369010269,0.13977457331425,0.888838103606539,1 +"132660",705.271623843136,0.216311113007368,0.142327506501122,1.51981242645927,0.12855812508044,1 +"64130",248.625792659474,0.238598380034359,0.232222271071092,1.02745692277428,0.304205359597655,1 +"55327",1541.85495401916,-0.203079972702262,0.104710268546593,-1.93944658457158,0.0524469827587166,1 +"286826",326.931620414152,1.37941912146077,0.222404863504763,6.2022884739264,5.56479528942987e-10,6.82466494295679e-06 +"285908",287.134729263536,0.398503469585951,0.254231994829454,1.567479615826,0.117002627207055,1 +"349114",346.181744503018,0.42917528676105,0.166324432113024,2.58035023062282,0.00987001586700761,1 +"283267",542.990460111289,-0.692128599759139,0.182831653174476,-3.78560598092191,0.000153334467218636,1 +"29931",290.899580160143,-2.01673007214971,0.239046229452757,-8.43656926430743,3.26788049487973e-17,4.0077286389205e-13 +"284029",142.598501335485,0.268305890011303,0.268121672436952,1.0006870670792,0.316978121849996,1 +"29092",511.57779507181,0.144593243651486,0.183804843258251,0.78666721229064,0.431476702487441,1 +"283487",194.152356973881,0.325611074394727,0.252241797793488,1.2908688299998,0.196749165443601,1 +"84791",186.525721033812,0.712728463239868,0.200766866851469,3.55003031335422,0.000385186795249874,1 +"100128782",380.559395381097,-1.44658984981259,0.264286673748578,-5.47356334428262,4.41075116995636e-08,0.000540934523483449 +"84894",221.842323261595,1.1300768556811,0.364768581556667,3.09806521948365,0.0019478855598265,1 +"3988",3074.07083361657,0.281714588842022,0.193041389814168,1.45934811758875,0.144469318053158,1 +"3991",708.043751516743,-0.609201925661163,0.226543348701708,-2.68911856892919,0.00716409678658264,1 +"9388",925.958386899207,2.39083821584235,0.539263102409254,4.43352828176238,9.27033402814658e-06,0.11369137652119 +"200879",1534.77299382536,0.129703300598418,0.669570281536345,0.193711256570125,0.846401977329278,1 +"51601",235.403800223852,-0.363164430193476,0.139362554428564,-2.60589676819989,0.00916340746519385,1 +"387787",88.5195094411101,1.17148852256869,0.237710961685903,4.92820572623243,8.29882097314464e-07,0.0101776740414646 +"9516",9517.144842219,-0.918352169569813,0.213927729600754,-4.29281501413446,1.76421987031332e-05,0.216363924895226 +"128077",482.133134426188,-1.3064516406145,0.25509421760532,-5.1214474905732,3.03199173168282e-07,0.00371843465973581 +"3996",1998.46491891528,-0.125428431437607,0.121445230755693,-1.03279832939613,0.301698285719058,1 +"3993",4001.01638067481,1.50269242023129,0.375401819550897,4.00289061472584,6.25732372579216e-05,0.76739818173115 +"84298",732.732143766174,0.138074815437478,0.133636821231235,1.03320936674005,0.301505930407225,1 +"3998",5935.65771501419,0.592130939748246,0.132208592559914,4.4787629024937,7.50768655591754e-06,0.0920742679217727 +"10960",7439.77452535529,0.329333326212642,0.153361038319928,2.14743803133112,0.0317584256475605,1 +"81562",1152.32896523157,0.187994347594684,0.150414951190027,1.24983817171992,0.211358668887656,1 +"64327",1812.69913882989,0.295961361463389,0.1080570020769,2.73893737356109,0.00616381134966182,1 +"55716",1487.78411482282,0.13544728254699,0.136355362604181,0.993340342177613,0.320544123893988,1 +"55788",2826.18548128129,-0.566891403641416,0.177242682902186,-3.19839101033166,0.00138196760355083,1 +"92255",388.705772364465,-0.0672563588549214,0.249206663073043,-0.269881864415513,0.787251139749827,1 +"29995",3544.14357665449,-1.82058856274123,0.298452242701163,-6.10010012410651,1.06002045505239e-09,1.30000908607625e-05 +"64788",641.30816298517,-0.978813396127799,0.197613150299228,-4.95317945514085,7.30105838325061e-07,0.00895401800121855 +"91289",3620.34500270173,-3.36367205445042e-05,0.135575692523826,-0.00024810288568943,0.999802042540049,1 +"89782",670.4215487068,0.929905485096749,0.181178622807127,5.13253423990687,2.85866702163157e-07,0.00350586923532895 +"4000",42377.2183265935,-1.0763773063923,0.275633922661539,-3.90509736972406,9.41874538000357e-05,1 +"4001",2585.53185534171,2.26999496371822,0.326963653827803,6.94265230138919,3.84805725071422e-12,4.71925741227592e-08 +"84823",4877.65838118723,1.18278740943785,0.202372041845592,5.84461864717608,5.07730055689277e-09,6.2268014029733e-05 +"4005",665.983305360354,-0.749833107353369,0.225047851663119,-3.33188298316136,0.000862605185508979,1 +"55885",2376.65159480202,-4.52339921215525,0.491787160856853,-9.19787983946963,3.65081715047456e-20,4.477362153342e-16 +"8543",3572.92238355536,-0.38390458702771,0.228510576323499,-1.68002984021283,0.0929515100257236,1 +"4008",4312.68990775824,-0.224383868458239,0.338080122021306,-0.663700270565148,0.506882166172333,1 +"25802",23743.0591349576,-4.65353212643448,0.445882957991485,-10.4366673877752,1.68626936524018e-25,2.06804074953056e-21 +"22853",2339.39159843895,-0.189334762921958,0.16974676965013,-1.11539538167472,0.2646810277422,1 +"114783",306.856034536162,0.805075561262779,0.464054981589486,1.73487106744383,0.0827636448461827,1 +"348801",206.963061660356,-0.845113824626161,0.280798290609121,-3.00968293928321,0.00261520533513459,1 +"4012",727.758609442447,0.0515963123753629,0.224040352701364,0.230299192771484,0.817859287830109,1 +"84708",798.419851716538,0.109152970960447,0.234676646491667,0.465120720754476,0.641845008156417,1 +"222484",1236.913934672,0.146930837576814,0.194235787326395,0.756456055803512,0.449375810062854,1 +"100128164",1631.13444716497,-4.71170000016103,0.447804518913925,-10.5217785912221,6.85668500362182e-26,8.4090384884418e-22 +"100128361",95.9077664818397,0.511771856515391,0.184377259778129,2.77567774426864,0.00550867792359426,1 +"100129034",1713.95336665451,-0.842995015340662,0.215965926919238,-3.90337044072655,9.48623402584414e-05,1 +"100129534",150.996330120605,-0.693790075035731,0.254027260301537,-2.73116386883905,0.00631110826965315,1 +"100130331",139.144269946018,-0.0767669214248216,0.192895958202324,-0.397970606228579,0.690651852854046,1 +"100130744",195.943847277448,-0.0247576633315433,0.240956475980643,-0.102747449433699,0.918163413697306,1 +"100133331",419.521575004103,0.295724677307909,0.208425663857072,1.41884963605394,0.155942858117417,1 +"100270746",129.216356369406,0.355936835988429,0.205430089203038,1.73264217218266,0.0831592886801341,1 +"100287015",177.852278511291,0.820655345566899,0.246733811460756,3.32607574417269,0.000880779903959593,1 +"100288637",176.161071254866,1.61145548947857,0.185002364652732,8.71045887712533,3.02647105959922e-18,3.71166410749248e-14 +"100294145",618.660299487089,0.584327684224848,0.192035585136895,3.04280940331086,0.00234380732053485,1 +"100499489",218.468839888458,-0.915126321929602,0.30726446705087,-2.97830182159688,0.00289850404302663,1 +"100505549",101.798278633985,-0.281768431898427,0.200842018156379,-1.40293567294787,0.160636022041795,1 +"100506123",187.10892285671,-0.367771383738193,0.2706780796991,-1.35870397834589,0.174240410942178,1 +"100506730",165.234086880434,0.173262235628778,0.154669434445003,1.12020992544837,0.262624315329395,1 +"100506990",292.01785963718,-1.78236951068638,0.294676107326792,-6.04857152096745,1.46135745557434e-09,1.79220878351637e-05 +"100507053",209.944908102116,-0.216760342865604,0.320402792393483,-0.676524512306381,0.49870768843674,1 +"100652768",118.71471570016,-1.59016225528697,0.207400357796722,-7.66711432988717,1.75908971132294e-14,2.15734762196645e-10 +"145783",188.25187103372,-0.0552462194369028,0.177424529026033,-0.311378701356432,0.755512743523667,1 +"150776",1107.42852879882,0.427504161356422,0.117060559992495,3.65199142549661,0.000260214575398671,1 +"155060",274.887181844398,0.299272500296585,0.244126066759979,1.22589326190564,0.220238844779939,1 +"220729",369.82337212119,0.393908797788425,0.191288356359531,2.05924085127307,0.0394711715614793,1 +"257396",104.146745031194,-0.107857948991512,0.29837419179769,-0.361485517033739,0.71773652982,1 +"283335",131.190164082421,-0.762858018605036,0.227285376279074,-3.35638847995374,0.000789675609557985,1 +"283922",163.222717742145,-0.0527517640320989,0.243857021431497,-0.216322514407967,0.82873636055851,1 +"284454",2160.50400463773,-1.6746794422214,0.303204198543068,-5.52327260067123,3.3274286367193e-08,0.000408075848007255 +"284581",123.801471236596,0.818616171535383,0.329155098906895,2.48702260500888,0.0128817213622695,1 +"285074",143.835004445915,0.184111212840839,0.166658732019333,1.10471987042048,0.2692809906234,1 +"286437",184.144237468238,-1.20811152558821,0.300121532706454,-4.025407689657,5.68766892485509e-05,0.697535716944228 +"339803",128.09982360669,-0.51367247265706,0.312300425381266,-1.64480234706678,0.100010578013598,1 +"374443",340.903546892813,0.527851665176955,0.140822486289618,3.7483478603791,0.000178003261051701,1 +"389641",169.327169961191,1.38575337780413,0.349428162132215,3.96577473706826,7.31579307085956e-05,0.897208862210216 +"389906",286.93038739843,1.35639937368009,0.322745448634093,4.20269094241476,2.63760595056079e-05,0.323475993776776 +"407835",2356.62534280153,0.00465530958182484,0.084557007079562,0.0550552785938193,0.956094424584576,1 +"441455",172.241147018702,0.104473372649085,0.11891072383195,0.87858663442947,0.379625445268872,1 +"494127",369.865409068471,0.00403470946539685,0.109748597293726,0.036763198481695,0.970673817557202,1 +"642361",118.566328440605,-0.305999159132525,0.141651925961605,-2.16021883963276,0.0307557323829815,1 +"642846",296.603729427757,0.998626083244694,0.205118447952517,4.86853373362042,1.12429332587746e-06,0.0137883333485612 +"643387",149.936631928956,0.102305139288483,0.0947363627394939,1.07989304560702,0.280189810467909,1 +"644936",863.092111522858,-0.821297353382838,0.211502601804228,-3.88315484715905,0.000103109857712501,1 +"645513",96.6426870354119,0.0570793164735824,0.172699394319506,0.330512545793772,0.741012714590837,1 +"646214",1232.4806315734,0.516098733051596,0.178613645992238,2.889469783703,0.00385892091506231,1 +"646471",109.638752504604,0.532644012646799,0.238214063193369,2.23598894837047,0.0253524950965223,1 +"646762",514.325974982884,-0.301729553710618,0.288258425226663,-1.04673281786426,0.295222823233815,1 +"648987",202.201480565447,0.00793163664447961,0.279065209452465,0.0284221621894099,0.977325448468933,1 +"727896",133.568408736811,0.620617452167556,0.166366239110104,3.7304290551211,0.000191153965482513,1 +"728024",79.6446773509174,-0.290384992748674,0.129174944788966,-2.2479978081127,0.0245763296854242,1 +"728392",378.815234008142,-1.41187332557909,0.245497127813746,-5.75107879327309,8.86757721132648e-09,0.000108751966919708 +"728554",1036.0289453194,1.01379814137045,0.232438481785028,4.3615761623674,1.29128830250188e-05,0.158363597418831 +"728613",115.521568953731,-0.86004272576319,0.297626574999599,-2.8896704730226,0.00385645845977859,1 +"728743",508.928070679575,-0.220962407040598,0.230847810786783,-0.957177831955639,0.338477504103686,1 +"729737",698.761657140085,0.383995514428261,0.283071831457325,1.35653029286367,0.174930503723836,1 +"729970",228.834999847679,-1.37914514499863,0.294344141123792,-4.68548529531832,2.7929735171201e-06,0.0342530272139609 +"730101",281.16498307572,0.165590601912563,0.337337421015346,0.490875282718871,0.623514660008327,1 +"90246",196.512757891296,-0.00732314257772597,0.429493293385625,-0.0170506564142104,0.986396203659093,1 +"93622",880.195648906953,0.0205699882886489,0.129737050569545,0.158551379103708,0.874022337951483,1 +"9361",4399.2374425236,0.46742955367555,0.109751447937452,4.25898302446031,2.05359063360192e-05,0.25185235530494 +"83752",3220.26808662316,-0.102759542106021,0.143782675860619,-0.714686532928589,0.474802761090516,1 +"91694",1337.67149233693,-1.06506426947869,0.193251689607327,-5.51128050493542,3.56232472932251e-08,0.000436883504804112 +"164832",826.247776231699,-3.45669557283956,0.54447377617869,-6.34869065154961,2.17155200659835e-10,2.66319138089222e-06 +"79836",185.844404240501,-0.912748854387525,0.32353601117197,-2.82116618512172,0.00478494078973074,1 +"4015",1233.09709892499,0.471734667372463,0.306596438099441,1.5386175726525,0.12389768594934,1 +"4016",1598.38397192355,-0.517413970682932,0.306827126871118,-1.68633711093045,0.0917308869700581,1 +"4017",1924.26365393902,0.995144854469892,0.305101707075627,3.26168235506863,0.00110753171785983,1 +"84695",256.326362720875,-0.559910320118505,0.249510490854675,-2.24403518345295,0.0248301376970551,1 +"84171",429.871615790186,-0.691896087743107,0.405148999403352,-1.70775711839851,0.0876814188461071,1 +"1902",1278.83516090923,-1.57034784790379,0.218559280913534,-7.18499732127616,6.72085044962028e-13,8.24245099141431e-09 +"9170",1284.59080206137,1.63443390074163,0.432746307958194,3.77688699056337,0.00015880074005147,1 +"23566",369.561373978809,1.40811808354232,0.640949042494682,2.19692672924775,0.0280256795294201,1 +"57121",601.29013795759,0.872165940868723,0.406830358531731,2.14380741893601,0.0320483206521248,1 +"10161",1492.25848891106,-0.997043073695775,0.283597765087063,-3.51569439692054,0.000438605530880461,1 +"79888",5376.54796439899,0.548281477397544,0.307733758540597,1.78167478276587,0.0748022814641535,1 +"54947",1448.2640130098,0.118768386452441,0.277956377785276,0.427291459900194,0.669167052325158,1 +"10162",4478.85052911687,0.638969664923487,0.229822495230644,2.78027468234663,0.00543129358885822,1 +"254531",3275.65085804263,0.224594166835718,0.21384063573856,1.05028759412362,0.293585907210354,1 +"9926",3391.46135372111,0.325835441687441,0.132027001957376,2.46794547218935,0.013589101810708,1 +"23175",1661.75689723844,-0.995419005411709,0.290629679194685,-3.42504250828734,0.000614703235199561,1 +"9663",1564.75348004418,-0.716302854381717,0.2755471561783,-2.59956540403638,0.00933418892699358,1 +"64900",1059.26702203477,0.580273620890783,0.237742837120687,2.44076174036829,0.0146563208185005,1 +"4023",469.507844080094,-0.960229381143133,0.380159414711619,-2.52585979455893,0.0115415531892949,1 +"4026",25621.6738872203,-1.83311637576188,0.325835856749779,-5.62588904133283,1.84554954578487e-08,0.000226338196295056 +"339929",138.964234730741,-0.134045565434201,0.243183970251801,-0.551210531250911,0.581489361610225,1 +"9404",747.217590107139,-0.820233301417175,0.308954733538986,-2.6548656239108,0.00793400067919725,1 +"987",3614.61382699309,-0.107123617742106,0.23531343809627,-0.455237994943071,0.648938028742206,1 +"23143",1594.58343123348,-1.01148546998468,0.15861092356274,-6.37714885749702,1.80415086407501e-10,2.2126106197016e-06 +"57631",530.128640513301,-2.30124032566728,0.364071791036441,-6.32084215894919,2.6014163893577e-10,3.19037705990829e-06 +"84859",600.241302429953,-0.117990329939934,0.169780353054002,-0.694958679361472,0.487081197147596,1 +"4034",2146.18434257809,0.151076929682922,0.156178069018923,0.967337671876433,0.333375257136742,1 +"57622",198.660769019853,1.30218579817764,0.372225626874638,3.49837760798829,0.000468097878557868,1 +"79414",752.058493251236,0.402579942489398,0.19717701086649,2.04171845754365,0.0411794668044938,1 +"78999",899.426105765254,0.408946001626744,0.178431356889951,2.29189537508794,0.0219116812106469,1 +"145581",419.803348497806,-3.93631302091071,0.450173097720921,-8.74399878810834,2.25001868983621e-18,2.75942292121512e-14 +"116844",1120.52925416788,0.257441384180139,0.441522888332735,0.583075964990809,0.559842162902414,1 +"55791",905.512599479837,0.882694854450544,0.176362608138922,5.00500000405551,5.58620298550726e-07,0.0068509193414261 +"26018",2185.3352741872,-1.12272612905994,0.38831490839699,-2.89127742659865,0.00383679258108173,1 +"9860",514.533605293927,0.340692918181768,0.177132022308281,1.92338411622053,0.0544318276345853,1 +"121227",1550.09851870873,-0.32826428509283,0.295206628095365,-1.11198141861092,0.266146139673287,1 +"4033",1510.85376889351,-0.122584213003624,0.467218171572368,-0.262370388101733,0.793035900087636,1 +"4035",18893.7445079449,-1.02600162730752,0.244767213110339,-4.19174453256943,2.7681760493768e-05,0.339489110695571 +"26020",10381.8707295439,-0.732472955159407,0.172678296825155,-4.24183564829268,2.21699020953828e-05,0.271891679297774 +"84918",4602.86176623809,0.867402744467169,0.268115266013124,3.23518596074537,0.00121563528803257,1 +"29967",732.562045541465,0.1439370465138,0.23864075855184,0.603153658190092,0.546406473192525,1 +"4037",2192.94062562418,-0.299751469136116,0.286732849567989,-1.04540330690307,0.295836608976503,1 +"4038",604.721072807301,0.812667174060947,0.296719220801316,2.73884237046144,0.00616559267792847,1 +"4041",5397.61680523593,-0.0735735315100575,0.193891789586713,-0.379456663259863,0.70434877984914,1 +"91355",248.867082937443,0.181744008399941,0.249544386446717,0.728303333077568,0.466427922459632,1 +"4040",1656.91812095763,-0.0557867469068092,0.16207217079174,-0.34420929043083,0.730688895973817,1 +"7804",812.607874193634,2.16205371484398,0.320058005828862,6.75519335704431,1.42644893289388e-11,1.74939697130105e-07 +"4043",6248.40774869716,-0.280050725657314,0.143248247824153,-1.95500280046075,0.0505827397288192,1 +"10128",7666.70133167764,0.311775466835484,0.120105815399464,2.59583989167002,0.00943600236684816,1 +"122769",429.995474801681,0.743947023877758,0.146421159716094,5.08087099788204,3.75708203274664e-07,0.00460768540496048 +"55227",1931.84766698911,0.847858690435518,0.306185907047035,2.76909769823362,0.005621177661441,1 +"9684",1238.57630354204,0.161405699381617,0.114888000328946,1.40489606329192,0.160052187392491,1 +"131578",479.671619664292,2.57193642916014,0.497647447625377,5.16818973237508,2.36372287892036e-07,0.00289886973870792 +"10234",244.902399014435,-1.00205308535583,0.393498397102923,-2.54652393182107,0.0108801750897601,1 +"55222",723.19347812166,0.0245220059040278,0.285638466816794,0.085849802294857,0.93158581607646,1 +"10233",389.628946023017,0.0978207319798844,0.162478369366721,0.60205387560912,0.547138275752601,1 +"126364",180.531077355756,-0.416160375879444,0.302336651892527,-1.37648007039312,0.168673053334375,1 +"80313",292.784182795408,-0.192101876819416,0.177979628656046,-1.07934755381843,0.28043282139403,1 +"123355",519.113590752531,0.0251709035704079,0.124930551794673,0.201479167496011,0.840323917357028,1 +"26231",113.909973761087,-0.289575663094108,0.236700726520245,-1.22338307681257,0.221185042191236,1 +"81543",144.578879783793,-0.441477242466698,0.363881701385977,-1.21324386685335,0.22503659712546,1 +"2615",2402.40278610811,-1.30193510536631,0.244809926896026,-5.3181467021117,1.0482953374406e-07,0.00128562940183715 +"474170",188.225875739061,0.00520067691410742,0.127138035241163,0.0409057518015161,0.967371032012671,1 +"374819",153.139400559836,-0.0429592899079225,0.174138896558606,-0.246695544515895,0.805143854977993,1 +"114659",236.181426199829,0.534300446337712,0.197868846261448,2.70027574543863,0.00692820269451668,1 +"147172",610.563666530954,0.281673683376763,0.163761393389828,1.72002495549272,0.0854279054213273,1 +"64101",296.262728400645,-1.1182506193928,0.452171284094888,-2.47306863289916,0.0133958414046105,1 +"55631",738.254552494788,0.173872294543575,0.0875621036919433,1.98570257237405,0.047066359219569,1 +"10489",4857.58613494966,0.0106131843408323,0.108138859986398,0.0981440376028312,0.921817919345661,1 +"115353",1498.91733258956,0.207138016284296,0.160910959535054,1.28728345715427,0.19799550739246,1 +"201255",1357.74034993186,1.39708900320832,0.181943995114534,7.67867608012481,1.60741106569339e-14,1.97132893096637e-10 +"57470",3228.27965247238,-0.0565420823889409,0.116943948487338,-0.48349729182492,0.62874268221442,1 +"54839",409.190745731812,-1.02374023261411,0.250902503077226,-4.08023124543725,4.49909203181417e-05,0.551768646781689 +"94030",327.911738471758,-2.26873668520869,0.451194824922177,-5.02828614135812,4.94883027150553e-07,0.00606924544497439 +"115399",159.56425670696,0.216614995377131,0.351131153076506,0.616906228567918,0.537296578271391,1 +"255252",595.878461908631,0.528203467931114,0.0993691851261909,5.31556606064886,1.06326265466185e-07,0.00130398531967729 +"116064",2708.77766754837,0.697879274185941,0.167469324408067,4.16720660128444,3.08355008288837e-05,0.378166582165429 +"55379",7088.65185576202,0.723581894450083,0.18323426944387,3.94894413935891,7.84966650846098e-05,0.962683100597654 +"23639",113.734689073278,0.498372348742627,0.239811487090365,2.07818380507699,0.0376924331358492,1 +"65999",801.78980235648,1.10443138593843,0.236509715824595,4.66970831235331,3.01627703675991e-06,0.0369916215788235 +"100130733",135.16697220045,-1.77952954815805,0.171286453725348,-10.3892018863994,2.77666803079979e-25,3.40530567297286e-21 +"56262",6128.93962967502,-0.658645718863121,0.229665030108963,-2.86785375444677,0.0041326651241024,1 +"23507",1060.46395287423,1.14411724674906,0.27489384277128,4.16203300595931,3.15426744754708e-05,0.386839359767174 +"84230",831.455509575178,-0.328587727524083,0.231630142011386,-1.41858794658914,0.156019181984699,1 +"55144",1248.14876387709,0.771722013201127,0.188730582693199,4.08901409717811,4.33210527760689e-05,0.531289391245709 +"80131",737.207645331263,1.38174241364761,0.493783496826946,2.79827580817645,0.00513762215502095,1 +"85444",803.705658989072,-0.326078431978042,0.180225893766499,-1.8092762652658,0.0704080944325219,1 +"9208",8785.81893849013,-1.23818746993834,0.193481118372435,-6.39952611579872,1.5585992149432e-10,1.91146607720634e-06 +"9209",2057.82004336968,-0.434539078864313,0.151155846694701,-2.87477519637054,0.00404315255100488,1 +"79705",1045.19969295744,-0.322301708284251,0.157773035494611,-2.04281870646559,0.0410703880594895,1 +"120892",594.162860570843,-2.52087431410231,0.282190351587337,-8.93324062967514,4.13708516412576e-19,5.07372124528384e-15 +"57633",353.197462196877,0.876206016073523,0.419073466330452,2.09081721099137,0.0365444526753655,1 +"10446",252.816363272302,-1.48077617105666,0.450205236148971,-3.28911361343358,0.00100503445365988,1 +"221091",434.535613953211,-3.18128049286543,0.317884359695192,-10.0076659824216,1.41040691852051e-23,1.72972304487355e-19 +"90678",1441.83595451829,-0.549683313871594,0.190581327570655,-2.88424538163533,0.0039235289814801,1 +"220074",329.062974358239,0.113813818150562,0.130107304835098,0.874768855559749,0.38169968642377,1 +"222229",985.599100781563,0.782661361116853,0.113641243847468,6.88712420437215,5.69315136617568e-12,6.98208083547785e-08 +"4045",480.431187918094,-1.0419638052747,0.308877439248923,-3.37338915981812,0.000742489329136044,1 +"55341",2672.37174305442,0.716730974772568,0.119923414202914,5.97657246115289,2.27881217410417e-09,2.79473525032135e-05 +"27257",1785.11004564992,0.218868810757586,0.208045615982156,1.05202318118714,0.292788914257776,1 +"84967",1170.93249217771,-0.00889735131409907,0.170147656308871,-0.0522919416412506,0.95829607417254,1 +"134353",277.136847168958,-0.811636805199408,0.30315076272944,-2.67733717009905,0.00742099136464795,1 +"124801",491.173687700827,0.456298402051454,0.121221351447753,3.76417517707779,0.00016709971778202,1 +"26065",6488.09544151034,0.128003127473593,0.117859439928926,1.08606597444196,0.27744980469549,1 +"149986",2404.4455583647,0.498977629988625,0.145956097605937,3.41868300244504,0.000629249878862512,1 +"57819",1870.98607635881,0.656743026804948,0.170579442120508,3.8500713722641,0.000118083410066461,1 +"27258",1249.88093247888,0.227755419702844,0.156989688736029,1.45076674485166,0.146844822716033,1 +"25804",4178.36197113609,0.838887615858338,0.13792564992387,6.08217265114484,1.18564792985197e-09,1.45407862117046e-05 +"23658",1532.93941831723,0.548503728063913,0.11988072348368,4.57541222745944,4.75283201332015e-06,0.0582887318113583 +"11157",559.000679545867,-0.0945402265348087,0.126108377533935,-0.749674433876277,0.453450808984122,1 +"51690",2091.5355051759,0.649825066773637,0.142075316973032,4.5738069118437,4.78941251546643e-06,0.0587373550896802 +"4046",4208.39046435846,-1.93008732353219,0.231553296950305,-8.33539124232994,7.72423484853386e-17,9.47300161824193e-13 +"51599",9476.95033562954,1.47487098962817,0.434512173120694,3.3943145459782,0.000688006206944581,1 +"4047",2779.96299223864,-0.298333645588441,0.204048075256287,-1.46207527423981,0.14372058351797,1 +"7940",321.543035175338,-0.856596675843043,0.284147446154987,-3.0146203579666,0.00257301099844766,1 +"4048",4838.80381592067,0.110977949558772,0.15330604445666,0.723898069068932,0.469128315525773,1 +"4050",868.060936588584,-1.07791074762104,0.387830880922254,-2.77933192183612,0.0054470834491791,1 +"1241",606.409325474098,1.03976558674159,0.346897551110884,2.99732754933526,0.0027235790383244,1 +"4052",7251.32705109354,-0.881680323358458,0.293170045215999,-3.00740248789355,0.00263490643455827,1 +"4053",4117.67565228218,-0.037629877842725,0.253144824025978,-0.148649603986623,0.881830129478645,1 +"4054",6036.82237662501,-1.14358673859678,0.249393672735832,-4.58546813177619,4.52970365016833e-06,0.0555522855656644 +"8425",13672.1482091103,-2.71380684899183,0.351698690581679,-7.71628363046627,1.1977062703097e-14,1.46886696990781e-10 +"4055",7804.84754438757,0.551248185599645,0.161990507520679,3.40296597644324,0.000666585807857903,1 +"4056",91.997901999851,-1.7768097193802,0.218996815336114,-8.11340437372648,4.92209320558862e-16,6.03645510733389e-12 +"26046",1995.05679688281,0.286799660319357,0.189666771346085,1.51212391229054,0.130502342708406,1 +"84946",1426.91463273677,0.0881970428558576,0.176298753927751,0.50027036998799,0.616884714525351,1 +"55692",1476.89337096959,-0.0129390313977598,0.123823670756932,-0.104495621222208,0.916776043015938,1 +"51631",4325.29447971229,0.0832831047954079,0.074914821698796,1.11170397134839,0.266265451735128,1 +"51747",5045.0993271156,0.247192311103856,0.114529064754195,2.15833693948682,0.030901644710802,1 +"4060",22521.6904998395,-0.817722604128368,0.345477607112918,-2.36693373837425,0.0179361437190844,1 +"286343",775.399260612929,-0.876927245252437,0.365430932180491,-2.39970721695587,0.0164081899348718,1 +"7798",2526.12905575306,-0.459227983334341,0.165271867408391,-2.77862161622206,0.00545900738945464,1 +"338645",131.354451655635,-0.141697068106458,0.581525160436292,-0.243664552708517,0.807490628826616,1 +"56925",836.978518602989,-0.889210262516877,0.31743448932762,-2.80124023196211,0.00509066072533924,1 +"8581",9895.4042413844,0.716544424745792,0.82572522673023,0.867775867261825,0.385517043689598,1 +"4061",8281.5340626634,0.506118453903074,0.25857260686982,1.9573552667854,0.0503057139267817,1 +"58496",174.62218681913,0.231863606596167,0.233673952342259,0.992252684871611,0.321074277925446,1 +"54742",410.494834566128,1.75918025828976,0.533249734162353,3.2989800942951,0.000970367919609262,1 +"4065",657.948568981996,0.534914497543775,0.485152317060537,1.1025702212137,0.270213848112081,1 +"9450",194.113211599286,-0.981014889269746,0.304264291021731,-3.22421959532438,0.00126316495412535,1 +"4063",138.844118381545,-1.10342968344289,0.474164901035252,-2.32710114357633,0.0199598826706485,1 +"23643",224.67340982305,-0.853305513712851,0.259709903190298,-3.28561022598975,0.00101761718175537,1 +"55646",976.119452812667,0.0975341481162671,0.217743533362145,0.447931319062646,0.654202764520198,1 +"4066",263.696456372952,-0.808876121887501,0.278614856797372,-2.90320527478465,0.00369364446291858,1 +"4067",1808.40692840538,0.490065568474989,0.237305818572423,2.06512242903739,0.0389114177250896,1 +"66004",3205.16037502281,-2.48246878054541,0.40608766380315,-6.11313517208636,9.76925534586583e-10,1.19810147561699e-05 +"27076",16632.0182535143,0.944289955701371,0.644900821609768,1.46424058407041,0.143128225005828,1 +"284348",396.136080782633,0.405729827880231,0.403573791139699,1.00534236064845,0.314732024118841,1 +"130574",556.598203650469,0.730594517617458,0.275934432374781,2.6477105859161,0.00810388694748117,1 +"130576",1378.69346456127,2.08382041337846,0.548545613051492,3.79880973213225,0.000145392651873931,1 +"10434",3473.75957110171,0.689812515482688,0.257758494236741,2.67619702514682,0.00744628565312147,1 +"11313",4065.32910332907,0.988415387511982,0.218480403504974,4.52404596318627,6.06685401347278e-06,0.0744038976212302 +"127018",810.93413462856,-0.223256269180423,0.159117962043077,-1.40308652972806,0.160591037474397,1 +"57149",1254.93647427066,-0.696628103174594,0.187453039619805,-3.71628064600876,0.000202177006595701,1 +"57226",1521.25349474949,-0.0537301786832086,0.124528494804398,-0.431468948272481,0.666127426048615,1 +"57128",991.477180902291,-0.0814530145693884,0.145997923924665,-0.557905293306897,0.576909056778291,1 +"90624",885.222705185631,-0.473203082674084,0.19807870481444,-2.3889649476322,0.0168959142938784,1 +"388695",519.640235349005,0.374709080731559,0.193937402409422,1.93211353806065,0.0533454937243946,1 +"256586",454.107001264412,-0.138697853094828,0.161192051065138,-0.860450947663545,0.389540511897935,1 +"116068",818.291977634295,-0.545279577693854,0.217969262338498,-2.50163519316341,0.0123621233736618,1 +"145748",344.286434508082,0.120147756352964,0.199416490090746,0.602496595433455,0.546843628751988,1 +"1130",1775.73042736656,-0.711688363957843,0.183523476800279,-3.8779145663873,0.000105355699217076,1 +"10894",1025.31612572958,-3.76704321697582,0.352576950854555,-10.6843150349037,1.2053553105525e-26,1.47824775286158e-22 +"4069",4532.82573561643,0.0160596930243132,0.382112316875125,0.0420287237942177,0.966475800065356,1 +"84328",911.430498744701,0.330466250876701,0.0933142626586252,3.54143344716399,0.000397959239005899,1 +"54585",987.739056041336,0.193649191133329,0.207430173080959,0.93356327219449,0.350529218197227,1 +"8216",4335.30657470893,0.166992989523827,0.264763549218679,0.630724999784244,0.528220349908868,1 +"11178",291.42366772607,0.163899678575912,0.264459573262326,0.619753244528358,0.535420255250877,1 +"84445",4501.51804690822,-0.572037274403859,0.223322390384294,-2.56148643859442,0.0104225310277516,1 +"4074",3392.35691383497,0.453560762258408,0.152799806042629,2.96833336379936,0.002994194016599,1 +"126868",222.753708722981,2.59820697009432,0.638286899198907,4.07059423177139,4.68933676122221e-05,0.575100260396292 +"346389",1220.47431254454,1.12574847592722,0.549353086469524,2.04922572322651,0.0404400478536482,1 +"23499",11742.3707071768,-0.560562674999055,0.222912738694038,-2.51471799361122,0.0119127630036084,1 +"28992",814.097831562549,-0.143611383824321,0.177401637279736,-0.80952682301273,0.418212180553652,1 +"140733",411.651398894756,-1.19468187870307,0.4055343688034,-2.94594483379594,0.00321969817865015,1 +"8379",1519.17262038998,0.325723534441054,0.101626818610777,3.20509427426388,0.00135018249693387,1 +"4085",489.058894495762,1.8933597081654,0.277721808921198,6.81746858671308,9.26586562134921e-12,1.13636575980227e-07 +"9587",907.496046169917,0.0780404935255799,0.153145468479353,0.509584085644042,0.610342875534512,1 +"10459",1572.48087887328,0.940302137030673,0.180766922754272,5.20173781078791,1.9743362788836e-07,0.00242132601242285 +"8567",3330.64052303612,-0.101761880265586,0.150701035464211,-0.675256675922132,0.499512704036277,1 +"10296",2655.19399878557,-0.0805610695252601,0.122221326071639,-0.659140856302278,0.509805321847466,1 +"4094",2666.01033340583,-1.0286519466748,0.307324329057699,-3.34712175189254,0.000816553384182452,1 +"84232",6660.79641540585,-0.203387528418766,0.15978045344155,-1.27291870837736,0.203046889805345,1 +"9935",1499.70007913758,0.0653181650228927,0.26877370525995,0.243022898983809,0.807987658304177,1 +"23764",6898.00825519732,-2.08176985058748,0.318946971255259,-6.52700930939831,6.70958782345093e-11,8.22863850668022e-07 +"4097",2211.75123639887,-0.811182985317882,0.246878730998113,-3.28575484019351,0.0010170949149318,1 +"7975",2406.73453080819,-1.04918864951262,0.254581209266445,-4.121233662672,3.76848965100216e-05,0.462167570798905 +"9500",9664.78660273063,0.413611432885598,0.28593078094277,1.44654392060148,0.148024702416948,1 +"10916",9070.658788314,-0.554668599042615,0.22020162451493,-2.51891238434078,0.01177179448672,1 +"57692",204.847455923062,-0.794687257480373,0.312067734304485,-2.54652170065424,0.0108802446434793,1 +"64110",2587.96924906889,0.722494183661035,0.175145327174352,4.12511252978969,3.70553534993212e-05,0.454446855315675 +"28986",816.856879420015,-0.798708889248456,0.208086495843397,-3.83835042255482,0.000123863630934609,1 +"9223",1029.86079725657,-0.74041086053299,0.272401747135244,-2.7180841103981,0.00656611441660115,1 +"9863",533.653070664649,-2.07458203842545,0.309941298620635,-6.69346759421278,2.17943312405048e-11,2.67285678333551e-07 +"100505881",834.697302926863,-2.22854227919156,0.307684712025402,-7.24294120602122,4.39057278223016e-13,5.38459846012707e-09 +"260425",937.046713420171,-0.104686266821741,0.231621862575905,-0.451970576773315,0.65129017918671,1 +"79917",303.126194399397,0.0264662804185838,0.347060993166924,0.0762582973588578,0.939213603077594,1 +"4116",1435.39359930109,0.447161837299066,0.119387830963101,3.74545574445747,0.000180066589229245,1 +"55110",385.640056693907,0.503676191787761,0.242675029181027,2.0755171782097,0.0379386284679643,1 +"84061",4354.14895630743,0.259650247200684,0.200744009780618,1.29343957752185,0.195859069206181,1 +"84549",964.360899370626,-0.0856242497687665,0.179611455456545,-0.476719313649135,0.633562007984352,1 +"4118",5521.62749018935,-2.15532738305897,0.614784536518781,-3.50582562675293,0.000455193326093852,1 +"114569",9961.3593079513,1.90886729997819,0.604590488664121,3.15728966262096,0.00159243074497121,1 +"378938",17815.5134656892,-0.338876894124186,0.328060643912605,-1.03297027672256,0.301617808685689,1 +"7851",2609.9668163501,-1.79023361185593,0.465327932710801,-3.84725155317197,0.000119450307748334,1 +"115416",843.188965576333,0.169410684975718,0.103485043511802,1.63705477841731,0.101619024307466,1 +"10892",1427.46028866926,0.0434192504254309,0.230747585611581,0.188167734498071,0.850745164804987,1 +"256691",1399.92050856359,-3.8096427161323,0.413010078311066,-9.22409141130691,2.85975043198675e-20,3.50719792978855e-16 +"158056",303.366452908887,0.856904071680762,0.296630392763029,2.88879390846953,0.00386722440472971,1 +"9794",2350.04017859939,0.0204497581456803,0.122021792201514,0.167591032525636,0.866905026425874,1 +"84441",828.840365646169,-0.469699614003051,0.187143392696775,-2.5098380831649,0.0120786531157403,1 +"55534",1086.80881270427,-0.329907952464192,0.165822675658914,-1.98952254963484,0.0466435553763293,1 +"10046",169.426042760033,-1.21249535085912,0.242945197898109,-4.99081834648012,6.01240207353009e-07,0.0073736099029773 +"284358",124.126813043144,-0.5961955568439,0.356766906867582,-1.67110666759567,0.0947006106296342,1 +"4121",3720.57584099176,-0.459761824947392,0.235902947149096,-1.94894481185439,0.0513020157538763,1 +"10905",1743.84222207158,0.325065433119771,0.167177025502603,1.94443843071432,0.0518426032889519,1 +"11253",3352.73380918339,0.471083736323211,0.169563368796965,2.77821642531346,0.00546581990131628,1 +"57134",2215.63349396038,-1.26085743466689,0.381137676997197,-3.30814167888251,0.00093917283667418,1 +"4124",1228.49434692798,0.0406523211860452,0.22723361579484,0.178901000381689,0.858015437268296,1 +"4122",2158.93010496808,0.126266783398548,0.188013426578734,0.671583863430473,0.501848653954111,1 +"4125",5369.33121866277,0.0771480116459595,0.139963345888989,0.551201538916831,0.581495525247354,1 +"23324",2853.91382054456,-0.424660681502317,0.161973814234129,-2.62178601837752,0.00874703314960675,1 +"4123",2892.3131525914,-0.0937180729300651,0.124443533044554,-0.753097172968497,0.451391523116078,1 +"4126",2034.06695164993,0.214247747699848,0.193298660680955,1.1083767830832,0.26769912736554,1 +"63905",3385.76871913292,-0.362701930147924,0.149215438462296,-2.43072656479559,0.0150685816825849,1 +"79694",829.475347673607,0.252083359218045,0.150436547071527,1.6756789764537,0.093801089967337,1 +"149175",832.48310886182,1.69307696021022,0.315400194052637,5.36802764277205,7.96023553428643e-08,0.000976243285924888 +"7873",3008.48017124099,0.622872009164427,0.176145045646957,3.53613129950209,0.000406032835447364,1 +"54682",2036.53473547106,0.0220136281397554,0.227035356881062,0.0969612330086886,0.922757180916288,1 +"4128",9308.87566648516,-0.374388417792507,0.288380951302505,-1.29824253683033,0.194204005455717,1 +"4129",2541.6080489723,-3.53394957219236,0.452599659731795,-7.80811363023678,5.80502391204501e-15,7.11928132573201e-11 +"4130",3381.48412879418,-2.38657783293907,0.411244640344672,-5.80330440522906,6.50205917328334e-09,7.97412537011468e-05 +"4131",9513.72237226121,-2.47816436081334,0.408191423632288,-6.0710838526724,1.27049823030129e-09,1.5581390296415e-05 +"84557",956.098737072646,-1.36422237611056,0.290702506410592,-4.69284696907195,2.69429034766766e-06,0.0330427768237962 +"81631",3565.07376497863,-0.482487010228321,0.0790964655012952,-6.09998192928633,1.0608045722714e-09,1.30097072743365e-05 +"643246",529.256022697491,-0.28611894044952,0.10509539354427,-2.72246889992373,0.00647961319408478,1 +"55201",1940.8406916948,0.0488222795408614,0.13585737047386,0.359364231550876,0.719322629076197,1 +"4133",443.59912716952,-0.592872025782994,0.42190883495783,-1.40521358326675,0.159957776179059,1 +"5604",2515.83580975097,0.472409009581638,0.14008612038803,3.37227562782876,0.00074549801146954,1 +"5605",2970.33164752823,0.080492040749727,0.102359719341154,0.786364414320594,0.431654025127991,1 +"5606",4739.33945272023,-0.60333264024598,0.275841895832772,-2.18724076857327,0.02872495216583,1 +"6416",1485.34624109689,-0.312440196813128,0.183005250878472,-1.70727449247131,0.0877710448436273,1 +"5607",868.300661508498,-0.226332027573467,0.125034354593126,-1.8101587224565,0.0702711766941157,1 +"5608",357.304979604445,0.455091582103694,0.314806279656604,1.44562421880566,0.148282629933025,1 +"5609",2152.53557886133,-0.0158019060540195,0.128573965332755,-0.122901288866089,0.902185264998278,1 +"4214",1229.17520729277,0.533930897923738,0.280269174095507,1.90506465667106,0.0567716669518906,1 +"4294",1010.29910067281,0.279062167905419,0.207583005776889,1.34434014413182,0.17883841977268,1 +"4296",4193.48706546481,0.120128483376817,0.170656861956297,0.703918272021082,0.481483671720198,1 +"7786",536.999588632886,-0.805836968379364,0.283739115844316,-2.84006301345323,0.00451046231334566,1 +"9175",1687.33353515344,0.258654024176066,0.147764474603276,1.7504479670808,0.0800410452238968,1 +"9020",1255.49830128501,-1.22276603502477,0.164716342199159,-7.42346520508766,1.14095152210039e-13,1.39926294670392e-09 +"10746",3137.98404448946,0.0736554476752318,0.141905365478729,0.519046249074159,0.603728489975323,1 +"4215",1823.97830325305,-0.86988460878964,0.163199391797343,-5.33019516316485,9.81072799407249e-08,0.00120318768119305 +"4216",1658.62044776502,-0.26897182348616,0.129464823352474,-2.07756683646702,0.0377492733415975,1 +"4217",2559.43498406103,-0.190031398334328,0.278457081601648,-0.682444121159684,0.494958164927566,1 +"9064",2654.17036458847,-0.556766994222068,0.214649338697661,-2.59384444228961,0.00949094179214626,1 +"6885",1587.66533236482,0.216650694545012,0.186216545620154,1.16343418262596,0.244653387475012,1 +"1326",1576.36275961766,-1.81874151189633,0.279539306837797,-6.50621028030115,7.70703248323351e-11,9.45190463743758e-07 +"4293",227.097862678845,1.47267124146851,0.45395546870064,3.2440874557228,0.00117827562806672,1 +"4134",17307.4456348338,-0.762419270953989,0.209967733406128,-3.63112588103853,0.000282187496277085,1 +"11184",512.488649829811,-0.506479741530932,0.364879711781515,-1.38807317912541,0.165114762737031,1 +"5871",1107.1884809924,0.781357147290907,0.182240870183458,4.28749679753138,1.80697861797425e-05,0.221607857708362 +"8491",2029.82759737226,0.454740222384862,0.156222621038919,2.91084747753385,0.00360449923972021,1 +"9448",6046.60983439482,0.311912574903001,0.182421740356125,1.7098432143783,0.0872948694602124,1 +"11183",2682.36156258833,0.0827898339025155,0.130198260924895,0.635875113188131,0.524857824709023,1 +"4135",306.377785197096,-1.38687091301199,0.404363852730739,-3.42975986514672,0.000604115639495691,1 +"79929",172.281326145138,1.10679039745284,0.255156227058558,4.33769698749636,1.43983470381781e-05,0.176581328076216 +"9053",2505.75150992875,1.24307336121604,0.435544253557499,2.85406902068547,0.00431631526011486,1 +"55700",7871.18816999232,-0.755811133834442,0.200275106704623,-3.77386459191434,0.000160738027087107,1 +"79649",668.780750743322,-0.84776656386033,0.242534482369243,-3.49544755689486,0.000473267445902205,1 +"79884",377.815837073027,-0.712779997955708,0.310510737384192,-2.29550837423632,0.0217040070501145,1 +"5594",5948.47445905648,-0.159709856762976,0.117593053766934,-1.35815723503121,0.174413797100043,1 +"5602",1302.5896780257,-1.20329850042505,0.26612815867691,-4.52150011636276,6.14029262276325e-06,0.0753045487255685 +"5600",581.909985861983,-0.21430207563657,0.225345759955439,-0.950992269297396,0.341608300260894,1 +"6300",391.233651459007,0.324438611401518,0.290596854930771,1.11645603142818,0.264226980821686,1 +"5603",3214.99603641361,1.73500774815096,0.456076425276645,3.80420397107467,0.000142260924950649,1 +"1432",3221.31867421824,-0.448158355578251,0.113234940530461,-3.9577744597101,7.56513384449774e-05,0.927788014689203 +"225689",141.225609456711,2.45806663811789,0.415534031016695,5.91544002329652,3.30989506247158e-09,4.05925530461514e-05 +"93487",4442.34847441287,-0.562869355037094,0.136183831098475,-4.13315847040668,3.57811835810163e-05,0.438820435437584 +"5595",3203.54922575872,-0.42108040147428,0.188329143995235,-2.23587487598274,0.0253599684671449,1 +"5597",3833.06880263472,0.179236945730162,0.2818225502173,0.635992207124522,0.524781501328154,1 +"5598",1353.35255376822,0.216329363586976,0.214227397591569,1.00981184488557,0.31258544413641,1 +"5599",482.977219545637,0.120036358091379,0.177148384441601,0.677603459211621,0.498023152217093,1 +"9479",470.853226588968,-1.08613846197012,0.301697989521106,-3.60008518351143,0.000318112948387804,1 +"23542",357.502089861804,2.28057066403473,0.395501676756246,5.76627306043076,8.10437133094018e-09,9.93920100026503e-05 +"23162",2224.86609521607,-0.197822788349829,0.174945501298513,-1.13076807852453,0.258152718826652,1 +"5601",1980.21541968516,-0.258510542977842,0.118477243828796,-2.18194257921292,0.0291137708315148,1 +"79109",4328.22389786208,-0.29915957211387,0.183593039118841,-1.62947121279593,0.10321330414933,1 +"9261",6424.35691547988,-0.463601276404091,0.146671386210547,-3.16081608268563,0.00157327803413975,1 +"7867",2158.16782970306,0.142698928414124,0.179896314798207,0.793228747204699,0.427644561605953,1 +"8550",1259.133034209,0.365650965130406,0.0835821520943439,4.37474934502374,1.21572089544908e-05,0.149096010617875 +"23005",1939.07573356083,-0.95372361234403,0.252905854973411,-3.77106181446175,0.000162554396753715,1 +"22919",6940.91706964735,-0.317364675087417,0.0944437049011451,-3.36035816701182,0.000778414870567366,1 +"10982",2358.5888090208,-1.43324919018864,0.264368883981698,-5.4213989505961,5.91344210372522e-08,0.000725224539600861 +"22924",898.743751848544,-0.447244540332845,0.201643140910461,-2.21800026677546,0.0265548142273002,1 +"4137",761.168401848352,-2.12710525997137,0.479455810358114,-4.43649907669822,9.14337270786596e-06,0.112134322889268 +"64757",757.040750560412,0.145607798156076,0.279897121089144,0.520218991854874,0.602910949741924,1 +"54996",454.600490011939,-0.671363346662469,0.228503376075141,-2.93808939803891,0.00330241781377122,1 +"4082",14973.3294600453,0.56840233644056,0.183755992509297,3.09324517083056,0.00197980501530238,1 +"65108",9324.26666743911,1.67102001494121,0.306399046410642,5.45373764871866,4.93219540050675e-08,0.000604884443918148 +"8685",445.016935686968,-1.37369110110559,0.549023127511876,-2.5020641795748,0.0123471539753536,1 +"4139",870.077274059345,-0.33491668000672,0.266724498764902,-1.25566523344346,0.209237369288084,1 +"2011",3925.72361771055,0.48118990268632,0.153858741400939,3.12747847996749,0.00176312726859281,1 +"4140",3328.89850450012,0.25342710568551,0.133108452977346,1.90391443981879,0.0569213281923678,1 +"57787",2130.26684681371,-0.362793573092963,0.145020947458483,-2.50166323866298,0.0123611442404495,1 +"92935",380.674231361,0.138397433833482,0.255539496394069,0.541589209442825,0.588101526978628,1 +"83742",3399.96878611799,-0.695799750811008,0.263588228922965,-2.63972239448659,0.00829739628941581,1 +"153562",453.480533738056,1.13589749671625,0.468401639946024,2.4250502129906,0.0153062695238916,1 +"91862",561.086394399534,1.93993962827864,0.495899280685924,3.91196298086041,9.15489475109193e-05,1 +"5648",356.682420071041,-3.79334619169602,0.421190631713848,-9.00624540546089,2.13231690227599e-19,2.61507344895128e-15 +"10747",95.5874748232199,-0.3769727685281,0.231280067808498,-1.6299405828618,0.103114055380359,1 +"23139",3063.01540005369,-0.289315321052808,0.255734531947627,-1.13131112505392,0.257924163487351,1 +"23031",676.52170592384,0.0308291191032193,0.193952709361611,0.15895173212425,0.873706902420507,1 +"375449",4698.15501050129,-0.311240578373808,0.319290073226532,-0.974789398331802,0.329664737000258,1 +"84930",890.676018936414,0.851222994686818,0.20204603559266,4.21301507940966,2.51984233285278e-05,0.309033463701064 +"4144",12305.7642383435,-1.2445216756143,0.278243469633404,-4.47277945913341,7.72093971069503e-06,0.0946896046119638 +"27430",3458.99749591073,-0.118811967151338,0.104380678346681,-1.13825632323184,0.25501346615236,1 +"4145",157.519119251908,-0.544904892355425,0.363675520116403,-1.4983271136342,0.134048282922078,1 +"4147",5719.29117234075,-3.36063705616623,0.32781317180931,-10.2516840236094,1.16299386124511e-24,1.426295671431e-20 +"4148",133.574873775955,2.16826160396325,0.326382241532838,6.64331978903054,3.06695410097013e-11,3.76131250942976e-07 +"9782",12440.6867139514,-0.242524913287673,0.0952023116288578,-2.54746874459463,0.0108507572741876,1 +"23383",2770.91393746117,0.163928383836654,0.102651126678418,1.59694675685542,0.110277576054984,1 +"57506",4610.98105375721,-0.255472851785905,0.181141559269156,-1.41034919218235,0.158436599865132,1 +"4149",3022.65992979047,-0.305361376364061,0.140653362306945,-2.17102080857248,0.0299295994626059,1 +"4150",9321.02432120218,0.607368182906679,0.127753948084557,4.75420284079736,1.99230936940506e-06,0.0244336821063837 +"151963",639.72394570658,-0.692313871243142,0.210267397026601,-3.29254026555319,0.000992866795165775,1 +"4152",2654.61785053847,-0.0963642813965293,0.116359105377502,-0.828162790388392,0.407578313490486,1 +"8932",4082.32651275538,0.00573652072952102,0.166234832167793,0.0345085362358397,0.972471635471939,1 +"53615",4335.21175856194,0.053107657913781,0.0877944227151961,0.604909244475148,0.545239300367948,1 +"8930",1494.56042819848,0.0789265125493985,0.10915351968668,0.723078035192571,0.469631942974274,1 +"55777",690.243234597936,-1.08996172932108,0.206605531551644,-5.27556896049817,1.32344831009198e-07,0.00162307700749681 +"114785",3529.24873616251,0.218975753715407,0.17935827683746,1.22088457570236,0.222129725271305,1 +"51562",691.816697442097,-0.287288848306874,0.179361732496722,-1.60172877629918,0.109215598889678,1 +"255374",97.6111696036513,-0.23470866203938,0.188800174555998,-1.24315913685644,0.213809197409913,1 +"153364",302.099874797024,-0.220157048677201,0.289333853596222,-0.760910090336128,0.446710771264913,1 +"4154",8792.91546628243,-1.00869822640025,0.192957383693719,-5.22756997991513,1.71752399916608e-07,0.00210637143257729 +"10150",3712.51036001903,-0.591543161933893,0.167621784035939,-3.52903511519161,0.000417077783916747,1 +"55796",2351.42128587559,-0.997008999010676,0.297482661686325,-3.35148607773973,0.000803790804704035,1 +"154141",1540.17260285153,0.594504550731947,0.331950095770795,1.79094556171612,0.0733020312813914,1 +"129642",1615.41273799416,0.86381404593784,0.299030266254437,2.88871777682479,0.00386816073922402,1 +"79143",6227.6637384212,0.729620684700571,0.248614510002892,2.93474698919256,0.00333819760807534,1 +"4155",1604.03954843603,-0.532737467218156,0.214394133834629,-2.48485095039531,0.0129605686949109,1 +"54799",1091.45235814234,0.481137700571286,0.151640617253128,3.17288144355243,0.00150934144770085,1 +"8720",6164.38558253516,0.0345303223215353,0.103341388731677,0.334138361650939,0.738275153575744,1 +"51360",1019.67674448052,0.313704196065445,0.167928770035373,1.86807892417341,0.06175107076125,1 +"4157",473.339998498688,0.729532775293236,0.192379707192284,3.79215035691922,0.00014934844050074,1 +"4162",10731.9892331398,-1.90022028003509,0.305618322089465,-6.21762552403135,5.04734357255719e-10,6.19006215738413e-06 +"27349",642.142167672944,0.196395758834747,0.135134787657789,1.45333235237765,0.146131498821468,1 +"4163",2700.95792044976,-0.838533822224562,0.260558669362345,-3.21821501574549,0.00128991082197798,1 +"56922",2319.00927850795,0.325147491610215,0.238524817930662,1.36316000335333,0.172832089504912,1 +"64087",4498.36084420004,0.717128595890551,0.27367404683712,2.62037487360779,0.00878331560600421,1 +"84693",339.583643605976,-0.036515709789645,0.166702395126401,-0.219047301401741,0.826613201183135,1 +"23263",1473.04398163714,-0.461387379431556,0.293495137678832,-1.57204437211647,0.115940261005679,1 +"100289410",113.149132354511,1.45546365692423,0.543649998723887,2.67720713757132,0.00742387225729027,1 +"90411",3921.19126755339,-0.135094993950408,0.123858831198073,-1.09071749380847,0.275397210525268,1 +"4170",31086.4487624034,-0.963519389599398,0.212859197825422,-4.52655745884016,5.99523038755683e-06,0.073525505472997 +"55388",482.884833331927,3.21597646439961,0.413273949472321,7.7817062229687,7.1552873184742e-15,8.77524436737676e-11 +"4171",3123.42436161684,2.20520304378107,0.263949615732944,8.35463631063675,6.56346165327206e-17,8.04942937157286e-13 +"4172",5485.83365876996,0.610538431489248,0.147539451296013,4.13813679071033,3.50137609113093e-05,0.429408763816297 +"8888",4082.36192701995,0.0722152563031323,0.150362267327762,0.480275122120341,0.631031776225454,1 +"4173",5176.39345761551,1.65626511870255,0.232899375965314,7.11150518045705,1.14784152055728e-12,1.40771284081145e-08 +"4174",3250.97565818589,1.0206311559229,0.206419099097874,4.94446085843523,7.63548802629551e-07,0.00936416251544881 +"4175",2554.74760323703,1.12576861914525,0.219586620067107,5.12676327365123,2.94765762366253e-07,0.00361500730965973 +"4176",6980.56418265919,0.995849383222318,0.176365895513476,5.64649633832539,1.6375065166158e-08,0.000200823799197762 +"84515",642.295929513479,1.19686306571934,0.171069121533333,6.99637114513462,2.62677130355805e-12,3.22147232668359e-08 +"254394",748.256718678705,0.354942370190492,0.12589662424977,2.81931602460056,0.00481261102722589,1 +"79892",3398.0811337764,0.0375347424073998,0.115081010517805,0.326159304984489,0.744303829166689,1 +"57192",1213.37413089922,0.278886481698373,0.11829834222926,2.35748427613547,0.0183992344987342,1 +"79648",828.13637526194,-0.323950330568076,0.153910215536086,-2.10480070760555,0.0353086595622565,1 +"10445",2534.75871511143,0.244794053908583,0.1229565935529,1.99089814409395,0.0464920862952252,1 +"79772",340.09169323879,-0.438759593477607,0.282925146468624,-1.55079744220002,0.120950233781476,1 +"55784",792.22668629182,0.336959351012128,0.358757998235988,0.93923857494176,0.347608267785679,1 +"28985",1480.57981179898,0.41975519645389,0.131520070916037,3.19156759519893,0.00141502996489058,1 +"90550",1306.77776678035,-0.250362824105818,0.138313282555029,-1.81011410821089,0.0702780935750966,1 +"9656",2015.72409105139,0.294625657434582,0.186189803962747,1.58239415458825,0.11355961832091,1 +"4188",1305.15736322196,0.880657865526038,0.421237852797056,2.09064275605431,0.0365600999880312,1 +"29969",2179.73612008085,0.155079719357775,0.131288735862948,1.18121115523317,0.237518850868483,1 +"266727",536.624064626133,-0.607346867049128,0.299070018292181,-2.03078486609036,0.042276822901858,1 +"4190",6917.14289657585,-0.057703369080779,0.146121531033601,-0.394899839008051,0.692916808808709,1 +"4191",9721.72730355205,0.164531579337048,0.117179048484367,1.40410407376706,0.16028786071444,1 +"4192",10416.429080432,1.54267591501638,0.359005355805463,4.29708328878614,1.7306018268138e-05,0.212241008040444 +"56890",671.114283629959,-0.126049847165916,0.294364113595989,-0.428210645741,0.668497766333806,1 +"4193",4916.88275459862,0.0238168990665962,0.240269125392592,0.099125924014083,0.92103828906458,1 +"4194",1619.71552885408,-0.103544920802013,0.179230319933644,-0.577719890475834,0.563453248033845,1 +"23195",2033.26337751234,-0.0158178699017834,0.19403133740841,-0.0815222433296373,0.935026636131147,1 +"145553",141.045035849754,-0.392208531267578,0.109844709650694,-3.57057278875604,0.000356201450324477,1 +"4199",2305.60006766825,-0.21036436429265,0.326536084266719,-0.644230069595681,0.519426254772139,1 +"4200",1194.05706659387,-0.112376962663277,0.184869034763988,-0.607873367255595,0.543271464610732,1 +"10873",729.929316777024,-1.00963319307055,0.297509599379482,-3.39361551753741,0.000689764601085045,1 +"4201",2829.04243567771,0.0685917810169513,0.11347369701436,0.604472955598433,0.545529244299356,1 +"64769",2613.66250943049,-0.0306722740213805,0.117326594082113,-0.261426441816883,0.793763668211133,1 +"2122",4136.48989191157,0.268268368926068,0.335822978057535,0.798838633609243,0.424383985760643,1 +"4204",2811.05258583483,-0.787432625710558,0.162014084840622,-4.86027265151162,1.1722419458893e-06,0.0143763752243864 +"51102",859.743337099585,0.280823865817279,0.117672751352874,2.38648168406595,0.0170104546787324,1 +"5469",2823.86834201777,0.120802668290364,0.156301583436985,0.772881922460286,0.439592264261384,1 +"84246",1166.2506891025,0.254068522320597,0.168769136489254,1.50542052655922,0.132215995047991,1 +"400569",636.188175085923,-0.0757951624187785,0.16413796705033,-0.461777148705256,0.644241139592865,1 +"9968",2460.81606516208,0.109410405735554,0.126004871535271,0.86830298227738,0.385228489992547,1 +"9969",4005.87659820907,0.358406137878109,0.170489433651855,2.10221906543479,0.0355340904557139,1 +"23389",3704.48516342154,-0.550670587472146,0.16170596326483,-3.40538206726674,0.000660715441827113,1 +"9282",2819.41549833358,0.25855718728039,0.131279193859176,1.96952144265713,0.0488932427177914,1 +"51586",5763.78882376209,0.209720253304815,0.201138020545557,1.04266837635162,0.297101909040935,1 +"10025",2842.56618049635,-0.250854461879483,0.102899803831244,-2.43785170174751,0.0147748339046531,1 +"9440",1257.42133503673,-0.256335682324331,0.125346378547929,-2.04501865386015,0.0408530190899531,1 +"54797",618.609676215677,0.358381618040544,0.155699961384452,2.30174506694728,0.0213495530789081,1 +"219541",599.906432623733,0.428652220186546,0.165584737549417,2.58871817856172,0.00963338990946494,1 +"9477",828.268350555975,0.112652317189343,0.107551806168565,1.04742375979055,0.294904178130379,1 +"9412",1433.22656997858,-0.0605903428653059,0.138101817419144,-0.43873675232971,0.660852293490825,1 +"6837",1644.57480779075,-0.393104199974852,0.197649996453515,-1.98889049849948,0.0467132907498526,1 +"9439",1296.58121747424,0.304002093170025,0.111456084066048,2.72755045825829,0.00638064980865067,1 +"9862",3381.84374788564,0.151036114524735,0.124761521390385,1.21059853103374,0.226049307533676,1 +"81857",2413.96225662578,0.321181037333249,0.158883445630504,2.02148836877683,0.0432292351818929,1 +"9441",629.954842953507,0.16111015020389,0.140582838816,1.14601576949771,0.251788627201953,1 +"9442",615.271258788801,-0.0611487360416236,0.13310101098067,-0.459416014882894,0.645935449961088,1 +"80306",1300.08298268319,0.0118030545123207,0.125225643679842,0.094254293014432,0.924907157103075,1 +"55588",3009.57631713683,-0.150743402530628,0.151671707605009,-0.993879510628318,0.320281530619353,1 +"90390",474.556135375686,0.319816257568923,0.144352127536721,2.21552853446906,0.0267238080162055,1 +"51003",229.853075609599,0.225324207113645,0.162500932937574,1.38660254461557,0.165562991971301,1 +"29079",2137.1238672024,-0.109106166985579,0.111457314557215,-0.978905399067111,0.32762672424908,1 +"10001",903.194573262643,0.378962651455061,0.131238298871345,2.8875919203019,0.00388203158483104,1 +"9443",442.197460036211,-0.440723591105983,0.127670653443145,-3.45203521106947,0.000556375115933857,1 +"112950",1937.56384962879,0.547470033471461,0.175871852532045,3.11289171967815,0.00185263975505772,1 +"55090",707.271309692244,-0.206231216120822,0.127299306064481,-1.62004980621309,0.105221578360398,1 +"4205",2993.76684328787,-0.869589414628062,0.189711812973497,-4.58373888793917,4.56734530403286e-06,0.056013922808659 +"4208",1509.91761820997,-2.09888541316323,0.237643306399761,-8.83208302796675,1.02744131665977e-18,1.26005403075154e-14 +"4209",4314.45477791643,-1.35609340907864,0.147583131460019,-9.18867485506643,3.97710379429519e-20,4.87752009332362e-16 +"55384",815.57299454004,-2.07897134141405,0.324366628649925,-6.40932561425049,1.46164725824298e-10,1.79256419750919e-06 +"1953",1459.25628532104,-0.130494909624846,0.252766450385901,-0.516266733285282,0.605668127332186,1 +"1954",2782.18062780899,-0.661738326335591,0.231359830275866,-2.86021270652972,0.00423356947339993,1 +"1955",2273.13649637367,-0.260287625938306,0.223658142935522,-1.16377442163303,0.244515440482969,1 +"4211",1866.18127763444,-1.47899514228707,0.282509357367476,-5.23520762663893,1.64799502814715e-07,0.00202110110251967 +"4212",2298.82633812237,-1.42078290351993,0.363644189872836,-3.90706889615579,9.34225218506421e-05,1 +"56917",291.86303574327,-0.425514903864008,0.343978534137525,-1.23703912202232,0.21607255887393,1 +"4213",867.86002300999,-0.970354021345723,0.229202440084846,-4.23361121716906,2.29968371689289e-05,0.282033211039744 +"9833",917.711547616923,3.67653932339965,0.4513135725526,8.14630790429231,3.75204033154238e-16,4.60150226260358e-12 +"7795",502.170969087171,0.637355024239794,0.156099764107044,4.08299799737516,4.44584062651846e-05,0.545237894436225 +"4221",2054.13974547549,1.2168339796413,0.16803239116995,7.24166317677748,4.43215476970891e-13,5.43559460957101e-09 +"4222",324.844755848997,-3.17792404974524,0.309874635693578,-10.2555152429054,1.11778265624118e-24,1.37084864961418e-20 +"4223",192.538691749114,-2.57541611777487,0.422493461465251,-6.09575378715461,1.08922954024735e-09,1.33583110815935e-05 +"56257",2963.00004603731,-0.485008407728762,0.119910322764201,-4.04475942144291,5.23768817025589e-05,0.642350077200182 +"10461",744.704339140876,-0.50150483183574,0.269901355755229,-1.85810415969363,0.0631542242510827,1 +"4232",2457.80857755475,2.42469000558265,0.349425320617194,6.93907928967451,3.94663590196031e-12,4.84015427016412e-08 +"4233",3158.57115624617,0.778455483407393,0.327769734627859,2.37500721136206,0.0175486073388454,1 +"23173",3555.51272453705,-0.406576667970462,0.163455962037487,-2.48737741286682,0.0128688795923876,1 +"254042",160.46704826698,0.0625252614104747,0.206686662935288,0.302512317546348,0.762261545020125,1 +"10988",3650.45130400334,0.0446778609754985,0.107083462713799,0.417224656760573,0.676514091776506,1 +"79006",381.483772598201,-0.333509977072455,0.233900030745471,-1.42586546914728,0.153907178541124,1 +"284207",3499.18776652162,-0.374420361436879,0.277132186781308,-1.3510533214691,0.176678352642594,1 +"4234",804.442082124793,0.51915024629864,0.142584303246295,3.64100559794353,0.00027157523076697,1 +"57721",662.266708377754,-0.471885303015337,0.115727164116695,-4.07756732498435,4.55093544749881e-05,0.558126723281254 +"196074",398.173328661848,-0.279947369443512,0.134642400712589,-2.07919175506307,0.0375997291772636,1 +"79066",1859.45480396445,-0.471592664166284,0.156472703979894,-3.01389732631503,0.00257915074607996,1 +"64745",1613.31728447435,0.601226605961732,0.125006304338122,4.80957027843578,1.51255110642276e-06,0.0185499267691687 +"92342",319.332437041677,0.397097771062133,0.144207750126635,2.75365069293034,0.00589346318149567,1 +"151194",409.853231064364,0.342471322717507,0.150548995637406,2.27481638962469,0.02291694662796,1 +"79091",463.450470101139,-0.238939947138326,0.178593933231221,-1.33789509428059,0.180930636557576,1 +"124512",900.269948023155,0.294701059681167,0.0922100553718359,3.19597530326588,0.00139359039702438,1 +"728464",18435.5270545622,0.146661961718633,0.377181240549932,0.388836840095225,0.697396846684908,1 +"339175",699.414791111587,0.611732962036948,0.106463024516092,5.74596640305369,9.13974545000725e-09,0.000112089838198889 +"55798",513.11987035833,0.381739019205134,0.131667334086912,2.89926899372894,0.00374033850805037,1 +"56339",1432.546009942,0.580103137041386,0.120904651334202,4.79802166947142,1.60240446537775e-06,0.0196518883633927 +"64863",577.834236935855,0.193746581135882,0.138946006933616,1.39440193649069,0.163196263667681,1 +"29081",1180.5406539699,0.265719730847554,0.155367209849225,1.71026905294508,0.0872161316877775,1 +"131965",509.661303002528,0.641465555735832,0.117741405343563,5.44808815440983,5.09141237361681e-08,0.000624410813500366 +"25840",8282.46676664673,-0.485673173526529,0.242221720709266,-2.00507688618674,0.0449548280629829,1 +"79828",1050.60991126085,0.0171612502249122,0.199876962436689,0.0858590705787215,0.931578448259988,1 +"51108",4233.59205444505,-0.0312907859763572,0.120600778443371,-0.259457578800373,0.795282208752707,1 +"92312",1372.40849675787,3.3746354592838,0.388255068188496,8.69180014836387,3.56741220618809e-18,4.37507432966908e-14 +"84206",218.299577174754,0.454757121645305,0.353763918784918,1.28548192027969,0.198623930654628,1 +"51320",1793.33103156276,0.0216066631313768,0.137927579000767,0.156652232192494,0.875518935345631,1 +"399664",1322.70045265621,0.883053706830919,0.181221254245786,4.87279326316356,1.10031348186351e-06,0.0134942445415741 +"4236",1831.04267298151,-0.0807485968019549,0.103800213086087,-0.777923227720021,0.436614273961404,1 +"4237",1613.13557712157,1.64390855535158,0.348241857805667,4.7205943757311,2.35156468198693e-06,0.0288395892598878 +"4238",1587.33013979873,0.124017921469282,0.172490538139551,0.71898390953449,0.472150833811017,1 +"9848",1362.41031426863,-0.169951776165366,0.447309591428649,-0.379942168515909,0.703988344382694,1 +"4239",13787.6454593238,-3.71874394337526,0.329959769526851,-11.270295008109,1.83952521316855e-29,2.25599372142991e-25 +"8076",2007.53207251786,-3.01899959244119,0.48376717279863,-6.24060449363699,4.35883095368959e-10,5.34567028160491e-06 +"56947",1805.32505920285,-0.40544526799073,0.231876035229315,-1.74854321443682,0.0803700094406839,1 +"4240",4694.72242741485,-0.990782703459344,0.248155859528721,-3.99258234458362,6.53576257486574e-05,0.801545922181535 +"9258",893.533577997523,-0.763246920725043,0.223404101904742,-3.41644094364251,0.000634454233968466,1 +"55669",1945.478510787,0.423501521945826,0.160780711102119,2.63403189998856,0.00843775601063793,1 +"9927",9092.94455076403,-0.561380813462956,0.179275387309538,-3.13138809452785,0.00173982077613111,1 +"4242",518.635238087783,-1.36879847166009,0.206613138733841,-6.62493430983294,3.47402635791259e-11,4.260545925344e-07 +"64747",3479.01658201838,-0.0238190143130089,0.209734016198637,-0.113567721367859,0.909580476374927,1 +"10227",3909.60374284548,0.388804966963559,0.195550608808333,1.98825751212384,0.0467832172230989,1 +"79157",1216.29409314388,0.569659141389773,0.155926171385688,3.65339016745755,0.000258800518030153,1 +"126321",2012.39614640578,0.682669093912956,0.151804497428623,4.49702812154126,6.89098768358743e-06,0.0845110729515162 +"84879",1994.85523878254,0.326638336662371,0.513939282367955,0.635558222281429,0.525064406904818,1 +"113655",671.706244453399,1.14676209326809,0.220996989059223,5.18903944415629,2.11381622027604e-07,0.00259238421254654 +"84975",2068.20653679772,0.42006511310889,0.231914806792171,1.81129061537381,0.0700958776193397,1 +"54842",2942.24397948197,-0.285320928717242,0.210118545178329,-1.35790455085765,0.174493973169104,1 +"256471",561.241131516684,-0.0991056052883738,0.102149634077773,-0.970200296683569,0.33194666288135,1 +"84804",493.457503958617,0.737457298754015,0.191521427642813,3.85052110267981,0.000117866773354591,1 +"23269",2227.36791578794,0.255289792575727,0.126550572189355,2.01729465271593,0.0436647733236308,1 +"4245",10159.675830958,0.202621811882506,0.199801220721381,1.01411698662771,0.310526933480184,1 +"4247",1670.89738199027,0.381377558939101,0.15159748819712,2.51572478854795,0.0118787899801016,1 +"4248",445.039796049665,0.0620942211067522,0.397349957437448,0.156270863868224,0.875819521426559,1 +"11320",1566.72588333971,-0.130900478019286,0.27531815380476,-0.475451677306078,0.634465068163022,1 +"11282",4383.37167291672,0.787608944362608,0.193424893644553,4.07191095997165,4.66290050495813e-05,0.571858117928066 +"4249",3572.82410131637,-0.203188607365719,0.221814391289521,-0.916029867063535,0.359651229994165,1 +"85001",108.274938377635,-0.23041633071126,0.192926879309811,-1.19431948277797,0.23235301935058,1 +"11343",4308.24354837346,-2.95386434669488,0.267127517782139,-11.0578811618501,2.00784621414937e-28,2.46242259703279e-24 +"4255",1450.8521308226,-0.564603076346621,0.185666954144636,-3.0409454334388,0.00235836566831892,1 +"4256",16922.4701179918,-2.75919456392602,0.335321597641664,-8.22850237900447,1.8956853924017e-16,2.32486856524145e-12 +"23295",2799.31333756811,-0.339394788821012,0.129897577663346,-2.61278766645378,0.00898070783075938,1 +"4257",10418.3447592588,0.553876910878148,0.369508103921108,1.49895741121933,0.133884680959903,1 +"4258",3140.98921052278,-0.00577621571144751,0.274524131454755,-0.0210408304757701,0.983213084866902,1 +"4259",3786.07847875121,-0.293419339791302,0.197704188204278,-1.48413315092812,0.137773600034566,1 +"375056",3586.21681382855,0.0216823650017498,0.109184455483471,0.198584724407332,0.842587603780031,1 +"440823",339.388134393023,0.440755236864048,0.405128453133847,1.08793947562708,0.276621827623972,1 +"57534",3441.7321732709,0.181941528631845,0.167948198963086,1.08331931961851,0.278666712892101,1 +"142678",1515.43865442038,-0.401190143942118,0.165774583808549,-2.42009441209303,0.0155164779182983,1 +"100507436",906.894007307806,-0.0633412411149871,0.207085902560287,-0.305869401692118,0.759704084031192,1 +"64780",4053.61187960344,-1.20506961937111,0.328116733949132,-3.67268564716949,0.000240014665594464,1 +"9645",1690.45754525765,-0.35728774181735,0.26297275516003,-1.35864926995926,0.174257754559848,1 +"57553",2449.89055038525,-0.568675775497897,0.243066506614526,-2.33958920716192,0.0193049606163679,1 +"84953",209.371513400096,0.687246080472558,0.453967849006648,1.51386509413906,0.130060058795946,1 +"85377",5233.63152952642,-0.588930992607916,0.215572442863446,-2.73194006054371,0.00629625945154496,1 +"79778",1678.01415692645,0.206014474204482,0.197854882463406,1.0412402849982,0.29776404330744,1 +"4277",359.765707882128,1.84823540372412,0.36594726092526,5.05055127083352,4.40536845386634e-07,0.00540274387182168 +"10367",2406.41254985194,-0.499647498182734,0.133702122891122,-3.73701993190948,0.000186214167481439,1 +"4281",2539.29259127236,0.0218967363498857,0.253627324439755,0.086334295400758,0.931200676455984,1 +"58526",3629.69632933321,-0.130300623428906,0.239716276566213,-0.543561852767702,0.586743016501537,1 +"11043",1272.01593048843,-1.30776738336011,0.208955081488813,-6.25860531384171,3.88435547555264e-10,4.76377355521776e-06 +"90007",10541.5825549663,-1.14217390124102,0.249921002691126,-4.57013971992027,4.87399156402412e-06,0.0597746325411918 +"84299",2812.01944130474,0.784346377068388,0.246974271242017,3.17582221469453,0.00149412488829245,1 +"57708",2257.51240307341,-0.375933593377313,0.110194043497389,-3.41156002126577,0.000645922790430058,1 +"54531",1614.1586516913,0.172885204832839,0.118943092680184,1.45351193530587,0.146081668294795,1 +"166968",1022.01213244615,-0.187484210207208,0.183166623687129,-1.02357190645963,0.306037520251891,1 +"57409",1069.5485414296,-0.0804492529980781,0.16298495281753,-0.493599265498731,0.621589219623883,1 +"60672",1434.73892778564,0.98254150671806,0.148117898451391,6.63350963651775,3.27797564601375e-11,4.02010933227126e-07 +"50488",5533.38880249129,-0.211028483102957,0.192912448360219,-1.09390806501461,0.273995301233296,1 +"9562",729.231971729801,0.559292762137488,0.15394702812569,3.63302084455215,0.000280122379287288,1 +"54468",1333.04691005658,0.15581119601946,0.165820854755521,0.939635706553202,0.347404454294528,1 +"4285",911.536553791577,0.0773784895605549,0.191146306893042,0.404812893423323,0.685615050619407,1 +"145282",465.722726289922,-0.277484743634886,0.214163839174723,-1.29566571417551,0.195090678427451,1 +"399959",1551.94030162417,-3.21712642897504,0.360066013827498,-8.9348239084745,4.0782720275909e-19,5.00159281463748e-15 +"642587",3491.03532381003,1.82668596232197,0.682187849760833,2.67768762366902,0.00741323199894999,1 +"100506211",317.572274021395,1.27098622783121,0.301288385927805,4.21850388927957,2.45928729897477e-05,0.301606994346266 +"84981",2454.45085870149,-2.253771679228,0.324357219315019,-6.94842459183592,3.69387857689557e-12,4.53017268670472e-08 +"100616387",193.291495638796,0.769002914351764,0.241811284877655,3.18017794223641,0.00147184642309379,1 +"554202",279.497072746997,0.252421843087431,0.712319195513882,0.354366195207373,0.723064465273529,1 +"100616394",110.885469099284,0.425760819207604,0.131287823639113,3.24295740005522,0.00118295897240849,1 +"100616408",623.65075464208,0.776771306115109,0.214747783213911,3.61713305948944,0.000297884190979419,1 +"81571",202.530110107462,-0.577353978533757,0.274072567504166,-2.10657339328563,0.0351545750660325,1 +"693199",398.917946918463,-1.17495116974489,0.455182424364292,-2.58127534556246,0.00984360357483248,1 +"79003",770.935501957552,-0.135934684288105,0.160215910708908,-0.848446847049296,0.396189162232815,1 +"54069",832.83030411945,1.56448630033995,0.191010168836026,8.19059168354014,2.59945064124442e-16,3.18796626642215e-12 +"55320",1081.8610854488,1.05712277105717,0.195001776654906,5.42109302382386,5.92357235337974e-08,0.000726466913418491 +"129531",633.514250057008,0.353517116001885,0.107367116341506,3.29260138530164,0.000992651009066301,1 +"4286",831.242255695362,-1.68800663082189,0.289594496701677,-5.82886294472915,5.58063119606714e-09,6.84408609885674e-05 +"4288",4089.02964486989,3.24713818095439,0.434956203551279,7.46543710479939,8.30235412287796e-14,1.01820070962975e-09 +"8195",1806.54745745678,0.0640718237036081,0.128929628256386,0.496951899808448,0.619222971240275,1 +"4289",3021.56876819732,-0.210292062740591,0.140528045411721,-1.49644195309537,0.134538523807718,1 +"8569",1394.91572685336,-0.00102937966700593,0.124447127613191,-0.00827162254966198,0.993400275333496,1 +"2872",8840.87207376181,-0.219675505922305,0.209381284801669,-1.04916495345029,0.294102205645502,1 +"23608",5050.68673184879,0.232414960444043,0.0983300258753413,2.36362147141799,0.0180972927812378,1 +"23609",1575.31503679449,0.302238065379744,0.183702928645443,1.64525447475626,0.0999173438642103,1 +"54903",671.135022652779,0.505250243902943,0.151525543177156,3.33442291846617,0.00085476587443484,1 +"9761",7366.73034351792,-0.0575180342757866,0.147147779697262,-0.390886185263024,0.695881365789651,1 +"4291",1129.52722321395,0.304698774544663,0.275777430388757,1.10487204886613,0.269215035444208,1 +"8079",10676.6054704142,0.348614445402495,0.163723351652061,2.1292896943825,0.0332302999107133,1 +"4292",1782.28708633211,-0.123055661949838,0.138265507077872,-0.889995375929385,0.373468368996383,1 +"27030",928.537348923389,0.133183266712926,0.150972272604727,0.882170377481331,0.377684678436225,1 +"197259",679.279831521192,-0.0399683312988216,0.228458165488535,-0.174948140782595,0.861120382669188,1 +"4298",4582.6452784709,-0.400935743349653,0.138184101374673,-2.90146072783406,0.0037142733285095,1 +"8028",1630.66350257813,-0.0498962266646751,0.166155558115086,-0.300298270071201,0.763949652662473,1 +"10962",1094.75132517802,1.0012960402095,0.338928905244838,2.95429520679619,0.00313384072131715,1 +"4300",774.918849465945,-0.417199063478219,0.185735270075811,-2.2462026911094,0.024691027951486,1 +"4302",7755.98280263977,-0.649283981130085,0.185397721379174,-3.50211413764992,0.000461581836342389,1 +"79083",2324.33100711725,-0.903855186072492,0.453260860515331,-1.99411699709713,0.046139270150417,1 +"64223",1655.76720998806,0.0182271076880632,0.125894989713982,0.144780246850752,0.884884378615704,1 +"6945",1998.97175023657,0.37599222020867,0.107072420109197,3.51156927082826,0.000445469351482682,1 +"22877",3909.12317910575,-1.14501573953604,0.26480266814816,-4.3240339968757,1.53201671707361e-05,0.187886530181908 +"23417",751.57976012899,-0.472610035564825,0.170419374406484,-2.77321775890079,0.00555049650842384,1 +"166785",379.64188127193,-0.595863047301363,0.177865280215846,-3.35008072726875,0.000807880116864433,1 +"326625",1199.1366729832,0.185956230187923,0.120329603690805,1.54539053137539,0.122251829217238,1 +"25974",275.80618397206,0.768880335693535,0.199457647909173,3.85485512214433,0.000115798183161257,1 +"27249",3766.05794960714,-0.0210838194055865,0.0949133163683718,-0.222137632655856,0.824206742988675,1 +"23531",1016.43589613718,0.280815786144169,0.266408760107828,1.05407864978055,0.291846910109597,1 +"4311",1645.65720152964,1.35550296977642,0.482646696787294,2.80847870460781,0.00497761743749598,1 +"79258",112.296543814592,1.00055301101233,0.379735214536061,2.63487022723122,0.00841694564632964,1 +"93380",1824.6687164767,-0.698068330870144,0.141733999754197,-4.92520024892243,8.42740058852409e-07,0.0103353640817659 +"4312",2696.27491760973,3.30159528168708,0.587035273181548,5.62418551749618,1.86385263489955e-08,0.000228582887144081 +"4319",1234.36192702395,1.00545207277535,0.770566305293762,1.30482226625786,0.191953375342942,1 +"4320",6189.54540049364,4.78793048008514,0.402748072354275,11.888152442536,1.36390285586852e-32,1.67269046243715e-28 +"4321",2291.01895004958,2.55564829965481,0.510067716168766,5.01040983117077,5.43142425943357e-07,0.00666109871176933 +"4322",674.872632528391,4.73592937077256,0.685449341528692,6.90923323408623,4.87280254256508e-12,5.97600503820181e-08 +"4323",19723.3822357633,0.874944049863238,0.232606051305093,3.76148447107954,0.000168907909627284,1 +"4324",2280.96489285836,0.747392626161565,0.262864494459058,2.84326199207544,0.00446543471350365,1 +"4326",166.212334423358,-0.0238117501426069,0.331627855650946,-0.0718026237448218,0.942758984765928,1 +"4327",1215.1422250772,-1.13281864241189,0.35155754313336,-3.22228512668314,0.00127172512527237,1 +"4313",32373.8754797317,-0.727817710519094,0.309601903814635,-2.35081794249836,0.0187321965898742,1 +"10893",770.111899580984,-0.584863452923306,0.171270865484298,-3.41484496659432,0.000638183243950511,1 +"64386",205.500773020765,0.0775669212275951,0.351329459199568,0.220781147713361,0.825262843325275,1 +"79148",1804.73767497639,-1.21893823747144,0.449886858628777,-2.7094328587118,0.00673983449026668,1 +"4314",1766.74872796461,0.250976360587595,0.572353967133682,0.438498507915426,0.661024951537602,1 +"4316",2201.29234984153,0.897601864607097,0.812977109566359,1.1040924203707,0.269553048887568,1 +"4318",1807.73234034321,1.96375747911751,0.491049865747643,3.99909992059078,6.35838335020977e-05,0.779792134069726 +"22915",603.442192022126,-4.04919747929963,0.389207448518924,-10.403699864194,2.38489313850544e-25,2.92483294506307e-21 +"79812",3986.10411898437,-1.06470809697958,0.41725181989998,-2.55171588522922,0.010719389143643,1 +"64210",2602.20328992053,0.196371008478657,0.100237474761898,1.95905781690045,0.0501060161648525,1 +"253714",548.630574682962,1.20957988460592,0.175635090590984,6.88689191058505,5.70245158092354e-12,6.99348661884463e-08 +"4330",556.849101716997,-1.80393484781044,0.322618736342012,-5.59153776455831,2.25067328021554e-08,0.000276022571085633 +"4331",829.565793091547,0.350733943215065,0.127332697290902,2.75446881026783,0.00587874929004806,1 +"84057",146.475297031416,1.39795330714898,0.286738420797653,4.87536097625192,1.08609664116875e-06,0.0133198892072936 +"4332",226.764526211561,-0.388862963940608,0.332647387898058,-1.16899449112697,0.24240585089313,1 +"55329",207.918726407295,0.686585167753025,0.207341677249354,3.31137076183348,0.00092840112602885,1 +"4335",2140.98188357981,-0.923983084344372,0.197067898142637,-4.68865346945343,2.7500863041078e-06,0.0337270584335781 +"64112",1709.4766601844,-0.886085445511726,0.201268080259865,-4.40251352508389,1.07003917025557e-05,0.131229603840143 +"55233",2019.50205570609,0.514674844886663,0.144439319105847,3.56325997708077,0.000366277604300364,1 +"92597",1476.69364149385,-0.240929735151591,0.128537412784887,-1.87439384325246,0.0608761614623306,1 +"81532",2164.70016112926,-1.08474083130821,0.222157774832542,-4.88274980304366,1.0461657874997e-06,0.0128301772178964 +"126308",2374.08825860312,-0.661720434078238,0.159967697768543,-4.13658784435142,3.52508443816508e-05,0.432316355496565 +"79817",546.856621849848,-0.194692767864344,0.22586084130413,-0.862003199581566,0.388685757143273,1 +"148932",1865.99899147673,-0.754913900815728,0.203910963773545,-3.70217415898295,0.000213759798150814,1 +"25843",107.365041379823,-0.0660052517652175,0.125385840638167,-0.526417109214849,0.59859843074106,1 +"55034",618.861156270324,1.35220864906134,0.336312593209395,4.0206899068434,5.80279482627735e-05,0.711654757494654 +"4337",787.676965153138,-0.0340852525707259,0.21811804690574,-0.156269749588652,0.875820399703349,1 +"4338",1233.63177760045,-0.565879027802902,0.142839126221546,-3.96165282420738,7.44327165735076e-05,0.912842836057497 +"27304",431.038377673161,0.529948607046583,0.172911365890734,3.06485698216893,0.00217774107837652,1 +"7841",3646.38818820498,1.25558475023319,0.175714051227643,7.14561380527581,8.95946262425286e-13,1.09878849623837e-08 +"5891",284.66842134177,-0.0337256080446322,0.187866721431679,-0.179518798154452,0.857530358293006,1 +"84315",465.960750216674,-0.297903092657427,0.195516771630301,-1.52367027224,0.127591099145722,1 +"22879",1487.85277397277,0.360189801010775,0.10901350495266,3.30408421568677,0.000952872034492909,1 +"23041",1880.15286404644,-0.126112227551407,0.124196399119899,-1.01542579692394,0.309902901265312,1 +"22880",2614.64215987419,0.279088589982385,0.128807439890016,2.16671172271329,0.0302568421755121,1 +"150291",359.866140003931,0.486158358355721,0.13721012137445,3.54316688510887,0.000395352430113915,1 +"23515",2360.70482238912,-0.00782591444936956,0.169205873987931,-0.0462508438089317,0.963110318305071,1 +"79710",1202.98560350966,0.437524471712215,0.199380800639151,2.19441626430254,0.0282054977117054,1 +"10933",6968.03573346731,-0.346042498191808,0.0866392479287413,-3.99406165755755,6.49509614446358e-05,0.796558591157013 +"9643",10069.1308435457,0.259221519999672,0.092733988945506,2.79532373132359,0.00518477672214335,1 +"79906",129.808697485803,-0.248721226736166,0.174089170106366,-1.42870016890884,0.153090429253561,1 +"729967",532.714080708791,0.7240299965577,0.146282791177814,4.94952270686172,7.43956982593362e-07,0.00912388843452499 +"118812",283.635854605682,0.2566648071868,0.236316252444001,1.0861073012641,0.277431522488513,1 +"56180",676.136929839812,0.189463183869679,0.218756608920244,0.866091245447833,0.386440125713579,1 +"158747",572.012542282405,0.291791494627201,0.121633250248663,2.39894514066403,0.0164423778552889,1 +"64598",928.295569465975,0.329371838045798,0.167985929732883,1.96071086768718,0.0499127606016635,1 +"4343",3236.74505527838,0.969250579080721,0.166218730251711,5.83117544943913,5.50382762457417e-09,6.74989419877777e-05 +"26002",969.648573414524,-1.06706097780865,0.382695943488613,-2.7882735523179,0.00529897785034613,1 +"9526",2717.51109877022,0.526159816877772,0.196634792859514,2.67582257049335,0.00745460983846473,1 +"8777",1728.09494187294,-1.1124631760852,0.29857716445584,-3.72588164306762,0.000194633721490573,1 +"219972",1237.06958561348,-1.45704732689042,0.286765265310786,-5.0809756380757,3.75501278344048e-07,0.00460514767761141 +"4350",2049.77985049588,-0.0988899122602686,0.122491534582202,-0.807320380119044,0.419481925290597,1 +"10199",2172.6139262547,0.488143518137904,0.120206773032178,4.06086533915385,4.88911662786614e-05,0.599601263241504 +"10200",1142.44753605057,0.535223656990693,0.200773656622984,2.66580619187379,0.00768039556814939,1 +"54737",2783.77721211753,-0.628327471386265,0.126739072663083,-4.95764611641575,7.13523767187459e-07,0.00875065548078699 +"10198",410.689508516354,0.837490409216281,0.213140286377426,3.92929193936273,8.51963556457227e-05,1 +"4351",1634.45419665988,0.0272970606347478,0.132418056280974,0.20614303971376,0.836679179855549,1 +"84954",1369.78438954433,-0.000306357243252957,0.138947691677121,-0.00220483866666064,0.998240794694152,1 +"4354",808.571736272957,-1.06173392818313,0.233781338291259,-4.54156835589827,5.58372751510282e-06,0.068478834245221 +"4355",513.614263812854,-1.27016445826074,0.403487359819513,-3.14796592098675,0.00164410859820487,1 +"4356",218.750979726765,0.334602509587903,0.309273653966581,1.08189787683647,0.279297908399417,1 +"64398",1526.06875191879,-0.0500619489996981,0.12548445621812,-0.398949403842331,0.689930485640114,1 +"51678",189.109680247347,0.905015518149742,0.311976076479031,2.900913199383,0.00372076928735091,1 +"143098",2101.36635668251,-1.31597352125847,0.20598952943223,-6.38854569397627,1.67470784389571e-10,2.0538616997537e-06 +"65258",1515.37896031267,-0.95901463393137,0.196573487116277,-4.87865707629278,1.06810583314203e-06,0.0130992499376539 +"744",632.080523844058,-1.40643674425083,0.370304804670122,-3.79805156863608,0.000145837986336709,1 +"23164",4802.98757172077,-0.702433226931707,0.155308315718085,-4.52283075560978,6.10180294910504e-06,0.0748325113678242 +"4357",2735.91684313618,0.334099764097372,0.172966433100991,1.93158729186661,0.0534104656211452,1 +"4358",1862.35490281404,0.161077836531316,0.129579228932382,1.24308377089796,0.213836965537325,1 +"255027",141.419155522219,-1.75241076499879,0.359764366546096,-4.87099592942664,1.11037127827696e-06,0.0136175933567887 +"84769",629.667581613208,0.369058679023118,0.154671722607642,2.3860772531726,0.0170291734102031,1 +"4359",292.334418236569,-2.50587398439269,0.352388419978507,-7.11111331225223,1.15110580563705e-12,1.41171616003327e-08 +"9019",7525.85319069843,0.475493663883727,0.160934738382442,2.95457443596655,0.00313100612663027,1 +"10205",9717.51269713239,0.378452040521639,0.479879185575496,0.788640249248943,0.430322299467057,1 +"196264",191.670543641739,0.695908290659912,0.485209978436456,1.43424150695007,0.151503355990498,1 +"3140",2181.73294508674,0.139963297080074,0.285273455967573,0.490628532561348,0.623689202155701,1 +"112609",142.419831584499,-0.631199309863533,0.437388969688639,-1.44310751666385,0.148990186233949,1 +"22808",1700.03637878145,-1.14247425126825,0.348813189362566,-3.27531838275969,0.00105542952699788,1 +"4360",343.646585607041,-1.18681365528916,0.32867065884036,-3.61095103370823,0.00030507626212424,1 +"9902",6841.52876344539,-0.841321377311243,0.226669505324462,-3.71166547571959,0.00020589999283381,1 +"55686",1079.61030099427,1.68114328831907,0.453264567255629,3.70896692520629,0.00020810660730663,1 +"93621",13602.3132312207,-0.557857961744246,0.0976289405400695,-5.71406345964889,1.10309831347268e-08,0.00013528397716429 +"114932",2893.66698231919,-0.21318946470805,0.100228071432183,-2.12704346857856,0.0334164716461065,1 +"116535",2770.34264952643,-3.3690664274548,0.347423167800313,-9.69729925838227,3.09584745399132e-22,3.79674731757495e-18 +"84245",1258.08690720836,0.510617433295498,0.146535140037118,3.48460739974149,0.000492859621065957,1 +"79922",461.537644594865,1.18110722887581,0.16737287447354,7.05674221459665,1.70451407493444e-12,2.0904160614996e-08 +"65008",964.825474419663,-0.219774964991173,0.129215010413353,-1.70084701682972,0.0889717178847353,1 +"124995",1959.98104961417,-0.208591547179754,0.155739179300592,-1.33936462306092,0.180452000343099,1 +"65003",2100.59554788321,0.357413449781012,0.113329640955007,3.15375083490212,0.00161186641617535,1 +"6182",3110.00527572681,0.736356287502126,0.144773139494512,5.0862769853108,3.65160645797297e-07,0.00447833016005806 +"28998",1530.43969008712,0.608430175273582,0.191567355606843,3.17606396635903,0.00149288029048449,1 +"64928",1929.04122280231,0.424375981247382,0.169413353738137,2.50497361561794,0.0122460528141445,1 +"29088",2438.91253075733,0.344784643944486,0.178439405764706,1.93222255177832,0.0533320428287259,1 +"54948",1740.10093299844,0.324765659165083,0.138703632847063,2.34143585498712,0.0192097266071558,1 +"63875",2127.05893069959,0.651546303295872,0.130026366852907,5.01087832464733,5.41821663357267e-07,0.00664490087941352 +"29074",2225.94203894041,0.197862998027783,0.1186152478038,1.66810761425096,0.0952943659291783,1 +"9801",2353.72797043603,0.797935819494435,0.112375398244716,7.10062728994115,1.24191888317053e-12,1.52308931832034e-08 +"51069",1213.93831276147,0.20746723422602,0.155487173432513,1.33430449371483,0.182104085488064,1 +"55052",3211.79419671916,-0.0253743482820886,0.11058250268083,-0.229460788704752,0.818510793681987,1 +"219927",1461.42043489074,0.208037562021987,0.121985974986466,1.70542197203464,0.088115753354848,1 +"29093",844.650388272941,0.14523427880293,0.113695633873744,1.27739539201839,0.201462690780701,1 +"6150",1477.54859581199,0.0716546138941949,0.164505639399223,0.435575425595612,0.663144803702466,1 +"79590",2914.26655280021,0.17843083416975,0.148035396008784,1.20532547607169,0.228077678440878,1 +"51264",2085.72996353722,0.375451742640905,0.156647955038802,2.39678674737826,0.0165395465317883,1 +"10573",2596.94264481888,0.154116353200935,0.115963394056095,1.32900864497277,0.18384511776362,1 +"11222",3755.99153772136,0.656696177805096,0.134601462828696,4.87881902621562,1.06722930929328e-06,0.0130885002491727 +"51263",2113.32081890823,0.401520278497824,0.099829953890808,4.02204211109822,5.76957393207612e-05,0.707580547029815 +"64983",1651.21459725166,0.322976403879478,0.148339437139442,2.17727942149243,0.0294597256241089,1 +"9553",1447.31465205721,-0.215792843506561,0.136087546369862,-1.58569133813372,0.112809345027172,1 +"64981",1506.77018047388,0.144897740687986,0.153492069666425,0.944007993395903,0.345165563558634,1 +"51318",1809.62890680603,-0.0206876143934838,0.14420984386931,-0.143454939263591,0.885930896350077,1 +"64979",839.287059268209,0.331564262772012,0.179870981784956,1.84334493247172,0.0652786646963574,1 +"51253",3186.24840895637,0.442033738351522,0.127831917917908,3.45792933057134,0.000544344151796913,1 +"64978",2738.11147761198,0.437527193231777,0.100038814762009,4.37357433984648,1.22228595643541e-05,0.149901149697238 +"54148",924.462674207848,0.287863669930213,0.109219691869085,2.63563891276361,0.00839790440116242,1 +"51073",2981.99387799734,0.343053377274354,0.137120457195759,2.5018395087802,0.012354991815766,1 +"64976",1323.14837026033,0.0355224297436331,0.142960772757672,0.248476760851356,0.803765548525455,1 +"64975",1407.11932148022,0.163121255104445,0.165008463947771,0.988562957328524,0.322877017383764,1 +"28977",1767.53207836054,0.517437630931253,0.0975913069593312,5.3020873175403,1.14486055387217e-07,0.00140405698326882 +"84545",2313.92714383269,-0.222145433922154,0.110635504926476,-2.00790364783694,0.0446535314811789,1 +"65080",995.417937202049,0.0182265932832053,0.100609395477649,0.181161940161488,0.856240467599569,1 +"84311",1619.27449959333,0.190232693637538,0.139946721435932,1.35932225982605,0.174044493343643,1 +"653479",121.239287431222,0.406328625982458,0.152226715793787,2.66923334622083,0.00760246125439354,1 +"26589",898.35218230223,-0.220746496655942,0.122988290005578,-1.79485784090444,0.0726763524440071,1 +"57129",1664.81582063979,0.532884347639629,0.134421689399826,3.96427354855369,7.36197942573859e-05,0.902873156772581 +"51642",747.005784221986,0.617329564275909,0.131645084281391,4.68934763227745,2.74077426757271e-06,0.0336128556175117 +"740",2833.9659308506,0.196281034653566,0.115279313069588,1.70265617852078,0.0886324301512608,1 +"54534",811.412054211423,-0.00994948199423704,0.154414693102218,-0.0644335185619336,0.948625041515174,1 +"51258",4157.72350976302,0.430505749537226,0.138124783286439,3.11678859719516,0.00182832628738533,1 +"122704",1821.07884574366,0.481040643280512,0.111824733705965,4.30173743623992,1.69464050710903e-05,0.207830711791852 +"116540",1535.33440398771,0.117567285546052,0.100987082840401,1.16418142042834,0.24435049804125,1 +"116541",1414.38404945593,-0.342000940524019,0.129631656614081,-2.63825171610798,0.00833346991125274,1 +"128308",1413.43263372022,0.29244363026323,0.121052735020759,2.41583662040416,0.0156991037841771,1 +"65005",2160.05666390283,0.453935344551133,0.0942377863273692,4.81691434234484,1.45795237723338e-06,0.0178803279543902 +"55173",1513.96165573618,0.113512131278363,0.122050767051547,0.930040294055849,0.352350222186999,1 +"64963",1134.36361417579,0.189265790036846,0.128874965523521,1.46860012158299,0.141941281869168,1 +"6183",2115.05603184126,0.852347629832117,0.192476063881279,4.42833052923324,9.49652933334245e-06,0.116465435744112 +"63931",1171.65235205169,0.0632282033078376,0.122790340808046,0.514928152261425,0.606603227472508,1 +"64960",2679.2674802345,0.552113858620696,0.138175853145014,3.99573330689884,6.44943061768107e-05,0.790958170952406 +"51021",3353.30008624652,0.129981294865645,0.128762896595959,1.0094623397104,0.312752954209495,1 +"51373",759.05890693525,0.554354702639776,0.200167901202344,2.76944854449663,0.00561512728796571,1 +"55168",1759.97060219686,-0.129114759849168,0.169613152933201,-0.761230822116827,0.446519211523498,1 +"28973",2699.09260647005,0.400242828183871,0.121858400572429,3.28449106753192,0.00102166736687003,1 +"51023",420.005197063305,-0.146358933719251,0.125398388078253,-1.16715163537762,0.243149138488871,1 +"51116",2097.61655364915,0.200527047660933,0.15107972812998,1.32729288133489,0.184411817754242,1 +"54460",2806.73208631785,0.211268241089351,0.154293523819617,1.36926188383864,0.170917428051227,1 +"56945",1494.10993135156,0.168719324230935,0.149933414868842,1.1252950143137,0.26046404173205,1 +"51649",1637.24971583864,0.692015244787297,0.1306900099512,5.2950890817569,1.1895840578518e-07,0.00145890588854944 +"64951",214.973310039318,0.206416896923716,0.14619461334744,1.41193230172684,0.157969895547152,1 +"64432",1825.89080753504,0.0651503125071514,0.126524767579073,0.514921416207583,0.60660793474735,1 +"64949",2396.79394675943,0.78103696761914,0.147735830945229,5.28671320032511,1.24533654816397e-07,0.00152728074266829 +"23107",2718.71911107585,-0.317026178149436,0.120567555171456,-2.6294485087518,0.00855234824404425,1 +"28957",1013.4000000306,0.140401408462154,0.100134858679821,1.40212319978485,0.160878460318165,1 +"10884",1036.26517547667,0.384665498665555,0.16033741273119,2.39910007348351,0.0164354222662288,1 +"10240",877.634503024983,-0.299060790668035,0.132312906790496,-2.26025410462463,0.023805484649798,1 +"51650",1405.48307450968,0.234317935366119,0.115451441753925,2.02957998450594,0.04239925114243,1 +"65993",2594.263592691,0.458125315657828,0.141230673057767,3.24380891019646,0.00117942842405656,1 +"60488",2684.27837460258,0.43181430819493,0.135802699939174,3.17971813806604,0.00147418367219689,1 +"92259",408.751201717729,-0.379964436816522,0.163133002499956,-2.32916964068399,0.0198500805523791,1 +"64969",2281.10872242885,0.301098547334656,0.116633337520494,2.58158219369955,0.00983485689324764,1 +"64968",2124.71079141752,0.0944377006684549,0.185957190341456,0.507846459150343,0.611561025197624,1 +"51081",2959.51720277867,0.345746936830337,0.099247762405318,3.48367488043046,0.000494579887477259,1 +"64965",1371.3645995024,0.0676363798435013,0.110496772593911,0.612111813365562,0.540463782094332,1 +"92399",699.652146504917,0.393424910401606,0.172210906282047,2.28455281314909,0.0223390624765276,1 +"57380",1377.17069306993,0.471437633743279,0.179957948459443,2.61970998102107,0.0088004574604062,1 +"729633",212.625956708213,0.648284633366137,0.172688140652461,3.7540773264264,0.000173981152880708,1 +"51154",2195.73660157282,0.693767681265302,0.152765766156052,4.54138187319146,5.58866968436459e-06,0.0685394450090473 +"10335",4956.41816820785,-2.71187349524245,0.314001093727859,-8.63650971099098,5.79564759487071e-18,7.10778221034943e-14 +"2206",169.978803646788,-2.77299921128265,0.355731607810616,-7.79520051183906,6.43062826131746e-15,7.88652249967973e-11 +"51338",483.045363138185,-0.791747503866863,0.304607051226158,-2.599242206245,0.00934298251740996,1 +"64231",1110.91306328879,-0.931033971843122,0.27000163713844,-3.44825306139068,0.000564225132882066,1 +"58475",774.957170452757,-0.220255269806187,0.296919853739116,-0.741800411904121,0.458208270979085,1 +"9242",686.328405640722,-0.611113404119186,0.339129128229454,-1.80200800594665,0.0715441459750593,1 +"4436",1686.62861063191,1.07896703206041,0.154071216900836,7.00304089085543,2.50465690577884e-12,3.07171122924717e-08 +"4437",928.088445895057,-0.113022175476967,0.145281274293372,-0.777954185951981,0.43659602235184,1 +"2956",3353.32137767313,0.620101157185979,0.131135136895502,4.72871857128665,2.25941307141572e-06,0.0277094419078423 +"124540",959.061227405582,0.306440082989807,0.18350638757027,1.66991507514942,0.0949361672590723,1 +"339287",3275.49748622139,0.232690459859498,0.091668466150855,2.53839154978954,0.0111363312283528,1 +"55167",1553.7792160756,0.117583853401755,0.108112668586911,1.08760476398037,0.276769626730147,1 +"10943",1140.05075420194,0.251655268130307,0.131219018742028,1.91782616988665,0.0551330562804796,1 +"151507",376.837676279271,0.94309057419099,0.191313151406919,4.92956478556489,8.2413003267416e-07,0.0101071307207159 +"6307",2533.51901656599,0.540144680193955,0.310019296476028,1.74229374214363,0.0814570578832956,1 +"692094",221.706978065359,-0.489799031000263,0.224674317730972,-2.18004013964228,0.0292544862982368,1 +"4478",14358.3306289963,-0.737624590090339,0.273072351220428,-2.70120569436529,0.00690885954506757,1 +"4481",685.922997903844,0.554350319301092,0.313290741953438,1.76944366706974,0.0768198638506674,1 +"4482",574.691850626229,-1.00654769470073,0.143417813156125,-7.01828923862476,2.24601228075532e-12,2.75450946111832e-08 +"22921",1459.26622113004,-0.964074755986472,0.236784874179116,-4.07152171070351,4.67070080269608e-05,0.572814746442647 +"253827",7250.7840363346,-2.87891274712891,0.366093380628286,-7.8638754467184,3.72427869459393e-15,4.56745539105e-11 +"4485",265.213746150774,0.97931756866424,0.254475361563924,3.84837872965645,0.000118902132476776,1 +"11209",129.488794041662,1.19073628918253,0.253660686236168,4.69420905088112,2.67640230446561e-06,0.0328233978619662 +"4486",1109.28078632012,0.368521979605207,0.573539335764433,0.642540025810135,0.520522609568021,1 +"55154",504.006859187068,0.550806829201056,0.122038293902034,4.51339339144822,6.37985257640521e-06,0.0782425119970334 +"100129405",300.902194591991,0.555593059871404,0.141098597621078,3.9376228342358,8.22928084866309e-05,1 +"4487",407.202960255837,-2.06047433266572,0.299569566533967,-6.87811634708258,6.06491298160661e-12,7.43800928064234e-08 +"4488",1663.66689039932,-0.367926391574754,0.397919147137252,-0.924626005613767,0.355160480927972,1 +"4493",1155.34777517174,-1.61197065347221,0.353181970913044,-4.56413629864785,5.0155487459578e-06,0.0615106898204264 +"4494",293.170825896098,0.789235991513001,0.323753604844394,2.4377674246819,0.0147782786868749,1 +"4495",296.036724004659,-0.184829467772885,0.398567224464011,-0.463734738904941,0.642837805055572,1 +"4499",328.52367609191,-3.35626988534499,0.391025468738057,-8.58325135745394,9.22285271112756e-18,1.13109065649268e-13 +"4501",1782.18742773817,-0.0496354749696868,0.418501595204668,-0.118602833390426,0.90559002047852,1 +"4502",8199.65892971432,-1.2448308271197,0.319322799356176,-3.8983462177757,9.68518770270838e-05,1 +"9112",3116.59983441109,0.364451900430863,0.149659134359911,2.43521320626113,0.0148830174222212,1 +"9219",7321.67682347014,0.476135387650597,0.159331995176673,2.98832250937823,0.00280513377403996,1 +"57504",1315.68645298027,0.475573692709405,0.178541697077481,2.66365616824523,0.00772965238654009,1 +"4507",1484.68568379045,-0.527572852289787,0.299883939547482,-1.7592567747572,0.0785339048819247,1 +"27085",265.372568691692,1.58596730574112,0.246156618510514,6.44291961490923,1.17196776257848e-10,1.43730126402624e-06 +"23787",7978.47890363127,-0.182345334737248,0.0932797502443221,-1.95482228736292,0.050604049601326,1 +"23788",3204.40523771833,0.229982890056656,0.118388176322056,1.94261705181626,0.0520624450721235,1 +"4515",91.8017098124888,0.865645469572685,0.183318107434917,4.72209473294946,2.3342790224848e-06,0.0286275979317536 +"92140",7272.18533561032,0.219007771088513,0.153071642118766,1.43075339139949,0.152500905341535,1 +"4520",1197.18180713887,-0.423782895988492,0.172260151016371,-2.46013308062303,0.0138885505297466,1 +"22823",1119.21214894808,0.761948746871874,0.157832674542635,4.82757292860834,1.38207083324518e-06,0.0169497166989189 +"123263",561.867728464921,-0.0238836039364702,0.0821004355708171,-0.29090715256765,0.771122330826046,1 +"51537",981.474328662682,1.27399454141335,0.251963518764209,5.05626587397191,4.27545175875058e-07,0.00524341403693171 +"9650",1129.34746019325,0.608464773845516,0.124371160251687,4.8923301239144,9.96491155937395e-07,0.0122209675364162 +"92170",1437.86056716215,0.694191490483224,0.157122668001791,4.41814983994106,9.95493990749722e-06,0.122087383025546 +"4522",2033.05299611968,0.61845505413329,0.136194520914818,4.54096868199345,5.59963500968081e-06,0.0686739237587254 +"25902",1302.88703677767,1.70136133970393,0.238380963096377,7.13715272228377,9.5283962141583e-13,1.16856251170437e-08 +"10797",2212.4937510357,1.0527093655094,0.277493495971659,3.79363617811392,0.000148457151812514,1 +"441024",117.054638904209,-0.0590117687281647,0.211954280362879,-0.278417442795366,0.780691931230334,1 +"4524",1251.64591018774,-1.04680348065137,0.176041290268968,-5.94635201237158,2.74184187648704e-09,3.36259487732371e-05 +"10588",134.386926264004,0.120081362464955,0.15968036340664,0.752010829028224,0.452044546551787,1 +"64779",759.509514281313,0.347136019761652,0.138313941836789,2.50976882844734,0.0120810220572178,1 +"4528",1559.27199588637,0.617234332734912,0.111863008196139,5.51776983909337,3.43328672234373e-08,0.000421058283628235 +"219402",1524.57780265925,-0.218648712265136,0.14818320331932,-1.47552966441122,0.140070199072998,1 +"4534",571.802836433493,-0.420569614871958,0.133894742309208,-3.14104652369935,0.00168345287947214,1 +"8776",925.443038431731,0.22282771108626,0.173047280635042,1.28766953325435,0.197861023384898,1 +"54893",1288.70819224962,-1.01666685662939,0.169615947090391,-5.99393437981155,2.04824049525399e-09,2.51196214337949e-05 +"10903",720.146531292238,0.217191531110211,0.225000565342389,0.965293268395595,0.334397942515929,1 +"54545",1662.25272582855,-0.504886472193527,0.155285114170048,-3.25135139251429,0.0011485780312335,1 +"64419",1980.33671245197,0.342586403316903,0.118944743649573,2.88021473505552,0.00397404399668496,1 +"8898",2059.71379548973,-0.0519192579216358,0.112340313240405,-0.462160523004153,0.643966210606325,1 +"8897",3159.52840615493,-0.105751305153533,0.12898070834391,-0.819900173532628,0.412273017846269,1 +"9110",2111.7588180492,0.995206706137394,0.152415688651445,6.52955555259999,6.59651419539564e-11,8.08996500923321e-07 +"9107",1769.41805772409,-0.430863445978172,0.132513090002005,-3.25147837071531,0.00114806510605029,1 +"66036",829.788185596672,-0.675558624721287,0.192475360239771,-3.50984470884859,0.00044836846973234,1 +"339483",238.103642739478,-0.677819554953006,0.28862784605781,-2.34842051524455,0.0188532226546095,1 +"25821",810.44624560047,-0.176588334210623,0.102500463977349,-1.72280521822463,0.0849237548182078,1 +"2475",3545.56670447388,0.397600964047226,0.126263838588146,3.14896940005239,0.00163847350874386,1 +"55149",1117.35307221092,0.0893226701802943,0.139782298369116,0.639012744978798,0.522814640799679,1 +"4548",2389.88444066363,-0.322355830480866,0.196006196889999,-1.64462060687691,0.100048074561299,1 +"9617",298.774121260024,0.180403539066603,0.159966119096018,1.12776092891469,0.259420898124369,1 +"54516",515.062960157645,-0.265685289300483,0.163453311160335,-1.62545064039642,0.104066573087939,1 +"100462977",2598.12212340602,-0.539822907286972,0.231640797852051,-2.33043104795278,0.0197833803907985,1 +"100462981",708.483370897272,-0.38959947899701,0.264572451019077,-1.47256253436953,0.140869033400691,1 +"100463486",4326.77693406744,-0.550121657376305,0.217624224105864,-2.52785120607114,0.0114762977667863,1 +"4552",1272.17246228825,-0.266440728724165,0.184658772264816,-1.44288151305407,0.149053851748066,1 +"9788",3712.88984500861,0.994167209529506,0.302408624271336,3.28749622113122,0.00101082545687723,1 +"57509",4264.04857891821,-0.549746835919156,0.219890568955835,-2.50009283494815,0.0124160765514543,1 +"23281",328.622096528431,-0.481926014224961,0.5913678121181,-0.814934469461312,0.415109821266605,1 +"4580",902.837572500296,0.773336631898886,0.126541236696143,6.11134087266635,9.87974835842229e-10,1.21165233867691e-05 +"10651",1881.59601979568,0.288638400131333,0.16374546280831,1.76272609439707,0.0779466974878823,1 +"345778",1019.90876721381,0.0252568678339384,0.173390308094618,0.145664818936453,0.88418599549724,1 +"4582",6332.23972958089,0.536644940384784,0.413391925755976,1.29815051274505,0.194235619513191,1 +"143662",489.024749172538,0.461028836483309,0.689369601597444,0.668768735109568,0.503643013527497,1 +"200958",5295.07506007704,0.505905730827394,0.488772137012355,1.03505435870336,0.30064352583405,1 +"4585",6861.13035684524,0.622715825813119,0.638065265902317,0.975943777369715,0.329092326436236,1 +"79594",2095.33590208037,-0.264869180798714,0.109622795387402,-2.41618707005855,0.0156840011510073,1 +"80198",1552.94634123462,0.168995347890359,0.145929037598133,1.15806525330309,0.246837408354574,1 +"389125",133.993993929158,-2.29536391219082,0.286689920162579,-8.00643395794712,1.1808251492136e-15,1.44816396299556e-11 +"4595",684.869809403149,0.556494737300067,0.108531724866557,5.12748450265851,2.936391429254e-07,0.0036011904488371 +"4597",2113.15597998415,0.519995402519517,0.180373478718915,2.88288170862332,0.00394055388077933,1 +"4598",1197.17730067514,0.899506780235866,0.176255518055021,5.10342479011108,3.33561112797252e-07,0.0040907934873455 +"9961",10806.2971572688,-0.251829489312548,0.209088675782076,-1.20441476981288,0.228429306182389,1 +"4599",4910.28151569575,0.670743934020109,0.292600974802276,2.2923503056453,0.0218854371444858,1 +"4600",2441.1966511606,1.04617523937145,0.28577390982956,3.66084937563198,0.000251380515721735,1 +"4084",3255.75032388561,-0.183444125699602,0.359045860390701,-0.510921155030125,0.609406267198893,1 +"83463",306.148038021931,1.02084056039048,0.275350566381652,3.70742132041064,0.000209380438002499,1 +"10608",2851.88188604503,-0.624406772277897,0.137951347863877,-4.52628250427845,6.00303200375279e-06,0.0736211844940243 +"4601",2197.32328443845,-0.541635393557336,0.203652814356765,-2.65960180942298,0.00782330817263058,1 +"25878",6411.7280464315,-0.00887393772757373,0.367169096594082,-0.0241685310934111,0.980718179344305,1 +"439921",6739.86872239703,-1.96557762521217,0.296485877363278,-6.6295826387838,3.36637329694382e-11,4.1285202113719e-07 +"54587",3750.55639263492,-0.721270382786129,0.319356521887911,-2.25851151722927,0.0239137873536594,1 +"91663",13356.4847085777,-2.72657260983399,0.329982782126632,-8.26277235515779,1.4232751347836e-16,1.74550462529861e-12 +"4602",207.248360773074,1.77528851507596,0.345145658523402,5.14359219429553,2.69534286522984e-07,0.00330556848991788 +"10514",2326.89263595097,0.457320829172001,0.171756577323437,2.66261028426769,0.00775371567438166,1 +"4603",217.943775979922,-0.542153942098614,0.317015021899217,-1.71018375990704,0.0872318978230275,1 +"4605",2346.27124436022,3.65375793166165,0.459907645691154,7.9445470539433,1.9490163462574e-15,2.39027364705007e-11 +"4609",9980.22278900765,-1.79316781266063,0.350327422159034,-5.11854824726398,3.07896477146382e-07,0.00377604239572322 +"23077",4395.57434562284,-0.296040970450842,0.167183927080578,-1.77075018885134,0.076602252432145,1 +"4613",406.249645022089,2.00812809175694,0.471027681714485,4.26329103301869,2.01437879380258e-05,0.247043415271949 +"80177",469.585663951123,-1.96033335076375,0.215674527541555,-9.0893132958691,9.96665398875996e-20,1.22231044518152e-15 +"4615",3845.62646855638,0.267368463348055,0.226284425823235,1.18155928042929,0.237380618609446,1 +"50804",413.361123334574,-1.48195701024132,0.404743192117561,-3.66147482923164,0.000250767502009759,1 +"4628",3666.66441918606,0.26846379654177,0.19290010522105,1.39172446917086,0.16400584964797,1 +"4629",483642.538439723,-5.88046780456982,0.9692796524575,-6.06684334047512,1.304486852464e-09,1.59982267586185e-05 +"79784",12754.7613851323,1.46885730777516,0.471481851902876,3.11540582494731,0.00183691994173998,1 +"4621",1119.01745504359,-2.18365910091652,0.506227289193977,-4.31359420467706,1.60621650798602e-05,0.196986392539405 +"57644",89.8231394085781,-0.509376122934742,0.279075253788342,-1.82522855760284,0.067966546015231,1 +"4627",54056.4938820264,-0.158137713118259,0.162847680804306,-0.971077465378783,0.331509704455353,1 +"10627",10535.9687111509,0.0240624891670115,0.160602444919602,0.149826418763782,0.880901565461561,1 +"103910",18127.5790464007,0.521477828980633,0.169855147008265,3.07013262868778,0.00213963732760603,1 +"4636",270.387553466774,-0.424658144931143,0.196860679758741,-2.15715065828064,0.0309939275654138,1 +"4637",52854.275967908,-1.05331974833088,0.216763644208748,-4.85930079361697,1.1780104391719e-06,0.0144471200260041 +"140465",1495.36192856477,0.321613427286524,0.205500142897741,1.56502775497612,0.117576401587509,1 +"10398",114062.626509466,-3.78975131736682,0.43940488809081,-8.6247363652077,6.42404692529462e-18,7.87845114918132e-14 +"29116",2097.74996190683,-0.373704114621301,0.231093765052497,-1.61711032981096,0.105854467493859,1 +"4638",49696.1344158303,-3.64673419800109,0.402192690156688,-9.0671319674666,1.22190880921561e-19,1.49854896362203e-15 +"55892",1075.66075062734,0.0108182061728478,0.0868456255080714,0.124568233685442,0.900865378311944,1 +"4651",2220.60987121008,1.1028341520427,0.286364381579238,3.85115685812883,0.000117561167043671,1 +"80022",1227.86695190916,-1.09546394003684,0.241736598018576,-4.53164290809067,5.85267232553653e-06,0.07177717340038 +"399687",3221.49357240852,-0.259924474799774,0.160129689895815,-1.62321225357327,0.104544039292556,1 +"80179",1878.42782175303,1.32930145035542,0.165108908371802,8.05105831940951,8.20811439109081e-16,1.00664314892338e-11 +"4430",3237.59696477923,0.652172832564562,0.300160345988662,2.17274813705471,0.0297992786379963,1 +"4641",13616.9319586522,-0.623609333621607,0.201659297701313,-3.09239068433762,0.0019855134693187,1 +"4642",5715.04085819294,0.143711123644699,0.178217209793016,0.806381851739279,0.420022707900503,1 +"4643",3372.37422657283,-0.170661151309468,0.255576478022687,-0.66774983609532,0.504293292404572,1 +"4542",772.503674407403,-0.642068705393462,0.278411541993614,-2.30618565881219,0.0211002605704247,1 +"64005",581.310124764984,-0.584868890557878,0.360363120279929,-1.622998741113,0.104589673979939,1 +"140469",237.585602142807,0.81232339179865,0.476287065814709,1.70553317547924,0.0880950303769303,1 +"4644",1693.45569813388,0.321999606386931,0.167476656754215,1.92265365590316,0.0545235606907948,1 +"4645",2554.66547508282,1.63326718608972,0.473274103079592,3.45099631579684,0.000558521193515324,1 +"55930",1142.0868136494,0.199821705575677,0.288619067974222,0.692337159073372,0.48872561953945,1 +"4646",4122.43836281358,0.541898617895678,0.224892063083728,2.40959423140659,0.0159702713224564,1 +"4647",437.730988317156,0.290457105143776,0.309826909823772,0.937481851750665,0.348510754723199,1 +"4649",1224.66550190598,-0.536881610640953,0.259068422808386,-2.07235449546873,0.0382323937272516,1 +"4650",5585.38247263047,0.0696548918765583,0.122946723957914,0.566545326579031,0.571023129443469,1 +"93649",2189.47634175135,-5.07071544844543,0.461512399235201,-10.9871705654028,4.40519976573626e-28,5.40253699269895e-24 +"26509",13561.480941451,-0.629373101343293,0.268171963619385,-2.34690119298436,0.0189302740730742,1 +"8736",1783.71107617688,-3.90971468470554,0.418218630838576,-9.34849477381273,8.890389094287e-21,1.09031731852336e-16 +"9172",218.825134121238,-3.10986550627494,0.330939066701944,-9.39709396435751,5.60908324599059e-21,6.87897969288286e-17 +"339344",409.190617770196,0.475515803718288,0.160799245099634,2.95720171710788,0.00310444952100911,1 +"25924",132.340232322326,-3.44659212101634,0.383605846848866,-8.98472259828259,2.59387798224876e-19,3.18113195742988e-15 +"114803",1217.75952387465,0.217616520173718,0.168924723564563,1.28824553080027,0.197660507242458,1 +"100820829",1869.90142773139,-2.60920372427175,0.405327418968699,-6.43727416938759,1.21638103944323e-10,1.49176970677318e-06 +"51237",1134.48866833746,0.0341315156842345,0.562422756018172,0.0606865837468563,0.951608816605904,1 +"7593",667.270232149638,0.0827518905572788,0.171105469424691,0.483630890558413,0.628647847804916,1 +"440145",947.597114795044,0.794522205019119,0.132680342251991,5.98824355992491,2.1211925452693e-09,2.60143053751827e-05 +"653784",1584.74852028925,0.671558877674773,0.19077133406121,3.52022949873223,0.00043117354519434,1 +"80097",2445.90742906736,0.28176629523893,0.180509423816814,1.56095061011815,0.118535404668041,1 +"9683",2670.91939421935,-0.0070889361474036,0.155480770959717,-0.045593651894357,0.963634128966682,1 +"55728",725.127538237406,0.0733948012860886,0.198773843130055,0.369237723285692,0.711950540264789,1 +"90634",462.082595697787,-0.93449879722794,0.188277172818212,-4.96342059549741,6.926236562757e-07,0.00849433652056519 +"10443",2697.2946962784,-0.595956602815994,0.139214110342265,-4.28086349401511,1.86169532625952e-05,0.228318314812467 +"23138",630.065174517976,-0.316812766917812,0.337619365721393,-0.93837261449999,0.348052954445796,1 +"29104",486.660169011713,0.0769101198390323,0.16014891176385,0.480241289134961,0.631055830696865,1 +"8260",2332.96588987631,0.344791950763504,0.125221462088285,2.75345731485244,0.00589694594488806,1 +"80155",2767.92834481266,-0.00492409471537855,0.156351121226635,-0.0314938241360032,0.974875717329066,1 +"79612",668.256906482335,-0.190883902090728,0.12781913435425,-1.49339066529503,0.135334955010111,1 +"51126",2816.55541441269,0.490777633583962,0.208846855722494,2.34994025591692,0.0187764245600668,1 +"80018",1472.54383792929,0.535497349088288,0.137909050405949,3.88297466708674,0.000103186322072042,1 +"122830",1144.2477152909,-0.0528550336576403,0.140726573096773,-0.375586731734693,0.707224156312247,1 +"60560",1000.31084589146,0.225713453079147,0.164727915183104,1.37021981264229,0.170618295394585,1 +"84316",1630.99521772073,0.236909675534371,0.0901171656552991,2.62890730985213,0.00856597053297645,1 +"79829",934.87689601621,1.00726924674776,0.119688448014838,8.41575994554537,3.90355955472174e-17,4.78732543791074e-13 +"80218",8205.88061528116,0.501055495951772,0.133292691150959,3.75906204327669,0.000170551544074722,1 +"79903",2704.24082809207,-0.146663943614369,0.146888401055248,-0.998471918549961,0.318050574823482,1 +"27163",776.690136725988,-0.424175714719313,0.18746207353687,-2.26272817064453,0.0236524511497529,1 +"10004",189.684403010991,-1.72037999678661,0.232175035811738,-7.40984055745596,1.26451351996286e-13,1.55079938088245e-09 +"254827",517.498141776439,-0.755603664569861,0.377791127166236,-2.00005667215519,0.0454941446742917,1 +"4664",2273.30412078613,-0.392709536122137,0.195666157907427,-2.00703862293823,0.0447455506445863,1 +"4665",1904.38498682856,-0.596895853702639,0.216874641424962,-2.75226208919941,0.00591851330459092,1 +"4666",19182.2242904773,-0.304773163982709,0.124792882498978,-2.44223194367839,0.0145967651395451,1 +"342538",2156.62764353186,-0.342622391356599,0.130157920491739,-2.63235913774717,0.00847941768368681,1 +"23148",567.389705800616,-2.03972492575847,0.418802477117422,-4.87037454935249,1.11386902816176e-06,0.0136604897613758 +"112939",3978.93113615957,0.403265314999909,0.143542625650116,2.80937674905617,0.00496375211476126,1 +"138151",3498.97839705628,-2.28683508829726,0.272740176719434,-8.38466527302176,5.0870301296614e-17,6.23873375101674e-13 +"65220",2929.20607364933,0.201209889170647,0.0951156311119072,2.11542400358902,0.0343938257631948,1 +"55191",3700.46129270872,0.492161031783997,0.256986791816081,1.91512189519928,0.0554769601332945,1 +"8883",2270.33079870706,0.540886516250727,0.131693622388198,4.10715801146648,4.00557218641425e-05,0.491243372941844 +"92345",450.585740251829,-0.647578181516518,0.165445353548349,-3.91415151666543,9.07226571125842e-05,1 +"4668",2491.39132862633,0.0778967731179608,0.175524958109845,0.443793144614867,0.657192145233739,1 +"55577",4212.37897011786,0.183882479800064,0.225475072359997,0.81553352162351,0.414766984619898,1 +"4669",1854.02340180126,-0.0761423110034471,0.165830004443605,-0.459158831110938,0.646120111950941,1 +"51172",566.011630252454,-0.014449684547511,0.158671702017161,-0.0910665503918791,0.927439711091581,1 +"162417",129.802900575139,1.90815009289649,0.355093258270968,5.37365902745583,7.7154695765409e-08,0.000946225188866976 +"203245",456.612828554048,0.435938205954586,0.113017662060784,3.8572573348768,0.000114666424537874,1 +"10135",13657.053915488,-0.609734296932202,0.345330581954763,-1.76565392349779,0.0774539273989884,1 +"340719",513.667276114011,-0.62347486772144,0.124787248176867,-4.99630272187553,5.84398994796413e-07,0.00716706927218321 +"140838",366.84468068091,0.51202743408543,0.175190267313247,2.92269337753738,0.00347018061492918,1 +"54187",2460.06186021391,0.182271307768321,0.216815099935893,0.84067626204178,0.400529322469736,1 +"4673",11514.0601461073,-0.324837913271211,0.10780379478922,-3.01323264089489,0.00258480685234943,1 +"4674",244.810472853828,-2.53152954448085,0.37639754764879,-6.72568022904065,1.74774010545003e-11,2.14342846532392e-07 +"4675",220.227388513275,-2.29098752848828,0.395083159640796,-5.79874761194886,6.68119968971888e-09,8.19382329947124e-05 +"4676",7948.66069867965,-0.215449234222411,0.142783919488036,-1.50891805600324,0.131319724978619,1 +"266812",479.805603301775,-1.69668314759901,0.216326835712056,-7.84314688473233,4.39393515688439e-15,5.38872207640302e-11 +"8775",6812.05135855646,-0.397431286146315,0.174042407396558,-2.28353130763563,0.0223990908640396,1 +"63908",697.023556946003,0.0768783690878562,0.2019357503331,0.380707076191525,0.703420617559247,1 +"222236",786.406448834952,-0.00566228636458516,0.170950644931263,-0.0331223457323714,0.973577023207212,1 +"8774",1775.42886642909,-0.367942178988601,0.12084325538882,-3.04478870421627,0.0023284383182873,1 +"256236",474.922844340129,-1.78823744598588,0.402143737981363,-4.44676188410213,8.71743753476335e-06,0.106910653926338 +"26502",2997.07769669283,0.625008486827845,0.169782438114862,3.6812316619285,0.000232109988542614,1 +"79731",986.538608568665,0.672451629262741,0.16241458516821,4.14034015828254,3.46791187455195e-05,0.425304712295051 +"4678",3525.34350106396,0.658330576606755,0.151271691948032,4.35197470279448,1.34916832102357e-05,0.165462002890331 +"9",191.859384176458,0.328130516331648,0.247377910334368,1.3264341827778,0.184695922556381,1 +"55226",2996.35960633965,0.546050870856669,0.0855311178491588,6.38423634097329,1.72254884453722e-10,2.11253390294045e-06 +"57106",718.369426474178,0.653831104148624,0.279271276033474,2.34120427075449,0.0192216471416668,1 +"26151",1322.71781525051,0.703234247319608,0.12551964340799,5.60258321507342,2.11180593693441e-08,0.000258991880105636 +"89796",2396.04672111897,-0.499885717958401,0.228286596453834,-2.18972872574887,0.0285439164889337,1 +"89797",1851.26011821828,0.0155256449015595,0.262188487896435,0.0592155858028832,0.952780395750645,1 +"89795",259.151528913155,-2.55709735575894,0.367803537433344,-6.95234573762726,3.59261599071992e-12,4.40598425101891e-08 +"51594",2692.78658340263,-0.0536907213073286,0.157554028918453,-0.340776568367653,0.733271791486795,1 +"26960",1161.65780931592,-2.42199864824093,0.435015572687222,-5.56761366789588,2.58251611020771e-08,0.000316719775755873 +"65065",423.664966153043,-0.169059445280437,0.254614980374507,-0.663980748625912,0.506702632632558,1 +"23218",4332.30851707408,0.482773002732867,0.26561981902922,1.8175338139198,0.0691354155940294,1 +"4683",2836.12330665834,0.322362056975244,0.122816332204432,2.62474909638777,0.0086712839153494,1 +"55672",1178.59595538558,-0.246445481394875,0.219834519234378,-1.12104997091983,0.262266592331659,1 +"100132406",527.074487451071,-0.432341484626512,0.183727779051944,-2.35316339672445,0.0186144524465889,1 +"25832",404.617343857752,-0.0514763042967882,0.184508642090598,-0.278991291212865,0.780251508131545,1 +"84224",432.099314737667,0.0895080592349998,0.223175884647982,0.401065103320557,0.688372192518203,1 +"400818",224.036902882512,0.429193162842169,0.201813918403495,2.12667771498329,0.0334468703675053,1 +"4077",7843.09921342372,-0.236507801370298,0.130233554275368,-1.81602815561819,0.0693660532252054,1 +"10230",282.681117876004,0.426636584079926,0.194168343531332,2.19725098499942,0.0280025261325576,1 +"83988",1259.61086755403,-2.21378138035517,0.334457106718893,-6.61902927425557,3.61565252702967e-11,4.43423625914919e-07 +"4684",3159.50367630537,-4.7872676303233,0.503758698079155,-9.50309671788751,2.03739524747377e-21,2.49866153150183e-17 +"9918",4462.15232850715,1.31237172415824,0.191135939456545,6.86616932372685,6.59487918717496e-12,8.08795983515137e-08 +"23310",1511.01243357354,1.09669147516766,0.194462769250552,5.63959610055048,1.70449502815602e-08,0.000209039270253054 +"64151",692.101205564612,2.79105502005982,0.372560720740408,7.49154396768673,6.80680733679012e-14,8.3478685178394e-10 +"54892",1167.04103871552,1.52544471630573,0.203500722649844,7.49601621282941,6.57866574655531e-14,8.06807567157543e-10 +"23397",787.513022439446,3.33291161996429,0.393508994641474,8.46972157015346,2.45980295106031e-17,3.01670233918036e-13 +"29781",2331.40714016703,0.10111424154605,0.12163347790489,0.831302724280526,0.405802635988584,1 +"4686",2059.86962842894,0.316359083106766,0.14079834846315,2.24689484329828,0.024646748359031,1 +"22916",4482.58577733142,0.363883516987252,0.135978725819565,2.67603270139552,0.00744993756871,1 +"342897",2544.27330989378,0.338166569479868,0.796565505417182,0.424530772648461,0.671178767946373,1 +"23154",1676.27120477246,-0.190924896292144,0.169617338490079,-1.12562134267489,0.260325830288784,1 +"57552",1288.67182119077,0.800956729988762,0.246787641110699,3.2455301504725,0.0011723214963358,1 +"4688",636.779465227543,0.299272437108684,0.315165449402105,0.94957247907862,0.342329527853784,1 +"4689",674.755634202646,-0.834099401368634,0.326329155514381,-2.55600637354598,0.0105881179477379,1 +"4690",1170.45145730143,-0.139495116958145,0.174956347120697,-0.797313840016968,0.425268784408745,1 +"8440",2811.84556176768,-0.235561110868033,0.136149446850315,-1.730165757684,0.0836006643355998,1 +"10787",10233.2923462876,-0.0723725023506881,0.151442605197101,-0.477887330692019,0.63273039919297,1 +"3071",1308.34450877891,-1.71022670496107,0.27836271029386,-6.14387862208853,8.05303890734965e-10,9.87624691597362e-06 +"344148",121.239689787217,-0.239468121330939,0.335999481774368,-0.712703841286719,0.476029039002329,1 +"57701",1373.49422616944,0.168987657748122,0.179297928357606,0.942496432033948,0.345938536991079,1 +"51517",1202.9353801537,0.423778101927428,0.171691771301759,2.46824934424267,0.0135775705347276,1 +"4691",29323.3543166132,-0.0938961448083964,0.153031260630597,-0.613574928556935,0.539496255195113,1 +"56926",3999.05960506591,0.629019423563188,0.12104334363107,5.19664613264804,2.02916100552093e-07,0.00248856305717087 +"8648",3263.07342838908,-0.443890357283223,0.161826537964123,-2.74300101125339,0.00608804979978048,1 +"10499",1286.02408160426,-0.223988701394201,0.199177144940888,-1.12457029876935,0.260771165597742,1 +"8202",4377.19974611218,0.452815890619733,0.219094760269162,2.06675819204184,0.038756944779397,1 +"8031",8164.9001308527,-0.567952768140531,0.173193585186149,-3.27929448154846,0.00104066979366084,1 +"57727",2162.93645698479,-0.204004597512345,0.134285181842108,-1.5191891965579,0.128714879877803,1 +"23054",3433.25484508909,0.382340098706502,0.135961126240031,2.81212806395487,0.00492149044598242,1 +"135112",3954.19043712519,-1.19200065753938,0.240251794835534,-4.96146411041537,6.99637988090415e-07,0.00858036028594085 +"9611",5332.52121105165,-0.325919928733744,0.155151998457671,-2.10064924701993,0.0356717676088044,1 +"9612",7399.48838786823,-0.426468315922725,0.181287486550129,-2.35244210198038,0.0186505930221079,1 +"23413",6001.03010750493,-1.84658491247079,0.326301953904256,-5.65912919115593,1.52142996228625e-08,0.000186588170574786 +"23385",5708.18669488164,0.654954672673757,0.130356857675869,5.02432080943756,5.05217253703691e-07,0.00619598439942207 +"10403",666.011363468349,2.41300776090222,0.315766155204271,7.64175552424618,2.1427975924983e-14,2.62792696743991e-10 +"54820",1165.43369488939,0.422512666593275,0.197758905246402,2.13650387104862,0.0326383657867725,1 +"81565",2588.60777309975,-0.688669969692662,0.209202981263278,-3.2918745494644,0.000995219950936692,1 +"80762",5068.58405543417,-0.471844996361906,0.106744863418885,-4.42030633839781,9.85610803338238e-06,0.120875308921401 +"54602",3737.83660379134,0.557314263857275,0.322686492292791,1.72710750889316,0.0841483573064325,1 +"4692",1321.09615011425,-1.87231959591102,0.31229935816636,-5.99527199448694,2.03145137054951e-09,2.49137196084192e-05 +"79625",407.200058218596,-2.85137012134516,0.421057666097675,-6.77192306643269,1.27081716940846e-11,1.55853017656254e-07 +"27158",1736.96721922512,0.618500801701855,0.191885392613209,3.22328236286642,0.00126730561390602,1 +"10397",30397.1756243607,0.391182868204319,0.358384406934313,1.09151754550531,0.275045215769107,1 +"57447",6604.06035449596,-0.413219313994981,0.234715924581549,-1.76050821746189,0.0783216754506127,1 +"57446",2163.28464326516,0.00986321717193969,0.155034102153221,0.0636196619643839,0.94927307547242,1 +"65009",1161.92844718067,0.965440434736642,0.402359351332146,2.39944823337702,0.0164198013269124,1 +"3340",4065.57890741067,-0.345318017317303,0.185764162352175,-1.85890546887425,0.0630405387917259,1 +"8509",1024.89401794054,-0.198488393162348,0.134311258460001,-1.47782393998981,0.13945490880445,1 +"4694",4061.896727438,-0.027013902106795,0.157949153754003,-0.171029103130668,0.86420088174542,1 +"4705",4044.86248856021,-0.297127614065196,0.14468811057202,-2.05357311592854,0.0400170263769747,1 +"126328",4654.22160468643,-0.171589011208903,0.115978170606716,-1.47949403160328,0.139008325323895,1 +"55967",1687.75553869733,-0.001218229470859,0.149377018430617,-0.00815540090207949,0.993493003663819,1 +"51079",7824.39425502467,0.0455250021712084,0.112516731398133,0.404606511454028,0.685766771473465,1 +"4695",2227.9902380918,0.0770479453776955,0.111744520370447,0.689500882211243,0.490508118256757,1 +"4696",1890.3845816469,0.016859632661736,0.162791959375195,0.103565512243014,0.917514157687097,1 +"4697",3482.50832899355,-0.273352857185941,0.146728463236768,-1.86298453044414,0.0624644427172982,1 +"56901",2163.60354419059,0.431009069820333,0.340628161275414,1.26533598457187,0.205750912296285,1 +"4698",2602.66116245949,-0.483192687404252,0.150613670425523,-3.20815956505877,0.00133587359437185,1 +"4700",2533.29701726218,-0.250342230424724,0.151837130439083,-1.64875501598841,0.0991978341126963,1 +"4701",1306.68736520706,0.132812148122287,0.153437568139287,0.865577770378394,0.386721750439342,1 +"4702",1997.1262669753,-0.176411948533793,0.178298353929134,-0.989419950584119,0.322457717386576,1 +"4704",2154.83515924158,0.393919564537286,0.102150327259749,3.8562731525629,0.000115128836678161,1 +"4706",2311.09530337732,0.109913299474547,0.0907438876743847,1.21124741612293,0.22580059516713,1 +"51103",706.474540647441,-0.206133112249867,0.146513087709822,-1.4069262717207,0.159449252359874,1 +"91942",325.449283490685,-0.433661529355393,0.154734803658398,-2.80261143002301,0.005069070187914,1 +"25915",1984.96808134258,-0.134513076810802,0.144846927739045,-0.928656747577966,0.353067002712765,1 +"29078",816.83666913367,-0.593453281825896,0.201899508878647,-2.93934980387988,0.00328901637931278,1 +"4707",728.304909024874,-0.0582282280068358,0.128018384064303,-0.454842704291501,0.649222405253285,1 +"4716",3079.66482364674,-0.232464318354524,0.139268786649115,-1.66917745137116,0.095082217435139,1 +"54539",4241.26521807279,0.414820857324252,0.150557370932216,2.75523446481416,0.00586500894883586,1 +"4708",3910.61157334725,0.0572421071779343,0.147199431918388,0.388874511483653,0.697368977958087,1 +"4709",1378.90823879084,0.0364687084350916,0.142654256457072,0.255644025918469,0.798225719919638,1 +"4710",3494.42541975628,0.242240818866354,0.180883791039214,1.33920688788438,0.180503330734909,1 +"4711",3317.44651819799,0.0101899775989241,0.112829407017594,0.0903131361608161,0.928038381664002,1 +"4712",1416.43800498389,-0.117120121578953,0.136964861106208,-0.855110724261845,0.392489853146233,1 +"4713",3459.3671841836,-0.0416867200404597,0.132254928520964,-0.315199747235521,0.752609997466636,1 +"4714",3192.82650712693,-0.617008580250808,0.163177606893241,-3.78120865968139,0.000156068792545504,1 +"4715",4631.50730244886,0.135314953137645,0.165374008017034,0.818235917241038,0.413222489816059,1 +"4717",1540.59747974538,-0.390202566352651,0.145858682472339,-2.67520972861283,0.00746825141693648,1 +"4718",1682.40415783966,0.452524125515424,0.138095939404422,3.27688219847059,0.00104960150790567,1 +"4719",3065.64683143257,-0.231332693774501,0.133081913577753,-1.73827297455672,0.0821627259987566,1 +"4720",5499.38367127231,0.346679464732311,0.115271227912182,3.00751081611123,0.0026339675130879,1 +"4722",2858.96997695629,0.0137898628961392,0.112206040091631,0.122897687904127,0.902188116533509,1 +"4724",1596.88405802427,-0.596646662682285,0.133542380396694,-4.46784504596905,7.90115035263167e-06,0.0968997079246748 +"4725",5600.16148309548,0.194494297475197,0.194303479432504,1.0009820618923,0.316835480775262,1 +"4726",3100.4067546695,0.178877611303343,0.175635484286742,1.01845940773169,0.308459682131716,1 +"374291",2505.94388609666,-0.140725117903504,0.137415932074868,-1.02408152954807,0.305796767740093,1 +"4728",3928.31080915559,0.237334821558663,0.122098420740633,1.94379927372541,0.0519196613935257,1 +"4723",6877.62416570587,-0.0553306522442602,0.105032256434202,-0.526796758659778,0.598334734055268,1 +"4729",749.872199164202,0.0655544893450759,0.142994997532658,0.45843903966014,0.646637049419764,1 +"4731",1736.11738596437,-0.130024316518768,0.188343322915541,-0.690357982996164,0.489969092781338,1 +"283131",26848.0913448777,-0.340191225391179,0.301726791051839,-1.12748100427294,0.259539167463261,1 +"4703",358.29106598532,1.28509464040045,0.385446894855416,3.33403811926543,0.000855949265114105,1 +"10529",2375.43333811232,0.808999217634034,0.461245976752984,1.75394314185484,0.079440250252331,1 +"64168",536.575680630838,-3.36903682677055,0.408539803467164,-8.24653264670533,1.63056605428493e-16,1.99972620897503e-12 +"63941",1033.34892464771,-0.136208024034283,0.134106350873313,-1.01567169002276,0.309785753521464,1 +"25977",1380.09976196752,0.130787233953851,0.142239867811195,0.919483657897193,0.35784264955176,1 +"55707",3153.18674351145,0.242506111887772,0.143495510750857,1.6899909315548,0.0910296895732221,1 +"121441",1159.68413574902,0.62860290292547,0.136557108017634,4.60322360403454,4.16001169413275e-06,0.0510183834168441 +"4734",1187.15383997784,-0.150893545563083,0.209061946804157,-0.721764758578641,0.470439119833754,1 +"23327",3615.29243112214,0.0381355495820939,0.275131912808042,0.138608237746309,0.889759733372642,1 +"4738",1795.30367661171,0.273192851575125,0.106500613180837,2.56517632542872,0.010312338510933,1 +"4739",4863.82859556644,-0.638104880729952,0.311680486295855,-2.04730455959392,0.0406281905003347,1 +"257194",2243.61279931872,-3.82573713984998,0.409446597073936,-9.34367794772303,9.30445666234085e-21,1.14109856506948e-16 +"79661",475.084283407294,0.13118142270785,0.275560514858754,0.476053046914541,0.634036586383627,1 +"252969",850.315125707906,-0.263492424594465,0.190170979128497,-1.38555538706263,0.165882708872215,1 +"4750",876.119120218348,-1.13034123492198,0.183024051444081,-6.17591636729413,6.57808033547192e-10,8.06735772342277e-06 +"79858",351.198778120638,-0.0401553101407802,0.194460158414019,-0.206496335641601,0.836403226799673,1 +"4751",400.290803456764,3.82223973776507,0.4614121912306,8.28378575687618,1.19320183211985e-16,1.46334272691178e-12 +"4752",345.484537586468,-0.32051980667997,0.179894341533202,-1.78171144210677,0.0747963000217859,1 +"6787",1010.2158417292,0.285741199521798,0.126855727930282,2.25248953424348,0.0242913533568002,1 +"10783",1231.58544511369,-0.346467196906903,0.24762712901,-1.39914878588651,0.161768370643228,1 +"140609",3522.06460015559,-0.632007675983097,0.182227940431919,-3.46822597283987,0.000523906539873483,1 +"284086",388.957442626944,0.911258136957942,0.257252726144947,3.54226814469015,0.000396701991430856,1 +"91754",4098.21605022586,-0.572310638734498,0.187932304208138,-3.04530208973895,0.00232446705174343,1 +"4753",547.346926342041,0.598114825033187,0.574018061540621,1.04197910328447,0.297421367349648,1 +"9147",2405.56611771788,0.136594658956854,0.127599098959142,1.0704986169267,0.284394931194949,1 +"29937",2728.27436081177,-0.209844218175845,0.149965062218759,-1.39928737448019,0.161726824162549,1 +"4756",2545.31190691836,-0.377089068596513,0.293544399168625,-1.28460658648062,0.198929795890664,1 +"10763",3518.49357565601,-1.81522566145096,0.24195463921719,-7.50233873309421,6.26891173536788e-14,7.68819335225516e-10 +"10276",14682.0791020829,0.519595767689987,0.342889756959649,1.51534350952085,0.129685435201091,1 +"81831",735.462509202706,1.33726244988141,0.462505031769607,2.89134681360085,0.00383594547951432,1 +"4758",3673.28434140937,0.376769017202819,0.213781881522304,1.76239920109184,0.0780018735359386,1 +"10825",143.01920914003,0.512317390352687,0.273124264280319,1.87576666504765,0.0606873272455515,1 +"54492",2784.03865463276,-1.48560230311969,0.274549734519939,-5.41104986212177,6.26563212901931e-08,0.000768417124302929 +"84461",1533.36610044952,-0.00710368446617977,0.170620692624439,-0.0416343665994605,0.966790176399951,1 +"91624",3195.17749314599,-2.91312354924787,0.362915244821004,-8.0270079331737,9.98786284928041e-16,1.22491149983575e-11 +"4763",4380.62110033777,0.492069712385741,0.167669636338226,2.93475743809171,0.00333808520680085,1 +"4771",1879.16546691858,-0.245575458533787,0.159671853833805,-1.5380009227512,0.124048389164489,1 +"150372",283.366281396038,-0.353668094057785,0.316070311468585,-1.11895385686339,0.263159824925663,1 +"23114",1915.10596540704,-2.66262545846624,0.391645725401661,-6.79855615872107,1.05672821003535e-11,1.29597147678735e-07 +"10725",4408.01813687009,-0.289269146069704,0.215261957985168,-1.34380058965011,0.179012878788332,1 +"4772",1064.85736837616,-1.37585190544777,0.277114938616743,-4.96491424213912,6.87314341076604e-07,0.00842922307896347 +"4773",193.220694067173,-1.30478489564135,0.371349525213699,-3.51363017063369,0.000442027773025266,1 +"84901",2086.43915482926,0.173501937333527,0.0810322952575408,2.14114553687631,0.0322623034591825,1 +"4775",3493.91444907677,-0.0196696504687429,0.110789157182221,-0.177541295276678,0.859083231468667,1 +"4776",2515.57185595106,-1.8221796239736,0.306082679576486,-5.95322684215545,2.62906492387199e-09,3.22428522263661e-05 +"4779",14481.515257671,-0.332661897551234,0.191225498470145,-1.73963148331482,0.0819237473406146,1 +"4780",10160.7082117784,-0.711679991149654,0.176967798587969,-4.02152254154805,5.78231732766687e-05,0.709143397065065 +"9603",1137.14889779826,1.57810955016731,0.377939114988094,4.17556555430106,2.97246636458513e-05,0.36454327495272 +"4774",4006.27107667035,-1.70686249364681,0.276519909562421,-6.17265677667778,6.71518852029504e-10,8.23550720128983e-06 +"4781",3336.05260742076,-1.82598394901331,0.305554174828467,-5.97597447339214,2.28718815113686e-09,2.80500754855424e-05 +"4782",6751.14719117619,-1.32731177326075,0.200815053903782,-6.6096228716833,3.85300307415686e-11,4.72532297014597e-07 +"4783",3740.1588981647,-1.39685994558241,0.304366996871126,-4.58939359372744,4.44535530808991e-06,0.0545178374984147 +"4784",4911.5667788598,-1.99196710136598,0.26733467613829,-7.45121108170624,9.24872477289112e-14,1.13426360614737e-09 +"4790",3541.90471352863,-0.758133107575943,0.19185812400401,-3.95152986881128,7.76531778783876e-05,0.952338573500545 +"4791",3195.14760592593,-0.611272213470496,0.217298128449886,-2.81305788425817,0.00490728165832208,1 +"4792",10911.9768918735,-0.99740727852882,0.275668633409648,-3.61813843741394,0.000296729672049558,1 +"4793",1602.92730397153,0.439375061397556,0.158982699524645,2.76366587503721,0.00571560332081189,1 +"84807",233.848921654245,-0.419195328081175,0.212957728514488,-1.96844383627362,0.0490169922991145,1 +"4794",907.809062235433,0.243085925388499,0.216348792087753,1.12358346465785,0.261189774129687,1 +"4795",1127.84397359195,0.0275317528851689,0.159267174829374,0.172865205367422,0.862757381955961,1 +"64332",3033.73032119837,-1.45433121251802,0.320308536079599,-4.54040729078981,5.61456629181543e-06,0.0688570410028244 +"4798",1814.27981807998,0.0495209728149663,0.126951489185802,0.390077919783115,0.696478929601641,1 +"9054",1327.97955585361,0.434916997901633,0.134702821596769,3.22871483125684,0.00124347822688839,1 +"27247",903.390776660348,-0.371316096649849,0.144026726311478,-2.57810550971509,0.00993436594243094,1 +"4799",2366.20930823834,-0.424820093353473,0.137126339499444,-3.09801964308393,0.00194818515151425,1 +"152518",537.849373157243,0.532419161845432,0.150577408273927,3.53585021782861,0.000406465081037145,1 +"4800",1752.73808719105,0.193573518723549,0.133094757669105,1.4544037805366,0.145834392431871,1 +"4801",1751.00914712486,-0.0922902049880522,0.171511066323644,-0.538100584214776,0.590507609157715,1 +"4802",1800.49190601011,0.0428519221891601,0.0914882266887343,0.468387285884915,0.639507658495766,1 +"25983",1408.44143012274,0.264878959303618,0.0855869239443856,3.09485312821543,0.00196910377716496,1 +"25791",258.988609784157,0.0871495710798174,0.292745701962505,0.29769718392306,0.765934292940065,1 +"4804",584.899972076964,-3.4692643288114,0.411225544487512,-8.43640278508223,3.27253633483484e-17,4.01343856104145e-13 +"55768",1507.58873356639,0.318737085885083,0.148467477939071,2.14684785051639,0.0318053964531467,1 +"51335",7050.57059238509,-0.506708574990951,0.118893791011726,-4.26185901449621,2.02733335142186e-05,0.248632162218376 +"79840",526.625685707195,-0.253579394033769,0.161468491073111,-1.57045744558888,0.116308727032874,1 +"378884",155.099292014158,1.08867170737257,0.284975349728649,3.82023114774382,0.000133326665832829,1 +"374354",761.90260466932,-0.53378017416803,0.139171978784938,-3.83539976098836,0.000125360226752379,1 +"387921",1180.17542534578,-0.0734965498115817,0.1776692678733,-0.413670584065185,0.679115372821455,1 +"55651",2548.89350165222,0.227401584504299,0.109851626001509,2.07007936779356,0.0384449126470485,1 +"4810",878.966833202505,-0.18213723963838,0.232143626576024,-0.784588585630335,0.432694824570677,1 +"57224",975.934643362637,1.05238807673714,0.233735718137996,4.50247007654953,6.71682142508693e-06,0.0823750979572661 +"84276",661.068388505527,-0.629948624221583,0.153770860852449,-4.09667098648846,4.19133935890781e-05,0.514025858976453 +"4811",6878.02871069957,-0.610014838664842,0.260053660225603,-2.34572679398413,0.018990021494558,1 +"22795",1180.19099040254,0.281572117394901,0.231267552971956,1.21751674100623,0.223407670846382,1 +"60491",911.008442160223,0.582008729098111,0.128099922653394,4.54339641307107,5.53550130838109e-06,0.0678873880459857 +"51199",2632.38304910132,-0.105416240217505,0.148291971000676,-0.710869506326975,0.477165103891867,1 +"4814",2067.78587177586,-0.556459174010367,0.166516922671868,-3.34175749276189,0.000832497601580263,1 +"4815",135.316635417699,-0.386387083183417,0.241949956837782,-1.59697107713259,0.110272154513346,1 +"22981",560.932933884403,0.127446515247129,0.327637354581022,0.388986522645154,0.697286116196523,1 +"51388",1573.1115161362,0.526960093231309,0.217128967781594,2.42694514055521,0.0152265581003935,1 +"123606",1021.45739906643,0.713401619204711,0.192718149006437,3.70178741796074,0.000214085958262901,1 +"81614",2438.96803524572,0.280242960117644,0.132693686681683,2.11195398308524,0.0346903964483845,1 +"152519",394.950480901189,0.961799826308558,0.606950224227991,1.58464366255391,0.1130473186812,1 +"79815",668.535136897621,-0.0999320715257937,0.334328293014535,-0.298904022225391,0.76501327804143,1 +"57185",1553.00415414468,0.061593506264345,0.226382778514741,0.272076819042727,0.785562953150192,1 +"348938",2709.08185467545,-1.37487332431629,0.565955992443262,-2.42929369540004,0.0151282719351743,1 +"25836",4073.53314952375,0.12277657085769,0.141696966145006,0.866472827174336,0.386230921386789,1 +"8508",3705.44578409164,0.851946270427675,0.248001371280898,3.4352482247476,0.000592011289852345,1 +"25934",1182.05725207609,0.00259507910482495,0.16218591320444,0.016000644282551,0.98723387769813,1 +"11188",4380.66676915844,-0.693222967973481,0.142341893578924,-4.87012607844163,1.11527063694049e-06,0.0136776790914381 +"4817",1496.98485740866,0.31997957522471,0.125888602527795,2.54176763265015,0.011029347102049,1 +"56954",1609.26287180423,0.799542999835149,0.146458365075887,5.45918288396069,4.78330855698265e-08,0.000586624961428352 +"79576",816.136041846485,0.17333906700684,0.113553322393013,1.52649929877794,0.126885564950258,1 +"85407",373.240913474107,-1.26221326711387,0.265116554321216,-4.76097492420098,1.92659988076523e-06,0.0236278209377047 +"85409",502.888648084169,0.995150087910688,0.401169103825863,2.4806249494793,0.0131152288312806,1 +"4818",346.538963343591,-0.867793624490361,0.388418904591813,-2.23416938318777,0.0254719301336056,1 +"28512",412.931105795953,-0.560448584365826,0.157694670720995,-3.55401093647236,0.000379403435962074,1 +"28511",2613.48005650444,0.250485909683218,0.146904684818693,1.70509136582243,0.0881773856791774,1 +"55922",753.366438820025,0.561811063948725,0.162630224343966,3.45453046145028,0.000551251939395985,1 +"4820",2570.09607326936,0.292987231387375,0.158297462234081,1.85086499336372,0.064188978029291,1 +"4824",251.702322385188,-0.70510282825361,0.338238239702726,-2.08463368563329,0.0371025643401583,1 +"54475",901.938774785096,0.478031345424803,0.141156378178004,3.38653733961624,0.000707806436535065,1 +"57555",1958.01918752135,-0.455551682286993,0.285482624444973,-1.59572472465763,0.110550265977011,1 +"54413",177.130975848619,-1.68844119568033,0.400698250394368,-4.21374736230708,2.51168224069551e-05,0.308032709998898 +"57502",385.055644626999,-0.631344499481276,0.390186799493008,-1.61805704421989,0.105650304699195,1 +"22829",286.717330764789,-0.561113409350724,0.40599716180781,-1.38206239386556,0.166952544061657,1 +"51701",1022.31569342584,0.740846825232461,0.131760661966019,5.62267078943126,1.88027519734187e-08,0.000230596950202007 +"57486",1147.65353339875,1.15818341834136,0.162210628662835,7.13999710061363,9.33328878122963e-13,1.14463453613e-08 +"197358",243.576013809058,-1.12284213971568,0.208478096922895,-5.38589979613521,7.20831154869313e-08,0.000884027328331726 +"84166",1843.40024110006,0.0920786907347452,0.258879271390623,0.355681975772434,0.722078744732205,1 +"22861",1390.08886085778,-1.18472649912014,0.214080691251655,-5.53401846842635,3.12975997516671e-08,0.000383833763354445 +"55655",1903.39902123942,0.778135992174954,0.597923188401819,1.30139791743957,0.193122286125695,1 +"114548",170.491124697763,-1.6613074828003,0.282067597620647,-5.88974946719897,3.86781529394091e-09,4.74348867648913e-05 +"79671",1505.7648708968,-0.510515171386855,0.206598370962632,-2.47105129148959,0.0134716494991718,1 +"4828",544.082448401667,1.30331371320523,0.263788718379877,4.94074849451429,7.782323995417e-07,0.0095442421479794 +"51068",2448.35069123835,0.0033448331591573,0.179002801187109,0.0186859263484989,0.985091655443096,1 +"4830",2334.68375363429,1.41430645632439,0.194131826161821,7.28528899298289,3.20981491739214e-13,3.93651701468972e-09 +"4831",2050.82132654442,0.460706807281801,0.172256733596383,2.67453583766013,0.00748327776003592,1 +"4832",1555.35566787005,-0.256414081816755,0.126487757432379,-2.02718497838682,0.0426434988025363,1 +"4833",4349.28435970571,-0.813614061194183,0.287189174826629,-2.83302482304686,0.00461098051898134,1 +"10201",453.875882759063,0.54182592761734,0.132929285441321,4.07604634162062,4.58078935439188e-05,0.56178800642262 +"29922",498.964042012913,-0.00755643017256409,0.135904675119731,-0.0556009582886456,0.955659701083737,1 +"9111",1258.33951822124,0.634321919672875,0.207871667395858,3.05150734402352,0.00227695478283448,1 +"64802",518.771982265806,-0.231523242638936,0.133542803456503,-1.73370063115641,0.0829712144891108,1 +"23057",146.406689566838,-0.520101755797729,0.356402025323327,-1.45931200959336,0.144479251433624,1 +"349565",325.41924985476,-0.871874982218443,0.356461328618231,-2.4459174452335,0.0144484079500428,1 +"57407",1699.74276905482,0.258750683025099,0.149514985541388,1.73060032804186,0.0835230731536971,1 +"4836",5275.45188135058,0.224314749763133,0.102749883846702,2.18311438772815,0.0290273872917241,1 +"9397",734.69644152173,-1.05869624379791,0.201118379646223,-5.26404521386959,1.40919769251135e-07,0.00172824005009592 +"4826",505.721611160779,-3.35199017615956,0.40867527762125,-8.20208698620155,2.36249244718335e-16,2.89736073722566e-12 +"4837",5094.42666598632,-1.19681116704701,0.289618392582666,-4.13237279709508,3.59037471125217e-05,0.440323554587966 +"23530",3255.14758695046,-0.337302549152923,0.217616506970315,-1.54998604586064,0.121144865284979,1 +"84273",1238.46295432934,-0.0396721180112044,0.106494903127731,-0.372525978671686,0.709501273423241,1 +"28987",1803.96364647763,0.254615227841676,0.15193513769678,1.67581529658936,0.0937743769637056,1 +"26155",2739.33705475269,0.629012604705098,0.11637672909131,5.40496892820877,6.48196285828089e-08,0.000794947924939569 +"64318",819.681425054772,0.345237961625557,0.182140585592201,1.89544774166105,0.0580331088443315,1 +"79050",1178.42976576245,0.481659993736352,0.106657459381056,4.51595225061122,6.30328676334043e-06,0.077303508865607 +"10392",993.291426171765,0.0478155004037038,0.172800187335087,0.276709771795454,0.782002967946965,1 +"64127",412.443248372942,0.503822557316249,0.48065705314643,1.04819549410162,0.294548546134498,1 +"79954",1776.43388943763,0.571043888523042,0.0990989971643095,5.76235789325125,8.29468748156753e-09,0.000101726047273944 +"25926",2385.02918521588,0.714254439049507,0.112726259943603,6.33618501498094,2.35523948145453e-10,2.88846570005584e-06 +"79159",819.581824382939,0.479277899740625,0.164123323547588,2.92023028403794,0.00349772818405485,1 +"8996",1206.01025419566,0.448057749178764,0.226701454958578,1.9764220272015,0.0481069988122449,1 +"65083",3583.07091024351,0.434575875986238,0.19871105237857,2.18697385366525,0.0287444327712043,1 +"51406",2218.63487927697,0.292300801513315,0.149937031088673,1.94949039200628,0.0512368891075271,1 +"55035",1536.69497932492,0.143606209222263,0.136396205394631,1.05286073616763,0.292404823634751,1 +"79707",1389.80483599966,-0.0776647754615973,0.111601350992035,-0.695912502592735,0.486483627011631,1 +"9221",5965.78404252087,0.203436334814241,0.18984523464935,1.07159042042848,0.283904037954695,1 +"64434",1186.17634762423,0.0868591760674418,0.144872637160302,0.599555428616461,0.548802559255222,1 +"23420",2023.74662320585,0.31658338031113,0.127147303187928,2.48989457403755,0.0127780992752579,1 +"283820",3007.34203363831,0.317278206077019,0.124218522289195,2.55419401414515,0.0106433932234899,1 +"408050",925.135392815794,0.23890986223878,0.135582792025821,1.76209575469785,0.0780531204569088,1 +"4841",10849.8089548675,0.485807640013866,0.104009124990517,4.67081748892859,3.0000340633852e-06,0.0367924177533561 +"55505",3009.17353979767,0.52959783504823,0.153791073906545,3.4436188108684,0.000573984337525456,1 +"8602",2172.24627697107,-0.107237383158894,0.19421069128406,-0.552170338563107,0.580831654309573,1 +"317648",587.727346792278,-0.445183019488227,0.180208287185266,-2.47038039394132,0.0134969445003806,1 +"51491",1281.77304862585,0.443774011675589,0.215788368884549,2.05652424164259,0.0397320121051938,1 +"4839",2432.53799602937,0.771597985652476,0.205062815420411,3.7627396467301,0.000168062135766122,1 +"10528",5149.89784430418,0.482701041091494,0.131350515986031,3.67490784080994,0.000237935284967469,1 +"51602",3108.57062046958,0.286443296884043,0.171513273442288,1.67009404657201,0.0949007578642342,1 +"9722",98.5635574846256,-0.134662664039822,0.18783169555902,-0.716932590311991,0.473415691538465,1 +"4846",582.94860702635,-1.05490433642079,0.217680883371918,-4.84610462839051,1.25909132774092e-06,0.0154414960434147 +"51070",2297.81483325802,0.173532010319347,0.126167232861497,1.37541266764442,0.169003543903456,1 +"115677",294.19034143203,-1.65252548041709,0.159427616270692,-10.3653652928691,3.56394095814251e-25,4.37081719106597e-21 +"4851",4510.49523062659,-0.295522424476434,0.184870643843725,-1.5985362431379,0.109923686097359,1 +"4853",6207.5590318976,-0.351408730494477,0.160845502651435,-2.18475944121364,0.0289064893145773,1 +"4854",10486.6385655944,0.966537425658606,0.249703774485894,3.87073614585352,0.000108507187784672,1 +"4855",905.634558837643,-0.686767119169783,0.206409228735278,-3.32721130434807,0.000877198295556157,1 +"4857",287.784291571305,-4.01469644427233,0.434946188760427,-9.23032905682884,2.69801767086474e-20,3.30884887154851e-16 +"50507",133.692650794353,1.18909118360867,0.426838136594986,2.78581289173081,0.00533936818512598,1 +"10811",466.00232987508,0.1214337850536,0.267949031401264,0.453197327934164,0.650406656383264,1 +"4862",2624.27909220612,-0.48993051551914,0.306559641928129,-1.59815725396105,0.110007984265954,1 +"4863",922.591206330201,-0.0321738598823451,0.156988976892692,-0.204943433094268,0.837616320661262,1 +"4864",2033.08929473049,-0.0481810036734185,0.207843059384487,-0.231814349808472,0.816682211085892,1 +"10577",7605.14528889064,-0.0928948934061421,0.221470635892275,-0.419445643581061,0.674890472238432,1 +"56654",2401.53273646375,-1.15337771959175,0.212823518582187,-5.41940912957108,5.97963338768538e-08,0.000733342238665735 +"9520",5801.75421245801,-0.0317337934948873,0.16218770020839,-0.19566091296759,0.844875579942344,1 +"4867",231.375142381094,-0.753037380750864,0.252560117969039,-2.98161636447753,0.00286731056125673,1 +"27031",312.7489985019,-0.511852426210326,0.148136903590623,-3.45526613425668,0.000549749885804065,1 +"261734",529.198367837685,0.740464426668237,0.116503997456803,6.35569974277305,2.07479949742481e-10,2.54453410364179e-06 +"80896",953.937746964101,0.167171302134671,0.300664499557417,0.556006121044386,0.578206670337464,1 +"55666",5215.14455101714,0.280268994802261,0.133069172459934,2.10619025895459,0.0351878289686161,1 +"4869",10549.5292799447,0.0224906193651252,0.106133725910751,0.211908318229002,0.832178560960043,1 +"10360",1187.66103468267,0.659047083838477,0.131597384535076,5.00805609599949,5.49825117445704e-07,0.00674305524035411 +"255743",946.621843606016,-0.412305254513692,0.356729026402575,-1.15579396123599,0.247765443684521,1 +"4881",841.601945281161,-2.57345157803502,0.283021488617119,-9.09277804526168,9.65401911934399e-20,1.18396890479635e-15 +"4882",621.072959978738,-1.59741565722681,0.267563465619317,-5.97023085169473,2.36918119484124e-09,2.9055638173533e-05 +"4883",225.973147431226,-1.14075231206776,0.405345352868686,-2.81427258014554,0.00488877552738623,1 +"10641",883.559419087164,0.163477319331328,0.255907471234658,0.638814171945084,0.522943827726828,1 +"8131",1567.29913453583,0.185463525778483,0.172463144384517,1.07538063532566,0.28220434797785,1 +"27020",6446.45986403306,-0.679780539496795,0.139635977743201,-4.86823346306175,1.12600259952329e-06,0.0138092958805537 +"4884",180.555676445323,-2.38241966157369,0.432976895347277,-5.50241753584295,3.74618464230546e-08,0.000459432084532342 +"4885",360.058062270512,-0.633404811768118,0.348914840518213,-1.81535646585676,0.0694691466873533,1 +"23467",1550.9952667986,-1.24707490857397,0.438670650819693,-2.8428501114531,0.00447120925233086,1 +"4886",185.585676963415,-1.42043998405,0.434284012682272,-3.27076277866395,0.00107257841184904,1 +"1728",10851.4828136301,0.899362576513234,0.326919473735103,2.75102173094152,0.00594097020651951,1 +"4835",1111.93932376497,-0.106070687668736,0.140730438642149,-0.753715320524607,0.451020180419374,1 +"9572",1292.06125576258,-0.512550785534122,0.219838935949061,-2.33148319846711,0.0197278950001661,1 +"9975",2449.05449823256,0.00633897429853978,0.149616196407182,0.0423682358645731,0.966205149709948,1 +"7376",4530.13286441559,-0.436724100826881,0.12909279241488,-3.38302466510549,0.000716921932344854,1 +"10062",1280.90206903286,-0.55701991272159,0.264166468373274,-2.1085943123353,0.0349796142488978,1 +"7181",807.64428532846,0.109721841102154,0.113518411150183,0.966555468759985,0.333766305114333,1 +"7182",1770.03826851161,0.0530458395319869,0.200868672352895,0.264082193159486,0.791716584778556,1 +"126382",1070.59888227499,0.937932390081041,0.139733315651784,6.71230325929122,1.91576015456252e-11,2.34948825355547e-07 +"7025",1218.6280969156,-2.15808708008113,0.288554549101923,-7.47895705265368,7.49147486893112e-14,9.18754477925712e-10 +"7026",2654.34960474561,-0.0422075419017422,0.229819325462824,-0.183655320616497,0.854283861589117,1 +"2063",2894.21122691619,0.51292140926435,0.226896546292084,2.26059593081715,0.0237842899649429,1 +"2908",2225.18122811106,-0.889900826526637,0.158561191168239,-5.61234952872181,1.99597752336274e-08,0.000244786683465207 +"4306",956.910483784486,-3.56565372507365,0.403706817355662,-8.8322851430382,1.02558594596962e-18,1.25777860413714e-14 +"3164",43903.4359277225,-3.81263859676914,0.25893967977819,-14.7240415220838,4.51830359799017e-49,5.54124753257515e-45 +"4929",3461.52242181932,-2.9815871730647,0.277658885520379,-10.7383099499111,6.72644256389859e-27,8.24930916036523e-23 +"8013",4124.73794931132,-3.94279008328859,0.326506362392653,-12.0756914333786,1.419658818369e-33,1.74106957484774e-29 +"2494",160.322378338617,-1.35652237198567,0.29535648831558,-4.59283078466273,4.37273620091665e-06,0.0536272367680418 +"441478",1516.52153225766,-0.141658217195075,0.412674215212876,-0.343268883717392,0.73139618740591,1 +"4893",3417.72488579664,1.00181622510297,0.217012086301752,4.61640751063954,3.90439909537929e-06,0.0478835505057316 +"29982",787.784905055024,-0.039372782536427,0.184420648029456,-0.213494437619253,0.830941327251668,1 +"29959",6739.40326794827,0.0692683690804081,0.127964142846669,0.541310772998398,0.588293396281337,1 +"340371",1095.13051432539,-0.483081040666655,0.227703032454387,-2.1215397768733,0.0338764042643378,1 +"4897",337.66206768482,2.5034803528846,0.414163099640533,6.04467263031752,1.49713676615713e-09,1.83608853001511e-05 +"9315",1398.97442675947,0.501802676256367,0.289449028482657,1.73364781663599,0.0829805907555648,1 +"4899",922.683856163236,-0.0464630988283803,0.0828130538980274,-0.561060082213525,0.574756579266665,1 +"3084",219.134778483744,-0.369659166522204,0.547908110081537,-0.674673653702979,0.499883126797092,1 +"9542",180.152521275836,-3.89858234009146,0.383541062866941,-10.1647065139515,2.8497897307778e-24,3.4949821258259e-20 +"145957",256.718323351553,0.849365259168834,0.42224601382712,2.01154121378299,0.0442683216356214,1 +"4900",267.233330706364,-0.61920606163146,0.26884477670012,-2.30321031054343,0.0212670129931412,1 +"8204",3676.48640416533,0.573159458119221,0.247753609380839,2.31342525968281,0.0206992696276955,1 +"83714",254.040068430324,-0.949797389679047,0.165987473770466,-5.72210280754358,1.05213605351679e-08,0.0001290339656033 +"56675",218.939668242229,0.281069558405945,0.291419146482151,0.96448555902678,0.334802545037467,1 +"203447",160.863260592383,-1.24088635568808,0.426996561333074,-2.90608044199246,0.00365987346946047,1 +"11270",1231.87670132686,0.544366535007961,0.248184808701801,2.19339184318098,0.0282791595073479,1 +"51299",646.551506859607,-2.41766021608898,0.408973156688006,-5.91153765608472,3.38928759032792e-09,4.15662230077816e-05 +"8829",2960.67870425894,-0.575149713500208,0.171231117083599,-3.35890884376703,0.000782508749443811,1 +"8828",3297.95721788184,-1.16950837920056,0.342699359164632,-3.41263660968427,0.000643376712387518,1 +"80023",1297.56777047117,-0.527949361267395,0.288433021271519,-1.83040540552535,0.0671893400108214,1 +"9378",316.995998396722,-5.76108446176343,0.657297958640306,-8.76479895613988,1.87110261998206e-18,2.29472025314599e-14 +"9379",394.155671080753,-2.38731221713241,0.380390385623096,-6.27595309282564,3.47498944495212e-10,4.26172705528929e-06 +"9369",429.257387020339,-1.82746882064976,0.371966912207451,-4.91298758216042,8.9698960136119e-07,0.0110006804710936 +"10412",2614.09122257036,-0.765876938408762,0.184516318444939,-4.15072739833202,3.31420308191172e-05,0.406453865965653 +"64324",3503.4343582025,0.0693035970576693,0.161299830631825,0.429656973514487,0.667445186385839,1 +"50814",1404.88472148128,0.500458904058987,0.223654306662213,2.23764483469051,0.0252442253369293,1 +"4905",2258.48705463638,0.285391688018036,0.149692144769859,1.90652414297895,0.0565822363874831,1 +"55968",4539.11297053944,0.0316547404942978,0.117297930659207,0.269866146115283,0.787263232647503,1 +"25936",1005.45317347828,0.14790771668634,0.156020163489194,0.948003856543734,0.343127490901574,1 +"8439",1875.85774890007,-0.154262507402056,0.12780259702509,-1.20703734503746,0.227417762199214,1 +"197370",2536.19879787374,-0.295248619848169,0.126236697578317,-2.338849364029,0.0193432308918378,1 +"286053",874.884889883067,0.158818785295127,0.143929013627579,1.10345219002248,0.269830842942878,1 +"54780",1224.937396336,-0.336801780606238,0.129728179619594,-2.59621141369478,0.00942580487049979,1 +"84081",1844.97245855935,-0.441714236413946,0.171634071349619,-2.57358129968363,0.0100651996478595,1 +"54888",3867.60280885069,0.34984190698708,0.191700560031767,1.82493941034448,0.0680101731356106,1 +"63899",241.906346256061,0.303765594858305,0.160828301369958,1.88875709232012,0.0589243846192672,1 +"387338",1238.02500157121,0.204179925267127,0.11576961775157,1.76367452214688,0.077786793001604,1 +"55695",1213.2119644943,0.640490343810448,0.112168863959636,5.71005465510399,1.12939898073679e-08,0.00013850949099756 +"155400",805.189578873392,0.893074882740929,0.173116761339511,5.15880077602342,2.48536594568825e-07,0.00304805279579206 +"260294",634.51313019,1.00238014329768,0.196347121874589,5.10514304323708,3.30544383330199e-07,0.00405379631716156 +"221078",789.746240284255,0.0281949914883629,0.273029765485029,0.10326709777696,0.917750988146388,1 +"79730",189.74131901907,0.208642318011042,0.354930612007107,0.587839738114403,0.556639868334917,1 +"30833",1456.76684226609,0.229295004160758,0.127872953642355,1.79314700747484,0.0729494208910162,1 +"22978",4708.0928094734,0.111860524810117,0.20957098303974,0.533759603489122,0.593507865856264,1 +"221294",1296.65957808288,-0.468061362815024,0.131474458798761,-3.56009347436412,0.000370722809330675,1 +"64943",3368.63177154416,0.666368330022521,0.202573787258018,3.28950916622678,0.0010036228756074,1 +"51559",2061.02034513309,-1.38227525695187,0.409819293262617,-3.37288966058046,0.00074383754223705,1 +"4907",1417.67560900047,-1.7764753192555,0.346698431805333,-5.12397852509747,2.99155070111425e-07,0.00366883777984652 +"56953",140.721310087671,-0.75506261829695,0.40436030623042,-1.86730152950939,0.0618594919429232,1 +"123803",2022.93473752787,-0.274957460772274,0.204799673561213,-1.34256786639893,0.179411941185857,1 +"4909",151.509564143217,0.318566990669506,0.576140292172537,0.552933018220681,0.580309277048561,1 +"4913",710.934638914371,0.0506314954928863,0.149777299818545,0.338045188117468,0.735329134946196,1 +"50863",451.971831470936,0.737463316836666,0.295781558955798,2.49327009919125,0.0126572521834824,1 +"9423",1298.31151985921,-1.91517231909153,0.333654425685415,-5.73998775876346,9.46833949220436e-09,0.000116119715532394 +"59277",2215.42452806403,-0.545322388845984,0.325847622474164,-1.67355030767248,0.0942190116137935,1 +"84284",1184.11763584688,0.0966831558838067,0.130171601625108,0.742736162702005,0.457641431178443,1 +"4915",1250.68742079833,-2.96376775129198,0.548198083469467,-5.40638108862899,6.4310888916006e-08,0.000788708741665898 +"9891",892.378080089133,0.806328622728334,0.273483788646653,2.94835985240108,0.00319464954406627,1 +"81788",601.114968694798,0.15013948672978,0.465619272620716,0.322451186104749,0.747110912251455,1 +"51667",3353.561150796,-0.0382075483862168,0.134926943094658,-0.283172118999333,0.777044899825425,1 +"4682",1101.61520604895,-0.324038106467371,0.147800452295334,-2.19240267154176,0.0283504439050048,1 +"10101",2084.33144058516,0.0781349408559272,0.115519699101499,0.67637763484196,0.498800913283583,1 +"80224",543.929930677813,-0.0657801395444796,0.152414490400117,-0.431587176336019,0.666041480330388,1 +"4924",15823.025133697,-0.444751718425384,0.161052627972311,-2.76153033964679,0.00575311710406242,1 +"4925",2573.80381811114,-0.838017174338327,0.244265631244752,-3.43076170834136,0.000601889071594576,1 +"64710",17107.4074999436,-0.0484684172427582,0.164781764716643,-0.294137020113264,0.768653203464671,1 +"10726",5896.02924889141,0.11477625327246,0.136575127582537,0.840389134566956,0.400690239246719,1 +"84955",1105.95224671482,0.740305407331231,0.157065789873579,4.71334596748977,2.43681943049014e-06,0.029885153495531 +"134492",976.552064265522,0.371051059001559,0.0938460035913223,3.95382909023383,7.69103566215737e-05,0.94322861360698 +"23386",5149.02308413341,-0.123136254079962,0.138398460298431,-0.889722716672144,0.373614793060325,1 +"4521",1066.53801989758,1.18573318250839,0.195636260367254,6.06090701326273,1.35356071462455e-09,1.66000686041555e-05 +"83594",581.310500439503,-0.490061792357869,0.261532139854609,-1.87381096881746,0.0609564840244682,1 +"25961",149.891329161206,-0.0278014706776867,0.206811120522848,-0.134429283142031,0.893063127184621,1 +"256281",714.150089553701,0.752397556814608,0.240358692654604,3.13031140461312,0.0017462108492771,1 +"55270",1063.30058262547,0.526350001347877,0.177126696159169,2.97160175603846,0.00296250684404048,1 +"131870",2141.75013252806,-0.564241575417587,0.198213579750154,-2.84663430290098,0.00441840871910874,1 +"84309",943.545999883046,-0.0181388145851903,0.13017124905961,-0.139345782699557,0.889176913390399,1 +"152195",267.781344688107,0.795679544078357,0.24457288065797,3.25334330583896,0.00114055609742231,1 +"200035",121.724437986763,-0.0267727249287718,0.299584915354982,-0.0893660647000482,0.928790991978996,1 +"79873",334.012644769881,0.17651499226961,0.214988532687998,0.821043755509402,0.411621345299094,1 +"390916",1152.01425362985,0.953282164460005,0.158898698167447,5.99930758057842,1.981606910505e-09,2.43024271504333e-05 +"318",902.920950178064,-0.177359045967418,0.140697588058641,-1.26056919961909,0.207464101473319,1 +"11051",5166.65592736763,0.279202749686962,0.144112956944059,1.93738825160143,0.0526979016606719,1 +"84304",1581.68609507269,0.524588867423156,0.143026313026316,3.66777872073535,0.000244666781084775,1 +"11165",188.920878649791,-0.0802139211112071,0.112675100173367,-0.71190459105682,0.476523859003103,1 +"11163",254.004391696946,-0.148761831563274,0.248111714133608,-0.599576009874188,0.548788839319132,1 +"11164",1903.00735787179,1.0682115861467,0.24958174988571,4.28000679791638,1.86887604936297e-05,0.229198958693875 +"283927",171.603880530072,-1.215188972175,0.268059282322491,-4.5332844348701,5.80735294784092e-06,0.0712213765523211 +"254552",438.67759888813,1.5158192197166,0.377543518201109,4.01495230785332,5.945781650299e-05,0.729190661592669 +"53343",1320.3113568267,-0.411449501894806,0.135665015751129,-3.03283421755237,0.00242268655063589,1 +"83540",692.48918400069,3.43212312946011,0.41268066041423,8.31665609436387,9.0479803698449e-17,1.10964431255778e-12 +"26747",456.719053035109,0.173885926436884,0.14053688912203,1.23729739233018,0.215976695619602,1 +"57532",5668.1752044956,0.409263812633743,0.195341071489974,2.09512423328111,0.0361599502492597,1 +"4926",17880.3565877045,-0.400486305568323,0.136669743244122,-2.93032163565982,0.00338611322823108,1 +"8650",3125.35961285827,-0.25676673413554,0.127216482329831,-2.01834486721483,0.0435553569874995,1 +"9253",2437.42386650927,-0.33514544933685,0.273969479908147,-1.22329483360414,0.221218357808781,1 +"57122",1969.14217336055,0.910324182071223,0.138399663711167,6.57750284690738,4.7841470106476e-11,5.86727789385822e-07 +"55746",2523.12447338837,0.261943583567082,0.112277919380027,2.33299285392421,0.0196485203783112,1 +"9972",3216.82305039591,0.321979156828819,0.160030448393193,2.01198684413931,0.0442213238150717,1 +"9631",1451.54473499631,1.04510330906648,0.20116340045551,5.1952954995788,2.04394911340102e-07,0.00250669919267501 +"23279",2394.00964369526,0.363206025585743,0.167881478999179,2.16346691577287,0.030505285691001,1 +"23511",3490.11819173693,0.183159473394102,0.171748596026046,1.06643942152706,0.28622504929187,1 +"23165",3465.32016061365,0.783513997231623,0.165439231932595,4.73596249256556,2.18017909504339e-06,0.0267377164216121 +"23225",3029.26991456723,1.76526643934931,0.347716839081346,5.07673555302375,3.83974696835352e-07,0.00470906568198875 +"8021",3144.94313776706,-0.0535214571877364,0.127745246980107,-0.418970243143928,0.675237879745941,1 +"129401",525.590278961745,0.206171327291455,0.131917377118809,1.56288225095447,0.118080293143343,1 +"79023",1052.78039204211,0.816107857249086,0.142628871009087,5.72189803842094,1.05340523584987e-08,0.000129189618124628 +"348995",1636.48571073131,0.48066259562586,0.0872671886924845,5.5079417914978,3.63053403879157e-08,0.000445248694517399 +"10762",2523.5939511928,0.436157897870253,0.179962991676649,2.42359772865927,0.0153676177600106,1 +"53371",1709.15995380192,-0.0689399084211149,0.12343584394948,-0.558508016920357,0.576497531667345,1 +"23636",3764.09270623827,0.497365120009225,0.122540152124973,4.05879306810381,4.93269998815358e-05,0.604946326547155 +"79902",2135.82221063084,0.869858610981311,0.105163665352995,8.27147482984281,1.32311965047721e-16,1.62267393934524e-12 +"4927",1847.27168293522,0.184286626022131,0.140110482423932,1.31529506453725,0.188410756205942,1 +"9688",2668.06409355085,0.731773313641896,0.151162747599623,4.84096330122358,1.29211235531581e-06,0.0158464659255931 +"4928",5182.53141721398,-0.160802304042461,0.146193937273095,-1.0999245730832,0.271364987092184,1 +"26471",3536.10544782208,-1.55089233548585,0.325354671230811,-4.76677445453249,1.87198668590988e-06,0.0229580447159987 +"116150",1569.65508894032,0.0322100909128518,0.124200990841754,0.259338437596613,0.795374124683115,1 +"51203",1773.7589752656,3.10518719983653,0.41609459197545,7.46269540561522,8.47701607833117e-14,1.03962125184653e-09 +"10204",3671.33494048794,0.541147297892417,0.1318955454806,4.10284741551041,4.08096401636145e-05,0.500489426966569 +"4931",1088.54803110327,0.487772165172341,0.0984619611628286,4.95391478507829,7.27350695691115e-07,0.00892022893195583 +"10482",4306.79503243485,-0.200462445946198,0.144138861480828,-1.39075918795752,0.16429846274328,1 +"64359",3446.25189641193,-0.863341360771258,0.200456468980331,-4.30687702503615,1.65575599166196e-05,0.203061914817423 +"11248",699.281034241952,-3.36795912039028,0.386446295961464,-8.71520611165628,2.90230152187731e-18,3.55938258643033e-14 +"29107",1211.81811509764,0.29371048195263,0.113811241077261,2.58068077610404,0.0098605714591545,1 +"55916",602.306649958763,0.654359254322295,0.180417356247875,3.62691964859119,0.000286822500570505,1 +"57523",3483.57239547094,-0.188338538849824,0.267459663164297,-0.704175488077728,0.481323493982329,1 +"220323",2368.0371215067,-1.09763084747753,0.240597092385817,-4.56211185510669,5.06416543111927e-06,0.0621069248472468 +"4938",3598.49401174383,1.12987848182813,0.378220862970287,2.98735102277237,0.00281406409352087,1 +"4939",3556.97742759171,1.13523858036291,0.358288174052695,3.16850698007116,0.00153224069708004,1 +"4940",4490.22586064532,1.34950600077106,0.282870448732375,4.77075638978404,1.8353540443749e-06,0.0225087820002138 +"8638",985.289483570055,0.0878404494702609,0.48852882715728,0.179806072000703,0.857304816544864,1 +"4942",3351.40645252122,-1.35857846086624,0.308135957191273,-4.40902280035727,1.03838093892719e-05,0.127347038350031 +"4946",23190.0277334942,0.03330785731404,0.0838141153349209,0.397401525756633,0.691071390551021,1 +"4947",3176.99009369823,-0.117531783639183,0.0957030043026415,-1.22808875745961,0.219413650916353,1 +"84033",1012.77837778759,-0.422628103792963,0.272705298335358,-1.54976124913143,0.121198831114349,1 +"23363",3195.60751414438,-0.218451304963828,0.218914955360175,-0.997882052436373,0.318336555883566,1 +"79629",728.68959952795,0.11716950838433,0.155778312856026,0.752155458845037,0.451957575823134,1 +"54940",4356.40739889846,-0.336154988474787,0.124150631568723,-2.70763816685629,0.00677638575555611,1 +"132299",2364.15694849794,1.16401470669557,0.251436369850352,4.62946035765771,3.66619901115452e-06,0.0449622646727991 +"100506658",706.039701147221,0.63541863025824,0.516958277870618,1.22914876781849,0.219016033372239,1 +"4952",2828.45153041888,-0.503545495708287,0.18198156531368,-2.76701376230241,0.0056572366889655,1 +"4953",8093.2712382209,-1.69504401531137,0.304830721227242,-5.56060756765972,2.68837091748041e-08,0.000329701809319797 +"4957",2499.4432079169,0.667425865179674,0.131846804898839,5.06213150703017,4.14594872895734e-07,0.00508459152119329 +"57489",1146.62160060732,0.792071486717971,0.218417216200869,3.62641508071204,0.000287383269172605,1 +"440836",678.137406393872,1.05418143424861,0.322892903822665,3.26480211168585,0.00109540576653065,1 +"8481",1729.03263685115,0.378449102059079,0.143615383644282,2.63515712910291,0.0084098342374952,1 +"4967",7725.87299072968,-0.573748045427651,0.158416662399991,-3.62176577094508,0.00029259899322488,1 +"55239",1662.40185894684,0.260721846773808,0.118240617140775,2.20501087594459,0.0274533313534896,1 +"79676",647.061620470626,0.522926591033112,0.123968201151311,4.21823166083413,2.46225773017973e-05,0.301971288029242 +"11054",2979.36184915793,0.183187720417309,0.158038126645608,1.15913624329462,0.246400654601502,1 +"79627",399.093448131143,-0.287979354284191,0.290032267988383,-0.992921774813437,0.320748077355981,1 +"4968",626.194962162941,0.0765099373923821,0.184319971868867,0.41509303965614,0.678073794580699,1 +"4969",2104.4455694188,-5.78332773634773,0.523397939960216,-11.0495806246149,2.20241310816008e-28,2.70103943584752e-24 +"8473",4494.30747041276,0.359095910017854,0.194940761462288,1.84207708702996,0.0654638748435723,1 +"11339",193.840395620272,2.49035163207973,0.319930580604385,7.78403748517937,7.02459298999548e-15,8.61496084293046e-11 +"729082",989.429715259798,0.446551600787293,0.127674666441493,3.49757405469255,0.000469510341578737,1 +"29789",2595.93050955442,0.370244348186062,0.121890246519274,3.03752235112196,0.00238531714338431,1 +"10439",776.039838994557,-3.27816019646927,0.412222967174863,-7.95239580884073,1.82938672327698e-15,2.24355987742689e-11 +"93145",643.543652551478,1.58657015182776,0.348446978850887,4.55326132274118,5.28205923989644e-06,0.06477917451809 +"10562",14292.7656414613,-3.61107701168947,0.624604794363312,-5.78137895238285,7.40907828583693e-09,9.08649360975041e-05 +"283298",649.116996411405,-2.20352324103222,0.297207548376654,-7.4140890871307,1.22463582588336e-13,1.50189337686335e-09 +"169611",2374.55092744047,-1.20226144360702,0.260592507646838,-4.61356872637473,3.95813300352029e-06,0.0485425431551729 +"25903",1269.99068299833,0.868596391256623,0.316492658428578,2.74444404356582,0.00606134870650784,1 +"56944",2846.59847497846,-2.36863538448474,0.365323031039544,-6.48367385364311,8.95156192366583e-11,1.09781955431838e-06 +"4973",698.589187323962,1.61015205531292,0.637802610985489,2.52453036030227,0.0115852997375886,1 +"115209",851.117510577001,-0.153454944399586,0.134014621788276,-1.14506120564981,0.252183804285948,1 +"4958",284.106339535246,-3.47442706462019,0.548325443701593,-6.33643232231811,2.35146398279564e-10,2.88383542850057e-06 +"9480",395.017142109134,1.02742931493736,0.454898041334519,2.25859252311402,0.0239087433414542,1 +"4976",4156.0644568164,0.222126585830351,0.123905571032937,1.79270862462918,0.0730195267375787,1 +"80207",1440.46497002445,-0.277482962965902,0.142315096340054,-1.94977883655345,0.0512024850692555,1 +"4983",440.843826274931,-0.445099458212219,0.270183120942563,-1.64739920339746,0.0994760189988479,1 +"26873",810.462399323563,0.830901233864806,0.247439868682853,3.357992542947,0.000785107311389008,1 +"23596",242.974231316104,0.964984134579082,0.274895005960363,3.51037346498111,0.000447477724470093,1 +"4987",145.561656775179,1.06431134957163,0.315945269523738,3.36865733478456,0.000755352724360302,1 +"10133",4573.90538022767,-0.408176339658203,0.169495357079595,-2.40818596267816,0.0160320124123071,1 +"10819",220.243632389004,0.930753661676953,0.453812160845611,2.05096676991342,0.0402701829396986,1 +"79315",148.731583864061,1.29431831982759,0.665571427291278,1.94467230225787,0.0518144311679363,1 +"84876",1009.84324939538,0.127840784139518,0.174824996045418,0.731250033069105,0.464626444580617,1 +"80228",1301.32394152864,0.202007189767247,0.210100975743119,0.961476685449721,0.336312542666849,1 +"93129",1479.3789303922,-0.164741604918572,0.223723939771502,-0.736361093438769,0.461510975482806,1 +"4998",336.170540254636,2.63554370746402,0.302893695854909,8.70121677516355,3.28344372217596e-18,4.0268153808766e-14 +"4999",950.68339155994,0.480052674397721,0.124661926479388,3.85083632152189,0.000117715154801735,1 +"23595",999.833727697993,0.114922331529775,0.107286890683953,1.07116844189579,0.284093698552614,1 +"5000",1268.23352599134,0.133537769643623,0.108431158217059,1.23154425203414,0.218119376581267,1 +"5001",765.491560856707,0.50872992170765,0.118968396560914,4.27617700510211,1.90130074143732e-05,0.233175522929873 +"23594",418.077329564608,2.91646254687367,0.375310093480625,7.77080765354963,7.79872481884022e-15,9.56435611782565e-11 +"94101",1272.9409796484,0.425628850918145,0.110037792503392,3.86802425998346,0.000109720751094781,1 +"29095",1598.10326549533,0.585356194917392,0.229181492624703,2.55411633903592,0.0106457679663859,1 +"94103",4934.79257423415,0.0667303670019805,0.239100383212895,0.27908933522103,0.780176267353926,1 +"10956",16186.295722481,-0.00120846861039427,0.135625575510853,-0.00891032982416776,0.992890679474632,1 +"5007",3950.94324947235,0.250705818499303,0.118076680108571,2.12324582863255,0.0337332574846945,1 +"23762",700.819607331389,0.229764039620348,0.351590400841587,0.653499182771689,0.513434516101987,1 +"114884",2737.46295760743,-1.79423295635277,0.30471871441457,-5.88816134840908,3.90515772682318e-09,4.78928543617595e-05 +"114885",1234.94919637957,0.283659086247483,0.137656717361612,2.06062654757585,0.0393386820449438,1 +"114876",2205.10713271158,-1.22215307552908,0.224504225961149,-5.44378650467175,5.21597310477172e-08,0.000639686941569204 +"9885",3314.56251760863,-0.257932598363471,0.161136675756422,-1.60070695980702,0.109441838934759,1 +"26031",1315.38018187497,0.787516561750945,0.349806438135551,2.25129236027892,0.0243670263624258,1 +"114879",1636.32925313849,-1.02687622090841,0.2294746901196,-4.47489969535729,7.64471924583112e-06,0.0937548368308729 +"114880",137.625355569154,-1.31249930567312,0.350759411172198,-3.74187908825283,0.000182649395073047,1 +"114881",739.397295009607,0.289803333619421,0.190003655798411,1.52525135583125,0.12719641567382,1 +"114882",3055.07991170195,0.119363377822134,0.153282063742958,0.778717189131124,0.436146328233573,1 +"114883",3107.2176790527,0.323995023358877,0.0967097711622221,3.35017878199096,0.000807594170299718,1 +"126014",143.288300361952,0.3063817124637,0.344494868922146,0.88936509685124,0.373806896684284,1 +"127700",307.914444261071,-0.154308948967878,0.191929381632334,-0.803988152598109,0.421403817241808,1 +"55644",1209.03130450636,-0.0255863866231237,0.092365617168557,-0.277012024684807,0.781770872960039,1 +"64172",266.370070385313,0.308969979590117,0.177842311336339,1.73732548384275,0.0823297358464273,1 +"29948",1003.81913686094,-0.554024983458694,0.402850112165327,-1.3752633218365,0.169049823251904,1 +"734",1230.80406631648,0.366415158327943,0.159003621743003,2.30444535986847,0.0211976562232241,1 +"5008",190.036299991191,0.208743475123106,0.3663338639957,0.569817578004627,0.568801431992598,1 +"9180",3221.35730662426,-0.861138530746089,0.262021729061802,-3.28651571695787,0.00101435113157581,1 +"130497",1694.22584652804,-1.8957228892242,0.441889001378838,-4.29004316312224,1.78638395582141e-05,0.219082128341938 +"116039",575.718386004074,-1.46369192968933,0.259516614824164,-5.64007021546985,1.6998083450096e-08,0.000208464495431978 +"100128731",5859.12902045172,-0.0036159337881024,0.124183201663097,-0.0291177368571334,0.976770689829,1 +"58505",2431.14874361832,0.423344332193969,0.133195926910678,3.17835794241566,0.00148111777551698,1 +"202459",209.617516391984,0.340877354338324,0.125883120584505,2.70788770373304,0.00677129296810362,1 +"26578",2674.405680578,0.112143169732067,0.26209529028484,0.427871746990157,0.668744497760381,1 +"28962",1759.71374948456,-0.652701283464086,0.170633222871774,-3.82517116232734,0.000130681261312648,1 +"55611",4993.37932494459,0.482641054362284,0.120051396944108,4.02028686585783,5.81273171296918e-05,0.71287341727854 +"78990",307.14655100409,1.56023339997499,0.372421541701913,4.18942844402863,2.79657948313873e-05,0.342972507812134 +"220213",1151.812172013,-0.708427758100017,0.213771281805636,-3.31395195891715,0.000919873105044215,1 +"23252",585.393447868218,0.0625142580582484,0.141581401022157,0.4415428693806,0.658820033333743,1 +"54726",2079.37717201095,-0.231898544996499,0.159298708544663,-1.45574654757154,0.145462697077061,1 +"55593",3725.52250735481,-0.171552333248967,0.145851572918206,-1.17621174606855,0.239510271858544,1 +"51633",654.257769984472,0.331042321557427,0.158510127227625,2.08846164814466,0.0367562114839211,1 +"56957",1887.58508358121,-0.0357466972029941,0.15634296519534,-0.228642824819978,0.819146536712001,1 +"5013",172.709469612817,5.0903360848667,0.529197102141913,9.61897951493629,6.64874886264443e-22,8.15402560514713e-18 +"124641",88.6874691040503,-0.203628108962826,0.188518136944079,-1.08015129081839,0.280074814821407,1 +"5016",171.100883084941,-0.422987906925887,0.32330486310235,-1.30832522241393,0.190763023699418,1 +"5017",4801.64543496011,-0.462814067739353,0.683843301484723,-0.676783799350694,0.498543138523234,1 +"58495",465.058232167192,1.77003057709672,0.549188800079429,3.22299103120953,0.00126859525754231,1 +"5018",4357.58632037985,-0.00188640027070729,0.105054226065521,-0.0179564434612156,0.985673600885535,1 +"5019",1572.95178406127,-1.02992430849635,0.324063652822615,-3.17815435185539,0.00148215823613202,1 +"165140",190.603318266353,-2.6653272766679,0.263029310469228,-10.1331949352455,3.93575223879238e-24,4.82680654565497e-20 +"92106",545.886243248425,0.276120482275115,0.1644002272289,1.67956265589988,0.0930424386454999,1 +"55074",2651.05398887761,0.0664391686450526,0.171005380519895,0.388520925149035,0.697630571875647,1 +"54995",384.259319215324,0.619864760708699,0.138596834619543,4.47243086330412,7.73354074284584e-06,0.0948441436702614 +"9943",4137.13395717619,-0.42369013434114,0.180930829314085,-2.34172438134155,0.0191948840821833,1 +"5023",2911.47339646378,-5.15114699351011,0.45140880235996,-11.4112683815202,3.67333411996597e-30,4.50497696472626e-26 +"5025",885.961436588423,0.463037108931798,0.250525103636411,1.84826631028485,0.0645638268747404,1 +"5027",115.935026195565,-1.1866007347055,0.33723746764089,-3.51859104804173,0.000433844916553303,1 +"5028",244.531356348805,-1.11737602111747,0.463672398684715,-2.40983941310091,0.0159595434997154,1 +"9934",302.057572992056,-3.11369791007154,0.348372406410406,-8.93784310346151,3.96839988652737e-19,4.86684562083717e-15 +"5029",646.392010249252,1.30324887537888,0.493868884055578,2.63885601513664,0.00831863038010898,1 +"5031",260.358674426976,0.891237966073917,0.335120027532579,2.65945897843206,0.007826626031792,1 +"5033",3388.70445479886,0.761953726353285,0.249780579837914,3.05049226344068,0.00228466566333275,1 +"8974",2602.29801497196,0.0333963134174598,0.201020129812291,0.166134174963695,0.868051360120963,1 +"283208",341.513618747566,-0.686013065049478,0.381394425744127,-1.79869714590353,0.0720666006526346,1 +"5034",43600.7159760964,0.747375261010387,0.190159678259009,3.93025097566907,8.48572398740628e-05,1 +"54681",1457.41065619668,0.1541738424628,0.218054638930687,0.707042249680399,0.479540222535814,1 +"5036",5907.88184716353,0.27906948043815,0.149941809332239,1.86118522699557,0.0627180238516373,1 +"647033",2011.91470704864,0.370136989740823,0.155115995053172,2.38619485768662,0.0170237283248498,1 +"80227",1047.59468000365,-0.0301270471665956,0.130564863355631,-0.230743910668646,0.817513758100068,1 +"26986",72431.3607926369,0.566496791197006,0.278317151066115,2.03543615270204,0.0418070067502811,1 +"80336",722.130141784408,2.40078324452118,0.329724112474756,7.28118798016321,3.30893220515881e-13,4.05807445640677e-09 +"5042",20370.7189956449,0.578479409891696,0.275631376334525,2.09874295729531,0.0358395656938865,1 +"8761",12414.6841807842,0.164848387718516,0.218846868533377,0.753259065680323,0.451294251828853,1 +"8106",524.342682572607,0.365848849785169,0.101866180691896,3.59146526649227,0.00032882400550309,1 +"133015",421.781783760308,-0.121647822901273,0.167955607646428,-0.724285569299721,0.468890434511781,1 +"55690",6612.2418388693,0.00918580432568885,0.158629665556419,0.0579072287233803,0.953822525098041,1 +"23241",3276.95325995744,-0.29284557888437,0.158242560868884,-1.85061197996547,0.0642253949902188,1 +"11252",3534.03390333087,-0.545078797333066,0.155300595037738,-3.50983070734926,0.000448392079204087,1 +"29763",2285.3557058942,0.419471686180492,0.22413968857571,1.87147438655784,0.0612793568401972,1 +"29943",1590.10015785882,3.96275411757262,0.74950894606671,5.28713384725887,1.24247728805131e-07,0.00152377414606613 +"11240",400.403848930394,0.898360583526347,0.381883187988461,2.35244863294032,0.0186502655122153,1 +"51702",5314.8752585454,0.740501695112303,0.66488012726188,1.11373714561428,0.265391968709943,1 +"54623",4777.55124430108,-0.271756096291623,0.139018207866426,-1.95482376346511,0.0506038753145019,1 +"5048",5726.13328984223,-0.659940964492811,0.129126953608049,-5.11079171352551,3.20811527465618e-07,0.00393443257283833 +"5049",4829.95588800503,0.271426593458702,0.165554418806418,1.63950074794488,0.101109015033107,1 +"5050",2207.71005325021,1.84433439211513,0.29159718154297,6.32493902155,2.53332603319858e-10,3.10687104711474e-06 +"5051",945.280984913233,0.24183102600632,0.145410658981487,1.66309009050779,0.0962944032035712,1 +"55824",1115.42063031513,-0.313373188215409,0.374400073963128,-0.837000871549697,0.402592078140963,1 +"10606",4491.21017671904,0.864908672186225,0.128937229649933,6.7079824386988,1.97333672529678e-11,2.42010015990397e-07 +"10605",931.011831770797,0.35783290889925,0.122685766214896,2.9166619726079,0.0035379897174859,1 +"51247",3833.12797115693,-0.48082643053933,0.13191910418075,-3.64485821462616,0.00026753925679475,1 +"400961",696.246256079003,0.488226017679661,0.248501310900633,1.96468185986707,0.0494510707841383,1 +"5058",4042.4390308205,0.0868632670280378,0.271546001540639,0.319884168926119,0.749056139206265,1 +"55003",1009.34943686895,0.337654696238639,0.14978630462927,2.25424278323946,0.0241808986480148,1 +"5062",4505.08416833468,0.355871492644895,0.116189996023416,3.06284107775659,0.00219246462232788,1 +"10298",3979.99353687341,0.778510204678517,0.198460182125242,3.92275264661011,8.75430157926204e-05,1 +"56924",1262.47046879235,1.0486816689165,0.437971452561004,2.39440644540737,0.0166472897596903,1 +"79728",777.881532227401,1.01005014015924,0.170791015850606,5.91395358314837,3.33992042898815e-09,4.09607841411107e-05 +"23022",32725.6609548453,-2.36633807692713,0.329922182411387,-7.17241277816382,7.36873629817856e-13,9.03701819608619e-09 +"5064",1288.92209232527,-1.76133818818813,0.350006907151505,-5.03229551245887,4.84641436152367e-07,0.00594364257297263 +"342979",743.131208817493,1.75604567542936,0.583655402455028,3.00870285453182,0.00262365584748989,1 +"54873",1151.87499289327,-1.17559171904976,0.350496794793775,-3.35407266631769,0.000796314475834809,1 +"5066",6158.08472095071,-1.2461597863051,0.211155854522093,-5.90161134355249,3.59968359823412e-09,4.41465196487432e-05 +"51025",105.304068235969,0.374215033932929,0.1477676493796,2.53245575404402,0.011326666374244,1 +"25891",1689.67771089882,-2.66130118353967,0.303755038227881,-8.76134005567713,1.92942787985308e-18,2.36625035185182e-14 +"9924",1606.08503848364,0.322717986740706,0.176603613568646,1.82735777722502,0.067645993364784,1 +"255967",1967.61156069654,0.0364435671414759,0.149072968046831,0.244467978460234,0.806868399183412,1 +"53354",373.985050781147,1.05207547148018,0.250280033061758,4.20359330550582,2.62710784812185e-05,0.322188506493664 +"80025",1220.56613701358,0.297279310559097,0.121488881573551,2.4469672179764,0.0144063941633203,1 +"79646",791.683903687568,0.213764024028914,0.208799531102294,1.0237763605139,0.305940918434137,1 +"55229",1227.131330083,0.132672486972688,0.126935180319383,1.04519871196362,0.295931138638301,1 +"24145",1085.18313335268,-0.194758184071446,0.182011111561305,-1.07003458415696,0.284603741983654,1 +"56666",500.975097700783,1.79751567210143,0.418875047313912,4.29129327141404,1.77635528019882e-05,0.217852211563583 +"196743",336.682611004508,-0.589415960957157,0.167528404168696,-3.51830463545532,0.000434313474480861,1 +"89932",525.593959432512,-0.539097190934431,0.215525970987778,-2.50130964942968,0.0123734938857415,1 +"10914",8440.10068700343,0.248982476340665,0.110088327909635,2.26166098684904,0.0237183568659094,1 +"56903",258.756422665736,0.451094686817779,0.167181306831228,2.6982363959696,0.00697079204431492,1 +"64895",940.675544479898,0.387418242940783,0.106397180862157,3.64124537700582,0.000271322383789528,1 +"5069",447.821304745954,-1.11055964185769,0.403065442334966,-2.75528369642456,0.00586412643582542,1 +"9061",3327.4696773875,0.180304332648067,0.138121441957252,1.3054043607789,0.1917551942708,1 +"9060",834.497631995296,-0.59635488992795,0.274463006222407,-2.17280608463751,0.0297949151692793,1 +"152559",743.099436551811,-0.0991580771416911,0.213730333863586,-0.46394012187797,0.642690646228103,1 +"124222",659.742058532716,2.05512113548694,0.287490355498812,7.14848723158448,8.77394095658757e-13,1.0760361189159e-08 +"54852",345.142482703798,-0.00278600137750865,0.450434336954616,-0.0061851443128088,0.995065000312059,1 +"79957",184.378053896535,0.58323582997768,0.262142322453897,2.22488236358802,0.0260891362739913,1 +"164091",2561.26855283611,0.233656450144437,0.336242560317488,0.694904446134996,0.487115186165312,1 +"85315",1189.02063789052,-1.91921056281492,0.306479996541554,-6.26210710151424,3.79809920380669e-10,4.65798886354853e-06 +"56288",4415.64909509285,-0.343457604972049,0.156251232134737,-2.19811133825737,0.0279411727324347,1 +"117583",1017.20252166405,-2.08771196731664,0.318667586415685,-6.55137847811522,5.70083690697856e-11,6.9915063827185e-07 +"50855",284.454188513888,0.0256437422242681,0.227165891608132,0.112885530669826,0.910121307852407,1 +"84612",567.428248847273,0.870011909987512,0.404350147791493,2.15163000369705,0.0314265070715322,1 +"84552",1285.33384097795,0.0760265355228345,0.221277009649665,0.343580815933852,0.73116155401923,1 +"8505",750.339775181452,0.305370419281506,0.11467268104818,2.66297444596419,0.00774532957850751,1 +"11315",8517.5422616247,0.0157088033442184,0.112102760863413,0.140128603642137,0.888558381117775,1 +"55486",1972.40154311211,0.072806549082933,0.131211647168932,0.554878706683685,0.578977627326941,1 +"25849",4035.3199397263,-1.99278553623567,0.296016968502488,-6.73199764971895,1.67349346231291e-11,2.05237238218055e-07 +"5073",2840.02904207497,0.00957100265357345,0.0921511463886796,0.103862003118273,0.917278861094368,1 +"142",6839.30268060276,0.274789066103093,0.189756229303528,1.44811618101638,0.147584560928565,1 +"84875",3338.89201162316,0.664283750892352,0.185646504797308,3.57821846211234,0.000345944244361772,1 +"57097",422.22705457922,-0.0774115395315227,0.263802900848912,-0.293444610663545,0.769182331046618,1 +"64761",1961.13275762849,1.02124301495184,0.216665934272486,4.71344523254629,2.4356320988087e-06,0.0298705920597899 +"54625",4523.77660120308,1.02863788218355,0.203721532446837,5.04923495238278,4.43582907184166e-07,0.00544010077370661 +"54956",664.507044213484,0.247342440067,0.158980151781789,1.55580704443215,0.119753982527262,1 +"10038",973.491430271195,0.620073148448494,0.131674952101363,4.70911998487885,2.4878859304384e-06,0.0305114330508966 +"10039",1244.68475657061,-0.493718919442873,0.206147872327731,-2.3949746066647,0.0166215163678568,1 +"143",4201.95989823391,0.00734010527728233,0.183228922747393,0.0400597523972878,0.968045488961189,1 +"56965",1923.99169789814,-0.109792319772858,0.252919196497124,-0.434100381835218,0.664215548233613,1 +"79668",945.925425390633,-0.192983501671665,0.184906857730284,-1.04367952622483,0.296633685349269,1 +"83666",3572.63183977065,0.939256872610566,0.246541509531576,3.80973116614372,0.000139117979086206,1 +"55010",300.870212415202,2.07515773544535,0.278416605223111,7.45342661506274,9.09465953090968e-14,1.11536904487076e-09 +"25973",249.545498911515,0.707337169425048,0.196845381531693,3.59336431427101,0.000326435670925211,1 +"25859",501.067966422171,-2.92364468281256,0.514671139089693,-5.68060740297903,1.34217238208461e-08,0.000164604020938856 +"55742",8572.50251389721,-1.5192413196412,0.287549275865581,-5.2834120867388,1.26799726332906e-07,0.00155507184374676 +"29780",1102.44816921424,-0.533861374421517,0.262930700847703,-2.03042616438597,0.0423132393454966,1 +"64098",503.938105120812,-0.722583386735688,0.297985104769083,-2.42489767163241,0.0153127022286865,1 +"23178",625.499038792333,1.12066007542239,0.192546325791085,5.82021012770881,5.87736907916451e-09,7.20800543868736e-05 +"219988",2703.50214782152,0.743964574051507,0.124497409403433,5.97574341198294,2.29043263975482e-09,2.80898658939531e-05 +"23598",2457.65562826748,0.275058066162498,0.234346706606656,1.17372277232031,0.240506085836174,1 +"5074",1050.86332835872,0.288775747556431,0.182268421496311,1.58434327343025,0.113115623313765,1 +"5080",228.286906603681,-0.316904527114229,0.33928287209715,-0.934042220155126,0.350282114812283,1 +"7849",210.666008999659,-0.151806424286922,0.413001854794511,-0.367568383833176,0.713195092920708,1 +"5083",357.775966226785,1.01972529722198,0.469240154410462,2.17314159420803,0.0297696620043007,1 +"22976",771.516270477434,0.641448490729115,0.0951442885752842,6.74184967205426,1.56382841308771e-11,1.91787916581077e-07 +"55872",469.878648161799,3.09548378594561,0.462502422822591,6.69290285455,2.18786391506187e-11,2.68319630543188e-07 +"64081",384.326516459812,-1.0136065330797,0.243232587433801,-4.1672316352576,3.08321158753952e-05,0.378125069095846 +"55193",3580.42506373138,-0.12634902985245,0.133896847358736,-0.94362960999325,0.34535895564347,1 +"5087",9488.67033342885,-1.00025755057781,0.293473197478605,-3.40834379143171,0.000653584938104686,1 +"5089",3058.26152894369,-0.0789031480864855,0.147608279850647,-0.534544187943394,0.592965086049556,1 +"5090",1499.57229811645,-0.993857418595841,0.237115844268401,-4.19144246417735,2.77186486089398e-05,0.339941506540038 +"80714",160.598807087623,0.798323420830569,0.476579995045362,1.67510896204232,0.0939128548987896,1 +"57326",12686.43099889,-1.29777800957038,0.236684720757372,-5.48315077296749,4.17816629737886e-08,0.000512410314710543 +"5091",690.760006197492,0.30082199306797,0.271043549796566,1.10986589901791,0.267056817088527,1 +"5092",3022.27846384814,-0.14002235852192,0.217747356058385,-0.643049638152097,0.520191891463059,1 +"84105",348.914367127176,-0.158411418996242,0.14075073946144,-1.12547486146345,0.260387863912327,1 +"5093",16852.8868948104,-0.19199572201506,0.136876391362497,-1.40269421266804,0.160708043834858,1 +"400960",131.958723592724,-0.565858018830947,0.216397140954107,-2.61490524475531,0.00892522123385161,1 +"5094",10862.2960433555,0.164556839082205,0.102890002451972,1.59934721703422,0.109743473503948,1 +"57060",1668.88723779432,-0.0368389085759228,0.207137443457214,-0.177847654972783,0.858842620625574,1 +"5095",1264.9221959173,-0.847839251644712,0.154043538411044,-5.50389364195447,3.7149371556154e-08,0.000455599892764672 +"5096",1996.6938389314,0.216935365890033,0.180207843951282,1.20380645555407,0.228664393989582,1 +"5097",3541.60912424773,0.269584448142789,0.355820950920809,0.757640738818632,0.448666084755266,1 +"51294",487.884103686115,-0.481132644853651,0.213455889918253,-2.25401437757426,0.0241952634959856,1 +"27253",407.380702567103,-0.0871493447888075,0.249448282363468,-0.349368389964792,0.72681276115184,1 +"54510",1058.81378883561,-1.65448608840169,0.294001129171649,-5.62748208846416,1.82859143846904e-08,0.000224258454013843 +"57526",251.147234856626,-1.9285278309479,0.40927569125974,-4.71205075730724,2.45236274708808e-06,0.0300757767302882 +"5099",3141.40204189429,-2.02955952893485,0.377321261357914,-5.37886341636519,7.49575467356363e-08,0.000919279353165843 +"56126",192.234835882228,-0.292898250094691,0.295577112411395,-0.990936841168623,0.321716421488547,1 +"56125",138.785802291845,0.085513735335507,0.353296669457033,0.242045121645017,0.808745200478078,1 +"56124",113.597711503049,-0.291733441709332,0.233540675958421,-1.24917614677655,0.211600654391074,1 +"56123",141.502290789195,0.142808846500414,0.217630900088562,0.656197472152623,0.51169707514255,1 +"56122",426.831511107323,-0.0875981504904733,0.213960612880727,-0.409412504998316,0.682236964214679,1 +"56121",195.854417691689,-1.50776305549059,0.34069205047801,-4.42558918934304,9.61794076540888e-06,0.117954425546974 +"57717",283.583668451597,-0.289771903845972,0.261432122279344,-1.10840206367734,0.267688214066274,1 +"56133",218.096714110426,0.452770747954736,0.335522034420925,1.34945160527585,0.177191954737938,1 +"56131",278.238485787968,-1.28771617137337,0.373724829879253,-3.44562648349969,0.000569737267596348,1 +"26167",229.705873368271,-1.54091706919335,0.370777507369026,-4.15590762268035,3.23998725145323e-05,0.397352036518224 +"56129",183.265331267094,-0.9489058639443,0.296863714758268,-3.19643599662216,0.00139136691132051,1 +"56127",165.296304105402,0.423042028518031,0.347832195171379,1.21622447372819,0.223899423167692,1 +"56101",232.656530187582,-0.232501821727896,0.371368604530808,-0.62606752130176,0.531270654262772,1 +"56099",164.028520389433,-2.12212753472435,0.222876323852517,-9.52154763701423,1.70618871032154e-21,2.09246983433834e-17 +"5098",853.974656043054,-1.18293903686103,0.247527896880444,-4.77901299921918,1.76157806278799e-06,0.0216039933620319 +"51585",2092.44810266116,-0.535357685690054,0.185321819507535,-2.88880007282837,0.00386714859898845,1 +"84759",593.127462282181,0.932335796433555,0.140702363545763,6.62629804459765,3.44209845850529e-11,4.22138954951089e-07 +"7703",1255.10595364125,0.768142910319722,0.165157211823736,4.65098012879706,3.30361163322682e-06,0.0405154930698937 +"10336",2626.16793081141,0.345194867159447,0.119447604798122,2.88992707507914,0.00385331203550447,1 +"84333",2296.68330406075,-0.796000887437292,0.159315909681756,-4.99636783939129,5.8420179258353e-07,0.00716465078424441 +"84108",280.248350641112,0.204076392208784,0.153617593685459,1.32847017918171,0.184022828723973,1 +"55795",1549.92847034702,0.0816692363455279,0.110872901975879,0.736602315715478,0.461364226311154,1 +"63935",2456.58511138545,-0.0783835478320456,0.152813441719352,-0.512936211305287,0.607995942222829,1 +"5106",2029.63363320734,1.11000947867508,0.24171684944616,4.59218908908675,4.38620673340966e-06,0.053792439378536 +"27445",391.029692589197,0.967930015091513,0.464629089008433,2.08323163140125,0.0372301151772341,1 +"5108",5616.02808645941,-0.836688633762238,0.154820996632628,-5.40423231964848,6.5086541517068e-08,0.000798221345165322 +"5110",2725.76622934303,-0.125799606562273,0.104342776560864,-1.20563790526403,0.227957137017671,1 +"115294",3370.16625007434,-0.396973306409168,0.164060902876509,-2.41967037514096,0.0155345815739359,1 +"55251",2667.58293449224,0.428660596180602,0.149931475487519,2.85904340490724,0.00424920639197164,1 +"5111",4373.35454934086,1.38094647165059,0.212248825615448,6.50626201415402,7.70438012974215e-11,9.44865179111577e-07 +"57092",5058.14154136746,-0.288523867696805,0.126943926917558,-2.27284498520502,0.0230355230656332,1 +"5116",2139.52922363762,0.0295170929190504,0.150971020920856,0.195514958692133,0.844989828307125,1 +"5118",4164.0523652009,-1.02935918159592,0.271362499916007,-3.79329930227844,0.000148658790952372,1 +"26577",1574.0950254224,-4.87973705186341,0.498588867216447,-9.78709588745193,1.27917144678845e-22,1.56877586234136e-18 +"5121",5198.35499704332,-6.21237279365683,0.669035218905242,-9.28556915706513,1.60845199458101e-20,1.97260552615416e-16 +"654790",2074.49055829716,-1.53946144327407,0.41865094162676,-3.67719570220518,0.000235812124352177,1 +"5126",169.980943074143,-6.92911975986214,0.671286489359555,-10.3221498863666,5.5955961124298e-25,6.86243907228391e-21 +"54760",130.856738968829,0.982253225067051,0.297672130840015,3.29978228830218,0.000967598601077871,1 +"5125",364.427404917211,-1.16840966186038,0.314342055853088,-3.71700076430897,0.000201601833724066,1 +"5046",625.677215267159,0.743441039144112,0.288217025304203,2.57944872742836,0.00989581476465247,1 +"9159",8721.36520841017,-2.02489482316854,0.313958542206906,-6.44956117115007,1.12174477616094e-10,1.37570779348378e-06 +"58488",1181.58121497837,0.42738920831974,0.273765911977383,1.56114837392556,0.11848874667197,1 +"51449",5214.14629024328,-0.222373739063234,0.14078893572585,-1.57948306034679,0.114225298972862,1 +"78991",709.125676124361,0.445244507767812,0.187443164047851,2.37535740516069,0.0175319650016173,1 +"5130",1039.46629089592,0.223180700993498,0.149710562768572,1.49074785951142,0.136027705638552,1 +"5833",2271.98581500662,0.68661002717422,0.193422198862833,3.54979951221181,0.000385524635277544,1 +"11333",4466.40297655076,0.22136292126414,0.114790505729276,1.92840792762257,0.0538044065379665,1 +"5133",125.089048545436,-0.864930927182524,0.418455932242171,-2.0669582160015,0.0387380913582107,1 +"11235",1635.29968116856,0.592241415408866,0.148595472873429,3.98559528064038,6.73111595034409e-05,0.8255040601502 +"22984",2604.45327538195,0.375165661471373,0.140261787423664,2.6747531766309,0.00747842860121127,1 +"80380",124.274502700126,-0.381635526707727,0.288991803432139,-1.32057560863432,0.186642910183648,1 +"5134",1994.89651895041,0.208390025215961,0.182205819809361,1.14370674566814,0.252745274904168,1 +"84306",407.899510064588,0.851365279032005,0.148422775168868,5.73608247159755,9.68914949119635e-09,0.000118827729360032 +"27250",5317.76880638544,-0.979973531516351,0.205080549118902,-4.77848111742757,1.76624346350139e-06,0.021661209836381 +"9141",2006.22143026602,0.493740243204821,0.125159210686579,3.94489738706673,7.983415782808e-05,0.979086111603573 +"10016",3930.7859721638,0.454905340970517,0.188344133146569,2.41528808660321,0.0157227685405456,1 +"10015",6860.88836791526,0.135869421875587,0.105427683325535,1.28874520989003,0.197486679544597,1 +"10081",1207.66920965018,-0.108309315485495,0.138808610963949,-0.780278073048545,0.4352272163291,1 +"5082",1009.73807779415,0.0988319976339637,0.151752628984485,0.651270414854351,0.51487194279318,1 +"79031",997.284701718239,-0.238688421546584,0.204016034158122,-1.1699493254613,0.242021362253495,1 +"10846",938.92822374432,0.874034821343526,0.437927396991364,1.99584412244654,0.0459508924563458,1 +"201626",1292.36747767702,-0.364815586116151,0.162564095794335,-2.24413382508332,0.024823792206543,1 +"5136",486.229815987859,-2.78858746244854,0.301626021743502,-9.24518198506067,2.34840737207938e-20,2.88008680111815e-16 +"5153",308.432599999959,-1.49715925697006,0.367205353284635,-4.07717165225955,4.55868391730063e-05,0.559076995617749 +"5138",1288.06356891793,-3.08995781399061,0.31087155617553,-9.93966077824729,2.79778240492833e-23,3.4312003414041e-19 +"5139",406.000850440774,-1.13554656750845,0.259656801591644,-4.37325947384308,1.22405093465473e-05,0.150117606626056 +"5140",1052.45932146969,-1.45378076897319,0.27122377059228,-5.36007874899211,8.31856825274625e-08,0.0010201892105168 +"5141",863.825820106209,-0.429121196142259,0.219462961001461,-1.95532400631103,0.0505448394341011,1 +"5142",1186.04698605156,-2.12784304495302,0.23644562155,-8.99929138464951,2.27179217687769e-19,2.7861259257228e-15 +"5144",2822.18796974467,-2.11423796341688,0.290061720545053,-7.28892443802658,3.12439212605031e-13,3.8317545033881e-09 +"9659",2289.00342905063,0.554615396354749,0.159050257711776,3.48704493996985,0.000488389282840467,1 +"8654",2347.66437681771,-2.3579730773756,0.263500446461563,-8.94864926811253,3.5985858504394e-19,4.41330568697888e-15 +"5158",152.704676723198,-0.0264857631935842,0.355354317716228,-0.0745333934980766,0.940585970883366,1 +"5147",745.128698445342,-0.100711314297442,0.150656378765152,-0.668483572503979,0.503824964586111,1 +"5150",1695.84716575566,0.816545698101346,0.281450578603601,2.90120454593693,0.00371731142407547,1 +"27115",646.373384810572,-2.28816374770825,0.32812023971399,-6.97355259066847,3.09035835501543e-12,3.79001548659093e-08 +"5151",1381.19514894346,-0.28339045901111,0.137361275794009,-2.06310299153083,0.0391028440198045,1 +"8622",270.863511844851,-0.687479641086002,0.250037371838916,-2.74950754773132,0.00596848882795426,1 +"5152",1042.95207616731,-0.744549184311452,0.352051604985272,-2.11488649325317,0.0344396226363024,1 +"5154",1078.91449042268,-0.111785484964999,0.190646386004433,-0.586349876899317,0.557640419888594,1 +"5155",885.050002934473,0.311963049881452,0.284053999216344,1.09825262359307,0.272094193173168,1 +"56034",1097.21563819442,-0.709605219881504,0.306343383177772,-2.31637195006663,0.0205379689212813,1 +"80310",982.442047076378,-2.27037452928376,0.359289074295802,-6.3190747832609,2.6313392539944e-10,3.22707446109874e-06 +"5156",3593.25328915926,-1.66066736319217,0.314167685625089,-5.28592671740887,1.25069959021566e-07,0.00153385797744048 +"5159",5578.12187551385,-0.640233877847946,0.237225771515008,-2.6988377938838,0.00695820819340647,1 +"5157",435.218839909435,-0.588624135112839,0.439722773650441,-1.33862553951042,0.180692607542303,1 +"5160",3396.76085049003,-0.00701823587494217,0.154876764599269,-0.0453149695701693,0.963856255703836,1 +"5162",2801.7788362593,-0.270477958245086,0.133573014483098,-2.02494462891165,0.042873050244136,1 +"8050",1347.92620266174,-0.0459606327940733,0.1306383573863,-0.351815758507792,0.724976439606559,1 +"2923",13070.6405835234,0.689633565402296,0.161900116655135,4.25962364728428,2.04771397968278e-05,0.251131642468296 +"9601",11423.2330214724,1.44805011009815,0.195053059700281,7.42387795568669,1.13739972525596e-13,1.39490702305391e-09 +"10954",1360.23061676706,0.626941640659695,0.23825773085558,2.63135906821724,0.00850441310178133,1 +"10130",8377.80521082423,0.830586152552637,0.112321875443475,7.39469626262271,1.41731872443761e-13,1.73819968365029e-09 +"149420",827.657993713957,0.992023704614911,0.173106414309592,5.73071603713498,1.00007565408899e-08,0.000122649278217473 +"5163",1020.8735875687,0.790992268903542,0.216963635483212,3.64573660992487,0.000266626960859304,1 +"5164",2235.01136938214,-0.754056772827958,0.271554102452249,-2.7768196687824,0.00548936255924363,1 +"5165",2085.09813406033,-0.358519015924825,0.188134070905964,-1.9056570359551,0.0566947169549355,1 +"5166",8064.86869168295,-4.39619557170897,0.322144139612315,-13.6466725019415,2.113091907275e-42,2.59149591508206e-38 +"9124",10790.8394148353,-0.504428014453122,0.259109328896263,-1.94677673938584,0.0515615067960537,1 +"64236",1355.14835480344,-1.37708753336678,0.21992394774327,-6.2616533919914,3.80916866075607e-10,4.67156444555125e-06 +"27295",8989.89569312943,-2.89103370963121,0.353510750404605,-8.17806447561303,2.88439427972475e-16,3.53742114465444e-12 +"8572",1485.28989405983,-2.28746793625476,0.274274156734153,-8.34007827602929,7.42413735613765e-17,9.10496205356722e-13 +"10611",6169.3049371478,-1.11492697998445,0.171479849287644,-6.50179589389681,7.93667388543936e-11,9.73353685310283e-07 +"9260",7664.1402214143,-1.66215252754643,0.345049471862011,-4.81714265081137,1.45628578686449e-06,0.0178598888901061 +"54704",1473.78272149638,-0.361738680706889,0.129466389149329,-2.79407406882765,0.00520485556989012,1 +"57546",579.870115690322,0.767410429336903,0.162472696570249,4.72331933633597,2.32026081955376e-06,0.0284556786910073 +"5170",1491.23556585634,-0.537356490372047,0.161126041701377,-3.3350070832619,0.00085297226532884,1 +"10630",1996.31932040516,-0.294986207287962,0.309315017309374,-0.953675672956155,0.340247837871988,1 +"55066",1760.83375990468,-0.3191358682322,0.240676398619552,-1.32599569406335,0.184841123659088,1 +"81572",1020.64831359368,0.754437146298909,0.1474377178486,5.11698876859733,3.10452100288128e-07,0.00380738455793361 +"23244",5387.57233380663,0.197500693596837,0.131709719156372,1.49951495502283,0.133740091969481,1 +"23047",1944.86435241564,-0.186406414699332,0.133266330193033,-1.39875101557405,0.161887660103121,1 +"23590",206.527263614739,0.799768240721979,0.19955118140536,4.00783515832644,6.12778651581185e-05,0.751511738299165 +"57107",1012.7089399613,0.0723283680101033,0.21911864943772,0.330087686263606,0.741333707217948,1 +"23042",4979.90933164626,0.11560314993799,0.11431079099941,1.01130566001058,0.311870157919244,1 +"109731405",626.334209997095,0.269340387978139,0.189948308367475,1.41796676313154,0.156200468692157,1 +"8566",6560.44099547168,0.908508595889721,0.200351987829191,4.53456242552615,5.77230283807105e-06,0.0707915220061034 +"57026",507.199294724398,0.513248573349838,0.238666956126383,2.15048024108563,0.0315172472782664,1 +"51248",1582.76901913159,0.234366737196145,0.145183753554002,1.61427660780909,0.106467441674357,1 +"23037",422.564948399964,-0.505808685274376,0.305195432449804,-1.65732717955262,0.0974533451143724,1 +"57595",668.900541468374,-3.15741311718911,0.418666896230053,-7.54158770521503,4.64283652146509e-14,5.69397470992479e-10 +"118987",954.228482405246,-0.179187893781685,0.224023962597369,-0.799860388612682,0.42379169016303,1 +"10158",585.20740476842,1.3136344115882,0.653282456785524,2.01082150292529,0.0443443140124063,1 +"23024",2430.31927742057,-2.72581973238015,0.329072775424541,-8.28333407059741,1.19773817372869e-16,1.46890609626087e-12 +"29951",996.525343559471,-4.60939926378592,0.55761280555877,-8.2663081224739,1.38171161509765e-16,1.69453112475575e-12 +"8682",11085.8890099404,-0.400725939210327,0.138000060522256,-2.90380988018262,0.00368651948487354,1 +"79834",2056.93459075953,-0.793729463341326,0.162102014199538,-4.89648118970497,9.75679828266399e-07,0.0119657374138591 +"375033",369.043010104742,-0.799832459481625,0.205270958031075,-3.89647160588856,9.76042444617132e-05,1 +"5037",15081.3587184052,-0.154126109578624,0.167245992521767,-0.921553379274934,0.35676158587032,1 +"5175",4295.07208541306,-1.42972394468209,0.170344307603686,-8.39314189475826,4.73319777172852e-17,5.80479374724785e-13 +"55825",246.134176943491,-0.0726389610029031,0.212285783382212,-0.342175344225099,0.732218939007653,1 +"553115",4061.92873025063,-0.187644835353751,0.135088323636728,-1.38905295662973,0.164816647385519,1 +"23089",2578.11083437299,-1.974898649776,0.570089171533267,-3.4641925305553,0.00053182572474831,1 +"5178",387.69163824817,-3.17008353072303,0.341816863272152,-9.27421631682059,1.78929529490388e-20,2.19439174967011e-16 +"57162",2366.61529518314,-0.13012185668203,0.261954717305626,-0.496734160851989,0.619376529347688,1 +"57161",1201.88540207162,-2.12427225178642,0.380369357088614,-5.58476179060748,2.34020754175411e-08,0.000287003052920724 +"246330",759.801321000464,-0.397499780902422,0.231672347451008,-1.71578431900027,0.0862015252620973,1 +"53918",1178.49049548095,-0.282433564288993,0.168981167165744,-1.67139077700872,0.0946445164572152,1 +"27043",3830.61866275032,0.154402922297564,0.168664867868993,0.915442108652368,0.359959580901324,1 +"10400",787.200810882186,0.527964359153615,0.155803319858335,3.38865923802951,0.000702352345507469,1 +"5184",3537.91062881857,-0.0324700623030664,0.15066435663865,-0.215512567321692,0.82936771495596,1 +"5187",5799.96707402669,-2.62837017278339,0.183476387517132,-14.3253865434753,1.51880669072771e-46,1.86266452550846e-42 +"8864",2145.5481767996,-2.1311708046702,0.24263358525888,-8.78349467736025,1.58472388070066e-18,1.94350536729128e-14 +"8863",1818.48747108416,-1.56678135049033,0.232935073904991,-6.72625776884674,1.74082064437638e-11,2.1349424382632e-07 +"64065",37258.1419509315,1.29282276368759,0.439662663427279,2.94048794957869,0.00327695747666503,1 +"23481",4571.8965140299,0.265911092936002,0.173743936535123,1.53047696649977,0.125898710591088,1 +"100303755",160.736926542445,0.26104419155498,0.160901981885686,1.62238021244785,0.10472196333951,1 +"5189",1135.42359451682,0.173701430495217,0.13038025445926,1.33226792059601,0.18277216457307,1 +"5192",749.680097063918,0.293069809435284,0.12280584531505,2.38644837046179,0.0170119958872048,1 +"8800",338.910409580463,-0.246122121951273,0.194426804428183,-1.26588575415374,0.20555398739053,1 +"8799",1375.82496213064,0.134628385806704,0.187188146956072,0.719214266479689,0.472008910487197,1 +"92960",216.203735690235,0.0656458783211,0.247519431241277,0.265215049953431,0.790843801733193,1 +"5193",369.804564681965,0.0621880011124845,0.177678044208914,0.350003858886266,0.726335801631075,1 +"5194",2838.28063126796,0.627165377383321,0.250958218406367,2.49908284082483,0.0124515200196529,1 +"5195",2270.80805845522,-0.83333735384563,0.235375533551582,-3.54045869284459,0.000399432156358897,1 +"9409",1349.77855474141,0.161690549008386,0.141342555679926,1.1439622570186,0.25263928998647,1 +"5824",4358.38675416479,-0.0370076052327851,0.172274179010071,-0.214818061798,0.82990917034962,1 +"5828",1809.50571398472,-0.0792110229425552,0.105174758599446,-0.753137197530706,0.451367473735976,1 +"55670",1505.82894428642,0.203414741950155,0.101616445282789,2.00178958616463,0.0453073664385861,1 +"8504",753.41448944053,-0.172465238685608,0.144226902462804,-1.19579104688938,0.231778110631681,1 +"5830",1988.06166293505,-0.0322184239008566,0.159888028862007,-0.201506167348295,0.840302807493546,1 +"5190",1854.20178413802,0.000410136291940979,0.148904697486667,0.00275435428743075,0.997802346017817,1 +"5191",427.754340401988,0.331463385970515,0.164481534733745,2.01520119876721,0.0438835719835853,1 +"5198",1031.43415497576,0.495636448221018,0.139119071937863,3.56267793708682,0.000367090928142742,1 +"5201",2020.052354328,-0.101926410162638,0.100823887624247,-1.01093513218315,0.31204747773476,1 +"5202",2758.53676143212,0.776323607685715,0.150823633602741,5.14722785243656,2.64364138947105e-07,0.00324216180004729 +"5203",843.740679540923,0.477871151199373,0.13366854847543,3.57504556344615,0.000350166908204451,1 +"5204",10372.6448020323,-0.54653517098744,0.106684305396606,-5.12292008609567,3.00839874004928e-07,0.00368950021479643 +"10471",1567.8716088456,0.65434411713869,0.141099699256557,4.63745933255973,3.52717980428136e-06,0.0432573331197066 +"5208",913.346067082073,0.587287533889126,0.172616225619053,3.40227305853165,0.000668278314426935,1 +"5209",4687.40139433051,-0.39459857034384,0.329532219271991,-1.19745065054821,0.231130951600419,1 +"5210",651.444458565925,2.2587463716779,0.276724572530802,8.1624351282591,3.28336927969183e-16,4.02672408461405e-12 +"5211",11335.7759982265,0.278702146169457,0.164307841336884,1.69621938856849,0.0898443399701239,1 +"5213",3180.59524988255,-0.860852309639587,0.263835008856132,-3.26284337083183,0.00110300462376138,1 +"5214",8279.30649253819,-0.266325908513345,0.207891338747349,-1.2810822717199,0.200164770104195,1 +"5216",27089.8104375441,-0.12220262402479,0.16387541748839,-0.745704425335467,0.455845985337752,1 +"5217",5941.66862230787,0.219124841941842,0.291031557725159,0.752924678184819,0.451495177581145,1 +"5223",2879.82162428747,0.0123789171854445,0.178884145196774,0.0692007509767149,0.944829825349541,1 +"5224",175.588818862253,-0.290539503182662,0.335050140502922,-0.867152309641036,0.385858562529944,1 +"441531",143.295886693704,-0.117895696971301,0.191778008070064,-0.614750868244649,0.538719260580168,1 +"192111",2523.5614451059,0.923105976978568,0.133988932351422,6.88941960189275,5.60204742233511e-12,6.87035095875178e-08 +"80055",1337.02887812486,-0.0205780195681157,0.281589745899633,-0.0730780146214923,0.941744036662481,1 +"27315",1192.48410832705,0.550102806625919,0.165900465181965,3.31586054338394,0.000913614072885831,1 +"93210",2681.94776539416,0.101681732112996,0.249325622652056,0.407827045738084,0.683400656109551,1 +"84547",287.940867566374,0.0156869135765674,0.3038725710033,0.0516233285708339,0.958828830609586,1 +"267002",349.976594272029,0.292029565139641,0.136882992519964,2.13342475762319,0.0328898979147534,1 +"267004",135.574068002327,-0.108181183013282,0.167044275420141,-0.647619816609641,0.517230876986259,1 +"79605",173.312015863333,0.317092051728381,0.318573013078444,0.995351265520728,0.319565452308697,1 +"5226",16861.7638736709,1.19961433456563,0.328157110607783,3.65560975455875,0.000256571407438263,1 +"5228",662.443402880931,0.477328587065635,0.31722406584613,1.50470483944041,0.132399978334819,1 +"5229",844.912642886666,-0.101918539798528,0.144369421606266,-0.705956556898089,0.480215154229078,1 +"5230",13797.488852936,0.635430397056051,0.179715461227508,3.5357580962477,0.00040660683850835,1 +"5232",89.8325401872704,0.705171623705851,0.203926865749674,3.45796332971385,0.000544275461852437,1 +"25796",2524.78553778621,0.223080154164355,0.184868183608138,1.20669846920341,0.227548288839489,1 +"5236",3455.41956666069,-0.638629764917332,0.225139673558019,-2.83659363462991,0.00455976059335043,1 +"55276",3074.64492997893,0.486506880829132,0.245413879263494,1.9823935072017,0.047435215719089,1 +"283209",1518.90895466085,-0.474674226739733,0.333331897925123,-1.42402881240715,0.154438131710458,1 +"5238",1707.27714855684,0.578807772283085,0.15119863503978,3.82812829051535,0.000129121452241269,1 +"5239",12303.8030213115,-5.60801636323288,0.517313608788151,-10.8406511407464,2.20893203083659e-27,2.70903424261799e-23 +"283871",909.891210903269,0.599678364009965,0.13301520208014,4.50834456988358,6.53354066303025e-06,0.0801273426914029 +"54858",1687.98403947555,-0.756871232081617,0.204415174321007,-3.70261764859517,0.000213386353166712,1 +"5241",307.70685727186,-3.28459906444325,0.325834574677183,-10.080572534997,6.73326272450915e-24,8.25767340533802e-20 +"10857",6795.73124355962,0.1020040699671,0.11353220425497,0.898459345843585,0.368940709749682,1 +"10424",3988.61940237762,-0.282950924432035,0.174541214381401,-1.6211123856039,0.10499353819022,1 +"9489",1242.75575596219,0.646638949079004,0.147660535969506,4.37922661483867,1.1910123084543e-05,0.146065749508836 +"221692",152.717183906192,-1.56913141098462,0.364032103556799,-4.3104204152692,1.62944464268552e-05,0.199835090978953 +"9749",1668.66568666321,-0.467943134169919,0.219652982499569,-2.13037459744411,0.0331406992894456,1 +"65979",2587.44410408025,0.3382710995326,0.202045411376683,1.67423302131789,0.0940848121080223,1 +"51808",1319.03786943215,-0.298182937144057,0.105264499464262,-2.83270180033766,0.00461564219029302,1 +"5245",5884.95025771347,0.304819504874364,0.139807643058853,2.1802778317781,0.0292368732792447,1 +"11331",9404.75824131381,0.209816063184141,0.109045528958916,1.92411431433555,0.054340256227477,1 +"1911",374.191077728981,-0.409445325638417,0.255016519658606,-1.60556393047222,0.108369755933174,1 +"1912",6296.59544684604,-0.326033168166468,0.170008998407577,-1.91774065620245,0.0551439038218303,1 +"80012",2866.13615138401,-0.224270469353362,0.143165961104603,-1.56650692401318,0.117229988884815,1 +"5252",3036.09994772508,-1.22598946041035,0.156112010565914,-7.85326802189065,4.05334169647943e-15,4.97101825656238e-11 +"55274",635.697504515829,-0.184041525921489,0.163617392184605,-1.1248286228266,0.260661662915737,1 +"51131",1240.24451362334,-0.375813316417811,0.167638095504698,-2.24181332582175,0.0249734396217833,1 +"57649",2388.03310138268,0.157898913919259,0.148854253684236,1.06076185269256,0.288798142569219,1 +"148479",2054.6201950373,0.0458962916254481,0.104857807477817,0.437700279353615,0.661603566968352,1 +"9678",2573.2605547373,0.478653252726661,0.138654546228223,3.45212808196572,0.00055618364416063,1 +"26147",1777.44757697744,-0.807394570227584,0.259485613308801,-3.11151959421636,0.00186127121405346,1 +"5253",2959.42149837159,-0.24662456474198,0.15492729991469,-1.59187286474226,0.111413273756955,1 +"51230",2286.29594201041,-0.262232122339596,0.167190375337724,-1.56846422415099,0.116772832884791,1 +"51105",2136.20984416608,0.212246046290904,0.144505975927873,1.46877002786959,0.141895176115339,1 +"51317",1898.44110632578,-0.54216815914666,0.198113953319897,-2.73664802534739,0.00620686633667203,1 +"79142",1870.86665552012,0.0874394066425881,0.128540234369324,0.680249317045397,0.496346610273117,1 +"23469",3331.33967082796,-0.23845093769328,0.117318166032535,-2.03251504653722,0.0421015421032322,1 +"84844",1169.40581492606,0.416449598387115,0.145745402456843,2.85737725764921,0.0042715780644423,1 +"84295",1387.2164807317,0.83623977996266,0.1561503660606,5.35534946897356,8.5391212349798e-08,0.00104723782825792 +"51533",183.275470907005,-0.164614131115743,0.201942940591917,-0.815151698956356,0.414985481806383,1 +"23133",2471.51479909262,0.158957990595114,0.14741397587523,1.07831017819949,0.280895356358613,1 +"26227",6000.19187211266,0.310698453280806,0.264940803832624,1.1727089553072,0.240912538973637,1 +"55023",3150.28544920952,0.0952796809373045,0.126694033542963,0.75204552474047,0.452023682001281,1 +"5255",925.804109886273,-0.0553334168252963,0.189037319900815,-0.292711602419717,0.76974260069743,1 +"5256",1267.48866790199,0.543060447406497,0.159534665120305,3.40402787693179,0.000663999764684852,1 +"5257",3540.6407040646,-0.609407984951423,0.163817355055513,-3.72004531964828,0.000199187032597646,1 +"5261",1549.43487623356,0.599130716210001,0.135947502050734,4.40707410708004,1.04776347856898e-05,0.1284977130117 +"22822",14132.5570081037,-0.968402266694144,0.460583214120996,-2.10255657827717,0.035504548988401,1 +"7262",1620.16405557648,-0.544065771420618,0.511453372835478,-1.06376416760014,0.287435547567457,1 +"23612",4596.43933542842,0.042936208340472,0.208189605570207,0.20623608091708,0.836606505104485,1 +"23187",2897.02272346375,-0.911513129058571,0.226089010165712,-4.03165606497404,5.5385199222758e-05,0.679244083267904 +"90102",3831.17568964584,-1.05597142129461,0.269205610039876,-3.92254612055892,8.76181143552351e-05,1 +"653583",1381.16802037423,0.372401494390975,0.340031451769942,1.09519720147221,0.273430251478932,1 +"23239",1423.88344745224,-0.314248085651999,0.190611396163178,-1.64863220131381,0.0992230075622366,1 +"23035",466.71674081785,-0.623665868233021,0.229187394433474,-2.72120493264761,0.00650444242586206,1 +"493911",107.841001200658,-0.255127628832082,0.177710827316032,-1.43563356653771,0.15110663806506,1 +"29085",2745.74708832429,-0.0596249382015965,0.159067101845458,-0.374841419186258,0.707778408327649,1 +"57661",3002.15751638253,-0.0838766723293939,0.140904802708646,-0.595271919175308,0.551661723166306,1 +"10745",750.424241659451,0.867452389415875,0.150397244702699,5.76774123176679,8.03410383657864e-09,9.85302494518004e-05 +"57157",1419.27668185097,0.0520673471537606,0.177299010404022,0.293669699763758,0.769010309959555,1 +"5264",1929.12214731809,-0.296245951167682,0.266621720621726,-1.11110959180999,0.266521179689858,1 +"254295",498.172699090087,-2.56586473530835,0.288473499869997,-8.89462892246491,5.86148269452264e-19,7.18852237656257e-15 +"9796",698.512854964927,-3.9796046696641,0.306722494412135,-12.9746097601724,1.70462306707889e-38,2.09054972946556e-34 +"51050",655.604177313943,-1.19996166691274,0.398977365379116,-3.00759333996932,0.00263325245297145,1 +"221476",5800.41632058467,-9.21046221328961,0.46473271817498,-19.8188374803035,2.04784786541796e-87,2.51148062214859e-83 +"55361",2156.14250817791,0.02711659216317,0.156210068699896,0.173590552701602,0.862187257147648,1 +"55300",1343.92543744901,0.0636204281750803,0.20448164778502,0.311130259679671,0.755701598063086,1 +"5297",4632.72398285826,-0.137846972896878,0.216217364082877,-0.637538865028621,0.523773902778357,1 +"728233",312.459995991385,0.994058232303875,0.308205741083536,3.22530731844624,0.00125837509334803,1 +"375133",441.830388330793,0.762791622182392,0.286257481491796,2.66470458067051,0.00770559811201141,1 +"5298",4138.21266334032,-0.187753235846094,0.104733615021738,-1.79267406942007,0.0730250551230999,1 +"8554",1011.41978922775,-0.338423275466564,0.154074467354697,-2.19649161393805,0.0280567747510171,1 +"9063",846.081455481066,-0.264357624739218,0.195483278309651,-1.35232858291065,0.176270224591023,1 +"10401",2424.08303338019,0.62131542649781,0.153272730831208,4.05365927212476,5.04226422915176e-05,0.618383285063172 +"51588",795.889135210055,0.359185267572233,0.0917661952734764,3.9141349001319,9.07289041266111e-05,1 +"10464",907.232545835197,-0.0253402385231561,0.147299192524926,-0.172032433367672,0.863412030957563,1 +"8301",8305.23017523337,-0.15534522232209,0.135578755519524,-1.14579324560713,0.251880710588959,1 +"9463",1283.27546929906,0.219339228301581,0.126008464005981,1.74067059726378,0.0817413350288756,1 +"55022",817.455943940486,-2.99794024229239,0.368947011669874,-8.12566614572523,4.44912087944076e-16,5.45640184654615e-12 +"9780",6992.73042940737,0.018346249000009,0.201875245550227,0.0908791414717778,0.927588624291376,1 +"63895",463.423149943991,-1.29961840148043,0.370550326982951,-3.5072655637954,0.000452737082254537,1 +"80119",278.483106947162,1.92850005993841,0.271908263250909,7.09246580770092,1.31743197898317e-12,1.61569857902496e-08 +"5277",1131.0881499169,-0.242622616050348,0.29493168138006,-0.822640059945596,0.410712710673293,1 +"9488",548.160742926054,0.162783226503216,0.127820755407006,1.27352733900596,0.202830977617896,1 +"5279",1332.22410200227,0.468093612009719,0.168171724801542,2.78342636113242,0.00537880709842394,1 +"5281",319.553917678806,0.638699415123023,0.190918486212382,3.34540372592584,0.0008216287771781,1 +"54872",1308.39572870358,0.0948225791915947,0.16513745884478,0.574203938070299,0.56582980475188,1 +"5283",410.454972307051,-0.0199960135063108,0.133319123744078,-0.149986085602359,0.880775593155513,1 +"10026",1422.60765625419,-0.0662066109965929,0.129713135770501,-0.51040791361124,0.609765713876546,1 +"9487",177.831952770397,0.531183384728365,0.169998228984447,3.1246406971508,0.00178022362975112,1 +"93183",1005.17526224878,0.632057923369689,0.178943596505559,3.5321628474705,0.000412175445855809,1 +"23556",1632.1503163994,0.301765978126817,0.224557976915594,1.34382212679198,0.179005912565654,1 +"84720",1740.24244233982,0.697686035650535,0.159851190208067,4.364597065198,1.27357290267285e-05,0.156190980783799 +"51227",589.812152876755,-0.167145464180134,0.180817724985973,-0.924386501340505,0.355285120232189,1 +"9091",1922.76436239003,0.0699760497024509,0.124764697362259,0.560864180187708,0.574890130350609,1 +"5284",2417.99969679409,-1.2389667681844,0.736420438455551,-1.68241768354882,0.0924878747125537,1 +"94005",3383.33834839513,0.491507689816796,0.115091496211503,4.27058215416328,1.94963385031618e-05,0.239103095402777 +"51604",6790.51938437479,0.107360928014171,0.143661557276655,0.747318420107492,0.454871376150692,1 +"128869",1744.49000910269,0.815526343719929,0.155029159828104,5.26047064064712,1.43687146305777e-07,0.00176217916229405 +"55650",877.400423994122,0.304102352778511,0.182416021276138,1.66708138161925,0.0954982237425017,1 +"284098",502.533896012603,1.07440693466249,0.178121186777859,6.03188735769216,1.62055727336455e-09,1.98745144005429e-05 +"54965",1218.72054398783,0.174001679404168,0.213021983778666,0.816824988283646,0.414028449886364,1 +"84992",2807.69549156122,-0.15410743076838,0.134874513235253,-1.14259860570974,0.253205284715696,1 +"80235",440.201204834917,-0.558344363962524,0.314680532553598,-1.77432127571293,0.0760100233069417,1 +"55011",2924.66181956454,0.399560229395264,0.117280455928103,3.40687820688734,0.000657104416109612,1 +"118788",452.365034924524,-0.256517991864037,0.280563984524428,-0.914294086245066,0.360562337169186,1 +"5286",2310.56016033213,-0.394648686540238,0.167069472361922,-2.36218311437119,0.018167665960983,1 +"5287",3263.2825462579,0.129893987017022,0.216669784358522,0.599502082865819,0.54883812153811,1 +"5289",1150.68866182398,-0.0584516466772894,0.11353151105031,-0.514849543853839,0.606658161449438,1 +"5290",1190.52722684874,0.239030153497586,0.167353577145038,1.42829425922835,0.153207179520414,1 +"5291",1686.96367499161,0.158712591021948,0.139344185889705,1.13899686598746,0.254704461366794,1 +"5293",858.799858580809,-0.528717160931621,0.24330057459661,-2.17310280425038,0.0297725807092023,1 +"5294",153.332331047508,-0.292285870498782,0.270310603376638,-1.08129635629397,0.279565307733842,1 +"113791",2996.21801328257,-0.0101007456739551,0.318978927123623,-0.0316658713634724,0.974738511936331,1 +"5295",4557.62781226654,-0.447361158346009,0.236723816566505,-1.88980206907203,0.058784436746707,1 +"5296",3633.9194277346,0.370673626376394,0.134961531325035,2.74651319333123,0.00602324633776345,1 +"8503",2495.02014251558,-0.554312511578798,0.241689492402842,-2.29349032127092,0.0218197919536186,1 +"30849",1811.78344212371,0.169448865854382,0.124029681269976,1.36619609209139,0.171877423774888,1 +"23533",313.454792989431,-0.715669001972253,0.287651900248831,-2.48796896997089,0.0128474942021603,1 +"200576",1416.47866843011,-0.176625601094047,0.132491638605648,-1.33310753005147,0.182496518628336,1 +"29992",222.471493414238,-0.344919477224339,0.293554406608706,-1.17497632281876,0.240004188572365,1 +"29990",2205.82834816603,0.477859959017086,0.178976317927561,2.66996195111409,0.00758598426903428,1 +"5292",13534.0754485252,-0.960808400508255,0.314609124469636,-3.05397499874796,0.00225830900179706,1 +"11040",1467.65035641261,0.340125253430642,0.262782587791709,1.29432188140349,0.195554261370267,1 +"415116",5925.25919767888,-0.711432205159768,0.235644514660263,-3.01909088011434,0.00253534465409719,1 +"5300",1782.88430153499,-0.134979500372693,0.13317019632576,-1.01358640369131,0.310780148067366,1 +"5303",270.622975766218,0.333470686543914,0.142723004213875,2.33648869977679,0.0194657858728526,1 +"65018",4645.29161686788,-0.516732915798393,0.173629839177864,-2.97606055644075,0.00291977201258612,1 +"54984",428.395872062269,-0.145600941590794,0.163026600490353,-0.893111560646268,0.371797432613958,1 +"5305",1862.59010019983,-0.816856465871125,0.157766327219172,-5.17763505222717,2.24716265246443e-07,0.00275592027698238 +"8396",3845.04365900047,-0.0439248403010268,0.191158342047994,-0.229782492516066,0.818260789692435,1 +"79837",2599.08792985215,0.572844882973437,0.133496207555634,4.29109480682968,1.77794382184099e-05,0.218047030310579 +"8394",2198.88090233697,0.0120847825159885,0.11816777882442,0.102268000940804,0.918543953657195,1 +"8395",177.208803376458,-2.01143410571483,0.284565905050167,-7.06842973813125,1.56696654589915e-12,1.92172777189072e-08 +"23396",4197.91536155241,-0.927074538617836,0.21765236282415,-4.25942786280183,2.04950827705053e-05,0.251351695097477 +"266971",3638.60579808924,0.203489229010599,0.0926733933088596,2.19576754174108,0.0281085859994302,1 +"8544",1301.67786485525,-0.0125996197483295,0.339495416493717,-0.0371127830780674,0.970395079628486,1 +"23761",1572.2851577991,0.153640088820737,0.157667226961345,0.974457988396057,0.329829189053975,1 +"57095",2352.96818397738,0.126034039914027,0.133805158404439,0.941922130782703,0.346232508709664,1 +"5306",4255.83324880832,-0.51346204916904,0.128106297680198,-4.00809373517948,6.12108266354976e-05,0.750689577857743 +"23760",4774.96788552126,-0.6913550493677,0.218739430766255,-3.16063293639309,0.00157426749427117,1 +"26207",1112.997955015,-0.404055949404331,0.233178908192174,-1.73281516984945,0.0831285256873728,1 +"9600",3206.53746152477,0.422456459391806,0.331579335497461,1.27407354489689,0.202637353088853,1 +"57605",1149.12235600535,-1.14951519433963,0.24613836688648,-4.67019916025441,3.0090785956383e-06,0.0369033398969081 +"83394",614.733933010268,-1.68302516815234,0.385932591061832,-4.36093039854904,1.29510561976588e-05,0.158831753208087 +"10531",4046.29239539962,-0.0649547456266253,0.168777094231461,-0.384855219379156,0.700344684954588,1 +"5307",4536.86294443087,-2.06402213902203,0.369910249980706,-5.57979169036187,2.40806800876864e-08,0.000295325460595386 +"5308",829.781755106731,-2.02856727812287,0.434569548449732,-4.6679922359022,3.04157391170751e-06,0.0373018624531809 +"143689",100.578519547263,-1.47862378243422,0.261328588006845,-5.65810190806789,1.53056249740096e-08,0.000187708184681254 +"64219",1858.50148385646,-0.221794592664441,0.148462262641919,-1.49394592752095,0.13518975289711,1 +"9867",7182.33606086555,-1.33240026826653,0.194585121485702,-6.84739027369283,7.52093368776174e-12,9.223673074671e-08 +"5310",4507.17054493244,-1.44722441928984,0.268818439493814,-5.38365010233287,7.29903254183166e-08,0.000895153350930235 +"339044",347.512151472213,-0.659536832230243,0.281847460413522,-2.34004887346717,0.019281216543903,1 +"5311",1729.44691526434,-0.977144732791767,0.212961064816497,-4.58837268509034,4.46714613057514e-06,0.0547850801453735 +"91461",1599.43312552137,-3.10292635605926,0.46822150099049,-6.62704798796133,3.42466327067634e-11,4.20000703515746e-07 +"5569",1189.09682710396,-0.546655022587873,0.354630441027882,-1.54147799890899,0.123200493518409,1 +"5570",203.499046569282,1.55262797725001,0.396014099064914,3.92063813110731,8.83147963305422e-05,1 +"11142",4694.95639692683,-2.02968827716679,0.302276886845566,-6.71466580970765,1.8849772545091e-11,2.31173610492996e-07 +"9088",583.078512611521,3.05033271513198,0.422838445196452,7.21394364628975,5.43542575373179e-13,6.66600614437667e-09 +"5585",5242.97157198635,-0.543975118793844,0.262139054088679,-2.07513955020919,0.0379736031469729,1 +"5586",3143.49985722794,0.0681099030729107,0.136654114427077,0.498410921313724,0.618194440624999,1 +"29941",566.588585934449,-0.205158120483169,0.194631718101681,-1.05408369449829,0.29184460066562,1 +"5316",1202.89987051746,-0.515805543345939,0.177273799077733,-2.9096547037939,0.00361828264196669,1 +"63876",202.696757133581,-3.19712644737233,0.392007582310642,-8.15577706055389,3.46941908810367e-16,4.25489556965034e-12 +"5317",7769.237037134,2.21191289257755,0.627918216802528,3.52261303046917,0.000427314784476151,1 +"5318",710.131313843716,1.08487203787003,0.443036608333958,2.44871872315405,0.0143365356135607,1 +"11187",5599.50689612266,1.88420373615522,0.61043157253285,3.08667477394253,0.0020240891830541,1 +"8502",3385.12131187287,-0.141255021278612,0.104145990748059,-1.35631741811668,0.174998195842768,1 +"51365",135.618111606557,-0.826333919711073,0.285167084475277,-2.89771844191475,0.00375887873179662,1 +"81579",1326.28865925248,-0.3529305524746,0.130318621071715,-2.70821276017325,0.00676466406414359,1 +"23659",1163.61073799651,0.854742858323823,0.205157428923099,4.16627788138355,3.0961326985994e-05,0.37970971415623 +"5320",5977.02467997676,-4.06324957423124,0.535993133459877,-7.58078661941553,3.43466088587989e-14,4.2122681104431e-10 +"64600",1517.26248778802,2.93392211588859,0.877301917317233,3.3442559032134,0.000825035967828961,1 +"5321",1634.37876410742,-0.841821881296582,0.319467162771572,-2.63508109563833,0.00841171834803522,1 +"8605",293.439400422844,-2.27345201936909,0.247962510288126,-9.16853122969034,4.79507611831448e-20,5.88068135150088e-16 +"255189",718.952520694589,0.391351338746155,0.711208281784029,0.550262628782205,0.582139252733912,1 +"8398",701.734639261344,0.144538981003641,0.190459061525169,0.758897895674767,0.447913637856628,1 +"7941",330.240921913303,1.18254279041465,0.39215293624644,3.01551430861022,0.00256543834165083,1 +"22925",595.201026160081,-0.414513054110061,0.265004550329717,-1.56417334568153,0.117776864969579,1 +"9373",1889.76662168237,0.10388150728674,0.151930860905336,0.683741977552972,0.494138111242989,1 +"51316",343.505446241921,-0.304611199165348,0.455683065260992,-0.668471625099525,0.503832588512808,1 +"219348",741.151858601329,-3.99543385002359,0.370923345260368,-10.7715890657112,4.68838520725248e-27,5.74983561817444e-23 +"5324",197.429279463796,0.454288491256195,0.283667544966521,1.60148208463471,0.109270184915283,1 +"5325",782.671351209933,-1.29900487454768,0.32197754669341,-4.03445795487289,5.47284882975957e-05,0.671190180481713 +"5326",1523.81496587322,0.531157351280384,0.213536407494988,2.4874322721424,0.0128668950497004,1 +"5327",14005.6577616345,-0.573683214489036,0.374734759135078,-1.53090472795518,0.12579294057095,1 +"5328",6483.72847808437,1.81012752005532,0.425159036750147,4.25753039119588,2.06697568447412e-05,0.253493897943906 +"5329",3430.08948261412,-0.443390132404058,0.452767677571974,-0.979288395279884,0.327437502731225,1 +"151056",279.841937754891,-0.0789885988904661,0.310543737808843,-0.254355793640534,0.799220699620819,1 +"79887",4683.76769403788,0.497486624175147,0.33105158312824,1.50274654926642,0.132904414034562,1 +"196463",1533.16526587707,0.0657291196075986,0.17252016659127,0.380993833395271,0.703207824319745,1 +"23236",1338.30838600619,-0.942320077928356,0.241750536030777,-3.89790274470536,9.7029366959085e-05,1 +"5330",533.185757472501,-0.60843378818002,0.256618567164158,-2.3709655731606,0.0177416835475233,1 +"5331",3799.01520733819,0.890190506429386,0.13751685138477,6.47331943296643,9.58729695451368e-11,1.17578609850156e-06 +"5332",1366.79991314352,-3.31555261104704,0.515262145948452,-6.434690840609,1.23724898354438e-10,1.51736215341883e-06 +"5333",2828.9115199928,-0.348537842012692,0.336825425135993,-1.03477295952932,0.30077495390542,1 +"113026",5956.67020651442,-1.60969120201038,0.407740985323393,-3.94782781214325,7.88634912533238e-05,0.967181856730763 +"84812",661.835307233465,-2.50053766106115,0.342451206468785,-7.30188013307254,2.83774031715165e-13,3.48020472495478e-09 +"51196",1466.45155434875,-0.619756071186564,0.312681774855136,-1.98206650027394,0.0474717982973409,1 +"5335",3722.73218537431,0.250923207727074,0.214231300801561,1.17127239011399,0.241489305685049,1 +"5336",1104.5014343903,-0.920876176781089,0.180475071029279,-5.10251178475333,3.35174867978156e-07,0.00411058458088411 +"23007",169.325359550775,0.866282720383791,0.402474281567679,2.15239273677198,0.0313664352783251,1 +"9651",1616.91748430736,-0.566230861296628,0.616035338186329,-0.91915321443031,0.358015438525416,1 +"5334",356.377406378775,-2.14462441882514,0.337660330464959,-6.35142545726941,2.13328785061065e-10,2.6162642199889e-06 +"23228",300.263507898548,-0.871143125318193,0.285943316053525,-3.04655879823093,0.002314772012551,1 +"55344",716.84216903227,0.182076153180902,0.334809907813334,0.543819489602484,0.586565695820851,1 +"345557",139.821862323911,-1.77871940866515,0.447708030814886,-3.97294505847406,7.09894278176125e-05,0.8706143427552 +"5337",1156.72157456253,0.17684997397061,0.285932253329589,0.618503061166585,0.53624378055883,1 +"5338",2203.49796196694,0.229326422988815,0.204451384359224,1.12166725457767,0.262003944330342,1 +"23646",11767.1104835285,0.114503441680297,0.189445206688334,0.604414562299655,0.545568056461495,1 +"122618",131.635758586614,-1.57450169546496,0.392120737863368,-4.01534921117482,5.93578396246035e-05,0.727964545156137 +"201164",221.279183506842,-0.304128582619569,0.26511876739943,-1.14714090444366,0.251323390653801,1 +"5339",27834.2406970919,-0.744646276256417,0.227252733137879,-3.27673188337244,0.00105016040506796,1 +"5341",688.700121190347,-0.979531825987503,0.278133899165494,-3.52179949630903,0.000428628196564116,1 +"26499",1058.38764839836,1.19872971534259,0.554012286452787,2.16372406290441,0.0304855331062925,1 +"59338",2048.12544882594,0.110888365850054,0.150124145475492,0.738644443229529,0.460122929552081,1 +"59339",3918.65742228141,-0.403135240017557,0.202613602802925,-1.98967509802228,0.046626737561169,1 +"65977",571.190539134683,-0.425583232612166,0.148022364078055,-2.87512792585685,0.00403863831084165,1 +"57664",1480.55710809954,-1.56090469266751,0.341463301621703,-4.57122239858382,4.84887328777573e-06,0.0594665820012815 +"54477",2386.81407135805,-0.264909196080968,0.153727019618476,-1.72324420741667,0.0848443724424408,1 +"22874",2838.40257175699,-0.102498586587994,0.219615920351599,-0.466717469407027,0.640702029476163,1 +"144100",1468.20395113844,0.614047321018042,0.348409543396147,1.76242968270207,0.0779967272263484,1 +"84725",544.116160205115,0.824930836505553,0.133012550469374,6.20190225354331,5.57847233918758e-10,6.84143847677965e-06 +"51054",278.219147977413,0.253785678464236,0.141931012946131,1.78809178625786,0.0737612005739718,1 +"58473",507.398433934906,-0.984688682890304,0.365423823311153,-2.69464829623835,0.00704629632608791,1 +"55041",4394.18840314031,0.172313572932741,0.15030117076224,1.14645529411958,0.251606814973862,1 +"79156",986.177779331209,-0.121070315805992,0.27455676685056,-0.440966424520471,0.659237304168037,1 +"79666",1226.93037314501,0.417007982874592,0.177509656652731,2.34921294276626,0.0188131441639198,1 +"57480",1515.52923587802,-0.158157266614365,0.270082283215651,-0.585589194268183,0.558151611611897,1 +"64857",1718.45458150943,-0.431039745855728,0.272912207958728,-1.57940807807657,0.114242485678953,1 +"26030",3100.54371134601,-0.448307191064793,0.185623774516318,-2.4151388594104,0.0157292119029759,1 +"25894",645.370739069251,0.761550512335678,0.440626589684442,1.72833535280081,0.0839281183570845,1 +"57449",1583.77204394786,0.953779350815785,0.241972622539767,3.94168290943342,8.09118980482476e-05,0.992303517663709 +"55200",2040.0970608549,0.864585728354839,0.519596304656504,1.66395665366866,0.0961210920254248,1 +"57475",789.233160475694,0.532139074197954,0.291984887849481,1.82248841067512,0.0683809106354193,1 +"130271",387.540137785529,-1.45670996339068,0.309540433182494,-4.70604097957004,2.5257376783619e-06,0.0309756468874303 +"79990",2384.06595493887,-0.296002335863889,0.190684536260891,-1.55231431802579,0.120587033624622,1 +"55111",2386.56344937109,0.845599259226127,0.115736428468067,7.30624981623167,2.74701246133423e-13,3.3689360825803e-09 +"9842",1945.40033173146,-0.533449766277849,0.213121747501607,-2.50302830439126,0.0123135696057477,1 +"23207",4258.29901270542,-0.248940829716611,0.116412199948398,-2.13844279059204,0.032480822659155,1 +"389072",635.604204477783,-0.430000355762758,0.157964088458416,-2.72213994939715,0.00648606684078125,1 +"84069",714.981366994511,1.00845873188547,0.540100249066016,1.86716953682094,0.0618779162515106,1 +"51177",4776.65217744424,-1.55043038245537,0.275989629868402,-5.61771245968427,1.93502165762865e-08,0.000237311056091578 +"80301",2767.49453497877,-1.38469340247747,0.182729307386712,-7.57783971427764,3.5135609347384e-14,4.30903113036317e-10 +"123",3968.40649376124,-0.497468938422855,0.263698315927492,-1.88650783253254,0.0592265539290905,1 +"10226",4303.46010180035,0.117516501499243,0.138221785610725,0.850202455278686,0.395212536915385,1 +"729359",5024.91751778324,-3.76241951208961,0.471240611308731,-7.98407315031828,1.41582048555415e-15,1.73636224348361e-11 +"440503",432.991558949651,-0.904595705585117,0.426826500459971,-2.11935225345727,0.0340607087153883,1 +"5347",1298.34543438863,2.86673599732308,0.361050280144466,7.93999106212026,2.02195823566639e-15,2.47972958022126e-11 +"10769",2826.68408483105,-0.223726904223934,0.317515787603042,-0.704616629972545,0.481048846520044,1 +"1263",2016.96301650457,-1.2638161455488,0.273371746017492,-4.62306790646876,3.78105876192108e-06,0.0463709046562002 +"10733",421.869229378169,1.9377084910902,0.2732907829479,7.0902811656828,1.33839798950275e-12,1.64141129432617e-08 +"51090",836.665353673169,-0.384210379178574,0.391920829958122,-0.980326509360648,0.32692497322328,1 +"5350",3290.2800792714,-4.07168024105306,0.474561028173735,-8.57988751567361,9.496596141207e-18,1.16466255075763e-13 +"5351",6821.97096419174,0.778839018623127,0.18742332274777,4.1555074747622,3.24566333001789e-05,0.398048150793394 +"5352",3021.98478277281,0.30714342899218,0.289514716990867,1.06089055570142,0.288739641793001,1 +"8985",3025.86783143972,0.357692763669293,0.196314747044481,1.82203715744415,0.068449347833584,1 +"5354",450.119817091738,-5.67667300647781,0.499588494163357,-11.3626976457581,6.41331276062483e-30,7.86528676963029e-26 +"5355",8507.23751233727,-0.375525800384908,0.223683217794685,-1.67882867605024,0.0931854381580213,1 +"5356",2114.71113842563,-0.387368444858044,0.107836576656521,-3.59218047223329,0.000327922614915202,1 +"5357",1263.24383515346,1.1106751542674,0.483757899147477,2.29593182090615,0.0216797799735249,1 +"5358",9047.0455005191,0.0963048353587555,0.208376265021843,0.462167969795699,0.643960870775207,1 +"5359",2681.28898034695,0.312510899825582,0.175459711142299,1.78109776763586,0.0748964803764524,1 +"57088",968.886376646468,-1.92198250175933,0.28874288311857,-6.6563805175073,2.80653084517551e-11,3.44192942852324e-07 +"5360",6756.00649776007,-0.965587252691954,0.268444157397733,-3.59697622795089,0.000321937892882121,1 +"83483",4779.54001712452,-0.816497072688182,0.195546447370527,-4.1754635978687,2.97379807406652e-05,0.364706595803518 +"57125",495.022536329193,-0.013348123514477,0.199049378831385,-0.0670593577977664,0.946534448807264,1 +"84898",954.140165710485,-0.934447137795543,0.264397114480083,-3.53425618745145,0.000408924512493999,1 +"5361",4675.6886863656,1.09107419493529,0.243548397982542,4.47990709022646,7.4675537452052e-06,0.0915820791311965 +"5362",3566.12406262981,-0.81174465989996,0.250451895180612,-3.24112005347204,0.00119061030760179,1 +"55558",1884.99014009902,0.618822829725949,0.191144456899046,3.23746155010283,0.00120598189635727,1 +"91584",273.458246410174,-1.25079812924439,0.49486725970269,-2.52754269901762,0.011486385573453,1 +"5364",5858.8290416543,0.329323185733063,0.149334423463894,2.20527309172413,0.0274349368697147,1 +"23654",17859.1476112955,0.38642469415832,0.128620613277885,3.0043760817984,0.00266126142387189,1 +"5365",1242.06353776054,-0.88532374470536,0.395963904578337,-2.23586982163979,0.0253602996428977,1 +"10154",639.743771682051,0.368660845250988,0.258476489542648,1.42628386010388,0.15378642151495,1 +"23129",3568.80753081434,-0.323543744254623,0.183299773495137,-1.76510716890333,0.0775457560636404,1 +"148811",782.824476504911,0.92083709020181,0.66976069565677,1.37487478165441,0.1691702688036,1 +"135293",1224.80621953099,-0.172748958229424,0.206034411023334,-0.838447118476045,0.40177963573339,1 +"5366",939.021246465927,0.751490385699405,0.485926919156712,1.5465090656092,0.121981672366918,1 +"6490",149.701094927584,1.02362029014151,0.258837933853166,3.95467648386573,7.66382831528045e-05,0.939891904585994 +"56937",3175.87656973372,0.606271396713756,0.297717412785012,2.03639884897011,0.0417103209359542,1 +"11243",1149.00669414212,0.317151819647564,0.121876308924049,2.60224339289113,0.00926160961739642,1 +"5371",3733.31679405074,0.0846043079650869,0.183258855246126,0.461665592374563,0.644321149063154,1 +"5372",1356.5117695362,-0.125739649166442,0.217882645913269,-0.577098045782382,0.563873224405174,1 +"5373",2035.19471990509,0.578765451318672,0.187196126007752,3.09175976908146,0.0019897380319583,1 +"5376",6008.40220648744,-2.2534743576865,0.273237876390258,-8.24729860829368,1.62015217114113e-16,1.98695462268749e-12 +"23203",2308.40489244441,-0.0421747696962662,0.148563841273198,-0.283883139630928,0.776499937798544,1 +"9512",2942.21559113186,-0.221875160077702,0.101801626142228,-2.17948542165444,0.0292956264947164,1 +"5378",670.495954241048,0.275556296941477,0.119739392161672,2.30130028194414,0.0213746638378819,1 +"5395",594.310104265121,0.611958548984513,0.150011003211644,4.07942441476195,4.51473459365666e-05,0.553687050566053 +"441194",247.839753691045,0.72880697889641,0.157667969197085,4.62241622447362,3.79296007682678e-06,0.0465168623822036 +"5379",368.10634129083,0.331760839167431,0.125173113547413,2.6504161298326,0.00803926847026352,1 +"5387",105.629329871022,0.544242483046195,0.182117905035596,2.9884073339182,0.0028043552605155,1 +"5383",86.8402529799952,0.276875890579494,0.145349097841782,1.90490271140784,0.0567927187426619,1 +"10654",2580.20612336656,-0.181847698222544,0.186780712203358,-0.973589275238209,0.330260513514627,1 +"139728",883.982624968205,-1.77507281757603,0.58999807781603,-3.00860779775205,0.00262447677506362,1 +"25957",2882.42599395081,-0.170996067822027,0.145438544239654,-1.17572730610022,0.239703863307882,1 +"25953",2758.6403048764,0.180830451186133,0.258251382840941,0.70021096962531,0.483795561984495,1 +"11284",1624.58715838339,0.641531479146575,0.136448227859173,4.70164757147814,2.58070649028318e-06,0.0316497843968329 +"9240",2948.46311412006,-1.3011830472535,0.303075253894227,-4.29326720190626,1.76062906850616e-05,0.215923548961596 +"10687",261.00479858912,-1.98870139470783,0.420474662652921,-4.72965810153796,2.24898257806286e-06,0.0275815223373629 +"5411",4865.8434781831,0.153890444324752,0.145974214777475,1.05423032800241,0.291777478021878,1 +"56902",1304.68482877402,0.174569452633768,0.152012130148704,1.14839159521676,0.250806941788128,1 +"4860",3279.94537260922,0.0557676766774125,0.331757187332697,0.168097870390633,0.866506284694885,1 +"57104",4973.04428037545,-0.494957952043483,0.23202004546734,-2.13325512908391,0.0329038029354756,1 +"8228",733.560974412972,0.221640982624842,0.17694154583248,1.25262261941964,0.210343078993799,1 +"10908",3418.90912345101,0.0600821620904771,0.120962293430324,0.496701578538481,0.619399509110181,1 +"375775",365.126325012745,-2.13223411711761,0.255823294163397,-8.33479267042714,7.76341101905069e-17,9.52104727376377e-13 +"50640",2242.71507784763,-0.366737367585993,0.142839841296546,-2.56747252207191,0.010244290823149,1 +"55163",1685.7030280829,0.750504724453574,0.20291350267527,3.69864358240681,0.000216754722005848,1 +"87178",1528.48226584492,0.651090348178109,0.116212763616116,5.60257176508463,2.11194548943453e-08,0.000259008994824251 +"10957",6118.66927711218,-1.27882621909021,0.222488088471921,-5.74784127938426,9.0390027244586e-09,0.00011085432941276 +"55629",3302.20287224497,-0.154574196032573,0.124199362623132,-1.24456513115619,0.213291644269661,1 +"25886",604.243042086705,1.83573490827533,0.281168779342109,6.52894290956009,6.6235489901588e-11,8.12312048153075e-07 +"282809",794.626796526511,-0.0166930205756444,0.12934486857504,-0.129058236013127,0.897311568399553,1 +"134359",375.617250443279,0.438922502187021,0.107318801583404,4.08989380901638,4.3157073178759e-05,0.529278345464301 +"127435",4595.31765318472,-2.59202666386935,0.338908961396323,-7.64815026781842,2.03890872241359e-14,2.50051765716802e-10 +"79883",225.2020414506,1.22602177976312,0.371103926830911,3.30371545845092,0.000954126199686616,1 +"5420",2571.78496386436,-0.0431876930528624,0.210390851322952,-0.205273626592104,0.837358348228824,1 +"50512",1730.73167271542,1.78070883268324,0.383950677646976,4.63785828845576,3.52038012589096e-06,0.0431739418639267 +"79983",1944.10419039095,0.894019431442957,0.599546408158624,1.49115968218164,0.13591957610132,1 +"23509",3216.07757522574,0.174644116672334,0.168144752377115,1.03865338765163,0.298965966796204,1 +"23275",1439.62704417233,0.0425728061864236,0.164006621260411,0.259579801469272,0.795187918463415,1 +"57645",4546.51574643193,0.832748332431232,0.204399704777428,4.07411709981683,4.61892380523856e-05,0.566464815474457 +"56983",1137.29511532141,0.426095894898497,0.163999268320675,2.5981572921736,0.0093725550152447,1 +"23126",3576.13489660711,-0.0590357120673515,0.144714450294039,-0.40794621371535,0.68331316326907,1 +"5422",1144.69252438946,0.569399743026868,0.169653171301555,3.3562575851575,0.000790049478645482,1 +"23649",1005.13758037811,1.0491303275889,0.182611230300887,5.74515776417612,9.18353217483483e-09,0.000112626838592174 +"5423",1197.29126466579,0.606925902345033,0.266075381021206,2.28102990970315,0.0225466770599042,1 +"5424",1577.63562253552,1.29904364823013,0.15380179302776,8.44621914125317,3.00888648583365e-17,3.69009838622638e-13 +"5425",4241.63160671898,0.635499328916473,0.162162576474853,3.91890251580346,8.8953080318494e-05,1 +"10714",1172.74893038057,0.337884799811292,0.144881737323135,2.33214210468566,0.0196932166761982,1 +"57804",3176.15874487193,-0.135558403355053,0.196728425662686,-0.689063631238954,0.49078322549145,1 +"26073",5849.32337351365,0.437245800568361,0.120166860561636,3.63865543732075,0.00027406519245124,1 +"84271",3632.17530539515,-0.297532030064728,0.133484718177614,-2.22895949533964,0.0258165999253662,1 +"5426",2189.68180885547,0.912423812979751,0.140028194597439,6.51600069259506,7.22066414782035e-11,8.85542251088688e-07 +"5427",231.962436565264,2.00212066481809,0.295256866743156,6.78094530671742,1.19392073185266e-11,1.4642243855441e-07 +"54107",3023.97801244848,0.417193569043556,0.158254194010794,2.63622440878314,0.00838342683548273,1 +"56655",1618.48557527674,-0.000800410441577249,0.165232482020933,-0.00484414705745235,0.996134944968682,1 +"5428",2300.55838486077,0.0745514732184772,0.126516187448314,0.589264304608718,0.555683986135523,1 +"11232",328.267226620596,0.843421750660033,0.155435592483913,5.42618159188556,5.75723870645194e-08,0.000706067754959265 +"5429",912.343905494472,-0.295977681743261,0.128614039369768,-2.30128594975794,0.0213754734025978,1 +"11201",725.360670008343,-0.256207346990236,0.212227911260993,-1.20722738808449,0.227344585651539,1 +"51426",767.366753896397,-0.545670667118091,0.146846681744316,-3.71592099076636,0.000202464847312878,1 +"27343",1103.6866855356,-0.186975682484233,0.151763414665471,-1.23202079299797,0.217941316995026,1 +"27434",962.969389363269,0.382346975930243,0.163201341828696,2.34279309009341,0.0191399942956764,1 +"10721",479.207368349041,3.29224165493617,0.383081281673708,8.59410734075062,8.39145563305402e-18,1.02912811883775e-13 +"25885",1609.3821055148,0.570837060898502,0.161475173467415,3.53513824224932,0.000407561876570689,1 +"84172",1213.55367408405,0.807379735100393,0.186977189591708,4.31806541141956,1.57402786571723e-05,0.193038777451561 +"9533",1289.39293874433,0.33299270919628,0.186766580213936,1.78293519544474,0.0745968530294697,1 +"51082",4557.28492633063,0.0621592142232139,0.115953877369656,0.536068440601196,0.591911250531757,1 +"64425",1353.85192689605,-0.565938492474765,0.188445949507772,-3.00318735400265,0.00267167901415066,1 +"5430",11975.3829877283,0.261960966873691,0.143270958487817,1.82843033674523,0.0674849918837743,1 +"5431",4447.27317088608,-0.104103803825894,0.106472070861224,-0.977756917695188,0.328194563585211,1 +"5432",3041.55535039805,0.0440251190650171,0.116628099774055,0.377482949223278,0.705814733338496,1 +"5433",1317.31395399518,0.648526635370811,0.143503286009057,4.51924588911419,6.2060284773642e-06,0.0761107332463945 +"5434",5764.92293086425,-0.0557857662054507,0.100117636911792,-0.557202186609739,0.577389295924469,1 +"5435",1695.69316376379,0.264701036551508,0.148853157071156,1.77826954939877,0.0753595950051532,1 +"5436",2489.69283229067,0.750344741010624,0.139451843462286,5.38067279987984,7.42079674962711e-08,0.000910086513374268 +"5437",2099.10009903468,1.02417223659382,0.152978385938534,6.69488196198725,2.15845787825119e-11,2.64713274188726e-07 +"5438",1531.94639927956,0.386700494942078,0.151588000976964,2.55099673094075,0.0107415333341602,1 +"5439",1899.15360381077,0.393020125925649,0.11897985683804,3.30324927572105,0.000955713903045636,1 +"246721",109.983239127746,0.126007560623813,0.146444650873966,0.860444952217878,0.389543815533127,1 +"548644",867.138000918467,-0.316329476142278,0.321253681029561,-0.984671911395687,0.324785254134484,1 +"84820",822.638856082296,-0.230745087332553,0.23286771888209,-0.990884818386479,0.321741826291578,1 +"5440",2162.71900103624,0.277401730228491,0.146729221609248,1.89056908491775,0.0586818903432089,1 +"5441",3616.12916636445,-0.115631370437827,0.151668453692813,-0.762395657253978,0.445823897371735,1 +"81488",386.691323943832,0.0537126828480515,0.210505813982077,0.255160091932781,0.798599453068335,1 +"11128",1345.92960260735,0.278243377055181,0.189664735110929,1.46702747293768,0.142368581982012,1 +"55703",711.728903924743,0.438100320694768,0.146896611297968,2.98237186565262,0.0028602434929942,1 +"10623",1215.18004013879,0.114745904814375,0.109874281025916,1.04433816306211,0.29632896218198,1 +"661",974.091738932845,-0.0831718128390049,0.142106908406739,-0.58527635124501,0.5583619135756,1 +"55718",1741.74869497903,0.128641230362306,0.157651379188412,0.815985442211479,0.414508461959195,1 +"10621",582.697086117558,0.1281480288088,0.11888823127079,1.07788657833523,0.281084375802077,1 +"10622",114.7634452384,0.481853761584018,0.245914462981496,1.95943644689282,0.0500616958362304,1 +"84265",1151.9231948703,-0.509349083106137,0.156047177730535,-3.26407110025207,0.00109823601579226,1 +"171568",1744.60538599103,-0.146341051435332,0.159908033056501,-0.915157598015262,0.360108901009379,1 +"51728",710.788150850779,0.468500142738226,0.177781285550359,2.63526130597992,0.00840725334560035,1 +"5442",2029.64745761431,0.42736185453577,0.101925469648972,4.19288580182747,2.75428113628375e-05,0.337785038553839 +"9883",1866.45834935295,0.128078435752124,0.138451379321203,0.925078799359489,0.354924920051877,1 +"100101267",2239.77549374669,0.161211247511302,0.126486344756116,1.27453479521557,0.202473949363649,1 +"55624",3496.69779464733,0.397555772228948,0.143110387472233,2.77796587131793,0.00547003632752403,1 +"51371",4267.1955698926,0.188424159083425,0.146779809993296,1.28371987327161,0.199239988266194,1 +"10585",1146.85117914845,0.162796352698437,0.13129178565631,1.23995840169772,0.214990780699833,1 +"29954",855.678777791927,0.512169584281554,0.165647235830138,3.09192955568999,0.00198860034256897,1 +"22932",335.194364847861,-0.138770796951556,0.108541063781273,-1.27850964526385,0.201069786082335,1 +"5445",2264.82847032644,0.556497400878899,0.224351642666737,2.4804694731188,0.0131209498398683,1 +"10940",417.681559202026,0.572182089685764,0.23039681760405,2.48346351150167,0.0130111663529851,1 +"10775",1415.87920275208,0.371710042065308,0.114023541412351,3.2599412144293,0.00111435307764273,1 +"51367",997.567919074593,0.514230414153619,0.14298486193203,3.59639759905538,0.000322654513837807,1 +"10248",1174.41791970479,0.759675454457568,0.136197500987665,5.57774884963838,2.43651086747937e-08,0.000298813692787671 +"64091",2038.9414752076,-3.37079457143363,0.507486696983765,-6.64213385585843,3.09173981228359e-11,3.79170970578459e-07 +"5447",5969.54987191391,0.554129573770698,0.200453130316018,2.76438473620793,0.00570302519702373,1 +"64840",604.526777125461,0.131306044465021,0.209798876858614,0.625866288852968,0.531402647681699,1 +"10631",7486.82459342748,1.81406821834819,0.407267051604929,4.45424743101471,8.41879678550271e-06,0.103248123777405 +"25913",1075.60587041952,0.399883796041841,0.148331424020706,2.69588051676778,0.00702028434969575,1 +"445582",609.476648631346,-1.06404358536862,0.188492999136414,-5.64500321096045,1.65178166033473e-08,0.000202574502823452 +"440915",1226.30633126129,-1.0601933329231,0.209489229129179,-5.06084889103935,4.17393925797316e-07,0.00511891910597828 +"5450",1500.87103037347,-1.27244892769942,0.539920289693147,-2.35673478472645,0.0184364089205787,1 +"5451",1607.13146789854,0.692071084268427,0.107557029564283,6.43445702314419,1.23915492157897e-10,1.51969959582444e-06 +"5452",602.582728977094,-1.09954281607837,0.271268737345259,-4.05333407321066,5.04928166790966e-05,0.619243903752441 +"25833",257.064614546278,1.07299790831603,0.556449226556921,1.9282943656069,0.0538185222521485,1 +"5460",131.029900299665,0.845534373892959,0.443943817259781,1.90459770137576,0.0568323856253877,1 +"5463",446.342949065366,-1.55806833461865,0.274832512431362,-5.66915580996907,1.43502821554225e-08,0.000175991860354102 +"25845",869.908618136668,0.118014876984878,0.192352063325692,0.613535799639716,0.53952211902128,1 +"5464",2570.91420438501,-0.0722947485318584,0.215288320950041,-0.335804321445912,0.737018431183659,1 +"27068",2201.82763818459,-0.32235717661315,0.117403883400693,-2.74571136214433,0.00603798597973939,1 +"56342",261.47154796004,0.348801075062844,0.1594871692804,2.18701652701356,0.0287413175217514,1 +"5465",1351.02292045824,-0.826532297204268,0.176162532569872,-4.6918733804899,2.70714661683806e-06,0.033200446108902 +"5467",3379.96608713727,-0.350016985249313,0.232140324199939,-1.50778192653788,0.131610349295732,1 +"5468",4659.77534527321,0.829663345816032,0.499349505698737,1.66148826893318,0.0966154230416637,1 +"10891",248.092952947167,-3.89746300156587,0.49254050789941,-7.91297962108293,2.51300506720575e-15,3.08194941442113e-11 +"133522",844.494525120827,-1.51454254845796,0.27732421995088,-5.46127038138328,4.7273940912181e-08,0.000579767611346988 +"5471",657.477100846741,0.885013692112941,0.176346601193054,5.01860362561839,5.2048415434188e-07,0.00638321766884882 +"60490",496.486600023828,0.543694165466449,0.163297631516036,3.32946755209403,0.000870122021306257,1 +"79717",1956.20956057229,0.155856763299783,0.12235119095628,1.27384753741772,0.202717454142719,1 +"79144",12041.9009078958,-0.126568290754434,0.244422165135301,-0.517826567342497,0.60457928026948,1 +"8500",2653.45596917486,0.378884899736291,0.197000914080763,1.92326467876673,0.0544468180813397,1 +"8541",758.390700684642,1.26120963686707,0.266192208077951,4.73796602076999,2.15873997408745e-06,0.0264747870422085 +"8496",2952.01262128518,-0.346250258819304,0.193299569230404,-1.7912624440802,0.073251189804496,1 +"8495",3171.55943784498,0.383398082164211,0.38272792488636,1.00175100178031,0.316463867407694,1 +"51535",2078.22714665076,0.144159367476049,0.124416868767298,1.15868024090588,0.246586547843556,1 +"5478",9903.72457203426,0.534453692414986,0.145521619820176,3.67267553148063,0.000240024170044762,1 +"644591",316.195604314343,0.516735657161021,0.142031683483625,3.63817174088904,0.000274580309846007,1 +"5479",9185.72149967685,0.526018217838525,0.160669026385676,3.27392422591678,0.00106065049167686,1 +"5480",3119.63179476355,-0.219599150344556,0.208134242772641,-1.05508419671451,0.29138681899351,1 +"5481",1303.47247092933,0.218046231261931,0.160525170948066,1.3583304722502,0.174358845251061,1 +"10450",2772.24551715538,0.295346337429315,0.164208237912319,1.79860853014585,0.0720806270674723,1 +"728448",105.524485925141,-0.611991128880659,0.333405404208237,-1.8355765118265,0.0664203136265814,1 +"10105",5369.70277923755,0.600462792689822,0.28234511547417,2.12669800106655,0.0334451837195147,1 +"9360",2859.86802324972,0.113581790744981,0.106044163457627,1.07108007684332,0.284133425574785,1 +"10465",575.947102907244,0.568933365950981,0.123700729877565,4.59927250642815,4.23968892891152e-06,0.0519955450241708 +"51645",1247.52130042548,0.627620712833373,0.130710096451123,4.8016238215237,1.57384143077985e-06,0.0193015913070841 +"23759",2251.52968371323,0.369925491040327,0.0999795106486241,3.7000130190717,0.000215588406731571,1 +"53938",552.177633666148,-0.0994332062781337,0.118104617906544,-0.841907861357423,0.399839529628286,1 +"85313",1125.88389699383,-0.0676507473768729,0.14702453119658,-0.460132379449116,0.645421203995956,1 +"285755",106.642514796367,-0.454900772323944,0.317125990127915,-1.4344480947161,0.151444431224088,1 +"9677",886.335486826848,0.000385521662841474,0.158103322703944,0.00243841594375206,0.998054427493686,1 +"23262",1294.77579319284,0.217378616312683,0.125847055594779,1.7273238160822,0.0841095242735384,1 +"5493",14791.22931318,-0.158659918275328,0.392630958136254,-0.404094264569601,0.686143402396912,1 +"5494",2941.94504857409,-0.117199830523881,0.122115895481827,-0.959742628602532,0.337184763047203,1 +"5495",2327.08508700351,-0.272523186925135,0.104977807251207,-2.59600761399977,0.00943139752464934,1 +"8493",772.806132485321,-0.117805587344717,0.19799278930886,-0.594999382330764,0.551843883861522,1 +"9647",2035.96066913691,-0.768376809149376,0.181793159382538,-4.22665413681777,2.37191815009711e-05,0.290892041927909 +"5496",7209.67495581946,0.610304617567563,0.108505790428769,5.62462717571014,1.85909049418633e-08,0.000227998858207011 +"57460",944.155801021705,1.15284278600383,0.35973367434047,3.20471189725965,0.00135197733329353,1 +"152926",567.739581516071,-1.43952068838906,0.160839423123329,-8.95004881536573,3.55325188559089e-19,4.35770811248866e-15 +"151742",601.109687134374,-1.44070237928275,0.331336242477915,-4.34815813841668,1.37285603932725e-05,0.168367064663094 +"132160",1050.6669570729,-1.03477462398823,0.180339496931588,-5.7379256435476,9.58431747778187e-09,0.000117542069547517 +"51400",3129.36737315892,0.564221470620312,0.102951362181063,5.48046629657998,4.24206323292084e-08,0.000520246634885412 +"5498",788.217603079765,0.492074900899947,0.172774438901089,2.84807697266869,0.00439842849717234,1 +"5499",8427.0623663048,0.784297812448955,0.197265827107379,3.97584226294823,7.01306002269254e-05,0.860081681183013 +"5500",22365.7751810256,-0.535501628956916,0.15648179783137,-3.42213366908009,0.000621317602252156,1 +"5501",7244.79187823676,-0.0370669404560834,0.132768914303537,-0.279183878624938,0.780103714954318,1 +"5514",5471.35496653887,-0.283293280031166,0.155262777982843,-1.82460525125004,0.0680606204160251,1 +"6992",3701.08656584398,0.0145631367851384,0.12468280584383,0.116801484267039,0.907017367529421,1 +"4659",7636.27431691313,-1.06556803251033,0.269753741218967,-3.95015108111281,7.81018779923331e-05,0.957841431697974 +"4660",22664.2824020633,-3.44031699218579,0.403972006845366,-8.51622620847264,1.64836708564716e-17,2.02155739383767e-13 +"54776",6349.89131189141,-1.21999077482877,0.284620702508149,-4.28637398501904,1.81613145794092e-05,0.222730362001874 +"23368",1872.21816264654,-0.463891534342826,0.150796373619971,-3.07627778577686,0.00209602471462801,1 +"10848",3802.48736084297,0.869495384910497,0.395017921082403,2.20115427302123,0.0277251042080297,1 +"94274",1950.19818329277,-2.9327342572536,0.363523301732482,-8.06752756501922,7.17360129968735e-16,8.79770463393657e-12 +"26472",2694.08727710302,1.31973148338942,0.209015365758709,6.31404049457751,2.71842756676712e-10,3.3338795678832e-06 +"23645",11651.7388973447,-1.47755085402412,0.269286623404473,-5.48690772435737,4.09030658232055e-08,0.000501635199255793 +"84919",5654.95397017583,-0.661288859914933,0.175725537091355,-3.76319157056351,0.000167758592970398,1 +"84988",1426.92956978349,0.898268055572083,0.160242290568168,5.6056865661812,2.07431046464361e-08,0.000254393435383893 +"26051",527.051622429342,-1.50009056716432,0.325293549883591,-4.61149803831381,3.99777431028215e-06,0.0490287041413003 +"170954",4592.88043272796,-0.351446744326424,0.226012619421915,-1.55498726232783,0.119949102987616,1 +"84152",1137.31361297637,-3.37895038600864,0.46892953166909,-7.20566771297539,5.77601019090677e-13,7.08369889812806e-09 +"5504",2529.087329649,-0.334105870465572,0.0888878159859996,-3.75873641127818,0.000170773631294977,1 +"129285",1551.05653837284,-0.084461026783922,0.153404231968853,-0.550578205698202,0.581922852469319,1 +"9858",1504.41793914161,0.170708235762743,0.203096282144152,0.840528610177016,0.400612067144347,1 +"221908",783.558231348205,0.76393066840265,0.13429930582888,5.68826967263725,1.28333052338578e-08,0.000157387655388032 +"284352",3609.28863561298,0.224899740313456,0.24624481174528,0.913317680561311,0.361075486144978,1 +"79660",3473.35168106692,-1.53372104324708,0.251962161117405,-6.08710862156967,1.1496797551667e-09,1.40996725173645e-05 +"5507",2267.42432344135,-1.17879899979423,0.499583734453759,-2.35956240865832,0.0182965030557085,1 +"5509",646.615855923936,0.372815946767819,0.156592697956628,2.38080032870422,0.0172750728234486,1 +"90673",417.588326895993,0.0209294279582824,0.17212340235825,0.121595481332171,0.903219392308874,1 +"89801",289.871371895295,-0.744371268137027,0.214346014415031,-3.47275534918847,0.000515144708784406,1 +"648791",205.150413083602,-0.316143471368216,0.314226423081838,-1.00610085004175,0.314367059837736,1 +"5510",2983.94146831442,-0.354196691793656,0.138664609251994,-2.55434096489594,0.0106389018212749,1 +"5511",1928.32318521145,0.214295551097628,0.0764748690076895,2.80216957385151,0.00507601848680478,1 +"55607",669.519019072964,-0.638552610113841,0.4340850072679,-1.47103124830974,0.141282666331463,1 +"84687",3335.29644538822,0.164562462492062,0.119877202749974,1.37275861228835,0.169827401180398,1 +"5515",6459.61441617003,-0.219120049655162,0.140500638581577,-1.55956621882496,0.118862424698565,1 +"5516",2974.28775666743,-0.898798312903664,0.149092166009343,-6.0284744461177,1.65514561067721e-09,2.02987057693453e-05 +"5518",16323.5233680558,-0.105998539463631,0.133871211049767,-0.791794879813446,0.428480288326531,1 +"5519",1530.58210602248,0.31913555280549,0.187717160310946,1.70008726041271,0.0891145132118453,1 +"5520",2907.48988371751,-0.294552938929594,0.171720254231564,-1.71530691150964,0.0862889720693201,1 +"5521",762.163926426835,-2.58503672676654,0.449642580429799,-5.74909236642042,8.972379450888e-09,0.00011003726158569 +"5522",697.834071618855,1.01279373783138,0.505265859294243,2.00447688914912,0.0450190001430306,1 +"55844",1559.15025031407,-0.136000945363124,0.163437922343138,-0.832126004866792,0.405337824779968,1 +"5523",1088.13448281139,-0.4587406829532,0.282114471900316,-1.62607993791716,0.103932651235702,1 +"28227",301.038409915304,0.336090092108627,0.183877533476622,1.82779312814395,0.067580604952258,1 +"55012",963.050403185869,-0.477971641756003,0.14404413936432,-3.31823039705285,0.000905897277661315,1 +"5525",3325.29910762656,-0.979739038675933,0.155199007599742,-6.31279190394488,2.74045889542433e-10,3.36089878934839e-06 +"5526",1101.45728588272,-0.353135395996551,0.196121843419918,-1.80059186594759,0.0717672321751062,1 +"5527",4864.39204503403,-0.402933754592696,0.141269332116177,-2.85223798086148,0.00434125859105956,1 +"5528",2651.2823730635,0.0669300919791342,0.151792298354746,0.440932067730571,0.659262177350057,1 +"5529",1721.33223935887,0.074781664996233,0.143741923166132,0.520249509322364,0.602889682115425,1 +"5530",2843.76453347039,-0.400070180957253,0.159396706572172,-2.50990242873122,0.0120764524667122,1 +"5532",2847.16492630609,-1.33815180786059,0.197874417834156,-6.7626316858308,1.35507414900517e-11,1.66186293633994e-07 +"5533",874.711435133935,-0.876782350788279,0.105721777609838,-8.29329936187801,1.10149660032601e-16,1.35087543063982e-12 +"5534",3622.97537506166,0.066179073768683,0.0811971670851269,0.815041659018732,0.415048464546241,1 +"5531",6229.53456158739,0.853197657906223,0.172358773637819,4.95012606494328,7.41654254814356e-07,0.00909564778104326 +"9989",5990.21378379242,0.286683732402262,0.217119568296423,1.32039564490505,0.186702956897868,1 +"55370",122.707959743745,-0.371353892138996,0.276737066092563,-1.34190152906653,0.179627925917358,1 +"151987",773.834238567689,0.330449218612095,0.181207637216451,1.82359432355147,0.0682134253903917,1 +"5536",2597.3144564591,0.379917310195925,0.102778111990425,3.69648072764091,0.000218608846198287,1 +"5537",3196.8711686547,-0.13125550653823,0.126532936137877,-1.03732285477993,0.299585417906256,1 +"22870",5631.08232747195,0.0632650004177371,0.133504307270066,0.473879844863418,0.63558559265816,1 +"9701",2856.0747793231,-0.256378456395974,0.113068526827241,-2.26746083627407,0.0233620887409532,1 +"55291",5344.39207296846,0.036561425395529,0.130430484981768,0.280313497267449,0.779236996399592,1 +"23082",3275.32917156343,-0.443280356550821,0.224277107092274,-1.97648508266358,0.0480998636213168,1 +"5538",6529.3603724984,0.251340396923152,0.138410913970793,1.81590013180745,0.0693856931020322,1 +"9374",562.021268694724,-0.272843536055492,0.234598514082847,-1.16302329161019,0.24482005252561,1 +"160760",1255.6414030079,-0.572577466554962,0.176782991678076,-3.23887191363766,0.00120003451914269,1 +"23398",897.789079838609,-0.218549458064353,0.151478046628959,-1.44277974880204,0.149082525651373,1 +"10084",2708.90561861009,-0.0389842690891798,0.156224919258668,-0.249539377419245,0.802943585264206,1 +"84279",820.352349140347,-0.141432809283629,0.178152778459956,-0.79388494811165,0.427262413055659,1 +"11230",1773.28143349192,0.213042061717129,0.291941231294186,0.729742971805337,0.46554730906316,1 +"9055",2100.12113199719,2.40287096066825,0.32675852679927,7.35365954855203,1.9285256212658e-13,2.36514382192037e-09 +"5546",3635.21512316835,0.420962543543145,0.107917607722896,3.90077719869465,9.58843660297702e-05,1 +"5547",5104.41987816091,-0.82067402073443,0.190937847004226,-4.29812126621637,1.72251920525905e-05,0.21124975533297 +"639",2536.0741113842,-0.695814640607378,0.48127184735071,-1.44578296951645,0.148238084291196,1 +"56980",528.839219501115,0.334281903176152,0.133265098879534,2.50839796756036,0.0121279988410695,1 +"56981",430.957455492702,-1.10501094233179,0.282421413476224,-3.91263158388243,9.12957627066123e-05,1 +"63977",527.443248937308,0.599800134998054,0.12150823356159,4.93629211302811,7.96218230417412e-07,0.00976482037783914 +"63976",131.871498774154,-1.80040289297477,0.345997315839533,-5.20351693655845,1.95551921625012e-07,0.00239824876680915 +"7799",3001.424195003,-0.362302232022755,0.12395626457662,-2.92282308812886,0.00346873540215661,1 +"11108",1642.80359695858,0.180328147169859,0.0936513942148569,1.9255254946461,0.0541636496076528,1 +"93166",512.992848092188,-2.98577433951448,0.369786864801063,-8.07431151217543,6.78584341557953e-16,8.32215836486674e-12 +"56978",437.139072017089,-2.29115676508958,0.368849060411079,-6.21163779714149,5.24351801894201e-10,6.43065049843048e-06 +"5052",24020.4035050668,0.537240470455501,0.225712060529311,2.38020276451171,0.0173031140729701,1 +"7001",7589.97491278642,0.0874492163449632,0.146440590580874,0.597165143885895,0.55039712824109,1 +"10935",4719.93539120836,-0.198753321135666,0.146003720824073,-1.36128942477536,0.173422243639757,1 +"10549",2799.32701639057,0.662200765229619,0.148348981269888,4.4638039274762,8.05172507129741e-06,0.0987463562743914 +"25824",11154.544448431,0.318468555857403,0.207414019926804,1.53542444223293,0.1246796036359,1 +"9588",10625.5856273251,0.15736907725638,0.155323420674751,1.01317030344002,0.31097882241172,1 +"10113",2704.34581962315,0.585600054028657,0.127437970636025,4.59517717604895,4.32381718966004e-06,0.0530272940139907 +"27166",583.347146596552,0.272118396360212,0.130505824723163,2.08510537316971,0.0370597366453481,1 +"153768",204.625194076248,0.652771920610217,0.260905692904863,2.50194586918517,0.0123512807893137,1 +"5549",7124.21828574291,-4.15750991572374,0.382266234675241,-10.8759538211786,1.50077809282733e-27,1.84055425304344e-23 +"5550",2948.87090652988,0.325464184223946,0.211829729452614,1.5364424297995,0.124429907198527,1 +"9581",2347.04733484733,-0.310582489226813,0.156932865059609,-1.97907869144454,0.0478071471681989,1 +"57580",1394.85768598818,-0.426057333965326,0.237806477623288,-1.79161366092074,0.0731948733181386,1 +"80243",175.225049303389,-1.44707163495049,0.356911182496298,-4.05443064246244,5.02565584643894e-05,0.616346433007272 +"5551",408.779167008888,-0.341665133155286,0.377923223419101,-0.904059639585561,0.365963778119636,1 +"144165",610.24928930036,-0.930731579914241,0.303336676788323,-3.0683120477506,0.00215271698110657,1 +"166336",1650.8883036182,-2.44809451043062,0.260410326099052,-9.40091181138277,5.40922513706182e-21,6.63387370809261e-17 +"4007",779.162050907069,0.562943348977422,0.199528509019468,2.82136799269369,0.00478193136393487,1 +"29964",570.992006853467,-0.387713101909234,0.235625332789927,-1.64546442149708,0.099874073902163,1 +"5557",333.251853460037,1.39657209252675,0.234822199919228,5.94735971729732,2.72502128206421e-09,3.34196610032354e-05 +"5558",788.496368004488,0.81398500097377,0.133524960492655,6.09612613230128,1.08669680801024e-09,1.33272496534376e-05 +"145270",356.074898739775,-4.57506234491964,0.46538962641229,-9.83060662565474,8.31165857221197e-23,1.01934180729608e-18 +"5562",3314.1909263194,-0.120212867883911,0.14788186081849,-0.812897993158609,0.416276545224029,1 +"5563",588.545317129789,-2.45501395910969,0.506577929118028,-4.84627106313923,1.25803605530458e-06,0.0154285541822554 +"5564",1530.67225376636,-0.230690787606344,0.141322993307564,-1.63236556350237,0.102602499053509,1 +"5565",1736.72141719009,-0.130969706789822,0.336087080579006,-0.389689798739628,0.69676594078715,1 +"5566",4371.10056697433,-0.2724844421436,0.176418861328478,-1.54453123714621,0.122459689889769,1 +"5567",3690.43228519533,-0.513453237654478,0.229738613500109,-2.23494531385876,0.0254209391589109,1 +"5571",2454.72869169504,0.0514835947417987,0.128178158973572,0.401656531456452,0.687936819331567,1 +"51422",1781.50532092042,-1.6532178057407,0.268739822392222,-6.15174108185517,7.66369194945763e-10,9.39875180681484e-06 +"5573",12075.0133345482,-0.322315291714313,0.106806174893789,-3.0177589641688,0.00254651361392437,1 +"5575",1230.61553229322,-0.0269055072401762,0.21902135151274,-0.122844220685997,0.902230456383909,1 +"5576",728.274404114506,-0.320340108161061,0.203816285100981,-1.5717100721483,0.116017805225477,1 +"5577",1172.80460649096,-2.29690568881569,0.330116799883491,-6.95785761168878,3.45486126363878e-12,4.23704185372659e-08 +"5578",1966.31115556394,-0.963354180924474,0.281614887162297,-3.42082121663293,0.000624323596064432,1 +"5579",1144.2540224386,-3.11298222648188,0.325710022868942,-9.55752665841195,1.20604443833051e-21,1.47909289916854e-17 +"5580",5040.69059450449,-0.0127436821754704,0.237754550622782,-0.0536001609310494,0.957253728293608,1 +"5581",707.103119616621,-0.508213032891532,0.209504448263922,-2.42578635968298,0.0152752594773202,1 +"5583",2256.012523006,0.112945452769017,0.287554957381587,0.39277866671983,0.694482962464086,1 +"5584",2263.22240604444,0.697290293595769,0.198376735085733,3.51498018804684,0.000439786796247093,1 +"5588",223.341627977819,0.638939920651214,0.414876621682558,1.54007212568391,0.123542773398573,1 +"5589",14995.6448074083,0.412012669440256,0.0998487936800865,4.12636602060849,3.68540547167267e-05,0.451978127045937 +"5590",975.677624810715,1.62656080857265,0.317300147050868,5.12625293020076,2.95565481634571e-07,0.00362481506676637 +"5587",632.001741737935,-1.37362215565302,0.322089953492447,-4.26471593031304,2.00156691903602e-05,0.245472166950577 +"25865",3656.20641286779,0.600841375732812,0.177867738882169,3.37802335324479,0.000730088801424981,1 +"23683",2149.26349002255,0.172356921474098,0.144677050738159,1.19132177905696,0.233527287199578,1 +"5591",11268.9673429532,0.867682494333006,0.177657271336446,4.88402466054876,1.03942066442461e-06,0.0127474550285035 +"5592",932.976322675774,-2.08948583564276,0.331674305865428,-6.29981219133249,2.9800650427349e-10,3.65475176841009e-06 +"8575",2065.08460731665,-0.133807383457708,0.171019535984523,-0.78240993163388,0.433973698924751,1 +"79706",109.73963976715,0.514631443957919,0.133138228590818,3.86539200201894,0.000110910918636318,1 +"5613",1424.64484725253,1.09215641805343,0.297193958166245,3.67489441842049,0.00023794779384928,1 +"5616",290.824420380352,0.348204463576303,0.24500216566429,1.42123014558746,0.155249863608807,1 +"3276",5481.29795803478,0.37480560070295,0.121940968517369,3.07366429232161,0.00211447224861294,1 +"3275",5329.1716701221,-0.452180950085772,0.166873872582654,-2.70971688430017,0.00673406620410599,1 +"10196",733.180549475148,0.560885301426266,0.164636477613852,3.40681062638985,0.000657267129275372,1 +"10419",2998.05452113355,0.525078323687251,0.121409574245031,4.32485104203996,1.52634964753683e-05,0.187191520773917 +"55170",980.654962048258,0.322221914279951,0.175858188907709,1.8322826834584,0.0669093156542927,1 +"54496",1549.31313927208,0.231748291379725,0.145101502733316,1.59714604614163,0.110233156157332,1 +"5621",10360.9249293537,-1.12567295756424,0.253539857771196,-4.43982641411785,9.00314662980371e-06,0.110414590267913 +"10544",1077.4020531078,-0.620620895826558,0.268607116555269,-2.31051546133871,0.0208596335531612,1 +"5625",483.923662919988,-0.26146332093551,0.437354898045396,-0.597828724690244,0.549954222056947,1 +"150696",9331.77464835187,1.33495519235783,0.565120830731093,2.36224736333078,0.0181645174055299,1 +"5627",1182.74230735873,-1.33379881598175,0.227902737319784,-5.85249142536721,4.84263220679225e-09,5.93900413841002e-05 +"80209",1895.13537746575,0.625429967248927,0.169477847843208,3.69033460837631,0.000223959263673574,1 +"8559",1046.37139844206,0.109197475560065,0.132758976709983,0.822524233510859,0.410778600283655,1 +"27339",6930.41192880639,0.386673319366734,0.108887642562519,3.55112215001552,0.000383592343410305,1 +"9129",1340.52950831036,0.271457327425892,0.145627914424828,1.86404734626627,0.0623150557495238,1 +"26121",3497.5886792937,0.285852457826577,0.121062035694361,2.36120643591567,0.0182155875066094,1 +"84950",1989.14730106549,0.030144428096733,0.120252810474889,0.250675455963898,0.802065038203736,1 +"55119",2996.0830032857,0.0217844088136387,0.160550910359538,0.135685364628918,0.892070018046514,1 +"55015",1068.1970491822,0.182261211603483,0.101494751665755,1.79576981678531,0.0725311329433116,1 +"9128",2040.29332069091,0.184012538547569,0.161007764720146,1.1428799031364,0.253088457656588,1 +"55660",5187.20018181688,0.515127179650654,0.111677343773837,4.61263817926993,3.97590058661967e-06,0.0487604447943037 +"25766",714.599767254518,0.103787662817289,0.170435938838616,0.608954094567843,0.54255486696936,1 +"8899",3516.79320896357,0.168622663699132,0.124026558619108,1.3595689953551,0.173966355110907,1 +"24148",7481.31794598028,-0.258064301716692,0.145669421783117,-1.77157497131358,0.0764651374396798,1 +"10594",15301.8736955053,-0.146981073852088,0.126395882815432,-1.16286282890018,0.244885160819684,1 +"5630",101.419442467931,-0.396479153884427,0.324309471831333,-1.22253337728794,0.22150598984462,1 +"5631",1461.7491495018,-0.107512448214238,0.136862386911504,-0.785551462607153,0.432130309650029,1 +"221823",238.648823128512,0.0693347780606226,0.160642740548329,0.431608535959727,0.666025953450786,1 +"5634",3463.88244253675,0.346273976407622,0.20169687058363,1.71680391175948,0.08601500599226,1 +"5635",1902.82964259046,0.555705148145621,0.14604425124802,3.80504637051337,0.000141777627514399,1 +"5636",1154.84212569658,0.204213085305187,0.158774354736441,1.28618431889818,0.198378742392934,1 +"55771",1408.87733894303,2.7813750460944,0.334381639000278,8.3179658261442,8.94858041445465e-17,1.09745390202872e-12 +"57479",2517.14666650269,0.31772341166876,0.179094337955446,1.77405614993703,0.0760538630244408,1 +"54458",3027.14802333951,0.102585781231876,0.211212169239121,0.485700145031583,0.627179780813985,1 +"78994",1820.95490320668,0.142513453953995,0.133959216782009,1.06385702587309,0.28739347329121,1 +"253143",2209.14518184879,0.556271425253833,0.144285371666793,3.85535566653608,0.000115561495459062,1 +"222171",1047.42711744921,1.17445334400102,0.547405464437517,2.14549071995075,0.0319136326119269,1 +"79170",539.243630990332,1.57618309180573,0.529279619914544,2.9779780526222,0.00290156761075029,1 +"51334",134.509192550229,-0.842181373591439,0.262190647672227,-3.21209540106967,0.00131770609919824,1 +"80742",739.782111821343,0.457213252311992,0.228079550132749,2.00462186130182,0.0450034877194413,1 +"55615",790.196157970511,-0.274812932322053,0.164610312479286,-1.66947579518528,0.0950231234274515,1 +"79899",388.805316146723,0.739474744592497,0.308434620858115,2.39750888708654,0.0165069805401168,1 +"80758",158.127854367594,1.10354971536519,0.267202761728474,4.13000864297426,3.62749596800055e-05,0.444876105515587 +"133619",3137.8390186076,0.661174714235301,0.119549701112751,5.53054259509799,3.19241764635533e-08,0.000391518100149018 +"7916",14480.3015176929,0.0762485775078963,0.178050242417987,0.428241919092123,0.66847499992604,1 +"84726",10441.3985798449,-0.415338480086274,0.198096031739985,-2.0966521966045,0.0360243750802895,1 +"23215",11078.6349310075,0.429051471740198,0.186434378399196,2.3013538351897,0.0213716390773186,1 +"5638",496.606409417655,-0.645301081360113,0.238266015967592,-2.7083219515782,0.00676243862343775,1 +"5639",515.266858399645,1.45852255983973,0.475548419393368,3.06703271498682,0.00216195194075221,1 +"79056",2333.250795518,0.537617581941949,0.447989895794639,1.20006631173752,0.230113587838652,1 +"80863",202.674867964419,-0.757444396165381,0.330731232636238,-2.29021126951887,0.0220090724604598,1 +"112476",351.147473501244,-1.46683460927829,0.436162223478258,-3.36304826580519,0.000770868847383576,1 +"285368",256.177672924927,-0.0873758118615604,0.268781407468022,-0.325081309323659,0.745119534385394,1 +"5396",1467.79091717089,-0.236265803775289,0.352356765096753,-0.670530062649466,0.502519948896598,1 +"51450",284.618705756977,-0.60072243302473,0.263822731108543,-2.27699270074488,0.0227866615054851,1 +"8492",427.35503779581,-0.0445258547164626,0.517861399125067,-0.0859802541600698,0.931482113987386,1 +"10279",613.500456204603,2.13119093665167,0.589041917652334,3.61806328681271,0.000296815825595433,1 +"64063",1716.53993523846,1.49973641159961,0.680786297168427,2.20294741218708,0.0275984553584297,1 +"11098",7903.14995138382,-1.57667569867726,0.265527537367132,-5.93789900027306,2.88697794411258e-09,3.54058975065966e-05 +"83886",1300.97726038593,1.31182373020459,0.51173510555814,2.56348199675261,0.0103628075051167,1 +"5646",448.897100422794,0.378213224429848,0.659283640538339,0.573673000775535,0.566189101944798,1 +"146547",94.8895939794072,-0.099794228383301,0.228216227888179,-0.437279282489052,0.661908818268795,1 +"339105",155.093217378265,0.500816858720856,0.242427583249292,2.06584107306741,0.0388434884269917,1 +"5652",2828.90371742222,2.47385625575191,0.649196935176313,3.810640688068,0.000138607104007356,1 +"56952",417.871561516108,-0.959490781238447,0.30897700394893,-3.10537926439677,0.00190035184862702,1 +"158471",7058.71091266886,-4.14561174506839,0.502818923470523,-8.24474090285787,1.65518473534529e-16,2.02991855942746e-12 +"57716",476.515964478492,-1.56083312033778,0.291582372653283,-5.35297489397189,8.65198574054949e-08,0.00106107953122099 +"5660",56472.5005953772,-0.192735919256138,0.158160454456589,-1.21861004963816,0.222992232892791,1 +"29968",992.629460763262,1.42810895427045,0.339021321508419,4.21244583649287,2.52620302605573e-05,0.309813539115474 +"8000",61169.5548671224,0.348265814693714,0.978801313622965,0.355808487224677,0.721983992618918,1 +"5662",3609.14255565217,-3.69844606802816,0.460958349718262,-8.02338447777039,1.02870729050339e-15,1.26160662107336e-11 +"23362",1494.59742872297,0.430507184201297,0.284395466917573,1.51376246909756,0.130086094648627,1 +"23550",2079.30159602703,0.484713174089071,0.347460842462261,1.39501525021979,0.163011240836364,1 +"5663",3781.6803541907,0.327349508547716,0.142280040456123,2.30074090152277,0.021406280700404,1 +"5664",1035.50515114319,-0.154226369520996,0.124231675315838,-1.24144159795722,0.214442660215389,1 +"55851",3365.06177279958,0.783010641922679,0.186990893164843,4.18742661030241,2.82135207618522e-05,0.346010618623355 +"11168",2406.28464457238,-0.645278277814337,0.206303780318353,-3.1278063679618,0.00176116164962925,1 +"5681",1589.94587792537,-0.555163703713819,0.183584207088863,-3.02402757032959,0.00249433706228338,1 +"5682",3986.56936636784,0.151515239141399,0.115137550210349,1.31594982579176,0.188190883642036,1 +"5683",3098.53465987749,0.44561104657486,0.135699007908992,3.28381948727079,0.00102410494364828,1 +"5684",3671.61052288846,0.438744018314734,0.179188355537973,2.44850742112958,0.0143449474866738,1 +"5685",6378.6926099151,0.595545423010956,0.150326987286943,3.9616667223842,7.44283831949087e-05,0.91278969150236 +"5686",5430.95903230679,0.763532249104657,0.193995695525183,3.93582057085149,8.29129052876467e-05,1 +"5687",4443.2817122424,0.535321929190862,0.157131301861516,3.40684461242901,0.000657185296606404,1 +"5688",8159.3490879585,0.543697921169553,0.11834235592921,4.59428001834594,4.34245944540097e-06,0.0532559226383975 +"5689",6840.82391587846,0.16013766693244,0.116181756386258,1.37833745945488,0.168099122797094,1 +"5699",4171.85495627277,0.233928719838059,0.26693450054244,0.876352511056796,0.380838426428869,1 +"5690",5693.32299463129,0.708023131310316,0.127831773127014,5.53871008741168,3.04707568693496e-08,0.000373693362245703 +"5691",4467.3911440325,0.796606045209824,0.171689031900397,4.63981907517519,3.48714337844657e-06,0.0427663263932688 +"5692",10406.8486360379,0.468860006528986,0.104156040475446,4.50151526871371,6.74707171436152e-06,0.0827460875049296 +"5693",5006.61635961659,0.56729840091236,0.123379599848406,4.59799190149253,4.26582572362293e-06,0.0523160866745116 +"5694",4834.06921663606,0.223152279175333,0.159067580613659,1.40287718160071,0.160653466364637,1 +"5695",3087.84189457765,0.38511219087441,0.14135601540586,2.72441317597048,0.00644158647338914,1 +"5696",4249.71096099708,0.400117065590181,0.233920071782496,1.71048624661084,0.0871759945424395,1 +"5698",2280.12697621386,0.379788020818289,0.300689781221285,1.2630559617814,0.206569068899987,1 +"5700",391.742338209362,0.23723367093876,0.110074047990453,2.15521892098795,0.0311447069621571,1 +"5701",4081.1966257675,0.267289998045568,0.117651268952838,2.27188368153271,0.0230935367738453,1 +"5702",4265.35077350562,0.0634627617848173,0.141465862555267,0.44860831184643,0.653714236742987,1 +"29893",221.822109327042,1.06630014869625,0.260472442555777,4.09371578134574,4.24514635490603e-05,0.520624748965676 +"5704",6327.42987376027,0.561936065127754,0.174499781432263,3.22026801704555,0.00128070799817952,1 +"5705",7520.60893468907,0.0495605338131449,0.133501473516858,0.371235856111256,0.710461868899722,1 +"5706",782.3371003383,0.289027263060357,0.0892366588855571,3.23888485595392,0.00119998006823041,1 +"5707",5070.52206701468,-0.00603086111182226,0.13523163872689,-0.0445965246638918,0.964428912822047,1 +"5716",1782.25006729314,0.232713187655566,0.0989817477606773,2.3510717169617,0.018719425502766,1 +"5717",3787.26964004487,0.85474279264453,0.167806301441933,5.09362750564108,3.51276613124061e-07,0.00430805638335349 +"5718",2386.52320882257,0.521262612798578,0.156226028687109,3.33659260994573,0.000848121670591829,1 +"5719",5559.98641671315,0.138722052948565,0.126950368059073,1.0927266700323,0.274513826332209,1 +"10213",3051.54703809748,0.804241457628459,0.158557053590362,5.0722527911388,3.93133666828119e-07,0.00482139128998006 +"5708",8413.96850860095,0.617515533662866,0.140116942051916,4.40714395147208,1.04742579849693e-05,0.128456299927664 +"5709",6513.88011382424,0.708193256315461,0.123541300221996,5.7324413377784,9.89952780877005e-09,0.000121407809046756 +"5710",4519.60345236096,0.349174287114675,0.109433680791349,3.19073876150092,0.00141909531202734,1 +"5711",1548.14572848765,0.0815572493666545,0.11882615618764,0.686357717722238,0.492487560601804,1 +"9861",2654.14595449187,-0.0802556163862658,0.0864747584904782,-0.928081416903902,0.353365338313511,1 +"5713",5241.36641877646,0.21603934835448,0.129987210579904,1.66200464946265,0.0965118422427994,1 +"5714",5775.34003646882,0.546251174789364,0.147853434920966,3.69454504104932,0.000220280845763096,1 +"5715",2217.56963787481,0.0752079663353553,0.0960949646240363,0.782642114803833,0.43383730301691,1 +"5720",9725.17850317285,0.283704306396564,0.160912608375643,1.76309556634785,0.0778843728893637,1 +"5721",3796.99760628279,0.864059890621202,0.22866621017592,3.77869511178086,0.00015765230358162,1 +"10197",5782.03804938597,0.376254396964878,0.12936014851885,2.90858043433718,0.00363073764790251,1 +"23198",5167.41366679735,0.285339815614611,0.124410997829287,2.2935256576444,0.0218177599302246,1 +"9491",5670.96475035593,-0.032410461761697,0.101200852264176,-0.320258782772819,0.74877216553684,1 +"8624",1231.56848861964,0.638075807037076,0.131383286301803,4.85659801179992,1.19419683991989e-06,0.0146456300447776 +"56984",2600.32904689365,0.159427026593087,0.108033491432389,1.47571854319697,0.140019465855916,1 +"84262",1625.26335166614,1.31659591250148,0.165304163958572,7.96468691999461,1.65642619427161e-15,2.0314410846547e-11 +"389362",518.121385633122,0.325450211544459,0.193782973511782,1.67945720744486,0.0930629720715725,1 +"55269",2070.94912344073,0.17541031695205,0.128382955451706,1.36630533496352,0.17184314721519,1 +"5723",680.154416483373,0.9115785971386,0.199163690555438,4.57703206139805,4.716192016065e-06,0.0578393788850211 +"84722",522.082520720807,1.78287892737423,0.331506020003088,5.37811930944006,7.52679337400816e-08,0.00092308593938836 +"118672",119.348588731488,-0.0880179431830966,0.194083382953459,-0.453505817157995,0.650184555494635,1 +"9051",286.739290991068,-0.78548756550017,0.280159923940031,-2.80371137475146,0.00505181060915375,1 +"9050",495.812690432798,0.0674403715496446,0.282321941676603,0.23887754224536,0.811200540190147,1 +"5724",842.615415912553,-0.41644136594849,0.329346917510137,-1.26444591950879,0.206070019998891,1 +"375743",1589.09471868958,-0.273894223010902,0.165982224262812,-1.6501419006003,0.0989139165564114,1 +"5725",12590.2425656463,0.698167842827895,0.141885724995414,4.92063484787113,8.62639410553926e-07,0.0105794097310333 +"58155",1189.18959099602,-0.851819570796521,0.287978614268742,-2.95792648686615,0.00309715976455063,1 +"9991",7970.08633864091,0.739417103845358,0.302547958542539,2.44396659427928,0.0145267715583527,1 +"79810",209.725561589516,0.0836137432102494,0.161912410052049,0.516413431085181,0.605565687072717,1 +"55037",2836.42175708911,0.511320021757757,0.0989156966913849,5.16925057256651,2.3503459336304e-07,0.00288246425300432 +"5727",1067.83067416757,-1.2205582552057,0.307588194081882,-3.96815703167325,7.24306026182141e-05,0.888288910509777 +"8643",145.823564028631,-1.73669744418268,0.375764139303528,-4.62177537058651,3.80469865831351e-06,0.0466608243455569 +"9791",4238.59408661844,0.839956719930176,0.148322123649,5.66305753494946,1.48699273276161e-08,0.000182364788745884 +"81490",1216.12734321606,-0.0449476179638475,0.165212217282462,-0.272059891835971,0.785575968380672,1 +"5728",2811.96712979605,-0.595420460810925,0.182918254969563,-3.25511776235785,0.00113345356649275,1 +"11191",1267.53647744091,-0.165086389729403,0.153251618138166,-1.07722444783955,0.281380005712171,1 +"9317",849.131324601166,-0.00713490845819871,0.231954230508694,-0.0307599841682184,0.975460953314713,1 +"5730",5186.82406013362,-3.00425509703651,0.371984463523278,-8.07629186601367,6.67659684119389e-16,8.18817836604018e-12 +"5733",520.57820462445,-2.28485637945944,0.405689950583703,-5.63202607353723,1.78104748172596e-08,0.000218427663158872 +"5734",1409.07363343223,-1.70846522908263,0.330186984633845,-5.17423553498694,2.28845995023945e-07,0.00280656728297366 +"9536",3667.94376441373,0.25085497877476,0.353967296000547,0.7086953557833,0.4785135474852,1 +"80142",2340.58290613027,0.185354458925607,0.151840488851154,1.22071827039036,0.222192707708863,1 +"10728",11590.3499361954,0.395570177949384,0.101126366126348,3.91164236491158,9.16705926241314e-05,1 +"5737",684.130463228071,-3.65221892959046,0.376648861374619,-9.69661481588264,3.11667848973893e-22,3.82229449981582e-18 +"5738",7585.94122453511,0.27837465165373,0.181620311014881,1.53272863645147,0.125342730335785,1 +"5740",9113.8576432585,-3.04894068977023,0.423239344329572,-7.20382150340931,5.85480005069623e-13,7.18032678217385e-09 +"22949",5291.79008428712,-0.435337290355209,0.415565177489873,-1.04757884908636,0.294832686512594,1 +"145482",458.508386886539,-0.232805528965777,0.194317108770429,-1.1980701567602,0.230889705786009,1 +"5742",18209.5643317979,-4.51960574692606,0.424465213352405,-10.6477647749516,1.78602048918683e-26,2.19037552793872e-22 +"5743",12827.8329793486,-1.92454107022894,0.434398031398084,-4.43036324090815,9.40744921251238e-06,0.115372957142252 +"5745",175.937452395072,-3.05325701559042,0.312090639209283,-9.78323804688982,1.32889609490451e-22,1.62975817079089e-18 +"5744",1543.13445769424,0.30693668836249,0.525904004172372,0.583636340334627,0.559465005258251,1 +"5747",6371.62299303009,0.411011108703596,0.18499578398025,2.22173230038299,0.0263014023000928,1 +"2185",1845.6460361572,-0.630701414545561,0.219009179115692,-2.87979443186895,0.00397934540139091,1 +"5753",2698.14310321195,1.15857335662396,0.570178378377504,2.03194894888998,0.0421588244119597,1 +"5754",4996.28080311215,1.14857262937582,0.291763602589485,3.93665494661399,8.26252783297102e-05,1 +"5757",19936.4297964632,0.118586800710618,0.126941476918196,0.934184819568769,0.350208564918027,1 +"5763",14544.0011495058,-0.208358198180975,0.30758281276582,-0.677405204495641,0.498148897115007,1 +"5764",2505.35443456981,-1.2313991897271,0.527323768803255,-2.33518620357607,0.0195336955482171,1 +"53635",6109.09774861846,0.38489480820513,0.132421390717998,2.90659089228865,0.00365390727969733,1 +"7803",6522.45128449328,-1.01473323909304,0.15950459935614,-6.36178043259654,1.99428391594611e-10,2.44578979451631e-06 +"8073",9300.19058590593,-0.365933879648047,0.116549824970498,-3.13972054218594,0.00169109070662474,1 +"11156",1183.62387721934,-0.734133682665621,0.225023533901543,-3.26247512843183,0.00110443863765264,1 +"138639",355.262636967184,0.258095489240562,0.140908341624001,1.8316551473529,0.0670028150375887,1 +"114971",1166.34131654453,0.538830138766295,0.124730181891477,4.31996595046347,1.56053277327682e-05,0.191383739314669 +"5770",3427.54069871429,-0.213557469074708,0.152749370154042,-1.39809066878209,0.162085841623079,1 +"5781",6339.34639562658,-0.214899854117843,0.175751462295973,-1.22274859799427,0.22142466535483,1 +"5782",3673.84655781992,0.0885649478860557,0.160880785159501,0.550500470259703,0.581976154429837,1 +"5783",5391.60264034765,-0.38750473923408,0.276566448732914,-1.40112707455813,0.161176076642274,1 +"5784",2533.0413240981,-0.651874089618529,0.201871736174372,-3.22914986501853,0.00124158812580973,1 +"26469",2693.77451834257,0.118555965326906,0.108751105916751,1.09015870990462,0.275643238154839,1 +"5771",999.984890989179,0.342935912749716,0.164216589716636,2.08831466626769,0.0367694593355232,1 +"11099",1347.67657616909,-0.896919017175244,0.242095369601614,-3.70481690191428,0.000211543484226173,1 +"26191",229.688684196437,-0.496114456110642,0.430212674207628,-1.15318419436246,0.24883478955261,1 +"25930",3140.57488946237,0.165242099446788,0.110887971254251,1.49017154500834,0.136179136191913,1 +"5774",1549.3417345104,1.09643904691685,0.431583519801433,2.54050258318787,0.011069327596399,1 +"5775",472.054038492791,0.363605168362277,0.151100011339509,2.40638743266065,0.0161111683359731,1 +"5777",2902.22185062236,0.900608333329777,0.253456038529568,3.55331180331974,0.000380413279627832,1 +"5778",377.003423427216,-0.637728752660997,0.365470475057186,-1.744952865375,0.0809930739751438,1 +"5780",2138.99954783071,0.349887478904035,0.11475185801747,3.04907898616133,0.00229544121418135,1 +"5786",4253.51393846649,0.0927901888028357,0.0949983909355398,0.976755373317823,0.328690274202478,1 +"5787",1195.50793560509,-0.397345001912807,0.210545379418858,-1.88721786728139,0.0591310280778161,1 +"5788",1502.86356889326,-1.16603818115229,0.362797369320924,-3.21402049671654,0.00130890329501601,1 +"5790",1193.8163758025,-1.08875314830058,0.358369933060581,-3.03807057417544,0.00238098185855694,1 +"5789",439.798634968666,-2.40696631104702,0.448237977312751,-5.36984020291434,7.88064399828375e-08,0.000966482179949519 +"5791",972.996569243561,-0.539458921288278,0.276443179345308,-1.95142785785441,0.0510061702687007,1 +"5792",23909.2138711411,0.63958049752352,0.213877148997105,2.9904106190053,0.00278602651508904,1 +"5793",880.346398392656,-0.0600732784496045,0.244616733432773,-0.245581230713778,0.806006420070953,1 +"5794",359.141149447604,-0.796175910853386,0.437397229096074,-1.82025824100158,0.0687196875019741,1 +"5795",782.454184882798,0.0520414845870398,0.180828385609754,0.287794885805985,0.773503752364331,1 +"5796",4686.72875703342,0.0888922988307082,0.216429186634368,0.410722325454568,0.6812761545825,1 +"5797",3128.7857392451,-0.701072059368183,0.293326106127039,-2.39007727141938,0.0168448283222518,1 +"5799",545.71737498433,-2.54904265083436,0.325397908486841,-7.83361719406209,4.74030582436632e-15,5.81351106300285e-11 +"5800",164.570430182284,0.0696907708951356,0.398533773379651,0.174867917226044,0.861183420146792,1 +"374462",308.838751222939,-1.85686657354455,0.513046552195118,-3.61929451742688,0.000295407276223575,1 +"5801",292.948328097171,1.51792265672324,0.579184471517436,2.62079308298159,0.00877254887736137,1 +"5802",4764.12361778475,-0.678972889168349,0.257561030252469,-2.63616312026241,0.00838494127047638,1 +"10076",4372.96885111593,0.89088152749118,0.381074804063683,2.33781272860617,0.0193969650226987,1 +"5803",767.435064130841,-3.27867323178399,0.817455534980797,-4.01082761261261,6.05062780037262e-05,0.742048993437698 +"138428",309.916581208517,0.289952229625896,0.189850862399674,1.52726316836786,0.126695584227134,1 +"51651",906.660263556306,0.578319050103613,0.162336812587499,3.56246399621713,0.000367390306346439,1 +"391356",999.953840825793,0.48633270993417,0.182123157684152,2.67035074571678,0.00757720500646768,1 +"5805",710.380311329091,-0.0546727641154535,0.164390943876705,-0.332577712775095,0.739453069189516,1 +"9232",563.402263914245,2.25859202712113,0.358744977399751,6.29581504803723,3.05788804535308e-10,3.75019389882102e-06 +"754",12142.0843394435,-0.17825877282512,0.144505563082909,-1.23357723413627,0.217360480574909,1 +"26255",598.412770493353,2.2499884007506,0.366778814716233,6.1344557277425,8.54512358260498e-10,1.04797395617067e-05 +"5806",788.851517370701,-3.12330605558035,0.422046271326849,-7.40038774838872,1.35787412139233e-13,1.66529682247555e-09 +"22827",7682.78290971276,0.321568116192814,0.102596718491652,3.13429241130143,0.00172269094983362,1 +"9698",4727.26349094712,0.29423832437664,0.103441235432574,2.84449739164642,0.00444815500346311,1 +"23369",7451.06703259091,0.0765336089447562,0.08598110236285,0.890121280624848,0.373400767374921,1 +"5813",1434.36294133312,-0.577576597532979,0.116746309345515,-4.94727928249638,7.5257962310491e-07,0.00922963649775862 +"5814",4344.61905239943,-0.115438392151149,0.106973493674649,-1.07913080320855,0.280529421271699,1 +"80324",1322.32125906929,0.773573406634845,0.148521074666531,5.20850935378511,1.90363756544178e-07,0.0023346211102578 +"150962",401.489642845828,0.825338079885485,0.195715890448487,4.21702130570086,2.47550593921332e-05,0.303596048385121 +"83480",513.811418188973,-0.20317489538462,0.138598640074703,-1.46592271955274,0.142669341652798,1 +"54517",869.371403159494,0.982705477770701,0.182624832010104,5.38100688145373,7.40703626924723e-08,0.000908398928060481 +"83448",329.795584996544,0.496464773152436,0.173918247468585,2.85458702797768,0.00430928232724822,1 +"126789",752.063537952233,0.706773449407272,0.199810435865093,3.53721989718529,0.000404362845362189,1 +"5817",1899.22194202813,0.382281146782018,0.180432262372418,2.11869618967022,0.0341161505754233,1 +"79037",166.087589004549,-0.730553564894952,0.335743570683212,-2.17592719172055,0.0295607051867959,1 +"5820",448.484718863938,1.04411691360126,0.276719842317126,3.77319134348407,0.000161172581824642,1 +"11137",2336.05410639054,0.29562252812189,0.0924487459435765,3.1976910568621,0.00138532608684066,1 +"5822",2194.62071428953,0.5600694796358,0.167284506469684,3.34800569075594,0.000813953399778144,1 +"114825",718.055118108349,0.0483463763353356,0.115064255533317,0.420168505946984,0.674362360187854,1 +"170394",1673.1012471647,-0.032049970188042,0.270918570040667,-0.118301119717379,0.905829070224725,1 +"221749",2196.10531182935,-1.26948728870226,0.173216219683934,-7.32891695141879,2.32020102571073e-13,2.84549453793164e-09 +"7837",4964.69153710793,-0.398854058980422,0.309757803957191,-1.28763199469074,0.197874096465105,1 +"54899",526.978496094462,-0.897706586815827,0.172069259649885,-5.21712355037978,1.81723052590676e-07,0.00222865151697205 +"5827",548.262542015114,0.501323300876038,0.182130459255604,2.75255057789359,0.0059133011451257,1 +"11264",1068.84013246052,0.0151420508929499,0.242097028457711,0.0625453810375655,0.950128523814892,1 +"5829",7312.26047536763,-0.355469439253344,0.223699311544982,-1.58905021565909,0.112049056123539,1 +"29108",1393.52660317778,0.563239307971333,0.295886357983881,1.90356632799548,0.0569666876496864,1 +"5831",1782.84326052455,2.51027775156674,0.284169297625659,8.83374021240528,1.01232604908876e-18,1.24151666660246e-14 +"29920",4155.28464848075,0.270881081931232,0.181815620852503,1.48986693586127,0.136259226868765,1 +"5834",17640.0179964318,-1.21743285464864,0.362531432365895,-3.35814427649382,0.000784676453541648,1 +"5836",7620.16163792702,0.930328461788942,0.396075044364644,2.34886917271274,0.0188305218106378,1 +"5837",1274.64356934905,-4.61718919853068,0.414378345245535,-11.1424480827897,7.79467902498105e-29,9.55939435623676e-25 +"90780",3199.86794085294,0.722602658481407,0.154502857971985,4.67695334550012,2.91168468639646e-06,0.0357089009939662 +"79912",341.095184197053,-0.270406164422774,0.148380737753306,-1.82238050920291,0.0683972698853837,1 +"84795",421.213978985272,-0.707218594206292,0.318303648654041,-2.22183627865025,0.0262943720108909,1 +"5860",1021.67684556773,-0.487876139537487,0.124371475236715,-3.92273339693783,8.75500129330489e-05,1 +"9444",4049.58576931225,-0.43550612038578,0.139169604236007,-3.12931924163009,0.00175211835926566,1 +"25797",1048.88657371322,0.0908918219996565,0.456477027098348,0.199115873535677,0.842172104558169,1 +"54814",623.132657599571,0.636773631675771,0.198017075873877,3.21575111068377,0.00130103614420043,1 +"23475",834.097065190294,-0.225048421893065,0.359124480821705,-0.626658537391091,0.530883088107622,1 +"54870",3145.46164929034,-0.0384548088090813,0.0906650169670351,-0.424141638037338,0.671462520725315,1 +"84074",138.739729374023,0.535576135038666,0.292712662148017,1.82969923852436,0.0672949248402577,1 +"55278",734.64008576998,0.247861837287625,0.169944789270328,1.45848447811692,0.144707050460942,1 +"79832",1873.64909758058,0.52932991154701,0.158831975995178,3.33264072445387,0.000860259526516827,1 +"5768",13087.6584717874,-0.831482244568648,0.213920418267577,-3.8868764903433,0.000101542385958706,1 +"169714",878.908112269826,0.486632104441682,0.188812338544806,2.57733211818782,0.00995662339879754,1 +"81890",1669.38669591901,0.330980713389913,0.105282236185789,3.14374699266303,0.00166799585778528,1 +"203069",1497.56086928468,-0.589800161845665,0.173012573111667,-3.40900173460222,0.000652010651222064,1 +"23518",1467.18179351223,0.585529877018285,0.157599476686902,3.71530343455098,0.000202959990592173,1 +"22864",2703.5245625802,0.212508839879815,0.112557611483251,1.88800061656813,0.0590258676743353,1 +"91300",4803.23362071935,0.04333945876153,0.170843968580371,0.253678599962641,0.799743868112445,1 +"10890",11227.8430937035,0.155673918179669,0.219355067680231,0.709689180313834,0.477896903127032,1 +"8766",10890.9200843068,0.0851464900741884,0.200168487382192,0.425374099528533,0.670563983951944,1 +"9230",5480.53531964227,-0.239568373974361,0.144480883333363,-1.65813198568008,0.0972908291201437,1 +"80223",8062.9079429821,0.28227308011057,0.35377471387056,0.797889360215407,0.424934698286481,1 +"22841",1009.6063319864,-0.984476204305646,0.245299756755633,-4.01335988802622,5.98605403065502e-05,0.734129666319532 +"9727",2243.05182053409,-0.666839490638945,0.220546946548051,-3.02357162987817,0.00249809882975463,1 +"84440",2050.25889920492,1.57829307392732,0.392201320328737,4.02419112868977,5.71714732823655e-05,0.701150948334931 +"26056",1614.89903938005,-0.352839472621138,0.159267251831254,-2.21539248379181,0.0267331367888774,1 +"201475",2120.95369898458,-0.347405261232602,0.10897810992165,-3.18784443483529,0.00143337630052828,1 +"5872",4030.79077238311,-0.144382768002134,0.164128589051096,-0.879692982416276,0.379025652024906,1 +"51552",5868.05921841305,-0.145619682308392,0.147605835315548,-0.986544210783335,0.323866131467981,1 +"376267",3660.56101777007,1.0589433961056,0.389813527535706,2.71653834796332,0.00659685524473525,1 +"64284",333.781027068736,0.981513894316574,0.398141140655654,2.46524107682072,0.0136921093979897,1 +"22931",4016.4402833947,-0.238029715116056,0.141990112290504,-1.67638232885584,0.0936633279947204,1 +"5861",7989.54288655765,0.0897951933108659,0.125582870279499,0.715027400719674,0.47459211212107,1 +"81876",9073.25775201495,-0.00471255172904103,0.11327067086411,-0.0416043419985976,0.966814111826321,1 +"55647",1342.54425197468,-0.528151166951899,0.314211968239307,-1.68087539730395,0.0927871196581839,1 +"23011",2793.39327762099,-0.355257236515568,0.142276745803747,-2.49694519303668,0.0125268316043143,1 +"57403",2678.43479845998,0.302573936955323,0.138141468041764,2.19031939680738,0.0285010810708406,1 +"51715",3856.09471985668,-1.82761291656582,0.307210867880884,-5.94905033527149,2.69702697448617e-09,3.30763388150984e-05 +"53917",1093.96009441623,-0.210124040299137,0.149131301991604,-1.40898682900902,0.158839062746296,1 +"57111",6614.5810124058,1.64574663780838,0.664268010031941,2.47753408707616,0.0132293771326928,1 +"5873",1509.37976878277,-1.01372567565535,0.176145300858112,-5.75505375798769,8.6614227498058e-09,0.000106223688603618 +"5874",1908.99040542713,1.04595585890263,0.40685258511763,2.57084727285244,0.0101450055976506,1 +"9364",644.488939720742,-0.173156592518409,0.104976237804589,-1.64948369402165,0.099048581039804,1 +"5862",6640.8598268467,-0.0768926608177714,0.123841758216737,-0.620894453736682,0.534669070623678,1 +"84932",983.838084900841,0.0200264204151969,0.137620903271485,0.145518739807214,0.884301321003508,1 +"27314",211.26991661018,-1.17203083575517,0.243214504496544,-4.81891833787331,1.44338613109287e-06,0.017701687511723 +"11031",4774.49171358341,-0.486283762071402,0.196051681767656,-2.4803855681672,0.0131240381774167,1 +"10981",983.282921106007,-0.745891808506096,0.275174007405689,-2.71061869374322,0.00671578072273413,1 +"83452",613.963217765487,-0.625012279014281,0.221248637279453,-2.82493165471951,0.00472907020538974,1 +"83871",3313.50299944638,-0.577007505512333,0.284869989424303,-2.02551173143374,0.0428148450730887,1 +"11021",2788.86739215396,-0.176045170444932,0.0858818949964311,-2.0498519560176,0.0403788797332776,1 +"9609",377.759547217551,0.113100894374659,0.278404356400916,0.406246855605192,0.684561229514989,1 +"326624",291.436729176732,-2.31746027716665,0.348968826040404,-6.64088051492122,3.1181473999582e-11,3.82409597130874e-07 +"23682",1002.77543005696,0.665829495814401,0.439655532482422,1.51443447567903,0.1299156808287,1 +"5864",193.195698704143,-0.417330220991559,0.269711113549599,-1.54732304315971,0.12178536790472,1 +"5865",244.804949181501,1.95291802344202,0.495966096489292,3.93760387507491,8.22993088085378e-05,1 +"9545",2240.20240681721,0.00366820590933149,0.21995347933186,0.0166771897424591,0.986694144579722,1 +"22930",4062.88053843161,-0.246344517424839,0.145642470880314,-1.69143324701817,0.0907540869145687,1 +"25782",2008.08221876635,0.267782371688271,0.115798291962883,2.31248982302868,0.0207507055055618,1 +"5866",648.22440822546,-1.13259453570973,0.308317125505316,-3.67347267477753,0.000239276275465284,1 +"117177",1048.77281826303,1.36906862729144,0.199373443442523,6.86685550318104,6.56324880195607e-12,8.04916833071892e-08 +"10966",953.548607856877,-0.411446143075431,0.214607072262614,-1.91720682239189,0.0552116616828641,1 +"57799",1687.45340386623,0.441836372097141,0.147554639883348,2.99439158569627,0.00274992764096095,1 +"5867",1824.55443348857,-0.271606462454817,0.0935772598544241,-2.90248360421483,0.00370216538575262,1 +"5868",2725.32610945502,-0.0407915510890764,0.127462155943769,-0.320028723718372,0.748946556321258,1 +"5869",10202.6054577655,-0.306430817197348,0.133881505221859,-2.28882112349687,0.0220897476311966,1 +"5878",6285.58550525651,0.0666250535576497,0.10322012931447,0.645465705188859,0.518625435752691,1 +"5870",6692.27621019039,0.148630983452937,0.11380172816875,1.30605207710502,0.191534848411207,1 +"51560",406.757768679171,0.115473702466197,0.31609117332823,0.365317706439998,0.714874262623149,1 +"84084",844.503363886328,0.124462180302985,0.110423791697912,1.12713191957289,0.25968670952589,1 +"7879",12807.3118874217,0.146713140144009,0.138586759052187,1.058637500057,0.289764901686481,1 +"4218",3428.99646293657,0.27420203970509,0.114083499585063,2.40352058538176,0.0162380527553797,1 +"51762",1745.02829520576,-0.534341191202328,0.180542022258036,-2.95964997245147,0.00307988753928409,1 +"9367",1067.40778517723,0.00758227498936134,0.183635033934831,0.0412899152568684,0.967064772674845,1 +"51209",624.898901360404,-3.43819020474121,0.477679453445505,-7.19769330655007,6.12396957400747e-13,7.51043628556276e-09 +"10567",4030.59056568409,-0.128981964289982,0.186483069151585,-0.691655091675575,0.489153955479857,1 +"9135",2522.32604043006,-0.697835854810118,0.143171671419268,-4.87411963478833,1.09294745028212e-06,0.0134039075302599 +"79874",1574.94780876922,0.355479262474709,0.158496837930008,2.24281611619084,0.0249086747778445,1 +"10244",990.582864828293,0.116200325802951,0.117212447132352,0.991365069545401,0.321507350221824,1 +"23637",4171.10101661316,-0.668511608053778,0.168909339983478,-3.95781315656771,7.56390868465604e-05,0.927637761086217 +"9910",3650.35544880108,0.607326735862107,0.277753214600341,2.18656960185318,0.0287739584797351,1 +"27342",1385.63540457633,-0.494756202713206,0.169694953418457,-2.91556226479623,0.00355048253498136,1 +"5875",1436.54140719054,0.151901523012675,0.214421318494093,0.708425468509836,0.478681081111164,1 +"5876",1894.4913542035,0.20145308905309,0.163344853770832,1.23329927085259,0.217464129836994,1 +"5877",718.222568729501,0.564179737790407,0.163713840189219,3.44613343098135,0.000568669498157822,1 +"11159",323.305030942214,-0.101854583344194,0.157848247339422,-0.645269016672547,0.518752867444829,1 +"11158",594.95335122443,0.146689268894815,0.138615233176578,1.0582478240898,0.289942473259177,1 +"285282",1115.29491177505,-0.177546205017379,0.135736309476636,-1.30802292844082,0.190865532526122,1 +"5879",14635.2616646652,0.105307877812165,0.11519563218243,0.914165544448717,0.360629866003689,1 +"5880",1865.93497138678,-0.571931909117633,0.336279282211612,-1.70076463038758,0.0889871934030127,1 +"5881",374.236421697474,2.3601589466945,0.31896070000049,7.39952899116059,1.36668384046871e-13,1.67610106195083e-09 +"29127",1666.72533298101,1.64711060119437,0.255800718715872,6.4390382070188,1.202329351029e-10,1.47453671610197e-06 +"5810",1274.17195098109,0.393930746951424,0.146035031025358,2.69750856479785,0.0069860487624592,1 +"5884",821.518683914579,-0.0726295141569002,0.0749395185464533,-0.969175083662685,0.332457840557055,1 +"56852",674.970963973911,1.0119588236142,0.144830605283729,6.98718907948861,2.80448176402517e-12,3.43941643540047e-08 +"5885",8128.93477131461,0.42062730010631,0.157490600549395,2.67080891582723,0.00756687088772708,1 +"5886",6997.27547821919,0.173586897195935,0.144730487498129,1.19938031161664,0.23038009961928,1 +"5887",9242.04388304676,0.196227333423349,0.135182240017246,1.45157628249328,0.146619457432447,1 +"10111",2893.74951553482,-0.0135296712741703,0.142538977920101,-0.0949190984220064,0.924379086662363,1 +"5888",458.349652379435,2.5125645242001,0.323370553118835,7.7699236988866,7.85334186859448e-15,9.63133846764427e-11 +"10635",390.202639198552,2.51568731761125,0.323245104466312,7.78259989974087,7.10490588279196e-15,8.71345657465606e-11 +"5890",293.884329752456,0.426670955310824,0.212800811363001,2.00502503997974,0.0449603701754729,1 +"5889",679.930170779811,0.0802541417258924,0.132080160451696,0.60761693089586,0.543441568963093,1 +"5892",369.623543841703,0.634199978922008,0.206592010327538,3.06981851774677,0.00214188878989367,1 +"5893",346.199915065806,0.306865116651289,0.18522536529194,1.65671216880922,0.0975776815784817,1 +"25788",287.422721577493,1.28490794839732,0.230312084108711,5.57898624108157,2.41924373969071e-08,0.000296696052235669 +"8438",553.344914800652,2.54109408552664,0.295641202987329,8.59519600059112,8.31227967560081e-18,1.01941797941568e-13 +"23132",431.976546245803,-0.0662635827603376,0.236586280645343,-0.28008210188515,0.779414516013007,1 +"5883",787.582561833937,0.859513860932249,0.183852596583968,4.67501616459194,2.93930466930538e-06,0.0360476324643611 +"55698",126.040563304507,-2.03902343829127,0.400522368487337,-5.09091026798855,3.56348644801652e-07,0.00437025977984745 +"8480",1826.6784696684,0.804909264044298,0.105106927588451,7.65800392525922,1.88845116731688e-14,2.31599651159742e-10 +"135250",386.685798055995,-0.921532070355414,0.631559737736017,-1.45913682474262,0.144527452560761,1 +"353091",253.756874693929,0.608889035635232,0.463339528775018,1.31413142592219,0.188801980227779,1 +"5894",5560.19218221727,0.0312862919986653,0.157620742872713,0.198490956383391,0.842660959751487,1 +"10743",3511.43384601788,0.0229552238036443,0.159378908383156,0.144029244750872,0.885477376426302,1 +"26064",5509.44670832931,0.887401315947687,0.191266342666444,4.63961041747557,3.49066591946127e-06,0.042809526836273 +"10742",1006.62267528078,-3.06711847972837,0.311101500623651,-9.8588996632284,6.27330759467584e-23,7.69358443411045e-19 +"5898",2513.37527316021,0.443964090900254,0.154966673790356,2.86490043337229,0.00417140378347704,1 +"5899",3233.29025811434,-0.201205471693587,0.126814105267676,-1.58661744503017,0.112599313953116,1 +"10928",9218.55466056066,0.365350633852125,0.25544293662823,1.43026320741002,0.152641490367092,1 +"253959",430.894058285726,-0.495187271675188,0.159241127871516,-3.10966945721917,0.00187296813570982,1 +"57186",3704.28406513723,0.346792293092789,0.261956654724566,1.32385372479818,0.1855516293457,1 +"57148",4056.34524846674,0.300569413644998,0.124245785390669,2.41915178611419,0.0155567472601431,1 +"5900",6190.10338247713,-0.817741396240748,0.26033157897768,-3.14115329170596,0.00168283926432616,1 +"9649",710.4489470383,-0.10896209792545,0.194236932586196,-0.560975178482577,0.57481445836329,1 +"55103",1301.79469882268,0.385855532274035,0.312022135281741,1.2366287152212,0.216224954271875,1 +"22913",9063.59684875082,0.403649208110917,0.115190483773809,3.50418884344243,0.000458000449462487,1 +"10267",1964.60266587308,-3.20024716344866,0.366369527809205,-8.7350254880238,2.4360119634496e-18,2.98752507197459e-14 +"10266",765.137248168641,-1.1772570509625,0.218388894991885,-5.39064521117818,7.02051591708634e-08,0.000860996072071469 +"10268",839.603622350966,-1.44991896097101,0.22094099558511,-6.56247138350783,5.29231994210671e-11,6.49050117699967e-07 +"5901",7526.66011258585,0.622360899682826,0.115078539002649,5.40814043240939,6.36824841142571e-08,0.000781001985177249 +"5902",1508.98060930332,0.973786187196129,0.13919828788556,6.99567646979044,2.63982074715734e-12,3.23747616431376e-08 +"57610",1312.74268952203,-0.0960788313126507,0.127079736172805,-0.756051548470331,0.449618289910189,1 +"64901",124.973188084165,0.780473644932764,0.401441253192037,1.94417897694089,0.0518738720339704,1 +"5903",5999.49553549174,-0.329762293753449,0.139483203712253,-2.3641720650017,0.0180704176416798,1 +"8498",3472.24683094833,-0.159930123966215,0.119252907363808,-1.34110041844357,0.179887851477024,1 +"26953",1137.80023885229,-0.206207954480664,0.145690119552005,-1.41538736542155,0.156954952018644,1 +"10048",3255.79277399219,0.0505307658568689,0.179153808514913,0.282052423421758,0.777903313286668,1 +"5905",7166.10518484372,0.472884916044301,0.148544161196666,3.18346350495879,0.00145524456853593,1 +"29098",312.210455572,-0.10308032413553,0.187093257594352,-0.550956915609563,0.581663209706548,1 +"5906",5239.92857018691,-1.0171958506929,0.214096626533622,-4.75110639136183,2.02306647338877e-06,0.0248108872296399 +"5908",2009.93981842422,-0.542009074121561,0.120626560716697,-4.49328133788477,7.01340308590252e-06,0.0860123754455085 +"5909",1279.68062892883,2.47769118914824,0.387155027656998,6.39973915395815,1.55642617573359e-10,1.90880106191967e-06 +"23108",847.001021558026,0.440569160004608,0.375654198627863,1.17280510004642,0.240873972479162,1 +"5910",1558.54880202323,-0.367702665504429,0.147127907786837,-2.49920406696171,0.0124472611348178,1 +"5911",1771.50614401217,0.384935757530511,0.183981665131144,2.09225064495489,0.0364161002160709,1 +"5912",4624.19523102131,-0.146741907588931,0.332924562415654,-0.440766240028048,0.659382236431972,1 +"57826",1597.61309420885,0.0453078913738734,0.166624193097676,0.271916643865238,0.785686113308818,1 +"2889",3826.9722422979,-0.497134704809959,0.180739631502028,-2.75055725564196,0.00594939935426082,1 +"9693",1276.35171025636,-0.587912820556675,0.18312199292032,-3.21049815579764,0.00132505118768734,1 +"10411",839.227548745333,-1.83185753452008,0.271354262777402,-6.75079696839993,1.47035235187051e-11,1.80324012433399e-07 +"11069",360.822317841308,-0.524922510042221,0.293908830794628,-1.78600455325895,0.0740985209025686,1 +"9771",996.841344960169,-0.284470059455239,0.338161831272498,-0.841224624271705,0.400222108064611,1 +"51735",847.503551478696,-0.207114317144729,0.167613653436524,-1.2356649526953,0.216583130130886,1 +"51195",5886.25227269694,0.602347578797415,0.483045346403868,1.246979363908,0.212405064282459,1 +"65059",2428.78166851395,-0.214238318776145,0.204801990261803,-1.04607537505997,0.295526233424037,1 +"5914",2262.56497917268,-1.03760655403089,0.160756485801484,-6.45452374041202,1.08559759589147e-10,1.3313768916013e-06 +"5915",713.82459966108,-0.821094146477256,0.35244408356122,-2.32971465482022,0.0198212374731921,1 +"5916",4673.50055690143,0.271725686567986,0.299634530945013,0.906857049189204,0.364482396721863,1 +"5918",3959.71767741869,0.728988759417159,0.458695653517908,1.58926458933341,0.112000669729501,1 +"5919",3867.42469305224,-1.26442647246216,0.287466025197235,-4.39852490949012,1.08989119087928e-05,0.133664255649435 +"57038",1611.30027153061,0.0704621131862275,0.113538232735049,0.620602518542425,0.534861182164247,1 +"5921",2027.73136333347,0.0939717313845764,0.179265417233514,0.524204460820055,0.600136338594377,1 +"5922",326.152775021154,0.203786879012199,0.205969738994104,0.98940203550014,0.322466479039957,1 +"22821",1344.86532812375,-1.24716209772294,0.240688092069874,-5.18165268168262,2.19928454198453e-07,0.00269720256228983 +"10156",538.7054734046,-1.31209667559011,0.197651913651734,-6.63842131021332,3.17060532470791e-11,3.88843037022179e-07 +"8437",421.716006242164,3.21170916490991,0.624739093707652,5.14088072486279,2.7345361295403e-07,0.00335363510926822 +"9462",1721.34150685651,0.0137729697037566,0.215119611768525,0.0640247050955852,0.948950555339088,1 +"64926",530.551102325544,-0.781249324560715,0.309791558569965,-2.5218547857374,0.0116737888299856,1 +"51655",1015.08382314179,-2.50944432961587,0.295542927023946,-8.49096391811992,2.04930194341166e-17,2.51326390340006e-13 +"23551",461.764526560452,-1.59606078126127,0.411984858323705,-3.87407631376397,0.000107029872407416,1 +"158158",456.336109414052,0.742491902169676,0.572405900027061,1.29714229384179,0.194582231573706,1 +"221002",310.768848819919,0.514547732894262,0.420780116418226,1.22284231791703,0.221389258513086,1 +"153020",270.152528452749,-1.0097345281941,0.303893379752704,-3.32266049696699,0.000891633614310536,1 +"5924",303.203700067259,-0.237966728603554,0.265355089284387,-0.89678599813294,0.369833120857898,1 +"10125",233.291806381346,0.381165671011655,0.431038804450935,0.884295490512024,0.376536721953661,1 +"10235",727.630628955293,-3.11487325851335,0.344590980379825,-9.03933485165509,1.57628008971495e-19,1.93314990202642e-15 +"25780",389.822994218022,-0.164566032232587,0.246408922417899,-0.667857440460254,0.504224596539403,1 +"54922",1130.28990112356,-1.54382540442709,0.298981923470213,-5.16360784126434,2.42234918168497e-07,0.00297076903641845 +"387496",811.101138933097,-3.03629276672913,0.311298428030175,-9.75363989449642,1.77970194714014e-22,2.18262646797266e-18 +"65997",213.950508079986,0.949171811262352,0.416478760440836,2.27904013702324,0.0226646794838403,1 +"51285",1975.30886187137,-2.85067784835508,0.354717616241734,-8.03647103450423,9.24627940587799e-16,1.13396370633688e-11 +"11186",1145.52585445568,-0.695094954377224,0.182823728704959,-3.80199528420607,0.000143535459988528,1 +"644943",330.961632040359,0.64366712348927,0.556385211570801,1.15687317006872,0.247324181820333,1 +"9770",2260.29882634825,-1.34151398630338,0.343715729727831,-3.90297525040721,9.50174220023164e-05,1 +"283349",5167.70173837543,-1.60704185470517,0.303378014574885,-5.29715990447453,1.17617691270773e-07,0.00144246336574476 +"83937",987.48191309239,-0.506804559471999,0.227209751473816,-2.23055813487126,0.0257104125593875,1 +"83593",2132.83487170782,-0.761611660333312,0.304417877018961,-2.50186246547496,0.0123541907489572,1 +"166824",749.130042343043,0.348324050372523,0.632615946738362,0.550609026168895,0.581901719991622,1 +"8045",2147.28083505533,1.80441238494796,0.41751073906575,4.32183466462595,1.54737125183582e-05,0.189769610325145 +"11228",1437.63605462418,-0.943290005157009,0.21041249288667,-4.48305132559345,7.35832220460678e-06,0.0902424635172975 +"125950",3436.03634091252,0.624930672713312,0.111913480826148,5.5840517880425,2.34978683422743e-08,0.000288177857349652 +"55225",1035.87716199853,-0.691297274906609,0.212335530658136,-3.25568345892902,0.00113119788972071,1 +"5925",2316.58969213662,-0.416770288479646,0.23072058245602,-1.80638538635404,0.0708581626413303,1 +"9821",3330.1628007643,0.102775448323643,0.14438307198393,0.711824779120106,0.476573286459062,1 +"57786",1006.002069901,0.693753157200043,0.148140817170524,4.68306554837934,2.82616087991351e-06,0.0346600370312593 +"5928",4215.08381959488,0.591661741300186,0.120771845554473,4.89900389104614,9.63237371050271e-07,0.0118131431185605 +"5929",1102.71628757441,0.331190556998336,0.116904087933048,2.83301091393837,0.00461118115907362,1 +"5930",3134.22305481847,-0.247235267414272,0.157433020358933,-1.57041557641845,0.116318461014236,1 +"5931",6265.12916276242,-0.0346849610593963,0.127009131241922,-0.273090294534255,0.78478380711472,1 +"5932",1585.88020419765,-0.133324938823182,0.269219014560244,-0.495228537408334,0.620438808652893,1 +"10741",1237.56264122009,0.28266541021845,0.125417620568141,2.25379343777993,0.0242091658403286,1 +"10616",4074.11982367493,0.20265980587502,0.138890301793272,1.45913575864112,0.144527745930318,1 +"79863",966.742018095739,-0.203300036822038,0.142056606795137,-1.43111989937379,0.152395855061739,1 +"23543",6151.3831360396,-0.585526500986873,0.196867064210674,-2.9742227494198,0.00293731762876199,1 +"146713",1723.43950691252,-6.10669057714222,0.565317795267548,-10.8022259837975,3.3595843571864e-27,4.1201942556534e-23 +"64080",126.527657964672,-0.050242671937531,0.186812865271462,-0.26894653033945,0.787970829613813,1 +"5933",394.970782281819,1.34426566628479,0.195198846802275,6.88664758171678,5.71224970523069e-12,7.00550303849492e-08 +"5934",4447.58219331887,-0.314427493067685,0.133565537964105,-2.35410643988262,0.0185672935725659,1 +"8241",3720.89912103657,0.448668189705902,0.111143168641412,4.03684900466952,5.41739111887144e-05,0.664388846818394 +"10137",3966.86873126475,-0.133416031006114,0.137277947698533,-0.971867901894195,0.331116270032753,1 +"389677",716.771493135417,0.604898419581323,0.15296210139556,3.95456400024902,7.66743459175831e-05,0.940334178333239 +"10432",2455.69339697423,0.203525139151341,0.107531165080351,1.89270839760045,0.0583966590359759,1 +"64783",617.669898757375,0.115115542419387,0.180873146098193,0.636443523555967,0.524487380468088,1 +"29890",4146.87625819191,-0.117093486313116,0.114584009009788,-1.02190076368435,0.306827870986766,1 +"84991",2968.63143191468,0.267162424693829,0.134504792129157,1.9862669609369,0.047003689154956,1 +"92400",1263.33718535462,-0.0291146201125453,0.155277421101807,-0.187500667553311,0.851268100338595,1 +"9904",1791.67374933511,0.50498015910871,0.156368749785479,3.22941866454447,0.00124042159282424,1 +"55696",2033.58260930174,-0.0675276978577216,0.130830028275485,-0.516148308976364,0.60575082964415,1 +"55147",3144.89292211819,0.0461638802466784,0.0995574395678821,0.463690914983828,0.64286920712094,1 +"221662",326.283155527391,-3.65112906752664,0.338392910078744,-10.7896145539132,3.85402549425478e-27,4.72657686615407e-23 +"58517",4535.81090114542,0.235118377040309,0.13331297388407,1.76365713096138,0.0777897227412798,1 +"64062",1802.28510272454,0.184843940893427,0.134906082892056,1.37016757829466,0.170634596510148,1 +"54439",1919.54745789235,0.0655913638221631,0.123294423115444,0.531989705331183,0.594733125606199,1 +"55131",1077.62296579968,0.778324536893726,0.129928648824033,5.99039968427469,2.09325960016924e-09,2.56717357364755e-05 +"5935",10714.7933865348,-0.350274529155936,0.134607632277073,-2.60218921639554,0.00926307291270587,1 +"155435",1972.43910583919,-0.0165695822777111,0.129006382340932,-0.128440019610207,0.89780076234409,1 +"23029",1790.85436083572,0.284738482344257,0.091744435342373,3.10360493561997,0.00191178425123236,1 +"55544",2686.89712485914,-0.807339146696471,0.259844712502387,-3.10700625354866,0.00188992400695555,1 +"9584",5437.26421322194,-0.0627593107942127,0.132483407545591,-0.473714497210646,0.63570351390602,1 +"5936",1799.65617856344,0.135814057674514,0.110688250584714,1.22699615322378,0.219824036746169,1 +"55285",850.717667501592,0.278072022776526,0.13058701891017,2.12940018921644,0.0332211648258761,1 +"79171",4613.2960556545,0.261296607374195,0.127025637816485,2.05703834175344,0.0396825378688254,1 +"375287",455.246022704045,-0.000930284301205992,0.280817774751834,-0.00331276858107757,0.997356797930255,1 +"129831",390.636502767742,0.49669716174958,0.112692207763188,4.40755551433815,1.04543810501801e-05,0.128212529199408 +"54502",3521.64398160638,0.539993108190809,0.459292681820816,1.17570588333797,0.239712426798633,1 +"84060",365.06274263072,0.12602885116279,0.120752590876298,1.04369479982336,0.296626616533593,1 +"83759",781.780161159684,0.294965504808021,0.112839499304401,2.61402706167908,0.00894819486964658,1 +"10181",3874.3181818178,-0.547423894850122,0.229103095484509,-2.38942164309228,0.0168749230967309,1 +"10180",3551.05940018667,-0.359163686877139,0.238756098688323,-1.50431209443575,0.132501026405416,1 +"10179",851.48031207915,-0.652156982326322,0.169491905100845,-3.84771757647245,0.000119223380165809,1 +"9939",2841.8026175905,0.565882575286104,0.144828817252554,3.90725123646705,9.33520728651825e-05,1 +"5937",4596.84274490504,-0.17603235634122,0.105716878158155,-1.66513010418139,0.0958868018852611,1 +"5939",1454.40934111164,-0.588475570252956,0.157088644655762,-3.74613691233073,0.000179578607533198,1 +"27303",964.766876366755,-2.35176237564354,0.30031123725891,-7.83108350226665,4.83683281281491e-15,5.9318917616362e-11 +"27316",5495.16119884245,-0.0233103744970135,0.0789997854308725,-0.295068833033867,0.767941297922077,1 +"51634",947.23114068279,0.0769230695664275,0.117512306346137,0.654595862835402,0.512727988472577,1 +"494115",1899.49570195682,-0.327397665647008,0.159060822485035,-2.05831744443426,0.0395596707062852,1 +"5947",1676.73525367039,-1.76341370673095,0.353884711392362,-4.9830174911846,6.26002893835598e-07,0.00767729948999977 +"83758",179.430715183326,-0.854565660799134,0.239445410396836,-3.56893731804194,0.000358432161228941,1 +"116362",348.444842146622,-1.8878405515619,0.379834455579874,-4.97016667084568,6.68953725584059e-07,0.00820404849056289 +"3516",3847.41659981002,-0.619726305545142,0.145945565267032,-4.24628391010888,2.17345196006072e-05,0.266552148381847 +"11030",6760.43684001778,-2.06771401472484,0.302360388026097,-6.83857441850607,7.99851111101935e-12,9.80937402655413e-08 +"348093",2463.42772034722,-3.29242783324797,0.438715323955975,-7.50470214616521,6.15684325490477e-14,7.55075256781521e-10 +"9978",2593.09066230303,0.175042105340311,0.151573944038217,1.15482978589101,0.248160137008724,1 +"149041",1966.4772371305,-0.516898396155542,0.139523552173482,-3.70473936552902,0.00021160820102003,1 +"54542",867.391499219675,0.213065073951963,0.18424427934069,1.1564270799311,0.247506510306304,1 +"1827",8024.41781597749,-2.03980377983147,0.268014634855687,-7.61079252604922,2.72420239727286e-14,3.34096182001543e-10 +"10231",2687.82854627679,-3.3981957307119,0.286060782952265,-11.879278577235,1.51670669050343e-32,1.86008908523341e-28 +"11123",740.94739776086,1.23999929213395,0.398624770551694,3.11069302195595,0.00186648864438567,1 +"55213",1032.99784210717,0.339238019696906,0.177481303565241,1.9114014427565,0.0559530114416552,1 +"1102",812.373447203683,-1.25313397009655,0.172343363349074,-7.27114723622039,3.56447163413511e-13,4.3714680121033e-09 +"1104",2844.15326832878,1.49915553279347,0.215290298066405,6.9634142655656,3.32123316213619e-12,4.07316035004382e-08 +"55920",8949.81853752806,1.48994496104471,0.169013362022238,8.81554537000851,1.19103856246759e-18,1.46068969301026e-14 +"91433",629.37331844965,0.619319281819195,0.130685995301885,4.73898737495602,2.14788884856041e-06,0.0263417088387448 +"9986",1084.6645161867,0.567595134558366,0.207896591203261,2.7301800922913,0.00632997354522063,1 +"25898",722.812262459144,-0.222365326670283,0.151015528855527,-1.47246662879957,0.140894912175114,1 +"10171",865.071071609113,0.31750502204799,0.152234551703648,2.08563048594954,0.0370121076346873,1 +"5954",6635.19995114713,0.522665961659842,0.20972628534026,2.49213378672048,0.0126978198380435,1 +"5955",3303.08371398062,0.745419257040793,0.109147186311711,6.82948669800762,8.52189975908323e-12,1.04512578645397e-07 +"57333",1657.77439743248,0.0186911577392042,0.283942919981062,0.0658271660390433,0.947515427766585,1 +"23186",2590.02328446029,0.185269911657042,0.207163259960532,0.894318382962014,0.371151567029518,1 +"283248",349.416827608419,0.673059202257748,0.414362191778919,1.62432580870423,0.104306291885412,1 +"55758",1572.87549038397,-0.252905122266129,0.1949305200945,-1.29741162206679,0.194489595771512,1 +"92241",893.177935653155,-2.14743537271085,0.272996450299845,-7.86616591663449,3.65675489083572e-15,4.48464419812093e-11 +"157506",3245.51430792115,-0.282020289935129,0.295693156928396,-0.953759947861836,0.340205167536553,1 +"51109",4326.34061390611,0.182796214819608,0.168210666940816,1.08671000563789,0.27716499068176,1 +"112724",980.486381256334,0.241184533765023,0.292150523997172,0.825548865924189,0.409060051893604,1 +"5962",3864.3164416299,0.00441656555872651,0.217292524233945,0.020325437215555,0.983783764012913,1 +"9985",421.513220401271,-0.187893096500877,0.180224519008639,-1.04255013432368,0.297156694522608,1 +"8434",696.465545545918,-2.12686311241228,0.273731362139993,-7.76989196920937,7.85530933834008e-15,9.63375137254028e-11 +"5965",1124.61162213816,0.501183559702685,0.146824189562273,3.41349447387971,0.00064135459214847,1 +"9401",1297.01359267848,2.3015483494051,0.241845495344424,9.5166062370827,1.78927025414452e-21,2.19436103968284e-17 +"9400",1814.07880999208,0.497161290982031,0.185319338601221,2.68272752716783,0.00730244592479723,1 +"65055",1218.57221559285,-4.21794651254586,0.530909727725963,-7.94475273717911,1.94578520247629e-15,2.38631097231692e-11 +"51308",482.335866397752,-2.37390978938532,0.425370278613903,-5.5808078484488,2.39404012755763e-08,0.000293605081243667 +"221035",3452.19909174765,-0.367419946215909,0.175541417048583,-2.09306699463535,0.0363431745195932,1 +"80346",2604.12002123764,0.895950402957784,0.329375009891451,2.72015294436895,0.0065251727849952,1 +"7905",7356.7441443087,-0.107526440091841,0.174648814589815,-0.615672315580159,0.538110812491417,1 +"92840",1501.66044554635,1.09085877623315,0.435821600760012,2.50299382667322,0.0123147692075998,1 +"5966",609.996867025424,0.501504628761837,0.322849950901015,1.55336752371258,0.120335356987635,1 +"5970",5213.19550831235,-0.331242035602813,0.110740851792296,-2.99114581693924,0.00277932742698964,1 +"5971",1335.04539121018,-0.269536307982911,0.278390673289754,-0.968194461394088,0.332947260494504,1 +"768211",1200.04966687689,-0.958140428980153,0.187049049285685,-5.12240202577431,3.01667849059477e-07,0.00369965450086543 +"285613",115.518227856131,1.67352920683187,0.26865366041992,6.22931846235056,4.68468646135891e-10,5.74529947621057e-06 +"5649",979.676567584455,-4.5508196797521,0.493808881646815,-9.21575096943469,3.09106922234675e-20,3.79088729428606e-16 +"84957",606.060669120323,0.690522339472317,0.302879008354984,2.27986199249241,0.0226158748756534,1 +"5973",387.310409926956,-0.448246355428877,0.28050062096199,-1.59802268491099,0.110037928605922,1 +"29803",3681.34103845467,0.139343259268539,0.150303617605498,0.927078546001957,0.353885754264864,1 +"85021",2047.40511861493,0.0608585392975145,0.124178131737894,0.490090633880452,0.6240697654828,1 +"9185",676.491128911208,0.329659563864045,0.347001728135059,0.950022830248662,0.342100652279895,1 +"11079",5704.15700948583,0.34028733807834,0.103569005930128,3.28560977313918,0.00101761881759191,1 +"473",7796.7826944025,-0.56929444134822,0.229907477952914,-2.47618931936096,0.0132793142050783,1 +"85004",788.060282549009,-2.66137849184293,0.34467781341436,-7.72135132656048,1.15102806805066e-14,1.41162082265734e-10 +"5978",2023.52470515764,0.0755744051521466,0.108355257944337,0.69746873927401,0.48550949630853,1 +"54884",3503.2035289041,-0.162710072392891,0.209011410723297,-0.778474590596862,0.436289280506849,1 +"51455",2275.7042055347,-0.239518760494407,0.112325070294895,-2.13237133852293,0.0329763316633778,1 +"5980",1912.00262292979,-1.03957534733682,0.215278518199454,-4.82897855313952,1.37235186527042e-06,0.0168305232756764 +"57455",1926.94874807527,-0.0311400940496826,0.110176326639406,-0.282638702882157,0.777453808862431,1 +"25996",2516.13334529047,-0.408875601275893,0.196266798799049,-2.08326422898723,0.0372271454030604,1 +"57109",1448.36756077859,0.460989132614284,0.164951970106222,2.79468703718681,0.00519499798957193,1 +"5981",2573.62740887922,-0.0249349770808433,0.150593566618917,-0.165577970166164,0.868489085219196,1 +"5982",1496.46378764101,0.985712553555954,0.152865844363238,6.44821972927918,1.13171610301313e-10,1.38793662873531e-06 +"5983",632.422537358569,1.13844207762639,0.202224751358475,5.62958821795418,1.80640362990193e-08,0.000221537341171173 +"5984",996.4503897761,1.37916048645251,0.207653682784029,6.6416374993306,3.10217164147354e-11,3.80450330110315e-07 +"5985",909.136823058743,1.22000220185608,0.146831522964844,8.30885750703676,9.66278687295556e-17,1.18504418209927e-12 +"117584",328.75428866425,-0.0975231139155314,0.202994103160148,-0.480423383720622,0.630926370260587,1 +"55312",887.000076799178,-0.136800913420325,0.164628213622467,-0.830968826121401,0.405991240320962,1 +"5986",1975.19309508822,0.301421080403325,0.132024962534729,2.28306128338446,0.0224267587389932,1 +"91869",1176.45122233529,0.586790165016199,0.128505882830216,4.5662513815922,4.96523292630699e-06,0.0608936166082289 +"23180",1429.40106687107,-0.729712556481752,0.213321614370864,-3.42071551743055,0.000624566273507716,1 +"130132",158.846481548971,-0.93549463238794,0.197978166663756,-4.72524141501307,2.29842138636335e-06,0.0281878398823601 +"55159",1957.0218378467,1.23527308808695,0.182019398205482,6.78649144138172,1.14893316736016e-11,1.40905163645049e-07 +"5989",936.729324319068,0.0890916279596203,0.116583126374845,0.764189730794897,0.44475418534484,1 +"5990",1088.76392809678,-1.38573803764274,0.272326382215504,-5.08851924800345,3.60870159400424e-07,0.0044257116348868 +"5991",127.066495249772,-0.00604481653218528,0.223800497611305,-0.0270098440204716,0.978451882503927,1 +"5993",2139.59430142517,-0.0706555405165219,0.133825620137508,-0.527967219161189,0.597522088318588,1 +"64864",1347.60099751007,0.580771151887886,0.1729896854174,3.35725884746578,0.000787193790042122,1 +"8625",2019.94076230751,0.61123813639195,0.148815150123009,4.10736498190343,4.00198575982762e-05,0.490803533585259 +"5994",235.836292427566,-0.259632403763455,0.204804942826044,-1.26770575055886,0.204903050433978,1 +"23179",1318.7640118276,-1.38261278747344,0.178915809894734,-7.72772841196598,1.09482606357748e-14,1.34269468437142e-10 +"5863",3960.5438954101,-0.158282804232537,0.147607228705109,-1.07232420540024,0.283574438401634,1 +"57139",684.338257185411,1.56479653027828,0.494810146613314,3.162418032428,0.00156464776962477,1 +"266747",223.13822051033,-0.125300144918249,0.253084858696986,-0.495091431243102,0.62053558208512,1 +"56963",668.416015451196,-2.24659306857561,0.462289863560554,-4.85970652973518,1.17559886635516e-06,0.0144175444969796 +"285704",1313.64661883102,-0.607854842133227,0.170755890567805,-3.55978842142406,0.000371153702214961,1 +"9104",201.421431388194,-3.3629532650768,0.371358405497098,-9.05581566297164,1.35550862340891e-19,1.66239577574868e-15 +"9827",331.98873604503,-0.269524196660067,0.194615368408935,-1.38490705468712,0.166080889600965,1 +"5996",3513.08963674902,-1.39615251634885,0.257340908786574,-5.42530343477863,5.78561686064254e-08,0.000709548051789201 +"6001",1021.5616370678,-0.486169879604984,0.182285975248096,-2.66707232382137,0.00765152040789272,1 +"8786",187.012690924655,-2.08515047199553,0.367255167803381,-5.67766135046427,1.36548706202436e-08,0.000167463333286668 +"6002",2648.79255160803,-0.32201343910016,0.203269062339229,-1.58417338769814,0.113154267543448,1 +"10636",865.826318487823,-0.101189873168139,0.233711202408841,-0.432969717006218,0.665036770145463,1 +"6004",2635.88296843298,0.198784416114108,0.340609162185948,0.58361441259641,0.559479761287737,1 +"10287",723.666118178792,1.05987996910929,0.222974374076309,4.75337120465049,2.00052562056475e-06,0.0245344462106062 +"5997",8518.42507287969,-2.89650328418458,0.25957415707709,-11.1586735628861,6.4953433485253e-29,7.96588908263143e-25 +"5998",1948.62732879755,-0.522086819665106,0.211049403057082,-2.47376591500663,0.0133697266015753,1 +"5999",347.059864057713,0.0722729386185354,0.357432659894805,0.202200153281477,0.839760253303424,1 +"8490",14378.9819113506,-2.69463751685293,0.304725635544946,-8.84283172314685,9.33227260619142e-19,1.14450991242332e-14 +"8787",149.228336160702,-1.95952209641082,0.367702005344889,-5.32910364351392,9.86986638291523e-08,0.00121044041320072 +"84236",1320.95435247772,-0.626064450439157,0.192233555542814,-3.25679067148983,0.00112679496004424,1 +"57414",4185.19542597489,0.417879208700506,0.125069303214248,3.3411812328135,0.000834227493435203,1 +"25807",954.006959772429,0.823352799776617,0.166439374702922,4.94686309201908,7.54189810333775e-07,0.00924938383393341 +"64285",1348.93574173325,-0.327491017769282,0.192056491457438,-1.70518067514452,0.0881607330169539,1 +"79651",1560.29416066528,1.3048665038758,0.289380473089254,4.50917261260176,6.50809418853843e-06,0.0798152671282353 +"54933",796.005048889377,1.01706186730696,0.475627817292132,2.13835656858203,0.032487814595507,1 +"51458",23100.1113795706,1.63587820495034,0.805438473754763,2.03104055524472,0.0422508807818577,1 +"6009",1888.60133466254,-0.0101356562639182,0.180782346512851,-0.0560655199991979,0.955289611769536,1 +"387",24556.3189332415,-0.326358573510799,0.119031570379084,-2.74178163382565,0.006110695039676,1 +"388",29072.9078473611,-2.36444476861331,0.303338590799258,-7.79473776278615,6.45423762207059e-15,7.91547701970737e-11 +"9886",769.212868251471,-0.265063338513811,0.2813995960493,-0.941946407298228,0.346220078894846,1 +"23221",3023.65070918006,-0.52694372077764,0.363661410887686,-1.4489954254189,0.147338860105265,1 +"22836",3483.82724192772,-0.258501966043033,0.266807677005165,-0.968870045062565,0.332610032819851,1 +"389",10162.5577815373,0.0255882779049518,0.210587821356121,0.121508821071281,0.903288028269937,1 +"29984",1115.79847555931,0.576222972976834,0.305493164108521,1.88620578355115,0.0592672294657845,1 +"391",2541.32021535057,-0.419982524119282,0.165215288242331,-2.5420318457652,0.0110210131518894,1 +"399",289.192638421037,-1.68358685379711,0.349600023911795,-4.81575154074326,1.46646901147738e-06,0.0179847759567585 +"57381",869.86561413412,-2.34543112122184,0.204500863072929,-11.4690524332185,1.88714349898178e-30,2.31439278715125e-26 +"23433",3974.03495461078,-0.713667830921687,0.238622184732233,-2.99078575498971,0.00278260645363052,1 +"55288",1720.38673128051,0.108923791706658,0.16893057471039,0.64478435530924,0.51906694167378,1 +"89941",3544.98032959716,0.260483939223252,0.144195987030428,1.80645761777188,0.0708468885822765,1 +"58480",4412.91659178316,-0.108564157188722,0.367975321298332,-0.295031081991243,0.767970135937685,1 +"171177",2853.68830095951,1.6092798355374,0.617037724082336,2.60807366021378,0.00910533583248864,1 +"114822",982.163477883243,1.94114610979119,0.324614234302031,5.97985517783883,2.23336088496633e-09,2.7389937893227e-05 +"85415",1327.87090903542,1.17982637996563,0.538510091073595,2.19090858188652,0.028458408589923,1 +"79608",213.341010753903,-2.89005580157883,0.382206061208579,-7.56151221788621,3.98409986486761e-14,4.88610007427364e-10 +"60626",4683.66883945577,-0.142293605780193,0.147159793971826,-0.966932624324248,0.33357771624317,1 +"55188",697.276038590348,-0.265139313219818,0.216104745711374,-1.22690185422366,0.219859481572692,1 +"253260",1773.94990085322,-0.039925309047004,0.174993608544941,-0.22815295586496,0.819527332695878,1 +"55183",2240.48972217248,0.349737704759643,0.160367595876174,2.18085020760484,0.0291944975916496,1 +"83547",513.795087098065,-0.721617259594947,0.264579948316235,-2.727407213537,0.00638342076567859,1 +"353116",850.563045527236,-0.31944670858335,0.178440598531168,-1.79021316456498,0.0734196495527214,1 +"196383",1079.10351698261,-0.587877801375735,0.172686522792939,-3.40430620680593,0.000663323493373359,1 +"284716",300.27338286314,0.903878502006743,0.396692054044904,2.27853946856326,0.02269445574093,1 +"57494",869.391951156696,-0.781105092214248,0.297641212993342,-2.62431766205616,0.00868227666877639,1 +"9699",316.654812750319,-1.40493929129205,0.413457956997143,-3.39802213868569,0.000678749271437368,1 +"9783",379.406917663021,-1.51866397127328,0.409638867187467,-3.70732392094591,0.000209460955842286,1 +"9610",677.216233099547,0.105689780715934,0.332268767418439,0.318085210166126,0.750420302052464,1 +"54453",2823.35714377568,0.210796101779635,0.213559756080163,0.987059105370535,0.323613664079577,1 +"79890",1396.48020013349,-0.568432918426226,0.208738536090625,-2.72318149332732,0.00646565270329373,1 +"6015",2291.23252113494,-0.383080270076503,0.0864798277644743,-4.42970667240241,9.43613455967378e-06,0.115724754239839 +"126432",291.03939856496,-0.993595416539216,0.306156909653406,-3.24537968998983,0.00117294115921803,1 +"60561",840.536355843979,0.375927534524849,0.133301377997501,2.82013239601992,0.00480038391314386,1 +"83732",1304.31470091247,0.204615400682059,0.181583733032335,1.12683772530231,0.259811097012677,1 +"55781",873.362394630973,-0.280112961868726,0.0844241036547075,-3.317926394746,0.000906883791283447,1 +"8780",4043.22003688329,-0.201557738051131,0.178548119889357,-1.1288706830183,0.258952389680903,1 +"8737",2235.17392181648,-0.532975583255215,0.142004117420087,-3.75324034921134,0.00017456333529254,1 +"8767",1097.42677342254,0.556047988631208,0.185774020539258,2.99314181292482,0.00276121413362818,1 +"11035",518.631172097395,0.178970308801885,0.271965150954268,0.658063388540466,0.510497400178422,1 +"54101",2725.82035706849,0.995028979048271,0.511930277593594,1.94368065847864,0.0519339724319265,1 +"6016",2111.93023320737,0.36997355692987,0.178191238138078,2.07627244075369,0.0378687606931054,1 +"6018",1567.63045954181,0.0302817926109897,0.174342481824214,0.173691416424381,0.862107983688969,1 +"51132",3418.45184865173,0.0469168818424467,0.179961791282197,0.260704683522941,0.794320254003511,1 +"80010",529.794990211674,1.16530057928112,0.20072096981618,5.80557467587121,6.41456069824997e-09,7.86681724033376e-05 +"116028",802.904701804209,1.62144748072768,0.30137450857035,5.38017461536294,7.44136246298123e-08,0.000912608692460018 +"55005",665.536385496395,0.340862972108837,0.128461560535443,2.65342387783613,0.00796797405663779,1 +"64795",3351.73465475633,0.19466111953443,0.164432509154648,1.18383597340446,0.23647799908846,1 +"64777",1633.7416536687,-0.298127776438694,0.142358458444222,-2.094204866341,0.0362417344682526,1 +"6035",6311.59703094219,-0.907257337617305,0.341133291525977,-2.6595391307571,0.00782476399688537,1 +"6038",1889.94116708091,-2.1486231918496,0.298743364880491,-7.19220389282664,6.37537261216796e-13,7.81875697156279e-09 +"6039",417.672012490819,-1.02342180705482,0.25616720264107,-3.99513207195688,6.46581983515319e-05,0.792968144583187 +"246243",545.176892355831,0.46659361332862,0.139547690596229,3.34361400991347,0.000826947070548794,1 +"10535",1376.45404137922,1.5541049934869,0.187085961966518,8.30690329274961,9.82319412328275e-17,1.2047165272794e-12 +"79621",1276.74492356655,-0.182020049498831,0.131534730573511,-1.383817404766,0.166414372321491,1 +"84153",1451.31232443711,-0.275437835312904,0.145410730921109,-1.89420569973161,0.0581977118724099,1 +"440400",105.146452637977,0.0559248238178079,0.16657334384154,0.335736934422166,0.737069251193079,1 +"6041",940.76845050722,-0.137019933457252,0.145227892005615,-0.943482216570039,0.345434307241024,1 +"8635",2294.03588883407,0.00843239267617742,0.196881531891992,0.0428297798942533,0.965837224841411,1 +"27289",502.377481613304,-1.90043243131472,0.429314455404504,-4.42666769634886,9.56999879677244e-06,0.117366465243617 +"8153",240.281066405598,-1.52248954747148,0.403998021871701,-3.76855693604109,0.000164194035951177,1 +"390",7071.9290298867,-1.50281080963952,0.311730528232543,-4.82086505341712,1.42937028780974e-06,0.0175297972096987 +"9921",8568.76420124694,-0.148752891896228,0.108657545570799,-1.36900655278748,0.170997226601627,1 +"7844",1966.54392728213,-0.620908041524633,0.128860164034026,-4.81846384551148,1.44667733460422e-06,0.0177420508315861 +"26994",5447.22829408921,-0.703662361013229,0.128687634709201,-5.46798736804291,4.55174311788706e-08,0.000558225775977669 +"54778",1389.76507545254,0.0583972820196095,0.134095399227308,0.435490571310497,0.663206381393314,1 +"7732",174.125059326606,-2.59594071272072,0.339679147351401,-7.6423316914276,2.13322764158403e-14,2.61619037963865e-10 +"7737",656.628544656293,0.366193903953813,0.113739308293642,3.21958968669306,0.0012837419692211,1 +"55905",3040.67316322852,0.195135935859579,0.113020909903942,1.72654720286209,0.0842490149844284,1 +"27246",1147.48789162685,-0.356951741840655,0.172034951791927,-2.07487919241191,0.0379977326079124,1 +"55298",1193.31938125521,0.103415150976104,0.102442438353196,1.0094952115407,0.312737196952557,1 +"79845",1211.54996280139,-1.72990033380575,0.239906428071639,-7.21072939858526,5.56529538311979e-13,6.82527825785811e-09 +"63891",2075.15721356555,0.0275421090208857,0.103158443067392,0.266988413181972,0.789478082319808,1 +"54941",299.031183819119,-1.10195850700685,0.222439573622949,-4.95396789815265,7.27152079371922e-07,0.00891779310141726 +"55658",1609.50368983983,0.434136443247871,0.155232777768854,2.7966802468375,0.0051630602691142,1 +"376412",283.52829585784,0.410323428140456,0.162221416304147,2.52940356143325,0.0114256568637076,1 +"79589",3136.96967120168,1.11578103582551,0.649024166201754,1.71916716499992,0.085583937760932,1 +"11342",1976.8321429564,-0.143903523715923,0.108682375302031,-1.32407415016475,0.18547841967256,1 +"55819",2472.7447700879,-0.761275446383381,0.187212368271797,-4.06637367718224,4.77503492080908e-05,0.585610282688026 +"84282",1125.94021246013,0.534326409154903,0.153318791617055,3.48506796537695,0.000492012051801117,1 +"51444",820.481207506691,-0.199871137177781,0.130953700559238,-1.52627330365031,0.126941814302192,1 +"379013",231.761863665748,0.0371446445438421,0.205823337303362,0.180468575772313,0.85678472223889,1 +"11236",1929.46498326094,-0.312276203229878,0.138800275917676,-2.24982408115019,0.0244601147264994,1 +"9604",1935.50965525297,-0.380294105434734,0.152417215701572,-2.49508629116633,0.0125926502592652,1 +"50862",2397.34520180407,-0.488247190972586,0.145887285767138,-3.34674257873242,0.000817671029678091,1 +"9781",937.287247347105,0.639835016324149,0.22712152051203,2.81714834808117,0.0048452140439948,1 +"255488",1407.61104912254,0.71072018320993,0.387503447772659,1.83410028296548,0.0666391094404211,1 +"153830",4351.06144776444,-0.968712660559242,0.231738369743278,-4.18019968653612,2.91253222999815e-05,0.357192952686973 +"81847",1281.04477151009,-0.284908970226702,0.152309862601071,-1.87058779622784,0.0614022374303663,1 +"284996",3346.45052535033,0.558586404499199,0.2863196277197,1.95091900945765,0.051066680951247,1 +"57484",457.170819624088,-2.80383714122859,0.419875630261371,-6.67778013094785,2.42588613727475e-11,2.97510675875375e-07 +"220441",210.071641897629,-0.932429217234617,0.333701286860882,-2.79420324088633,0.00520277685773716,1 +"114804",335.03332592757,0.0763864449547966,0.404404472261658,0.188886251745933,0.85018196913102,1 +"115992",801.687266920954,-0.113198065397835,0.154061922120841,-0.734756933053493,0.462487540022891,1 +"26001",5136.06699411387,-0.359258445615968,0.153515114441516,-2.34021546948612,0.0192726173265287,1 +"165918",1865.65078804732,0.208105941466575,0.177404213351349,1.17306087344398,0.240771395386502,1 +"254225",1013.24285016784,0.255753339902386,0.186638032262447,1.3703173828084,0.170587849157662,1 +"81790",814.048208103356,-0.0217078267379425,0.169482585520234,-0.128082933543345,0.898083341857764,1 +"285671",322.599141069387,-2.45229171088649,0.277090194906749,-8.85015693793053,8.73963111291256e-19,1.0718283596876e-14 +"51255",2949.90984233949,0.465593251438103,0.136488545699275,3.41122582157146,0.000646715060115016,1 +"91445",1781.41821395262,-0.531660883154161,0.142901144541064,-3.72048023031322,0.000198844308030915,1 +"149603",5676.3333321427,0.295126386088856,0.0988001232702641,2.98710544400384,0.00281632566553572,1 +"25897",4138.5036641054,-0.640780103277965,0.175960456617745,-3.64161423307733,0.000270933855882047,1 +"127544",2797.66398009982,-0.258142875423592,0.190549203339252,-1.35473080390684,0.175503339836338,1 +"6045",1130.29668072152,0.556007232114915,0.181813686543057,3.05811538551715,0.00222733794920649,1 +"56254",2665.41215735743,-0.175483871346566,0.171889292336545,-1.02091217527956,0.307296050188843,1 +"388591",551.547563592463,0.686616057217983,0.197090922115162,3.48375282762535,0.000494435880114358,1 +"727800",345.945405821477,0.354345428696744,0.233637410104831,1.51664679272789,0.129355884572928,1 +"57674",10527.8142409166,0.843245357895956,0.171816982805151,4.90781146385417,9.20983238642572e-07,0.0112949384387125 +"257160",792.364127379574,-0.0857818423656883,0.132838880312785,-0.64575854722431,0.518435737536801,1 +"200312",620.7756994322,0.356491687957006,0.219871630156517,1.62136282749728,0.104939848022181,1 +"54476",2821.90300187652,-0.226562703073807,0.181614801369808,-1.24749030015718,0.212217774676149,1 +"441191",599.125362535816,0.263017287251841,0.134974128486872,1.94864964271595,0.0513372793755005,1 +"154214",289.094434573983,-0.173801195393867,0.27873272050614,-0.62354069905488,0.532929265887054,1 +"55182",2958.90890401496,0.27356757766954,0.163022503760579,1.67809701948457,0.0933281605107328,1 +"401934",229.692242971279,-0.297747683212957,0.645381077482865,-0.46135174023732,0.644546269491044,1 +"11237",522.742641235298,0.858416728075224,0.21310398247683,4.02815901466579,5.62153185227322e-05,0.689424666362787 +"64320",1047.1982940468,-0.290465820974083,0.146137059305726,-1.9876260159746,0.0468530668197902,1 +"79102",2280.03511366439,0.196198420036399,0.159430868430773,1.23061752073182,0.218465949159499,1 +"55072",2212.70908995125,0.244662063716382,0.101090750606424,2.4202220504715,0.0155110322155241,1 +"140545",89.9350441442766,0.651343779238318,0.231098033359608,2.81847391675884,0.00482525312715852,1 +"80196",1222.84195570082,0.276137126781935,0.100244878505911,2.75462578136251,0.00587592994408585,1 +"152006",2404.49498345726,-0.734466394136636,0.194106400470465,-3.78383398155071,0.000154430855611403,1 +"80352",478.831881294642,-0.0755445935124428,0.344570152499987,-0.219242998745939,0.826460762010126,1 +"6047",2790.2413827025,-0.0654828712028336,0.131093040755862,-0.499514473272337,0.617416993191224,1 +"9810",5262.3385343335,0.244037253446524,0.102599534605114,2.3785415244404,0.0173812791463479,1 +"10193",2205.76981843355,-0.155418872840172,0.107610007728012,-1.44427898595639,0.148660514421155,1 +"54894",661.814422710773,0.96071112937919,0.568182829055483,1.69084857945501,0.0908657262322913,1 +"22838",2669.43373730115,0.227815837192609,0.168076903669025,1.35542619015175,0.175281810009925,1 +"286140",759.698521765123,-0.161252757680641,0.171281516731631,-0.941448679096513,0.346474977455102,1 +"6049",1861.36750439492,0.334722043207929,0.18013428981827,1.85818060262495,0.0631433716307058,1 +"9616",2622.98843673027,0.251619761107275,0.129698369831772,1.94003796218598,0.0523750764934991,1 +"9025",905.166526862274,0.294567768033346,0.109844844630059,2.68167130669998,0.0073255397274485,1 +"51136",597.662669461977,0.866265145395887,0.188998035701994,4.58346110412378,4.57341988310052e-06,0.0560884214463447 +"8732",1023.63367872156,0.112183202863802,0.145602103625746,0.770477898809458,0.441016460287703,1 +"6050",9169.31933244578,-0.677487141033129,0.136735285622374,-4.95473526053958,7.24288352492801e-07,0.00888267235497171 +"55328",243.853173926643,-0.948704525889679,0.223463397350195,-4.24545825911231,2.18147117753517e-05,0.267535625212914 +"8731",2082.87002433403,0.228141432604313,0.128717993397996,1.772412905,0.0763260411512639,1 +"55599",234.330674851735,-0.0287184386047235,0.256609302623383,-0.111915033130629,0.910890776773426,1 +"6051",4171.84328681508,0.685276914876223,0.189554971192253,3.61518830430034,0.000300129387138066,1 +"57140",4540.66823756813,-0.354918659430787,0.203242349956235,-1.74628299420476,0.0807617893950208,1 +"10921",4723.08753503538,0.0750768457720978,0.127686261073662,0.587979044423474,0.556546358642637,1 +"6091",2864.94148185005,-0.379563418980448,0.306786245514199,-1.23722436885744,0.21600379693697,1 +"6092",151.838012614056,-0.286831175109621,0.430017664717608,-0.667021842691005,0.504758181416906,1 +"64221",317.390348160928,-0.814365438014322,0.289735874770517,-2.81071661788287,0.00494313018668834,1 +"54538",929.65525216678,-1.16808941753623,0.237823065142971,-4.91159012198424,9.03407473585548e-07,0.0110793892560532 +"6093",4468.48131906869,-0.682651177339476,0.221238296967357,-3.08559226271841,0.00203147187139126,1 +"727758",291.143205349588,-0.636008124287263,0.213839938319008,-2.97422515778349,0.00293729457319134,1 +"9475",3316.58584708424,-0.720861239843795,0.253432584452189,-2.84439051672058,0.00444964748049904,1 +"79641",1336.87223486265,-0.394277514066536,0.188686561899299,-2.08958979430109,0.0366546640936488,1 +"6094",207.061689121618,-1.0767534406881,0.22735569614767,-4.73598620545993,2.17992415926734e-06,0.0267345898892546 +"140823",2881.09426342691,0.601421126426623,0.138766185023272,4.3340611138496,1.46383508639165e-05,0.179524734995071 +"4919",244.916204629617,-2.51489461073138,0.37129178455282,-6.77336454874781,1.25821374630026e-11,1.54307333846264e-07 +"4920",1287.48173192352,-1.99436892938551,0.386444331380107,-5.16081817596606,2.45872894494892e-07,0.00301538517808535 +"6095",808.621072663465,-1.36452916306616,0.242799843820946,-5.61997545629576,1.90984588642501e-08,0.000234223499511164 +"6097",336.671256651054,0.032355772381049,0.642385146358015,0.0503681826463286,0.95982899076108,1 +"6102",828.402548493369,0.0741285285587999,0.155344911170902,0.477186719539513,0.633229167092097,1 +"6100",363.62164412076,0.6289933037125,0.148293582405631,4.24154095887981,2.21990366851314e-05,0.272248985906451 +"441212",206.853225075849,0.166757979234775,0.228151379438819,0.730909362217959,0.464834517095497,1 +"6117",4589.82694512103,0.0300241566467214,0.131296670145508,0.228674166781591,0.81912217472227,1 +"6118",1960.90200483226,0.360984096763654,0.167150661011309,2.15963307940033,0.0308010855119709,1 +"6119",616.918776630674,1.04324052731982,0.167139634789808,6.24173032705125,4.32756593578346e-10,5.30732686364483e-06 +"84268",1244.14698756676,0.242784492651191,0.133619041547671,1.81699022713446,0.0692186097764485,1 +"26015",1482.5832497119,0.185984276516995,0.16552421939177,1.12360763397893,0.261179516115492,1 +"79871",574.067778135816,0.437410923166454,0.135538384804811,3.22721068128685,0.00125003383557343,1 +"79657",1420.09209004526,0.289421914950088,0.11053735192842,2.61831778942477,0.00883644694234806,1 +"6120",946.417696228556,0.370382493651705,0.117114500196034,3.16256734248735,0.00156384560888241,1 +"80135",1739.31168156519,0.259434254673852,0.134514356227566,1.92867335464887,0.0537714261163149,1 +"84154",1063.2628169867,0.231687895858725,0.153839600103333,1.50603547918157,0.132058066060454,1 +"6103",457.05452574155,-0.339077386741959,0.170660055851274,-1.98685852439576,0.0469380769396637,1 +"23322",333.179260347635,0.724924201201869,0.177900689451523,4.07488134777243,4.60378139342012e-05,0.564607750089044 +"9501",581.446753756297,-0.500868712164481,0.317558444786378,-1.57724891397996,0.11473826204482,1 +"22934",1330.90093349583,0.699767559400295,0.164673543548552,4.24942309688002,2.14321771593405e-05,0.262844220682152 +"6134",16592.2671167782,-0.560166739484237,0.136232884168082,-4.11183205071922,3.92531811429855e-05,0.481401013537575 +"4736",17081.172436227,-0.680050102179295,0.152840129156506,-4.44942114307514,8.61020355366248e-06,0.105595536382117 +"6135",40612.8345100264,-0.243899465061904,0.15753284468846,-1.54824516464643,0.121563281201678,1 +"6136",10976.4641621362,-0.521583068428587,0.152344257334527,-3.42371335522849,0.000617717405337074,1 +"6137",23165.3081243636,-0.380897230856304,0.170463465622164,-2.23448015365691,0.0254514969612433,1 +"23521",14022.5849961802,-0.418259156336393,0.165526058496358,-2.52684779747593,0.0115091368444821,1 +"387841",629.794003813092,-0.31050409964946,0.180391117142371,-1.72128264721815,0.085199546780218,1 +"645683",150.998567059137,-0.305144058920629,0.21072595763606,-1.44806108532502,0.147599967587571,1 +"644511",4427.4080945007,-0.44534065987332,0.151996135919619,-2.92994724621705,0.00339019553134211,1 +"9045",17327.2935594407,-0.341793719468288,0.176376893448133,-1.93785995878648,0.0526403102458245,1 +"6138",27825.1487945121,-0.619458284029587,0.123914038374539,-4.9990968913242,5.75994553994074e-07,0.00706399721018332 +"6139",992.37838435074,0.0022976251284613,0.178010716700619,0.012907229244661,0.989701807004335,1 +"6141",34430.5022944927,-0.10758480854014,0.160319844659499,-0.671063577741341,0.502180028381007,1 +"6142",2156.64219517472,-0.15338464485808,0.144990991273278,-1.05789086281217,0.290105201339694,1 +"6143",31631.7795641419,-0.0358684790303637,0.140313802240318,-0.255630440182436,0.798236211298626,1 +"100129424",13875.4940228048,-0.0705676825826032,0.135378563291081,-0.521261866480839,0.602184361774451,1 +"6146",11891.7653469431,-0.460125576897451,0.107244456743682,-4.2904369220422,1.78321932002094e-05,0.218694017407368 +"200916",921.336099228482,0.277459897788776,0.209720661440065,1.32299743803769,0.185836229821124,1 +"9349",23412.3460539901,-0.238504937855564,0.153623234576342,-1.55253167604045,0.120535059504721,1 +"6147",6695.14028002825,-0.0515040201881122,0.156200140989988,-0.329730945578425,0.741603269026698,1 +"644128",343.54947624519,-0.658571446947605,0.194945607683408,-3.37823177846165,0.00072953562813031,1 +"118433",254.591737756141,-0.191796177761596,0.209153432249708,-0.917011859181976,0.359136425772155,1 +"284942",228.932615012736,-0.44622536037448,0.197876442816515,-2.25507065936218,0.0241288939619342,1 +"222901",7622.9827354621,-0.231126775746089,0.156908855326307,-1.47300020298688,0.140750981044881,1 +"6152",10912.5676324166,-0.21094731794577,0.12195938126156,-1.7296522478526,0.083692425142407,1 +"6154",14332.3727307241,-0.522326526577749,0.181757941822243,-2.87374802630951,0.00405632439930598,1 +"51121",182.542924673573,0.527476871686865,0.127386935670506,4.14074542974499,3.46178987510906e-05,0.424553910283375 +"6155",20418.6593115266,-0.123911381921327,0.132234353987784,-0.937058927461271,0.348728247128763,1 +"6157",13908.6083873097,-0.295082548753689,0.156230227750125,-1.88876732117196,0.0589230133872072,1 +"6158",34552.6852717294,-0.00445060557824214,0.199602656289811,-0.0222973264032124,0.982210781574462,1 +"6159",20524.174504463,-0.239627191485395,0.182299075703154,-1.31447288232876,0.188687117976805,1 +"6122",48514.778289774,-0.673841545139181,0.13721406289617,-4.91087816304278,9.06694141490207e-07,0.0111196969512359 +"6156",39300.7159088936,-0.0724659782984,0.18470956559579,-0.392323906261473,0.694818902002634,1 +"6160",16625.7415803933,-0.409970576147324,0.145634635818918,-2.81506232251702,0.00487677753689518,1 +"641311",761.545709385005,0.0750366480876441,0.150537737533948,0.498457392258355,0.618161693420042,1 +"6161",22671.5156433566,-0.0834289413101634,0.191391402325018,-0.435907466566789,0.662903867613291,1 +"132241",183.271266889272,0.0130588173709581,0.196669798374529,0.0663997089481399,0.947059601918964,1 +"6164",14277.9027451606,-0.74111789613062,0.158028377236382,-4.6897772988078,2.7350255578953e-06,0.033542353442028 +"11224",10337.1539250606,-0.0772046667493311,0.183074994377323,-0.421710605601385,0.673236262355516,1 +"6165",21664.7694628305,-0.126598667851322,0.122985706691092,-1.02937708175557,0.303302514356905,1 +"25873",18758.7973648526,0.0809191251793522,0.177726221199354,0.455302119368114,0.648891901737125,1 +"6173",161.829317132274,0.398632289561672,0.222685390788587,1.79011424211535,0.073435547687804,1 +"6166",7450.81423771354,-0.472003833264883,0.157962832400908,-2.98806894059067,0.00280746218713575,1 +"6167",28459.9698234627,0.131657626005577,0.204948650499626,0.642393232083356,0.52061789294283,1 +"6168",21422.5209368205,-0.4702056436338,0.13299724748654,-3.53545394750659,0.000407075193183333,1 +"6169",16115.547994205,0.123122882720903,0.130339514527134,0.944632049364216,0.344846758902701,1 +"6170",2783.19946124905,0.13403763247972,0.148972356894507,0.899748351129582,0.368254185963774,1 +"116832",255.704171515927,-0.693668770060024,0.353675333633688,-1.9613150935159,0.0498422776576069,1 +"6124",42801.5863106718,-0.335839615805323,0.123678509802009,-2.71542417791865,0.00661909311979678,1 +"6171",2459.78358629874,-0.0668496911657468,0.160103779028974,-0.417539745602438,0.676283658964999,1 +"6125",29042.6808461207,-0.667939955067751,0.145505374978691,-4.5904830331221,4.42221406167694e-06,0.054234033252406 +"6128",7309.46503702061,-0.177671555198549,0.136100148825288,-1.30544717792062,0.191740622604808,1 +"6129",2397.2787660206,-0.501233817413649,0.16984693865121,-2.95109126719653,0.00316653335324529,1 +"6130",21499.8623919478,-0.362089871164846,0.176761347059065,-2.04846747996243,0.0405142154085115,1 +"285855",538.171653008453,0.110430346556652,0.162401915838481,0.67998179692955,0.496515986904481,1 +"6132",65779.6184697342,0.0342548568569443,0.150482168913243,0.227633992148885,0.819930791702665,1 +"6133",3951.54620064867,-0.714778997285975,0.146383190516744,-4.88293085266655,1.04520531480253e-06,0.0128183979807383 +"6175",27316.638607909,0.0324335714713032,0.157203994283728,0.206315186958709,0.836544716245059,1 +"113157",418.788077533113,0.71311887346094,0.18745109356883,3.80429294854495,0.000142209804023148,1 +"6176",36799.8974566086,-0.294326621738483,0.131105077307458,-2.24496737870991,0.024770226819188,1 +"6181",28018.6472733697,-0.354793604885704,0.144985919687536,-2.4470900736453,0.0144014843088765,1 +"6184",14787.7386048264,0.785648287223344,0.162048337663296,4.84823416612743,1.24565310883729e-06,0.0152766897267805 +"6185",16893.6682556729,0.763019486719246,0.145266565002315,5.25254718253362,1.50010018965235e-07,0.00183972287258964 +"11102",1043.78584835227,-0.460572886089971,0.115627133048552,-3.98325958576328,6.79764348701708e-05,0.833662997247774 +"79897",279.892792143421,0.35685614950383,0.184711040543473,1.93196978617985,0.0533632351958852,1 +"54913",964.730790340492,0.926906417867133,0.228845822481362,4.05035323702543,5.11403759132369e-05,0.627185570199937 +"10556",1079.26025278551,-0.118278681215355,0.115947279945523,-1.02010742529645,0.307677515596257,1 +"10557",776.088882112513,0.34078131797256,0.189721139918069,1.79622217176075,0.0724591898758797,1 +"10799",403.535621010577,0.769640223613855,0.177757904077003,4.3297102742641,1.49305645156978e-05,0.183108443220518 +"55197",2665.69220588274,-0.526804400433829,0.22951621526897,-2.29528183800202,0.0217169777663184,1 +"58490",2175.75920839608,0.0955479395352989,0.151296725895525,0.631526815730817,0.527696121353289,1 +"23248",2919.15662649172,-0.163161188752547,0.14110641347684,-1.15629888629638,0.24755892373678,1 +"56475",201.70239522945,-1.20513113355741,0.583327651305725,-2.06595920981944,0.038832331285103,1 +"6204",163.087817433969,0.219689277753938,0.204755153070167,1.07293650225572,0.28329960696979,1 +"376693",249.129917050478,-0.219286539345774,0.155575019050426,-1.40952281853616,0.158680631027864,1 +"6205",55129.0394512468,-0.213371349148055,0.131660709905524,-1.62061521087927,0.105100187978617,1 +"6206",21530.8824911754,-0.458809530247651,0.133181980695681,-3.44498203023445,0.000571097356993541,1 +"6207",12930.3298473479,-0.793475595238977,0.155287992429917,-5.10970347946948,3.22664815627365e-07,0.00395716129885401 +"6208",22483.1377215184,-0.496753397891508,0.142135390124024,-3.49493111784513,0.000474184115476751,1 +"6209",7568.12821291853,-0.09750207868832,0.135968836831475,-0.717091364171689,0.473317723970685,1 +"6210",18314.5013538258,-0.412676388598881,0.143778210441223,-2.87022899598257,0.00410174628890542,1 +"6217",28987.348692432,-0.290432299295869,0.162570646481099,-1.78649901185966,0.074018497079206,1 +"6222",24497.9218712268,-0.232286433137955,0.203196098867822,-1.14316384237798,0.252970571495208,1 +"6223",29879.5743699106,0.326651291230749,0.158234605413347,2.06434800009427,0.0389847329933858,1 +"91582",2383.19852396915,0.172911674580134,0.151902867830049,1.13830421406915,0.254993474958682,1 +"6187",17752.4456625574,-0.0660973600344848,0.158437331821371,-0.417182991373559,0.676544565045363,1 +"6224",27778.1225080656,-0.387995773491017,0.131367246467241,-2.95351987595912,0.00314172376264061,1 +"6227",16297.3344109417,-0.0535129070861786,0.149029366317291,-0.359076257307885,0.719538042717846,1 +"6228",23306.4574245053,-0.670287500034294,0.137467016668157,-4.87598782806466,1.08265284627329e-06,0.0132776545066957 +"6229",31735.4469093348,-0.472358030187178,0.180548716248105,-2.61623588360538,0.00889051154608044,1 +"6230",9692.19131737892,-0.533100499974995,0.174772529650316,-3.05025338387914,0.00228648374330473,1 +"6231",195.436633813813,0.481345113916246,0.19115787251787,2.51805017275053,0.011800650994559,1 +"6232",763.217037886519,-0.606531722039346,0.155769734268979,-3.893771308565,9.86977017880424e-05,1 +"6233",4023.54140511582,-0.225115474496209,0.127947098805357,-1.75944180523133,0.0785024965179902,1 +"51065",1733.26610332019,-0.440702810964283,0.178710534100113,-2.46601473821013,0.013662571249964,1 +"6234",1847.86850148542,0.0395406507068749,0.174430722938463,0.226683981128854,0.820669484100825,1 +"6235",8151.25722768909,-0.226946523097053,0.140273116390779,-1.6178903622902,0.105686227656872,1 +"6188",32511.2452595794,0.115196587035896,0.180815772648618,0.637093685735917,0.524063821244145,1 +"6189",5529.07973891049,-0.784107510720491,0.173838390384663,-4.51055436595708,6.46584269776206e-06,0.079297094845354 +"6191",44606.3454753969,-0.495575473452272,0.153652441100861,-3.22530166069386,0.00125839996418992,1 +"6192",4378.64983179818,-1.05500903613097,0.40241391399819,-2.62170118733944,0.00874921048183831,1 +"6193",21176.2259675746,-0.108868112804078,0.162513699201524,-0.669901142728139,0.502920811245475,1 +"6194",78042.0094131495,-0.524039516386751,0.233362758611165,-2.24560045272656,0.0247296114669529,1 +"6195",2213.04267769471,1.04404294056957,0.294174239078074,3.54906311253337,0.000386604408026632,1 +"6196",2547.39596107048,-1.75435428904577,0.234525204970744,-7.48045093602889,7.40680175209125e-14,9.08370166876471e-10 +"6197",3272.0236816404,-0.163094869009222,0.139447596991729,-1.16957819659593,0.242170755843887,1 +"8986",2499.19709220043,0.438585146187245,0.169036094658002,2.59462422552178,0.00946943865417762,1 +"9252",854.295962313167,-1.17064333682491,0.242696844426637,-4.823479842066,1.41075030667635e-06,0.0173014417610787 +"27330",316.431950236433,-0.385918087550533,0.32151410545814,-1.2003146393861,0.230017166349093,1 +"6198",1805.28655345449,0.102601393133738,0.146237977943161,0.701605660696543,0.482925120454711,1 +"6199",2249.21249758896,0.340769950112474,0.153996101934453,2.21284789570531,0.0269081339333786,1 +"26750",1247.08183060039,-0.13834682065172,0.171870727934391,-0.804946964002686,0.420850285551566,1 +"83694",202.373329646219,0.161667295567426,0.421407626117942,0.383636378526711,0.701247973228532,1 +"6201",3110.39443775721,0.209641396414868,0.156345999834682,1.34088110112532,0.179959059120364,1 +"6202",38210.5996675186,-0.267588358948902,0.142118209891066,-1.88285765176756,0.0597196615828661,1 +"6203",20446.6947598415,-0.602964587146983,0.106102495133304,-5.68285021374319,1.32468281202675e-08,0.000162459100066961 +"3921",10896.3733056884,-0.00967892094977684,0.161703300246449,-0.0598560507733941,0.952270283499142,1 +"388524",11238.6588004193,-0.0139407971576867,0.156992451254376,-0.0887991559230979,0.929241528518218,1 +"653162",702.833421145756,-0.0460081678487817,0.164882695901894,-0.27903575688838,0.780217384098113,1 +"57521",2499.98159983752,-0.596519513879824,0.177912509494255,-3.35288123120475,0.000799750170948221,1 +"113000",1035.73255608331,0.482498769860635,0.157664357497889,3.06029071831973,0.00221122238407189,1 +"27079",474.647188038632,0.496658904935399,0.145374815644999,3.41640264671582,0.000634543477115667,1 +"285367",1161.23602225277,0.537697744320773,0.164069439453613,3.27725715472317,0.00104820855591271,1 +"84881",958.773956688974,0.0819916695481847,0.112475614824628,0.728972850479868,0.466018270032291,1 +"6236",851.237501722108,-2.47338141063438,0.335270951367013,-7.37726128836861,1.61578714694697e-13,1.98160135701576e-09 +"10670",4016.47639373135,-0.578604772415784,0.143148823032424,-4.04198064754418,5.30016078017629e-05,0.65001171808082 +"10325",785.90900344701,-0.305132439165538,0.186926233071033,-1.63236820296692,0.102601943353175,1 +"64121",869.62487876565,-0.0558698718059182,0.121253788805017,-0.460768049860775,0.644965026653704,1 +"58528",1046.75352092518,-1.01459266190812,0.27892262304404,-3.63754166239833,0.000275252679209726,1 +"6237",3010.46934164619,-1.6407449492793,0.30295699832602,-5.41576843692402,6.10260393665861e-08,0.000748423346791812 +"22800",874.567616718856,-0.426223163859227,0.182491283824404,-2.33558093804275,0.0195130930206137,1 +"6238",10831.8802600151,0.188224095630011,0.168499072511645,1.11706309610104,0.263967348100899,1 +"6239",2693.52656452219,0.154136325220484,0.191501941190714,0.804881267845644,0.420888198993269,1 +"6240",3873.72594535229,0.333486306239585,0.164442071990761,2.0279865256035,0.0425616232354239,1 +"6241",2443.98813367958,3.06062781090036,0.453375021293003,6.75076408526346,1.47068566613054e-11,1.8036489009425e-07 +"50484",1875.05911516484,0.180774185834209,0.174376911388942,1.03668647640512,0.299881996609981,1 +"54700",2185.23445969388,-0.191029792535977,0.133445413048397,-1.43152011127348,0.152281207317766,1 +"653390",181.574447374879,-0.589254683699389,0.157365648650843,-3.74449372370208,0.000180757895237973,1 +"100131998",144.517832945453,-0.188728287033005,0.184255516572553,-1.02427482521909,0.305705485233219,1 +"51093",1437.25137504006,0.260834139399461,0.150940845019547,1.72805538067369,0.083978295976216,1 +"8568",2409.97816778516,0.640989240862175,0.200744310969275,3.19306304506075,0.00140772208426452,1 +"23223",2287.43177970382,0.235813110373368,0.201040687381153,1.1729621174956,0.240810997492634,1 +"51018",1206.23613230229,0.082238476425794,0.134209972717431,0.612759802872033,0.540035173416657,1 +"23076",2652.17994305655,0.568620932282929,0.164698868970546,3.45248838584689,0.00055544138704201,1 +"88745",1535.3198333043,0.200556199351691,0.116532574117355,1.72103122985785,0.0852451570268119,1 +"27341",2667.64174202929,0.125462769765504,0.150740230839237,0.832311116063693,0.405233357753067,1 +"23378",791.912828538877,-0.341403016643628,0.143467497696659,-2.3796540828047,0.0173288966140289,1 +"9136",1391.4162429691,0.463204395955975,0.108144117023268,4.28321399911483,1.8421284053714e-05,0.225918627634749 +"23212",1565.31940372998,0.108310199563207,0.202277923797625,0.535452399005089,0.592337064905862,1 +"55316",1482.20198616736,0.018776041354301,0.130572377250716,0.143797959029639,0.885660014584424,1 +"91543",574.209563020318,1.19326159963017,0.337967738203335,3.53069676405696,0.000414466612679327,1 +"54665",1163.84752543966,-0.0075042972221128,0.147358953951161,-0.0509252883581133,0.959385054454615,1 +"222194",820.551644920417,-0.1529980903921,0.149305386891339,-1.02473255371187,0.305489398268579,1 +"6248",290.650198666328,0.655466691478063,0.213916454817444,3.06412469315387,0.00218307897696704,1 +"51773",2095.77912936976,0.204656262727039,0.163273998736232,1.2534528725401,0.21004093990025,1 +"26156",7462.18699858817,-0.243359214385191,0.145348070732074,-1.67432022426899,0.0940676818612795,1 +"51187",3533.31492894593,-0.39519293909209,0.104408942762025,-3.78504875768006,0.000153678445460609,1 +"83861",351.942380229561,0.0606820337085516,0.157478507331631,0.385335337099446,0.699988983852629,1 +"84870",367.051628638718,-2.8994402672651,0.324341678252685,-8.9394624917931,3.91067862313485e-19,4.79605626341258e-15 +"89970",901.146665270658,-0.0548916016117532,0.14095351412025,-0.389430529308579,0.696957691830147,1 +"51319",718.887214811492,0.669735729191961,0.16269784594428,4.11643882133098,3.84771402711821e-05,0.471883648285777 +"65117",3195.82784775927,0.129442843879691,0.100120480546984,1.29287078100815,0.196055754753478,1 +"6251",4066.1227238369,-0.643972227560949,0.17841073368642,-3.60949262555477,0.000306796495040837,1 +"51750",159.24253700168,0.649151078988981,0.14998988025169,4.32796584609358,1.50492798863499e-05,0.184564368526195 +"23168",3839.1105321113,-0.0201844057037734,0.116837902314558,-0.172755632409694,0.862843512795874,1 +"6242",1294.46840604261,1.30605008524993,0.232521377938999,5.61690325778374,1.94410197922422e-08,0.000238424666732058 +"219790",415.933198071588,2.31695282703039,0.463969046746705,4.9937659489929,5.9213151142243e-07,0.00726190085608469 +"6253",556.320505019232,-0.581313019567989,0.238238794253053,-2.4400434924571,0.0146854937442394,1 +"10313",6853.46321171994,0.284336708963203,0.114914972840831,2.47432255287602,0.0133489115540996,1 +"57142",19389.7012821992,-0.637909411493775,0.161652354728922,-3.94618075662119,7.94076758951528e-05,0.973855737178154 +"84816",379.24489558166,0.383709712980451,0.222364753395682,1.72558693372446,0.0844217516996879,1 +"65078",233.399300645971,2.4485842489398,0.311603301601748,7.85801766654344,3.90260272652217e-15,4.78615198380678e-11 +"64108",495.01556770891,0.819631992476681,0.385124504357317,2.12822602354128,0.0333183481699933,1 +"25914",479.931434098072,0.278881655323567,0.194310487035406,1.43523728224072,0.151219492985157,1 +"80230",2090.35808371124,-0.390282261072001,0.0853159214873465,-4.57455366206043,4.77236281752015e-06,0.0585282575940671 +"55680",815.117193898594,-0.404261934195296,0.124129644764046,-3.25677186109526,0.00112686962877731,1 +"22902",1219.73713126187,-0.440583253309369,0.182579642263781,-2.4131017447873,0.0158174034174709,1 +"146923",1301.71232085258,-0.124870592357729,0.11619887019605,-1.07462828293467,0.282541183981781,1 +"154661",117.270579170747,-2.34937818719741,0.322279208018903,-7.2898844503168,3.10220972806854e-13,3.80455001050326e-09 +"861",3750.79059317671,0.683709228247019,0.29169429969223,2.34392385784847,0.019082066546618,1 +"862",485.289462679052,-2.20616241571958,0.420320710495733,-5.2487597223501,1.53126641533098e-07,0.00187794513176192 +"860",620.700797755012,0.850781193229634,0.429929471082183,1.97888549274865,0.0478288999742527,1 +"864",592.788251137002,-1.01503133925578,0.354047532238207,-2.86693521866678,0.00414467842193767,1 +"23623",2737.03474404094,0.659352007292199,0.128530503484627,5.1299262775475,2.89855674391015e-07,0.0035547899907314 +"9853",2256.3396857232,-1.56190024812548,0.322360675917267,-4.84519473003692,1.26487556896223e-06,0.0155124339777527 +"8607",2994.42664634332,1.10098110827944,0.174632025181318,6.30457733703942,2.88981402261127e-10,3.54406791733046e-06 +"10856",4308.20370263938,0.612193726532401,0.135617465271298,4.51412157945682,6.35797372887071e-06,0.0779741898108704 +"51389",1910.46086936861,-0.48840341784331,0.13552553299873,-3.6037741895314,0.000313629560287148,1 +"112611",194.249002018133,-0.0909291902439523,0.218424513821773,-0.416295719985659,0.677193624078056,1 +"10069",852.186774176342,0.184729150322587,0.184926693496477,0.998931775774741,0.31782774195585,1 +"25950",436.659393076674,0.137875966648975,0.149278928682789,0.923613050184432,0.355687816811036,1 +"201965",236.047325950297,-0.175998323160509,0.116273698369363,-1.51365550101814,0.130113236630315,1 +"6256",8035.39316406785,-0.410303194593422,0.264199891108078,-1.55300289062412,0.120422444031458,1 +"6257",2151.69895493013,-0.380164885296498,0.132114211700748,-2.87754724039538,0.00400779897522372,1 +"23429",3318.26460847461,-0.347189625492504,0.147185758845074,-2.35885338511556,0.0183314967024798,1 +"6259",2672.02239910437,-0.182696618248262,0.130149611929451,-1.40374308874079,0.160395366473699,1 +"6261",415.949541041276,0.00571560305288914,0.421419313503822,0.0135627458679283,0.989178826226586,1 +"6262",696.779577636435,-2.66728963624741,0.481910085145311,-5.53482842228366,3.11533168656468e-08,0.000382064278040292 +"6263",323.358427574911,-2.72050133532939,0.362554389986541,-7.50370540384405,6.20386462089568e-14,7.60841957106646e-10 +"6281",11773.2337919892,0.168148292806109,0.29232306616131,0.575213906361124,0.565146638898797,1 +"6282",35092.158713448,0.909080441431253,0.379378205492395,2.39623791844172,0.0165643345358248,1 +"6284",3144.84218140471,-0.283512803547439,0.209334946472538,-1.35435008977172,0.175624712725246,1 +"57402",14042.7143593776,2.68794906798306,0.762418525043523,3.52555581965905,0.000422595107476771,1 +"140576",14973.3668976133,0.599225609465007,0.416502907493312,1.4387069062048,0.150233581793651,1 +"6273",17915.3116693046,0.0427396087096914,0.771553264370795,0.0553942426055909,0.955824382531968,1 +"6274",129.276830600444,-0.547335044546069,0.38992137069727,-1.403706197399,0.160406356235504,1 +"6275",9030.23237983002,-0.614536591867439,0.376505480186075,-1.6322115459348,0.102634929327114,1 +"6277",83338.507587174,0.406368733883351,0.347973676999477,1.16781458122754,0.242881565184872,1 +"6279",48047.2699391277,0.95338906265951,0.672541598402504,1.41759121654944,0.156310146005365,1 +"6280",64747.7184793533,1.31995156735541,0.642520665156453,2.0543332517313,0.0399434485299198,1 +"6285",315.303787994377,-2.0624545059281,0.358419267184655,-5.7543070218531,8.69979208760033e-09,0.00010669425016233 +"6286",27523.1406973836,0.323484471980644,0.652832048765076,0.49550948454899,0.620240528695861,1 +"64766",988.005424784441,0.35107976919967,0.147444880400498,2.38109162044859,0.0172614181461818,1 +"1901",1465.20663705497,-1.83188036885809,0.246908887208138,-7.41925651025213,1.17779611449296e-13,1.44444915481417e-09 +"9294",787.067105685159,-0.871715376656925,0.18656205636042,-4.67252234276865,2.9752313958644e-06,0.036488237838881 +"1903",1742.49011114182,-1.2304668561804,0.304315559502633,-4.04339120284039,5.2683608500208e-05,0.646111774646551 +"8698",222.241001198604,-1.18941485672125,0.357760068755325,-3.32461602229481,0.000885403848422629,1 +"53637",328.856626351507,2.23743188637859,0.542320542272171,4.12566316777229,3.6966798019023e-05,0.453360810905298 +"113174",598.279563458317,0.439737751809836,0.124233699353926,3.53960120399442,0.00040073208732367,1 +"29901",505.789319458864,1.29538650568492,0.212960532108238,6.0827538927567,1.18135612862905e-09,1.44881515615067e-05 +"22908",1989.11820574293,-0.229889045026993,0.12299170074929,-1.8691427439938,0.0616029575600983,1 +"26278",1506.80877632575,-1.15776735117785,0.336625788506601,-3.4393305287576,0.000583154770448335,1 +"10055",6215.44084036143,0.0797931981327022,0.169393026009545,0.471053620166194,0.637602444444343,1 +"6294",5147.52489045837,0.122111784601689,0.0703529402967469,1.73570264564102,0.0826164254734608,1 +"9667",3042.96419900222,-0.347709922376656,0.106655486871577,-3.26012221757826,0.00111364214693079,1 +"6297",642.316169841878,-0.957063732726022,0.393573972387289,-2.43172516444823,0.0150271049255364,1 +"90378",1352.85674919986,0.686253012196863,0.155585838703293,4.41076783026229,1.03004713671592e-05,0.126324980846841 +"140700",530.142446248658,1.06858079728061,0.346955895259446,3.07987502700178,0.00207087469846863,1 +"148398",513.664576914403,-1.73587553562718,0.421017845337858,-4.123045032056,3.73896566481559e-05,0.458546749132984 +"401474",1090.70147986778,0.467323384204931,0.270577233583146,1.72713490346676,0.08414343843182,1 +"148418",140.17786634692,0.863042537227176,0.325221574855146,2.65370628505067,0.00796130915697474,1 +"23034",1922.53705441659,-2.14995218670913,0.285649285407316,-7.52654495054468,5.2100549041078e-14,6.3896113343978e-10 +"55095",4448.96623666654,0.128787121444948,0.165012717501046,0.780467853601231,0.435115542086548,1 +"389432",406.012983916645,-0.667714950402601,0.421696979493689,-1.583399888717,0.113330348343358,1 +"142891",1955.60596308725,-0.704993515397969,0.221653421604985,-3.18061192240181,0.00146964357395114,1 +"54809",1970.70169300108,0.700376000437517,0.36521781704975,1.91769395615798,0.0551498285448097,1 +"219285",1283.07307477082,0.0437743194056422,0.292813475435323,0.149495576802138,0.881162599350053,1 +"25939",3060.29813591997,-0.974004213174144,0.270966620851293,-3.59455423001596,0.000324947458765788,1 +"25813",2044.20511306983,-0.0484155734952936,0.117347865810231,-0.412581627803857,0.679913164073835,1 +"64092",434.964400956257,-0.997433674965362,0.291042898483043,-3.42710191577986,0.000610060058621674,1 +"79595",1781.35683381079,0.421655427350509,0.117020080470932,3.60327411888295,0.000314233829775735,1 +"10284",5915.93880268126,-0.330858077035369,0.162743801013145,-2.03299956726859,0.042052566721255,1 +"100316904",165.62312822227,0.562627740933324,0.249728736449027,2.252955542616,0.0242619522339033,1 +"8819",221.28904290017,-0.436812047061022,0.284029258560918,-1.53791214776324,0.124070096677859,1 +"29115",3179.06639848827,-0.0848429689234762,0.128173611045863,-0.661937884336563,0.50801103118291,1 +"79685",1687.7779577056,-0.357633298458059,0.182778825898826,-1.95664512395993,0.0503892058531444,1 +"89958",1095.03763077132,3.37897550508803,0.405579433120796,8.33122991244394,8.00067842306941e-17,9.81203201805232e-13 +"56681",4474.82947269021,-0.171335562619116,0.117558887507069,-1.45744457311927,0.144993700776055,1 +"51128",2752.91062835585,-0.414562692589945,0.141002943105952,-2.9400995713858,0.00328106789408453,1 +"1757",122.717298499166,-0.591761559056811,0.321846236942189,-1.83864681681242,0.0659671505168939,1 +"23098",335.967099656137,-0.791937037931237,0.280123845339421,-2.82709612589982,0.0046972225390466,1 +"84324",2312.11139618616,0.105035767087285,0.110306132492359,0.952220558494888,0.340985136812245,1 +"54938",1377.96034847775,0.841561503971835,0.18028217976255,4.66802378959616,3.04110694383134e-06,0.0372961355591475 +"9092",4471.32378307906,0.144700454380534,0.127995589042351,1.13051125795168,0.258260857379254,1 +"9733",2713.49137320422,0.287691870073027,0.0753342051680232,3.81887443335159,0.000134061977448563,1 +"23328",2848.37642311885,-0.834332402164819,0.199863832174307,-4.17450417660948,2.98635741243339e-05,0.366246873060831 +"54440",720.9084515881,-1.04496871789322,0.35043720190541,-2.98190007285608,0.00286465484469148,1 +"163786",397.255357395595,1.43834016043074,0.172401386214134,8.34297329050603,7.24455335117577e-17,8.88472022988196e-13 +"6303",10528.7403217376,-0.109921679661333,0.307341254018839,-0.357653514534677,0.720602624912978,1 +"112483",1912.67830568209,-0.249183354058344,0.175162559227533,-1.42258342854342,0.154856950689341,1 +"6304",2699.54012717411,-1.34055199294584,0.252316012717624,-5.31298817901859,1.07842036258337e-07,0.00132257473267225 +"23314",238.880079189573,0.368060838993725,0.219178133483382,1.6792771849279,0.0930980353189038,1 +"60485",1328.80702641216,-0.109671615942819,0.162133888137815,-0.676426237614171,0.498770063509468,1 +"55776",673.015841684955,0.197402169596896,0.12489439805328,1.58055263225404,0.113980363626803,1 +"51119",4973.55405938177,-1.13079996926074,0.163666777507529,-6.90916010250596,4.87531493505469e-12,5.97908623635108e-08 +"155370",1120.49297685633,-0.80787764872586,0.175473221286031,-4.60399394736692,4.14464513217242e-06,0.0508299279009625 +"6305",4137.97162904035,-0.475888363747726,0.214341087010979,-2.22023864105602,0.0264025725858358,1 +"81846",1960.9023109512,-0.52795258796819,0.17855668070651,-2.95677868718884,0.00310871159581113,1 +"388228",1000.62195010708,3.10242522299963,0.452162052272706,6.86131268072117,6.8230631748667e-12,8.36780467765652e-08 +"55206",2606.7998237454,0.224282007717516,0.128202194976793,1.74943968594387,0.0802150459291114,1 +"22904",4632.69188675994,0.4333984888196,0.235105397831528,1.84342211117656,0.0652674041987013,1 +"58506",4223.77476300011,0.1048880551488,0.144208261577693,0.727337352252118,0.467019321738502,1 +"9169",4973.08497744492,0.157493689656652,0.132206403273359,1.19127126793554,0.233547109517724,1 +"57466",2122.4482132886,0.206651515506269,0.152591870237687,1.35427605143299,0.175648323655494,1 +"22828",2402.35201025637,-0.350503393724223,0.144468838897127,-2.42615221662997,0.0152598684056006,1 +"286205",596.989913130453,-0.0750064240893173,0.151155642414296,-0.496219809537346,0.619739336148763,1 +"9522",3120.28479177738,-0.0308546032526976,0.14530566082594,-0.212342747538638,0.831839648021182,1 +"10066",2883.19501085809,0.222461691673195,0.185604287089307,1.19858056708654,0.230691078173198,1 +"10067",3638.00801680343,0.688751221213453,0.141396221577552,4.87107232095088,1.10994200048755e-06,0.0136123286939793 +"113178",3116.19649344013,0.323986003097772,0.145128387621031,2.23240958167183,0.025587905117571,1 +"192683",786.563010515059,0.475446589147717,0.283754162197181,1.67555811504653,0.0938247788152882,1 +"51282",2369.67915376138,0.189600183417362,0.127253324342085,1.48994287102218,0.136239257886813,1 +"22937",5635.24295374418,0.190910587202649,0.158178322679703,1.2069326818519,0.227458070187665,1 +"49855",923.348122619024,-0.603646893461878,0.172129702566276,-3.50693043944262,0.000453307630337562,1 +"51435",2544.79758193885,-1.64381651324007,0.301524369665155,-5.45168708939029,4.98941925994005e-08,0.000611902378039048 +"286133",3059.92869149478,-7.71617220991678,0.507543724401708,-15.2029703825273,3.37943215346038e-52,4.14453559300381e-48 +"949",1845.89801931889,0.531512571198246,0.203324499775004,2.61410981847446,0.00894602766560931,1 +"950",10920.7959654648,-0.208281895784866,0.149292638798233,-1.39512502064054,0.162978142288601,1 +"8578",421.498526804751,-0.897447169968997,0.173990915592831,-5.15801165199439,2.49586091317905e-07,0.00306092382392278 +"91179",576.966850529479,-0.375711043631303,0.284265544649041,-1.32169040780219,0.186271264096638,1 +"51097",6861.03084469394,0.593327011613098,0.365834628534707,1.62184485921843,0.104836570570316,1 +"6319",19307.8498840395,2.21259839223808,0.330279553263216,6.6991685388249,2.0960873341344e-11,2.57064150658243e-07 +"79966",846.039375859004,-0.723181353530268,0.292087136188222,-2.47590963083101,0.0132897211644582,1 +"23256",2078.27518533143,0.157911055691775,0.110962905531751,1.42309770039853,0.154707834909618,1 +"152579",801.340054899105,-0.326328832027866,0.117521107372077,-2.77676784473017,0.00549023782408261,1 +"6447",184.854871058467,1.50170136219897,0.368408621887353,4.07618408740211,4.57807804673723e-05,0.561455491651853 +"85477",751.246784381108,-0.28885452264591,0.471215565868577,-0.612998685884821,0.539877208634944,1 +"132320",385.34499733636,-0.0292041524825001,0.17573226016728,-0.166185494084584,0.868010974754159,1 +"22955",2375.44782261634,-0.984320985936803,0.257876216335762,-3.81702896034115,0.000135068321378693,1 +"6322",408.931800346203,-0.367219296518851,0.185702230474237,-1.97746303628699,0.0479893147390693,1 +"6324",361.302694454225,-1.75174623783224,0.303244945604482,-5.77667085049134,7.61931305012686e-09,9.34432552467558e-05 +"6330",394.485603506237,-2.63417456762383,0.351649251757228,-7.49091475230102,6.83952321529504e-14,8.38799127123784e-10 +"6331",212.792351751104,0.13876876484302,0.411394890883387,0.337312805574814,0.735881107349938,1 +"6332",413.934434187088,-5.44376945496397,0.503472021589219,-10.8124567434365,3.00512408158857e-27,3.68548417366022e-23 +"6335",127.352352365054,-0.606577409048312,0.411551157808735,-1.47388094417709,0.140513649298095,1 +"79005",190.497936935208,0.589726552196317,0.153732050086606,3.83606770262994,0.000125019957113988,1 +"6337",3835.04096756427,0.244148752918468,0.55403756378898,0.440671840459285,0.65945058554019,1 +"6338",3884.92278025086,0.594167967311598,0.53151495212939,1.11787629855228,0.263619829049365,1 +"6339",189.654744976178,0.0167858329576171,0.364194578625137,0.046090287837301,0.963238286966375,1 +"6340",1191.64785135853,2.77699527330509,0.640109428903838,4.33831333817498,1.43580355740968e-05,0.176086948280723 +"6341",1004.55484555747,0.224891680520539,0.167784221877682,1.34036250848718,0.18012751837729,1 +"9997",99.1910195347892,0.506614942086424,0.243657801484568,2.07920673583895,0.0375983528181797,1 +"60592",2483.70602398318,-0.117560788682134,0.127366898350172,-0.923008962335904,0.356002534707226,1 +"6342",6236.4782601229,-0.180135472074915,0.11824101509067,-1.52346012876144,0.127643628582782,1 +"59342",6496.68408776511,-0.118516287932756,0.28296435014896,-0.418838231283785,0.675334362090619,1 +"23513",6042.87624816718,0.514484179806991,0.157775572206232,3.26086080761917,0.00111074551275765,1 +"9805",3485.02884796197,-0.522840641648259,0.206898716069723,-2.5270366659601,0.0115029492830516,1 +"90507",1520.0305387306,-0.216195701703896,0.182098032859578,-1.18724896863994,0.23512943061096,1 +"79634",839.347469304796,-0.0286101867109988,0.162826248986235,-0.17570991709953,0.860521843807327,1 +"80274",203.333786720557,-2.38088125045774,0.389591739838507,-6.11122107323081,9.88716885314316e-10,1.21256238814948e-05 +"57758",6169.62615563019,-1.70927916621575,0.542490392402621,-3.15080080708078,0.00162823494213985,1 +"222663",429.339278410473,-1.29188233320696,0.453265622582353,-2.85016614727326,0.00436963966756893,1 +"57410",4645.03697551497,0.272846716705657,0.094098861583378,2.8995751076531,0.00373668808926732,1 +"55681",1661.23794366531,0.326611150910226,0.137166823886222,2.38112352285088,0.0172599232551322,1 +"57147",767.61099364216,0.400050288253994,0.17307365101376,2.31144536392884,0.0208082677106574,1 +"55153",1395.16202352677,0.0816657424332513,0.113538503521999,0.719277953292982,0.471969677076697,1 +"6382",55956.9414604129,1.46147648259249,0.580054406860952,2.51955069266946,0.0117504719109607,1 +"6383",4671.73924098133,-1.86456902405271,0.258764232243029,-7.20566752170572,5.77601829947246e-13,7.08370884247302e-09 +"9672",6032.06549231804,-1.29634989000238,0.292914339087259,-4.42569624294221,9.6131717644252e-06,0.117895938518911 +"6385",16681.7519015583,-0.210541329875824,0.30851651178385,-0.682431318370835,0.494966258021139,1 +"6386",6094.60259640419,-0.695284101669498,0.140254788765896,-4.95729313620813,7.14820857438163e-07,0.00876656299562163 +"10806",819.895191456439,-0.00896016684013456,0.110451554388691,-0.0811230488310084,0.935344095779269,1 +"6388",2116.43583037403,0.287382510336624,0.122311059159184,2.34960364428376,0.0187934111533396,1 +"23753",975.988810432489,0.997475248609877,0.206945621091634,4.81998721861431,1.43567419101631e-06,0.017607108278624 +"51150",6210.97943791919,0.115389038536404,0.107421058410447,1.07417521521257,0.282744158551867,1 +"6389",5467.08632169043,-0.169403776479328,0.169443820149019,-0.99976367583276,0.317424888436701,1 +"644096",657.881613853481,0.54659901533701,0.21924694348461,2.49307473413137,0.0126642187619939,1 +"54949",1611.08819998547,0.114000645024714,0.101994849830433,1.11770981784121,0.263690948256331,1 +"255812",609.363485881748,0.295170225964639,0.14673055692143,2.01164796316213,0.0442570596146302,1 +"727956",388.053766934004,0.236573214635256,0.164402962699757,1.43898388903916,0.150155087483023,1 +"728609",366.891385257333,-0.132618957227075,0.173327016292325,-0.765137253637402,0.444189818458047,1 +"6390",3115.30888684874,0.134735438275561,0.114571580905857,1.1759935335646,0.239597460085964,1 +"6391",2410.28999485429,0.329198716546602,0.162838581528065,2.02162603885042,0.0432149999225784,1 +"6392",2505.56604953469,-0.561887631491485,0.139327860408164,-4.03284475800765,5.5105685098402e-05,0.675816122046802 +"221935",1920.96382794632,-0.506067711208579,0.338014427873858,-1.49717784057856,0.134346989686266,1 +"54549",378.631516919993,-1.46085754913668,0.459391675288233,-3.17998263294629,0.00147283879012329,1 +"56948",378.727441586929,-0.162370363099784,0.130151736977065,-1.24754664725217,0.21219712730177,1 +"93517",495.736040279721,0.493788501428545,0.488766864686316,1.01027409406211,0.312363989152416,1 +"10993",360.325059564155,0.956837393740755,0.449470347318424,2.12881094258903,0.0332699052261875,1 +"113675",604.110989359661,0.684603166544083,0.239722830037782,2.85581129855752,0.00429270180805472,1 +"23478",4996.79511951932,0.213878140361139,0.115696661249852,1.84861117037128,0.0645139785664831,1 +"90701",1272.47255425989,0.206739192053649,0.130011676437823,1.59015865126946,0.111799048218313,1 +"6396",4184.9595352711,0.524954628431951,0.153555830046953,3.41865644743958,0.000629311286292798,1 +"6397",3180.32593807809,-0.158653929304847,0.181908370435312,-0.872163985226099,0.383118923823022,1 +"23541",725.164433596582,1.23081358731858,0.302983753494345,4.06230886350659,4.85897286120549e-05,0.595904431698242 +"9919",5847.0973522545,-0.0678658800000101,0.131249619767842,-0.517074869398121,0.605103895752364,1 +"89866",319.387282899141,-0.0487054010839346,0.297572950719213,-0.163675498617119,0.869986606670918,1 +"26984",806.382887952036,0.249136867819932,0.138507722502571,1.79872185693695,0.0720626897016893,1 +"9554",2986.33256739514,0.207859192921097,0.109838085623711,1.89241456404467,0.0584357670593575,1 +"9117",1483.63988688131,-0.151541957514912,0.178761357787529,-0.847733309874669,0.396586511153523,1 +"10484",4715.31015823462,-0.361094532050883,0.211509889241215,-1.70722292629578,0.0877806253027327,1 +"10483",2978.06932365421,0.708490636591143,0.198290428116563,3.57299463882676,0.00035292198928765,1 +"11196",2389.14703897265,-0.0287842869502889,0.107533093714841,-0.267678404441889,0.788946874146827,1 +"10802",1661.90458978428,0.13167776063703,0.158225300201683,0.832216848185383,0.40528655557625,1 +"10427",2137.75015977035,-0.384986174883306,0.124072478569874,-3.1029135495709,0.00191625608339917,1 +"9632",6087.04955916644,0.0571778073549586,0.154441700359956,0.370222596757837,0.71121664113406,1 +"9871",2562.70199974764,-0.0550819598923761,0.16777560408987,-0.328307325675736,0.742679305793815,1 +"22872",8074.90607103769,-0.220343978940893,0.0970421631178277,-2.27060044687332,0.0231711763983912,1 +"25956",242.931372245227,-0.420272105456952,0.275188457243855,-1.52721560223194,0.126707407852213,1 +"29927",17756.2317993663,0.790367009052025,0.143505120552939,5.50758750633194,3.63784592077532e-08,0.000446145423723885 +"55176",352.036990471036,0.647758867442107,0.163724677284588,3.95639116952519,7.60905288425957e-05,0.933174245725594 +"10952",1841.37368847851,0.178043386639544,0.143065085458547,1.24449222582076,0.213318458819816,1 +"23480",6569.73746084731,0.909565194320278,0.272160600079461,3.34201641991794,0.000831721404457852,1 +"7095",7147.44521387646,-0.379300346080975,0.116466914930026,-3.25672184507385,0.00112706819194549,1 +"11231",3694.39437129322,-0.190429673739876,0.109514119549872,-1.73885956005112,0.0820594690250607,1 +"79048",1984.34689568337,-0.0630984989379213,0.203615198266818,-0.309890909298612,0.756643916078012,1 +"9728",2321.79270667282,-0.688076325337948,0.126344301729435,-5.44604161738497,5.15030910340389e-08,0.000631633908441453 +"6398",1347.34270432378,-0.62000115011876,0.366032171568717,-1.69384332383025,0.090295059096382,1 +"81929",2023.81388342364,0.089629864692241,0.18217386008287,0.492001786927439,0.622718080308957,1 +"6400",4784.48224207759,-0.152724767042314,0.121903309248133,-1.25283528383503,0.210265657910004,1 +"23231",2933.16511896397,-0.15642879928795,0.312614846932156,-0.500388259940509,0.616801718267656,1 +"6401",1944.59302422394,-2.81264846292088,0.454948312799982,-6.18234727723336,6.31554002027965e-10,7.74537828087097e-06 +"8991",2739.15377929985,-2.68367873755828,0.355632544482737,-7.54621245775371,4.48098839255122e-14,5.49548416462482e-10 +"6402",1406.60457645773,-0.157054928346204,0.419896242359953,-0.374032707374339,0.708379982411379,1 +"6403",596.583656461468,-2.56591324096865,0.36137606322597,-7.10039624114277,1.24399701610833e-12,1.52563794055525e-08 +"6404",900.641026162477,-0.954573041173477,0.301196886556357,-3.1692659644902,0.00152824479491927,1 +"10371",704.099920230112,-1.67222992905103,0.368407707129363,-4.53907422860684,5.6501745030399e-06,0.0692937401052813 +"7869",1127.02577213942,-2.1550527014647,0.317628660627191,-6.7848181496258,1.16232824395516e-11,1.42547935838661e-07 +"10512",8728.25606362644,0.12184455673959,0.376645619744439,0.32349920018256,0.746317213155962,1 +"223117",491.17257709512,-0.939676910755549,0.396588448057891,-2.36940061002075,0.0178169430914092,1 +"9723",477.889958714228,-3.8188210504365,0.484824607082088,-7.87670632771723,3.36123668390877e-15,4.12222066914571e-11 +"6405",6017.68679815445,0.468903031466281,0.374698753295576,1.25141337499032,0.21078370001968,1 +"56920",751.619017297694,-2.2193550506701,0.241163655900681,-9.20269284516113,3.49089636152489e-20,4.28123529777412e-16 +"64218",1960.66152583452,0.40609449809294,0.412303713351839,0.984940190791829,0.324653450113674,1 +"10509",11405.5279471007,0.29543680156185,0.297572696364633,0.992822275602309,0.320796572367331,1 +"54910",3466.47753165519,-0.620574123600146,0.185006829682532,-3.35433088964899,0.000795571655647242,1 +"10507",1855.36817640492,0.135064966706924,0.32657310151068,0.413582643769904,0.679179786324177,1 +"10505",503.519558685034,1.17804971074634,0.233701791606741,5.04082447398902,4.6353047508445e-07,0.0056847377464357 +"57715",238.387185365346,0.219092453648682,0.339285900375299,0.645745824999901,0.518443978037627,1 +"9037",5236.9218543548,-0.26043634496805,0.452121055889144,-0.576032329341253,0.564593329721982,1 +"54437",4029.65254678315,3.60361603425846,0.372074142963423,9.68520952721168,3.48493216744331e-22,4.27392081015247e-18 +"57556",1676.60102018874,0.0544682009361588,0.35873520357009,0.15183400010397,0.87931786481247,1 +"10501",915.303256391507,-0.840205471089396,0.276977672572107,-3.03347725932913,0.0024175293103115,1 +"10500",601.596559027856,-0.632185127207125,0.318747230013041,-1.98334312483676,0.0473291154276619,1 +"80031",178.789734101598,-1.35289750180957,0.319206064149159,-4.23832017545064,2.25198455685235e-05,0.276183386052372 +"8482",2129.03707560655,0.756764947263903,0.46795291605658,1.61718181743824,0.105839039983146,1 +"29843",995.517646058405,0.501872575496889,0.131515080391259,3.81608385900545,0.000135586440496203,1 +"59343",1876.63184269025,0.00279965801000525,0.144330736628506,0.0193975176417988,0.984523990671857,1 +"26168",648.307225822761,0.11057788203641,0.158861561238475,0.696064429773648,0.486388481253924,1 +"205564",2020.34648248873,0.298909263772427,0.16348577303055,1.82835030982525,0.0674969937977929,1 +"26054",3383.56162717997,-0.251953598104876,0.127770274649297,-1.97192655957292,0.0486179908412648,1 +"57337",898.475759415351,-0.276277058346722,0.144989699485281,-1.90549438565302,0.0567158365601375,1 +"123228",100.076115153997,-0.316404462968544,0.201695912887382,-1.568720250396,0.116713137912136,1 +"22929",1831.36985466906,0.387477392173852,0.117509189037404,3.29742205990814,0.00097576751904031,1 +"22928",3071.23614799401,0.56295529532685,0.117046790293359,4.80966025566265,1.51187043730726e-06,0.0185415790431363 +"51091",450.640841983199,0.041700044892749,0.149356343593629,0.279198351334892,0.780092608797621,1 +"84947",531.226474762314,0.167578031921456,0.173549032331059,0.965594735220349,0.334247010793846,1 +"26135",10265.4341980219,0.198487437974713,0.130190316590388,1.52459447962789,0.127360275163814,1 +"10169",16149.3801144771,-0.0441219388359692,0.153247871721831,-0.287912245307115,0.77341391322842,1 +"26297",821.087973887529,-0.721830841745826,0.15915461581961,-4.53540626533866,5.74927081209419e-06,0.0705090572395232 +"253190",94.1779450136282,-0.496283744045123,0.192226029942554,-2.58177180371168,0.00982945553749127,1 +"57515",9483.90801590943,-0.784011709447356,0.118217193280884,-6.6319601040142,3.31258127362926e-11,4.06254967397893e-07 +"347735",16012.273541029,1.68472591754122,0.559588369885866,3.01065212968033,0.00260687323325463,1 +"10955",5527.27277744938,-0.0431226678760416,0.136250553482796,-0.316495359275634,0.751626547045151,1 +"256987",4776.69321435428,0.523358861714384,0.347024695956584,1.5081314609951,0.131520884598283,1 +"27230",7758.13948697334,0.182012691865747,0.204350895455449,0.890687028603838,0.373097095555302,1 +"387923",94.2047337430438,-1.8835603772294,0.313321332252403,-6.01159315801726,1.83708892919623e-09,2.25300586276626e-05 +"5265",1487.22587518043,1.06129152094522,0.468290472677678,2.2663102985563,0.0234323913197232,1 +"12",1862.94143151588,-3.67155182624319,0.482705186437001,-7.60619924833223,2.82274007555203e-14,3.46180842865701e-10 +"1992",6687.70991376799,-0.912782156608675,0.377414338382373,-2.4185147827741,0.0155840123302427,1 +"5055",3235.02625095073,0.0257178987241714,0.783098279238657,0.0328412147057389,0.973801211343336,1 +"6317",8049.37329678708,0.209404984926669,1.08941240385855,0.192218285917239,0.847571222886998,1 +"5268",9272.79982227031,0.226692355735362,0.752070121291738,0.301424493963409,0.763090818846407,1 +"5269",4896.29159972763,-0.487467076505859,0.189536239771671,-2.57189378185986,0.0101143917985596,1 +"5271",1115.09971140556,-0.665121853572049,0.329897237322732,-2.01614860121236,0.0437844392116706,1 +"5272",908.441483590949,-0.0693886358428375,0.284963275038909,-0.243500275020924,0.807617872083521,1 +"5054",12914.2237519826,-0.228380390985845,0.358107020460061,-0.637743406126035,0.523640725060858,1 +"5270",2933.15937933083,-1.77773646605075,0.417270162300793,-4.26039680443111,2.04064286578025e-05,0.25026444105929 +"5176",7362.23695700194,-1.78577963888778,0.361614592070453,-4.93835060322968,7.87861017083716e-07,0.00966232751351469 +"5345",179.258602030916,-0.677897280122925,0.323623183970056,-2.09471173173319,0.0361966257124291,1 +"710",13435.0374792167,-1.47594131066634,0.284508802086442,-5.18768241911162,2.12927313634553e-07,0.00261134057441416 +"871",12655.6652979697,0.776622582704805,0.237583245004937,3.26884407479436,0.00107987792809582,1 +"5274",192.208004576697,-0.668412551437964,0.235360497699181,-2.83995214988148,0.00451203013548048,1 +"29950",2514.78486337276,-1.4316220907216,0.239350473961675,-5.98127953133206,2.21391564120041e-09,2.71514614236818e-05 +"9792",2982.29233884842,-0.330204712122694,0.191883618390149,-1.72085931510476,0.0852763558715558,1 +"29946",2259.4378692174,-0.577337863365776,0.182333288060511,-3.16638760539532,0.00154344979229697,1 +"56256",158.994881707817,0.236581867934614,0.287345373265995,0.823336270375965,0.41031679318052,1 +"27244",1375.00048723102,-0.267413337693724,0.218271620821898,-1.22514020231665,0.220522400143203,1 +"83667",1203.66831723666,0.0553009263075653,0.281453199936838,0.196483558616408,0.844231700178215,1 +"143686",310.166028345035,-0.220597095536719,0.388881399866023,-0.567260598251083,0.570537142586661,1 +"91404",3193.76121864472,-0.42160982159036,0.265174179853402,-1.58993542215702,0.111849362175382,1 +"6418",13123.1445282519,0.328335653837522,0.137602654897969,2.38611423653838,0.0170274609168088,1 +"26040",1298.21954711661,-1.3990907938993,0.26768929839763,-5.22654735274873,1.72704604061708e-07,0.00211804926421279 +"9739",2152.30693636279,0.189325652142864,0.150426442592254,1.25859289683563,0.208177413986183,1 +"23067",2416.350608088,-0.412883279836247,0.185933954179544,-2.22059107847269,0.026378670621195,1 +"29072",4271.24580991392,0.0264706675989616,0.132568317612398,0.199675669690222,0.84173424334044,1 +"84193",3726.3056316325,-0.532995403955404,0.145377516123034,-3.66628498112683,0.000246099661315133,1 +"54093",780.720766927526,0.478663429096115,0.156346412639805,3.06155684044298,0.00220189181434753,1 +"55209",5023.52158381702,0.424253660762723,0.120592288496197,3.51808283973399,0.000434676646696888,1 +"79918",607.557523494707,0.435482322709454,0.181683340331534,2.39693040602837,0.0165330635332983,1 +"80854",4664.51770009769,-1.14329575830844,0.175721584700974,-6.50629096165952,7.70289640364221e-11,9.44683214942681e-07 +"133383",207.296466009839,-0.501015669921955,0.165668732479511,-3.02420174539525,0.00249290138768289,1 +"9869",2138.73742658076,0.537401725682044,0.108401051467574,4.95753240772576,7.13941362745347e-07,0.00875577687270893 +"83852",614.657586473417,-0.481658465987776,0.108223383877736,-4.4505951369246,8.56326471052768e-06,0.105019878409912 +"6419",856.314805617793,-0.28754968978161,0.223734437497042,-1.28522766990402,0.198712737140548,1 +"23064",4322.74886925121,-0.448343025888739,0.14846838083861,-3.01978793973716,0.00252951724445872,1 +"26470",2263.68851599309,1.96901319556207,0.456948912836359,4.30904449107903,1.63961384969224e-05,0.201082242526257 +"7536",11935.2532344906,-0.387243296280884,0.152168373538415,-2.54483429950787,0.0109329604792069,1 +"10291",6671.29327593593,-0.222021699798773,0.126341137305253,-1.7573191482545,0.0788634257707869,1 +"8175",3432.02378890092,0.462202371248018,0.142598449513496,3.24128609269537,0.00118991698923159,1 +"10946",4031.41292158108,0.203396639873064,0.0890560772007221,2.28391645204214,0.0223764415483399,1 +"23451",13036.9383306222,0.222638385356935,0.118219131204205,1.88326866463231,0.0596639677315518,1 +"10992",12471.4250425669,0.224685452844939,0.0879710899054421,2.55408285933989,0.0106467916785859,1 +"23450",9285.59554665239,0.576365087518189,0.164976672650384,3.49361566249801,0.000476526511505054,1 +"10262",4026.28848544652,0.348533325440246,0.138041546923119,2.52484366633735,0.0115749768154551,1 +"83443",3207.50799462907,0.0413583107061967,0.107265017380811,0.385571286110612,0.699814202243812,1 +"9814",1114.4910829613,0.205439310523865,0.170458605487876,1.20521524821741,0.228120217383383,1 +"51460",910.511224738004,0.293106122786494,0.151288601598363,1.93739726383765,0.0526968008503853,1 +"57713",358.310807776862,-1.15715437103177,0.259555402478601,-4.4582172437238,8.26441214053289e-06,0.101354750491495 +"2810",30844.2941873856,1.20306924900123,0.674149725568917,1.78457277867459,0.0743306400823554,1 +"6421",12329.0063514346,0.18390591022562,0.162444192006354,1.13211748572967,0.257585044462546,1 +"119392",231.63578823682,-0.334280691783942,0.157726174633827,-2.11937360783648,0.0340589054198134,1 +"6422",2683.75769986856,-4.27251667203072,0.457262938205808,-9.34367584828778,9.30464122979351e-21,1.14112120042188e-16 +"6423",12930.3628051855,-1.98144470935373,0.50971417833468,-3.88736431822915,0.000101338599189488,1 +"6424",2261.80375331422,0.57031693283769,0.542126033396669,1.0520006376827,0.292799257062594,1 +"6433",2032.11298429835,0.179746516642991,0.107665799931958,1.66948573044167,0.0950211560226375,1 +"113402",1572.93354442209,0.432665254543484,0.155563016991939,2.7812860852776,0.00541440002268892,1 +"375035",280.867715793214,0.611425992684032,0.244382423257497,2.50192294737905,0.0123520804717741,1 +"84826",626.622899997593,0.675030654236987,0.168481258816006,4.00656226681075,6.1608889051229e-05,0.755571415324273 +"94081",1852.39161781444,1.05116448062817,0.181817971842919,5.78141132019841,7.40765264855663e-09,9.08474520818985e-05 +"118980",318.068582530625,0.426040424945063,0.216732466464795,1.96574344349219,0.0493282537823996,1 +"81855",1707.28892428827,-0.0844405315686092,0.216299410312995,-0.390387248150238,0.69625021583404,1 +"119559",1067.21599366085,0.129048280969496,0.13852887049789,0.931562355960029,0.351562745086416,1 +"94097",763.825140014023,0.45452353914838,0.217559431328791,2.08919253177065,0.0366903954381674,1 +"6442",1068.35403192607,-4.80400376764275,0.446534724363121,-10.7584102770385,5.40952792153247e-27,6.63424504296742e-23 +"6443",2536.36996499361,-1.46955043837891,0.303786534462428,-4.83744429613836,1.31519226141606e-06,0.0161295178940065 +"6444",1317.69602046325,-2.28080248993496,0.429206349204254,-5.31399988411996,1.07244686166167e-07,0.00131524883114188 +"8910",1495.87399081887,-1.66226690973009,0.318556017903232,-5.21813061536647,1.80737995547763e-07,0.00221657077739776 +"84251",130.463753264981,0.125010711838721,0.286858755935245,0.435791863599034,0.662987747663965,1 +"6446",9805.17127566769,-1.6674060111949,0.385423340108309,-4.32616771658492,1.51725915610094e-05,0.186076662904219 +"259230",1611.34428175891,-0.419208462671876,0.151746142351919,-2.76256421530425,0.00573492793782775,1 +"166929",1646.26680601187,-1.5091035721259,0.302723120935898,-4.98509518354711,6.19313170333867e-07,0.00759525672097454 +"8879",7121.9090781817,0.88739834626537,0.272632121282681,3.25492954421633,0.00113420499499616,1 +"81537",876.521584633288,-0.00549432273923176,0.264880039073704,-0.0207426832102774,0.983450920056911,1 +"130367",455.432808057693,0.012673661274974,0.6015651502548,0.0210678116403616,0.983191561783195,1 +"6448",1580.79063962598,-0.110463349245196,0.182028148395341,-0.606847623397698,0.543952039983918,1 +"129049",276.841336658716,-2.03849615308007,0.443681058386734,-4.5945079568919,4.33771577126084e-06,0.0531977462187429 +"9905",2620.07408397226,-0.647432549799493,0.166594383934685,-3.8862807647425,0.000101791770882268,1 +"27352",3522.79154867732,0.0126075354967202,0.11900713155805,0.105939327598787,0.915630490711702,1 +"6449",4036.52574825966,0.0568403333329195,0.114209324577197,0.497685574652881,0.618705677122205,1 +"54557",388.476689507474,-0.459550445155774,0.157099285939245,-2.92522300409115,0.0034420945969117,1 +"25970",2777.73372439805,-0.0203343370976367,0.126752284462889,-0.160425803635833,0.872545664492103,1 +"10603",225.967714833306,0.341277959881964,0.253567327621627,1.34590667923597,0.178332614502734,1 +"10019",1240.51163294588,-0.531132995770013,0.169983124006736,-3.12462192275608,0.0017803372426985,1 +"9047",369.07274323966,0.928405750127183,0.366567263331416,2.53270229777122,0.0113187036612526,1 +"10045",1529.4830571949,1.02850208718142,0.466181281093831,2.2062277678078,0.0273680559701927,1 +"10044",590.143777332392,-0.938442543030583,0.256627488462585,-3.65682783497841,0.000255355764691694,1 +"63898",1535.75552776614,0.563302115497758,0.379360955046873,1.48487109177632,0.137577975130594,1 +"6450",735.517058479768,-2.10353317965189,0.410898452764497,-5.11935045143018,3.06589774985978e-07,0.00376001700042804 +"6451",7245.27447304825,-1.62027167367574,0.238969502807642,-6.78024456945024,1.19972613739709e-11,1.47134413490379e-07 +"83699",2532.52577166591,-0.445511151735448,0.261114132085091,-1.70619318141795,0.0879721178519607,1 +"83442",11711.5340622041,0.16021442033082,0.218961340761915,0.731701860124373,0.464350560825826,1 +"23616",3362.67981115249,0.761353939924846,0.366615220387986,2.07671121542393,0.0378282208399209,1 +"6452",1853.29553114341,0.552454513005876,0.227687271219878,2.42637416683855,0.0152505379374486,1 +"23677",1897.71888425393,0.222614716251691,0.215479225811861,1.03311451678437,0.30155031059185,1 +"9467",564.491998218301,-0.530502744647636,0.229935319072285,-2.30718250153149,0.0210446481754871,1 +"80851",1698.34501714787,0.447269165168309,0.187542344298601,2.38489695135823,0.0170839060382132,1 +"152503",4046.98913323366,-1.28060341385903,0.242919309283875,-5.27172342797385,1.35148631250162e-07,0.00165746281365199 +"79729",251.411347091055,1.29888461921641,0.34007605353649,3.81939453163245,0.000133779644292773,1 +"6455",5799.26747208842,0.228825307177883,0.18310887623524,1.24966802201283,0.21142084344847,1 +"6459",319.503372668951,0.343815539992097,0.17219932211406,1.99661378320852,0.0458671543996522,1 +"51100",6194.91116567309,-0.273642859002313,0.104855646667356,-2.60971027979463,0.00906189330739858,1 +"56904",5859.98063448692,-0.319368529583721,0.218054491457155,-1.46462715557718,0.143022668940475,1 +"30011",2203.21401644067,0.690769162183695,0.269019369328669,2.56773021179661,0.0102366791994204,1 +"9644",5794.43973730163,-0.96448591641116,0.161909302938752,-5.95695181750001,2.56985967634617e-09,3.15167590707094e-05 +"285590",3249.89092639497,-0.25480250151869,0.212766971865659,-1.19756604742005,0.231086000611043,1 +"57630",1457.41796006888,-0.421635947691207,0.223135408848579,-1.88959676936497,0.0588119095790484,1 +"153769",401.018453787696,0.78132874495527,0.461871190808228,1.69165940743787,0.0907109323268603,1 +"344558",624.422810311993,-1.34298720979826,0.27592667488351,-4.86718875717704,1.13196903637725e-06,0.0138824682621306 +"54436",1314.72335871072,-1.01503875208923,0.38794990487243,-2.61641706658751,0.00888579472999028,1 +"79628",534.636696431609,1.68455450851594,0.462832502753824,3.63966337388351,0.000272994688961648,1 +"26751",3133.74466225673,0.593090299912316,0.355696891737787,1.66740366218755,0.0954341661643246,1 +"22941",556.090586234875,0.276590925966468,0.263514722968398,1.04962228618869,0.293891806507836,1 +"85358",1066.66924323532,-0.785364573442091,0.205973457615255,-3.81294066980757,0.000137323086292182,1 +"81858",2695.94914826314,0.26828416652632,0.117798517266173,2.27748339072992,0.0227573753567678,1 +"6461",1963.47462370322,-0.758846692550102,0.220066720580855,-3.44825737643186,0.000564216118342627,1 +"6464",6889.19359112919,0.0507294660753327,0.185323975880105,0.273733961482415,0.784289076715279,1 +"25759",756.482215555032,-1.15029294321934,0.28916888427109,-3.97792779855581,6.95184728918028e-05,0.85257455154507 +"53358",813.855202096199,-0.175111409635414,0.261069349561589,-0.670746718944511,0.502381895171082,1 +"79801",516.633054861847,2.32445888124976,0.413686165179693,5.61889441054933,1.92183255705021e-08,0.000235693544796638 +"126669",396.347121016615,-1.82305836443867,0.300469486249402,-6.06736606500354,1.30024968715262e-09,1.59462621632397e-05 +"90525",396.953498071627,-1.43330183977896,0.242391502848203,-5.91316866695845,3.35588216621869e-09,4.1156538886506e-05 +"387914",281.659560740291,1.81808655853304,0.468360019614031,3.88181416516144,0.000103680096801335,1 +"149345",633.243045724303,0.135486335793269,0.303315651490265,0.446684287894777,0.655103027931429,1 +"51246",13198.1431024875,0.208422779522965,0.192242988390449,1.08416323148106,0.27829243103685,1 +"92799",5107.56350977637,0.823086961909762,0.179868318840023,4.57605301043495,4.7383052804932e-06,0.0581105759599686 +"6470",1474.38696378941,0.433839403678968,0.249463801246549,1.73908760113135,0.0820193552463541,1 +"6472",4220.20738399987,1.23197586329778,0.164239454987962,7.5010956617463,6.32865809508841e-14,7.76146628781642e-10 +"8036",2262.94398190084,-0.535614084427879,0.127098650097552,-4.21416029215715,2.50709190458836e-05,0.307469751178716 +"23729",744.63056220384,0.522750062097635,0.15896412661644,3.28847818199236,0.00100730591591027,1 +"257218",475.701820747176,0.0435321137359246,0.234362711229777,0.185746757696638,0.852643358982673,1 +"55164",829.423541308005,0.330465346800294,0.104970419487385,3.14817591864541,0.00164292787187007,1 +"134549",2373.50431453118,-0.79858027849863,0.416595972811632,-1.9169179027559,0.0552483622856245,1 +"357",1028.66927166087,1.00279238461502,0.311388771796512,3.22038710268694,0.00128017604682552,1 +"57619",1957.05032240705,-1.21698197615248,0.296454030392402,-4.10512879363327,4.04089681546026e-05,0.495575585448046 +"57477",633.388722728936,-0.482152096045861,0.217784309100223,-2.21389730985614,0.0268358438454933,1 +"54414",1224.71409085131,-0.0423042934975434,0.267560470681799,-0.158111149190848,0.874369215338008,1 +"6477",536.570268652446,0.229214327963177,0.138607881805735,1.65368898923389,0.0981907209904748,1 +"6478",2109.5985911361,-0.259152104788144,0.175786529088527,-1.47424325476973,0.140416107503184,1 +"54847",609.307108515008,-0.203657051595669,0.364701077745233,-0.558421852917957,0.576556353882379,1 +"51092",1675.5443414275,-0.705361990177562,0.143505639842923,-4.91522138746345,8.86821869939742e-07,0.010875983412941 +"59307",1503.11103506201,-0.126243488394869,0.153835102068491,-0.820641626633839,0.411850429564399,1 +"6614",595.356304460776,-0.735124272287307,0.328268213423905,-2.23940132558011,0.0251298152030548,1 +"89790",190.895165038296,-0.165260894259902,0.359847757774651,-0.459252255125607,0.646053029517687,1 +"10280",3110.78802505222,0.501193973432474,0.15862586086289,3.15959813050715,0.00157986887482157,1 +"150094",17443.2122520017,-1.0181862998521,0.341667416124257,-2.98005092613751,0.00288200466041292,1 +"23235",1455.55441297629,-0.958934792244361,0.177300252723317,-5.40853595815687,6.3542030925333e-08,0.000779279467268284 +"23387",1856.44036354806,-0.805119632353784,0.163307789064699,-4.9300749031316,8.21980944703907e-07,0.0100807743058487 +"80143",1727.41936682198,0.755449516238727,0.143184389249657,5.27606061105949,1.31990448497392e-07,0.00161873086037201 +"64374",2223.45663803183,-0.35854033283362,0.159295679203132,-2.25078504719776,0.0243991550523538,1 +"6493",449.418770067254,2.15987454423671,0.219760889834122,9.82829358703002,8.50475785729618e-23,1.0430235036188e-18 +"25942",3914.09452446408,-0.0978105320609434,0.122928005941068,-0.795673299279205,0.42622195013468,1 +"23309",2453.88953878278,-0.0609624734295325,0.112887947380103,-0.540026414195189,0.589178816381323,1 +"6494",2486.18332785937,0.13118970278219,0.139824173914748,0.938247651383784,0.348117155158882,1 +"26037",2138.28301519085,0.381374134183063,0.162780060699473,2.34287991136189,0.0191355411139546,1 +"57568",2196.22288608723,-0.224688102726815,0.233695709309206,-0.961455832419788,0.336323022986946,1 +"23094",2586.03859508992,0.860768807616986,0.217067386619231,3.96544511371902,7.32591089360012e-05,0.898449711991119 +"140885",1947.14350603259,-0.178326137439378,0.249951981748227,-0.713441582627674,0.475572549562622,1 +"23411",1338.80033140416,-1.00892380131532,0.143399950794629,-7.03573324624261,1.98215832416716e-12,2.43091896875861e-08 +"22933",3010.26573426394,-0.208366710253177,0.169917539232765,-1.22628135502682,0.220092815241346,1 +"23410",808.712062079626,-0.405782495344209,0.156919869306282,-2.58592170091722,0.0097118989816725,1 +"23408",951.06427364849,0.231246242922893,0.154870213938962,1.49316151273629,0.135394913943726,1 +"51548",974.341122632094,0.463136507283964,0.110359499768632,4.19661658719843,2.70932021431216e-05,0.332271031083244 +"51547",1445.95659219057,0.959790338113709,0.231954432428612,4.13784004066877,3.50590642211552e-05,0.429964363608247 +"10572",2592.07811238908,0.2073139965329,0.11087044589746,1.86987609596734,0.0615010259869797,1 +"6495",404.54568215376,2.05696057632621,0.374938517984487,5.48612766536651,4.10840032532744e-08,0.000503854215898158 +"10736",411.22043097995,0.494887792486942,0.443807848367605,1.11509472918791,0.264809829949426,1 +"51804",474.921583057118,2.10570859698651,0.326784179423937,6.44372870405935,1.16573386719088e-10,1.42965601472289e-06 +"147912",1238.52160424039,-0.201375337699438,0.201379787833936,-0.999977901781773,0.317321202224826,1 +"220134",379.841041413172,3.13775223324624,0.379090781462276,8.27704704699734,1.26267346926872e-16,1.54854274271115e-12 +"348235",1449.0725881069,0.389129811093746,0.185754043697989,2.09486589549791,0.0361829153214826,1 +"221150",378.393346989206,3.00000075131203,0.393021617973121,7.63316981590871,2.29050849640348e-14,2.80907961998922e-10 +"8631",391.228039129422,-0.55891569692824,0.406430978137128,-1.37517986323293,0.169075689583293,1 +"8935",2969.08943587645,-0.354128536170507,0.202750119242088,-1.74662553834393,0.0807023142836858,1 +"6497",4412.34650345188,-0.564621181630734,0.161447652789441,-3.49723995286019,0.000470098785680157,1 +"6498",5880.96097131513,0.790156130379469,0.287013840646259,2.75302448341969,0.0059047480167813,1 +"6499",2827.76867455178,0.316643085685323,0.115396014373784,2.74396899584133,0.00607012706358393,1 +"6500",7461.6961928203,-0.463872053735741,0.103949980563068,-4.46245445379667,8.10261546638648e-06,0.0993704760797638 +"728622",1979.68581104847,-0.522833546338522,0.122241858445361,-4.27704186591875,1.89393194911623e-05,0.232271814239615 +"6502",1463.31683847512,1.67705024160704,0.240286231188943,6.97938551580316,2.96473907700728e-12,3.63595600404172e-08 +"6503",721.858192784641,-0.908955104194924,0.306914776307868,-2.96158795327321,0.00306057065711376,1 +"84174",113.829488703446,-0.857952423028526,0.445492224688617,-1.92585274328458,0.0541227635297181,1 +"122060",212.322304695203,-1.55153633916103,0.366004196404911,-4.23912172155688,2.24395969749551e-05,0.27519921730085 +"57606",3543.01023311722,-0.911635136178957,0.158128239378716,-5.76516338739216,8.15787703317054e-09,0.000100048203934803 +"114836",170.798831601691,-1.03623682639477,0.467270529483427,-2.21763788000998,0.0265795329263077,1 +"57823",542.945536879239,-0.245445442102224,0.522092234041361,-0.47011892937442,0.638270050771108,1 +"56833",377.159534013685,0.861263675782091,0.336876906503345,2.55661239804676,0.0105696918077183,1 +"7884",2247.77325092018,0.474522598937637,0.145801242765539,3.25458542010312,0.00113558004204433,1 +"8273",2366.83041636745,-0.265386977431368,0.169287595939657,-1.56766936146914,0.116958315530753,1 +"84068",398.772915040899,0.0521784718226879,0.177549486961582,0.293881287496924,0.768848617464648,1 +"6556",393.001039379261,1.05721430119806,0.283727142433803,3.72616554105225,0.000194414747484311,1 +"4891",2667.14832162022,0.612915292844036,0.146867177018123,4.1732625715847,3.00268553405739e-05,0.368249353896798 +"6558",2166.58055292091,0.439945479032535,0.285062910801308,1.54332767386629,0.122751292363918,1 +"6560",3030.4708784553,-0.716965790463499,0.208001167373106,-3.44693157023214,0.000566992175478089,1 +"9990",2163.88354633504,0.331374283115725,0.238992415530637,1.38654727757771,0.165579854439337,1 +"10723",3362.15356176447,0.308297986482047,0.223021742742574,1.38236739920871,0.166858920794272,1 +"84561",758.482603190115,2.84761376851537,0.351903648988982,8.09202682807227,5.86799804418197e-16,7.19651280138477e-12 +"56996",2656.33777489493,0.590863690645355,0.179915468180762,3.28411835080079,0.00102301952061767,1 +"64849",175.5227990826,-0.222126169951483,0.346021306801252,-0.641943619035771,0.520909791348984,1 +"6563",7315.16978754565,-0.492730312661676,0.648035617168657,-0.760344492814257,0.447048693040846,1 +"6564",281.399295978928,1.90363317111114,0.580602585790439,3.27871976064233,0.00104279134900753,1 +"6565",992.211276283455,0.500621271781145,0.463407658148271,1.08030426985513,0.280006708943926,1 +"51296",1131.5612752503,-0.351374540130965,0.317883923320095,-1.10535486180327,0.269005854412002,1 +"121260",1059.46108372586,0.172164299567834,0.128132932860819,1.34363817110815,0.179065419816718,1 +"6566",2804.530789477,-0.424930089282526,0.409236846736835,-1.03834757957605,0.299108264977127,1 +"201232",319.781567794718,1.6281992157549,0.332689880867053,4.89404490305358,9.87842842827209e-07,0.0121149046244329 +"151473",282.545675354266,-0.671073282256013,0.263074765332364,-2.55088427583767,0.0107449997251168,1 +"6567",625.508634394616,-1.48919860503186,0.211196563370482,-7.0512444959604,1.77324596279358e-12,2.17470884877004e-08 +"9123",5311.60208501715,1.09645868609792,0.354667493717918,3.09151164264855,0.0019914017276146,1 +"9122",354.466999744421,-1.94687194682152,0.331552557591281,-5.87198591066672,4.30605348715934e-09,5.28094399665221e-05 +"9121",1379.70585130426,0.0105488371661773,0.420812931936742,0.025067759010227,0.980000916679546,1 +"9120",187.513958535924,0.16517845345449,0.407634044630831,0.405212605841305,0.685321239734544,1 +"9194",194.458012998009,-1.35931075003931,0.33963048056607,-4.0023226059502,6.27236933294984e-05,0.769243374992969 +"220963",327.464156825556,-1.13365914803826,0.434020501883284,-2.61199446366965,0.00900157118362108,1 +"26503",1283.18557764896,0.300979108472984,0.218541452443844,1.37721748028705,0.168445018979789,1 +"63910",235.01370937706,0.705083509785162,0.276962823420327,2.54576950464975,0.0109037159105663,1 +"6571",535.730415765667,-0.899470683583124,0.175928784464436,-5.11269765389048,3.17590399268603e-07,0.00389492865663015 +"6573",839.570544114568,1.95260260980216,0.273513267368978,7.13896853554837,9.40338538150532e-13,1.15323118318781e-08 +"10560",2206.89540049408,-0.897773569503337,0.256554682140644,-3.49934587828405,0.000466401147288894,1 +"6505",362.146420740541,-0.788183928487308,0.250775839239583,-3.14298191914055,0.00167236169839219,1 +"6507",678.167731395754,0.164701536222716,0.431690401512344,0.381526982406178,0.702812253496763,1 +"6509",1140.61522941382,0.15827331040864,0.226938418033856,0.697428455613136,0.485534698660535,1 +"6510",14274.4783902044,0.170507711683124,0.261750638938151,0.651412781167703,0.514780062265985,1 +"6574",5664.50517122086,0.0015570549374391,0.298382125257008,0.00521832511279941,0.995836397855707,1 +"6575",2915.72972994089,-0.657185252438418,0.200939085237519,-3.2705695443054,0.00107331148032531,1 +"55356",389.960836592815,1.3810010345052,0.316632725433077,4.36152337891265,1.2915999191368e-05,0.158401814082937 +"51310",1456.23493211666,-1.10349859124225,0.261210842435739,-4.2245512512128,2.39417363861975e-05,0.293621455040326 +"5002",758.322729706451,0.493278629257325,0.294480964442589,1.67507815043676,0.0939188992905428,1 +"63027",1935.92027198471,0.61554514628428,0.257564760101925,2.38986554698203,0.0168545417826461,1 +"6581",448.990491953315,-2.50364553209024,0.339586152047867,-7.37263730276415,1.67285157133928e-13,2.0515851670905e-09 +"6583",101.176086854807,-0.531676353470746,0.269308427235698,-1.97422842993853,0.0483557746922714,1 +"6584",809.028410976993,0.151242646042434,0.215442615025733,0.702008959668307,0.482673575921088,1 +"9962",2496.53469748262,-0.368603209610768,0.250876689487804,-1.46926049751102,0.141762146852956,1 +"9187",528.637508879741,-0.0636513147588996,0.18105423318641,-0.351559384382719,0.725168729553783,1 +"57419",1262.97528496777,-2.6998943517111,0.28652174801915,-9.42299972123112,4.38381280842758e-21,5.37630802825559e-17 +"6576",3928.60688920757,0.621645317070131,0.124349529728444,4.9991770650656,5.75755131440928e-07,0.00706106093199154 +"1468",2075.1065026244,1.16302186570021,0.316710470789638,3.6721926584887,0.000240478276484384,1 +"8402",2677.63598608114,-0.0908686929233447,0.125118412106377,-0.726261558099753,0.467678440883483,1 +"8604",1559.39773757173,-0.87014688906648,0.19218299055758,-4.52769980601262,5.96292097794711e-06,0.0731292628735433 +"10165",1459.61072849757,0.982798867503427,0.149856925557499,6.55824790110438,5.44436495254798e-11,6.67696917780484e-07 +"9016",336.414687164425,0.427699628881956,0.146493210358161,2.91958670191113,0.00350495881006602,1 +"10166",498.415492997478,1.02320511836384,0.216968181627818,4.71592244856906,2.40618079641115e-06,0.0295094012871863 +"8034",424.275578406544,-0.0987996822700212,0.134037410641349,-0.737105273798407,0.461058332286409,1 +"10478",1052.35824289539,0.628240137621481,0.134858926234072,4.65849873764423,3.1852375964719e-06,0.0390637538831314 +"60386",335.035776602918,0.731355657732667,0.181266240918883,4.03470416788722,5.46711345109882e-05,0.670486793642759 +"788",563.98124950778,-0.431553395485388,0.183813328669052,-2.34778075458489,0.0188856341956918,1 +"79751",1384.87752227373,0.937714572440063,0.181976524080684,5.15294254122748,2.56430553986166e-07,0.00314486431408634 +"79085",4278.12125700898,-2.15007284409278,0.297633641476802,-7.22389053006416,5.05209319560755e-13,6.1958870950931e-09 +"29957",2617.57491999552,0.551770946969293,0.193744979547693,2.84792384431034,0.00440054535324654,1 +"114789",4221.9261441066,-2.17007477129901,0.276735823021891,-7.84168362303908,4.44545257226669e-15,5.45190303462787e-11 +"115286",1018.75879544351,-0.336388325193058,0.123567695539941,-2.72229989984985,0.0064829280673649,1 +"9481",185.002431553698,-1.79969127518836,0.380613025544413,-4.72840169517098,2.26294143589797e-06,0.0277527137698526 +"81894",1861.85151234565,-0.698802489219438,0.166616877391647,-4.19406785290331,2.7399596312449e-05,0.336028649175875 +"123096",1508.76746566486,0.306294539229364,0.250310456643245,1.22365858517014,0.221081049044404,1 +"5250",16660.5774853759,-0.21797079346339,0.127305135419391,-1.71219167824858,0.0868613505312455,1 +"253512",611.000223640035,-0.451753132351152,0.179089976558394,-2.522492553925,0.0116526417125907,1 +"81034",1360.49968961267,-0.257939586667123,0.177405203431702,-1.45395727790152,0.145958151101026,1 +"84275",272.870845786678,-0.00501989858897762,0.185162712165265,-0.0271107423858491,0.978371406725986,1 +"399512",177.08202841121,0.293346038532609,0.247961186961451,1.18303207904152,0.236796434123342,1 +"55186",2422.54325737379,0.540332327125187,0.165973562046518,3.25553251049553,0.00113179938009884,1 +"51312",666.104343307779,0.0838834460561343,0.135991468911493,0.616828737328575,0.537347694947707,1 +"54977",1680.17951253197,0.261622339307979,0.174719161066504,1.49738779485323,0.134292382226516,1 +"51629",6803.8943920354,0.924795428951559,0.149595368060129,6.18197903413591,6.33029347358556e-10,7.76347191600532e-06 +"291",2539.15508229166,-1.54405968976371,0.294013550784034,-5.25166165180558,1.50733161847986e-07,0.00184859149690369 +"55972",639.840876292541,0.385708239019117,0.12535470614478,3.07693465113019,0.00209141145380587,1 +"284439",631.221226678951,-0.550936560394295,0.209128086209249,-2.6344455705631,0.00842748144201934,1 +"203427",894.397665384842,0.50889239923783,0.226614589612078,2.24562946326165,0.024727751656788,1 +"9673",1873.67475614036,0.0369894719319741,0.188146207158751,0.196599615217136,0.844140871746743,1 +"283130",188.159572430835,-0.837020174154521,0.200727101095603,-4.16994102732476,3.04678469160519e-05,0.373657674578461 +"91137",1066.89411769238,-0.193617509534809,0.165152636111996,-1.17235494444975,0.241054580669309,1 +"292",12411.1035858806,0.239950874085015,0.165545401503023,1.44945659563146,0.14721011328506,1 +"293",6948.8428726638,-0.507206545995319,0.170836077408135,-2.96896623763832,0.00298803424897277,1 +"10861",114.492004802737,0.559413306852596,0.274586097631845,2.03729654078349,0.0416203342879162,1 +"65012",173.254602349703,-0.0238174944714863,0.385803126591511,-0.0617348404661954,0.95077399419374,1 +"284129",867.011986889907,0.235068194613701,0.217144531936291,1.08254254674333,0.279011520618324,1 +"1836",1500.19392417961,-0.101084180584126,0.241642713804212,-0.418320829925908,0.675712562077148,1 +"65010",679.656721769668,1.81096146560467,0.203114519179359,8.91596264472614,4.83596543890141e-19,5.93082801426869e-15 +"376497",1147.60601847017,-0.507710994606682,0.163652964231547,-3.10236357154117,0.00191982015667296,1 +"11001",625.626337252142,1.84392916423581,0.535367404546033,3.44423128598831,0.00057268558102504,1 +"11000",1476.86042805017,-0.132160481011827,0.174118530708699,-0.759025937526043,0.447837041138985,1 +"10999",3159.98402658017,0.628308361551856,0.239133759801336,2.62743479663362,0.00860313278557099,1 +"10998",332.975798922467,0.102446706044145,0.216710735589129,0.472734799065875,0.636402396203605,1 +"2030",4545.37066371685,-0.458626877200097,0.325912768889307,-1.40720745235933,0.159365882456087,1 +"3177",565.39420855687,1.73963546432846,0.357188931323077,4.87035098731815,1.11400186733342e-06,0.013662118900977 +"55315",1154.43840919005,0.664059804174043,0.355208789056525,1.86949147834394,0.0615544681276322,1 +"222962",388.895759067169,-0.186645190875305,0.407051880294693,-0.458529243840316,0.646572257521912,1 +"6513",24663.113210082,0.708697735125246,0.465150503380819,1.523588021456,0.127611657320898,1 +"81031",1655.14352403396,0.485587534530098,0.26139945355012,1.85764556098045,0.0632193639862947,1 +"66035",392.010537118403,-0.406436586929883,0.254811425039027,-1.59504852212821,0.110701385651417,1 +"154091",558.085302027,-0.637417267351249,0.365732024998199,-1.74285330182499,0.0813592429140284,1 +"114134",442.436732561146,-0.81613124179711,0.283178434197079,-2.88203882513567,0.00395111045701417,1 +"6515",4383.18196232772,-1.69285532262764,0.289354107911085,-5.85046237929283,4.9020833579016e-09,6.01191503013053e-05 +"6517",1550.62269056974,-4.78393138993531,0.474465032091085,-10.0827902297696,6.58296922880385e-24,8.07335346220505e-20 +"56731",2815.93613817036,-0.249232417108738,0.156006617173742,-1.59757593378985,0.110137385965698,1 +"6518",241.431292555392,0.137157424850837,0.309172688166782,0.443627235200182,0.657312111576309,1 +"11182",629.625984415492,0.931992415165987,0.302892682927459,3.07697236578407,0.00209114686122925,1 +"29988",1864.67175202662,-0.835053791641291,0.291221734794718,-2.86741575875139,0.0041383896128224,1 +"56606",530.903803438758,-0.033891136651393,0.442700127399009,-0.0765555159211568,0.938977148198381,1 +"7779",654.722405038131,0.165753585923125,0.174879338270885,0.947816863684467,0.343222693958533,1 +"7782",149.571665492456,-0.66068675106319,0.332691418676607,-1.98588455840339,0.0470461437014842,1 +"64924",2137.90156722054,0.207433952965518,0.133149192020381,1.55790620895218,0.119255483156232,1 +"55676",1607.71615756494,0.571599526034487,0.108278366638762,5.27898179274773,1.29903710757283e-07,0.00159313910872732 +"148867",1697.97616711368,0.642297633425047,0.16536528945375,3.88411398514612,0.000102703720413249,1 +"10463",2525.22722990356,-0.235295048774312,0.124828698128356,-1.88494354505218,0.0594374602243323,1 +"1317",1920.91944089031,0.489066492470986,0.19436311014169,2.51625162879138,0.0118610466844447,1 +"1318",726.222504635968,0.475642926508622,0.268237416851146,1.77321617577525,0.0761928926748829,1 +"9197",1336.45580068313,0.510774208262974,0.139427893598925,3.66335741779371,0.00024893080739144,1 +"10559",1120.70046503809,-0.0892639441162702,0.175522333050205,-0.508561745762222,0.61105944864412,1 +"7355",2145.76155870671,1.32792986488391,0.204087915245793,6.50665603244868,7.68420839228095e-11,9.42391317229336e-07 +"23443",696.757722648489,0.421433239993949,0.193809278877807,2.1744740109149,0.0296695551271404,1 +"113829",3894.92135960493,-0.220758074149136,0.149569264920069,-1.47595880923204,0.139954950353661,1 +"55032",1116.35956793474,-0.0192584892457935,0.159693769656948,-0.120596371963442,0.904010742623619,1 +"10237",1947.81993503467,0.915295957339756,0.168365113261103,5.43637538449132,5.43753369277959e-08,0.000666859132082489 +"347734",2714.01916655406,0.556504180586447,0.137872741892925,4.03636116135733,5.42866268135736e-05,0.665771191241667 +"51000",1117.39306734274,0.21952227657898,0.153859376442539,1.42677217115178,0.153645575082682,1 +"84912",926.849396247309,0.0903869849983472,0.197029214170548,0.458749152397818,0.646414312738328,1 +"55343",2319.16716757187,0.156338378748894,0.196692736599404,0.79483554630338,0.426709170792642,1 +"51006",3052.99864707329,0.428857270858543,0.114111574239607,3.75822762691929,0.000171121176517868,1 +"23169",1523.29518685888,-0.0102012314139479,0.20446403533038,-0.0498925466156649,0.960208016847191,1 +"11046",1052.12586111617,0.116745657981027,0.156613142833006,0.745439724081845,0.456005936995739,1 +"79939",3251.62636681378,0.0849815068040998,0.119440884578219,0.711494285262496,0.47677799087685,1 +"728661",1658.33925208873,0.141994065761157,0.164319972139186,0.864131510689902,0.387515650693042,1 +"55508",501.632005262856,0.494235747954863,0.153230493853057,3.22543989467801,0.00125779243307388,1 +"339665",291.589471613918,0.0638275798122369,0.22298134953776,0.286246271020205,0.77468950652446,1 +"54733",844.160419552994,1.38129207772565,0.310949450559432,4.44217565022404,8.90538143416547e-06,0.109215597908605 +"80255",1506.7753186751,0.228357475094076,0.186362595767645,1.22533963509926,0.220447280696508,1 +"159371",246.031495713121,0.996435412569682,0.373358524379481,2.66884334360853,0.00761129411812257,1 +"206358",823.594100821475,0.296222900783832,0.207132192399107,1.43011521942984,0.152683952772705,1 +"120103",358.752852244328,-0.302784884254508,0.224840198107254,-1.3466670408735,0.178087491859208,1 +"54020",1636.95693897681,0.670924357884224,0.292889169202118,2.29071071392616,0.0219801505571121,1 +"219855",1914.42881018947,0.0940821767273553,0.425790648212828,0.220958767230437,0.825124538435406,1 +"84255",1833.73297128288,0.325935554482598,0.162680514733576,2.00353161542663,0.0451202576430014,1 +"2542",1086.98054876211,1.01722629174815,0.185110595293899,5.49523537609019,3.90189633483241e-08,0.000478528566503846 +"81539",7785.51657536068,0.977131717965839,0.201773741253659,4.8427100171446,1.28080143849528e-06,0.0157077488417061 +"124565",6527.70476959212,0.177983971545827,0.146990577437434,1.21085293117911,0.2259517747413,1 +"54407",15066.8251859394,0.426775734584017,0.215653698332674,1.97898639292362,0.0478175382909872,1 +"92745",779.307616533359,0.513294166294561,0.365186751752357,1.40556623106262,0.159852969440373,1 +"145389",345.980261115252,0.523053494495795,0.156893453365673,3.33381338274651,0.000856641110278709,1 +"55238",557.21514467964,1.17563346881356,0.162853637366854,7.21895738911408,5.23876660443762e-13,6.42482336368229e-09 +"153129",471.431551508224,0.341735184915506,0.190696949028068,1.79203278635154,0.0731277142696838,1 +"27173",5496.33441021759,0.461146000451665,0.130823162601724,3.52495682936187,0.0004235518108801,1 +"57181",1082.10467328332,0.732925955363723,0.214862703337158,3.41113624645052,0.000646927564690518,1 +"201266",2065.91870276166,1.25993020706134,0.26757024831746,4.70878288966751,2.49200331284811e-06,0.0305619286287693 +"91252",1911.36515081265,-0.0408266749431305,0.191358123479025,-0.213352191173664,0.831052267857622,1 +"23516",3156.89584318096,-0.43820063135541,0.224598063837689,-1.95104367271877,0.051051850823893,1 +"29985",1139.03347568387,0.494577526004962,0.121674495420965,4.06475921099027,4.8082075433651e-05,0.589678573118296 +"55630",1057.30547421964,1.49699496967762,0.224416627991179,6.67060628741138,2.54748797902412e-11,3.12423925747517e-07 +"25800",5899.77334976064,0.444117499170276,0.233620853974084,1.90101821654818,0.057299626608431,1 +"7922",7471.55263899128,0.653875642777601,0.152709324898017,4.28183179523763,1.85361078378133e-05,0.227326826522943 +"64116",794.294840083563,0.219953571145038,0.206213155361131,1.06663210094353,0.286137998902788,1 +"55334",3742.67071459057,0.494186333683211,0.145623729216618,3.39358383651952,0.00068984439300451,1 +"6520",8347.75770128282,0.82137452979895,0.240300722379447,3.41811094725699,0.000630573968720201,1 +"30061",5341.95382879254,-0.492840344543009,0.333482586928281,-1.4778593061862,0.139445440430608,1 +"254428",2109.91476479628,-0.0541020042268498,0.196989371954722,-0.274644279993365,0.783589543463997,1 +"84102",291.419440492201,0.911621144128811,0.287930207963465,3.16611845133139,0.0015448787045589,1 +"54946",2602.54592570377,0.244586324996062,0.161079952200662,1.51841567901245,0.128909641548667,1 +"8501",554.921286305123,-1.66496899569343,0.256047517011911,-6.50257817425338,7.89549665191219e-11,9.68303709390511e-07 +"124935",1437.26723165736,-0.162101195604503,0.266964561160892,-0.607201176439332,0.543717411614856,1 +"29015",1365.40854675445,-1.09374334270264,0.24897632181495,-4.39296128535289,1.11817045369992e-05,0.137132424441759 +"23446",5980.90073179051,0.613177347624659,0.269890853408052,2.27194563980865,0.0230897938326244,1 +"57153",11822.5379299127,0.184179611848835,0.261271877669271,0.704934696729886,0.480850876507603,1 +"126969",1823.7665397366,1.07674544597726,0.447425676572626,2.40653476623281,0.0161046710772406,1 +"80736",2494.51002217026,-0.0612121385260141,0.599823083853875,-0.102050321459329,0.918716732793605,1 +"204962",657.067584579585,1.99318407987179,0.459236156262362,4.34021592745212,1.42342774741376e-05,0.174569178942823 +"50651",163.265940258132,-1.37672147350849,0.326189454197486,-4.22061920087389,2.43632188011635e-05,0.298790515377469 +"85414",500.083838321445,0.622378052206056,0.215983969101279,2.88159373492304,0.00395669528235077,1 +"57210",604.678096056778,-0.204966155464645,0.293693566382138,-0.697891199965731,0.485245238181686,1 +"113235",301.067404670314,0.105871874844319,0.259570886381724,0.407872686802881,0.683367146047762,1 +"283537",577.115428679308,-0.445237510548442,0.229096008251586,-1.9434538119909,0.0519613508592039,1 +"55652",1689.8268833777,-0.578110210364101,0.213812448381539,-2.70381923381977,0.00685475683238697,1 +"83959",787.275982704499,1.57636216864669,0.470771346494988,3.34846668214434,0.000812600506700147,1 +"22950",1112.38003232284,0.238012800912884,0.0846874938428949,2.81048346234482,0.00494671310681721,1 +"6522",4876.13304190209,0.17314299526043,0.179750675692962,0.963239746348334,0.335427223080499,1 +"6508",571.203942341514,0.327653917584735,0.377255889755284,0.868519025103294,0.385110261814754,1 +"8671",295.164172361611,-2.68562645594028,0.427628972763062,-6.28027244877141,3.37980221796075e-10,4.14498944010706e-06 +"57835",368.824621159804,0.445158427994086,0.178912302771436,2.48813760204508,0.0128414037438055,1 +"9497",1522.70677676399,-0.158650619342337,0.204882894757467,-0.774347802583236,0.438725142210016,1 +"55974",2506.1696369418,1.18173673343655,0.232054100224094,5.09250529206487,3.53362848079183e-07,0.0043336419688431 +"125206",418.685373313974,0.562037506231234,0.400933350481035,1.40182278564981,0.160968172492951,1 +"6526",2350.00534833799,1.01838733715412,0.229973580849614,4.42827968930951,9.49876760235324e-06,0.11649288587526 +"8884",2082.9572049327,1.60876389235964,0.184679550878455,8.71111005364333,3.00913334577757e-18,3.69040113526161e-14 +"60482",217.816375919127,-2.21205792782587,0.546843061518975,-4.04514216872644,5.22913809232995e-05,0.641301495643345 +"386757",152.646048913561,0.590416793085031,0.308568270032126,1.91340734101909,0.0556959253374818,1 +"6533",2537.18607044611,1.00092055174655,0.184957455271358,5.41162588054675,6.24550667521242e-08,0.000765948938648052 +"6535",5048.53408070202,0.478123240254907,0.317261233883759,1.50703328737001,0.131802125088928,1 +"6536",960.975564811539,-0.769140675287792,0.299384233225033,-2.56907542191664,0.010197026141917,1 +"6541",2971.8367772225,-0.0313439740370417,0.250546221818745,-0.125102561154233,0.900442355720257,1 +"23657",2227.86758284132,0.180570647793185,0.505756942706353,0.357030487464857,0.721068982152574,1 +"6542",1221.93549804705,-1.09808248375908,0.375952112636527,-2.92080413129826,0.00349129247749569,1 +"6545",268.490602180051,-0.956165715570444,0.486015365175131,-1.96735696869563,0.0491420715880911,1 +"8140",9410.44681954765,0.288962354505978,0.373877378142175,0.772880017351822,0.439593391842907,1 +"9057",1472.18231635803,0.454693180265134,0.129864905133102,3.5012783461329,0.000463031961531945,1 +"84138",243.722495814705,0.423307712618626,0.121197968489716,3.49269643619931,0.000478169754599466,1 +"9056",503.672714675783,0.109722091461075,0.282810392904033,0.387970506792185,0.6980378596128,1 +"23428",3120.80428439962,-0.52356020404592,0.33879225444658,-1.54537241384447,0.122256208945705,1 +"6546",1958.71929000076,-2.02394784165574,0.386381429304032,-5.2382120054304,1.62139744882067e-07,0.00198848183123367 +"6548",5162.79416491044,0.508582837498992,0.298785401002469,1.70216762864792,0.0887239491952494,1 +"6549",684.874784831518,1.52941991343052,0.676211647543723,2.26174736709431,0.0237130163900375,1 +"6550",220.685120921433,0.0266416935589784,0.372230064262174,0.0715731911977259,0.942941575667715,1 +"9368",4184.86310804311,1.24835094477921,0.352293487921308,3.54349707723821,0.000394857687374265,1 +"9351",2242.57159267839,-0.590697662193121,0.166122152298024,-3.55580308840092,0.000376826243424571,1 +"389015",392.402852191838,1.29974937915572,0.669479069106352,1.94143392845825,0.052205666293991,1 +"10479",1055.15830463201,-0.0477060323061609,0.109209751181249,-0.436829420359965,0.662235060955938,1 +"84679",172.188608122178,1.58670890229193,0.34238399016004,4.63429642709128,3.58153482276093e-06,0.04392394306634 +"23315",1197.6318861896,-0.478527640867982,0.183375298640211,-2.60955343722096,0.00906604851346412,1 +"285195",807.858844228991,-2.69906553633756,0.265757644055995,-10.1561162837855,3.11227916404917e-24,3.8168991667899e-20 +"133308",365.913115105326,-1.0153249512479,0.248450717043948,-4.08662515982316,4.37693412450758e-05,0.53678720102961 +"6578",1492.26728623193,-1.26270692956048,0.306994768569061,-4.11312197743991,3.90343999472936e-05,0.478717880953608 +"11309",1249.24511706373,-0.69218369820026,0.288952031710942,-2.39549690688003,0.0165978542803587,1 +"28232",1511.48657504466,-0.121316721166498,0.307737325373525,-0.394221666218897,0.693417390920166,1 +"28231",390.357742363655,-1.77396524404633,0.487024508640403,-3.64245579549704,0.00027004936256919,1 +"91607",969.685666732934,-0.332666182101942,0.301492984917477,-1.10339609458242,0.269855191942253,1 +"55106",203.814880946783,0.342079139461931,0.268921064234171,1.27204293362478,0.203357865225242,1 +"146857",659.790848250375,0.924013852401564,0.351302178600822,2.63025369236751,0.0085321171496548,1 +"162394",1624.70791365578,-0.174025227856585,0.283822008812208,-0.613149165510026,0.539777713721479,1 +"81892",1251.91698560433,0.298766713213213,0.1415682746785,2.11040724972956,0.0348232925547663,1 +"9353",762.018163186554,-3.39218942251203,0.441323011735972,-7.68640957372388,1.51321550052477e-14,1.85580748984358e-10 +"6586",5803.80599406298,-3.27342475944629,0.323040845478212,-10.1331605747889,3.937135932169e-24,4.82850350721206e-20 +"84189",3067.2949585196,-0.23052780329108,0.519746305154897,-0.443539090138172,0.657375851398873,1 +"9748",6493.15419743687,-0.457246262154676,0.204853250145967,-2.23206740351383,0.0256105084162332,1 +"7871",9865.14500539032,-1.94839586876583,0.311705880425988,-6.25075108016276,4.08483469442564e-10,5.0096412692436e-06 +"6590",7026.17338378586,-1.50965501986777,0.575785994119618,-2.62190299049571,0.00874403165625618,1 +"79811",4971.1319307998,0.0667588200533179,0.115206473542386,0.579471083530358,0.562271352546777,1 +"10569",2143.77673280027,-0.205862464975528,0.0852072671244757,-2.41602004057697,0.0156911976941468,1 +"84464",496.982151331067,0.110934537792229,0.146970984182905,0.754805708140123,0.450365568423872,1 +"4086",1157.32009060295,-0.215443471493709,0.157502404678663,-1.3678741726722,0.171351465370491,1 +"4087",3796.25390708542,-0.201582595950104,0.121230744835803,-1.66280093571257,0.0963522892830439,1 +"4088",6389.0099236152,-0.0653643446588849,0.230276842720242,-0.283851141464078,0.776524460443775,1 +"4089",3342.14035906265,-0.466220829854217,0.17872367037594,-2.60861266374809,0.00909100800219452,1 +"4090",3223.2594291773,-0.182790167985037,0.124169923025923,-1.47209697429607,0.140994692457996,1 +"4091",461.34456067447,-0.723062320110775,0.282143665144586,-2.56274518777601,0.0103848233363925,1 +"4092",1697.96624601464,-1.17368565965465,0.231621025103857,-5.06726735678844,4.03567270446927e-07,0.00494934900476111 +"4093",575.338876822634,-2.27094293945369,0.356738911876961,-6.36584029341025,1.94223446607519e-10,2.38195634919461e-06 +"57228",1328.21424755259,1.01776984157732,0.380207210745645,2.67688200752773,0.00743107995866128,1 +"60682",1730.18817035717,-0.00191003639650237,0.127542949759747,-0.0149756329150322,0.988051620320198,1 +"64744",2568.21968531404,-0.825645884017064,0.14746252486049,-5.59902175008997,2.15564753916799e-08,0.000264368614203562 +"6594",3306.40447535839,-0.998008485780526,0.235164263094374,-4.24387818390592,2.19689640277754e-05,0.269427374836638 +"6595",5944.61087569273,-0.746105124247234,0.246179641144739,-3.03073447007167,0.0024395968753924,1 +"6597",8509.13947790506,0.74752129288233,0.132066037590335,5.6602083815153,1.51189298485235e-08,0.000185418555662292 +"8467",5333.37130661714,-0.351971483196326,0.12807097314125,-2.74825336735856,0.00599136909277797,1 +"56916",1434.95529018419,0.189960061899831,0.137515872698863,1.38136826078115,0.167165759637943,1 +"50485",1191.69655217431,0.115385698946553,0.146856631981144,0.785703017902304,0.432041494778378,1 +"6598",3923.50760630435,0.523820360667138,0.100184144750451,5.22857545943945,1.70821112471141e-07,0.00209495012334607 +"6599",8293.44476154583,0.387204229800395,0.152384375246927,2.54097068136389,0.0110545188877253,1 +"6601",6376.52555068144,0.145455428745645,0.126134838953693,1.15317409489891,0.24883893404321,1 +"6602",2889.30699027745,0.584595433947116,0.123246228040149,4.7433129860711,2.10251041947126e-06,0.0257851877843955 +"6603",6480.45368506491,0.586796990754033,0.130585035306885,4.49360058275449,7.0028921460983e-06,0.0858834692797496 +"6604",1169.76016134271,-1.19298455950288,0.322947768712573,-3.69404800119444,0.000220712109955329,1 +"6605",5403.55488773354,0.185127383108173,0.120271237909631,1.5392490035504,0.123743518499558,1 +"8243",5409.64293435127,0.408550599126329,0.180456497260449,2.26398387050967,0.0235751068377964,1 +"10592",1547.66742817712,1.06332186358768,0.203305047918738,5.23017935104441,1.69345665558871e-07,0.002076855242414 +"9126",2889.45796993799,0.391022697653517,0.128900316860087,3.03352782350369,0.00241712420850657,1 +"10051",3818.056692914,1.36826711966942,0.255075729558232,5.36416036931125,8.13266254104837e-08,0.000997389734034172 +"23137",2093.30278580666,-0.093083692320116,0.177559330013782,-0.52423993891445,0.600111665344974,1 +"79677",1594.2758205106,1.03386689371032,0.151007546309664,6.84645846499761,7.57006109225225e-12,9.28392292353816e-08 +"23347",3459.87223223506,-0.113874664486883,0.180312637814061,-0.631540117583496,0.527687426817898,1 +"140775",1351.44343799757,0.0484430331470114,0.158441029377256,0.305748033431832,0.759796498038183,1 +"23049",5290.2696082797,0.0484098998288778,0.171247517818442,0.282689643888458,0.777414755563445,1 +"23381",5330.77814322274,0.423429508370598,0.159889507392433,2.64826326177446,0.00809064932414757,1 +"23293",2610.68013645376,-0.574924074296974,0.138118172615179,-4.16255199016288,3.14710456103947e-05,0.385960903365881 +"9887",4015.26897114461,0.721771174393653,0.0874303289203936,8.25538669825702,1.51411202118448e-16,1.85690698278065e-12 +"55181",821.764179971611,0.441204686949436,0.123618289728023,3.56908907185294,0.000358224627082339,1 +"56006",1600.32823016952,0.615575120676128,0.142926882717095,4.30692329514089,1.65540981968805e-05,0.203019460286542 +"10285",1515.96537415303,0.0201885183121663,0.135906365165519,0.14854726110568,0.881910890678755,1 +"6608",1195.14402288976,-0.435813444645664,0.315194016479901,-1.38268311534859,0.166762051351026,1 +"64094",5890.18899567877,-3.0625771996947,0.402949951825885,-7.60039103074031,2.95237277388235e-14,3.62078996988931e-10 +"54498",697.901986841881,0.0792131337726451,0.295101807638557,0.268426460706964,0.788371073922227,1 +"6609",1523.03997024415,-0.929811895362538,0.146761959271427,-6.33551023697436,2.36557107183533e-10,2.90113636249885e-06 +"6610",686.557058882264,0.537982988818291,0.217329674798891,2.47542352104526,0.0133078260296131,1 +"55512",269.342123985124,0.584597763518643,0.328849335372769,1.77770699416488,0.0754519903735111,1 +"55627",2744.25541057958,0.555104771510496,0.116503509235655,4.7647043007749,1.89130802346532e-06,0.0231950015997786 +"10924",896.961871598646,-0.702266015262098,0.268537472072009,-2.61515091299356,0.0089188038872128,1 +"27293",282.938952648027,2.08591645264289,0.442772572736624,4.71103356685027,2.46463633610725e-06,0.0302263000260193 +"6611",1565.55224672306,0.556577860485458,0.184401006169287,3.0183016462204,0.00254195745971106,1 +"6525",22592.0450550374,-2.79216688366298,0.397708079078078,-7.02064411197142,2.20847736225321e-12,2.70847663706734e-08 +"342527",250.896295966335,-1.93321705043053,0.511300068469722,-3.78098335917788,0.000156210116601161,1 +"55234",3450.94601893257,-0.168514895585016,0.09272029985463,-1.81745416968258,0.0691475997464501,1 +"23583",1321.8025287319,0.962872550230848,0.134403168787741,7.16406137530498,7.83213110627339e-13,9.60532558873368e-09 +"57154",2965.34894321338,0.0954559066533721,0.168067918290903,0.567960308094914,0.570061919875121,1 +"64750",1248.83977460523,0.380668045065725,0.158245592296953,2.4055522782043,0.0161480413515857,1 +"56950",1792.93996112177,1.10783166212989,0.194965773777247,5.68218534292904,1.32984429169329e-08,0.000163092103933265 +"64754",1286.19763192838,0.634029432175765,0.30695199848356,2.06556541514006,0.0388695328697269,1 +"114826",609.988978071305,-0.242503003826775,0.167980179345924,-1.44364058171045,0.148840103336273,1 +"10322",1730.25068864264,0.502253663327382,0.134881870828682,3.72365582002721,0.000196358575276555,1 +"6615",317.057412855534,-0.995218237816239,0.346968685018804,-2.86832293744982,0.00412654099704951,1 +"6591",1461.60797303732,-0.247277953362915,0.308659845925461,-0.801134182586972,0.423053969108417,1 +"8773",2505.07634907686,-0.120441399406686,0.118258808896666,-1.01845605016982,0.308461277007172,1 +"9342",2265.93371574192,-0.137576160405376,0.198312589061491,-0.693733872652522,0.487849119451624,1 +"116841",1373.8167875143,0.12445697396114,0.122857862578019,1.01301594663594,0.311052544070935,1 +"6617",753.468594595962,0.171812527640125,0.192629720524371,0.891931562649949,0.372429615852152,1 +"6618",1120.08806973416,-0.419051525323858,0.18933611142988,-2.21326783443026,0.0268791858230987,1 +"6619",1017.4324691839,-0.00967412559166604,0.17412585416579,-0.05555823767822,0.95569373459229,1 +"6621",988.868423062336,0.289888310425601,0.14732863101132,1.96763051713503,0.0491105657911867,1 +"10302",426.474890790512,-0.276243581174759,0.147863250806467,-1.86823689908134,0.0617290576582196,1 +"23557",1466.06716861357,0.0708097602356618,0.0986829005952317,0.717548428436479,0.473035765799588,1 +"6622",308.770860208723,-1.73572035863312,0.361082266393863,-4.80699419544415,1.53216437511916e-06,0.0187904638964613 +"9627",289.319097935453,0.201798365713438,0.296768717808626,0.67998530034951,0.496513768563841,1 +"6623",12051.8738076514,0.570661138388647,0.575211865209101,0.992088607527594,0.321154303420994,1 +"27044",10007.6433342866,0.108882976890065,0.148159842601585,0.734902082630182,0.462399129922738,1 +"25992",752.967387013414,-2.13691987262633,0.27423794770875,-7.79221070781864,6.5846804707479e-15,8.07545212932522e-11 +"11267",2359.15294639491,0.134010400387066,0.130094901355041,1.03009725201559,0.302964355089942,1 +"23642",1606.32925315328,1.30440122994519,0.255636994622897,5.10255267188294,3.35102438239458e-07,0.00410969630256872 +"283596",261.56476397272,1.15907701939253,0.198487470317121,5.83954754192136,5.23427787651005e-09,6.41931838775192e-05 +"128439",429.69317073815,0.778531176876929,0.139166205303659,5.59425454749007,2.21571681513968e-08,0.00027173551020873 +"85028",528.648152636953,1.04511250987646,0.224669930039622,4.65176852857944,3.29100367541168e-06,0.0403608690752488 +"285958",956.930574215602,0.434215709242049,0.226960422220676,1.91317809948316,0.0557252562010654,1 +"8420",1057.07642678952,1.02030877568552,0.262055179914941,3.89348829516246,9.88129723078328e-05,1 +"387066",4332.83474464777,-0.70411922821844,0.120704581607541,-5.83340929433661,5.43061349250696e-09,6.66010438721053e-05 +"641638",2268.0751181521,-0.321065878830635,0.149354690101387,-2.14968728878005,0.0315799585823435,1 +"84973",1243.46965777448,0.28739485404494,0.237640030997684,1.20937054602447,0.226520519150613,1 +"100093630",1520.59173934265,-0.645379684381367,0.162730367131368,-3.96594499083486,7.31057229151967e-05,0.896568585831973 +"735301",138.562549410791,-0.0869116318803025,0.230201643220458,-0.377545662422007,0.705768136995891,1 +"79753",684.846595900091,-0.159975204866127,0.141964187259174,-1.12687014911776,0.259797385964464,1 +"8303",2315.09253418937,-0.582501492447889,0.213450254773838,-2.72898007577963,0.00635305422541174,1 +"26778",182.704458132871,0.559408738128046,0.315210282359149,1.77471602113112,0.0759447886098927,1 +"654320",96.2605846647199,0.131850491865969,0.206067900335396,0.639840031617587,0.522276604078315,1 +"9751",376.596571205828,-1.11145433621936,0.339584684995194,-3.27298133670277,0.00106419504179091,1 +"54861",2273.6073700319,-0.911547759666725,0.16029332008534,-5.68674826362956,1.29481102595304e-08,0.000158795624222881 +"23020",12419.6812294711,0.296443793163281,0.13045007897224,2.27246925029738,0.0230581832036488,1 +"79622",1175.41399251695,0.218264940577982,0.173843714492193,1.25552391247245,0.209288633017617,1 +"11017",855.302785483965,0.0723424184494553,0.0912149525564579,0.793098241263445,0.427720587442371,1 +"11066",979.362087715,-0.0262666616146258,0.12129682346875,-0.216548635516353,0.82856011870845,1 +"9410",1973.77473858069,0.513798649755967,0.118912340155547,4.3208185885828,1.55451438256463e-05,0.190645643877727 +"154007",661.929274596789,0.264654185937555,0.135622950783132,1.95139675408442,0.0510098673093942,1 +"6625",7501.35832960522,0.402915110462178,0.0950245218635061,4.2401172093339,2.23403103502128e-05,0.27398156613501 +"6626",3525.0302853852,0.623587071289556,0.13020852850285,4.78914152905049,1.67496321071254e-06,0.0205417488161786 +"6627",340.385184898504,0.774146421357565,0.169836590455426,4.55818395365598,5.15978359270929e-06,0.0632795859809867 +"6628",9241.11934306939,0.942676961129402,0.138720126314396,6.79553130591099,1.07914079399681e-11,1.32345826975768e-07 +"6629",1444.00961065821,0.348304539627105,0.107592307745972,3.23726246721522,0.0012068236006978,1 +"6631",2535.37997432421,0.468010701279972,0.122962635207465,3.80612127001292,0.000141163186511384,1 +"6632",1346.86318542731,0.733076558866407,0.113569176975273,6.45489012415769,1.08297447443436e-10,1.3281598954463e-06 +"6633",4760.93990295057,0.378813958875631,0.123941897610426,3.05638340366806,0.00224024591171381,1 +"6634",4504.41773132198,0.564815778290001,0.151367730540571,3.73141472276096,0.000190407466243794,1 +"6635",941.936654299156,0.538820858456363,0.0980442611270698,5.49568992883762,3.89185817871019e-08,0.000477297487037018 +"6636",2027.77412862953,0.879259882554539,0.156698329842803,5.61116307644503,2.00971261998387e-08,0.000246471155714821 +"6637",711.877242245047,0.604917273339562,0.122389997885598,4.94253847365042,7.71118815979739e-07,0.00945700115917551 +"6640",1748.48479867026,-1.60964732390116,0.328915885628437,-4.89379623859065,9.89092462393467e-07,0.0121302299587935 +"6641",919.065300432315,-0.859310102934388,0.350934538664279,-2.44863360045745,0.0143399238002595,1 +"6645",2414.0164463631,-0.356606997822612,0.167858308497765,-2.12445246835881,0.0336323266025726,1 +"10073",988.933312476912,0.0352466735631035,0.118855476139873,0.29655069087119,0.766809561112617,1 +"22938",2472.69488868622,0.121473629855568,0.0857465466293248,1.41665914990942,0.156582605812283,1 +"6642",6035.04961871351,-0.524977917866688,0.116443323392156,-4.50844155399682,6.53055534251146e-06,0.0800907307205606 +"29887",579.025641393114,1.98887750109488,0.28287082469617,7.03104501226354,2.04992352428136e-12,2.51402621017866e-08 +"29916",1120.48266601473,0.018605320828925,0.111116833742572,0.167439263721539,0.867024433246228,1 +"29934",3165.92519396952,-0.184497379359304,0.128576385361669,-1.43492429687098,0.151308671189412,1 +"23161",2072.54407101835,0.101839347658868,0.182141938733958,0.559120806370785,0.576079275842623,1 +"57231",2849.99158984588,0.202483157160435,0.156831895765553,1.29108403728745,0.196674538600858,1 +"64089",542.646152355718,-0.213547346930605,0.161848266225916,-1.31942931432163,0.187025626918749,1 +"9784",5750.93743943093,-0.188115618272197,0.119305393094885,-1.57675703832254,0.114851440454989,1 +"112574",1673.30672543955,-0.539126200661187,0.158795350734969,-3.39510066362707,0.000686033719281976,1 +"399979",3156.69146293202,-0.448351281970097,0.13871644384211,-3.23214227204685,0.00122865866453683,1 +"6643",3257.28648688552,-0.530188765568882,0.111952144729148,-4.73585179499326,2.18136957626e-06,0.0267523164832526 +"90203",1361.23917579941,-0.863835001711298,0.193862425875655,-4.45591763235939,8.35351027753635e-06,0.102447450043706 +"28966",466.274880146966,0.13715188251053,0.215162225189793,0.637434765277918,0.523841689308733,1 +"83891",657.83410849767,-0.504033773929176,0.181578026338982,-2.77585225531756,0.00550572214811471,1 +"81609",2865.42666532281,-0.215655904942465,0.173598378596381,-1.24226911959742,0.214137284902262,1 +"92017",1471.13629773244,-0.499790405046515,0.182567821617196,-2.73756021526325,0.00618967874688814,1 +"8724",6378.07357649847,-0.210662896971076,0.118084440602956,-1.78400215892459,0.0744233143495916,1 +"401548",1027.3742256971,0.202842041790718,0.199507411664155,1.01671431702085,0.309289352899844,1 +"169166",2725.07019407545,1.16723888974052,0.684857159484728,1.70435378177068,0.0883150129663729,1 +"257364",2560.21308562744,-0.415053884292756,0.163792003514429,-2.5340302053036,0.0112759011634143,1 +"8723",1646.46670342763,0.710997896945017,0.110949482214269,6.40830297496941,1.47148275350763e-10,1.80462644890176e-06 +"27131",2707.24000955569,0.37056473604165,0.127267976079982,2.91168876457002,0.00359480627111454,1 +"58533",3331.94890662413,0.27402980951214,0.109297569235875,2.50719033760719,0.0121695160583026,1 +"51375",1067.6052147321,-0.220236231444852,0.138118538563897,-1.5945450461233,0.110814009819216,1 +"29886",1279.3701421036,0.323655886270206,0.130149432281957,2.48680213655511,0.0128897066171872,1 +"51429",4691.22918498138,-0.82500135468001,0.168133751587876,-4.90681583494447,9.25668753762015e-07,0.0113524015961374 +"6646",1969.86821741049,0.463070453278056,0.151587811982255,3.05480003453222,0.00225210624341813,1 +"55084",985.945014040333,-2.85479789897657,0.356823267054571,-8.00059346617656,1.23820962406152e-15,1.51854028294904e-11 +"8651",488.277506195383,-0.419365245939071,0.338215944858724,-1.23993339851036,0.215000029363205,1 +"8835",1394.98467061629,-1.41654488689252,0.268651832498067,-5.27279071101334,1.34364760100843e-07,0.00164784941787674 +"9021",18349.5150335624,-2.32375795253861,0.324695633750585,-7.15672682658739,8.26261141413509e-13,1.01332666382953e-08 +"122809",1241.762573564,-0.152766565113823,0.154912019571747,-0.986150497141184,0.324059266954312,1 +"9655",1249.10986345204,-0.345287693285903,0.13900262307881,-2.4840372479168,0.0129902219630356,1 +"9306",1306.3738419813,-0.225078077898292,0.173567770014586,-1.29677346133661,0.194709144522463,1 +"30837",974.450570197862,-0.207222534601658,0.234529823091835,-0.883565816363214,0.37693063886631,1 +"6647",9492.45720295447,0.1619124986293,0.188043911891596,0.861035579405726,0.389218447567589,1 +"6648",9425.7364258117,-0.899481780444385,0.244373470757278,-3.68076689199126,0.00023253352039577,1 +"6649",3366.47324696588,-3.09541352149463,0.335878267387832,-9.21587915040784,3.08737793676139e-20,3.78636030164417e-16 +"6651",13060.0382563364,0.0194665525748035,0.164512284774066,0.118328868883792,0.905807084019335,1 +"10580",20802.2358824728,-3.83410840235232,0.413197547396586,-9.27911703859257,1.70888792859256e-20,2.09578015562592e-16 +"8470",5390.58521351366,-3.35366799854543,0.424421852343483,-7.90173262763889,2.7505293129359e-15,3.37324914938459e-11 +"10174",3993.61115544973,-0.954147647463266,0.256327635835157,-3.72237524976383,0.000197357423905426,1 +"114815",249.412786274771,-5.6459186872059,0.495934512147725,-11.3844036841786,5.00091642841349e-30,6.13312390780631e-26 +"57537",516.404784130504,-1.63226042090272,0.290710827930825,-5.61472179251307,1.96878750525089e-08,0.00024145209964397 +"6652",2246.56209254207,0.862700982884246,0.303468620503959,2.84280128024964,0.00447189431099944,1 +"6653",8596.76731628921,-0.010251249875205,0.342965006215583,-0.0298900753412761,0.976154721044843,1 +"6272",6350.46361937993,0.0765234185017695,0.257758319462151,0.296880498993966,0.76655774487384,1 +"6654",3414.25404957392,0.094529034502555,0.13668180845703,0.691599237452825,0.489189040691162,1 +"6655",2255.23433925336,-0.264280565967799,0.112017071657901,-2.35928829468878,0.0183100249292114,1 +"345079",792.936280429953,1.05126224629238,0.632413305376491,1.66230254385072,0.0964521280106961,1 +"65124",4853.51936747721,-1.15566726030687,0.320809979614805,-3.60234198977998,0.000315363095331181,1 +"6663",127.316395905503,-4.38197292849862,0.438411036430155,-9.99512458486371,1.60085809197064e-23,1.9632923639928e-19 +"6666",1142.16489548349,0.460666443145363,0.305962715193662,1.50562934720258,0.132162350400351,1 +"9580",2039.23460873238,-0.267071267241309,0.223708851915268,-1.19383415074905,0.232542849966953,1 +"6665",967.955086475885,-0.858748717409228,0.49054791986574,-1.75059088548222,0.0800164064009818,1 +"64321",482.99193587353,-3.28265547964312,0.293104734486031,-11.1995989604172,4.09583421347891e-29,5.02313107941053e-25 +"54345",426.288805991094,-1.37088400566294,0.191520041735038,-7.15791409214245,8.19138579753782e-13,1.00459155421004e-08 +"6657",856.103700445138,0.668513599396321,0.517428949413239,1.29199110361802,0.196360225507546,1 +"6659",9598.10587145184,2.19913818151984,0.247313888827266,8.89209333106161,5.99682906139652e-19,7.3545111608967e-15 +"55553",146.82299884315,-1.77543671325292,0.465177506026888,-3.81668651267566,0.000135255840598687,1 +"83595",1186.66465866092,-1.84052140037966,0.343139773512873,-5.36376585418073,8.150454411799e-08,0.00099957172906303 +"6662",1216.34774533102,0.579145186437726,0.488498840918469,1.18556102476891,0.235795701754737,1 +"6667",6012.81050821771,0.0888131512545655,0.112422816570482,0.789992227235162,0.429532307694631,1 +"6672",3339.42880737047,-0.0548501292769651,0.170606512645522,-0.321500793999172,0.747830910649225,1 +"3431",1155.88804653521,-0.257524838626505,0.21537537217625,-1.19570234992217,0.231812734014617,1 +"11262",199.949027895945,-0.325576099413856,0.393021900036984,-0.828391749628249,0.407448677425491,1 +"93349",812.11221806901,0.167317776168449,0.150124034266363,1.11453024151735,0.265051778173659,1 +"6668",1401.29774087786,-0.361518496256274,0.159092003491512,-2.27238634451895,0.0230631857615639,1 +"6670",3695.46965768019,0.0862147638285073,0.121656239863501,0.708675230512146,0.478526039223898,1 +"6671",507.696551860489,-0.139722883197165,0.215342375381803,-0.648840633198345,0.516441390554299,1 +"80320",981.636108065598,0.59710756088818,0.550591668928375,1.08448346494298,0.278150494450245,1 +"53340",155.647038060686,0.360674517428612,0.209269994531209,1.72348892270279,0.0848001466600591,1 +"6674",642.101924305898,0.116810868805603,0.299200645596298,0.390409815369224,0.696233530977625,1 +"79582",1060.42215493347,-0.315542207023102,0.269255918464831,-1.17190444251764,0.241235423263438,1 +"200162",344.947373603079,1.26770342788127,0.517309235354388,2.45057180742736,0.0142629510621329,1 +"6676",569.360632574589,1.72324670442855,0.360821475233126,4.77589839494772,1.78906713804243e-06,0.0219411193809524 +"10615",1824.27742438364,2.79124142687537,0.30979337703061,9.01001000611958,2.06037692316649e-19,2.52684625857138e-15 +"9552",2128.85804496154,-0.465746386690457,0.15057243930703,-3.09317155804828,0.0019802961967557,1 +"9043",5544.80798237902,-0.401301213376639,0.122030882565757,-3.288521765467,0.00100714996739147,1 +"6678",58787.6598529025,-0.0109160483126261,0.267198610902176,-0.0408536866107533,0.967412539327533,1 +"8404",27121.0252946356,-3.1917415014884,0.250125414101288,-12.7605645869952,2.72220857653758e-37,3.33851659826569e-33 +"6683",1275.94284759707,0.749843510006589,0.109686240610247,6.83625863950466,8.12881296639411e-12,9.96917622198574e-08 +"221178",1008.32989580916,-0.294455405913138,0.175536384812353,-1.6774608080707,0.0934524071424966,1 +"132671",363.546706908969,-1.18372973768908,0.315170687615078,-3.75583702484028,0.000172763096619502,1 +"9825",763.848124210797,0.121842155804485,0.145557583055186,0.837071853262981,0.402552180547982,1 +"64847",2995.71234898541,-0.0777074166456152,0.188338511439461,-0.412594408077784,0.67990379890753,1 +"202051",100.911951844956,-0.22994902649784,0.177667352249148,-1.29426719983633,0.195573141992934,1 +"124044",859.372241404057,-0.371258647781708,0.196700338641767,-1.88743268234961,0.059102152741502,1 +"166378",528.012944022463,-0.0503995179754694,0.167954633472414,-0.30007816356997,0.764117535054783,1 +"79029",552.627440864503,0.301499363567713,0.155804780508659,1.93510983798702,0.0529768185240986,1 +"54558",474.529327734086,-1.00547539703019,0.215499791320203,-4.66578362266807,3.0744309763442e-06,0.0377048214938852 +"55812",339.899257844078,-0.148337499404825,0.227279107301511,-0.652666675639653,0.513971190600878,1 +"65244",1263.17059989307,0.602702218998058,0.142066923517037,4.24238242144929,2.2115941524122e-05,0.271229906851832 +"26010",5022.29257828943,0.230532167290647,0.234518900187195,0.983000376970194,0.325607253123821,1 +"147841",131.538408482962,2.27774542821563,0.336536510271416,6.76819708619024,1.30397052233326e-11,1.5991894485895e-07 +"57405",268.18131857684,3.03688760838673,0.433146452532058,7.01122585821472,2.36239010346912e-12,2.89723522289453e-08 +"28972",4516.12837208004,0.231835594310772,0.152455100075225,1.52068113297869,0.128339875581482,1 +"9789",1240.11612363797,0.297596488641595,0.127754471068748,2.32944088885508,0.0198357210585402,1 +"60559",5431.30561037375,-0.312643843999242,0.130007914386957,-2.4048062417853,0.0161810424068944,1 +"92521",958.872189793747,0.895871053842976,0.334912456635924,2.67494097664112,0.00747424077064223,1 +"23384",3083.75703997335,-0.380366630777284,0.230050557648216,-1.65340451536278,0.0982485645218447,1 +"10290",3323.43399404438,-3.07366314482358,0.498497576965458,-6.16585373099329,7.0103865018015e-10,8.59753800580937e-06 +"23013",4635.64279410995,0.0313773798831967,0.139882857498787,0.224311830943751,0.822514670989326,1 +"80208",3574.07632433196,-0.0529167898963458,0.12973236670189,-0.407891964369558,0.683352992480111,1 +"51324",4463.00063613228,0.428977092013241,0.0758022707726494,5.65915885686135,1.52116702237568e-08,0.000186555923624154 +"6687",3405.96439538489,0.127214338473753,0.100482100665403,1.26603979844496,0.205498834015626,1 +"8877",986.806214074359,0.926295645343312,0.290033155083507,3.19375777943942,0.00140433894726531,1 +"56848",756.088781404701,0.200847661820895,0.176336360895523,1.13900310067017,0.254701860939293,1 +"6688",796.179712703052,-0.390184263778426,0.337063105920054,-1.15760003668563,0.247027294294297,1 +"152185",1013.60478596269,0.800438049029801,0.154562076776501,5.17874801971795,2.23379949199482e-07,0.00273953169698245 +"10927",4251.1308538264,0.0472440104140611,0.166162105665907,0.284324817771942,0.776161468789765,1 +"474343",158.023090311939,-0.463238613601114,0.197959805759666,-2.34006399341243,0.0192804359565749,1 +"169981",476.448343676273,0.428614333419394,0.241162764843594,1.77728238311322,0.0755217906908981,1 +"139886",467.659986021058,0.270244675003998,0.298999584823171,0.903829599508714,0.366085763871541,1 +"6690",15654.3894706349,2.54158065611313,0.929309744842982,2.73491230476934,0.0062396897089312,1 +"11005",11646.3077183583,1.34864228229552,0.583329673084421,2.31197270518474,0.0207791875187817,1 +"6692",11526.0850072373,1.75393762077422,0.55548866105855,3.15746790840317,0.00159145752810893,1 +"10653",28511.3052672217,1.21033672806561,0.333877261620011,3.62509480937072,0.000288855461435023,1 +"56907",1380.81637481977,-0.589510832340645,0.244497749255013,-2.41110944430732,0.0159040751692271,1 +"84501",1135.95359545307,-0.464834424627154,0.390482310242828,-1.19041096724225,0.233884904566864,1 +"6693",347.834380241285,-1.0869060727405,0.388704942325209,-2.79622395907471,0.00517035578716302,1 +"83985",2391.89079595957,0.679521338972722,0.141433341336792,4.80453429545014,1.55112113293769e-06,0.0190229495743478 +"124976",1379.4632115647,-0.807116179772084,0.40698810622429,-1.98314439028664,0.0473513034091192,1 +"90853",904.340076575435,0.512919337316979,0.621389321305932,0.825439575046142,0.409122074641974,1 +"6695",1428.83347066342,-0.14924258448148,0.396960844910159,-0.375962985758098,0.706944413744461,1 +"9806",1697.07064851216,-0.59407747982359,0.377680038575574,-1.57296499456038,0.115726923974637,1 +"10418",4731.98251020602,-2.63113164785261,0.3589498486245,-7.33008150842,2.30012795576545e-13,2.82087692495075e-09 +"10417",2878.22260132426,-0.444122341183951,0.305249674658858,-1.45494779537536,0.145683714544711,1 +"8405",3712.03814270579,-0.919210065792004,0.188264963054512,-4.88253390794678,1.04731222677119e-06,0.0128442371491219 +"339745",1631.46587419782,0.164271358523013,0.143507095001343,1.14469154658504,0.252336954437845,1 +"6696",24961.5507069342,3.89854595095599,0.471095123839714,8.27549629293644,1.27921677983149e-16,1.56883145878534e-12 +"84888",1731.37707005164,0.165456815658878,0.133987608074,1.23486655249117,0.216880173425779,1 +"56928",1975.98152656523,0.442351175364813,0.123030648006338,3.59545513685359,0.000323824932693828,1 +"121665",3298.7672302592,0.0545475177817748,0.116464632740112,0.468361222616793,0.639526293623692,1 +"6697",1441.83223682689,0.405884060857387,0.176612351651011,2.29816350364566,0.0215524850374895,1 +"161742",1763.65746066964,-0.395004213973416,0.197491813728162,-2.00010423985027,0.0454890090490929,1 +"200734",2037.28753222352,0.145432142915987,0.18476759299502,0.787108499702686,0.431218354158512,1 +"503542",204.314065222808,0.493826736503677,0.129796004741759,3.804637419204,0.000142012055677157,1 +"6698",9145.16062268216,0.997981724601958,0.843937754077075,1.18253001454277,0.236995463362469,1 +"6699",6998.81415112961,4.18225013738021,0.962096675210565,4.3470165162611,1.38001831308512e-05,0.169245445916759 +"6707",34849.3789041924,1.09055167264158,0.824534136794766,1.32262768025701,0.185959224397852,1 +"10252",3325.95006842596,-2.12291337933328,0.207187386534144,-10.2463446971635,1.22903819857705e-24,1.50729244673489e-20 +"10253",1195.33111175922,-1.45901849787982,0.274576536017188,-5.31370421902505,1.07418926376998e-07,0.0013173857130875 +"81848",1335.96189325928,0.0148267353217979,0.257675766517779,0.0575402783201768,0.954114821780915,1 +"84926",3803.99127999447,-0.599505880720916,0.183297199346215,-3.27067670896902,0.0010729048751308,1 +"283377",843.810489475386,0.143696056013756,0.16374477796524,0.877561152174636,0.380181919035525,1 +"57213",660.658243234438,-0.195971747957175,0.174248928723562,-1.12466543922388,0.260730832184416,1 +"80176",2636.88177264596,-0.391407382943199,0.206678411871913,-1.89379906395724,0.0582516859580308,1 +"84727",463.659299381477,0.87545945512035,0.192063960284532,4.55816621620945,5.16021927669662e-06,0.0632849292094074 +"90864",2079.48596558468,-0.00362328819053095,0.111175827346358,-0.0325906114396876,0.974001056840647,1 +"6709",15484.1189667589,-0.437567343774203,0.170836227528723,-2.5613264241663,0.0104273332135402,1 +"6710",366.206170870508,0.216387645814479,0.243405499698762,0.889000643298033,0.374002734074918,1 +"6711",17558.2332774348,-0.483193566834524,0.192499775130503,-2.51009938326914,0.012069718736126,1 +"6712",2425.44235034658,2.1779176142919,0.430280214876263,5.06162621239327,4.1569540862917e-07,0.00509808849142814 +"57731",428.412013427723,-1.82668185031422,0.465278096260159,-3.92600009542,8.6370120841389e-05,1 +"51332",635.252750573641,-0.708450572970051,0.468494424807292,-1.51218570693015,0.130486626081564,1 +"10558",3512.20122878122,0.277686056250727,0.189787227500418,1.46314406879734,0.143427961455676,1 +"9517",4047.90843318081,0.249414182384685,0.188069904754063,1.32617806507023,0.184780723088374,1 +"55304",806.793962720613,-0.273845071098927,0.377833252067023,-0.724777582705583,0.468588490501411,1 +"171546",3034.53256781158,-0.143137971416027,0.195871986278338,-0.73077306324257,0.464917779325851,1 +"165679",2504.32329473205,-0.337946147867502,0.7322905481609,-0.461491888317051,0.644445739793947,1 +"144108",1532.31448330512,-0.226783847519714,0.167542688225497,-1.35358844913891,0.175867714102283,1 +"6713",3178.85236882991,1.8619377169943,0.384742174250966,4.83944272711774,1.30203705652782e-06,0.0159681824612572 +"8878",28724.2588082883,-0.493522723939954,0.258845203607697,-1.90663267876476,0.0565681702829148,1 +"10011",1595.48160175746,-0.0925244085504356,0.135570056164413,-0.682484105769098,0.494932889703508,1 +"55133",718.69595054015,0.135062935928781,0.129274702165906,1.04477468264012,0.296127118647725,1 +"6714",6766.95281135492,0.175206040704673,0.218318970492491,0.802523208631103,0.422250368746789,1 +"10847",6319.26477349711,-0.0351316734479624,0.132123756155523,-0.265899747859187,0.790316419286505,1 +"80725",285.971748841939,1.47982984634849,0.418077379884834,3.5396075404896,0.000400722466881992,1 +"6715",571.415232477732,1.24999682096351,0.232589795828766,5.37425477549225,7.69000607906366e-08,0.000943102345536368 +"79644",1626.98304895883,0.780453387080283,0.22377945452298,3.48760072162987,0.000487375312102008,1 +"6720",6899.96801928999,0.904426721390272,0.251511073023135,3.59597178175563,0.000323182833876086,1 +"6721",6120.33185533369,-0.289118944081102,0.190502023877139,-1.51766862208017,0.129097958054527,1 +"140890",2438.12825463902,-0.00279564715760794,0.142899294013252,-0.0195637576582336,0.984391375495311,1 +"285672",1438.13956030265,-0.411756900966779,0.168887309957113,-2.43805707528493,0.0147664423289459,1 +"6722",6444.04145639321,-1.88481854872599,0.215163660878454,-8.75992972526493,1.95372137849084e-18,2.39604389858117e-14 +"153443",478.24072107521,-0.130968658244262,0.163789014406527,-0.799618086223999,0.423932105357533,1 +"57522",741.799544102568,0.384507926669483,0.178916419948465,2.14909244651909,0.0316270724110912,1 +"23380",1773.26256257448,0.712729769124435,0.158901065231052,4.48536810051009,7.27881630722285e-06,0.0892674031917811 +"9901",999.522034816216,-0.249803535298037,0.370549600475739,-0.674143313006736,0.500220204967418,1 +"5552",4561.60901801736,-1.26875595704643,0.230559881965831,-5.50293462257434,3.73520960847367e-08,0.000458086106383211 +"6717",4730.15660909813,0.191825676093427,0.176206490670802,1.08864137389698,0.276312064123173,1 +"6723",3251.24808661259,0.544011474522156,0.173676818746858,3.13232058513853,0.00173430389743903,1 +"6725",189.293789793101,1.76381337893188,0.567639685816376,3.10727636387011,0.00188819788786029,1 +"6727",7986.85567087501,-0.154715719500289,0.115125760455748,-1.34388445199246,0.17898575451667,1 +"6728",1365.30674454155,0.157369265931841,0.103628071421511,1.51859687991042,0.128863996992973,1 +"6729",2532.81234857218,0.266959587433612,0.129471462485533,2.06191837420112,0.0392155078862023,1 +"6730",5351.11274246832,0.174077433685578,0.0947179196082961,1.83785110996389,0.0660843479437426,1 +"6731",3368.55704377755,0.075574017335612,0.102253072228043,0.73908798717625,0.459853570868083,1 +"6726",6217.08528131837,0.349039215496441,0.108528756760274,3.21609890240818,0.00129946040313694,1 +"6732",3692.4940476773,0.383187388445932,0.218749358675253,1.75171891139026,0.0798221534039864,1 +"6733",1805.95395699561,0.198221730768485,0.13725983037404,1.44413504102636,0.148700992982946,1 +"58477",3171.30331514459,0.671010487345689,0.212139561410594,3.1630615378098,0.00156119326965968,1 +"8406",2242.52480019305,-3.32290165696736,0.288974628654171,-11.498939102173,1.33546762908795e-30,1.63781750031346e-26 +"27286",1681.80774306356,-0.263462065207967,0.41100768303976,-0.641014939816781,0.521512976485492,1 +"63826",248.925713554409,-0.672001892370628,0.162525198169688,-4.13475510221503,3.55333350371542e-05,0.435780820895659 +"402055",543.589303682816,0.237277745919749,0.123384172735788,1.92308089975082,0.0544698906843742,1 +"10250",2951.93548037589,0.228778010913391,0.0980999662578832,2.33209061776825,0.01969592452097,1 +"23524",23826.5031523447,-0.517127183505152,0.154261565473969,-3.35227496179154,0.000801503722730808,1 +"222183",589.935356214769,1.0729454987039,0.363680988485786,2.95023807312886,0.00317529150518374,1 +"51593",5786.88082964579,0.274918775606064,0.112974198018858,2.43346516662304,0.0149550743067092,1 +"6426",9770.41167808919,0.370931343285971,0.101604971330795,3.65072041680253,0.00026150577996821,1 +"10772",3400.96820663756,0.461106208680089,0.0841616599865371,5.47881551711135,4.28182508788421e-08,0.000525123028778119 +"9295",5104.3046806083,0.330694013499678,0.11705214735958,2.82518536361232,0.00472532708948408,1 +"6427",7996.65644935729,0.348099549104477,0.127160353582283,2.73748491017861,0.00619109602954422,1 +"6428",11839.4468034981,-0.288100268633829,0.116363164931424,-2.47587171424579,0.0132911325614067,1 +"6429",5981.84408576914,0.0459743854250739,0.109072892840677,0.421501476927256,0.673388932938378,1 +"6430",9559.17291522028,-0.874101456590314,0.180946264161767,-4.83072397564871,1.36037487809274e-06,0.0166836375049294 +"6431",7078.02317907204,0.0643794529602495,0.157455744912977,0.408873318632045,0.682632630424097,1 +"6432",5866.03847518223,-0.00913135330096091,0.106357242147743,-0.0858554915167543,0.93158129343237,1 +"10929",2348.92693345406,-0.506936342839359,0.122554189123769,-4.13642606967434,3.52756935311356e-05,0.432621105465847 +"8683",3362.90434666015,0.664501536922402,0.165277294589857,4.02052525467211,5.80685234399589e-05,0.712152371467657 +"140809",4937.52267290891,0.229365631600957,0.311307882425367,0.736780674533498,0.461255737307388,1 +"6760",3693.690591181,-0.0429349821112423,0.12196236315267,-0.352034685138866,0.724812250373872,1 +"26039",925.859406457979,0.675223700352185,0.167152492218507,4.0395670527575,5.35499576654644e-05,0.656736680809255 +"51188",801.959748175728,0.454652492708833,0.153129005116669,2.96908147716649,0.00298691386648419,1 +"6741",2975.9734497967,0.391026815091886,0.138852014629492,2.81614073901117,0.004860436949647,1 +"6742",2993.7897172522,0.395944748603666,0.128569943298833,3.07960584289423,0.00207274706594417,1 +"23635",1231.19881920326,-1.24686376396563,0.295718783627743,-4.21638337838969,2.48251577406421e-05,0.304455734531235 +"23648",1179.35799017532,-0.777114076633307,0.255922061168032,-3.036526327924,0.00239321207602905,1 +"170463",928.326278913642,0.239403581621393,0.114281302845867,2.09486220107483,0.036183243829303,1 +"284297",1913.69410277337,-2.08841790439262,0.326538702370514,-6.39562137422521,1.59895769903032e-10,1.96096172209079e-06 +"54434",2664.72236868349,-0.225548791644223,0.140485780299851,-1.6054919662532,0.108385579773569,1 +"85464",1044.5304520327,0.303508532754864,0.128116327403091,2.36900743962116,0.017835894683173,1 +"54961",7291.91024632542,0.251312574748371,0.334856125527793,0.750509115974084,0.452948135546227,1 +"8636",2087.74470705779,0.261963360761278,0.153371482914639,1.70803173955799,0.0876304533167565,1 +"8082",2322.06728220825,-1.67171399375743,0.284056795399395,-5.88513994677344,3.97717314250503e-09,4.87760514196817e-05 +"6745",7574.49743962923,0.463793156633717,0.143269494256887,3.23720802561164,0.0012070538693178,1 +"6746",10743.9946333519,0.407642694048979,0.123932731780516,3.28922543861061,0.00100463520573944,1 +"6747",5432.99730089879,0.566411419848286,0.118554279442276,4.77765477984347,1.77351524474221e-06,0.0217503909615185 +"6748",7076.21549105342,0.195318748595676,0.158259253127969,1.23416953344106,0.217139737607578,1 +"6749",10189.9362665364,0.610915872053843,0.155222401227138,3.93574553172829,8.29388191858913e-05,1 +"29101",5032.37006659001,0.340193088661964,0.131467671126826,2.58765585292661,0.00966314703688029,1 +"117178",1117.07619332999,0.516364958140001,0.18999641108776,2.7177616418317,0.00657251674641637,1 +"6767",7059.38434362225,-0.44376023875086,0.126236528706029,-3.51530767916042,0.000439244774317727,1 +"145165",416.542512303654,-0.490240276203398,0.140820889909953,-3.48130363695952,0.000498979494851212,1 +"6768",10964.408399824,1.56829273546838,0.502119048202507,3.12334841922961,0.00178805940664347,1 +"6482",4135.60024222452,-1.01375863524127,0.29872367922326,-3.39363333324374,0.000689719734154826,1 +"6483",1209.55580989391,-0.551662397862238,0.222172992853213,-2.48303086157153,0.0130269800951377,1 +"6487",733.390764716476,-1.21079317854542,0.257143310613043,-4.70863183513825,2.49385045992203e-06,0.0305845820404837 +"6484",3778.75471676311,-0.477132183762064,0.304443712512737,-1.56722626926349,0.117061812281646,1 +"8869",2486.37876089774,-0.849106221024848,0.386739459279096,-2.19555103740288,0.0281240940515714,1 +"10402",126.3066013113,0.0808062754422168,0.286648045964771,0.281900667315722,0.778019677835661,1 +"6480",1518.47867004735,-0.610627162311997,0.332178399184926,-1.83825066232575,0.0660254775707886,1 +"84620",153.843344263204,0.0145908396213879,0.422051249004643,0.0345712508985547,0.972421626250336,1 +"55808",790.163600076659,-0.974358097729578,0.488361983644513,-1.99515550014399,0.0460259227461807,1 +"10610",1266.71461929111,-0.561530156711632,0.429858225419414,-1.30631478823918,0.191445530133113,1 +"256435",146.431451604136,-1.68210588527148,0.27908576639956,-6.0272005519022,1.66823946437374e-09,2.04592887910796e-05 +"27090",852.934826203003,-0.727373079998423,0.147228421801126,-4.94043929222406,7.79467590689454e-07,0.00955939053221547 +"81849",278.926628528623,-0.913939961122922,0.356973702833295,-2.56024450504055,0.0104598543272827,1 +"30815",2693.08019278296,-1.57331754900576,0.166815138569528,-9.43150341448181,4.04252543588086e-21,4.95775319456429e-17 +"7982",985.85761108443,-0.0749318335375221,0.127260537209993,-0.588806515989141,0.555991074283283,1 +"54879",624.749711924702,-0.646442635404875,0.17458380142837,-3.70276411738063,0.000213263152262869,1 +"6489",336.49859913593,-2.56546579951198,0.325109480810605,-7.8910826996353,2.99576043181799e-15,3.67400059358158e-11 +"7903",440.413233504003,0.244091449127309,0.258616763734281,0.943834597582792,0.345254177735926,1 +"23166",3297.49949458146,-1.13462769819077,0.197792582852451,-5.73645220577952,9.66803156596334e-09,0.000118568739124974 +"246329",181.838501756147,0.626775237612748,0.254508997597793,2.46268400539323,0.0137901392687543,1 +"10274",1951.07557857943,0.0639505236661886,0.176364719982492,0.362603834103199,0.71690084574061,1 +"10735",5451.07760668967,0.218437635626515,0.150378504220681,1.4525855058776,0.146338872737989,1 +"54441",160.990549706506,0.332928283853201,0.143974476230302,2.31241184250358,0.0207549983662542,1 +"442582",178.21769591691,0.360096673260473,0.148221521475382,2.42944931124783,0.0151217792501794,1 +"64940",354.90336424128,-0.218653020114123,0.278294270590112,-0.785689980790756,0.432049134408416,1 +"8027",1174.67233260802,-0.189399709436188,0.194431701000834,-0.974119490089609,0.329997213328913,1 +"10254",1831.20012973655,-0.249662372015108,0.121749585103879,-2.05062195326655,0.0403037767799353,1 +"10617",2190.87020011113,0.46001519373171,0.0964240965909171,4.77074932507111,1.83541842354751e-06,0.0225095715463866 +"57559",305.511460624328,-0.363163210860323,0.209041457725811,-1.73727840788723,0.0823380408817309,1 +"55620",2816.51981669562,1.42721168922995,0.457877189453127,3.11701854144463,0.00182690081733062,1 +"10809",2416.09903953094,0.561088131720874,0.241475222140753,2.3235847005198,0.0201477632092507,1 +"90627",1387.35255409714,-2.08506112740318,0.235883719209145,-8.83936006433098,9.62684016792433e-19,1.18063567819424e-14 +"10948",3260.72303359874,0.478905615769114,0.216457431328548,2.21247019716413,0.0269341932411892,1 +"83930",1381.37068463123,-0.0207504925977654,0.158537220213983,-0.130887198411564,0.895864541745955,1 +"134429",170.73712924369,-0.191634117118201,0.349741842078312,-0.547930198970277,0.583739832016111,1 +"80765",553.293918890143,-0.515923507215057,0.285112677164614,-1.80954250209359,0.0703667633947374,1 +"56910",6101.3739571001,0.339193591697607,0.0997611169703303,3.40005807872506,0.000673715414048239,1 +"9754",449.666757312292,-1.77447232266807,0.211354483881465,-8.39571647632162,4.63061799970078e-17,5.67898991483304e-13 +"57519",806.882860387759,-2.28478920051004,0.319769857229619,-7.14510498364263,8.99271337043618e-13,1.10286636775029e-08 +"6772",12796.9973329418,0.909856371628882,0.28870991748097,3.15145520308929,0.00162459081218929,1 +"6773",4845.57868492773,0.686053908008519,0.148051363605213,4.63389118007667,3.58855682340891e-06,0.0440100608822869 +"6774",11766.4357851759,-0.392124666241708,0.185533241333541,-2.11350086606189,0.0345579209633401,1 +"6775",184.094356147681,-0.326711963771806,0.363452248501157,-0.898913034983648,0.368698984327892,1 +"6776",2371.55324394727,-0.860713280243724,0.231891173442445,-3.71171212541796,0.000205862041163629,1 +"6777",4440.66487015204,-1.082767526853,0.199856145669709,-5.41773445707508,6.03589712257629e-08,0.000740242423112756 +"6778",11375.7383220154,-0.8018716369197,0.242713589298554,-3.30377725959688,0.000953915903734827,1 +"6780",7545.20742565032,0.20915728646659,0.114609493909559,1.82495602529787,0.0680076656145061,1 +"27067",1713.50270576257,-0.0105911681248833,0.149429226505646,-0.0708774874404045,0.943495260725035,1 +"8987",252.38830091408,-0.836934801843375,0.298141498599934,-2.80717312341155,0.00499783738336145,1 +"6781",3443.65064423255,-1.51758912215055,0.311625376665269,-4.8699150832657,1.1164621798261e-06,0.0136922921733873 +"8614",1406.35234764295,0.863015229396422,0.336561267170984,2.56421434543145,0.0103409661152497,1 +"26872",635.631590085244,-0.135284029700444,0.237172729658584,-0.570402971265662,0.568404414779546,1 +"261729",1259.27668836246,-1.05144554726905,0.229119721498767,-4.58906610217185,4.45233434541076e-06,0.0546034284121176 +"55240",2754.39960286723,1.45673937663661,0.295197309611339,4.93479896058191,8.02333605608046e-07,0.00983981933917708 +"79689",1618.27173652103,-2.45675508577184,0.357972666214781,-6.86296837060123,6.74441640974694e-12,8.27135228491365e-08 +"6491",483.513151088709,2.4897792255291,0.287411754572096,8.66276060711549,4.60474740650492e-18,5.64726221933763e-14 +"6786",3761.18439670126,-0.791420506166531,0.170965631294586,-4.62912048564226,3.67222070290961e-06,0.0450361147004834 +"57620",1343.60579739074,-0.145721584753945,0.139032414484805,-1.04811230743512,0.294586866535746,1 +"10963",6082.51636322748,0.711737546173766,0.104990027451597,6.77909667660479,1.20929589823065e-11,1.48308048959007e-07 +"6793",1938.53571791009,-0.331037625638553,0.163447057289726,-2.02535078408757,0.0428313572818107,1 +"6794",3024.96141528162,0.0628051746771015,0.0604123804712381,1.03960767953851,0.298522207582787,1 +"114790",1225.97281899026,0.137768558909247,0.162354636647375,0.848565595379159,0.39612305794443,1 +"8576",1223.21397772263,-0.227505846150441,0.126357993753774,-1.80048637519339,0.0717838730397726,1 +"9263",1725.98895373412,-0.353367610290761,0.270693678261088,-1.30541508232022,0.191751545405284,1 +"9262",2154.82204663266,-0.183910674106032,0.326320038372276,-0.563589888697613,0.573033269746465,1 +"8859",608.140292126673,0.204490767272367,0.145003692476977,1.41024524120194,0.158467281337726,1 +"8428",10210.1293641553,0.147950631268971,0.127609660125441,1.15939993197643,0.246293204499693,1 +"10494",3744.66232150178,-0.0335960047652034,0.12187664438347,-0.275655807026468,0.782812441774175,1 +"6788",1379.27855797561,0.150092742578282,0.164027797772183,0.91504455108728,0.360168242378277,1 +"55351",166.055827499236,-2.33084240201237,0.343950121089513,-6.77668725520166,1.22962660571246e-11,1.50801406924575e-07 +"282974",457.082965607088,1.00626195183085,0.285863705779341,3.52007593649396,0.000431423263200469,1 +"140901",2357.23330082983,0.705021847276456,0.124645299102921,5.6562249226448,1.54738659063202e-08,0.000189771491475111 +"27148",851.025259598216,0.182629277474052,0.195765599810537,0.932897698322902,0.350872790888594,1 +"11329",4155.55750179485,-0.193754612437478,0.159592501836656,-1.21405836870573,0.224725436006667,1 +"23012",3543.47032961852,-0.313879109360566,0.252820988460071,-1.24150732608238,0.214418393488555,1 +"27347",2867.39053175634,-0.336209935905343,0.171025680112015,-1.96584475316887,0.0493165464264053,1 +"6789",2366.6088578857,0.173507232389735,0.133778684852038,1.29697217895091,0.194640759496229,1 +"83931",3924.66295717176,-1.33855295091231,0.254842270351408,-5.25247616522387,1.50067889214066e-07,0.00184043259332131 +"3925",10889.8524252254,1.7877423507533,0.290724510405904,6.14926601220272,7.78423302548945e-10,9.54658338246026e-06 +"50861",1202.63148935814,-0.827226419427659,0.279319998680672,-2.9615724736322,0.00306072451216347,1 +"2040",11340.4830987734,-1.27769918919461,0.260081688161978,-4.91268415790525,8.98379343030418e-07,0.011017724262925 +"9399",600.474602878824,-0.211705895187599,0.184793980609479,-1.1456319869801,0.251947456257429,1 +"30968",4510.91777693585,0.366919959771467,0.125574304924922,2.92193502477152,0.00347864102251626,1 +"11037",1528.84707911818,-2.28006278916299,0.330861583569872,-6.8912889933064,5.52890867481277e-12,6.78065359879038e-08 +"85439",2170.79691993216,1.10647918365675,0.390008149351821,2.83706682923337,0.00455300809502692,1 +"219736",171.175661445739,-0.210116365585145,0.36647842948138,-0.573338970816073,0.566415203616819,1 +"56977",141.792617457676,-0.1200851611497,0.285550485294529,-0.420539159742064,0.674091628450841,1 +"64220",438.395379278742,1.21572971478882,0.449817835437253,2.7027156751289,0.00687755492585422,1 +"92335",1313.37060536483,0.10456592454918,0.154874478972154,0.675165626016284,0.49957054292531,1 +"55437",291.761774865356,0.233019199551524,0.175608055021146,1.32692773986629,0.184532587116187,1 +"11171",5708.20679490825,0.164670788331281,0.129381381957767,1.2727549036772,0.203105028226926,1 +"55342",1442.59519799912,0.517404381454187,0.198921766554098,2.60104457353829,0.00929403773143889,1 +"6801",2288.82537870053,0.302002225427506,0.144551211000875,2.08924036911513,0.0366860911896638,1 +"29966",1902.39599091764,-0.495649918657205,0.155340008844762,-3.19074218125306,0.00141907851638237,1 +"29888",5000.4609458927,0.246191163551233,0.107907461839,2.28150268160838,0.0225187182102803,1 +"412",2133.14651734994,-0.147416149106989,0.297160866226308,-0.496081973979447,0.619836576635822,1 +"3703",6313.2306815667,0.429743103598669,0.165798750676932,2.59195622309632,0.00954319142520557,1 +"201595",4519.84709963445,0.541174563546737,0.149582037296284,3.61791143728581,0.000296989979207535,1 +"10273",1619.38883032831,-0.47849031281489,0.131147647826463,-3.64848566287698,0.000263790620967294,1 +"8677",1471.02281584249,0.514257934133117,0.111509694009393,4.61177782525168,3.99239591441987e-06,0.0489627434944453 +"8676",387.435243974401,-1.5336791347791,0.314144319647934,-4.8820845670484,1.04970218099371e-06,0.0128735475477069 +"23673",2881.52795282636,-0.745854752020377,0.121780038357173,-6.12460598700776,9.09082843970285e-10,1.11489919984516e-05 +"8675",2866.58335765912,0.0656479599276459,0.140996551396224,0.465599756005125,0.641502017656068,1 +"55014",1775.77976490839,-0.249175527577919,0.137336839745508,-1.81433858562389,0.0696256145308934,1 +"53407",596.285488493924,0.0688790956714224,0.0938375661700694,0.734024745980595,0.462933656344975,1 +"6804",459.576197478111,0.939972926008217,0.219618665278001,4.28002294257806,1.86874048318535e-05,0.229182332857851 +"2054",683.282715210723,-1.47630824332038,0.295901458823601,-4.989188796803,6.06333669228783e-07,0.0074360761194218 +"6809",2204.10354659532,0.701006940686584,0.21720959494486,3.2273295333226,0.00124951467818967,1 +"6810",2383.58637309648,0.0571549260668108,0.102035402672148,0.560147993441613,0.575378496801271,1 +"6811",2133.70559782602,-0.155591123629061,0.132265625432389,-1.17635344119395,0.239453668630117,1 +"10228",3293.30941672492,0.724802491268121,0.179339730519236,4.04150541081793,5.3109155425892e-05,0.651330682143139 +"8417",2626.24733526321,-0.379881165178967,0.13317200550324,-2.85256021896977,0.00433685945089517,1 +"9482",1261.09818747852,-0.494911613094943,0.164800484002749,-3.00309562857041,0.00267248441024855,1 +"6812",1092.51639794842,-1.53008130085433,0.313342395939638,-4.88309695936926,1.04432486123031e-06,0.0128076000981285 +"6813",4642.69808771042,1.3973491480258,0.344330567130494,4.0581617823556,4.94605001231254e-05,0.60658357351001 +"6814",2117.48636221376,-0.237206549746678,0.145780992633208,-1.62714319241536,0.103706689449436,1 +"252983",344.724730299214,-0.492964405480573,0.251279606297277,-1.96181621240432,0.0497838854676731,1 +"134957",1411.8546132562,-0.0446548770235273,0.212284718132756,-0.210353705232807,0.833391622104953,1 +"29091",323.924027793869,-2.84770904052161,0.527406736997623,-5.39945518468879,6.68435787941559e-08,0.000819769650331528 +"55359",469.591063213919,0.880809742779832,0.576572506462894,1.52766518158028,0.126595689169809,1 +"6815",1203.54612055654,-0.0254230944319288,0.125254613933327,-0.202971320844608,0.839157448270887,1 +"51657",1488.55372743353,0.728435846766459,0.201387391838568,3.61708764444586,0.000297936442222674,1 +"10923",4120.64850470458,-0.265246740296914,0.108076198847986,-2.45425674777845,0.0141176143493617,1 +"8803",1178.65972081765,-0.389317823432162,0.132834087910629,-2.93085780582237,0.00338027467950161,1 +"8802",3909.18185340875,-0.458718576374524,0.127906380208044,-3.58636195964896,0.000335323439446508,1 +"8801",2027.96584206368,-0.516707747384876,0.163605648650124,-3.15825126851134,0.00158718689201155,1 +"64426",3182.6270445385,0.417898536509072,0.0902083708026835,4.6325915520984,3.61116554901308e-06,0.0442873342930964 +"51684",1323.81154659731,-0.307378085519767,0.136912372277241,-2.24507164989693,0.0247635332488656,1 +"57794",1157.97782251721,0.0745019958035615,0.0927185956329143,0.803528087273076,0.421669569250798,1 +"10147",2671.74595465284,0.314763748123069,0.14889894025501,2.11394216496096,0.0345202073255379,1 +"10910",1506.42970811498,0.0646567133816333,0.137082265647048,0.471663588841666,0.637166930518508,1 +"23213",4184.32113158201,1.17483872235469,0.299596310316287,3.92140584479962,8.80338469728101e-05,1 +"55959",4367.09917274139,0.24875854448148,0.358625584071487,0.693644166869851,0.487905388332956,1 +"6817",561.830685002316,-0.1894601625843,0.248938122218137,-0.761073317723033,0.446613276498333,1 +"6799",129.10265868656,0.226757174198725,0.286892739513923,0.790390076036484,0.429299996076096,1 +"285362",2219.00450839303,0.235873721724801,0.247906347262552,0.951463019520804,0.341369382529432,1 +"25870",7384.59201354796,0.268696646403259,0.198776783143627,1.35175065293773,0.176455095132046,1 +"7341",3153.00950299891,0.23191408129986,0.104944854197012,2.20986615374671,0.027114452848148,1 +"474338",900.424675827792,0.273327299686361,0.0924715252092036,2.95579962662016,0.00311859621246603,1 +"6613",5852.40139290478,0.45969455220578,0.112546279706207,4.08449353817627,4.41730556081045e-05,0.541738353977793 +"6612",3987.25626904075,0.310728338961391,0.140373770401427,2.21357834923719,0.0268577980510548,1 +"23353",5249.95428582557,0.375227417308752,0.143537982982904,2.61413327337507,0.00894541352270022,1 +"25777",10844.7560511885,-0.722825693762959,0.193255377473754,-3.74026173662942,0.000183828730920024,1 +"6821",1493.32685283234,-0.306907998387677,0.185273714628873,-1.65651128117365,0.0976183224062468,1 +"11198",6700.66709823107,0.2589296764743,0.132462020623875,1.95474653983672,0.0506129939632636,1 +"8464",419.906452704074,-0.143965216571891,0.133525256093173,-1.0781871593748,0.28095024113108,1 +"6827",2267.580657697,0.039355591269765,0.101531243355949,0.387620499551963,0.698296896327563,1 +"6829",7984.34940921098,0.0799882121427161,0.126770820287254,0.63096706293663,0.528062060677059,1 +"6830",8228.60251835717,-0.169281071444889,0.153998436057196,-1.09923889994582,0.271663875322504,1 +"9913",1976.2126428512,0.31082082490114,0.101241169630746,3.07010306217111,0.00213984915985047,1 +"6832",1108.67515220242,0.0182634753224423,0.118057018627951,0.154700461986073,0.877057465766871,1 +"6834",1997.81229170882,-0.168348086707275,0.115330627251469,-1.45969974081739,0.144372613176461,1 +"6835",823.225426818922,0.286603017008705,0.14623548795455,1.95987322241358,0.0500106101413142,1 +"6836",10571.3004696305,0.305957299610568,0.129280775552847,2.3666109543526,0.0179517923969739,1 +"6838",1811.05070478579,0.165671138579352,0.150096613972156,1.10376333079762,0.269695815361136,1 +"64420",785.89621180881,0.404576942197408,0.338684989765193,1.19455232568145,0.232261985258387,1 +"56241",431.062736493347,0.374020644449204,0.290424980951744,1.28783909436272,0.197801980358154,1 +"203328",129.120593876573,0.0900172075365795,0.336306287006498,0.267664361370801,0.788957684602416,1 +"55061",1008.64033227946,0.20275639419999,0.515971421855857,0.392960512174708,0.694348646822217,1 +"26032",110.644145949233,-1.1236943547317,0.348572605908758,-3.22370242435471,0.00126544825002942,1 +"6839",622.972999075313,0.744818696942101,0.193132835958095,3.85650991581623,0.00011501743450478,1 +"79723",489.479304049212,0.686697564976063,0.1599599225549,4.29293509279102,1.76326565149936e-05,0.216246899499882 +"23512",2306.81907144518,0.490858938082284,0.116067700663706,4.22907437017726,2.3465477251637e-05,0.287780613014076 +"9900",483.131377714549,0.222273577281052,0.329523832621218,0.674529594757877,0.499974677003708,1 +"79987",2225.89369696458,-2.65052463254295,0.272946430638942,-9.7107869347781,2.71234846186692e-22,3.32642415363359e-18 +"6840",21027.6723078655,-1.83184620660702,0.3167320475774,-5.78358338102612,7.31259158466943e-09,8.96816231943859e-05 +"258010",693.540867180535,-0.242622221080585,0.22494356244571,-1.07859152954929,0.280769858992746,1 +"23075",3362.48057325515,-0.643162795558093,0.180973337221519,-3.5539091306629,0.000379550330535394,1 +"375757",958.019362958764,0.173544075025058,0.156611741409701,1.10811662946178,0.267811450020244,1 +"126074",214.282330963145,0.585299289992884,0.181123054333491,3.23150077248149,0.00123141991084831,1 +"54823",358.170294689481,0.408883305529937,0.166543517734175,2.45511390111602,0.0140839955435752,1 +"94056",3353.73550894445,0.249774472775559,0.125846525275791,1.98475462257048,0.0471717783387858,1 +"55638",288.679759619621,-2.5095452578598,0.421867458358361,-5.94865806342434,2.703497396744e-09,3.31556920736684e-05 +"10388",138.377869165719,1.33399816074144,0.284745369914957,4.68488095571092,2.80122695717e-06,0.0343542474027328 +"85360",1041.99883357945,-0.89088596150087,0.294253442835076,-3.02761440245985,0.00246492392634126,1 +"84144",388.088232093975,-0.465906803203666,0.291447915823591,-1.59859370373975,0.109910909653037,1 +"25949",2983.07088335687,-0.0952287107117548,0.124640172331671,-0.764029035986478,0.444849939501451,1 +"6850",2438.01017984125,-0.323059066758935,0.297669555214897,-1.085294283877,0.27779133678039,1 +"8189",4822.60005015458,0.412970748937058,0.0848058092203245,4.86960448504377,1.11821843539679e-06,0.0137138308917063 +"81493",290.462057965897,-1.82282317135865,0.36104418122406,-5.04875377073982,4.44701461392509e-07,0.00545381872251773 +"10492",7803.42207057433,-0.168021938855977,0.139449244704229,-1.20489672936092,0.22824317139037,1 +"23345",3889.16876985781,-2.5611748052145,0.30484922233576,-8.4014477241921,4.41007492323914e-17,5.40851588586048e-13 +"23224",6070.71333488716,0.149829798387116,0.183364385901134,0.817115044727934,0.413862686036924,1 +"8831",896.48099090678,-0.607056713657784,0.186569814960316,-3.25377775492197,0.0011388133559835,1 +"9145",1675.68072565829,-1.19591849680078,0.260601757451619,-4.58906535587275,4.45235026146408e-06,0.0546036236065954 +"9144",8337.22184157966,0.863816978479342,0.243872934616156,3.54207809012898,0.000396987930842744,1 +"8867",671.852334112439,0.00858671838417048,0.156308566503694,0.0549344068353897,0.956190720563889,1 +"8871",1889.56191540498,-0.336174336544372,0.207597061170687,-1.61935980523332,0.105369869851059,1 +"55333",2260.11253164397,-0.510567182365878,0.179896522514628,-2.83811590812914,0.00453807000394946,1 +"23336",67536.2901294453,-5.17031024981695,0.47802022710463,-10.8160909447986,2.88835480929547e-27,3.54227833811996e-23 +"11346",6642.97719442445,-2.13254178247735,0.284205301266317,-7.50352570122905,6.21237958339719e-14,7.61886232107831e-10 +"171024",54690.2643369167,-4.91642081697152,0.447324664974423,-10.9907215092927,4.23526746693108e-28,5.19413202144428e-24 +"11276",2341.50051119809,0.152289533796132,0.121367147882385,1.25478382291485,0.209557246706698,1 +"6855",211.95100511267,-0.809576551002696,0.382020020800092,-2.11919927470592,0.0340736295720376,1 +"6856",9506.93582470988,-0.0460906432329086,0.206068281994565,-0.223666848613433,0.823016543407482,1 +"90196",1592.58370267055,-0.241534642892093,0.110488565774369,-2.1860600796044,0.0288112101177133,1 +"6857",455.47604911135,-0.271396466910712,0.327528553744924,-0.828619257184131,0.407319887651943,1 +"23208",1533.64205020703,-1.56131166275436,0.317766499939368,-4.91339289400322,8.95136423960087e-07,0.0109779531034465 +"83849",202.894369124312,-1.50302744367061,0.272645294068118,-5.5127576979014,3.53254409230443e-08,0.000433231207480215 +"51760",456.311366560763,1.23556045258414,0.400030169868451,3.08866816967944,0.00201055866994496,1 +"9066",741.313287111944,1.175697378463,0.415909184988155,2.82681272955413,0.00470138130936978,1 +"90019",4174.91480388189,0.806381747316546,0.772099009767101,1.04440199652605,0.29629944029908,1 +"84958",4125.51683448897,0.983021094921533,0.528945317687385,1.85845504639199,0.0631044214866565,1 +"54843",2476.39130196213,-0.508598554752605,0.357223000026354,-1.4237564622521,0.154516982876573,1 +"94120",395.937462622365,-1.24317039747658,0.224624095507965,-5.53444809500635,3.12209867468713e-08,0.000382894181463629 +"94121",1079.08494444325,-0.489111408098554,0.239323591444914,-2.04372416921185,0.0409808041424698,1 +"94122",505.090918978727,3.19027188601229,0.644888473570264,4.94701334689725,7.536081111814e-07,0.00924224987552869 +"84447",3044.45300655571,0.329078169396081,0.147076909505971,2.2374563791247,0.0252565272470905,1 +"23334",2340.95402433127,-0.219753593639303,0.167560934576376,-1.3114846500163,0.189694076384012,1 +"10454",1612.13255046314,-0.172010274885847,0.208660477964249,-0.824354839804969,0.40973796696571,1 +"23118",4458.94968529983,-0.302482919627975,0.119379472687774,-2.53379339695269,0.0112835236704291,1 +"257397",1510.56020774512,0.366345281481917,0.129245497223915,2.83449164072023,0.00458986587337496,1 +"6867",11419.4754652664,-1.31961954129662,0.31465848077759,-4.19381526928991,2.74301392474161e-05,0.336403227730312 +"10579",5762.50617322123,-1.97052563146145,0.28090591734503,-7.01489541439988,2.3012102601884e-12,2.82220426309506e-08 +"10460",2320.01709351261,1.91099628183519,0.29060790611748,6.57585785385571,4.83734514775911e-11,5.93252008921178e-07 +"51204",948.50261411556,0.618793371443284,0.126468336021707,4.89287193070269,9.93750763160403e-07,0.0121873593593992 +"6869",167.172438967017,-3.03459516443426,0.367301892735972,-8.26185550482752,1.4342526127428e-16,1.75896740426777e-12 +"4070",38408.9148856855,1.24881892144264,0.618650986912438,2.01861622766536,0.0435271230472431,1 +"117143",627.467195723245,0.763703509603428,0.16682179649363,4.57795998877515,4.69532471931535e-06,0.0575834623576834 +"6871",510.999887751553,0.287518352988417,0.120598085341615,2.38410379546218,0.0171207726955495,1 +"93624",1418.95619523398,-0.547798606216965,0.12915502635391,-4.24140369663888,2.22126196095927e-05,0.272415566892045 +"10474",4488.18226508584,0.0157562920704806,0.137088685916938,0.114935028847146,0.908496620058782,1 +"6872",1512.79729746609,-0.0173035952220968,0.147339982916407,-0.117439916033613,0.906511454484786,1 +"6881",1960.68087317323,0.178342385788545,0.141676408171744,1.25880086945988,0.208102266235595,1 +"6882",1224.22551492808,0.108202438570425,0.0992576204811316,1.09011719247283,0.275661523897254,1 +"6883",930.028242227516,0.339743646070246,0.112384129216704,3.02305715618563,0.00250234976152696,1 +"6884",687.82709236571,-0.332178785155349,0.198645137172126,-1.67222208348104,0.094480537377788,1 +"8148",9337.27784635258,0.049662199548903,0.193315878792322,0.256896639112894,0.797258565136174,1 +"9015",272.814729967171,0.703114575387357,0.156545020143764,4.49145284047777,7.07389655352177e-06,0.086754267332391 +"9014",730.82756673809,0.43254253979693,0.186698896194,2.31679216436005,0.0205150560854731,1 +"9013",2138.41808491158,0.354809731609269,0.129735350892926,2.73487317964787,0.00624043138273184,1 +"79101",1231.67799139757,-0.0575137891372998,0.167156123720261,-0.344072283188082,0.730791926570295,1 +"138474",858.407114943666,-0.0235881138655703,0.20843374080462,-0.113168404378834,0.909897044366605,1 +"6873",1810.44268125193,0.474570945038575,0.182736324407965,2.59702577785838,0.00940348667290241,1 +"83860",613.79445021494,-0.0516979536256895,0.151314367921161,-0.34165925110711,0.732607341490444,1 +"6874",9770.54808271961,0.793004943647762,0.30249048465319,2.6215864097575,0.00875215721375939,1 +"6875",299.425948654347,-0.168222069820185,0.206167919849553,-0.81594687448436,0.414530521034668,1 +"6877",234.001169479916,0.464298672839547,0.162206878330354,2.86238584712756,0.00420464691187589,1 +"27097",1397.08536032163,-0.157149763640634,0.125526981891821,-1.25192019494315,0.210598945208505,1 +"6878",3197.77037805648,0.184462970073981,0.178787465266939,1.03174442234285,0.302191861346453,1 +"10629",742.200345106198,0.532915078208818,0.100870647850285,5.28315312299557,1.26979171521173e-07,0.00155727255953567 +"6879",4783.50575486072,-0.439223972949417,0.136273833005647,-3.22309839873085,0.00126811983068794,1 +"129685",1053.09299116401,0.0877311472897458,0.112070180064929,0.782823291966856,0.433730887781337,1 +"6880",2210.52438010556,-0.332051792171046,0.148486591693108,-2.23624091835396,0.0253359942179283,1 +"51616",1422.43764013213,-0.40118722539579,0.183457523690249,-2.18681260558797,0.028756206865087,1 +"117289",283.876681788484,-1.13879745784868,0.295660829719425,-3.85170216470465,0.000117299634789717,1 +"6876",117832.863144339,-3.29818788204745,0.396970017992278,-8.30840550308667,9.69965740726703e-17,1.18956598442723e-12 +"8407",33041.1038768626,0.642240419933607,0.281727656263716,2.27964988759367,0.0226284616428527,1 +"6886",160.647909889683,-1.57562184225826,0.318250205920968,-4.95089025221099,7.38747573878963e-07,0.0090600002460516 +"6888",12048.2749829211,0.294880045675859,0.239961410940757,1.22886444332777,0.219122634723718,1 +"132001",488.392612463575,0.320793887155896,0.176187905471152,1.8207486279949,0.0686450765612685,1 +"85461",2531.00271077805,-0.464465886874547,0.15110833931177,-3.07372769094002,0.00211402298830385,1 +"26115",2815.68926271515,1.31779434647128,0.286182407313145,4.60473569582262,4.12990038550141e-06,0.0506490983277893 +"10010",1650.09471126198,-0.307788217480256,0.109561253473036,-2.80927981127931,0.00496524709838714,1 +"57551",4771.99285962579,0.202531012985058,0.153665791869384,1.31799674163791,0.187504738670232,1 +"9344",3209.41658833796,0.113019549846001,0.121396332859627,0.930996408076739,0.351855422199099,1 +"51347",2275.753740613,-0.175687948926516,0.124856973644765,-1.40711362607884,0.159393698229499,1 +"6890",5656.03200011219,0.708951727108976,0.280998852191787,2.52297018859388,0.0116368265670123,1 +"6891",4220.42206559253,0.861351732894931,0.2374574120345,3.62739459474015,0.000286295589875505,1 +"6892",10316.2915846516,0.304268490551191,0.231884623416637,1.31215466583353,0.18946795440738,1 +"55080",1312.22747597155,-0.451178875745756,0.206624894357641,-2.18356494336458,0.0289942319381062,1 +"202018",1044.84872348746,-0.932673766969365,0.148470017103901,-6.28189977452934,3.34460452719032e-10,4.10182299214621e-06 +"6894",1400.83706292103,1.13103673572514,0.174875511853091,6.46766790695825,9.95269251306956e-11,1.22059820980285e-06 +"6895",1222.81115325105,0.998332991376272,0.127433180831044,7.83416834505529,4.7195609049069e-15,5.78806949377782e-11 +"23435",7512.5302592702,0.116258312363182,0.0839256389500362,1.38525382490558,0.165974867549457,1 +"80222",1647.20599785774,0.817090750630482,0.142704407163395,5.72575694662968,1.02973560536085e-08,0.000126286774641454 +"55617",492.629259675596,0.383475099829061,0.10615025910935,3.61256866489631,0.000303178788206443,1 +"83940",268.76946283189,0.256020518892463,0.169617762921888,1.50939686081324,0.131197394825589,1 +"9797",2722.18259534479,0.178541052939686,0.121101294760486,1.47431167678928,0.14039769267314,1 +"128387",511.680652808685,-0.0665595574573418,0.151115826468776,-0.44045391546791,0.659608382911256,1 +"8887",9429.10752767185,-0.0513087921815211,0.104044869612804,-0.49314101091638,0.621912955012543,1 +"30851",601.091803987489,-0.174685534675503,0.199924293248219,-0.873758420436781,0.382249828472252,1 +"6901",1052.70077374735,0.0580153243621001,0.107553657985646,0.539408193534828,0.589605228673973,1 +"23216",5930.30095510211,-1.1419968462642,0.289556720709723,-3.94394867943349,8.01508178182579e-05,0.982969629723115 +"83874",1925.46818265812,-0.648286820503859,0.217147964328152,-2.98546119237008,0.00283151063574818,1 +"26000",3280.07865507973,0.397680472825068,0.10295247381382,3.86275781526373,0.000112114143100832,1 +"374403",503.831056915345,-1.22609506028973,0.396229271652459,-3.09440808140283,0.00197206031490558,1 +"23232",541.159493644979,-0.421294574110801,0.190850473927206,-2.20745888360483,0.0272820164826054,1 +"54662",1489.3874251738,-0.547841546395937,0.214506653407034,-2.55396062403896,0.0106505300236067,1 +"57533",850.250246892632,-0.111277784107314,0.230530659680252,-0.482702753124715,0.629306808144164,1 +"64786",1863.10256165493,-0.201035903856721,0.0912069751510503,-2.20417247171919,0.027512216971806,1 +"125058",590.627880413563,0.0238987419118262,0.210944124862293,0.113294181231298,0.909797330244938,1 +"79735",2399.31745025902,-0.631028955766694,0.195483835778857,-3.22803649341397,0.00124643071893878,1 +"55296",277.319775680804,-0.396454769470155,0.195827048392754,-2.02451486004639,0.0429172045717797,1 +"55357",2381.90277504665,0.313244099494999,0.366436616813169,0.854838422587854,0.39264060399007,1 +"128637",3011.6208638846,-0.279342337947248,0.136126401433817,-2.05208052960293,0.0401618368271076,1 +"25771",1663.74509358494,-0.10345759598344,0.109484416436063,-0.944952709720628,0.34468301972042,1 +"55633",901.751512817431,-0.0910789108560715,0.114285158561319,-0.796944345202998,0.425483354822802,1 +"55773",1618.95839059703,0.125304713030307,0.114583809095545,1.09356386403442,0.27414630506315,1 +"57465",628.567839764552,0.394638620227386,0.173604799124534,2.27320109937914,0.0230140640860316,1 +"4943",1014.16119656247,-0.315369337307996,0.158077363806308,-1.99503160803224,0.0460394326174689,1 +"23102",2629.40561090369,-0.474316773631249,0.164233219774117,-2.88806840835012,0.00387615562261455,1 +"23329",595.402453409016,0.734603186002199,0.319412227746807,2.29985931091062,0.0214561919433383,1 +"653645",118.861371589889,0.367797221214449,0.230898930613781,1.59289270087463,0.111184264027525,1 +"9882",1523.49417357837,-0.157154376551323,0.273412854980733,-0.574787811503585,0.565434810932246,1 +"9779",2725.12128002466,-0.234435436952279,0.171113421227496,-1.37005873221713,0.170668568568384,1 +"51256",759.002067219011,1.21014532431861,0.206599688447672,5.85744021886613,4.700559369452e-09,5.76476601069594e-05 +"11138",2135.14900762787,0.130397528913737,0.209973372308342,0.621019358217719,0.534586886330692,1 +"54885",574.310866729747,0.264192728025558,0.273246238804832,0.966866842087659,0.333610604344858,1 +"23158",2734.19900354775,-0.616254039711012,0.244191751036064,-2.5236480638529,0.0116144138714575,1 +"23061",5872.49035914825,-0.0564972092804042,0.0919140218277416,-0.61467454210944,0.538769675552655,1 +"6902",655.216700514561,0.0307374710591292,0.129666183725515,0.237050788231696,0.81261738958856,1 +"1155",3498.0692905914,0.279246786647673,0.166157487629557,1.68061512382906,0.0928376962694634,1 +"6903",869.46055657814,-0.113912397215981,0.171804461596793,-0.663035151457949,0.50730804139985,1 +"55171",605.508020640668,0.572775640147827,0.128283872807066,4.46490761164701,8.01033099536035e-06,0.0982386993270993 +"6904",4273.68735319609,0.167372570055057,0.103407681053788,1.61856999740664,0.105539814819931,1 +"6905",707.34733272226,0.676135329008605,0.156541101073693,4.31921919784062,1.56582200609147e-05,0.192032410827058 +"219899",600.467871412487,-0.0769362856259531,0.212353111895139,-0.362303546858049,0.717125207962004,1 +"93627",1008.85410115721,-0.28665519759097,0.141868690536751,-2.02056702226846,0.0433246056030393,1 +"29110",1465.35110585984,0.266644701243054,0.102858543796259,2.59234373151559,0.00953244766106389,1 +"9755",800.534932311645,-0.687526272418669,0.258934728779686,-2.65521073847011,0.00792588765071999,1 +"6907",3042.3215488049,-1.10244222259812,0.271487775478979,-4.06074351102223,4.89166874649166e-05,0.599914255069737 +"79718",8322.63437260225,0.85232234741524,0.196466990997414,4.33824706678823,1.43623647820463e-05,0.176140041687016 +"26608",1962.58271541763,0.557350044670343,0.129743512379614,4.2957835382135,1.7407738149559e-05,0.213488500666192 +"10607",2201.08213824507,-0.0214813228345882,0.141132021423006,-0.152207292278508,0.8790234425729,1 +"6908",643.411239632148,0.11303797201869,0.145743185630634,0.775596962078,0.43798699466904,1 +"9519",643.243969760927,0.399306419771765,0.144201205165606,2.76909211204711,0.00562127404325055,1 +"84897",1587.00325090615,-0.369242712551139,0.129174233427612,-2.8584858044314,0.00425668153998818,1 +"9238",3504.12379713759,0.670914320943326,0.125350669054659,5.35229948115213,8.68435134590424e-08,0.0010650488490617 +"6899",511.229041658323,0.979588518256246,0.387958564347214,2.52498232615259,0.0115704108070295,1 +"9096",290.580364435274,-1.21175252939095,0.435036552162462,-2.78540394678935,0.00534610766054753,1 +"9095",138.476276046551,0.869570950396858,0.171988955691305,5.05596970980864,4.28209300379485e-07,0.00525155885985401 +"6909",3368.60982047634,-0.171178740315123,0.393817001451672,-0.434665694178086,0.663805102911264,1 +"6926",6357.79094496783,0.0246233781409448,0.411192201974785,0.0598828918026387,0.952248905803274,1 +"9496",444.914765499497,-2.4186980348112,0.56137155746994,-4.30855108818139,1.64327521419335e-05,0.201531272268672 +"6910",380.706857965093,-2.27346774444954,0.470761114150965,-4.82934481228303,1.36983023935637e-06,0.0167995980554665 +"6911",409.522541353829,0.418466042901291,0.379809408512258,1.1017790331747,0.270557747748837,1 +"6915",112.532061953951,-1.24474573345849,0.280396455135586,-4.43923491420956,9.02792347284008e-06,0.110718453470911 +"6916",446.753596166837,-0.646085850792005,0.239174345359544,-2.70131752559316,0.00690653670094768,1 +"123036",2680.25724888249,0.698767688264598,0.43225519065604,1.61656286233155,0.105972673798217,1 +"6917",2514.41083859809,0.109998204971764,0.107097470766487,1.02708499261949,0.304380444658553,1 +"6919",1366.5534658933,-0.169100502268295,0.229899755413588,-0.73554015733546,0.462010592705949,1 +"6920",1913.59080656158,-1.23488810196101,0.331713304281926,-3.72275723047717,0.000197058979276723,1 +"9338",1601.58273448492,-1.4426845924405,0.242220889538849,-5.95607007796538,2.58375574107791e-09,3.16871804085794e-05 +"85012",1871.86636311476,-1.39541349453396,0.268999436958742,-5.18742161809051,2.13225622392687e-07,0.00261499903302392 +"79921",6489.60864928428,-0.90375533259105,0.224278323542494,-4.02961515993236,5.58682411658059e-05,0.685168109657443 +"56849",306.468252155104,-2.69860278682418,0.344726888133199,-7.82823411726869,4.94769967974889e-15,6.06785888724403e-11 +"90843",2280.02779812711,-0.0939536429692016,0.138231080283039,-0.679685370155715,0.496703701371182,1 +"127428",422.426106888418,0.295733893096867,0.167429506977768,1.76631884328571,0.0773423720192428,1 +"10915",2441.52115452649,0.312164265860504,0.123338693128405,2.53095162550098,0.0113753535828776,1 +"6938",3105.35658004771,-0.132562835334127,0.137914318821096,-0.961197042245406,0.336453103291024,1 +"6941",1353.02926936928,1.14765865645851,0.213634214295124,5.3720732900634,7.7836458400643e-08,0.000954586325825485 +"6942",2559.93886095529,0.46149928459711,0.11183709815371,4.12653128716573,3.68275920650872e-05,0.451653589086229 +"6943",2623.63887543604,-4.40246249479483,0.36945901777592,-11.9159697909037,9.77224623139508e-33,1.19846827781829e-28 +"22980",5834.83520568251,-0.511675109726336,0.10570028676873,-4.84081098896042,1.29310320003167e-06,0.0158586176451884 +"6929",4038.63766162301,1.03708776486918,0.121104775695265,8.56355795149486,1.09436823805012e-17,1.34213320714466e-13 +"6925",3129.38439608329,-1.14122708195016,0.205368227369375,-5.55697975567345,2.7448258129597e-08,0.000336625437701378 +"6932",680.51892328904,-0.184945238532162,0.295640186651055,-0.625575435556241,0.531593455045308,1 +"83439",1097.63067232924,-1.36631667146911,0.360549877769797,-3.7895358054773,0.000150929056511956,1 +"6934",1420.49748984321,-0.0696296740302082,0.213865801353247,-0.325576476414755,0.744744812370548,1 +"10732",589.906939821027,-0.297216921523123,0.185383890014135,-1.6032510780762,0.108879232634731,1 +"84260",1041.06685966896,0.342456867618546,0.137998041673553,2.48160672039577,0.0130791538725829,1 +"10312",4443.22753058739,0.145936453834875,0.228247104486626,0.639379212118008,0.522576268973181,1 +"6948",1339.62187505336,-0.912210952016131,0.209997942517394,-4.34390423582637,1.39972551416847e-05,0.171662337057621 +"6949",3789.98359472714,0.619619066838774,0.149744435116873,4.13784369586203,3.50585058630574e-05,0.429957515904536 +"6950",6465.13060718545,0.238808914482012,0.136770212378279,1.74605939648258,0.0808006313231123,1 +"55346",434.212901433939,-0.419795443308011,0.16457890759578,-2.55072444847589,0.0107499280613353,1 +"255394",367.282902765254,-0.030225747982313,0.196786092604246,-0.153596972135117,0.8779275244949,1 +"6988",1386.04130965123,-0.348327243645719,0.226563161250369,-1.53743989854022,0.124185622231029,1 +"255758",312.577609314871,0.574040597580973,0.197635388114405,2.90454357925352,0.0036778899851429,1 +"79600",699.372583524006,-0.0996954168029644,0.189084346263845,-0.527253676853034,0.598017438015437,1 +"79867",833.196082843706,0.880500506813952,0.155275565965115,5.67056704215633,1.42325660325045e-08,0.000174548189822636 +"26123",1904.48147215877,-0.189372050163618,0.113896034828462,-1.66267465279919,0.0963775786719394,1 +"6996",1244.67766701722,0.79365311379103,0.174893288539583,4.53792778681386,5.680970589927e-06,0.0696714233148647 +"55775",942.332695094149,0.858102912937195,0.17966740023962,4.77606350285446,1.78759962937447e-06,0.0219231218546485 +"51567",2153.17634507416,0.278264104211426,0.156589187343319,1.7770326861799,0.0755628620950755,1 +"81550",847.053896683195,-0.361640132299327,0.0832551142006473,-4.3437587681132,1.40065316205551e-05,0.171776103794487 +"163589",209.635151437843,3.39957659568785,0.615870147925935,5.51995677520106,3.39083061869627e-08,0.00041585146707691 +"23424",978.755158224341,-0.328530467168307,0.152496292897393,-2.15435051519159,0.0312126941507179,1 +"11022",552.360754474525,1.1582649328304,0.199928939061894,5.79338308033449,6.89825145777079e-09,8.4600155878101e-05 +"7003",6914.79426680675,-1.31620937186201,0.259334300433517,-5.07533854820502,3.86806675605109e-07,0.00474379706962106 +"8463",1512.93945241461,-0.551230946345852,0.372924437353229,-1.47813039622215,0.1393728795993,1 +"7005",4552.59885533012,-0.923100457461554,0.223682056643853,-4.12684178298359,3.67779239319248e-05,0.451044459101125 +"7004",512.889181793425,0.959302173418274,0.247045509985323,3.88309900258971,0.000103133551167628,1 +"7006",144.566216503541,-0.570572815942461,0.236545955712546,-2.41210133660383,0.0158608724648564,1 +"25851",702.868573780566,-0.191941830046497,0.156671439832222,-1.22512329146937,0.220528770720008,1 +"9895",1688.06512508762,-0.703518821029471,0.213611062058908,-3.29345687554074,0.000989635214888676,1 +"9524",2851.84419792794,0.423631066027561,0.233856100587781,1.81150316353857,0.0700629998105127,1 +"7008",1853.95477837607,-1.25983158966554,0.201219631658184,-6.26097751637696,3.82571687960947e-10,4.69185918115305e-06 +"79736",345.329071901045,0.737216400800307,0.103052707450451,7.15378003197803,8.44203065703631e-13,1.03533063977893e-08 +"7010",493.273277036581,-1.48716284125092,0.290780677682134,-5.11437985874908,3.14773354973127e-07,0.00386038042539043 +"100132288",946.69980425136,-0.207861179777408,0.227641670445365,-0.91310689897303,0.361186322271709,1 +"9894",1931.33442510389,0.152537719821716,0.130826415531609,1.16595504968843,0.243632619886482,1 +"7011",1659.83574874138,-0.0799673542705016,0.153391330576724,-0.521329034501744,0.602137578234587,1 +"7013",818.177727999272,-0.341183511282699,0.159382313768185,-2.14066105088007,0.0323013816195638,1 +"7014",1362.78574254464,-0.202083331729766,0.108715657391442,-1.85882453897275,0.0630520130080924,1 +"54386",3363.75609427054,-0.440600367885579,0.141518842464734,-3.11336893527359,0.0018496464238524,1 +"26136",7624.31919869845,-1.330355797853,0.231950419359604,-5.73551796770192,9.72147849680069e-09,0.000119224212284764 +"54997",1581.61823168725,-1.19671440809419,0.579625798069568,-2.06463275458033,0.0389577616281642,1 +"7016",2348.23389792296,-0.173751933241934,0.174767682827582,-0.994188001069683,0.320131348610323,1 +"10420",558.953819303335,0.378287926560615,0.226339452299847,1.67133004306943,0.0946565054446051,1 +"54790",1460.59027147983,0.206883213218931,0.192490509301951,1.07477097945854,0.282477276325978,1 +"200424",2133.62646669315,1.20499943544773,0.282668634714806,4.26294002043591,2.01754686832001e-05,0.247431947930766 +"54881",1195.32180207445,0.149227295614794,0.175462538813827,0.850479519010779,0.395058542504509,1 +"55852",2296.88768652111,-0.129731804851719,0.166501065758695,-0.77916501171071,0.435882517704818,1 +"113419",3834.44712596342,0.279774271646028,0.122381522641722,2.28608261775824,0.0222494256874023,1 +"51368",2856.74943035745,0.08454384909767,0.152668650686048,0.553773474238192,0.579733884016162,1 +"93081",369.965531159412,0.749537873647143,0.187974943823929,3.98743501872896,6.67914900180266e-05,0.819130833581079 +"374618",109.276124218052,0.284117938310195,0.230996793097932,1.22996486011709,0.218710263997103,1 +"7019",1050.83579947683,0.550755457875097,0.160116064965793,3.43972641341616,0.000582302495786513,1 +"7020",1414.34427517276,1.61317039867021,0.474023652432247,3.40314326171896,0.000666153415361478,1 +"7022",1128.71684768081,1.74090658716927,0.45289822943443,3.84392447138351,0.000121082284948378,1 +"7023",679.250459629222,1.20917529298135,0.184650087274129,6.54846857010265,5.81300873089016e-11,7.12907390756369e-07 +"51106",421.088410158921,-0.0304611457713669,0.118386068360328,-0.257303466474225,0.796944516663941,1 +"64216",803.074385806925,0.585463920089935,0.161077029875653,3.63468286286317,0.000278322790121625,1 +"7024",2207.89660089275,0.152419158529506,0.134184266057391,1.13589441599893,0.2560007555823,1 +"29842",831.057186244568,0.358289128823813,0.526510119108457,0.680498086970307,0.496189132719443,1 +"7027",3404.54007258869,0.839377783348946,0.157308926368757,5.33585603007238,9.50948354196663e-08,0.00116624306158679 +"7029",2464.9434563175,-0.342130199238202,0.182466781213102,-1.87502731710179,0.0607889655433687,1 +"7030",3614.23698074182,-0.521743017989482,0.187106133870103,-2.78848697900892,0.00529548761274885,1 +"7942",1184.41574629908,-1.61112304195273,0.214407810509605,-7.51429268422359,5.72194439125939e-14,7.01739260144052e-10 +"22797",114.343887263778,0.228792111132351,0.306270713296027,0.747025755972989,0.455048013937585,1 +"7033",1034.59857096485,-2.89184730845875,0.624373912840668,-4.63159534533069,3.62858826284464e-06,0.0445010064555266 +"10342",4862.91615749498,0.591635618971995,0.14083190686918,4.20100552583989,2.65732104487181e-05,0.325893852943079 +"24144",2077.06854580501,0.0906252671175703,0.110947927593366,0.816827038443833,0.414027278106072,1 +"7035",2144.64914456774,-1.54868350287375,0.270235897648991,-5.73085780367097,9.9924008616155e-09,0.000122546804166853 +"7980",546.958977891333,-2.51439886961915,0.376024545425939,-6.6867945196795,2.28111812220302e-11,2.79756326506978e-07 +"29844",1012.85855395997,0.399866180072146,0.129751116643055,3.08179374804285,0.00205757350445223,1 +"7037",12655.440654152,1.59884152252362,0.291713400793397,5.4808641569949,4.23253375563063e-08,0.000519077939790541 +"23483",462.354928131274,0.411453609328882,0.104681701001092,3.93052085889003,8.4762039241029e-05,1 +"7039",1667.56201000817,1.01036148071421,0.492156066984124,2.0529290371357,0.0400794603632561,1 +"7040",3599.97204968312,-0.464739194397535,0.191262393582161,-2.42985139782795,0.0151050145466375,1 +"7041",4415.17763835643,-2.28742405485997,0.348015478541303,-6.57276528172727,4.93892836623382e-11,6.05710174834916e-07 +"7042",600.594485514317,-1.16354764472127,0.416975765767314,-2.79044429016187,0.00526357576268499,1 +"7043",1919.40122376503,-1.37381660422919,0.271905300060309,-5.05255544457749,4.35937750483564e-07,0.00534634057193042 +"7045",8753.35072663774,0.253241745904875,0.34274059491454,0.7388729250704,0.459984164367396,1 +"7046",3121.83509505736,-0.28260234585026,0.23968364776898,-1.17906393899115,0.238372716566184,1 +"7048",6710.21760169376,-1.59239165497948,0.17096120818475,-9.31434488494403,1.22707433028582e-20,1.50488395866253e-16 +"7049",5285.04041254062,-2.54429553195814,0.283278580068087,-8.98160224944156,2.66851965619971e-19,3.27267250636333e-15 +"9392",695.005769074978,0.37790507362554,0.189062632488286,1.99883535234787,0.0456261713535804,1 +"7050",4342.41646624305,0.166073960179786,0.249437287360934,0.665794444514939,0.505542496326004,1 +"60436",1378.66932312406,0.312149855047983,0.167422890858308,1.86443952465353,0.0622600067507344,1 +"7052",16869.9567679079,-1.403941505556,0.355278434938189,-3.95166541926546,7.76091973986138e-05,0.951799196896599 +"10618",10815.8269595603,-0.312138472434408,0.15840756909751,-1.97047700569325,0.048783727773367,1 +"96764",1358.49332778131,-0.0360702594467775,0.16575038468999,-0.217617953130192,0.827726795140587,1 +"63892",2432.04134669957,0.208553913173603,0.108832628654053,1.91628113510456,0.0553293207849205,1 +"55145",408.936414241481,-0.0863962647503183,0.138798541164694,-0.622458017392295,0.533640741243393,1 +"56906",208.924754776104,0.114667064458322,0.205729390442864,0.557368415915119,0.577275740233498,1 +"57215",1814.3027270548,-0.00803048473181342,0.17012652974147,-0.0472030126284056,0.96235142647019,1 +"83591",302.17367999133,-0.778132658234217,0.189491325527793,-4.10642891471085,4.01823043870518e-05,0.492795781002804 +"90326",565.869300961515,0.467494464127934,0.188755748146981,2.47671643760435,0.0132597201899065,1 +"51078",2773.40524316722,-0.159766857817836,0.120440519045968,-1.32652083437849,0.184667238746551,1 +"168451",865.874240122652,-0.00164250548010551,0.147286447895806,-0.0111517760362274,0.991102354497205,1 +"152815",426.282708566795,-0.217986682631013,0.115962904474292,-1.87979667825014,0.0601357933571161,1 +"80764",1561.45671767407,0.0591967570575134,0.223995908908665,0.264276063549228,0.79156720331661,1 +"439931",164.749841355775,0.147883409601285,0.311341690503373,0.47498749480736,0.634795886569534,1 +"199745",386.051175675817,-0.329620689948047,0.32692953534438,-1.00823160440623,0.3133432888834,1 +"79725",191.800353395494,-0.0392503347980404,0.147150492559323,-0.266736006895912,0.789672428491836,1 +"7056",5177.63664095724,-0.24145967319756,0.334399331793603,-0.722069843568328,0.470251537709938,1 +"7057",63116.8283689591,-1.37722343514042,0.357425056953648,-3.85318099094274,0.000116593139805907,1 +"7058",10237.3026269852,0.204848207797248,0.427614086162709,0.479049251243099,0.631903591432628,1 +"7059",1936.47615419109,-0.388984391706369,0.201994183954352,-1.92572075141666,0.0541392513454109,1 +"7060",421.850659837846,-0.614562940930458,0.511380063397993,-1.20177336763354,0.2294513465739,1 +"117145",609.870396811701,-0.420999896342898,0.189449643157346,-2.22222586079637,0.0262680456071686,1 +"284486",131.765351595063,0.669620611568642,0.455507500522355,1.47005397452457,0.141547136312303,1 +"54974",543.472477014891,-0.249204748635224,0.111975445568433,-2.2255303148843,0.0260456583800417,1 +"79896",393.535428425777,0.542141899613115,0.185486272662246,2.92281413514793,0.00346883513710487,1 +"55258",815.161098096085,-1.01230836781132,0.334562645616231,-3.02576626851676,0.00248003933016925,1 +"9984",1208.37037946841,0.338838226191737,0.146190006866646,2.31779335300822,0.020460554533033,1 +"57187",2566.0477933041,0.280960541687861,0.132889615241493,2.11424001173671,0.0344947730607024,1 +"84321",1068.23794297893,0.960267748143171,0.237932412302795,4.03588455582556,5.43969605099986e-05,0.667124323694623 +"8563",1761.3588452707,-0.111702756053882,0.203119095373544,-0.549937246660419,0.582362416063834,1 +"79228",1309.54421715463,0.435717609844041,0.130282753205977,3.34439976990025,0.000824608197395659,1 +"80145",2211.11384470274,-0.28673727818882,0.112479794451057,-2.5492336609273,0.0107959939338155,1 +"7064",1741.99698578412,0.569871339679172,0.149412202240737,3.81408834842672,0.00013668656695172,1 +"7067",1840.73209125986,-1.8177373047206,0.287757776661238,-6.31690071354883,2.66860905974688e-10,3.27278215087357e-06 +"9967",7079.62388158999,-0.0148560492532901,0.0873433106570224,-0.170088002636246,0.864940928547887,1 +"7068",1934.95773471886,-0.688872344026159,0.296999657931613,-2.31943817317386,0.0203712898477919,1 +"55901",247.655282467547,-0.356522398571578,0.280574948265392,-1.27068507283247,0.203840708092371,1 +"374500",176.198853734572,-0.0113713038960783,0.197029330792107,-0.0577137619579928,0.953976631511725,1 +"79875",2656.99103221376,-2.39946456097357,0.268909060620876,-8.92295914252023,4.53992264220131e-19,5.56776112839569e-15 +"221981",370.647555911066,-1.73023668060887,0.325744239099757,-5.31164168978288,1.08642052635147e-07,0.00133238613351745 +"79178",613.060924451025,-0.422381111244337,0.171374705633464,-2.46466425534072,0.0137141689503109,1 +"55623",2491.41666622939,-0.200962326807798,0.143877704245843,-1.3967579470438,0.162486372123559,1 +"80745",542.17231963584,0.450693224789977,0.108722846236485,4.14534056448143,3.39309024782657e-05,0.416128587993451 +"25917",1918.58915501588,0.425508082012526,0.112195583912804,3.79255641953985,0.000149104359706758,1 +"7070",5253.35852698564,0.635004494189524,0.295758938627223,2.1470339903738,0.0317905756871185,1 +"29087",1753.06023241,-0.184740517914689,0.145614465640832,-1.26869619101144,0.204549441510383,1 +"7072",3447.56607794838,0.65853558176488,0.0928839578280862,7.08987425992039,1.34233907209063e-12,1.64624463801195e-08 +"7073",2813.5744607249,0.0404032268795987,0.0963596957776663,0.419295915720015,0.674999881124023,1 +"7074",2099.69706440685,0.397644177985235,0.37939309137122,1.04810600674897,0.294589769118037,1 +"148022",1737.32257688245,-0.552349411718866,0.22302989303754,-2.47657120844288,0.013265116089106,1 +"7075",1106.55857320062,-1.29175843876292,0.185058197480805,-6.98028218337591,2.94587761122334e-12,3.6128243024043e-08 +"92610",636.808134760198,0.473411076491837,0.243296686653235,1.94581801751611,0.051676603539622,1 +"200765",245.960490024578,0.772102138089813,0.21636438656798,3.56852692042839,0.000358993972523199,1 +"166815",392.64926306147,0.965654842961916,0.165100182808711,5.84890232423756,4.9482753825775e-09,6.06856492919305e-05 +"84948",418.49201905217,0.645284409051978,0.195967108283753,3.29281997730778,0.00099187961516694,1 +"81789",258.742846200166,0.118153991795981,0.110395640359537,1.07027769766249,0.284494330046369,1 +"91151",411.087830695748,-0.463851684239569,0.236775880848533,-1.95903266235254,0.0501089617816492,1 +"201633",281.017839309848,0.145142240530911,0.433242234808121,0.335014061118009,0.737614479291482,1 +"8914",2229.24116851563,1.80724523550233,0.207723229509047,8.70025581526799,3.31136850459394e-18,4.06106233403401e-14 +"26519",1184.6530436577,0.432197215545843,0.127933960713631,3.37828371086923,0.000729397856942235,1 +"26517",2975.0843834038,0.698478499363694,0.145767487269117,4.79173039509254,1.65348998293713e-06,0.020278401150741 +"10440",2250.43695851288,0.110087441995813,0.107357297616286,1.02543044991021,0.305160126654645,1 +"10245",1810.28198743449,0.501479143169113,0.167816530219879,2.98825832301536,0.0028057230030347,1 +"29090",840.353215070667,-0.245366559490552,0.145267445547803,-1.6890677643933,0.0912064445266083,1 +"29928",949.311721840278,0.164298196836459,0.136800767030397,1.20100347682957,0.229749852647451,1 +"100287932",1913.25575544593,0.231097237433575,0.161781664210316,1.42845135486521,0.153161986666171,1 +"10469",1766.28724357549,-0.0123631034883083,0.158140758722777,-0.0781778435120636,0.937686586383018,1 +"92609",2489.99387082183,0.539451550460037,0.135734955606746,3.97430085749575,7.05862927761061e-05,0.865670294606165 +"1678",342.480162117086,0.765375887053423,0.158673767680807,4.82358173150005,1.41002949144671e-06,0.0172926016831024 +"26521",1210.06869963515,0.16724078563909,0.151103963004094,1.1067928485407,0.268383500889542,1 +"26520",998.900109444863,-0.140321334122285,0.115287603237289,-1.21714156754105,0.223550357644902,1 +"51300",3328.16322390505,0.551777178047256,0.157978066315294,3.4927454862374,0.000478081937605621,1 +"7076",13414.5304310865,-0.390691454935089,0.25922936534894,-1.50712653409922,0.131778226660477,1 +"7077",19278.2704807799,-1.17942296514799,0.288687426934494,-4.08546703149497,4.39882464816346e-05,0.539471854850766 +"7078",25005.9172391434,-1.42107634223933,0.273297563151495,-5.19974026058765,1.99567208927785e-07,0.00244749225029036 +"7079",156.020045580279,-2.24088124755332,0.342411422543118,-6.54441148870009,5.97301271179269e-11,7.32530278974255e-07 +"64129",9498.6295684913,1.00492713210558,0.341898847538367,2.93925276244991,0.00329004642240053,1 +"26277",2539.05557044832,-0.410180067296267,0.121971120045411,-3.36292777457118,0.000771205380555716,1 +"25976",5274.5714825498,-1.36105673284246,0.344167532711672,-3.95463430881695,7.66518027876328e-05,0.940057709387528 +"54962",268.014091411153,0.949115511079526,0.160974212392134,5.8960717805376,3.72257086795277e-09,4.56536091245727e-05 +"261726",2497.99566999279,0.294962515217016,0.164845955204287,1.78932212714276,0.0735629525189424,1 +"114609",352.291179238423,-0.199633329465807,0.114960434894422,-1.73653944201889,0.08246849663581,1 +"93643",1287.1662374165,-0.393582006942,0.153094823101658,-2.57083811828604,0.0101452737621667,1 +"7082",5751.20778419656,-0.536220479123913,0.207327887510021,-2.58634034024002,0.00970010980822867,1 +"9414",6421.9742957426,-0.493521023233346,0.212344067975594,-2.32415733549038,0.0201170630169811,1 +"27134",1243.92889712992,0.774602605759768,0.556070311370039,1.3929939972003,0.163621605914701,1 +"7083",2428.67263517765,2.87974424545732,0.405860095451965,7.09541114716007,1.28967492216098e-12,1.58165732453823e-08 +"7084",1388.54262948397,-0.425388450650852,0.148717942894534,-2.86037072845018,0.00423146027480866,1 +"7086",19645.4057329459,0.494932171736282,0.194578511959846,2.54361165963906,0.0109712984699621,1 +"116238",627.278614799568,1.51939697997367,0.406748268732975,3.73547251892826,0.000187363040850373,1 +"727910",624.287690976584,-0.56556818554683,0.264565600748703,-2.1377238157429,0.0325391654030069,1 +"7088",1272.48223997009,-0.698802635098386,0.220498261238012,-3.16919793913513,0.00152860254292724,1 +"7089",3249.71219761186,-1.67521287210737,0.331268359693916,-5.05696612153129,4.25978876607086e-07,0.0052242049427093 +"7090",3113.04843261468,0.398666289882836,0.241023457098728,1.65405597729658,0.0981161396101593,1 +"7091",1564.43479968092,-1.15536010501833,0.233901072982499,-4.93952460450994,7.83132621082474e-07,0.00960433846495546 +"9874",2248.63245975987,-0.0923684228803928,0.13845185306369,-0.667151943700616,0.504675083691378,1 +"11011",1017.25826365727,0.256062008522525,0.112015250526682,2.28595666499474,0.0222567938818804,1 +"7092",157.10807551338,-2.19516205157428,0.326484031557371,-6.72364293317217,1.77236453451373e-11,2.17362786512763e-07 +"7094",35758.0132379174,-1.39526790943488,0.280914925508728,-4.96686997641045,6.80421754224158e-07,0.00834469239380507 +"83660",1078.62714286256,-0.968573200211821,0.285751739909723,-3.3895618641476,0.000700044112585257,1 +"7096",190.407630212278,-0.709185609211954,0.280015484624085,-2.53266568512816,0.0113198858388588,1 +"7097",569.140220139908,0.661710149838019,0.271213657539327,2.43981131275466,0.0146949350797602,1 +"7098",391.90640987131,-1.08275191685471,0.260623030337825,-4.15447520294437,3.26034970722074e-05,0.399849288093552 +"7099",722.360431761252,-1.33331187757789,0.308294788965972,-4.3247953753933,1.52673511908516e-05,0.187238795004604 +"7100",413.6228925417,-1.13913079607933,0.312590574270873,-3.64416233194615,0.000268264072694364,1 +"51284",98.6663594035736,-0.500863236047768,0.356831658487542,-1.40364013151388,0.160426038382376,1 +"83941",1008.14792409129,0.0908924769997487,0.133031545740473,0.683240027722956,0.494455183231411,1 +"83877",2453.4428300044,0.124946660841097,0.209568619900043,0.596208826019334,0.551035730168209,1 +"80213",1565.42372286032,0.0426638367051401,0.119964226259957,0.355637993385539,0.722111686812965,1 +"4071",10899.0078851956,-0.558610269010649,0.380947190699144,-1.46637193461236,0.142546987906077,1 +"116441",293.198137364286,-0.542708424139162,0.236755473388463,-2.2922740343523,0.0218898351789785,1 +"53346",279.902623512616,-1.03441848109449,0.222978452808896,-4.63909614612424,3.49936237699634e-06,0.0429161801914831 +"7108",1708.54548527388,1.13239876692989,0.352719707983966,3.21047772862572,0.00132514536821846,1 +"51768",4262.31759255523,0.278536534765111,0.208975702132034,1.33286564860602,0.182575897301869,1 +"10548",3260.8283725309,0.467401538632527,0.143533875774313,3.25638485069164,0.00112840690011883,1 +"9375",9744.2705569095,0.344797823416767,0.164561112911789,2.09525699793724,0.0361481529002034,1 +"56889",11328.2510491595,-0.175229179280711,0.1197991542514,-1.46269128839583,0.14355187100184,1 +"9777",4912.83953505191,0.550212795577102,0.13428992715549,4.09720078960224,4.18176160951528e-05,0.512851243790954 +"64114",14226.4658054854,-0.457477293659573,0.271224719930363,-1.68670943333274,0.0916592373081189,1 +"51643",2770.10592406916,-0.320656558946553,0.142280645496301,-2.25369063956693,0.0242156366421524,1 +"7009",42478.5681691144,0.188918670735948,0.174804429620269,1.08074304035853,0.279811431864693,1 +"147798",4175.84407337629,1.2267710828538,0.486877573633647,2.5196705481795,0.0117464719814224,1 +"79838",283.539330529966,0.950620597392232,0.499767689421787,1.90212496228411,0.0571548197643122,1 +"11322",3076.53589930389,1.3519415562196,0.299934970385826,4.50744891294439,6.56117213787263e-06,0.0804662150988699 +"79905",1010.63307006038,-0.0760312373992835,0.470353851548452,-0.161646890206131,0.87158392981705,1 +"147138",825.691671501106,-0.618848955618447,0.298470018097093,-2.07340408783416,0.0381346888318577,1 +"23023",1983.29494906535,0.364697073037496,0.150099746895535,2.42969812128539,0.0151114033674735,1 +"9911",200.395177918908,-0.210417294126699,0.305070054316855,-0.689734345109316,0.490361263273802,1 +"57458",988.999014601141,-1.18687027363748,0.225639492624047,-5.26002899507936,1.44032687900678e-07,0.00176641688441392 +"54499",5191.53348115932,0.530965599513779,0.194867948582059,2.72474567201691,0.00643510355921362,1 +"55002",1608.39225812555,-0.170118216547595,0.185218245941874,-0.918474395880965,0.358370557580522,1 +"255104",1737.49388741191,0.119950118990309,0.219658683004301,0.54607501670198,0.585014372322313,1 +"55374",487.743811145569,0.734920549317847,0.183598216708538,4.00287411551786,6.25776028014033e-05,0.76745172075641 +"11018",1506.24470872236,0.356014214454482,0.107000117944988,3.32723198153407,0.000877133204121888,1 +"10972",11274.1568696317,0.197040288308224,0.120677758564257,1.63278047796443,0.102515174322639,1 +"286102",1258.76635160112,0.506023025193586,0.125804616456902,4.02229297656129,5.76343052313918e-05,0.706827119357789 +"10959",12573.2011282586,0.599967076031686,0.123445177520597,4.86019047549735,1.17272865043103e-06,0.0143823441688861 +"23423",5550.40473517268,0.6919939728031,0.24013773697389,2.88165442684396,0.00395593332099027,1 +"222068",2512.95348807072,0.412497468191322,0.141683957767173,2.91139148490736,0.00359822869502846,1 +"50999",3625.4444901459,0.108863712756241,0.195996074497777,0.555438230256372,0.57859494935379,1 +"51014",3577.00311349815,-0.112720021492602,0.104966587085619,-1.07386573787198,0.282882861354346,1 +"54732",8656.73719434164,0.383757160918826,0.184530351471791,2.07964249706364,0.0375583360028335,1 +"55273",282.620991916821,-3.54826901001525,0.404030858947079,-8.78217327077983,1.60345818528653e-18,1.96648111843541e-14 +"84336",1623.41237488272,0.485680867382981,0.151791427493419,3.19965939712924,0.00137590081574529,1 +"284114",657.69223963168,1.08688446781399,0.385063717465731,2.82260939817245,0.00476345673349713,1 +"54868",975.272519836049,0.651311580473419,0.169427573216718,3.84418880650738,0.000120951860261064,1 +"113277",177.810787991328,-0.768777834112536,0.23108244613749,-3.32685518507592,0.00087832005603096,1 +"54664",2883.45389852094,-0.00979788617975104,0.149646606121153,-0.0654734940785675,0.947797009703413,1 +"79022",2369.65128504018,0.709529777776415,0.165521746028891,4.28662574434521,1.81407535603693e-05,0.222478201664369 +"84314",473.840222540645,0.641750930478647,0.211261832946382,3.03770407332176,0.00238387930510404,1 +"66000",437.222697058491,-2.84892207058377,0.526884848697518,-5.40710570369679,6.40513456752115e-08,0.000785525703360794 +"79073",6365.81110778511,-0.252192165237515,0.158527269153975,-1.59084406476822,0.111644673374393,1 +"8834",1412.76576413147,0.55073619442697,0.203703597538396,2.70361545442594,0.00685896153229639,1 +"11070",2525.36088554364,-0.192312519402308,0.225221761949689,-0.853880716221673,0.393171085298727,1 +"89894",444.367687131489,-0.0376129664813905,0.283005420776805,-0.13290546300544,0.894268146382555,1 +"84216",612.673522017395,0.132283677646999,0.206537343337182,0.640483098647393,0.521858573665974,1 +"338773",1698.52700197617,-1.36200471521729,0.379019634224097,-3.59349382520906,0.000326273384466669,1 +"83862",1924.88810676018,-0.155495452628131,0.157380909405449,-0.988019787250942,0.323142957516373,1 +"144404",594.820880621757,0.247478412216381,0.15126833127358,1.63602262372285,0.101834852588078,1 +"114908",12637.4921372588,0.286243016246927,0.201395173748587,1.42130027705759,0.155229483020947,1 +"128218",438.529882422092,1.77624591902096,0.633807768592263,2.80249944390259,0.00507083038379887,1 +"84233",691.002385557662,0.0249085391865266,0.11221081173804,0.221979850254326,0.824329569205176,1 +"55863",962.28728630194,-0.16466150309473,0.108358080540594,-1.51960520409036,0.128610229182015,1 +"55654",5367.80861235482,-0.257528181198989,0.13577212320321,-1.89676772464954,0.0578586008251311,1 +"85013",733.544377767205,0.111302626712987,0.127032225774149,0.876176309079809,0.380934193597846,1 +"92305",2285.06562080666,-0.293612497823384,0.163688252210196,-1.7937298117543,0.0728563045740802,1 +"23505",3251.64529325383,-0.210774506563677,0.119628361627622,-1.76191083532326,0.0780843636259491,1 +"54972",2360.0571813289,2.53292675687366,0.333402626487908,7.59720096855783,3.02604413203903e-14,3.71114052353267e-10 +"92293",234.566611934215,-6.5870341700414,0.622263015797711,-10.5856109118057,3.47506414311236e-26,4.261818665113e-22 +"80194",2057.70173326898,0.545594479893358,0.225089962390594,2.42389520216188,0.0153550358463976,1 +"65084",1108.3839060632,0.192771842926379,0.150110847713567,1.28419661778352,0.199073168331004,1 +"51524",1152.18865167637,0.67657998094554,0.186204713427228,3.6335276830141,0.000279572435836429,1 +"135932",229.178570018541,0.896604279874188,0.504504958315491,1.77719617041603,0.0755359693278329,1 +"55281",878.376174407742,0.0163157579397591,0.19317716147503,0.0844600770359085,0.932690643293159,1 +"85014",1903.62493464373,0.263553579885247,0.211763645929046,1.24456480114417,0.213291765642455,1 +"55260",290.351869445032,-0.329011965992331,0.219717477088426,-1.49743193100619,0.134280904942943,1 +"55314",416.255805152444,0.493856436682051,0.244238406807914,2.02202611430582,0.0431736540957268,1 +"10430",5137.46532273416,0.894252584767636,0.215085849944355,4.15765418784634,3.21532254011938e-05,0.39432715632024 +"28978",1230.27496403694,0.170607867986164,0.144987131683979,1.17671041563902,0.239311109172819,1 +"81853",1148.9664617654,0.190760708339597,0.137021461242217,1.39219584005445,0.163863102146894,1 +"51522",3343.06233179526,-0.309427032322906,0.108736710888615,-2.84565377961331,0.00443203536831891,1 +"129303",896.162648766184,-0.116614601897595,0.190819914500109,-0.611123855720668,0.541117587826308,1 +"441027",198.773252831433,-1.26846202646825,0.302003585537965,-4.20015551871252,2.66731705180893e-05,0.327119763233847 +"201799",1270.87954320935,0.319417181691385,0.488742641238985,0.653548830692668,0.513402519863465,1 +"25907",534.32498201679,-0.107964633903219,0.310204861358651,-0.348043010771494,0.727807882444029,1 +"57146",3191.75937614588,-0.536319745462447,0.174550756440126,-3.07257187766135,0.00212222716872283,1 +"54958",326.432976684675,0.684484904135274,0.180448568667921,3.7932409726947,0.000148693730667956,1 +"54929",1622.05813163024,0.796767686805335,0.158193584622955,5.03666244560033,4.73719096300267e-07,0.00580969099702647 +"153396",396.061290169735,0.147726172424175,0.298597432929182,0.494733564769833,0.620788205370912,1 +"81615",343.600475922706,0.346986489826751,0.516977133988403,0.671183437359793,0.502103678499662,1 +"84187",1562.04121323288,-0.00693742183331338,0.172814762736902,-0.0401436875151407,0.967978572254185,1 +"55858",4381.85024838469,0.42268808160902,0.210064591008002,2.01218148942064,0.0442008090240955,1 +"153339",3140.91281889535,0.41273525103365,0.126325147560258,3.267245350628,0.00108599517871422,1 +"56900",2704.03205332101,-0.113154511650322,0.111784364116889,-1.01225705888527,0.311415160708003,1 +"64418",1574.43662854817,-0.106290695967392,0.14308161819423,-0.742867583613045,0.457561853266247,1 +"200728",130.456406177968,0.372755116833466,0.201331687968134,1.85144783017199,0.0641051534828749,1 +"124491",241.999655360615,0.537308153498133,0.193943256737768,2.7704399860864,0.0055980615412341,1 +"100113407",401.179676370539,-0.503854155788884,0.354662917354897,-1.42065643497963,0.155416663334578,1 +"84286",770.279055241621,-0.435286715238945,0.169874052776443,-2.56240849102358,0.0103948976736578,1 +"55365",1535.22888274294,-0.527176058657451,0.308664919695053,-1.70792346334102,0.0876505448889131,1 +"28959",2842.96944894963,-0.587796248627348,0.300858602809643,-1.95372923738283,0.0507332466986502,1 +"80775",329.457147005429,0.978616696826909,0.217311883145856,4.50328202333085,6.69119938574191e-06,0.0820608692667388 +"374395",2170.57907853813,0.469412601857637,0.189794036204068,2.47327371948043,0.0133881557691611,1 +"129787",1130.33345863608,-0.27512961187285,0.126990410665704,-2.16653848452475,0.030270062348797,1 +"57583",2827.75715816356,-0.0983577548483946,0.170613382004756,-0.576494960082633,0.564280675471681,1 +"130827",241.422801554263,0.637344474843834,0.254529909107172,2.5040062171062,0.0122795876409301,1 +"92703",189.640890988814,-0.300919938986671,0.168806791844444,-1.78262933439295,0.0746466614109908,1 +"202915",2286.19217995574,1.68163063895656,0.664156924507431,2.53197787586681,0.0113421147449291,1 +"25829",4053.69931151094,0.153458891911844,0.148421370808328,1.03394067226357,0.301163899428624,1 +"55751",1033.27477874579,0.175814563003239,0.142805265376124,1.23114902339332,0.218267133105796,1 +"84548",452.938978639733,-0.0646746982933158,0.145889088496269,-0.443314157076043,0.657538517219595,1 +"79134",2257.44712997912,0.0241746548884357,0.109509491279204,0.220753969414397,0.825284006408629,1 +"25880",509.180578565123,0.238482981918555,0.140912209099187,1.69242241991032,0.090565460586485,1 +"8269",444.739363748633,0.0898612487354365,0.185663513055192,0.484000583942002,0.628385454700384,1 +"387521",2908.41625639442,0.489845609619172,0.173015753260391,2.83121970334081,0.00463708569296097,1 +"55266",2080.96220693911,0.223945853832657,0.197281258407501,1.13516030686543,0.256308157220526,1 +"201931",825.993444821588,-0.266126575312548,0.15137846584068,-1.75802135286954,0.078743876191903,1 +"130612",211.101710500802,-0.12469277549006,0.264917196448231,-0.470685848868354,0.637865091401256,1 +"440104",758.344619855307,0.120756303202261,0.187621015634121,0.643618215124404,0.51982303555735,1 +"147007",1100.52508948713,0.68460619848239,0.0909017486869299,7.53127644265907,5.02466812094003e-14,6.16225298352086e-10 +"114801",363.860674702826,-0.441307648030873,0.368172490346643,-1.19864373249444,0.230666505624518,1 +"399474",450.46017364665,-1.38006685922323,0.333924132940232,-4.13287547405338,3.58252846201499e-05,0.439361290581519 +"199953",1168.03753120021,0.786880865475262,0.177904922221638,4.42304156427413,9.7321009433002e-06,0.119354485968634 +"94107",1671.65899111433,0.216683511013009,0.150254404517271,1.44211087661062,0.149271097185271,1 +"79652",706.552077208493,-0.961725280520508,0.262349725517291,-3.66581393833828,0.000246553142444148,1 +"374882",3619.2537481282,-0.0720308728147453,0.198411602662351,-0.363037603891162,0.716576794013583,1 +"29100",1752.28544355402,0.70943429987609,0.164065821733982,4.32408342199616,1.5316733324883e-05,0.187844417496365 +"84928",1116.95164658594,0.819283392500041,0.147866657050424,5.54069057110461,3.01281167877411e-08,0.000369491224284856 +"54867",5472.65833927534,0.417654282404052,0.158563492056628,2.63398766630906,0.00843885533014397,1 +"51259",758.135865735569,0.661825109710135,0.153245471483876,4.31872539724457,1.56932896741664e-05,0.192462504563976 +"219854",714.403531888831,-0.176870090196291,0.155291658896391,-1.13895421977749,0.254722249194922,1 +"124446",4553.09453777238,-0.0913877804147672,0.159224603510885,-0.573955145120016,0.565998154897598,1 +"388335",232.331969618601,-2.9550822730561,0.261376990175411,-11.30582409367,1.22795863321593e-29,1.50596846777602e-25 +"84065",1883.26349570807,0.0193809465048437,0.131609169238729,0.147261369530326,0.882925722644134,1 +"79064",716.098085246587,0.880974473942706,0.1682260300169,5.23684993252355,1.63340395580584e-07,0.00200320661140028 +"161145",525.716412797212,-1.00693596252067,0.251282872661289,-4.00718103807234,6.14477625751332e-05,0.753595360221433 +"79583",394.373963349555,-0.0664239390544144,0.235607094750616,-0.281926735375785,0.777999688842255,1 +"56063",350.198654368239,0.349138390868425,0.192201083130141,1.8165266562625,0.0692896227317624,1 +"65062",1234.26253665244,0.0411671816743066,0.136026919564299,0.302639961311828,0.762164257006821,1 +"388564",193.797535037915,1.4067332625731,0.408373950710863,3.44471840117221,0.000571654605059354,1 +"85019",369.116662854321,0.751068901719066,0.237303083610006,3.16501956187558,0.00155072524960655,1 +"729515",766.895912798967,-0.384671826289298,0.166919681447878,-2.30453247305899,0.0211927716477427,1 +"84866",1000.41538109491,-0.641115715055237,0.259552456865013,-2.47008147331338,0.0135082282805732,1 +"55754",8382.04220792721,0.0350410554687339,0.127161104691818,0.275564258061912,0.782882765002608,1 +"161291",3342.96272656525,0.296177200412307,0.436502559090715,0.67852339979238,0.497439892423067,1 +"55161",2866.43698999946,0.623905262015674,0.18499583858392,3.37253673807722,0.000744791496104217,1 +"140738",539.745400254957,-0.0677854839317572,0.37291467925091,-0.181772098829472,0.855761581621452,1 +"79041",127.451105268542,-0.0613591131883866,0.292436785698297,-0.209820091688772,0.833808091201221,1 +"55151",396.23326872644,0.234603575071256,0.237757265285742,0.986735672574733,0.323772237351587,1 +"55254",1404.95347195284,0.740016901880317,0.155331364381524,4.76411769655671,1.8968177142507e-06,0.0232625724475706 +"55116",947.105927020714,0.293182398278241,0.115032935882984,2.54868221894708,0.0108130780995964,1 +"55287",1847.18988827792,0.813559734043663,0.655589860360744,1.24095838455463,0.214621122685363,1 +"90407",2008.60574587836,0.989109297337377,0.245282528989855,4.03253057366466,5.51794334745958e-05,0.676720572132443 +"440026",1576.73857260131,0.46466989597371,0.197552948539994,2.35212837574853,0.0186663314675916,1 +"131616",421.463087785363,0.40544514910818,0.176590342995573,2.29596444647228,0.0216779143115262,1 +"79188",6842.77052046126,-0.275076923918308,0.136590457370681,-2.01388097831608,0.0440220310843709,1 +"93109",669.165489682075,0.914161312711024,0.182083383205732,5.02056418667338,5.15199313678916e-07,0.00631840438295823 +"55076",2518.86640765397,0.314521889436587,0.421696556465283,0.745848844659656,0.455758730038658,1 +"120224",2170.01061472268,0.379331751679033,0.61406416692966,0.61773959808745,0.536747005067276,1 +"83604",3491.93056568584,-1.26298874178764,0.287597244702061,-4.39151892117758,1.12561537943764e-05,0.138045470134232 +"23585",5536.53956302201,0.242336478373768,0.0991621188957648,2.44384126793925,0.0145318185709021,1 +"757",2836.55146272196,-0.41742749904808,0.146870837330215,-2.84214011873277,0.00448117918941381,1 +"55092",2227.95488500002,-0.169821932367119,0.310364953970329,-0.54716851949513,0.584262961656089,1 +"79639",419.63549904233,0.675177364271341,0.201956029205515,3.34318993558873,0.000828211914912526,1 +"113452",3906.60239903603,0.651115836713149,0.215509877316049,3.02128071725584,0.0025170788333228,1 +"9528",11936.351819977,-0.235664364043121,0.142397836944005,-1.65497151572458,0.0979302759904413,1 +"85025",540.500933874274,0.674434808687597,0.157423234044046,4.28421390770625,1.83386414031405e-05,0.224905098168115 +"80021",1035.2578818015,0.388597769311987,0.160504624821701,2.42110013804067,0.0154736140961399,1 +"9725",2583.06896302182,0.13150982802044,0.235559696940026,0.558286624277337,0.576648677122524,1 +"55362",2919.03074133245,0.129810276570568,0.201562122697324,0.644021182320539,0.519561698259836,1 +"169200",2121.04512416839,-0.415737059241935,0.296748929415065,-1.40097239798443,0.161222327258247,1 +"157378",889.460742913567,0.548050382691689,0.234035150010503,2.34174389046728,0.0191938808453481,1 +"91147",379.070391474121,0.262608099739078,0.165805588058874,1.58383141855165,0.11323208745774,1 +"137695",846.666577941196,0.389913113403776,0.155671902463584,2.50471091592773,0.0122551512525205,1 +"51249",1279.52453098391,0.725213432377939,0.125821713983569,5.76381778166401,8.22321970741221e-09,0.000100849566491703 +"54968",1257.44945845848,-0.479345845322523,0.190333984098396,-2.51844591806956,0.0117873984053716,1 +"84283",2134.52076805223,0.780210313887837,0.423302959073652,1.8431487358256,0.0653072973172418,1 +"283232",655.864071263446,-0.494855329409439,0.23016514472811,-2.15000116544146,0.03155512259578,1 +"388730",103.122886076542,0.511412754661806,0.198643585040003,2.57452439029842,0.010037800903077,1 +"144110",325.044761834373,0.54417692854817,0.259080991944371,2.10041240179061,0.0356925790037402,1 +"255043",326.325108843627,-0.190076630181521,0.217736441330656,-0.872966550844235,0.382681309847972,1 +"25963",4467.59063485466,0.244142747571143,0.139116621769632,1.75495023143551,0.079267821004684,1 +"84910",2476.47091946951,0.40945215182703,0.184787180178807,2.21580388547966,0.0267049362497166,1 +"92162",277.622279361607,-2.05107310740123,0.231629587639273,-8.85497024929068,8.37061353150882e-19,1.02657204350424e-14 +"51754",1342.51332350944,-1.1841060023653,0.270673235616642,-4.37466969967567,1.21616482951207e-05,0.14915045469136 +"252839",3765.89203046262,0.51205609685286,0.163047576244098,3.14053179230499,0.00168641402346562,1 +"641649",419.109674093752,-0.0884806421848594,0.195706626658652,-0.452108565231088,0.651190773551712,1 +"162461",244.956460960465,1.27419652631998,0.481088145032224,2.64857186666829,0.00808326608337036,1 +"27346",7286.24245437093,1.54484179674374,0.45365109204029,3.40535231557767,0.000660787436129208,1 +"26022",1798.72640603371,-0.398006044177724,0.275787837001577,-1.44316025139081,0.148975333779446,1 +"147184",704.233733651992,0.623178013103139,0.260189952621879,2.39508869125616,0.0166163453965021,1 +"56674",2383.17331001167,-0.0243231732951785,0.227710936341494,-0.106816008427023,0.91493494724823,1 +"7110",2214.12849078392,-0.0743325132091898,0.145991705668659,-0.509155728188379,0.610643072200887,1 +"55217",422.549464177368,-0.121212639479339,0.125187936751054,-0.968245364730145,0.332921843647803,1 +"7111",952.708197819484,-4.12029649398154,0.426326633820494,-9.66464716749645,4.26085609864559e-22,5.22551391937895e-18 +"29767",844.383169677682,-0.836768701337913,0.227387177800606,-3.67992913862395,0.000233298773995943,1 +"29766",4400.07710224153,0.473565466185978,0.249571385965664,1.89751507110327,0.0577599915981494,1 +"7112",4805.54378670649,1.23134904914707,0.199935397711889,6.15873458746644,7.33285015619673e-10,8.99300743155967e-06 +"643853",96.2319129434337,0.368409991793843,0.177063327540872,2.08066795598202,0.0374643090544098,1 +"28983",2923.31085630814,1.82103506290115,0.812067153325237,2.24246856364576,0.024931104841751,1 +"84000",573.405456142091,2.19690835300096,0.544858626035644,4.03207042712257,5.52876122738351e-05,0.678047276926314 +"7113",2826.30145383188,1.29553631685725,0.688882374866519,1.88063501712942,0.0600215849040939,1 +"56649",9068.84428239612,0.233910320481125,0.750050058718739,0.311859612251346,0.755147217530829,1 +"9168",46996.9656822631,0.594018447131868,0.243867022531061,2.43582933422746,0.0148576926900104,1 +"286527",159.274544968165,0.522880025032332,0.288990778633056,1.8093311748755,0.0703995685456876,1 +"7114",33129.6192541284,-0.0515846689633626,0.255390438658407,-0.201983555979395,0.839929579661459,1 +"83857",1754.43267602279,-1.76130118411622,0.408492804785338,-4.31170675097149,1.619991962192e-05,0.198675814243227 +"160335",1485.78250934663,-0.237950524897235,0.189270442406672,-1.2571985454864,0.208681749866526,1 +"160418",2343.54324485697,0.576162888281086,0.20566766490216,2.80142670241906,0.00508771973351742,1 +"84899",1049.75476159493,0.681401878024191,0.203517293159905,3.34812765757852,0.000813595254837361,1 +"83590",1977.76622279614,0.710633231234356,0.122592503131955,5.79671034589652,6.76283469909527e-09,8.29394047497044e-05 +"79089",2343.78134977575,-0.132967831767036,0.12558170269369,-1.05881532830751,0.289683891408344,1 +"81542",2426.06078749348,0.67892014339737,0.176454479056376,3.84756537225932,0.000119297450463317,1 +"51075",3161.89180975548,0.296967023732844,0.168571806804941,1.76166483210608,0.0781259430354575,1 +"54495",1964.75285576458,0.0699417881427268,0.108257425110474,0.646069200993402,0.518234540383808,1 +"56255",1934.73674906218,-0.897801043640302,0.180805010127209,-4.96557613646125,6.84974131771173e-07,0.00840052275204167 +"3371",6935.11303810301,-0.793746970687999,0.380271235431084,-2.08731793712503,0.0368594044272549,1 +"7126",3533.90636061694,0.134106091113203,0.153847176229853,0.871683799466321,0.383380900645652,1 +"7127",15733.3118495177,0.740771392591797,0.360663927517539,2.05391040265809,0.0399843643073672,1 +"7128",5750.62160466152,-1.34215394070485,0.348109316101825,-3.85555306515342,0.000115468278945705,1 +"7130",561.594223512329,-0.95884324652649,0.363814007890334,-2.63553141366541,0.00840056496091159,1 +"25816",1288.5271978742,0.132007674684832,0.277039939044317,0.476493299631123,0.633722979734376,1 +"126282",1226.36631792658,0.350735626645261,0.245735681684449,1.42728815058955,0.1534968546825,1 +"79626",147.887497687749,-0.608122645214951,0.294128077313508,-2.06754367270677,0.0386829534374755,1 +"388121",559.315840272548,-2.95178058736002,0.299132168165942,-9.86781396818057,5.74019213780215e-23,7.03977163780055e-19 +"8797",355.319875416012,0.320494651434124,0.339874660604882,0.942978952487169,0.345691668744895,1 +"8795",2937.11401057718,-0.0611238276108439,0.297359305600559,-0.205555455839513,0.837138175480207,1 +"8793",359.971952603972,-1.47788044012835,0.337774209042323,-4.37535016163169,1.21237699248364e-05,0.148685914358194 +"8792",132.279514953438,-0.237829276535644,0.324763727378574,-0.73231477682361,0.463976462155388,1 +"51330",2822.7806389776,0.267042908879301,0.399315021869567,0.668752474247083,0.503653388012433,1 +"8764",2361.20048600402,-0.200732609445475,0.215852501761508,-0.929952665859118,0.352395592806481,1 +"8784",394.134940885288,1.21767076617549,0.443521701484375,2.74545926862247,0.00604262679215173,1 +"55504",602.510216606388,0.248078042896115,0.414275407298641,0.598823967161734,0.549290278055894,1 +"7132",8693.13898214858,-0.336635690215593,0.227456463269114,-1.48000054769736,0.138873100502396,1 +"7133",2368.53093109237,-1.11350164402534,0.209028171903652,-5.32704101023563,9.9825631058805e-08,0.00122426153930518 +"27242",19659.8956415578,0.677159818280109,0.444474108037783,1.52350790751246,0.127631683880313,1 +"8718",601.21825608026,1.44991664346144,0.306501645942348,4.73053460774617,2.23929346746884e-06,0.0274626950850378 +"7293",224.181720654233,0.23698042177273,0.297635769775529,0.796209480975543,0.425910287786617,1 +"8743",6869.20758861388,1.0541790819278,0.410954509639056,2.56519652954701,0.0103117380127104,1 +"8742",1282.87854595653,-1.72077970107326,0.276178747230798,-6.23067386005351,4.64433081552753e-10,5.69580731216297e-06 +"8741",325.766499344712,0.0180300224601766,0.234247550420935,0.0769699509248963,0.93864744971915,1 +"10673",290.046031099555,-0.782770818771793,0.30463863721948,-2.56950604137531,0.010184361601029,1 +"9966",647.300818226807,0.823790539813516,0.406153674747901,2.02827301839591,0.0425323911520896,1 +"7292",159.269318250087,0.140357411179998,0.317094988082496,0.442635224317963,0.658029602321035,1 +"944",188.811259571429,-1.31988099215771,0.312616955098103,-4.22203905013249,2.42102151881931e-05,0.296914079068001 +"8744",164.120167198916,-0.29318762962072,0.43467759320679,-0.674494462568815,0.499997005041447,1 +"23043",569.508567132194,-1.62075689694321,0.298251639198689,-5.43419275514358,5.50450530757342e-08,0.000675072530920804 +"10318",6444.35545726827,-0.201889682831743,0.181914016726477,-1.10980828451115,0.267081648609466,1 +"79155",1703.1613401407,-0.0915868088717978,0.121227302054749,-0.755496553329509,0.449951099589261,1 +"8711",867.245772756304,0.761937360758119,0.239638917502891,3.17952262803444,0.00147517851301377,1 +"10188",2982.01229604584,-0.12709352510659,0.163106481676275,-0.779205852523006,0.435858463121298,1 +"8658",2048.99683039842,-0.130185868934217,0.179051036315364,-0.727088050498177,0.467172018425461,1 +"85456",13369.1822791964,-0.133142234802348,0.18841354201247,-0.706648966843029,0.47978465091251,1 +"80351",3754.06515145282,-0.0512549953737734,0.151246702304136,-0.338883391128137,0.734697576864925,1 +"7134",246.875279165641,-0.286469509888699,0.467904705774898,-0.612239001559679,0.540379640829103,1 +"7135",109.50839089446,1.70894580629801,0.485334109287495,3.52117391626742,0.000429640728243621,1 +"7136",899.110879955839,1.15021563966879,0.573386865520619,2.00600276852248,0.0448559526191319,1 +"7139",1042.72353345805,-3.16461682351774,0.516071450723025,-6.13212922180458,8.67106251040863e-10,1.06341910627651e-05 +"7140",1631.67950910091,-1.09804871149958,0.554753214287033,-1.97934628086976,0.0477770322270069,1 +"3842",4560.17830681633,0.0476390800646651,0.174133114032814,0.273578522553084,0.784408541028672,1 +"30000",4340.36630758731,0.166893711655076,0.143591183956666,1.16228383286709,0.245120191463217,1 +"23534",3427.16911636947,0.468375565426803,0.130328528488149,3.59380690367723,0.000325881386614656,1 +"84629",7091.26701473008,-0.181656001043256,0.177488058862818,-1.02348294418871,0.306079560052783,1 +"27327",2450.49088324453,-0.0219535124183304,0.133847512825002,-0.164018829748697,0.869716320557942,1 +"23112",1927.14603597609,-0.319215370870129,0.145529688403752,-2.1934725097776,0.028273353106746,1 +"57690",959.726496313128,-1.06842782759061,0.244127818393723,-4.37650995540165,1.20594685836832e-05,0.147897322710291 +"7145",54407.8198455954,-3.20455265347601,0.418438384344141,-7.65836207521643,1.88319336399857e-14,2.30954834160785e-10 +"64759",3498.86686162948,0.0291809015786279,0.22677973661331,0.128675083649053,0.897614751847426,1 +"84951",5551.18279461455,0.0613911171042338,0.660748083652549,0.0929115325842035,0.925973843704382,1 +"7148",6874.44067317017,-4.67463400808106,0.407092310538803,-11.4829828200243,1.60641155944127e-30,1.97010313649878e-26 +"10140",7820.94090818574,-0.444498635241238,0.309101551209722,-1.43803430782413,0.150424320041431,1 +"10766",3959.27549161655,-0.7373925878538,0.146404842345444,-5.036668023001,4.73705299403402e-07,0.00580952179188333 +"114034",623.283383832996,-0.285715960410457,0.126313506627434,-2.26195889924255,0.0236999427780698,1 +"54472",4625.81292002432,-0.606927252274017,0.185899752207285,-3.2648093667025,0.00109537771119452,1 +"10043",2627.9563251006,-0.00759433670395958,0.193137045436241,-0.0393209738028567,0.968634484869428,1 +"10040",880.643351119205,0.805662494401574,0.173365075809285,4.64720181178744,3.36467955502571e-06,0.0412644300628354 +"146691",4138.59643980938,-1.09175946749824,0.230701249154129,-4.73235178180092,2.2193335253229e-06,0.02721790635456 +"9804",8207.54391249357,0.0320636330873437,0.13252198797822,0.241949532877619,0.808819268405561,1 +"56993",3337.28722968899,0.117053424162118,0.117493787888313,0.996252025455048,0.319127707125743,1 +"10953",3185.60193110451,0.894369548607221,0.230436605578337,3.88119563887248,0.0001039441798663,1 +"10452",2487.13563853377,0.780934004259773,0.175548800369347,4.44852942667067,8.64602053629418e-06,0.106034795857112 +"84134",1002.40469616771,0.253733911495451,0.18551714945633,1.36771135304221,0.171402444848048,1 +"401505",1954.4274649702,0.508100965785715,0.179818651515395,2.82562994163158,0.00471877443610231,1 +"100188893",3512.43022121678,0.112045205099611,0.119023645660823,0.941369292442119,0.346515644313938,1 +"54543",3206.64506589778,-0.737362356080941,0.143828334189315,-5.12668355812549,2.9489054048245e-07,0.00361653758847676 +"4796",1126.93676759204,1.75546767444087,0.201737811884774,8.70172853586582,3.26866734442612e-18,4.0086936312042e-14 +"7150",4465.39881077768,0.226110892580746,0.182999386290154,1.23558279163973,0.216613684475357,1 +"116447",2089.65998715391,0.658647779158073,0.160622251636884,4.10060108388386,4.12078384624784e-05,0.505372930903835 +"7151",296.464744659216,0.238074699165083,0.194031383171614,1.22699068198939,0.219826093145346,1 +"7153",5886.60139157276,3.65296208815201,0.445973348628482,8.1909874197328,2.59091674218159e-16,3.1775002926115e-12 +"7155",12298.3713085482,0.104917224639324,0.155421000085521,0.675051792110418,0.499642860210928,1 +"7156",953.118161504028,0.609166185682995,0.159693238627361,3.81460223938764,0.000136402457326062,1 +"8940",615.33609032512,0.452810479466011,0.126473407791322,3.58028211126514,0.000343223445425329,1 +"11073",2114.8923361969,1.04128941809938,0.206611939168024,5.03983178461225,4.6594120339421e-07,0.00571430291842659 +"10210",1209.22286649484,-0.299151032950994,0.133793695016676,-2.23591278283859,0.0253574848152176,1 +"1861",1981.26987678255,0.0707025955239003,0.124539680964619,0.5677113910705,0.570230955497364,1 +"26092",3963.54271438552,-0.961604597400929,0.189416576870219,-5.0766654813944,3.8411626667121e-07,0.00471080189445572 +"163590",3797.39719406233,0.599859025226726,0.186876062732661,3.20992970664662,0.00132767435869867,1 +"27348",1302.98897231697,0.0509767773077536,0.115483476759775,0.441420528183387,0.658908583517676,1 +"27433",584.937312436944,0.801893306414939,0.206872969104623,3.87625947404173,0.0001060745657638,1 +"64222",2652.15408280599,0.860856518600581,0.126054782676202,6.82922535999184,8.53743696264606e-12,1.04703126909891e-07 +"9760",241.134451914207,-2.01273671495834,0.382436638214285,-5.26292858434389,1.41778661519694e-07,0.00173877350487753 +"84969",466.714559662922,-1.66672923737166,0.313770270026218,-5.31194124042534,1.08463579423357e-07,0.00133019733804805 +"27324",633.907116223041,1.67956674429156,0.624263900990605,2.69047552105186,0.0071350269401594,1 +"9878",3835.99591654296,-0.328071312870947,0.0891508263119729,-3.67995818370657,0.000233272202994545,1 +"7157",3462.38363575587,0.17829337499337,0.254137220977251,0.701563408570245,0.482951477955563,1 +"7158",2780.29420912181,0.191603341064565,0.126945183281776,1.50933919752804,0.131212122574419,1 +"7159",2710.53576479409,-0.0410770680225311,0.167321494543755,-0.245497855099479,0.806070968752103,1 +"9537",3097.53762960789,-0.31707484514444,0.249343117009671,-1.27164065704746,0.203500824204483,1 +"90313",1817.76323873223,0.497270025087944,0.177668498454122,2.79886434238285,0.00512826775743688,1 +"9540",2144.44890582792,0.447433882806821,0.294953830800149,1.51696243982668,0.129276167375118,1 +"94241",2023.65575727092,0.228665235881065,0.199891417744525,1.14394724126333,0.25264551759512,1 +"58476",5289.31727252083,-2.24022471515508,0.29739066836023,-7.53293547342075,4.96121319585904e-14,6.08443186340152e-10 +"112858",1173.84763063448,0.0414917602671051,0.127606602262726,0.325153710947328,0.745064740057941,1 +"11257",1371.54518211729,0.0993492987769225,0.236141032457389,0.420720184641565,0.673959420168733,1 +"8626",6194.68197000223,1.29403951388177,0.616092924823432,2.10039664755545,0.0356939636826687,1 +"7161",270.98718775699,1.03829756807841,0.431323319326187,2.40723726623554,0.0160737232125833,1 +"57212",845.513704272686,-1.68352822172188,0.377812367575298,-4.45599023802828,8.35068319804534e-06,0.102412778740828 +"7162",2216.28912705495,-0.122171822867284,0.217342410166759,-0.562116812699122,0.574036434111427,1 +"53373",2600.5706955697,-1.04891250787198,0.199840382895108,-5.24875149194712,1.53133481866486e-07,0.00187802902161058 +"219931",862.421827259623,-0.134749815571108,0.149597761031677,-0.900747542221405,0.367722564607194,1 +"7163",3354.14505283349,0.463510182867222,0.218390729442333,2.12238946245936,0.0338050463534999,1 +"7164",2742.07913299589,-1.1104764578563,0.350975576158079,-3.16397075264331,0.00155632434470684,1 +"7165",6218.15235069082,0.166058290176024,0.13298178431498,1.24872959880504,0.211763991112609,1 +"91978",234.555133103362,-0.0598951514942234,0.16303712542265,-0.367371243445037,0.713342118667409,1 +"25941",2745.77467287966,0.272739530571587,0.144126587826714,1.89236097713981,0.0584429015983475,1 +"7167",20393.5421563261,0.806650648847036,0.158165363105993,5.10004613529997,3.39570701970984e-07,0.00416449508897215 +"286016",1107.46560108626,0.768620048489555,0.149529438206263,5.14025905339996,2.74359941596771e-07,0.00336475032374279 +"27010",203.528915448716,-1.09674482369104,0.259731501373703,-4.2226099563989,2.41489521258943e-05,0.296162748871968 +"7168",59372.6006706667,-2.521793819694,0.373971767694683,-6.7432732562658,1.54857568070229e-11,1.89917321481329e-07 +"7169",55919.7422868823,-3.0263543377846,0.418818107782995,-7.22593957029351,4.97649014951061e-13,6.10316751935981e-09 +"7170",11569.6087244085,0.795921498921866,0.169081152660654,4.70733423801103,2.50977215650966e-06,0.0307798457274345 +"7171",26058.9783737253,-0.774202238604876,0.184398254188793,-4.19853345147305,2.68649172480049e-05,0.329471345129532 +"7172",1029.46353604648,0.123986105569947,0.194867180754908,0.636259554275014,0.524607262213057,1 +"1200",6438.11904287883,-0.31705219399981,0.156636054345866,-2.02413291961333,0.0429564772757766,1 +"7174",2355.85171241783,0.244605914930398,0.125420801846227,1.9502818617784,0.0511425333347606,1 +"11076",1497.37370231029,-3.70505699502697,0.343962365132878,-10.7716929833171,4.68309570534132e-27,5.7433485730306e-23 +"51673",1024.24642300703,-2.30279468346376,0.262753879854571,-8.76407490058114,1.8831660370581e-18,2.30951482784806e-14 +"7175",8179.80072536425,0.406852465323165,0.153080390671552,2.65776997000291,0.00786595615876363,1 +"131601",2191.10374022646,0.520847412654272,0.129668670490195,4.01675601890018,5.90047562341751e-05,0.723634330455923 +"127262",4307.60305990259,-0.487651708701789,0.11744257783763,-4.15225651276143,3.29212949505153e-05,0.40374676127312 +"51002",902.478315247761,0.451508626326198,0.112297536026842,4.02064588681871,5.80387934715617e-05,0.711787763135233 +"286262",1113.93050322504,0.279991344794371,0.229620950284026,1.21936323514052,0.222706357510326,1 +"348825",246.020756182184,0.0809513586963034,0.574268262775863,0.14096436098524,0.887898096967237,1 +"7177",2760.77962568673,-3.11162473995123,0.325348348213373,-9.56397890764927,1.13314475312921e-21,1.38968872523766e-17 +"64499",2210.94780378909,-3.14339623083941,0.322719510284025,-9.7403352777553,2.02883859071037e-22,2.4881676476472e-18 +"23430",198.582110909814,-2.76373024010933,0.334565404216857,-8.26065757330351,1.44872135612072e-16,1.77671187114645e-12 +"8460",1942.93580606232,-0.795614334121983,0.215264864432989,-3.69597860857434,0.000219041416324877,1 +"8459",1467.01678986068,0.243828916848622,0.224655959723232,1.08534363899809,0.277769484799964,1 +"7178",96931.476461765,-0.826663359016194,0.16497768201931,-5.01075872140958,5.42158550503611e-07,0.00664903246337628 +"100190939",1123.86408753004,0.263314688817611,0.169264749199133,1.55563807622951,0.119794179144905,1 +"22974",3013.03492936529,3.4794194758764,0.440161162211218,7.90487615580847,2.68200106872723e-15,3.28920611068708e-11 +"29896",3321.90397687396,0.0984168389022765,0.116608666479287,0.843992491070622,0.398673601625257,1 +"6434",5675.60235152917,0.0483227087760098,0.122284795971641,0.395165305646142,0.692720895461743,1 +"80305",2906.33065639144,0.491085008393067,0.191318710534204,2.56684255827278,0.0102629198729161,1 +"8717",1355.74394931557,0.496937975832128,0.200372965706612,2.4800649832161,0.0131358440520707,1 +"7185",770.860482127333,-1.10166370274948,0.235964722810065,-4.66876442219815,3.03016594245635e-06,0.0371619551182847 +"7186",1114.67891888287,0.74265131374422,0.1456420445388,5.09915468500839,3.41173662516267e-07,0.00418415379709949 +"7187",1467.01371037287,-0.261266597829569,0.21026529209982,-1.24255693947595,0.214031146020274,1 +"26146",985.518700232615,-0.403046474297421,0.186291152196247,-2.16352988075803,0.0305004480617866,1 +"10758",1617.43910464735,-0.100868762931296,0.182459457069213,-0.552828362812861,0.580380944969511,1 +"643749",269.698050085226,-0.969341465026967,0.261851704927291,-3.70187188697559,0.000214014681004424,1 +"80342",467.592921880558,-0.54743081543267,0.336232094127688,-1.62813373557605,0.103496531650957,1 +"9618",6396.10108535177,1.03619275392718,0.33533868075466,3.08998875881329,0.0020016407090813,1 +"7188",969.784820146079,-0.749015390964968,0.242924285105272,-3.08332857968638,0.00204699002976429,1 +"7189",764.672127818999,-0.247828616391871,0.114974539571227,-2.15550866579762,0.0311220512346934,1 +"84231",3860.55495176805,0.177893559965195,0.133592772895854,1.33161065609348,0.182988161473173,1 +"10906",2961.63786509884,0.182981766501789,0.151723714698682,1.20601955248185,0.227809951494011,1 +"10293",343.109205559097,1.82680750311112,0.231394434607288,7.89477718516219,2.9083434402408e-15,3.56679239511132e-11 +"22906",7532.84509151685,-0.0894565294762172,0.261416680676852,-0.342199010578052,0.732201129776127,1 +"66008",2655.98906172969,-0.993304636874801,0.215576476350016,-4.60766709658083,4.0721193176594e-06,0.0499404713117749 +"23471",8561.8086534084,0.419215751409531,0.177069530587694,2.36752054415095,0.0179077257847964,1 +"133022",120.963000864879,-0.168161224824663,0.411889425961495,-0.408267885081329,0.683077014169422,1 +"9697",1746.56689709256,-0.612000502267349,0.170657694255798,-3.58612897552703,0.000335623011803577,1 +"9881",1546.08747059682,-0.476139747261027,0.194635362243197,-2.44631675237971,0.0144324142457887,1 +"10131",4435.75082260728,0.112126658260305,0.13835713520178,0.810414714765372,0.417701863529687,1 +"58485",3635.38191014213,0.0381288931292209,0.170215904959328,0.22400311615023,0.822754878507662,1 +"7109",2430.44921930593,0.300918893916273,0.161700185140093,1.86096814704055,0.0627486750321238,1 +"60684",1632.47911199514,-0.281112795716497,0.0999731755393091,-2.81188222940827,0.00492525331208031,1 +"51112",1825.87013975271,-0.319922640407184,0.111607365842138,-2.86650113093517,0.00415036676393831,1 +"6399",566.721893919034,0.179112298795975,0.150559363467778,1.18964569635888,0.234185677260653,1 +"51693",1402.58914748676,-0.0470691183608383,0.127438975417094,-0.369346333857331,0.711869593712123,1 +"27095",2593.23163726635,0.193650374277177,0.107460455601396,1.80206172766926,0.0715356943287274,1 +"51399",1623.29058204731,-0.0580447751438518,0.119942586533405,-0.483937997515884,0.62842987266204,1 +"126003",1360.26279343065,0.372040817912274,0.153623707537146,2.42176695170773,0.0154452521257086,1 +"79090",1435.9218830201,0.179453160563293,0.194349502098509,0.923352818636678,0.355823370811027,1 +"122553",1527.84299096432,-0.0389892169246105,0.121058777606416,-0.322068483554092,0.747400813690144,1 +"22878",1951.8183485572,-0.058027879275507,0.112207604970962,-0.517147472228141,0.605053216805873,1 +"83696",1904.11298687662,-0.0873900747189796,0.132778734987872,-0.658163181980621,0.510433280292395,1 +"1787",176.161219403944,-0.366301466179026,0.239735123707126,-1.52794242460075,0.126526833616979,1 +"54210",239.098476580415,0.983116597755798,0.470048251011937,2.09152272269774,0.0364812316980039,1 +"54209",250.956530216875,1.44211857364413,0.394060685717956,3.6596357513226,0.000252574013201401,1 +"55809",1503.02657801288,-0.695530172469113,0.232639007701947,-2.98974010996562,0.00279214901587414,1 +"11277",987.944403449436,0.303403550543293,0.224441994645767,1.35181275243143,0.176435223571377,1 +"29953",157.27261068404,-1.65901876648015,0.459438305134588,-3.610971806093,0.000305051825886397,1 +"51499",1203.58332766747,0.480782608349831,0.138514192864173,3.47099888039117,0.000518526161537091,1 +"10221",12130.2251742174,-1.36959756675859,0.380712156397086,-3.59746213443757,0.000321337257949834,1 +"28951",2478.48932301351,-0.569488714347589,0.295964522158912,-1.92417898670238,0.0543321521081215,1 +"57761",1066.33798275678,1.58111410343353,0.356235918836776,4.43839045932364,9.06340906508096e-06,0.111153648774153 +"9865",251.539823201317,-1.41191316854793,0.313087606057973,-4.5096424809818,6.49369691997232e-06,0.0796386990265405 +"81559",1619.26269228933,0.789987300122857,0.162798291260382,4.85255277562675,1.21882334735179e-06,0.0149476495319224 +"10206",1335.07990057545,-0.137280500599327,0.105717261005095,-1.29856278240798,0.194094017369958,1 +"9830",1847.56566205725,0.467474123363341,0.283833506703554,1.64700119021391,0.0995578011929359,1 +"10626",3567.02515472941,0.12292859412227,0.300961591143278,0.408452765202681,0.682941301871175,1 +"147166",1269.2075387736,-0.0215821556848495,0.308972223697348,-0.0698514430410098,0.944311901511055,1 +"51127",215.434903795528,1.9248522915684,0.437748893043368,4.39716084302629,1.09676071501975e-05,0.134506734090022 +"23321",2654.71232709453,-1.06937120899417,0.288739785544771,-3.70358108764458,0.000212577189520066,1 +"6737",989.422829139367,-0.143365476462575,0.201582385765909,-0.711200415243923,0.476960051308702,1 +"10346",2485.80169589408,-0.848632725786987,0.319100848552545,-2.65944991884673,0.00782683652182321,1 +"373",594.634527145034,-0.50093861858702,0.140373778948317,-3.56860535023037,0.000358886542919832,1 +"8805",2478.17554330767,0.893698470612053,0.200320698894061,4.46133862125093,8.14492703907141e-06,0.0998893852071718 +"7706",1711.30025042824,0.0346099086725849,0.1886977860903,0.183414492505082,0.854472805378932,1 +"7726",3748.22666920863,0.0543476820038665,0.171276559484456,0.31730951490066,0.75100875829026,1 +"5987",2889.10666692929,0.534631537204961,0.0920722217832537,5.8066540249624,6.37336423895641e-09,7.81629390265615e-05 +"10155",17504.0730986331,0.537234669378258,0.139512428911044,3.85080149182126,0.000117731898656148,1 +"23650",18002.031043239,0.506119107606244,0.572666729408802,0.883793455451376,0.376807719912567,1 +"10612",527.701847249257,-0.754354737885151,0.269324544157815,-2.80091344902871,0.00509581841677327,1 +"11074",2568.8890514213,0.221092116125294,0.656230598191667,0.336912232886646,0.736183063394723,1 +"22954",970.747395425878,0.137207521560974,0.161778160290927,0.848121410913765,0.396370358701073,1 +"51592",2967.94338933758,0.229002546535321,0.140986210425792,1.62429038871043,0.10431384754355,1 +"23087",839.871051800052,-0.173521840211825,0.171268098539427,-1.01315914459037,0.310984151553146,1 +"4591",1561.17669795354,0.24943001599515,0.146517044758003,1.7023958980822,0.0886811784771842,1 +"10475",1633.87393651528,-0.180768162725789,0.204784426975252,-0.882724167046327,0.377385321443027,1 +"56658",672.444431190893,-0.370470802495487,0.174288871379363,-2.12561364109765,0.0335354428475337,1 +"89122",1283.72277501729,-0.283323382554085,0.147426991270011,-1.92178772769758,0.0546324731615669,1 +"90933",1500.39812098902,0.046925233860372,0.11782577447325,0.398259498570283,0.690438911893743,1 +"54765",2353.29609376097,-0.164659281073744,0.220624094965283,-0.74633408059829,0.455465628923691,1 +"80263",486.264955982024,0.86913283065811,0.219638693106542,3.95710254129273,7.58643702321089e-05,0.930400636526584 +"80128",116.917337036336,0.703102951343992,0.325543462518339,2.15978212526502,0.0307895400291552,1 +"91107",1979.70324886305,-0.618978254504239,0.246552048503452,-2.51053786923037,0.0120547391749594,1 +"85363",1029.52048544108,-0.0555401846374539,0.17127432953564,-0.324276176050635,0.745728954760372,1 +"84851",330.810997770788,-0.0160246467349191,0.201010544662824,-0.07972042840737,0.936459611643227,1 +"81844",708.471997664602,-0.0690327927764658,0.168318116114254,-0.410132874405547,0.681708478409218,1 +"286827",472.3600506484,1.37393795592125,0.231784874317122,5.92764286267215,3.07313956328474e-09,3.7688983604124e-05 +"117854",331.486461393588,-0.35957013315403,0.350220186907779,-1.02669733669211,0.304563003780559,1 +"55223",839.910330497748,0.251327331788291,0.156491229192283,1.60601544946319,0.108270515469557,1 +"201292",1176.96576012782,0.864776676327032,0.177392832222572,4.87492456990603,1.0885003896194e-06,0.0133493687782923 +"9866",449.624458698624,-0.328009263227031,0.239054580688481,-1.37211034518711,0.170029089446508,1 +"55128",627.514175731818,0.0915366042980408,0.238985454536788,0.383021654918124,0.701703707916815,1 +"81786",433.20219812613,0.896104081392476,0.372823684229883,2.40355996492953,0.0162363039160812,1 +"81603",5449.06880196305,-0.633775998911836,0.191921397756843,-3.30226856577403,0.000959061951232526,1 +"114088",203.798143020867,1.13151534488452,0.399999204532692,2.82879398774416,0.00467237651192387,1 +"7204",3554.56127812936,0.156342583447896,0.200151652293354,0.781120623569731,0.434731553197508,1 +"11078",6187.18962833972,-0.745306732020097,0.163427890413504,-4.56046229400825,5.10411272028008e-06,0.0625968384015149 +"9322",4506.66044268319,-0.330166458519404,0.206387872459417,-1.59973769090685,0.109656786698512,1 +"9321",1792.8395437444,0.0090134205406993,0.135480545645095,0.0665292606977748,0.946956462640265,1 +"9320",6672.36575599734,-0.125237946549906,0.132751928327134,-0.943398322932746,0.345477200670272,1 +"9319",928.036640912568,2.54649842494126,0.308445915492156,8.25589932315387,1.50762671381282e-16,1.84895340182005e-12 +"9325",1307.3921510122,0.0524870402134798,0.0968256713261607,0.542077730983918,0.587764958896635,1 +"7205",4679.64856685344,-0.306728868683136,0.17340563470851,-1.76885179768661,0.0769186100389035,1 +"54802",1957.66550142576,1.1083756293228,0.197179858577116,5.62114019819786,1.89701243063101e-08,0.000232649604492587 +"55621",1491.41677942133,0.351457728476565,0.118521308899209,2.96535476819148,0.00302334057589802,1 +"60487",476.774508387701,0.0379731941225909,0.15021192313038,0.252797469942723,0.800424722909448,1 +"51504",5490.22235805522,0.56000284644696,0.107275032853901,5.2202533203568,1.78678557924254e-07,0.00219131383438305 +"55039",671.508536143763,0.0584663901973482,0.169357068516384,0.345225568141504,0.729924798408374,1 +"81627",1212.36301519254,0.218255470747565,0.142098839723467,1.53594125872036,0.124552787839855,1 +"27037",1555.32534147045,0.636261807444255,0.121441401085254,5.23924956199731,1.61230882168761e-07,0.00197733553891769 +"79979",881.692319017213,0.626969289193124,0.124689420105106,5.0282476946691,4.94982239022937e-07,0.0060704621793773 +"57570",914.032361426335,-0.0102224208005152,0.115637434002546,-0.0884006194766493,0.929558268953995,1 +"51605",1261.79311031161,0.605104009714407,0.145739107700387,4.15196730144932,3.29629367701947e-05,0.404257456549667 +"115708",1409.73833987425,-0.10137612206379,0.197444072754463,-0.513442215051242,0.607642022141897,1 +"55006",449.499519084076,0.276535395035319,0.0912435736486314,3.03073831917441,0.00243956577804747,1 +"55687",840.495178702799,0.711987976444741,0.125866396233015,5.65669628871113,1.54314475498782e-08,0.000189251272751706 +"54952",878.768291057777,0.144235442818786,0.148886285747098,0.968762449106885,0.332663726174667,1 +"388610",1284.86133616263,-1.62920633593815,0.368873790187977,-4.41670397646825,1.00217328400893e-05,0.122906531550855 +"51095",690.674816984146,0.359377412016026,0.104547943574901,3.43744123248639,0.000587238134700932,1 +"7216",559.333536873185,-0.537156872436657,0.351141961229442,-1.52974275861514,0.12608041528199,1 +"10024",724.502747535077,3.64467856854103,0.412881417913729,8.82742213722628,1.07115893675065e-18,1.313669320031e-14 +"8989",1077.17643675429,-2.03122409431699,0.617002430669379,-3.29208442844113,0.000994477519496604,1 +"7220",356.178737508858,-1.91458948174734,0.320200062844874,-5.97935386001124,2.2402443678315e-09,2.74743569270855e-05 +"26133",4680.62571399269,0.302462594589453,0.0803734465098344,3.76321543648678,0.000167742577338178,1 +"7225",190.376024020421,-0.56861565524612,0.359144479532531,-1.58325044000743,0.11336439400506,1 +"7226",748.532670785824,1.53804365425659,0.236860594767114,6.4934551725196,8.38897361145354e-11,1.02882372370866e-06 +"54795",2634.14398473388,0.605718268324311,0.292081445268709,2.0737992027089,0.0380979632589482,1 +"54822",2158.52634323974,0.271637129762757,0.14494131537333,1.87411801157657,0.0609141612975846,1 +"7227",1051.79158505632,-1.55728936023731,0.342276195648922,-4.54980328761934,5.36960892048303e-06,0.0658528838008039 +"83707",1090.77465652976,0.393867773608893,0.125840505857269,3.12989661735489,0.00174867833303195,1 +"7442",290.407568418365,0.271269051011737,0.222866411513822,1.21718229844121,0.223534863625821,1 +"51393",730.252851525606,-0.505425183376621,0.265184722626964,-1.90593627856762,0.0566584734863045,1 +"59341",545.191834756114,0.985905538506197,0.338012791038003,2.91676991121721,0.00353676567934898,1 +"55503",327.683798241647,1.01455358596168,0.583520989367575,1.73867539376993,0.0820918765786942,1 +"8295",3741.852636876,0.370566516986002,0.110453034179964,3.35496910281549,0.000793738492689562,1 +"142940",862.663799555442,0.395994602169985,0.111867775737721,3.53984513912577,0.00040036188627823,1 +"26995",1517.98648104102,0.5867603150193,0.15851424799997,3.70162507422937,0.000214223010926818,1 +"7248",1437.41625876475,-0.313644395754156,0.196298447973386,-1.59779355869731,0.110088928648676,1 +"7249",3510.54819160699,-0.441742723488901,0.156912655137469,-2.81521412726013,0.00487447433069647,1 +"8848",17241.8696057489,-1.69426581629019,0.2330330326114,-7.2704963639876,3.58168952531885e-13,4.39258403385104e-09 +"9819",3083.02537744926,-0.736024801413431,0.261455493050047,-2.81510551882933,0.00487612205524114,1 +"1831",8187.0944444096,-1.72155597748814,0.206104435566662,-8.35283322629572,6.66447180019698e-17,8.17330821576157e-13 +"81628",2870.88772573024,0.137550746914475,0.13714293870626,1.00297359974973,0.315873599264659,1 +"116461",1296.04984346399,0.62022276914399,0.181712837037183,3.41320282736589,0.000642041384476642,1 +"80746",542.039068017441,0.340378335455949,0.193030502467203,1.76333963340214,0.077843224552884,1 +"79042",2647.66070101364,0.265355213601038,0.12921530562565,2.05358964494345,0.0400154252180093,1 +"283989",1696.71487557377,0.784395122495329,0.121986317828974,6.43018935611338,1.27445081853581e-10,1.56298648385231e-06 +"10102",1393.5567120435,0.442570534486718,0.127271851809708,3.47736383335125,0.000506370179420048,1 +"7251",2860.91345490842,-0.135276037056376,0.143136085027014,-0.945086887285237,0.344614519191323,1 +"80705",139.96692421801,0.0728285435468744,0.317882975428356,0.229104888202131,0.818787394267796,1 +"10194",1509.05065827857,-1.10001221394447,0.202587630596709,-5.42980936548029,5.64142804063056e-08,0.000691864734902932 +"128553",856.845205604372,-1.28546489343768,0.288590939715196,-4.45428014720864,8.41751327210725e-06,0.103232382769123 +"57616",1526.56050488763,-1.92913894436195,0.365541610048465,-5.27748111659896,1.30971695926054e-07,0.00160623687883713 +"25987",6049.96884643725,0.247692247818541,0.319960657361422,0.774133450847214,0.438851877764141,1 +"85480",218.271308626642,-2.86384210548366,0.350828811531652,-8.16307558373175,3.26599991375391e-16,4.0054222942278e-12 +"7247",3748.08039197325,0.324707660532544,0.0912558807057484,3.55821080265011,0.000373389599510627,1 +"203062",242.786365746877,0.0847695768905967,0.173173412050592,0.489506881494207,0.624482883836168,1 +"7257",1424.53486317155,-0.0982215732422574,0.0985854381481833,-0.996309141463885,0.319099963514474,1 +"10103",5612.28061064236,-0.119572851722559,0.598968646410997,-0.199631236858617,0.841768996015296,1 +"441631",696.098182642277,-1.94821051971579,0.310792720825995,-6.26852042910792,3.64494808963249e-10,4.47016433712528e-06 +"23554",1046.12398659838,-0.413550017755864,0.298223565099419,-1.38671140095183,0.165529782707586,1 +"27075",3839.75606138899,0.711374028344348,0.309429362834272,2.29898682474214,0.0215056874733211,1 +"81619",8187.45482782584,0.137384111431838,0.238871472186875,0.5751382120857,0.565197826504844,1 +"23555",3573.32149116989,-0.214365881643127,0.315708889703855,-0.678998560490992,0.49713877404565,1 +"26262",2026.22915136594,0.549520512316375,0.111310923733413,4.936806684243,7.94121166644401e-07,0.00973910198772694 +"90139",2219.36957542528,-2.3464583564292,0.375785626454839,-6.24414078464278,4.26136045869822e-10,5.2261324665475e-06 +"10100",1600.99468508445,-2.55450654868619,0.405221379759011,-6.30397771757595,2.9010221876558e-10,3.55781361094107e-06 +"10099",6547.65460939931,-0.187779863783277,0.180770184419409,-1.03877674510529,0.298908579071739,1 +"6302",1555.06009901886,-0.2101346034793,0.136183744430663,-1.54302265925937,0.122825278189034,1 +"340348",1089.8519290515,-0.0208831162855314,0.304611868094265,-0.06855647620095,0.945342664271707,1 +"7106",1625.71641787791,-1.3824730747318,0.236259429371442,-5.85150433322305,4.87146589284607e-09,5.97436577098642e-05 +"10098",1003.51192450864,-0.50960929491882,0.216436749374924,-2.35454143712003,0.0185455758690153,1 +"7105",4654.24436723981,0.699179664363151,0.3578113401335,1.9540455707812,0.0506958281183433,1 +"7102",2546.84248788565,-2.80661472649564,0.414109375317278,-6.77747207327846,1.22296781363561e-11,1.49984772664271e-07 +"7103",408.925076442438,-1.07718166200387,0.48797511397114,-2.20745204245719,0.0272824939470121,1 +"10867",2534.35235518615,-0.350290658956675,0.134335614385999,-2.60757849329628,0.00911851615760415,1 +"706",7311.71897755872,0.143070237618298,0.290979869036776,0.491684315110528,0.622942528049718,1 +"7259",5409.45219001718,-0.87191771495404,0.122563204424442,-7.11402511910954,1.12706624917698e-12,1.38223404799065e-08 +"64061",2686.69598324377,-1.70782225464455,0.241766362858994,-7.0639365809569,1.61850634526008e-12,1.98493618182696e-08 +"23270",1678.2221144694,-0.480746606401507,0.209861908770533,-2.29077591649643,0.0219763772377954,1 +"85453",1907.22382589041,-0.33843992617718,0.348398175671094,-0.971417044665255,0.331340644149512,1 +"55720",2192.15400629433,0.0623521434812288,0.173406015117486,0.359573129219214,0.719166381107754,1 +"90121",2528.64640873983,0.0270773049754981,0.187687410191549,0.144268094209748,0.88528877183767,1 +"10078",2004.17702520864,-0.505263978669457,0.137979167956973,-3.66188596547427,0.000250365307029036,1 +"81629",107.086728532525,0.455943971070987,0.254626074139865,1.79064132615318,0.073350870827505,1 +"7263",2327.75343019501,-0.0439552557365652,0.24531431710096,-0.179179333094021,0.857796890909898,1 +"7264",4009.39756821453,1.02906812326103,0.170480733609029,6.03627226065926,1.57715070484388e-09,1.93421762442053e-05 +"100131187",2012.7218457482,1.34796245243563,0.381848890972991,3.53009393061448,0.000415412155701841,1 +"158427",453.686422601223,-0.398385712041659,0.246083960696318,-1.61890157698368,0.105468441529725,1 +"146057",308.161699016668,-0.487139059613403,0.243533685240001,-2.00029437050292,0.0454684865561161,1 +"7265",2040.33486808665,-0.345910536974199,0.0835691393438222,-4.1392138257048,3.48498021039436e-05,0.427397973002764 +"54970",584.315328485496,-0.683741638830771,0.177355214307823,-3.85521024289734,0.000115630213497791,1 +"79573",607.205250698847,0.635195133396703,0.144361784682055,4.40002272620603,1.0823954176605e-05,0.132744974021883 +"151613",1109.78917812642,0.132540736284895,0.167443940267471,0.791552898678671,0.428621420187935,1 +"55761",2488.96082715077,0.0320173501640377,0.14054391970093,0.227810283306236,0.819793731962356,1 +"54902",1897.07641695125,0.0775745029888607,0.148323068279196,0.523010371136863,0.60096703604001,1 +"199223",249.341318111254,0.139007538198509,0.233327530574733,0.59576140824919,0.551334628138602,1 +"79809",771.505473081262,-0.0835766155755827,0.172701601513681,-0.483936540501403,0.628430906729974,1 +"55001",664.999536669541,1.8051829551978,0.562404541029575,3.20975885417482,0.00132846371217937,1 +"64927",946.764836220857,-0.691473240877293,0.196519417835953,-3.51860008792876,0.000433830135395942,1 +"79989",201.854523700893,0.899804135932681,0.161345171855501,5.57688913516751,2.44857807669146e-08,0.00030029361532544 +"55622",1092.37004475052,0.336969894823518,0.11976317190512,2.81363535603813,0.00489847587486863,1 +"23331",1680.99004206901,-1.05897733905567,0.306871882820903,-3.45087770610026,0.000558766698941082,1 +"284900",429.917279979991,-0.359078653441476,0.184794559321533,-1.9431235138081,0.052001236607599,1 +"7267",6548.24921814335,0.0580370584288865,0.146636001751922,0.395789967917109,0.692259978228117,1 +"92104",364.648988989448,0.636858074919188,0.258173314093458,2.46678506318685,0.0136332164225139,1 +"150737",208.091139190202,1.13486361944976,0.265154518695184,4.28000859662652,1.86886094519104e-05,0.22919710631823 +"64427",1104.91588711184,0.34615874880075,0.120191553020657,2.88005887353213,0.00397600917422324,1 +"130502",248.945598718348,0.281437958978491,0.134638869360223,2.09031730818765,0.0365893055031343,1 +"23548",760.576836352142,-0.409196671254195,0.168159858244584,-2.43337902116347,0.0149586332880479,1 +"9652",3148.96127809904,-0.254319464373881,0.146583898294788,-1.73497544636473,0.0827451543469993,1 +"55020",949.822336270515,-0.0738526146883444,0.140486069256583,-0.525693508823712,0.599101174609012,1 +"22996",1115.92898857635,0.979670371262908,0.545422765177841,1.79616699890309,0.0724679615026053,1 +"158219",357.376440216114,-0.238705870767625,0.277636576981768,-0.859778179671551,0.389911329626544,1 +"125488",948.555545172052,0.0311984796397111,0.205682978117792,0.151682360520102,0.879437470443214,1 +"286495",1771.55540033169,-0.00838058960880375,0.172474098497303,-0.0485904241959831,0.961245701336813,1 +"91875",436.202406496773,0.579432687730961,0.132423423263543,4.37560571574865,1.21095734373347e-05,0.148511808635473 +"57217",2006.52402892162,0.177837210854555,0.162271681424831,1.09592264832071,0.273112626719269,1 +"145567",1569.04624557601,-0.207124821574651,0.212286167455648,-0.975686847886233,0.329219671768629,1 +"123016",943.452477552485,0.214093252273324,0.159183783391849,1.3449438611866,0.178643364447383,1 +"23508",1392.51873298565,1.57324589046886,0.409455296381976,3.84228975512187,0.000121891814959053,1 +"283237",617.571877134076,0.689021851402575,0.113761890429955,6.05670184275651,1.38940772201183e-09,1.70396963027531e-05 +"7270",858.913549656815,0.148463935940303,0.157201553443627,0.94441774071617,0.34495621923976,1 +"8458",1099.92595621037,1.38194657489841,0.183385416223032,7.5357495888206,4.85537540689364e-14,5.95463239901436e-10 +"9675",1404.85003972317,0.622914837329431,0.108394637111868,5.74673114765408,9.09852230857231e-09,0.000111584277592331 +"80185",424.670418460183,0.00371747561003465,0.135964798229947,0.027341456453659,0.978187391747885,1 +"7272",689.14149361251,3.5377863176499,0.427336600013126,8.2786878482705,1.24539920683511e-16,1.52735758726258e-12 +"150465",1715.46066012813,0.0488940260688844,0.172712527707604,0.283094843887991,0.77710413397887,1 +"25809",375.68667234471,-0.276723548713857,0.208885109220202,-1.3247643632756,0.185249318001201,1 +"158135",218.200187102086,-1.18208880196676,0.269605528223343,-4.38451247552873,1.16245821206594e-05,0.142563875127767 +"23170",3539.06106138746,0.320265663461802,0.18240169617307,1.75582612542112,0.0791181020429906,1 +"26140",211.174716031742,-0.463994844861651,0.262461068975416,-1.76786159819044,0.077084044061907,1 +"9654",865.506886548574,0.740786548199445,0.162743037518342,4.55187859029579,5.31690166465912e-06,0.0652064820153794 +"23093",1372.3925502371,0.432887050260804,0.0872867075203478,4.95936967447067,7.07222740156082e-07,0.00867337968527419 +"79739",572.57421510417,-1.72102234520212,0.367837840494804,-4.67875285176493,2.88625087244448e-06,0.0353969806996591 +"7273",504.064966987404,-0.202115947586986,0.228207419119017,-0.885667733184331,0.375796600668826,1 +"79183",1290.53485195635,0.464554504892304,0.18461631741865,2.51632418730812,0.0118586048499615,1 +"94015",336.246403591492,-0.881086430451521,0.322439990594155,-2.73255940997876,0.00628443364579479,1 +"80727",4582.68696175938,1.57582491684952,0.174857872068678,9.01203301976924,2.02271411668392e-19,2.48065659270115e-15 +"7275",677.843800348455,-1.87124261890384,0.377158834370045,-4.96141797136825,6.99804227704672e-07,0.0085823990485701 +"7846",14140.3517038807,-1.15731795686383,0.327512935197142,-3.53365572009299,0.000409854573368183,1 +"10376",33236.9986329789,0.45351079467236,0.186030588355105,2.43782916929057,0.0147757548380639,1 +"84790",16655.5566947422,0.569522362146144,0.203400264440475,2.80000797301232,0.00511013444227877,1 +"7277",3984.79582088557,-0.661470353700365,0.335533150825804,-1.97140089458336,0.0486780388184292,1 +"203068",48014.2128784799,0.861065501901959,0.227666911796296,3.78212843978133,0.000155493090350261,1 +"7280",1162.90407391386,-1.0874886590147,0.302118528779132,-3.59954307804048,0.000318776823311011,1 +"347733",732.733979303046,-1.38548143433527,0.391397585255853,-3.53983132887647,0.000400382836465482,1 +"10381",4274.30690920859,2.57547914226564,0.459056956969155,5.61036948284108,2.01895091444216e-08,0.000247604140147187 +"10383",20240.7793141048,-0.12019068470392,0.228291288960076,-0.526479504546226,0.598555088608847,1 +"84617",6441.03574820985,-1.79624996232625,0.271600630277392,-6.61357066989018,3.75158772166073e-11,4.60094718184472e-07 +"643224",146.895519687604,1.44889993037844,0.494578859095382,2.92956300847266,0.00339438987818118,1 +"51174",439.01867480969,0.0612914146070374,0.174751619517246,0.350734458292037,0.725787571769069,1 +"51175",466.254023214442,-0.477870912696301,0.136009538688575,-3.51351028246995,0.000442227297199698,1 +"7283",2151.3721185268,0.863625661670662,0.173579243828047,4.97539707297144,6.51140260380035e-07,0.00798558415330075 +"27175",1158.64727828696,-0.459234892932212,0.223108267963943,-2.05834995324525,0.0395565522097698,1 +"10844",3239.1855208868,-0.239753461195655,0.0850357938368864,-2.81944167717825,0.00481072724631865,1 +"10426",1159.3059782268,-0.0351030811328553,0.122719777594055,-0.286042574563432,0.774845513427912,1 +"27229",765.271218285911,0.309604528207073,0.0976808158770824,3.16955305324914,0.00152673583322669,1 +"114791",786.742773883536,0.275125830683831,0.122602034218084,2.24405600150514,0.024828798381316,1 +"85378",2205.2698115299,-0.131727762250353,0.124900462397131,-1.05466192616256,0.291579970770148,1 +"7284",10641.0184629567,0.473636274952424,0.137636365291616,3.44121463792589,0.000579108955808112,1 +"7286",2461.6478394603,0.498406824384865,0.275555474727285,1.80873497388551,0.070492186794223,1 +"55000",8319.36153748943,0.321160475784045,0.137810087704548,2.33045694356267,0.019782013146175,1 +"7289",1268.10373075905,0.325246432612685,0.1409493871512,2.30754059443894,0.0210247018989803,1 +"56995",1621.51460442643,0.40766418777936,0.135453059793283,3.0096343958675,0.00261562330103294,1 +"286319",715.932681866138,-0.413865648281971,0.203558964143309,-2.03314872436962,0.0420374996217062,1 +"11334",1326.37128929146,-0.316655502207849,0.220471190918852,-1.43626702830484,0.150926372399438,1 +"7991",3786.29154190833,0.494269168973191,0.339517929796914,1.45579695678765,0.145448757292258,1 +"64852",1307.09238602859,0.337190272773087,0.138873748682051,2.42803464278247,0.0151808931295826,1 +"5756",3544.90648756061,0.250599102766672,0.180164153705237,1.39094874098358,0.16424097107259,1 +"11344",3410.45695991069,0.0873427504061456,0.194156071848288,0.449858454462318,0.652812505791513,1 +"7291",593.797741195027,-0.845172363901781,0.364308167743459,-2.31993800505988,0.02034423126925,1 +"117581",107.688496091238,-2.91148125439835,0.336357772716077,-8.6559059744279,4.89011648852048e-18,5.99723886152152e-14 +"221830",1376.23920661467,-0.133269702203668,0.170812139082807,-0.780212126136191,0.435266025923704,1 +"57045",4426.65743789919,-0.0198337754500303,0.188001167929551,-0.105498150189484,0.915980537734629,1 +"200081",4313.70099346424,0.235530211636318,0.138838977054381,1.69642716068173,0.0898050136430629,1 +"55787",1135.7301384876,0.212870511622125,0.114797569218728,1.85431201262229,0.0636945345112119,1 +"7295",8020.14194842554,0.482759350684271,0.266710739087858,1.81004841550548,0.0702882794245762,1 +"25828",3690.76106388165,-0.160218567934815,0.15075786789636,-1.06275427060934,0.287893402404748,1 +"51061",2396.37298714824,-0.221577925271619,0.141854096525156,-1.56201287590116,0.118284955610915,1 +"51060",3355.40104169999,0.7600612101465,0.163115309595214,4.65965587186551,3.16738469318326e-06,0.0388448058771995 +"79770",2218.93336148614,-0.73562759217157,0.114825605380321,-6.40647693286746,1.48920628058395e-10,1.82636258250816e-06 +"57544",558.24630148144,0.16105391622996,0.216451807145792,0.744063624848751,0.456837984234756,1 +"84817",2878.16022356477,0.529682584215338,0.27324234982737,1.93850837745314,0.0525612297443916,1 +"81567",240.829530573625,0.61078328898447,0.196656709676247,3.10583498518811,0.00189742568788257,1 +"10190",1097.0469487436,0.389613673525329,0.114637298503907,3.39866412249805,0.000677158205963969,1 +"10628",34666.9393590439,-1.25370188563314,0.354819682227206,-3.53334932764622,0.000410329904040558,1 +"9352",2780.34980810881,-0.0844624035217582,0.118087141172502,-0.715254876044254,0.474451565818306,1 +"10907",1477.45427619254,0.211335321046708,0.100875088058435,2.09501994114033,0.0361692198576204,1 +"54957",560.949553200926,0.505512985949091,0.166520961941918,3.0357318385262,0.00239952670247052,1 +"7296",10288.3569711652,-0.578180831185175,0.368026242283001,-1.57103153187802,0.116175324748496,1 +"10587",906.45911545851,-0.608383137706362,0.330799676895899,-1.83912857296356,0.065896277288274,1 +"114112",427.399374096564,0.798207340829582,0.197184734704973,4.04801792605222,5.1653191257831e-05,0.633474737586039 +"7297",3073.00187470746,0.484517069983391,0.0877701200425851,5.52029631209697,3.38428485325378e-08,0.000415048694403044 +"1890",4183.11566986622,1.51697826736233,0.373566290947854,4.06080073101158,4.89046991535712e-05,0.599767230419397 +"7298",623.114087335253,1.7095896582625,0.295198692759432,5.79131852611458,6.98359891705111e-09,8.56468571187149e-05 +"7301",631.996067098947,0.746263807855511,0.240532027598604,3.10255484604679,0.0019185799330706,1 +"7305",1435.63679181711,-0.46276147356385,0.294356977387834,-1.57210974807005,0.115925101162817,1 +"219743",1331.91251228961,0.502462472754928,0.193454314790133,2.59731851057455,0.0093954756612184,1 +"55253",949.722486953531,0.213140359040243,0.117183279419193,1.81886323796921,0.0689322976208012,1 +"441250",231.416725322593,-0.0440237742905898,0.135425586983654,-0.325077227067168,0.745122623919421,1 +"127253",1140.0497447324,-0.460822438793752,0.164609154083932,-2.79949460501319,0.00511826718331469,1 +"129450",396.804919022818,0.324330021331572,0.118677799328797,2.73286177504029,0.00627866757901302,1 +"7307",3107.44497864807,0.0935844887311805,0.121803336497028,0.768324509185049,0.442294417189619,1 +"199746",506.121088385792,-0.400159923113944,0.174648920894317,-2.29122470992012,0.0219504205273776,1 +"11338",7688.16125868476,0.373279698379895,0.0853555453550827,4.37323312535858,1.22419874104939e-05,0.150135733602298 +"23350",4802.60160858699,0.531549252084616,0.134499365033085,3.9520577063978,7.74820492200983e-05,0.950239851635286 +"55075",2000.26089087623,-0.0767662088436854,0.17911625070405,-0.428583160611845,0.668226602376061,1 +"6675",3855.46256303055,-0.544090231746759,0.204948549178898,-2.65476498334139,0.00793636795999224,1 +"91373",563.43604918476,0.437593302264573,0.23372702580217,1.87224092191615,0.0611732799726758,1 +"7317",18082.4491079005,0.393008968204427,0.143193378546153,2.74460294319932,0.00605841497014902,1 +"10054",4474.15318644649,0.393900834789038,0.172292430921128,2.28623412347903,0.0222405654639124,1 +"9039",2387.81320678247,-0.103203252937584,0.108480671539084,-0.951351530861432,0.341425956195987,1 +"79876",1357.9304926561,0.00657512814226014,0.126284307834329,0.0520660742020771,0.958476045148937,1 +"7311",20552.84355911,-0.176633646045886,0.100905735726622,-1.7504817221137,0.080035225373301,1 +"55236",2624.05428221484,0.357078309281954,0.219589250162236,1.62611926138524,0.103924287290866,1 +"7318",2945.84245367532,-0.35024813975003,0.237102169256855,-1.47720343870242,0.139621112313337,1 +"10422",2364.44309763636,-0.286720813935636,0.164327682260296,-1.74481140360435,0.0810177031405407,1 +"337867",3744.53672326369,0.546041324000344,0.174344180277933,3.13197333647653,0.00173635643636658,1 +"51271",3556.97211181728,-0.479215024825707,0.144888137273561,-3.30748281980402,0.000941384859845566,1 +"55833",2061.42912696161,0.400824291204304,0.121096869021487,3.30994760180946,0.000933134377713169,1 +"9898",6593.48507591818,0.334014630304765,0.107780749659332,3.09901936440878,0.00194162329208107,1 +"84959",949.175845804705,0.995596305345788,0.365360239720277,2.72497167756411,0.0064307003184528,1 +"7314",29929.4563051661,-0.421478034540178,0.166882883215865,-2.52559175883239,0.011550361393591,1 +"7316",113126.393741536,-0.73778033587879,0.185402988523314,-3.97933356821817,6.91087199798774e-05,0.847549341833216 +"10537",1178.2661210884,0.999343266182508,0.545225703942063,1.83289830057004,0.0668176965394587,1 +"7319",3275.27613389759,0.336974606043826,0.143382126249086,2.35018558351149,0.018764052938908,1 +"7320",3032.88001633722,-0.58933804021334,0.115168898214087,-5.11716313477118,3.101653408628e-07,0.00380386774034138 +"11065",1524.86534887937,3.80850592205624,0.45567299170011,8.35798037502014,6.38010564075973e-17,7.82456155782774e-13 +"7321",1187.99574951779,0.448946545028149,0.127831498570683,3.51201816491191,0.000444717601777963,1 +"7322",3858.79071328824,-0.125451617042642,0.0778971095555053,-1.61047846009295,0.107293444121945,1 +"7323",9260.52015900119,-0.526715513806983,0.118032680952603,-4.46245488585055,8.10259912397974e-06,0.0993702756564875 +"51619",816.854830066435,-0.498932200830916,0.205040716395121,-2.43333231371204,0.0149605632541848,1 +"7324",3432.73493752823,-0.0391651516300446,0.105770395778742,-0.370284627770262,0.711170426373537,1 +"7325",810.22663968062,-1.35540026780243,0.294153885154069,-4.60779318652382,4.06965140949061e-06,0.0499102048859929 +"10477",2551.62622154157,0.208531796826441,0.129896732798029,1.60536598830918,0.108413284814842,1 +"140739",1055.64508272581,-0.208604452119555,0.151567305159046,-1.37631563681005,0.168723933840224,1 +"7326",3109.55819215397,-0.13857979662785,0.175471297861739,-0.789757631684261,0.429669326806093,1 +"7327",3833.42377218219,-0.398335327674742,0.171284978256705,-2.32557070520075,0.0200414638960558,1 +"7328",7223.49687236324,0.00204794022169319,0.145606991865421,0.0140648480918143,0.988778244839901,1 +"7329",5302.95582131755,-0.258148328243815,0.109904933581828,-2.3488329398026,0.0188323542092595,1 +"51465",3284.90860635268,-0.29714527257126,0.1120253014907,-2.65248357841668,0.00799020145045458,1 +"118424",2369.35423947075,0.35551712367256,0.110958264589508,3.20406168019841,0.00135503443622241,1 +"3093",4186.30146803871,-0.0180870023893531,0.138727173543697,-0.130378223150751,0.896267194926016,1 +"7332",3794.11860750316,0.145015387242851,0.133582055346594,1.08559032773221,0.277660280906404,1 +"9246",4080.43243953948,0.515527414704713,0.242924195159856,2.12217401550089,0.0338231277485385,1 +"9040",2598.75616127111,0.388036779288668,0.129243383791785,3.00237248441132,0.00267884175950862,1 +"606551",442.129141176345,0.236580233277021,0.150126511327838,1.57587245040545,0.115055201205765,1 +"7334",3738.06094139471,0.181636286752129,0.0953716770433492,1.90450972849696,0.0568438308753468,1 +"389898",714.351744724407,0.226445668664513,0.110784220870036,2.04402456312044,0.0409511206201147,1 +"63893",2403.86357056782,0.75976332140333,0.113871300960363,6.67212295807345,2.52129180281034e-11,3.0921122669666e-07 +"55585",3751.57497879123,0.500770588614043,0.0944107130254861,5.30417123826679,1.13186028264154e-07,0.00138811345063158 +"92912",2479.3369531727,-0.670346934978466,0.148013464135271,-4.52895916526774,5.92749520541077e-06,0.0726948011991577 +"54926",4785.80758785764,-0.0336849045897721,0.120955691953499,-0.278489619179908,0.780636532683046,1 +"27338",1022.96559069213,1.27838639119701,0.205041450749162,6.23477051360181,4.52440857393276e-10,5.54873467507114e-06 +"29089",688.748173247362,2.30143424674383,0.296060260063033,7.77353315252049,7.63266658013231e-15,9.36070229387427e-11 +"7335",80.9404354360085,0.335256746653484,0.141000052499103,2.37770653777321,0.0174206839443746,1 +"7336",2154.04360406104,0.178650898293636,0.126242691427513,1.4151385420693,0.157027879624743,1 +"55284",1275.83668067946,-0.262202308795282,0.117033993998484,-2.24039443444679,0.0250653272876519,1 +"65264",5597.45496146393,0.0701599700992076,0.120735984994467,0.581102395465799,0.561171444279166,1 +"7337",3508.92093465112,-0.259653895568722,0.118662372861495,-2.1881738019161,0.0286569446559042,1 +"89910",2525.40489408442,-0.226174800215236,0.124253370803614,-1.82027094116192,0.0687177543696079,1 +"9690",4817.04391756015,0.144279205495214,0.133463828095174,1.08103601967964,0.279681091451633,1 +"90025",172.985525991298,0.0432271857175813,0.124751345353659,0.346506769887217,0.728961897349417,1 +"9354",3125.02394057163,0.0162582016296772,0.120724145074347,0.134672327724208,0.892870953114296,1 +"10277",3380.36267242315,0.0114573515523028,0.142870917531972,0.0801937283683986,0.936083178135455,1 +"56061",2506.78588543047,0.467682285416754,0.126049263046844,3.71031352434762,0.000207002726638704,1 +"29914",1159.35492492485,0.0830698601432169,0.129325220687102,0.642333024462426,0.520656976130466,1 +"5412",3434.09570349419,-0.866000979744834,0.234071234982441,-3.69973260409293,0.000215826748377154,1 +"8266",2300.31909247898,0.188589124478575,0.16438306298118,1.14725398747538,0.251276664689058,1 +"59286",3115.19849387373,0.322997871073446,0.10622125019977,3.04080276278037,0.00235948338720576,1 +"84993",2044.01989543576,0.0817435730557941,0.115338685632896,0.708726413928201,0.478494270070694,1 +"134510",1354.44761114999,-0.260848755063843,0.156632844031453,-1.66535158495534,0.0958426325444246,1 +"29855",2558.63591080964,-0.256002799393999,0.169929630403092,-1.50652242805879,0.131933114060962,1 +"254048",1414.87065877513,0.370998855130966,0.169879486833685,2.18389437150926,0.0289700107131677,1 +"22888",724.407070844409,-0.480531438373149,0.146257412268941,-3.28551853146109,0.00101794846044981,1 +"7342",4299.42762711027,-0.0704715925205897,0.172049536871639,-0.409600594119392,0.682098961033372,1 +"29979",5921.43848193159,-0.0713834883922759,0.130262371870712,-0.547997763031105,0.583693438830709,1 +"29978",3550.41311351739,-0.0460245334130983,0.145038441827969,-0.317326446927003,0.750995911806002,1 +"56893",2705.86897502332,0.478270855442973,0.10742982178546,4.45193752995414,8.5098925913677e-06,0.104365322740533 +"197131",1618.54315121223,-0.614689556155597,0.16123113477711,-3.81247429043628,0.00013758254414926,1 +"23304",2538.87337365112,-0.259897226999479,0.129457833054856,-2.00758208960095,0.0446877193754457,1 +"130507",2653.4718490512,-0.290809110035606,0.170462064798643,-1.7060048543887,0.0880071757768259,1 +"23352",9756.86155766672,-0.419738381892258,0.152737280395498,-2.74810695074174,0.00599404534571366,1 +"51366",6290.69460084332,0.159454707391458,0.156974927054069,1.0157973020528,0.309725921057211,1 +"55148",2027.99399436667,0.0493253237949242,0.128381612101654,0.384208633833543,0.700823819641689,1 +"80019",681.540249838387,-0.0504772669334706,0.187406208508251,-0.269346823327084,0.787662803235739,1 +"92181",1506.82202297278,0.153920032831514,0.156851599493698,0.981309934539102,0.326439925147332,1 +"7343",7117.93771506896,-0.0335258489612911,0.113064857485376,-0.296518738951467,0.766833958461962,1 +"51035",5047.40796873712,-0.239884793130765,0.113882378671822,-2.1064259100352,0.0351673726048451,1 +"127733",425.353530552286,-0.677490123737744,0.405610929564416,-1.67029553287752,0.0948609065753171,1 +"91544",724.527257168529,0.617572989999305,0.127508233129124,4.84339697009139,1.27637919743028e-06,0.0156535144772849 +"165324",719.940248896536,0.199052100752593,0.122847764902212,1.62031519996348,0.105164585411639,1 +"137886",1157.80076914536,0.0145257651820028,0.159497757498473,0.0910719085322678,0.927435453605699,1 +"23190",6460.37124819675,0.473188022497329,0.125839542194241,3.76024907788472,0.000169744261888357,1 +"80700",6161.6895390634,-0.180089975607332,0.0732007540325065,-2.46022022570094,0.0138851783870458,1 +"26043",737.645068648141,0.658733189637777,0.213553971744783,3.08462157952756,0.00203811289937563,1 +"7993",389.211170258953,-0.193598485744419,0.22660818192435,-0.854331401895492,0.392921392787018,1 +"652995",2277.9127524756,1.65479560962249,0.746799243507137,2.21585067742061,0.0267017304090213,1 +"7345",1289.8371033367,-0.853495606893673,0.426369689307773,-2.00177364455563,0.0453090817187686,1 +"7347",1453.83600150655,0.403431423529571,0.230055748715378,1.7536246139569,0.0794948505739807,1 +"51377",1852.45058191301,0.590730157028339,0.179814289276633,3.28522365716741,0.00101901447418617,1 +"83549",1319.62863549663,0.144109303559867,0.191728156544323,0.751633490652964,0.452271497225344,1 +"7371",1839.44089529954,1.05426986447904,0.212846088076871,4.95320291767957,7.30017773535078e-07,0.0089529379746342 +"54963",1833.28579362927,0.674594870338943,0.116645241165245,5.78330383305807,7.32475926437423e-09,8.98308476182855e-05 +"7351",5804.58474532439,0.639356572108839,0.342098289309132,1.86892653979656,0.0616330353410441,1 +"55293",518.285755001689,0.0522546527504475,0.137701364257143,0.379478104900017,0.704332860333863,1 +"51506",5132.92793159975,0.207371769376691,0.154929347817369,1.33849249543825,0.180735945070833,1 +"23376",2274.58394911635,0.00376418047704414,0.104400446533506,0.0360552143408321,0.971238332867374,1 +"51569",2986.89032764581,0.00235994168416677,0.137350305830493,0.0171819179425725,0.986291487452596,1 +"55325",1163.03025109943,-0.910831317111167,0.144804083906169,-6.29009412263103,3.17273542203109e-10,3.89104272157893e-06 +"7357",1552.23605532964,-1.14101499555949,0.329809489522916,-3.45961845188267,0.000540941295133688,1 +"7358",3813.76195890571,-0.191226786498367,0.233687403775937,-0.818301643171654,0.413184968084299,1 +"56886",4207.33353721719,0.703519663642702,0.152826026131125,4.60340219171231,4.15644443051622e-06,0.050974634495851 +"55757",1034.17233688335,0.42821752999407,0.15954326971383,2.68402127374069,0.00727424774016051,1 +"7360",5925.77556701851,-0.539074956764122,0.166284260882221,-3.2418880410212,0.00118740660194418,1 +"54575",1904.02769819103,4.19923159911484,0.9156460213763,4.58608621790657,4.51632157799295e-06,0.0553881678325055 +"54578",1000.30989947938,1.13653876361731,0.827318122940778,1.37376268221634,0.16951536996594,1 +"127933",6286.48594493716,0.827563653032416,0.254380505306761,3.25325107768949,0.00114092637688071,1 +"29128",874.811750830248,3.61584713517999,0.44108972568612,8.19753198639006,2.4537253017767e-16,3.00924871009894e-12 +"54887",995.980281344044,0.405515102274389,0.130382285249235,3.11020091034007,0.00186960129335596,1 +"23074",1041.96672485883,-0.480563647152319,0.165332004766104,-2.90665831961679,0.00365311984454147,1 +"115426",1573.32756187605,-0.000639194769686449,0.143539589293376,-0.00445309041800322,0.996446959650427,1 +"51720",1214.86206742236,-0.431255827838515,0.123548454211909,-3.49058052234979,0.000481972347508112,1 +"80328",201.995971424301,3.11530248325865,0.479064579610227,6.50288628266631,7.87933602173973e-11,9.6632176970616e-07 +"8408",3350.83617828713,0.190221484763155,0.162386309178821,1.17141331510701,0.241432682734323,1 +"9706",1397.86397311074,-0.130800357876864,0.230859652732832,-0.566579548779951,0.570999872895334,1 +"25989",1952.5086669681,0.527265627730228,0.220798219387342,2.38799764415336,0.0169404503745385,1 +"54986",206.071556938608,0.354052627974704,0.175939990391238,2.01234879681076,0.044183181951644,1 +"7372",1816.62626480246,0.613380586116918,0.183154121881151,3.34898597867724,0.000811079001940713,1 +"9094",1430.99939351946,0.889048219204325,0.149084391520419,5.96338899154684,2.47059318196641e-09,3.0299354783636e-05 +"84747",1247.96208243434,-0.275580402986362,0.247570161932084,-1.11314061773713,0.265648041452381,1 +"10497",2037.08382060913,-0.486839393598067,0.109939645132347,-4.42824235981479,9.50041138459891e-06,0.116513045220721 +"201294",2644.09914479905,1.09938917566603,0.415991618542122,2.64281568825576,0.00822197785733374,1 +"55898",6658.80177498624,-0.416841086522105,0.154349227528105,-2.70063603943988,0.00692070273189921,1 +"25972",1272.2766273805,0.140850564603591,0.0780878749759002,1.80374436680549,0.0712713908540616,1 +"219699",3282.77145250995,-0.112118536989765,0.385454734968847,-0.290873419933022,0.771148130602397,1 +"8633",401.129473556574,-2.21478022050181,0.317941628257482,-6.96599634543041,3.26087608627795e-12,3.99913843221128e-08 +"222643",776.018207559005,0.192827584378695,0.34262201309115,0.562799753112757,0.573571248454686,1 +"81622",2681.1173157333,0.705520335012978,0.284676469002447,2.47832333134255,0.0132001464393357,1 +"7374",2439.36805028758,1.11207393082089,0.191556955404096,5.80544793309611,6.41941515943227e-09,7.87277075152773e-05 +"85451",1560.90784595404,0.297498960745074,0.146164340454938,2.03537305897666,0.0418133500178077,1 +"64718",660.696510402055,-0.0910403670800202,0.172228050157136,-0.52860359852508,0.597080463467623,1 +"5976",6727.71970591789,0.280119781441502,0.0928571870535504,3.01667313355032,0.00255565226895644,1 +"26019",2439.96417944436,0.15501373471784,0.132488554409446,1.17001604711288,0.241994511109792,1 +"65110",833.124819323902,0.0203443635508174,0.145086759496096,0.140222054868934,0.888484546791644,1 +"65109",866.67448942393,0.681131412299745,0.210702429930848,3.23266994368926,0.00122639166235319,1 +"11045",11071.588219232,-1.12741798539765,0.915922161872928,-1.23091025889388,0.218356430237542,1 +"7348",17537.368645432,2.64537420247457,0.745546830622203,3.54823344935535,0.000387824317285181,1 +"7379",8205.5108475799,2.08341235827801,0.841815211794401,2.47490462168894,0.013327176177471,1 +"7380",3016.16723115581,0.166138941923399,0.765653726708519,0.216989660113869,0.828216403009723,1 +"105375355",6271.87924490928,1.04376307860798,0.617057719508364,1.69151611852388,0.0907382719497712,1 +"7378",2680.0448454478,0.665699358641331,0.32087364761507,2.07464640237432,0.038019318182387,1 +"139596",467.908038453034,-0.2055637507385,0.133488143237293,-1.53994014564337,0.123574943899182,1 +"29796",4156.45713248396,0.208528339368071,0.201367687477558,1.03556008404432,0.300407421961928,1 +"10975",4009.20445939562,-0.208369574327482,0.114982392153358,-1.81218680899914,0.0699573365747655,1 +"7381",3657.89813843565,-0.704435827945517,0.117308350411357,-6.00499304163191,1.91340110378479e-09,2.34659511368167e-05 +"442454",748.544781797072,-0.678316784682003,0.131283214538234,-5.16682035146585,2.38109924260962e-07,0.00292018011113643 +"7384",9766.12829205142,0.147242336144869,0.118510757699257,1.24243856847597,0.214074792912107,1 +"7385",8755.93170239933,-0.508715794951864,0.120263714156837,-4.23000236204617,2.33688858132319e-05,0.286596015613476 +"7386",2879.89962681871,-0.379741968579314,0.105046901822707,-3.61497542516982,0.000300376113542184,1 +"7388",1836.16622816367,0.346214140192137,0.140882021271031,2.45747567410384,0.0139917286257324,1 +"440567",5828.93406610975,0.420086209756256,0.139370601759301,3.01416657783944,0.00257686278664144,1 +"27089",4780.00041862961,-0.113635405580371,0.134272400362821,-0.846305013340895,0.397382611842327,1 +"9875",2631.24280545874,0.155329871008493,0.211969850607034,0.732792284202981,0.463685127996877,1 +"9816",812.992299589308,0.3535774717519,0.213826535544024,1.65357153101844,0.0982146010740164,1 +"55665",2228.17674322654,-0.288050579596593,0.13754084968435,-2.09429111611318,0.0362340552424238,1 +"8725",4042.24974920111,0.0243110956620181,0.131503169343105,0.184870796524973,0.853330377132212,1 +"81605",2487.73469002525,0.0709866281031115,0.135335538138134,0.524523189398022,0.599914695186064,1 +"7389",2682.7220353321,-0.215818317593824,0.136322845815047,-1.58314122848221,0.11338927839566,1 +"7390",1006.11207794171,-0.277036428226937,0.173458693975646,-1.59713198501215,0.110236289800711,1 +"55850",948.366416954904,-0.177485199347475,0.127245660872009,-1.39482319578661,0.163069162279712,1 +"7391",2890.83549745015,0.600913122636687,0.128675457676549,4.66999017129748,3.01214146839047e-06,0.0369409029683408 +"7392",5193.40831278959,0.0388347857283664,0.114640446445706,0.338752917773735,0.734795872419287,1 +"83878",131.948295996958,-1.58343947801194,0.222419983501723,-7.11914214308749,1.08600866175199e-12,1.33188102277265e-08 +"8615",4807.34287371831,-0.241687873928905,0.133508745397271,-1.81027747066107,0.0702527689915718,1 +"7398",2293.56250644669,0.473531597959625,0.181100419980014,2.61474599568507,0.00892938334152187,1 +"9100",2584.0861321124,0.0303749800759703,0.125684412004228,0.24167658973452,0.809030770599693,1 +"8237",5144.88646403289,-0.314756695220121,0.167263280689319,-1.88180390772535,0.0598626450541615,1 +"219333",2254.60371056558,-1.22465843698486,0.202687244250945,-6.04210907060642,1.52112574548832e-09,1.86550861426688e-05 +"8975",893.626858932554,-0.410080211232406,0.265731185219736,-1.54321447403061,0.122778746602264,1 +"9097",3289.06213818475,0.214950747316744,0.158169429229987,1.35899047219924,0.174149607895291,1 +"9958",2484.20066442354,-0.20626661405118,0.0900952370145823,-2.28942861893792,0.022054460898631,1 +"10600",2383.63531018204,-0.112655781734654,0.134447336873185,-0.837917539719768,0.402077017203715,1 +"11274",322.129466365482,1.55669030751878,0.204880944944791,7.59802385691972,3.00686908831849e-14,3.68762424991379e-10 +"10869",3544.92615537786,-0.195533278656975,0.156685258242118,-1.24793666520195,0.212054252062944,1 +"9099",330.859569399728,-2.6848256110731,0.344048721623646,-7.80362036633294,6.01559746772746e-15,7.37752873442096e-11 +"10868",2115.87181141869,-0.688047554655949,0.171570124124961,-4.01029933483536,6.06418193391143e-05,0.743711272374897 +"27005",1428.80293064328,0.714359597905073,0.142166544724625,5.02480804670874,5.03936317096789e-07,0.00618027499287502 +"23326",9927.485741421,0.0862982165655022,0.218353122372489,0.395223185397303,0.692678183158798,1 +"23358",2967.78958656794,0.172484427566496,0.151090062600919,1.14160008009321,0.253620290730245,1 +"29761",1865.7578734103,-0.295367261378189,0.175363115014012,-1.68431805830199,0.0921202172806447,1 +"389856",227.144164530247,-0.102685584289386,0.208221991749958,-0.493154365811153,0.62190351936986,1 +"57646",1198.64174256373,-0.15068429095003,0.174542248036356,-0.863311276468969,0.387966345880688,1 +"9960",1920.22632548287,0.227198659598834,0.148548658057283,1.52945615645496,0.126151400130593,1 +"84749",648.362589456429,0.288631104651728,0.162844016598935,1.77243911492671,0.0763216936559547,1 +"57478",2382.91901888287,0.492535001172161,0.319262409127587,1.54272782228906,0.122896828382406,1 +"84669",1873.87284827704,0.3165197111769,0.164682397801698,1.92200086592154,0.0546056487942568,1 +"162632",200.516688755504,-0.264221895477919,0.330721243918129,-0.798926287128166,0.424333155400713,1 +"220594",134.788648880446,0.329681009712271,0.325119652236332,1.01402978086548,0.310568542070457,1 +"23032",2630.93163286129,0.287748551913394,0.105465741483019,2.7283603933105,0.00636500260089512,1 +"9736",6399.39895732174,-0.0158352526243228,0.145197290597083,-0.109060248708531,0.913154703700715,1 +"57558",481.402297552704,0.539713055814068,0.234022154798622,2.30624769812284,0.0210967957555959,1 +"57602",2116.61131147734,-0.285370198433797,0.164149823171187,-1.73847399236119,0.0821273288614316,1 +"57695",958.241544249685,0.23996612229585,0.131944742689955,1.81868650014897,0.0689592724729755,1 +"84640",1326.9056761078,-0.401221981922202,0.163857929135755,-2.44859668395902,0.0143413934280333,1 +"10713",2667.44160142928,0.425527624810551,0.090060704908494,4.72489778136766,2.30231134600622e-06,0.0282355463474203 +"7375",3104.00858527786,-0.169201438321304,0.129587090362734,-1.30569671598987,0.191655715219272,1 +"55230",2166.71497559937,-0.069723959372747,0.279323678464652,-0.249617074198637,0.80288349319884,1 +"84132",844.650210836132,0.228542574403348,0.105857871801929,2.1589568211892,0.0308535169486569,1 +"124739",378.353332322234,1.72584390617832,0.533846563037558,3.23284633764122,0.00122563469418875,1 +"85015",405.941027335682,-0.0294839839749489,0.206004444712422,-0.143123047738645,0.886193002862855,1 +"64854",1182.21929389291,0.0421254716048166,0.162546052187473,0.259160225904663,0.795511618048252,1 +"55031",4282.11316854182,-0.505810699306997,0.127669017234076,-3.96189075678098,7.4358563358162e-05,0.911933421024498 +"84196",2880.31414815791,-0.000669618843728526,0.105694703016363,-0.00633540588713191,0.994945111271249,1 +"8078",6067.6408446419,0.254169088667769,0.149039669720826,1.70537877025537,0.0881238051503952,1 +"158880",154.095974212584,-0.714962648328863,0.322900515559751,-2.21418862428717,0.0268158060806753,1 +"54532",1707.88704874367,-0.798534301723902,0.183935610021979,-4.3413795818465,1.41590871140963e-05,0.173647044367277 +"159195",1617.97266930116,-0.948900947812524,0.210012001537644,-4.51831771929679,6.233290233212e-06,0.0764450714201119 +"9712",1265.98997080151,0.570629989384747,0.227010233951917,2.51367517424617,0.011948042427778,1 +"7874",5970.99365948983,-0.211322446333199,0.149156342179679,-1.41678485302779,0.156545839538319,1 +"9101",2601.91962558168,0.132729174790053,0.108490314094425,1.22341958264155,0.221171260717785,1 +"8239",8184.99723609567,-0.0991359202045852,0.143753653181057,-0.689623658326959,0.490430885545819,1 +"8287",688.03903489078,-1.06253961070564,0.390077453271311,-2.72391957493275,0.00645122140368066,1 +"10208",915.464131006973,-0.134416752504452,0.169426860512676,-0.793361525425867,0.427567220136432,1 +"10090",1753.58942366415,-0.436400749762873,0.350554981929516,-1.2448853168791,0.213173908906645,1 +"10813",1068.20865728021,0.151380393776908,0.158336785540683,0.95606585203798,0.339038965703733,1 +"9724",1119.9136200681,-0.178578889417732,0.1409895843946,-1.26661051016313,0.205294592505325,1 +"84135",546.680971026322,0.0816492622105617,0.171497718775089,0.476095325312406,0.634006467221076,1 +"51096",1690.12848850141,0.601828199121795,0.213189917566368,2.82296745545877,0.00475814013124675,1 +"27340",1504.08640356071,0.53469448433667,0.139439725048266,3.8345922164691,0.000125772780035154,1 +"84294",836.69798493899,0.144716770817558,0.165421375984984,0.874837184468195,0.381662501573805,1 +"57050",1753.71386042595,-0.672797217771681,0.195329838013611,-3.44441599201448,0.000572294448363546,1 +"55813",1892.15355128787,0.401099224071678,0.114704026584404,3.49681903953503,0.000470841107816228,1 +"7402",3520.32871115569,-1.10223201340302,0.241799356797093,-4.55845717707167,5.15307686852616e-06,0.0631973347156048 +"7404",513.563979456324,-0.732422275299721,0.390278365224219,-1.87666635038541,0.0605638373151024,1 +"7405",1560.46852236347,-0.00199691481380866,0.167677781726562,-0.0119092392161121,0.99049802650987,1 +"80146",2381.47320254955,0.277694852564647,0.209661606057169,1.32449072477737,0.185340121468437,1 +"8409",2515.26704934052,-0.0688232162435283,0.121956939806079,-0.564323902788661,0.57253371701153,1 +"55697",2204.18608391412,0.335394267983241,0.131511127576558,2.55031094450919,0.0107626879370024,1 +"6843",345.734625105597,-0.280221881405222,0.211703454505043,-1.32365285233712,0.185618363537931,1 +"6844",3495.9165762639,-1.22058432945384,0.181380072292118,-6.72942906036586,1.70330103784223e-11,2.08892839280971e-07 +"9341",5459.41229385536,-0.239123579093031,0.125556399331781,-1.90451128230549,0.0568436287086011,1 +"8674",949.622419616514,-0.225570792980398,0.154830944866758,-1.45688443078686,0.145148284427887,1 +"10791",1704.4569357082,-1.41078914335413,0.314689469543999,-4.48311519733544,7.35611919769279e-06,0.0902154458405043 +"6845",365.500198388559,0.118514163477781,0.158779019545969,0.746409467804207,0.455420101684407,1 +"8673",6178.19511229587,0.936372867422372,0.374708283134933,2.49893826629176,0.0124566008614343,1 +"81839",2692.31674783202,1.03335008959987,0.172431684852345,5.99280863308122,2.0624750422486e-09,2.52941939181369e-05 +"57216",1788.89778487502,0.606495824871337,0.370360192818873,1.63758372695293,0.101508559980018,1 +"9218",6390.35808005368,-0.249053144854985,0.140162948655334,-1.77688288698475,0.0755875105658236,1 +"9217",3370.2400835569,-0.216852413529496,0.186060203945145,-1.16549594664224,0.243818299999072,1 +"57176",1829.9847227353,0.780479361537365,0.158251718695885,4.93188553002212,8.14396400072494e-07,0.00998775745048907 +"22846",1507.10989143595,-0.277293870694163,0.208470218601219,-1.33013661401966,0.183473263880246,1 +"79805",242.419743304591,0.269420295400324,0.351403875677091,0.766696994679415,0.443261690905071,1 +"114990",1662.45382692817,-1.380615589476,0.266439104151912,-5.18173033898521,2.19836888077209e-07,0.00269607959537889 +"7408",8339.53365697832,-0.638005793637546,0.20994410201407,-3.0389317323846,0.00237418648167599,1 +"10493",12360.7603173792,-0.262418865546417,0.173628589385047,-1.51138050752957,0.130691532739799,1 +"7409",489.856282446346,-0.672316194771175,0.238485297090051,-2.81910961797075,0.00481570692008248,1 +"7410",2179.78267999544,0.790155193853288,0.244283794260577,3.23457884811807,0.00121822278510911,1 +"10451",2080.6500525841,1.21120851447713,0.432350755201537,2.80144882345016,0.00508737094493903,1 +"7411",1965.52511548182,0.355621551040434,0.112699514702858,3.155484315776,0.00160231880984861,1 +"7412",1497.71718798153,-1.24761307331624,0.309085595988973,-4.03646462179606,5.42627038522492e-05,0.665477800043985 +"1462",7296.67919138008,1.15834181038785,0.300053386686451,3.86045237875714,0.000113177297223204,1 +"7414",19743.7542428156,-1.38457212225014,0.296476524785172,-4.67009023143874,3.01067464718858e-06,0.0369229138731208 +"7415",19622.3492248456,0.242840494236338,0.120544378015428,2.01453189467913,0.0439537197244726,1 +"80124",1251.19833920921,0.136909675221792,0.144312399434671,0.948703477720016,0.342771444765512,1 +"7416",7083.84873001499,0.713452000632064,0.173972914441527,4.1009372230288,4.11480187425124e-05,0.504639301858172 +"7417",2899.17628632182,-0.622235295388876,0.193892592204528,-3.20917518464299,0.00133116358443061,1 +"7419",4346.60109612592,-0.289062308687234,0.148804793601647,-1.94256046254167,0.0520692879102767,1 +"7421",1218.28674822424,0.382133029614595,0.40530459192199,0.942829262808217,0.345768241314489,1 +"7422",8328.6533374143,0.036840218271235,0.337217317142775,0.109247705851468,0.91300602291964,1 +"7423",3798.15065432705,-0.703709243844571,0.240578946434934,-2.92506578099465,0.00344383416975378,1 +"7424",569.436039687689,-0.94407585279144,0.28033579363977,-3.36766076330792,0.000758088136869029,1 +"7716",2898.47072809431,-0.567961783633534,0.178425326451319,-3.18319038518612,0.00145661802960636,1 +"55591",2309.99880550123,0.107328556128836,0.125178190074048,0.857406198838206,0.39122043464635,1 +"51442",2081.99823481551,2.83414158899616,0.769256883437499,3.68425899074379,0.000229368933753652,1 +"389136",2893.1687290874,-0.639478516167121,0.446761256250265,-1.43136520282524,0.152325575779426,1 +"9686",2034.24517717211,0.427629956552927,0.140933391812062,3.03426995586099,0.00241118565726082,1 +"7428",3550.48508520537,0.866930222855914,0.160389110185199,5.40516885376372,6.4747367951224e-08,0.000794061720553812 +"50853",1657.02693606968,-0.759390631565302,0.414512589883837,-1.83200860504168,0.06695013859035,1 +"7431",37808.9772449093,-1.45797401482111,0.230912714245047,-6.31396161786868,2.71981420963801e-10,3.33558014670006e-06 +"7433",1005.80194978424,0.806268389776365,0.491738656480594,1.63962783716635,0.101082571477484,1 +"7434",313.960020525133,-4.1663549253092,0.400672849007247,-10.3983959373145,2.52141849403489e-25,3.09226764108439e-21 +"79001",2774.83815059234,-0.182743538436852,0.169083497607986,-1.08078872877669,0.279791103320167,1 +"154807",586.675582748011,0.673562674782225,0.146865346440585,4.58626007500495,4.51256425935414e-06,0.0553420880767192 +"7436",1361.54518367095,-1.26190649435609,0.271863351344169,-4.64169402796248,3.45564314341928e-06,0.042380007510894 +"203547",1977.23009241482,0.608326081814181,0.151690519478725,4.01031049207727,6.06389537327784e-05,0.743676128578794 +"400673",274.326414092016,0.250906315411194,0.153735768753574,1.63206205976293,0.102666413257528,1 +"81671",6459.55455435683,0.0128589889694665,0.247925933591006,0.0518662520826863,0.958635265002253,1 +"81552",2002.00680161216,0.426872685229176,0.17782464904119,2.40052595368991,0.0163715297401902,1 +"55823",2073.60624003082,-0.411023067814308,0.13838746002354,-2.97008896430639,0.00297713517856175,1 +"23230",1600.68951909959,-0.0278138730687672,0.175135797344386,-0.158813180917401,0.873816063742996,1 +"157680",2117.51237185734,-0.132886418317399,0.185540964996554,-0.716210667115305,0.473861277393604,1 +"54832",3955.90208348471,-0.251908895556673,0.202704356482759,-1.24274041233099,0.213963506832905,1 +"55187",4285.44688961362,-0.522810169130704,0.144559048561895,-3.61658557061444,0.000298514664127774,1 +"64601",1854.45006683642,0.431243033256455,0.0839644987896243,5.13601628632296,2.80623350363714e-07,0.00344156476886059 +"57617",1991.52969743374,-0.213234424125983,0.155786954252546,-1.36875661475677,0.171075366693423,1 +"84313",2334.87679452352,0.679926774449782,0.175635928852304,3.87122827825022,0.000108288321667944,1 +"9559",3074.32112740539,-0.104648470479483,0.129812825375331,-0.80614893156289,0.420156980560667,1 +"112936",2560.97972060098,-0.162826529733178,0.105999750795751,-1.53610294845811,0.124513133277893,1 +"51160",5154.84089737752,-0.00545008378083971,0.107282432297021,-0.0508012697339921,0.959483879084003,1 +"51699",3174.62016148304,-0.00980173918306176,0.137339016589147,-0.0713689337996638,0.943104133778544,1 +"65082",1074.04549054495,0.450934322255528,0.100122566244404,4.50382305578122,6.67417833796959e-06,0.0818521231368591 +"26276",883.145580178096,0.261563946656932,0.120775171425273,2.16570958724549,0.0303333859636397,1 +"55737",8025.40858381401,0.22103362569783,0.155774729575073,1.41893121111987,0.155919071876964,1 +"51028",2615.0264646743,-0.480234064439778,0.143750652240204,-3.34074355111321,0.000835543610535239,1 +"137492",1364.35527443135,-0.470001873535857,0.150162151227333,-3.12996230870662,0.0017482873352097,1 +"79720",3642.62138791207,-0.567710561524873,0.245619378988836,-2.31134271189032,0.0208139325721936,1 +"55048",1720.81601453885,0.096842720824008,0.126121055868209,0.767855297098087,0.442573158032385,1 +"155382",146.336171387398,0.618581105762894,0.34243843854359,1.80640090637533,0.070855740113787,1 +"23339",3684.10685279401,-0.241323280949634,0.163708060935319,-1.47410750314231,0.140452648654958,1 +"27072",2649.14199215605,0.0766244359212055,0.13607249452911,0.563114802784873,0.573356712249733,1 +"11311",2089.64504362299,0.218154578674475,0.131233040280369,1.66234492631128,0.0964436346636381,1 +"27183",4822.32432562719,-0.0791722647829762,0.118779209354917,-0.66654985508791,0.505059708451363,1 +"9525",3293.17798382427,-0.0220389698094305,0.126682276921589,-0.173970427000389,0.861888703626368,1 +"6293",2776.2609190449,-0.289062725681065,0.136288144361452,-2.12096750627433,0.0339245369818581,1 +"55275",1885.71868897213,-0.0225621920146075,0.119502290217873,-0.188801335718945,0.850248524918686,1 +"51542",1498.09491916622,0.337854389237293,0.112740776264954,2.99673641099733,0.00272886554932912,1 +"6944",2491.81541312984,0.256368824115913,0.132592063509964,1.93351560666109,0.0531727123985188,1 +"23355",1712.24382955858,0.130000497823329,0.158768393209887,0.818805904595081,0.412897161597241,1 +"7443",920.253167704084,0.896639809988906,0.146291103664055,6.12914789437888,8.83509708191835e-10,1.08353630612647e-05 +"7444",732.520731639508,0.340701372362111,0.163299395247411,2.08636028226512,0.0369459998953083,1 +"51231",1329.169618903,0.100389981720183,0.114728852598009,0.875019486788847,0.3815633028388,1 +"54621",1559.52454005728,0.598388492456999,0.200783767948487,2.98026328806879,0.00288000728802098,1 +"147645",1456.56876210176,0.375687582207621,0.385794019755395,0.973803540152898,0.33015409501094,1 +"23584",4601.03423895352,0.762777626489875,0.63475669440384,1.2016850443874,0.229485577703127,1 +"11326",760.827453949116,-1.20458784513609,0.304454138236253,-3.95654942355011,7.60401618106681e-05,0.932556544446034 +"7447",308.108087678376,-0.115550877603876,0.467632824519528,-0.247097448137007,0.804832808604342,1 +"196740",1548.88889271735,-2.39998417855996,0.263297767741272,-9.11509504675441,7.86015451636886e-20,9.63969349887478e-16 +"51534",2335.66379568103,0.549155763558913,0.109379165073151,5.02066150524781,5.14938336645249e-07,0.00631520376061733 +"79679",916.189960563573,1.20728844138546,0.648635720713566,1.86127344337022,0.0627055714447504,1 +"143187",716.925883317209,-0.00108949573966387,0.121386752617453,-0.00897540889900387,0.992838755961929,1 +"10490",1351.87982522789,-0.0620106788168804,0.0997118794742321,-0.621898605701294,0.534008542008876,1 +"64856",6864.70835128421,-0.6467194753677,0.284876758728987,-2.2701728222868,0.0231970992950779,1 +"4013",1722.29595661199,-1.37711883923959,0.309096258854061,-4.4553073671778,8.37730863184195e-06,0.10273931306091 +"7450",9589.13987784079,-1.01486182279791,0.211047520504347,-4.8086886800312,1.51923591849042e-06,0.0186319093043665 +"51322",6635.35947397491,-0.35448484303664,0.116060914612173,-3.05429992707865,0.0022558642698108,1 +"10352",786.343316173898,0.1738263614542,0.107214098885444,1.62130133313837,0.104953029270475,1 +"7454",511.3767425417,-0.928884674483561,0.255420495086841,-3.63668809806256,0.000276165996084029,1 +"8936",660.8487604092,0.398454267001702,0.288371829043004,1.38173783591837,0.167052212472191,1 +"10163",7740.73789369814,-0.7842083355748,0.205384282217519,-3.81824902620474,0.000134402220485996,1 +"10810",520.690177283613,-1.14391609043857,0.289260217587427,-3.95462639134892,7.66543410628075e-05,0.940088838794271 +"375260",592.843879982536,0.0870794462404287,0.133168134269201,0.653906031786826,0.513172347650842,1 +"374666",717.322099785974,0.350444883517282,0.136345202539689,2.5702765993198,0.0101617343960495,1 +"653635",904.518957610268,0.351153856833927,0.167086183861007,2.10163311363936,0.0355854268314278,1 +"8976",4385.8478819605,-0.207908649017724,0.141542161467566,-1.4688814051025,0.141864959042529,1 +"23559",132.244617176383,0.439913812137126,0.217441700825606,2.02313452510173,0.0430592798665907,1 +"51729",3544.05904468895,0.105971765607251,0.123171611881807,0.860358681584353,0.389591354620303,1 +"441818",344.007754030823,0.02398542489298,0.143950492991226,0.16662273532083,0.867666903577204,1 +"23558",6464.76778858888,-0.306079037334015,0.142809858773954,-2.14326265680643,0.0320920135995281,1 +"11193",890.340691495979,-0.640281253863352,0.181471017599925,-3.52828381265227,0.000418263442669728,1 +"57590",2440.1300010262,0.281921397253053,0.115814451576119,2.43425059149687,0.0149226599478889,1 +"115825",585.12973316261,-0.0158360153012567,0.221493422362838,-0.0714965488921607,0.943002571116088,1 +"23001",2633.69005554957,-0.17377611949161,0.143866574895893,-1.20789780126038,0.227086575443896,1 +"57705",391.057898608946,-1.21142382848218,0.332332655315768,-3.64521454363593,0.000267168823503639,1 +"11169",765.159593066883,1.97704236564117,0.243755813118561,8.11074960776238,5.03084292781315e-16,6.16982576667005e-12 +"51057",187.115779319263,0.147916301863967,0.208190351687761,0.710485863849296,0.477402893986564,1 +"9948",19212.5525146218,-0.727039769554481,0.141668662719315,-5.13197312375954,2.8672044799674e-07,0.00351633957423202 +"55717",2100.51488645708,-0.122460209175821,0.0616175004653433,-1.98742578408709,0.0468752327222547,1 +"55759",693.983039452401,0.722142381788595,0.116953925324169,6.17458866632294,6.63359456273474e-10,8.13544037173788e-06 +"64743",3788.75169075817,-0.246226842623954,0.178079572190101,-1.38267876318293,0.166763386414626,1 +"57418",1808.47595354898,0.755914372185061,0.134560530306643,5.61765304032652,1.93568701860656e-08,0.000237392655961908 +"57728",678.331361520507,-0.196464617169937,0.195445990485828,-1.00521180650254,0.314794871275374,1 +"91833",895.717940397162,-0.120249696727333,0.130029539150309,-0.924787532995325,0.35507643679813,1 +"84219",748.61063865927,0.130649720271066,0.14214946968731,0.919101003742469,0.358042744309415,1 +"79446",449.578808089182,-0.221919791078448,0.170936634111603,-1.29825763933996,0.19419881748339,1 +"80232",6412.95419781879,-0.141825065764991,0.114767925355966,-1.23575524542335,0.216549555328748,1 +"253769",416.43675114245,0.281645994954991,0.242252138028,1.1626151052687,0.244985699389288,1 +"10885",2083.92265433135,0.767142504996707,0.177109295585271,4.33146381426015,1.48121293121387e-05,0.181655953884069 +"114987",99.0260092644406,-0.166755970005713,0.308151955577069,-0.541148504780483,0.588405227920419,1 +"55339",3190.3104882507,0.0337630282524929,0.0685916659536077,0.49223222359592,0.622555187048937,1 +"89891",2993.0324834098,1.04300319755768,0.209025403995581,4.98983940526069,6.04295102699028e-07,0.00741107513950088 +"57539",804.577624454445,-0.168478064180779,0.207309394608902,-0.812688998000404,0.416396390686335,1 +"134430",1581.26738025029,0.250208524507589,0.145105152222234,1.72432557132351,0.0846490855010933,1 +"22884",792.222132777998,-0.336085150985342,0.13310500236108,-2.52496258610648,0.0115710607407206,1 +"10785",699.408719521427,0.884249573378461,0.197059606244223,4.48721881785645,7.21589525804988e-06,0.0884957394447237 +"55255",1347.09139307361,0.0679696303967097,0.165985770725605,0.409490705736891,0.682179586129979,1 +"23160",2640.03918406902,0.422945872645991,0.161929262563577,2.61191748761242,0.00900359816173031,1 +"54521",1046.67589736555,-0.528508526333803,0.174009426440155,-3.03724078141,0.00238754657204464,1 +"11152",1769.20046199483,0.130833183036679,0.156985071910777,0.833411619615901,0.404612623701629,1 +"9277",2707.50711401997,0.342363260286598,0.0978455551939709,3.49901699272789,0.000466976819519334,1 +"22911",1051.58577122427,-0.188539822166979,0.163661701209203,-1.1520094241595,0.249317200722213,1 +"57599",2250.14154961766,-0.192107645820475,0.169534571799856,-1.13314732081471,0.257152392104975,1 +"11091",2019.32594749825,0.395710778553334,0.155309659385982,2.54788259865987,0.0108378937408534,1 +"348793",437.604170687878,0.591921178764183,0.150483743951388,3.93345595491961,8.37331880076499e-05,1 +"84058",977.353112888819,1.29579907430257,0.239878539764504,5.40189662474472,6.59399493060522e-08,0.000808687538289424 +"54853",1066.92859056226,0.25894034810835,0.134422264399381,1.92632038498484,0.0540643816040042,1 +"79726",2018.63600798916,0.118311969530368,0.139005267839778,0.851132992072919,0.394695480252928,1 +"54554",453.529858797108,0.481303725705652,0.180810699062973,2.66192060646823,0.00776962021510332,1 +"11180",6253.15168159662,-0.296645734580478,0.148883760931536,-1.99246534829873,0.0463200235150011,1 +"55112",859.692014718914,-0.367285084035561,0.172954374911348,-2.1235952211317,0.0337040055056179,1 +"80349",1844.47964781161,-0.0101762959302392,0.110495638087779,-0.0920968112981532,0.926621121902337,1 +"284403",542.555924690231,2.38381690587825,0.341952725731399,6.97118849039593,3.14274558657826e-12,3.85426318737958e-08 +"23335",1066.52027482822,-0.594072122458104,0.156479333439756,-3.79648934718156,0.000146759666180534,1 +"55100",1141.28854512614,0.11608267150036,0.114844317247193,1.0107828953391,0.3121203514611,1 +"256764",1823.53796177915,3.58734160663186,0.553124102922173,6.4855998639,8.83794368341786e-11,1.08388541333437e-06 +"84942",830.689741669484,0.0745831902247847,0.10414183731991,0.71616933351843,0.473886796316262,1 +"54663",1758.78961178804,0.492134894208094,0.152687464384882,3.22315192141484,0.00126788289195601,1 +"84128",2066.78525346148,0.39651441879803,0.123288620516802,3.21614774450326,0.00129923925520422,1 +"79968",540.141137102098,1.23571153112975,0.274547658369216,4.5008999110382,6.76663653389361e-06,0.0829860304516712 +"79084",2679.19005574222,0.225414455586181,0.165297863631245,1.36368644236714,0.172666272847162,1 +"124997",1920.16559735645,-0.0289460563625584,0.159064704119832,-0.181976614628169,0.855601078284619,1 +"80335",7040.3053446094,-0.223648452531878,0.131617916253138,-1.69922499078119,0.0892767993809128,1 +"84292",607.536799602605,0.424881458017734,0.126076511148205,3.37002867662066,0.000751603615046702,1 +"51398",4659.84436451412,0.174112337576892,0.0960087114723525,1.81350561742546,0.0697538729954927,1 +"112840",632.54767008049,0.459336027280849,0.115771289691852,3.96761605147063,7.25951642212867e-05,0.890307094009861 +"197335",1128.18991629558,0.877764054792875,0.155895484867746,5.63046489471793,1.79724520750132e-08,0.000220414152247962 +"29062",1180.96967955977,0.536222346725843,0.200244282147004,2.67784098989748,0.00740983861878549,1 +"116143",483.741342669494,0.313963165535271,0.132738234545391,2.36528055846568,0.0180164167396589,1 +"151525",445.115338399665,0.20188959650746,0.148616194721761,1.35846296485681,0.174316826554722,1 +"23038",3962.92842095568,-0.376311707313665,0.162541622613467,-2.31517134665595,0.0206035566946716,1 +"55093",505.003552639872,0.372436624038429,0.114118742883095,3.26358856248493,0.00110010795583392,1 +"7465",5547.88864824614,-1.24671215174259,0.261349983226639,-4.77027829254327,1.8397157379943e-06,0.022562273810762 +"58189",1905.39853415163,-3.21733873545098,0.338604420583918,-9.50176235119059,2.0636770160963e-21,2.53089349254051e-17 +"10406",5883.03734969874,-1.01873478610027,0.551042197865939,-1.84874187502444,0.0644950939730358,1 +"7466",4641.5761241579,-1.19029863997551,0.279735166179678,-4.25509118582168,2.08963837337122e-05,0.256273250110247 +"123720",808.111739356971,-0.160777031571488,0.143457189535851,-1.12073178131869,0.262402049827252,1 +"339005",110.750689885835,-0.444371489536273,0.281096917227781,-1.58084796488959,0.113912804427848,1 +"7456",2590.1731553267,-1.03378869523985,0.181226753509257,-5.70439339237539,1.16758141175193e-08,0.000143192184337257 +"147179",2717.34259285013,0.0812582978332007,0.144171969133011,0.563620642222297,0.573012335470557,1 +"644150",361.71146046454,-1.57901454753316,0.478269267976059,-3.30151789642524,0.000961631999548299,1 +"55062",1488.44678029671,0.361983907928526,0.195019561770113,1.85614153084411,0.0634333874386452,1 +"26100",3766.95413499775,0.396857139266372,0.118752826429239,3.3418753153033,0.000832144316579348,1 +"58525",2616.74821727273,-0.0403818087559275,0.151177966760739,-0.267114379305269,0.789381096630889,1 +"79971",6210.98986598516,-1.30385855096984,0.244209885872349,-5.33908996481567,9.34142843332847e-08,0.0011456327830634 +"65125",9349.96286069476,-0.301788162031901,0.160993795309655,-1.87453287532878,0.0608570152122509,1 +"65268",1256.96327875093,-0.0507158246696173,0.416041217241052,-0.12190096213528,0.902977453638024,1 +"80326",485.32966577166,-0.555377377178128,0.618251924817977,-0.898302706201262,0.369024190185977,1 +"7481",365.71360571684,-0.423933905435536,0.477477368331238,-0.887861778490499,0.374615106656144,1 +"7472",286.726941892061,2.36844542304429,0.381868233768497,6.20225830169506,5.56586258582833e-10,6.82597387525987e-06 +"7482",189.313449816608,-2.25893349225165,0.333452072202362,-6.77438732748606,1.24934554323076e-11,1.53219737421821e-07 +"54361",429.21782110069,-0.690931317261794,0.522626778554632,-1.32203581143052,0.186156226237834,1 +"7474",5217.08647558114,0.639571114683292,0.555290424513446,1.15177767605788,0.249412443604599,1 +"81029",1166.20798386852,-1.43735577062263,0.370250523090136,-3.88211678575458,0.000103551122153487,1 +"7477",4103.62560725668,1.00584594465416,0.664112761534426,1.51457102304459,0.129881075041979,1 +"7483",157.890493881313,-2.08923325072543,0.375531336752105,-5.56340588989134,2.64559566305484e-08,0.000324455852117045 +"55135",586.632401604093,0.536427051206555,0.237070572988475,2.26273149148981,0.0236522463136553,1 +"49856",1090.18966839524,0.882773254943692,0.148184381295841,5.95726248086356,2.56498103658187e-09,3.14569274326401e-05 +"7486",719.339209491222,-0.0076659326173798,0.186288190769549,-0.0411509317134497,0.967175571327972,1 +"56897",2601.12897407321,0.382035878575186,0.139126414260246,2.74596222871496,0.00603337094212857,1 +"26118",4165.65728596336,0.181979909300503,0.223538019175652,0.81408929886556,0.415593795819204,1 +"55884",4613.56092480994,0.181255880915665,0.128583726592675,1.40963312946936,0.158648039360311,1 +"23302",136.787108640924,-1.21364670083284,0.395367024859484,-3.06967102596425,0.00214294672038737,1 +"9671",624.356228659578,-1.3971946391246,0.55845277325064,-2.50190294694359,0.0123527782726439,1 +"9589",3604.77059877069,-0.306715658608576,0.150518714155053,-2.03772441407266,0.0415775011823987,1 +"126374",442.679885411442,-0.660113334374217,0.215852232773507,-3.05817237047936,0.00222691441708862,1 +"23286",1549.34908003134,1.46571139809123,0.558515034160856,2.62430070533982,0.00868270897257566,1 +"80014",747.688168703037,-0.724602969805482,0.236520877007227,-3.06358989943767,0.00218698484121307,1 +"55841",2592.70435415007,-0.210682053027774,0.200874594082515,-1.04882378973834,0.294259226167126,1 +"51741",633.822744918833,-0.290861910549003,0.194288315207307,-1.49706332178882,0.134376782360816,1 +"11059",2981.69148591762,-0.539518559780548,0.163939519091396,-3.29096097616199,0.000998457631379504,1 +"11060",3050.05523218087,0.0467351951789032,0.168337101069675,0.277628608797055,0.781297468507677,1 +"25937",6552.33853580748,-1.75189028393338,0.266492534978913,-6.57388126865168,4.90203260886619e-11,6.0118527915135e-07 +"56949",3144.75327431114,-0.00119964750470935,0.0969234301006526,-0.0123772704232975,0.990124619171174,1 +"54739",1923.10726355741,0.723585505120321,0.298200272737633,2.4265085289072,0.0152448919900983,1 +"7494",7055.61169478037,-0.302737099504836,0.226941223737351,-1.33398901494956,0.182207456672659,1 +"7498",514.495601453452,0.984753286721994,0.630589249929365,1.56163982629311,0.118372861718751,1 +"7499",202.998452143183,-0.869740447986443,0.425342922974446,-2.04479821106297,0.0408747562152786,1 +"331",3262.6583444626,0.168798918612556,0.170229850917671,0.991594116440791,0.321395560511324,1 +"7504",335.16898437836,-0.705807933233271,0.365638420569038,-1.93034400524658,0.0535642279832498,1 +"55113",422.979824870165,0.480287237609587,0.194060200309092,2.47493940975328,0.0133258781269951,1 +"7507",676.999768060434,-0.838304030630826,0.155570638585603,-5.38857485096425,7.1018584358336e-08,0.000870971918570633 +"7508",2515.79638435766,-0.324800400217658,0.17259613053182,-1.88185215518361,0.0598560921166406,1 +"7511",2231.28203086181,0.134856065441462,0.119533355867853,1.12818773021439,0.259240644628597,1 +"7512",419.877461046679,-5.8421873266509,0.460696219168679,-12.6812139617578,7.5158721295982e-37,9.21746557973923e-33 +"63929",788.043223631576,0.459480425406972,0.130686937359274,3.51588639761146,0.000438288476959971,1 +"7514",8537.14488445954,0.641268110870878,0.119056878606136,5.38623318852766,7.19496045556025e-08,0.000882389950269909 +"64328",1469.47910630889,0.162376232281479,0.162420667175736,0.999726420935032,0.317442922222462,1 +"57510",2334.41395978568,0.640065031389236,0.114270827486721,5.60129864696759,2.12751822271788e-08,0.000260918834834121 +"23214",4593.51446089403,0.326513426239312,0.1321852847678,2.47011932389354,0.0135067990203759,1 +"23039",3565.2635530312,0.253076268384962,0.143573783518427,1.76269136455877,0.077952557999027,1 +"11260",2536.29339169126,1.07099291289122,0.191143799927111,5.6030742995568,2.10582901593254e-08,0.000258258870513966 +"9213",3151.60330563486,1.02650606734249,0.200635479209931,5.11627390820756,3.11630424889827e-07,0.00382183553084884 +"7515",2062.43865377216,0.351823066637596,0.145752977819212,2.41383107159559,0.0157857792813353,1 +"7516",132.040274720437,2.65484851891821,0.257635545727196,10.304667049823,6.71237071507928e-25,8.23205144497323e-21 +"7517",847.615358004017,1.11213915180263,0.164195877567457,6.77324649241408,1.25924133757451e-11,1.54433357640138e-07 +"7518",323.050857948718,0.422265341178794,0.123458567220773,3.42030003007959,0.000625521052086615,1 +"7520",15250.3964079602,0.125049644451945,0.0875452453187893,1.4284001832034,0.153176706479876,1 +"2547",9333.01182154942,-0.0303780152508941,0.110054733111357,-0.276026431504374,0.782527765162085,1 +"54464",2188.02451960245,0.206651621604173,0.167994587016187,1.23010881049555,0.218656361220754,1 +"22803",4721.43511648941,0.245043084695518,0.111307361919276,2.20149934802363,0.0277006927992798,1 +"143570",355.639684038436,0.309025953541771,0.1565250960554,1.97429013832003,0.0483487616012265,1 +"152002",1108.38553838028,0.803967728250274,0.245736520803216,3.27166562634817,0.00106915943390655,1 +"9942",302.252067078376,0.982130995750693,0.216709594937347,4.53201435789974,5.84238777922124e-06,0.0716510437243693 +"64131",1141.1600497832,-0.635290371221897,0.243338956715053,-2.61072201425526,0.00903513041936583,1 +"64132",2119.03709815313,0.386731090555138,0.218238150413114,1.7720599712886,0.0763846026765011,1 +"10138",716.354321223846,-0.0749644736062827,0.0985473314199117,-0.760695114988532,0.446839193263565,1 +"10413",7914.03224770465,-0.886140957770118,0.152086270270174,-5.82656775128965,5.65789037717429e-09,6.93883675856655e-05 +"51067",890.41863372927,0.742976187191349,0.153336213135398,4.84540586987947,1.26353107575484e-06,0.0154959451130574 +"54059",363.006571689919,-0.229271142785192,0.196974442586684,-1.16396391214202,0.244438636855795,1 +"4904",13319.2684441862,-0.136664713093933,0.110872755572415,-1.23262664834439,0.217715089969153,1 +"150223",1058.1434657442,1.44751059242983,0.229749154794292,6.30039572387491,2.96886687544378e-10,3.64101833604425e-06 +"55689",2684.38844740623,0.933794571717911,0.203050832792138,4.59882167867705,4.24887264896558e-06,0.0521081741669139 +"8089",771.635844937582,0.918340611402948,0.150850267220771,6.08776257624356,1.14499496181851e-09,1.40422182117422e-05 +"7525",3201.56546379674,0.56533190706024,0.165382307455656,3.41833365223679,0.000630058183706665,1 +"10897",2788.59664931748,0.71546982575312,0.14271458370614,5.01329161444582,5.35067101779555e-07,0.00656206293622446 +"90522",2240.90627532275,1.16307956033116,0.221181378417057,5.25848771110408,1.4524488979239e-07,0.00178128332841387 +"54432",1559.2074680018,0.34546665905591,0.134821880946752,2.56239311178541,0.0103953580449965,1 +"78992",2475.34898850129,0.698356377375272,0.165012370278566,4.23214560336501,2.3147247189431e-05,0.283877839531182 +"25844",5095.96898942455,0.206901938483875,0.128071160383343,1.61552325960486,0.106197427480712,1 +"84272",1560.17632681334,0.348000531276447,0.101781567375667,3.41909188715877,0.00062830505212564,1 +"81555",1938.19335087503,0.152153795361492,0.0866191301743169,1.75658419860936,0.0789887082585659,1 +"286451",2782.04808779621,0.0137921071812413,0.112646876948834,0.12243665829729,0.902553207769864,1 +"374887",533.760776215509,0.767317604026912,0.350270330130053,2.19064401984037,0.0284775630207002,1 +"10652",4556.79977468688,0.579313440267553,0.124062524424662,4.66952807025418,3.01892448929625e-06,0.0370240899367292 +"56252",3727.00189705223,-0.237547262150952,0.134078647327692,-1.77170091498894,0.0764442177054709,1 +"10730",6552.32000527796,0.128333594957572,0.116078267297281,1.10557814090129,0.268909155407804,1 +"55432",1059.36474469663,0.343804758018423,0.269673122151749,1.27489441763855,0.202346615225204,1 +"29799",415.992244628363,-0.247600310272068,0.334880326579366,-0.739369531800154,0.45968263814902,1 +"388403",1302.12296193301,-0.102599067740972,0.235224374730639,-0.436175323490436,0.662709530263216,1 +"83719",2550.28384002922,0.00744598880311878,0.196581809919794,0.0378773031246216,0.969785509543053,1 +"51646",6222.33950120469,-0.663973312254181,0.134288813812423,-4.94436798869661,7.63912855850776e-07,0.00936862726415391 +"79693",1146.03594186462,0.230392216098868,0.189988244424254,1.21266564042978,0.225257681533398,1 +"91746",3953.03232467898,-0.362662794418642,0.104558120334975,-3.46852825258117,0.000523317498187869,1 +"64848",1496.33296687157,-0.199101564366112,0.13969078870229,-1.42530202754055,0.154069914312551,1 +"54915",3112.12111325517,0.393591967697692,0.126746213202788,3.10535484849526,0.00190050873883841,1 +"51441",3505.35792289909,0.214124352195585,0.117547224878541,1.82160278489633,0.0685152780748737,1 +"253943",3395.89709049981,-0.298022823644396,0.105689966950255,-2.81978348791298,0.00480560620244415,1 +"7529",18424.4284556353,0.169233557940368,0.121781903039723,1.38964455076028,0.164636840306895,1 +"7531",17444.9999624884,0.509915906586307,0.156173020334882,3.26507040392057,0.00109436871553202,1 +"7532",11624.0139263168,0.326125059168966,0.157648434634802,2.06868567978138,0.0385755918721238,1 +"7533",6546.54714760576,-0.133699775513986,0.188747533680535,-0.70835243728419,0.47872642104978,1 +"10971",11281.3204311974,0.230000921045193,0.124273584449342,1.8507627511054,0.0642036920044376,1 +"7534",42093.3051811311,0.182769499194744,0.198721473993229,0.919726970226536,0.357715455027192,1 +"7528",2850.59850472322,0.433808440827189,0.0809638078079519,5.35805383383392,8.41231773776195e-08,0.00103168664735913 +"55249",3432.59642375548,-0.127187644349881,0.0888291288415863,-1.43182361471428,0.152194307195674,1 +"404281",110.077107006921,0.892320799465028,0.226340876571911,3.9423758226081,8.06784239463759e-05,0.989440191278353 +"284273",1468.66588607715,0.0113523964224101,0.139907177284824,0.0811423448226593,0.93532875039426,1 +"7535",389.595818629129,-0.827826079654523,0.433699458646843,-1.90875516016867,0.056293683734905,1 +"9189",773.14265371747,0.0502016409067529,0.135008556705927,0.371840438351631,0.710011653540405,1 +"9889",1231.73577627443,0.737296419996306,0.168812723005552,4.3675405909545,1.25653449233271e-05,0.154101390139683 +"58486",1824.3361651301,-0.176615049862218,0.123370358320886,-1.43158415251452,0.152262867671824,1 +"100381270",424.701206060598,0.769474781146737,0.286620119046349,2.68465027405249,0.00726057353492508,1 +"22890",1701.45840382515,0.11381482570319,0.128763425022439,0.883906479525193,0.376746699154444,1 +"65986",809.708744537741,-0.27553658341455,0.269688927119253,-1.02168296769823,0.306930974979818,1 +"27107",1279.15238714234,0.119433378344272,0.138291929294322,0.863632309952713,0.38778990915704,1 +"221527",446.438195641373,0.606141333828767,0.264884423498653,2.28832381241115,0.022118670785976,1 +"7704",436.768897885661,-4.65840856199231,0.427049986000121,-10.9083449589224,1.05153281603061e-27,1.28959984557994e-23 +"7709",1422.12427299035,0.291082804804756,0.104745566770442,2.77895106952533,0.00545347391155924,1 +"57621",994.767640382129,-0.100212816356191,0.12351328167244,-0.811352552529189,0.417163238594552,1 +"9278",1295.73777121946,-0.439273143276704,0.12169418152717,-3.60964787111561,0.000306612947561619,1 +"9841",656.00290433446,0.411085767849873,0.153693561646847,2.67471040065072,0.00747938277477794,1 +"7597",165.33273697136,0.233104700804667,0.151883229729212,1.53476260163984,0.124842152286062,1 +"57684",183.486226033741,-0.0165201535067432,0.218967650079077,-0.0754456354661394,0.939860150796429,1 +"79842",179.209879188003,0.435905598291549,0.207218881790177,2.10359980000728,0.0354133714215831,1 +"10009",1374.98086656538,0.981457205829627,0.165844067961616,5.91795183205938,3.25975395449303e-09,3.99776224979025e-05 +"403341",560.511964258211,0.431078909340183,0.168582820969887,2.55707495496938,0.0105556469893411,1 +"253461",4037.97198347954,-0.477671684668759,0.141192239339126,-3.38312988663245,0.000716647302022155,1 +"9880",472.18914137251,0.567329446339664,0.179955276141088,3.15261357435759,0.00161815859710215,1 +"57659",6615.57160892177,-1.2696072153936,0.196047072302434,-6.47603251853221,9.41657618452405e-11,1.15484890327003e-06 +"9923",1486.98529533396,-0.265442440934473,0.184350745635585,-1.4398772297845,0.149902136279888,1 +"360023",1277.56451094406,0.724950479908012,0.154028059852724,4.70661307167786,2.51866310467979e-06,0.030888884315793 +"100128927",638.750339706111,-0.192315784862058,0.150191588778689,-1.28046974152088,0.200379979892842,1 +"23099",879.050992932554,-0.198248290932038,0.187533076457973,-1.05713773098831,0.290448733483106,1 +"29068",2337.3154855323,-0.0447905907194528,0.199471021656564,-0.224546855716067,0.822331812000529,1 +"84878",741.445201497522,0.0929615257319022,0.154398052200977,0.602090016076732,0.547114219942363,1 +"140685",269.603875240016,-0.631066576393976,0.244827120237533,-2.57760078124397,0.0099488865070054,1 +"92999",2171.84022368559,-1.60061399681406,0.218796170449349,-7.31554850126866,2.56332172725926e-13,3.14365776631075e-09 +"3104",1096.77329575797,0.0819517037829535,0.150776229458257,0.543531988280966,0.586763572587681,1 +"166793",256.871200039386,-0.334558838818363,0.110406302365875,-3.03025127777279,0.00244350352413066,1 +"9925",1055.41090276502,0.0368325919248974,0.174100321697935,0.211559585678435,0.832450641549445,1 +"10773",567.500578362426,0.383120407788986,0.186474036725705,2.0545509418694,0.0399223982226756,1 +"51341",2918.052671029,-0.702468255041325,0.167088043026027,-4.20418027717222,2.62030035765165e-05,0.321353635862399 +"51043",3752.11528525461,-0.0633256483846989,0.251092234239156,-0.252200744386158,0.800885902731909,1 +"201501",2522.08152728454,0.12964117111806,0.361639048865453,0.358482225646745,0.719982467126851,1 +"653121",717.679660163599,-0.244239339192426,0.160194432743252,-1.52464311655497,0.12734813692786,1 +"339487",519.44737709267,0.376134166773212,0.127548440438868,2.94895151582421,0.003188539942756,1 +"221504",522.613027538365,0.596211412548369,0.174713987201252,3.41249960635148,0.000643700199294837,1 +"51101",780.222294944064,-0.515118780311742,0.19104653974641,-2.69629997484119,0.00701144935095472,1 +"79696",95.6446856705809,0.496962217562088,0.228995521599881,2.17018312886668,0.0299929756449047,1 +"84872",356.367695541591,-0.30478581023959,0.223782033043416,-1.36197623238349,0.17320538604542,1 +"9877",3712.57922213097,0.14007863591821,0.101844185980567,1.37542103723956,0.169000950610703,1 +"80149",2343.03628911011,-1.15083814299458,0.35411238528751,-3.24992344467194,0.00115436079231173,1 +"340554",136.900717747984,-1.78086320768345,0.358777195027378,-4.96370235445861,6.91619101228378e-07,0.00848201665746483 +"85463",890.169602378358,-1.43785012257076,0.233415578867715,-6.16004351357218,7.27249583720135e-10,8.91898889474374e-06 +"23091",2670.9509455843,-0.318211373372166,0.181207290014805,-1.75606275744297,0.0790776933677499,1 +"79882",2381.02563472864,0.195120804599559,0.116603879671407,1.67336460115577,0.0942555420683641,1 +"55854",3186.76437782881,0.129440621256177,0.0965100234890244,1.3412142757472,0.179850892703044,1 +"124245",2457.76479299989,0.279914909254316,0.11778993384343,2.37639075021799,0.0174829377408791,1 +"23144",1380.59457066228,0.364215611091352,0.111356755778191,3.27070960846618,0.00107278007613227,1 +"23211",2233.84224397196,-0.06142864712703,0.118855545129365,-0.516834507470137,0.605271689140718,1 +"376940",643.244908165382,-0.512930378853567,0.258925153090276,-1.98099865050473,0.0475914249250955,1 +"29066",2001.13576765017,-0.495466220603311,0.167468925076904,-2.95855616423038,0.00309083912452279,1 +"23264",4855.00225774434,-0.34903375609223,0.153466156335645,-2.27433699016257,0.0229457327480092,1 +"84524",387.356032275771,0.808135956043851,0.164815067868449,4.90328928353131,9.42450324538841e-07,0.0115582107801443 +"56829",2460.86889649334,-0.0989347531903171,0.120175965181772,-0.823249083464178,0.41036636177497,1 +"92092",180.86253807641,1.51711687198223,0.260384602851383,5.82644616989177,5.66201185388726e-09,6.94389133760734e-05 +"51530",721.687108081885,0.361933781308078,0.145903231511498,2.48064266677709,0.0131145770341788,1 +"55906",451.561096346344,-0.858270326262554,0.353661977713836,-2.42680972325789,0.0152322423704363,1 +"54819",669.68614339287,-0.196960870205451,0.137456283337288,-1.43289826716871,0.151886912567635,1 +"23174",2023.6108598254,-0.294419725105107,0.143285077141007,-2.05478289141979,0.0398999794095465,1 +"51538",1417.41169275804,-0.0271839652663129,0.113961285689704,-0.238536842593458,0.811464743622603,1 +"54877",914.464418577757,-0.523058785394175,0.150877325392472,-3.46678193050918,0.000526729029697171,1 +"219654",3843.77653192374,-2.49030768463023,0.25592809527429,-9.73049747414895,2.23497235557152e-22,2.74097009687291e-18 +"85364",1227.61592981527,-0.0521770240219364,0.100671298388445,-0.518290961348376,0.604255278317104,1 +"29063",338.225642933985,0.0103596309050202,0.10402820226628,0.0995848306452781,0.920673937344646,1 +"84186",931.995807824126,0.233713450238055,0.120609609687084,1.93776806710853,0.0526515253061139,1 +"55596",1082.20997967768,0.126570882069423,0.133841039788502,0.945680654225584,0.344311492680895,1 +"84240",776.25648125543,-0.112553052742108,0.0924689384459767,-1.21719849533976,0.223528702545169,1 +"85437",2208.78352705744,0.0323132038642023,0.158826669430252,0.203449483516322,0.838783726199535,1 +"55063",321.654253329903,-0.841470558686593,0.280172874279308,-3.00339767313705,0.00266983314220368,1 +"57683",397.533339109186,-2.03071115108336,0.362782916221598,-5.59759310673533,2.17348131594631e-08,0.000266555748587656 +"29800",429.938143541829,-0.931078026169962,0.222532810531798,-4.1840033563811,2.86419878159912e-05,0.351265338575316 +"79844",113.4739412303,-0.752221699083839,0.411276085398525,-1.82899450220875,0.0674004318530102,1 +"84885",1991.42809836755,1.01690770522191,0.245802779448132,4.13708790236235,3.51741388050365e-05,0.431375638304968 +"54503",1879.48028947326,0.360770456524341,0.354704829031151,1.01710049313328,0.309105625740482,1 +"79683",475.911136842526,-0.652334392948125,0.165948195819958,-3.93095200417763,8.46101631923939e-05,1 +"84287",1417.3816464236,0.52003902298572,0.152850083711069,3.40228157132544,0.000668257497037965,1 +"23390",1302.89866452477,-0.292236640387863,0.165633451290408,-1.76435761080339,0.0776717901410176,1 +"84243",2363.18284873777,0.48900224490116,0.151509383100596,3.22753769366537,0.00124860589301021,1 +"51201",1564.51090493269,-0.967502092784643,0.350446845174942,-2.76076702103473,0.00576657967501533,1 +"253832",5903.77849183681,0.488675736650973,0.215024912228435,2.2726470695257,0.0230474567196785,1 +"340481",1104.82335453589,-0.028068840333033,0.200808619247062,-0.139779061467969,0.888834557389946,1 +"254887",330.462041619412,1.61044473713039,0.282870581934222,5.69322099922315,1.24664853890121e-08,0.000152888976810845 +"254359",567.702187643396,0.965257525207145,0.164320833414749,5.87422486332465,4.24826403734745e-09,5.21007101540292e-05 +"51304",4579.71392676174,0.0107258263253181,0.167491314821095,0.0640381045236576,0.948939886036921,1 +"55146",1940.75040268015,0.0979543600257022,0.141501810736313,0.692248102805124,0.48878153508858,1 +"25921",6740.4004668161,0.169146800096219,0.176660348756834,0.957468958294896,0.338330607063555,1 +"64429",1548.35401953985,0.132632805369193,0.161807351771918,0.819695792043808,0.412389549456799,1 +"55625",3260.83630504074,-0.103683887702546,0.152136842924344,-0.681517282135974,0.495544235191686,1 +"29801",1774.49847990276,0.294191741865706,0.132499986598728,2.22031525751513,0.0263973749404783,1 +"51114",2595.86559970264,0.769251592934509,0.147758134207388,5.20615394246123,1.92794723658857e-07,0.00236443449095222 +"6935",3593.80929153262,-2.0939108092282,0.31101945958158,-6.73241093031662,1.66874543522909e-11,2.04654940176495e-07 +"220930",167.76128245926,-0.24696139167628,0.270788914765633,-0.912007021742469,0.361765021213484,1 +"9839",2397.60076918776,-2.00133816175699,0.251715617300587,-7.95079059145972,1.85324983204461e-15,2.27282559401951e-11 +"10444",3602.72515579758,-0.718765097943491,0.170605950391654,-4.2130130648635,2.51986481641029e-05,0.309036221084557 +"79752",1459.30313066476,-0.269481817085236,0.126332065532367,-2.1331228611646,0.032914648872724,1 +"90637",688.773181571737,0.331961023852349,0.191329908529841,1.73501898580887,0.0827374424186466,1 +"130617",1126.246246702,-0.320261960207242,0.140678949500784,-2.27654500793281,0.0228134099890914,1 +"60685",3909.73829170917,-0.40049094246062,0.121619801884572,-3.29297479731731,0.000991333603388465,1 +"93550",249.70282314046,-0.0867719812400625,0.172238208936334,-0.50379054552371,0.614408572219212,1 +"7763",9880.99585747466,-0.543074875501952,0.144397051761076,-3.76098312866207,0.000169246846390571,1 +"54469",2831.27176065197,-0.0622374972725258,0.0825075828447666,-0.754324573895495,0.45065435002391,1 +"57623",517.429690134888,0.198000257222508,0.155704004841277,1.27164524396368,0.203499193717553,1 +"196441",2056.52809042479,0.215539634125366,0.167676704920966,1.28544769666699,0.198635882845478,1 +"85446",187.31249293177,0.495505342445369,0.292784504850538,1.69238922906223,0.090571784663441,1 +"463",3931.65966039854,0.103104477897478,0.229722011090678,0.448822807217981,0.653559484720722,1 +"79776",924.048196777955,-1.46718123207553,0.494635238792719,-2.96618824743776,0.00301515873350133,1 +"162239",476.193198895314,0.175394777832236,0.192105965990187,0.913010571682064,0.361236981539656,1 +"57677",519.67461680358,0.626710973112767,0.247646685511365,2.53066570149596,0.0113846296576386,1 +"140612",237.911420550874,-1.73198989302354,0.332367959869482,-5.21106154066016,1.87763150044505e-07,0.00230272727214581 +"124961",294.476125186411,-0.862864927721769,0.284077941698722,-3.03742318943186,0.00238610207395257,1 +"22835",404.707307697319,0.208195199118074,0.343743935641243,0.605669446152387,0.544734276950599,1 +"7538",53567.0702707395,-2.81126098891871,0.275502915979771,-10.2041061123474,1.90063170087138e-24,2.33093471794866e-20 +"677",31517.5470831009,-0.914900195338329,0.245060281328402,-3.73336793044926,0.00018893628379586,1 +"678",13962.057343129,-0.790294748592818,0.254435287476496,-3.10607367567214,0.00189589471993131,1 +"7539",105.572137770244,-0.91246853520547,0.365072353370544,-2.49941833935402,0.0124397365286017,1 +"286128",493.38513569242,0.288918445665526,0.179793238137074,1.60694834054468,0.10806570088196,1 +"643836",1133.60973935238,0.606166658581858,0.137309167822603,4.41461169850654,1.01191457665223e-05,0.124101203680629 +"55734",908.230967702751,0.812712475818122,0.16445532042239,4.94184361886705,7.73872779372082e-07,0.00949077576621921 +"284406",190.910143728108,0.254567771850664,0.328900167095738,0.773997088838702,0.438932512804802,1 +"146198",1257.17164980418,0.161832186087015,0.214621975253379,0.754033625382297,0.450829031103606,1 +"80829",3824.0047136402,-0.1576098094066,0.121880566444671,-1.29314963003679,0.195959312784173,1 +"7542",1572.74173230373,0.36034795067075,0.121347389215013,2.96955668351674,0.00298229785991775,1 +"161882",313.482950998017,0.364139247142348,0.176585510587711,2.06211283094757,0.0391969950519507,1 +"23414",720.31045568988,-2.0826179245184,0.413129917952497,-5.04107263603665,4.62929700346943e-07,0.00567736984505491 +"51663",4260.68041889968,-0.0692782763676749,0.140541131353816,-0.492939509596413,0.622055329415603,1 +"7543",1666.8423497139,-0.24690368853323,0.2006010727336,-1.23081938281118,0.218390424487583,1 +"7544",349.351526128507,-0.638946613966088,0.402960691068962,-1.58563013248541,0.112823236679974,1 +"53349",1229.80609606057,-0.18844009620608,0.155460060771705,-1.21214474811513,0.225456977064856,1 +"9765",1887.16268188103,-0.31115543376321,0.140012496068524,-2.22234045174745,0.0262603063456162,1 +"84936",1360.22448206513,0.530902769294286,0.142362826056111,3.72922330921582,0.000192070882245223,1 +"79038",2727.5293156561,-0.54897914774828,0.160385717343817,-3.42286805109609,0.000619641481293595,1 +"23503",1657.3440989125,0.164896554405564,0.138790895731907,1.18809345192269,0.234796593854712,1 +"118813",1132.11007862596,0.0724687748044073,0.165173404015604,0.438743605463028,0.660847327225363,1 +"57732",401.934421126109,-1.12539810895216,0.193278728533193,-5.82266924815208,5.79151007246648e-09,7.10270795287289e-05 +"9372",1557.62298988477,-0.339690184188357,0.190015022538873,-1.78770172826132,0.0738241427642903,1 +"124220",448.137683854504,-0.0927980895689048,0.603601946125032,-0.153740540706743,0.877814317905391,1 +"84619",1703.21662983544,0.152063586354927,0.125589717831827,1.21079646471179,0.225973420453543,1 +"11244",2318.18708004217,-0.554914846516279,0.213365488252049,-2.60077133871227,0.00930144290703924,1 +"22882",1806.49863373933,-0.905759357116973,0.174508462622785,-5.19034632191361,2.09903302716713e-07,0.00257425410451777 +"23051",1885.86273512073,-1.33865544222887,0.220860860516281,-6.06108044268074,1.35210183688468e-09,1.65821769275537e-05 +"284307",233.574422861766,0.0510049941724289,0.309756791282337,0.164661423438942,0.869210482072531,1 +"7586",1336.95500512326,0.427855566828857,0.189277306260465,2.26046944180452,0.0237921309156043,1 +"342357",397.050569909762,0.0720013379265516,0.21244778853436,0.338913096828526,0.734675197896748,1 +"80317",328.516839186398,0.695852383377486,0.240428472979497,2.89421787176108,0.00380104319539216,1 +"387032",225.592177501241,1.15010497010468,0.246644218029862,4.66301208798429,3.11614441623829e-06,0.0382163951207463 +"23660",700.4393554643,0.0892378121695314,0.129518159485813,0.688998458006242,0.490824237938223,1 +"84460",374.747439328853,-1.75621600630131,0.396507703626058,-4.42921030345877,9.45787626580576e-06,0.115991394523842 +"153527",3730.09093601608,-0.102330633410701,0.081165371089196,-1.26076714783014,0.207392753284272,1 +"64393",1891.49181538132,-0.266957306691855,0.205244379473344,-1.30068022996228,0.193367932139774,1 +"55954",617.613522223502,-0.236733705969795,0.200588797659628,-1.18019405236926,0.237923044027635,1 +"57178",6686.2095771644,-0.30822342936958,0.209633147613906,-1.47029910526008,0.141480763282019,1 +"83637",4788.97286738318,0.125152058387689,0.152658320810033,0.819818125363941,0.412319796670771,1 +"10269",3403.16042739467,0.250517076392384,0.119830566645508,2.09059410637256,0.0365644645210579,1 +"79830",481.333799857209,0.736209106268075,0.135559306429189,5.430900508868,5.60703894389647e-08,0.000687647256079463 +"7750",3779.96522091848,0.319159559984328,0.140166426541399,2.27700432877956,0.02278596712381,1 +"9203",2040.25244345786,0.164813446314893,0.132387041239106,1.24493639839885,0.213155130081578,1 +"9202",2789.17698107582,0.34660799725951,0.122885125760501,2.8205854460778,0.00479361054070489,1 +"9205",684.044941288098,-0.298860276206021,0.161714905931819,-1.84806882509658,0.0645923869724184,1 +"9204",787.261050591673,-0.0473707029444664,0.0870916158089708,-0.543918062656808,0.586497858671814,1 +"10771",5457.4106491064,-0.825631121788404,0.168757275494454,-4.89241793794862,9.96046509824291e-07,0.0122155143964851 +"84225",112.334305467547,0.100632165005165,0.234588383789056,0.428973350597165,0.667942618628879,1 +"116225",1074.61011353885,0.819787872132793,0.209519111542117,3.91271166672546,9.12654815403676e-05,1 +"23613",3236.39084518617,0.699787027299092,0.159974966577355,4.37435332709205,1.21792978240373e-05,0.149366908513994 +"7556",448.765034809183,-0.779322881461803,0.24872978341329,-3.13321095193042,0.0017290512524257,1 +"163227",349.36723099606,0.487452943742714,0.26332410341746,1.85115201159512,0.0641476872936844,1 +"94039",253.974401438648,0.202756254792582,0.223569034543335,0.906906697551988,0.364456139089696,1 +"51427",569.219677175658,1.35438152236299,0.241885964396695,5.59925635098773,2.15273262349344e-08,0.000264011128945235 +"51351",1118.19246096626,1.3158491614335,0.372190101536933,3.53542223718415,0.000407124052492718,1 +"7559",1495.29318374319,0.395192427149929,0.146222799182386,2.70267310815873,0.00687843566724639,1 +"7675",268.582210859147,0.320631530885197,0.257353893151942,1.24587791137823,0.212809220536373,1 +"7678",192.683588682166,1.04613262468167,0.210225327071892,4.97624448610759,6.48297553394928e-07,0.0079507211948354 +"7690",1003.13166544797,0.174076505623603,0.163877508505285,1.06223549046689,0.288128791798844,1 +"7691",183.755242379347,-0.611142003760939,0.205044475971373,-2.98053386157188,0.00287746423679332,1 +"7692",778.391504365058,0.555063730930804,0.172726988861288,3.21353214451366,0.00131113121073515,1 +"7693",649.54589448344,-0.0463199279334746,0.150338124153455,-0.308105001271629,0.758002435767654,1 +"7694",224.719974477685,-2.2400310966522,0.340793470823962,-6.57298712688454,4.93157235136523e-11,6.04808033171432e-07 +"7695",465.692493930298,-0.329700591777756,0.146166251218883,-2.25565470160435,0.0240922645468709,1 +"7696",173.3437171488,0.440540958943018,0.23660950664615,1.8618903576087,0.0626185464723122,1 +"7697",430.655611709729,0.988417995749627,0.210588480577809,4.69359954085628,2.68439278483221e-06,0.0329213931131822 +"7561",371.625882715979,0.0694942347560052,0.235664943270134,0.294885755139009,0.768081154095425,1 +"7699",892.957386117644,-0.0464171702951221,0.171135630426423,-0.271230311183377,0.786213901484865,1 +"7701",958.173232546547,-0.0633012606959779,0.126122361477802,-0.501903547905889,0.61573536948095,1 +"7702",784.134155294552,-0.0357059189345834,0.103493633365834,-0.345005946485312,0.730089900253046,1 +"7705",5194.87895418001,0.705873104090689,0.127138366343323,5.55200703290901,2.82408229846021e-08,0.00034634545308316 +"7707",2368.36500316934,0.234757592198075,0.152805267289369,1.53631871703422,0.124460231168397,1 +"7711",343.44383971343,0.169164596554075,0.181568009756886,0.931687232682573,0.351498186488926,1 +"7564",567.029991029492,0.295110953834628,0.12724902718731,2.31916078541195,0.0203863198749974,1 +"90338",1200.01102220815,0.0470468897210843,0.197212486090287,0.238559386648295,0.811447260649645,1 +"7718",420.189368021137,1.10511880605901,0.392798165351187,2.81345205640398,0.00490126943474147,1 +"7565",280.82376957192,-0.301724077137498,0.139188235137368,-2.16774123789786,0.030178379991376,1 +"7727",447.598620279239,-0.0706945037295426,0.209215814174797,-0.337902294854625,0.735436818132883,1 +"7728",343.060262189409,0.415023919912757,0.310640586330944,1.33602606412353,0.181540754269871,1 +"7566",402.608938183884,0.0422195763931301,0.199005270785997,0.21215305617976,0.831987628798804,1 +"7733",354.569187717549,0.464948917752035,0.138449710293738,3.35825128680725,0.000784372722378676,1 +"339318",409.057737586833,-0.250528538582634,0.235194708965311,-1.06519632046478,0.286787098374874,1 +"7569",376.128812178178,0.593664556531006,0.191612486870386,3.09825610129774,0.00194663127771809,1 +"7738",550.031254850239,0.764824799614301,0.209325409414832,3.65375996040024,0.000258427882110046,1 +"7739",4955.49502630506,0.370019340426728,0.467969945315679,0.790690393967766,0.429124682997023,1 +"7743",766.418250517089,-0.390040718034108,0.169454285646817,-2.30174596378782,0.0213495024728895,1 +"7567",115.150862958294,0.23513745682019,0.220004227997804,1.06878608179538,0.28516607229947,1 +"7748",901.45180165123,0.672412701650398,0.163529582033091,4.11187195179361,3.92463962146046e-05,0.481317803175911 +"10168",800.207952480597,0.247083938616923,0.143158766556766,1.72594347213064,0.084357582851945,1 +"7549",252.352491650325,0.599729922552071,0.136058543432527,4.40788139738894,1.04386676856861e-05,0.128019820497255 +"7752",425.349205946304,0.306232186854935,0.141444297030084,2.16503735594092,0.0303848246254803,1 +"7753",553.981238052975,0.111992674380314,0.124291818539344,0.901046228918625,0.367563740676252,1 +"7754",500.952515813928,-0.131184769813303,0.341589566436949,-0.384042086477243,0.700947254331829,1 +"7755",576.606651915911,0.575852702705685,0.157758248671552,3.65022246097948,0.000262013283949078,1 +"7756",5131.9576927051,0.36776401132254,0.11454259529549,3.21071833909303,0.00132403641324121,1 +"10520",760.50908494678,0.00231545253581814,0.216323243983568,0.0107036696250451,0.991459870334256,1 +"7988",930.654997889106,0.422459099485526,0.152594011634326,2.76851689631112,0.00563120656810984,1 +"7760",896.608378037672,0.1637229319884,0.162259582261095,1.00901857201228,0.312965727390777,1 +"7761",77.3949105477357,-0.154916249869718,0.369138233775836,-0.419670019778534,0.674726529312487,1 +"7764",4163.25069085753,0.513383473457736,0.233090398548634,2.20250802544584,0.0276294428604176,1 +"51222",2196.81659684362,-0.786795402976403,0.219717010046568,-3.58094897982476,0.000342348507214796,1 +"7570",1127.39944249613,0.181502277300396,0.17459817727162,1.03954279555871,0.298552365607849,1 +"7673",180.156102949043,-0.0422341344038574,0.19628787485016,-0.215164255235315,0.829639258417167,1 +"7766",225.440617107751,0.707917307748106,0.223546819893958,3.16675186023185,0.00154151793767817,1 +"7768",138.72828412001,0.449184954936795,0.19800336573528,2.26857232082272,0.0232943464211609,1 +"7769",639.648805403638,0.129326482994042,0.14494300667186,0.892257487709131,0.372254935140847,1 +"7770",588.77819306956,0.380473774991783,0.149410493709421,2.54649968382906,0.0108809310105105,1 +"7772",320.219683904522,0.44554475934804,0.359385904549697,1.23973910414294,0.215071908499797,1 +"7571",502.001828637442,0.202704324303452,0.166737748621898,1.21570745664267,0.224096382635389,1 +"7773",213.028480991716,0.289800738781786,0.204100610192274,1.41989158439447,0.155639246329311,1 +"7775",380.245453607435,0.428900153011145,0.242071175435519,1.77179357368549,0.0764288297158246,1 +"10780",330.16076190126,0.324783758528334,0.128406117463769,2.5293480166159,0.0114274654182332,1 +"9310",122.948353508375,0.123746176864449,0.178058119703395,0.694976320487837,0.487070141386749,1 +"7776",601.593872358231,0.110441244818224,0.142459131811813,0.775248616312755,0.438192765681214,1 +"8187",215.001168967115,0.0947071556161589,0.361005516020394,0.262342682904625,0.793057257805959,1 +"7572",3449.20585259923,-0.0897266073823007,0.126259363842003,-0.710653092586318,0.477299233945063,1 +"57209",639.692694805679,-0.324429375621301,0.209490126452415,-1.54866189216318,0.121463019171194,1 +"219749",678.127851519221,-1.2176213797799,0.214246243788955,-5.6832799410912,1.32135714271954e-08,0.000162051239983124 +"58500",479.93820035901,0.18013223725203,0.148812744383099,1.2104624371976,0.226101495985483,1 +"90987",703.917226867644,0.0391612754072658,0.210285350018595,0.186229213798312,0.852265015371027,1 +"56242",275.678359293783,0.917687379892129,0.261697637740574,3.50667047595535,0.000453750679358493,1 +"9534",720.687153583125,0.726081985344293,0.250667144685883,2.89659814114915,0.0037723263017869,1 +"10172",254.040503066577,-0.0220101014415421,0.221225402655114,-0.0994917454206445,0.920747841583013,1 +"7574",524.56486414993,0.590565129710893,0.169632918686186,3.4814299859063,0.000498744149504965,1 +"339324",1066.49551332795,0.782269689696404,0.184597845795301,4.23769674194279,2.25824507764948e-05,0.276951176322932 +"10127",1393.89744436555,-0.22296638455176,0.12024914952586,-1.8542034220692,0.0637100627034051,1 +"9422",1481.06425599132,0.133787817973606,0.150423242390411,0.889409215275196,0.373783194164497,1 +"10781",1458.82356419702,0.310607985776566,0.111174297331661,2.79388305778937,0.00520793080627052,1 +"10308",750.215141019743,0.249427953350263,0.243948383775179,1.02246200401202,0.306562287175929,1 +"10795",960.314284154416,-0.150859371021475,0.147617856551684,-1.02195882358349,0.306800389471206,1 +"10793",256.55387614371,0.933710438106505,0.179654854314645,5.19724580595645,2.02262836828714e-07,0.00248055143086735 +"10782",1064.57997109434,-0.489360565723973,0.250834204273363,-1.95093235845404,0.0510650927622991,1 +"10838",1036.23434480153,-0.0666159793396696,0.169432320493885,-0.39317161652209,0.694192731862452,1 +"92822",1052.43100179594,0.141973430476414,0.159591052667353,0.889607707346471,0.373676566270019,1 +"11179",927.062310291097,-0.201818602988454,0.11562489602496,-1.74545975760174,0.0809048715423874,1 +"7576",813.900331388718,0.9702448466875,0.203109962384757,4.77694365798531,1.77979615099331e-06,0.021827419995782 +"55609",271.829568510314,0.667638619056858,0.185861916783985,3.59212167080365,0.000327996636403682,1 +"54816",1271.78982492465,-0.39689201127635,0.18915214515255,-2.09826862368523,0.0358814225787284,1 +"23528",560.529363575562,0.571142534943868,0.220682556118369,2.58807286352765,0.00965145627012581,1 +"8427",2182.56786455432,0.349471971196717,0.109831169868758,3.18190156413991,0.00146311537050408,1 +"284349",136.036653572707,0.415830273444644,0.142348919477486,2.9212042843108,0.00348681113389688,1 +"26974",127.543984260874,-0.212696285717095,0.378259926505354,-0.562301927360217,0.573910325392783,1 +"57335",393.625957040953,0.706645896198361,0.190350795299016,3.71233487671177,0.000205356033341294,1 +"729288",150.889103047513,0.590887042604521,0.216186434258643,2.73322905126226,0.00627167006963977,1 +"57336",281.152090099073,-0.134661724889259,0.159480896523605,-0.844375268917104,0.398459737642237,1 +"23036",2003.21605536613,0.0935239030684522,0.160634085618366,0.582217047573863,0.560420491913568,1 +"162979",216.815886752815,0.675675684900377,0.390092272211671,1.73209195114161,0.0832571920474822,1 +"7551",1407.38717132103,0.580533353489545,0.132010466326435,4.39763126094869,1.09438700419473e-05,0.134215622194441 +"90075",156.146897974272,0.424126535132849,0.284253058368014,1.49207377949737,0.135679804815725,1 +"91975",300.976225622749,0.025165220629002,0.328410626198062,0.0766273032037187,0.938920037991087,1 +"55900",941.538224436998,-0.122203694372514,0.248951205441851,-0.490874081752773,0.62351550947717,1 +"57343",617.454448853477,-0.0972623353692701,0.15800820569801,-0.615552432480378,0.538189953916976,1 +"57693",1489.745495645,0.179439428785033,0.101740692820247,1.76369379656242,0.0777835461157536,1 +"24149",1252.88099185222,0.0842662044457644,0.160476160645022,0.525101074870327,0.599512928934998,1 +"57567",783.451195288415,0.465500551400552,0.212254216168988,2.19312746668806,0.0282981965919539,1 +"7580",1597.04647383384,-0.0768341533282258,0.172680041946907,-0.444950976742579,0.65635518210439,1 +"162967",1420.52924420773,0.583157852176767,0.223031114420998,2.61469281400795,0.00893077367521741,1 +"79692",352.782793447386,0.644221000671566,0.183115200244929,3.51811864776859,0.000434617994806648,1 +"25799",523.60107246297,-0.24532621729923,0.175369435851783,-1.39891091117253,0.161839700180868,1 +"388569",257.628857290816,0.43093987138921,0.205026906810975,2.10186983792579,0.035564679344283,1 +"284695",1122.91614725157,0.0550407383397514,0.154129236449806,0.357107707840205,0.721011174403803,1 +"79673",660.752795041227,-0.0955616996363196,0.216028564851809,-0.442356776761781,0.658231051477236,1 +"27309",1299.89349038258,-0.88105583393913,0.145328284396506,-6.06252139834874,1.34003972936835e-09,1.64342472409734e-05 +"55422",1710.20635477896,-1.83128891435887,0.24106389300395,-7.59669518125992,3.03788967256008e-14,3.72566789442768e-10 +"84449",395.255629600257,-0.179072362716684,0.210735248024058,-0.849750406710511,0.395463867289236,1 +"55713",223.809728702452,-0.178904117794292,0.300882113270178,-0.594598714592397,0.552111739504617,1 +"63925",1381.4414796144,0.247099508468145,0.138499395097695,1.78411976668812,0.0744042059704227,1 +"26152",1221.93339822023,0.321652190120369,0.149440871166081,2.15237095187234,0.0313681496590088,1 +"7581",1846.96518615516,-0.0646942544777288,0.157975869180029,-0.409519851440117,0.682158201576519,1 +"7582",1196.77138374049,0.0309043196456439,0.223852726598252,0.138056480773217,0.89019577965822,1 +"80778",353.950809988494,-0.41630364244729,0.194067073706824,-2.14515339720223,0.0319405842877931,1 +"84905",375.893507492896,0.576945560447138,0.200702891571336,2.87462505363094,0.00404507547066774,1 +"79175",628.410690465155,0.226801162919467,0.144127073855578,1.5736194238338,0.115575459970019,1 +"25850",193.335325642021,0.11465794367491,0.286969803507135,0.399547068275633,0.689490149448957,1 +"23567",509.134248142069,-0.10861047931053,0.162379495278991,-0.668868191294237,0.503579562602599,1 +"84671",340.741255906013,0.195796025455104,0.198992188348823,0.983938249434615,0.325145875579735,1 +"7584",380.706042220846,0.0849504125956325,0.144943305582852,0.586094074880014,0.557812297786057,1 +"59348",428.760120488762,0.0304575427295457,0.247590959556861,0.123015568840068,0.902094769454554,1 +"6940",462.275460802559,0.3744130193776,0.154667870114659,2.42075499649694,0.0154883121946606,1 +"117608",235.23683774926,0.359728315238313,0.135537625619908,2.65408452887546,0.00795239030447644,1 +"140467",3402.92754781923,-0.442972550918316,0.235179264554804,-1.88355275179921,0.0596254979966851,1 +"149076",2220.4449768651,0.253939915429838,0.195340454074043,1.2999863066438,0.193605662435339,1 +"22891",163.946263672449,0.757160480005554,0.428475230426743,1.7671044350719,0.0772107399080127,1 +"195828",474.791030199684,0.944824635829745,0.260378689161424,3.62865578159506,0.000284900812834362,1 +"7587",866.368417270648,-0.0587157930386727,0.123222491724202,-0.476502237676634,0.633716613548492,1 +"100129482",567.925361703994,0.143245830957304,0.226097313328773,0.633558306590787,0.526369117796536,1 +"163087",215.679308658325,0.25405696356402,0.141652782350689,1.79351904952388,0.0728899674282874,1 +"171017",2508.92338673463,0.356384134047094,0.153769764951209,2.31764764783359,0.0204684784030132,1 +"25946",4690.0482707806,-0.0551071350161858,0.287296660101165,-0.191812654545935,0.847888958129438,1 +"84124",1068.13368321185,-0.417880798578778,0.105816008980716,-3.9491264375217,7.84369151739535e-05,0.961950327693366 +"55893",3624.22930086423,-0.165308953500567,0.182815164630007,-0.904240924625316,0.36586766408199,1 +"84307",569.542234618545,-0.232989824054181,0.182825649912005,-1.27438258344122,0.202527861681105,1 +"57541",1181.95804633077,0.392308062837664,0.170964262034409,2.29467877186348,0.0217515402319601,1 +"342908",134.29863630579,-0.559921943446761,0.278585465623347,-2.00987493081849,0.0444444276517966,1 +"55628",733.176073315787,-0.377415551068891,0.165802951006353,-2.2762897088269,0.0228286756586277,1 +"79797",698.372535963055,0.0172299174334141,0.117006912432774,0.14725555161806,0.882930314607129,1 +"7592",497.28973820384,0.205028569604351,0.0952658585905709,2.15217258982059,0.0313837636234552,1 +"57862",2796.09007941061,-0.0527372210789694,0.120224375272494,-0.438656644789697,0.660910346191633,1 +"84330",446.502356211009,0.0395604959277575,0.173830162098039,0.227581309539629,0.819971751516343,1 +"55786",417.62641403231,-0.187662716399715,0.273853381280202,-0.685267114550256,0.493175379433342,1 +"55659",250.993090277672,0.0555917237781245,0.200636220817049,0.277077207454062,0.781720822737788,1 +"147687",312.794724175073,0.25627994178649,0.150586809979759,1.70187509663654,0.08877878505725,1 +"147686",124.801012511591,-1.30015198886925,0.288281045680545,-4.51001551558821,6.48228844571121e-06,0.0794987854982023 +"79744",302.852787698179,0.629440517202423,0.178477749849441,3.52671701505315,0.00042074619884089,1 +"147923",299.042574331506,-0.0517631543626603,0.313684425587014,-0.165016654128726,0.868930873660266,1 +"23090",431.179817951465,-1.55618732429985,0.319154759643092,-4.87596464498956,1.08278002196978e-06,0.0132792141894373 +"155054",155.129252789299,-0.43066820052507,0.278820554848622,-1.54460707087714,0.122441334836765,1 +"79088",343.887934262193,-0.56198187243875,0.210246195325789,-2.67297047429527,0.00751828673876298,1 +"126299",1462.79951232711,0.146907067030008,0.218235471994262,0.673158518583408,0.5008464481456,1 +"353088",251.985984351071,-0.0448775645370925,0.27392236583158,-0.163833151779528,0.869862492937241,1 +"7594",613.365174185766,0.599445394161412,0.301731969243268,1.98668174162916,0.0469576764099942,1 +"80264",583.941407490779,0.123830723977654,0.306544963944216,0.403956151764372,0.686244963563424,1 +"170959",369.98225623606,0.625983864303378,0.278478595045638,2.24787066381454,0.0245844383008799,1 +"9668",240.350569737092,0.454002864744066,0.207821774259646,2.18457794598967,0.0289198064201386,1 +"163059",275.276615989488,0.423310814076187,0.218580382706948,1.93663680534279,0.052789755594437,1 +"80818",1934.5006193548,0.744996277348633,0.259567196998101,2.87014802318832,0.00410279685676207,1 +"220929",556.743775329966,-1.04846306648103,0.18674885231797,-5.61429456442308,1.97365754130615e-08,0.000242049360865786 +"90594",393.691503408448,0.517211743461852,0.251625892511724,2.0554790220476,0.0398327598403015,1 +"51710",512.214333775221,-0.13575131815029,0.212753743506404,-0.638067823921527,0.523429530661078,1 +"126070",1679.35165357717,0.543687775413721,0.317712171929583,1.71125887973289,0.0870333336329897,1 +"126068",273.360425594204,-0.217870729457014,0.250428842647254,-0.869990561605959,0.384305562205786,1 +"10224",220.351261200329,0.556512970425321,0.19110269830587,2.91211466587768,0.00358990825351574,1 +"55311",1263.33385557729,-0.101185922563855,0.176054234263999,-0.574742907984385,0.565465183724263,1 +"353274",1140.47309828266,0.0943952627933976,0.18887845484815,0.499767233215072,0.617238985216771,1 +"55663",707.974987837347,0.305672977829695,0.158231669597682,1.93180656316714,0.053383385716651,1 +"203523",234.645065453344,0.0121583147274698,0.177965978554358,0.0683181966926118,0.945532339104536,1 +"7596",545.153215505003,0.24786837807693,0.146133997948266,1.69617188030864,0.0898533341026194,1 +"26036",1382.15497276313,-0.168316414098328,0.132676609558708,-1.26862161053226,0.204576052911677,1 +"10794",279.856513581681,-0.0950726095926243,0.30985682755186,-0.306827544655966,0.75897464125849,1 +"92283",229.834477816923,-0.213595586720196,0.247456839549881,-0.863162994842746,0.388047856459761,1 +"58499",885.418917195829,-0.651887208223661,0.243702531667296,-2.67492998026635,0.00747448592539899,1 +"168544",211.160810197721,-0.402066011445722,0.308559118936701,-1.30304368521419,0.192559847788796,1 +"90333",822.519132780862,1.14391253172099,0.226780671959113,5.04413591263736,4.55575402009598e-07,0.00558717673024571 +"84627",540.191346904807,0.626134064213995,0.262891814594636,2.38171760950206,0.0172321061271437,1 +"388566",252.023840106442,-1.07655872097891,0.34754732779649,-3.09758883143909,0.00195101913734997,1 +"57573",252.105809393216,-2.03043402292144,0.300796014863268,-6.750202537904,1.47638912963162e-11,1.81064362858021e-07 +"25888",513.301388540137,0.718890292791287,0.124013689353923,5.79686239911503,6.75670844372519e-09,8.28642723538457e-05 +"197407",811.94202612438,0.309087119600603,0.258435619360806,1.19599272099207,0.231699399625882,1 +"147657",895.758370224045,0.6700336693874,0.13862942036728,4.83327180920352,1.34307210391914e-06,0.0164714362824644 +"83744",196.841984306663,0.330378262065801,0.217982458574009,1.51561856961822,0.129615828776497,1 +"220992",132.67859847568,0.836885135913948,0.21115696640414,3.96333187659177,7.39109200573332e-05,0.906443523583134 +"90649",1463.04189207397,0.528896013117879,0.429944493575468,1.23014952167318,0.218641118494016,1 +"118738",200.384130957542,2.2463477736126,0.481337620677794,4.66688593850074,3.05798972694823e-06,0.0375031860112931 +"57474",370.805614388455,0.836746416159136,0.168014838657631,4.98019355221475,6.35207122723446e-07,0.00779018015308034 +"284443",298.492858959328,-0.0634969469826702,0.266328005268535,-0.23841633522035,0.811558198997052,1 +"84838",724.845785755937,0.27365379499618,0.191269992522254,1.43071995448706,0.152510491932868,1 +"162968",86.2121507109006,1.15465034535375,0.210844463262832,5.47631333299183,4.34278429718613e-08,0.000532599066206907 +"26048",492.514473894511,-0.147262005766233,0.172219167642037,-0.855084876918704,0.392504161167946,1 +"115560",173.573304628183,-0.573079110429669,0.325826803801811,-1.75884581545431,0.0786037005623302,1 +"91392",252.328800430826,-1.27262018620064,0.370677333950598,-3.43322903679416,0.000596438031088797,1 +"84858",913.457465869083,-0.134887244078309,0.243340600025997,-0.554314586484534,0.579363569391286,1 +"253264",165.031039628332,0.458688079465688,0.544973015608201,0.841671176973381,0.399972036087112,1 +"100131213",164.894741407903,0.785437994077225,0.283794473430738,2.76762963204396,0.00564655843271885,1 +"440515",619.007801308009,0.0664566486662558,0.240298728839565,0.276558469481649,0.782119157779586,1 +"22847",1307.67566027554,0.240924809362875,0.154878236853143,1.55557562029404,0.119809039747502,1 +"22869",488.403611506636,-0.0262080889139291,0.200382135036292,-0.130790546318824,0.895941001697909,1 +"118472",938.137487198948,-0.165721987559189,0.141762271298248,-1.16901334919031,0.242398253051961,1 +"84450",1704.69896974788,-0.0899134170943396,0.229926976733865,-0.391052056490145,0.695758757827353,1 +"57473",1777.53267367787,0.00765510754725544,0.168532494216571,0.0454221459359542,0.963770829298433,1 +"130557",1356.45884048684,0.402446039966448,0.144606987298191,2.78303315410737,0.00538533027200726,1 +"84874",498.84078465797,0.516974543464904,0.201132085028931,2.57032359302864,0.0101603558889604,1 +"9658",1436.54887809,-1.00234551949242,0.223871716970082,-4.47732090975287,7.55855878638518e-06,0.0926981649562278 +"340385",296.29888879306,0.131772525710215,0.214978135066399,0.612957804613547,0.539904240315332,1 +"9849",1235.18057811985,0.398863321938618,0.153985432313632,2.59026659824696,0.00959016296849518,1 +"85460",963.657426961561,-0.0452734186086524,0.266203530042923,-0.170070692155556,0.864954541984529,1 +"162655",166.669275963572,-0.116052685803196,0.323792494219397,-0.358416849911783,0.720031383725336,1 +"25925",571.334204194285,-1.0336777857344,0.33992704017228,-3.04088131738657,0.00235886791008358,1 +"147807",724.8108648194,-0.0154968792569229,0.199757896112824,-0.0775783063322323,0.938163499402804,1 +"170958",469.04233145405,1.1614274267033,0.241955037657447,4.80017873547075,1.58524086190516e-06,0.0194413939304049 +"116115",577.898569473349,0.362467111725375,0.179615124592467,2.01802110233081,0.0435890636314076,1 +"84503",237.610400298777,-0.160286682591358,0.209302509778766,-0.765813476201414,0.443787294494891,1 +"84436",523.784144739339,-0.210572675099264,0.294400737794331,-0.715258652803957,0.4744492325291,1 +"57711",624.32295135514,0.11795617452886,0.223993102812475,0.526606279603226,0.598467030295246,1 +"348327",168.574779656257,0.884775876676185,0.187242392641681,4.72529678879583,2.29779514152406e-06,0.0281801596156511 +"55205",2382.88894734014,-0.247290145504179,0.256468379379308,-0.964213000069084,0.334939148026682,1 +"125919",308.144242114028,0.237156926549848,0.150617646582227,1.57456268857831,0.115357420878448,1 +"27300",1281.0116708328,0.716810583389982,0.160589570964397,4.46361852195807,8.0586988026114e-06,0.0988318821152262 +"339327",125.567337444967,-0.433690540311609,0.311941663281653,-1.39029373553102,0.164439699361627,1 +"147694",649.187822229835,-0.296936326399541,0.153252191787604,-1.93756658835309,0.0526761220792088,1 +"256051",296.38272814446,0.0494506508151876,0.201985736605545,0.244822489182784,0.806593879877491,1 +"162972",147.736108528397,0.754182652193617,0.232679354255775,3.24129596545371,0.00118987577599668,1 +"90233",308.290083578665,0.194684970448734,0.230066556240494,0.8462115208315,0.39743475606746,1 +"79818",752.396790600226,0.499517315666565,0.327856645647238,1.52358453701752,0.127612528295884,1 +"115196",260.67226955012,0.131472307508085,0.194006714821555,0.67766885094164,0.497981680608365,1 +"148254",216.677078767292,0.294110014976451,0.227073585763675,1.295218966078,0.195244703919299,1 +"79230",408.02815794671,0.347451085371448,0.132442705569228,2.62340673182514,0.00870552768281923,1 +"148156",695.806259357741,0.531493703668761,0.191360497131446,2.77744733963393,0.00547877171989865,1 +"84527",688.233074186251,-0.306419418610389,0.156255089683184,-1.96102040088212,0.0498766431208691,1 +"93134",1918.95209385909,-0.22076669118022,0.141750559748151,-1.55743082477034,0.119368232407484,1 +"54811",1348.66411904318,0.303504121039171,0.126267161667665,2.40366629795635,0.0162315825105454,1 +"147837",121.381025283746,0.0622918142157642,0.235411079762106,0.2646086763576,0.791310935556599,1 +"163050",485.838326540956,0.177890886127783,0.181500053211333,0.980114787738667,0.327029460435759,1 +"147929",158.280466546688,0.125882428224578,0.155373720129359,0.810191248042283,0.417830266779216,1 +"84924",342.426088196705,0.269585002977371,0.209227804286187,1.28847599341351,0.197580320309339,1 +"163081",309.678879364061,0.447053436898906,0.213260779120364,2.09627592444736,0.0360577211725731,1 +"374900",329.543710390047,-0.262778868751012,0.287233958315525,-0.91486003358402,0.360265113758942,1 +"148266",236.933732677761,-0.307832983841225,0.310459272843836,-0.991540632758191,0.321421661738394,1 +"126295",312.886934703927,0.390510315887457,0.228570240181181,1.70849151480924,0.0875451794911265,1 +"148268",135.875965393618,0.193256209367958,0.258887267049372,0.746487888610999,0.455372745135548,1 +"51276",127.946117693377,-0.0984710449599962,0.250594367675864,-0.392949952839185,0.694356445951464,1 +"137209",110.009529996894,1.03054383775573,0.291622476184613,3.53382856917841,0.000409586645969485,1 +"64763",1175.0239614641,0.296675862314988,0.172978493638437,1.71510258919877,0.0863264197091153,1 +"284346",94.7215340180049,-0.727916296816346,0.255762889263148,-2.84605909369209,0.00442639797637843,1 +"79177",653.168436589399,0.0416821434981286,0.134669234385955,0.309514965969656,0.756929829515365,1 +"84765",292.928764748205,-0.563260766520292,0.263450426457693,-2.13801425222117,0.0325155865194816,1 +"147660",92.0100515828462,-0.958815382959629,0.306965406211928,-3.1235291129114,0.00178696186036927,1 +"163033",540.584551490228,0.217391402956404,0.200312682415181,1.08526030571457,0.277806381292499,1 +"51157",943.700254624941,-0.411804425239757,0.227773433584759,-1.8079563483707,0.0706132946955093,1 +"51545",810.699242302226,0.447801108354433,0.166203113798712,2.69430035406415,0.00705365698190503,1 +"147948",91.7501073291917,-1.09432925134823,0.256941349263391,-4.25906244551721,2.05286120585273e-05,0.251762898285779 +"147949",126.299517846465,-0.39275983657289,0.273515257600955,-1.43597048302843,0.151010740554502,1 +"201514",434.976737889982,-0.0913977608231172,0.144147854097054,-0.634055646514027,0.526044507056371,1 +"199704",349.73553061987,0.182839005692835,0.199033068570478,0.918636320115276,0.358285827963458,1 +"92285",694.25876621552,0.0385071063771622,0.182835049702844,0.210611184451486,0.833190684140149,1 +"54807",414.233058327971,0.0322471780016515,0.172828327626743,0.186585025987729,0.851986008092633,1 +"84914",1174.02338565173,0.624993975706724,0.142524874882245,4.38515716097345,1.15902068109543e-05,0.142142296329544 +"100293516",405.918062347402,0.286562235413377,0.197466902735097,1.45119121961315,0.14672662116801,1 +"51385",565.78348694085,-0.388597201555131,0.23910179208335,-1.62523751147657,0.104111960473167,1 +"9640",2037.97165914263,-0.0523102876376969,0.110640599701983,-0.472794686386351,0.636359665393816,1 +"51042",1627.6510604516,0.472384644203374,0.172021893476953,2.74607280884663,0.00603133767692478,1 +"84622",246.022135687863,0.163999626104277,0.254174264790714,0.645225142046988,0.518781295397158,1 +"152687",209.073071230895,-0.57128553539678,0.302153141124644,-1.89071519584539,0.0586623728547113,1 +"169270",121.278050522251,-0.307728424008529,0.299071938551979,-1.02894449241364,0.303505759237614,1 +"146434",97.3958195877681,-0.770290393191718,0.319820869527126,-2.40850571862505,0.0160179753398479,1 +"90850",1977.37614134209,-0.035171325739573,0.160498933487397,-0.219137442071133,0.826542984961854,1 +"148103",113.813644297795,0.405663267243411,0.241094963753758,1.68258706414844,0.092455057610549,1 +"162966",577.958950733895,0.956676340401737,0.253782002623895,3.76967763872339,0.000163458533982346,1 +"100289635",580.704071543278,0.387032960081228,0.175450422434738,2.20593917478422,0.0273882588264306,1 +"80095",392.026563054377,0.958061370101442,0.234164237180382,4.09140773005155,4.28762537540925e-05,0.525834376040191 +"84775",389.731540081342,0.515643023768669,0.286096478655073,1.80233963798745,0.0714919857903508,1 +"57507",346.887087178283,0.192792644045179,0.263297409771197,0.732223853674497,0.464031947232661,1 +"23060",2642.17891258642,0.0655012659305652,0.12281774242069,0.533320875628883,0.593811479310596,1 +"162963",134.1893345329,0.826448410942544,0.373721560464143,2.21140147738904,0.0270080476345639,1 +"81856",410.300970968739,0.322899415768846,0.169836955555587,1.90123177086251,0.05727166138462,1 +"79898",247.837978105922,0.0271060415412662,0.242535273148431,0.111761234518153,0.911012725270164,1 +"80110",490.219010579196,-0.18657810554969,0.21891180094479,-0.852298070476088,0.394048676699652,1 +"284370",420.108658861724,-0.160748556823484,0.293429310463328,-0.547827197527268,0.583810561754405,1 +"90317",329.243189014268,0.797266263708311,0.205029866435057,3.88853720470449,0.000100850212623265,1 +"114991",727.265812134721,0.882676408726409,0.192590307382881,4.58318188864819,4.5795335688241e-06,0.0561633996880588 +"285267",207.571268721756,0.525059654343401,0.215705279888868,2.43415300086264,0.0149266841271715,1 +"253639",137.069224407989,0.389483123713532,0.254890246248091,1.5280424788575,0.126501991492299,1 +"285268",1056.71468882787,0.20484219786159,0.126538670667121,1.61881104631215,0.105487924669687,1 +"90441",1499.98741576304,0.0642873097736342,0.130472750710323,0.492725947936557,0.622206240707388,1 +"9831",815.959554271197,0.795803736996968,0.188459961330173,4.22266741105161,2.41427949316739e-05,0.296087237042049 +"57547",212.868247721856,0.86239269356457,0.180554976194899,4.77634409053155,1.78510836865707e-06,0.0218925690332103 +"199777",914.158314550327,-0.899613370542909,0.411354629652029,-2.18695331399067,0.0287459323168364,1 +"199692",643.720937995265,0.522900048856896,0.194394103207792,2.68989665956049,0.00714741485469006,1 +"89887",387.922701661581,-0.0265141601094071,0.121967375411483,-0.217387313779246,0.827906516956208,1 +"23361",1843.00679729999,0.207917114856754,0.161374689700204,1.28841217444331,0.19760252303488,1 +"57232",177.74471128667,0.0962429721353638,0.276117355945246,0.34855821288702,0.727421003723395,1 +"27332",4785.85960650337,0.094472747388564,0.101676621782771,0.92914915672948,0.352811792319047,1 +"51193",1258.96005060749,0.298726576818107,0.158134423790607,1.88906734952071,0.0588828047723288,1 +"121274",821.701017077913,-0.50030665259297,0.23783015990033,-2.10362997192046,0.0354107373722886,1 +"84146",2059.89843506584,0.144384148525388,0.160618741109533,0.898924667993297,0.36869278756022,1 +"9726",1003.01544100132,0.403585831392633,0.153558162377556,2.62822780074907,0.00858310163588467,1 +"65251",471.6675753133,-0.859361131318409,0.236174265209324,-3.63867388581371,0.000274045563484866,1 +"22834",2356.10643950354,-0.0862001143235212,0.163468675431165,-0.527318852349905,0.597972184659659,1 +"115950",343.959797777492,-0.0282922549227141,0.106599430770744,-0.265407185743424,0.7906958011798,1 +"55279",834.44269117518,-0.357546983302351,0.141162384623752,-2.53287718435291,0.0113130582989469,1 +"79027",2732.9016778139,-0.135033592392057,0.165305473758169,-0.816873085458756,0.414000960199294,1 +"26149",167.84438253153,-0.371972589111664,0.212028677938672,-1.75435036773306,0.0793704902189668,1 +"389114",518.114604129712,-0.585699598090335,0.40242982585018,-1.45540802512084,0.145556336028865,1 +"144348",5325.30784106911,0.531705823888984,0.101012564697106,5.26375927077336,1.41139231167288e-07,0.00173093153103562 +"79788",101.323220161399,0.133073178614843,0.292936414837204,0.454273254790795,0.649632163467441,1 +"63934",176.963716758405,-1.27885903148328,0.369509025872219,-3.46096831725438,0.000538236152965006,1 +"79759",703.626394440187,0.579143628219476,0.113864549560982,5.08625055342009,3.65211514654973e-07,0.00447895401572859 +"79862",172.167648038903,0.545091370181629,0.129706467010515,4.20249955723056,2.6398376503007e-05,0.323749689432878 +"93474",226.848046209288,0.483908623833272,0.135758814968697,3.56447295112918,0.000364588044888575,1 +"79891",210.766429683457,-1.77093968295227,0.294719553335364,-6.00889782476395,1.86788790805604e-09,2.29077773043993e-05 +"79894",1856.16595333975,-0.0407791777800736,0.125322953217332,-0.325392729210229,0.74488385762577,1 +"641339",141.432716283699,0.118220219601398,0.143207660885942,0.825516029450091,0.409078686057211,1 +"171392",368.992805049586,1.29463590452912,0.364390922084957,3.55287639198452,0.000381043466480708,1 +"342926",96.2924616816439,-1.53612739756502,0.343176355449723,-4.47620406584238,7.59818638377282e-06,0.0931841578105898 +"339500",416.131757201221,0.899446965487314,0.13757433737652,6.53789785681951,6.2389507936359e-11,7.65144925331506e-07 +"340252",556.508736623677,0.728248609270387,0.187688355994001,3.88009477419934,0.000104415770941167,1 +"148213",311.544508795855,1.60987094881,0.378086547582965,4.25794294745899,2.0631658308329e-05,0.253026657493347 +"91120",209.582989737431,0.585470037306823,0.335201122151961,1.74662314239332,0.080702730163246,1 +"127396",102.1501470461,0.380810577256877,0.211242409572285,1.80271839365934,0.0714324519696421,1 +"57592",1865.31130054656,0.530600756744883,0.132294637092623,4.01075031010815,6.05260937371213e-05,0.742292013592056 +"146542",536.256481559116,-0.254524684483063,0.172072660253876,-1.47916981179659,0.139094935636074,1 +"115509",320.331649540702,-0.0737755837127411,0.207782059499639,-0.355062337385626,0.722542891127398,1 +"7620",235.819775302328,0.428728239510414,0.28312954246775,1.51424763298676,0.129963044773445,1 +"51058",434.708747167723,0.404187290239132,0.204325513429281,1.97815379712248,0.0479113591503694,1 +"55657",1163.42019142617,0.821785075693197,0.177208387746202,4.63739378335837,3.52829820799855e-06,0.0432710492228942 +"79943",376.261355060187,0.679801028736191,0.21065293919634,3.22711390275253,0.0012504567208453,1 +"90874",413.841362478446,1.05944691178345,0.204490512376024,5.18090985969709,2.20806183666982e-07,0.00270796703649187 +"7553",867.661676253971,0.523815277627836,0.110565452668786,4.73760351885859,2.16260393008439e-06,0.026522174598555 +"7621",185.846517068952,0.20625470939529,0.239380517166662,0.861618613897851,0.388897424556001,1 +"90592",616.431802788745,0.471620275020071,0.16207002980997,2.90997833203989,0.00361453814208874,1 +"55762",339.715262996812,0.628421295432911,0.262694834209445,2.39221032771385,0.0167472421001083,1 +"79986",285.400767057987,0.690458194990895,0.260954223177721,2.64589776161877,0.0081474436935788,1 +"80139",963.438761088054,-0.00226284150788377,0.376902602360031,-0.00600378318885213,0.995209702865264,1 +"619279",2399.5324191701,-0.256303368688245,0.16491532995022,-1.55415126517111,0.120148339197018,1 +"51123",2969.13094232911,0.235605211170079,0.193559957282,1.21722082644822,0.223520208293395,1 +"286075",519.706599976734,0.68285231788164,0.126709163264951,5.38913130105503,7.07990676582047e-08,0.000868279765760223 +"7562",328.612554675857,0.501527073493022,0.261284411473517,1.91946802591342,0.0549251290406667,1 +"163051",149.294880852807,0.362445793371649,0.245822275496993,1.47442209067047,0.140367980237834,1 +"58491",414.246507161845,-0.249987554301527,0.356144408494877,-0.701927500021729,0.482724377971336,1 +"374655",1383.84769953558,-0.203144005743918,0.138065813149156,-1.47135631269166,0.141194781577377,1 +"7552",402.558397711994,0.169590326496072,0.348078437296756,0.487218707981866,0.626103349051607,1 +"148206",422.568644357855,1.17927344106979,0.301816003436395,3.90725948141552,9.33488885335696e-05,1 +"100131827",116.426800778557,-0.00442923949190569,0.313666915028725,-0.0141208373586359,0.988733576304329,1 +"124411",372.609460267962,0.506952094049797,0.11449695166532,4.427647082969,9.52666079578029e-06,0.116834967999449 +"170960",671.288962299522,0.155095761712325,0.246650393097014,0.628808086477777,0.529474705346386,1 +"100129842",1048.59101712353,1.2775499833208,0.456622761451126,2.79782369862775,0.00514481863495989,1 +"148203",501.573338198683,1.12877876422134,0.296680623107442,3.80469325026514,0.000141980029450854,1 +"7625",700.031797083028,0.910443324640682,0.188935111139855,4.81881487854709,1.44413469761469e-06,0.0177108679315466 +"283337",1298.91709039248,0.257358017498492,0.200606242897074,1.28290133837229,0.199526643908842,1 +"155061",999.328446515307,0.503561165892502,0.102187764503695,4.92780293549032,8.31594278180164e-07,0.0101986722276015 +"65988",608.566653971433,-0.238876747792665,0.165186308019543,-1.446105011103,0.148147750434264,1 +"388567",169.746685855444,0.74151437430887,0.1888594558841,3.92627613395183,8.6271110511366e-05,1 +"79755",2806.9166176766,0.65293112925064,0.644340805737134,1.01333195637622,0.310901628438321,1 +"7627",480.284474483213,-0.227233101356744,0.188884305363908,-1.20302796422897,0.228965499283198,1 +"7626",450.332889719613,-0.291593243917966,0.137983636189676,-2.11324510623227,0.0345797944403208,1 +"7629",1239.24506924903,-0.238908623847771,0.138473512219383,-1.72530197305366,0.0844730665683023,1 +"388561",777.131054256981,0.910966361278615,0.229338498090812,3.97214758473693,7.12275659948867e-05,0.873534869361291 +"284390",148.356475936075,-0.368374893032401,0.243919841792765,-1.51022930453265,0.130984923609127,1 +"92595",359.5875899563,0.474604451918893,0.167927472035186,2.8262466299704,0.00470969865967437,1 +"91661",365.575457175216,0.670035009509141,0.177814333010395,3.76817210494483,0.000164447312749489,1 +"90321",980.210053742337,0.486944831239101,0.199662456795563,2.43884022592034,0.0147344812805793,1 +"79724",2700.46617287851,0.185398666213767,0.176184599152334,1.05229780074856,0.292662940385172,1 +"58492",249.496987674305,0.437744935132369,0.155421572989116,2.81650048132652,0.00485499702189686,1 +"54989",2918.4310479318,0.0928064179869015,0.196659021872314,0.471915384828663,0.636987186239324,1 +"51333",120.353612208522,0.078086601654026,0.261074455615601,0.299097058231536,0.76486599079812,1 +"400720",296.940592452233,1.00917154900009,0.254822737550466,3.96028846837198,7.48592789106577e-05,0.918074196560305 +"374928",189.804393222259,0.299014480496348,0.17899629717635,1.67050651445462,0.0948191916211316,1 +"285971",219.311333041984,0.073700590986606,0.299152846753182,0.246364331098654,0.805400215071306,1 +"284309",721.700509890459,0.625514136969039,0.156241147544354,4.00351729874147,6.24076355320374e-05,0.765367242164906 +"27153",1178.81557874206,0.264876881242709,0.140904024358585,1.87983900707213,0.0601300225075297,1 +"197320",177.579243900656,-0.122314436800537,0.146496623209602,-0.834930076344039,0.403757079376495,1 +"284323",658.840745303524,0.652952994303979,0.194822584278128,3.35152619355375,0.000803674357514743,1 +"163131",880.39540541744,-0.0635449951460819,0.236345794064542,-0.268864505914283,0.788033951693811,1 +"163115",143.020407873018,-1.47643842169808,0.361201589712454,-4.08757453939626,4.35906640825664e-05,0.534595904308594 +"158431",121.823742859685,-0.045863037821041,0.25420379569075,-0.180418383196903,0.85682412342177,1 +"100289678",817.632458827041,0.249844462327062,0.154466338150415,1.61746866869965,0.105777153486347,1 +"147808",421.392160097637,-0.155957423016116,0.166146407028468,-0.938674665347376,0.347897804706961,1 +"146540",332.509997040757,0.172193675588002,0.159209969152768,1.08155083820647,0.279452159369963,1 +"136051",422.795188771254,0.58900263966932,0.169055637150485,3.48407571375464,0.000493839764654956,1 +"126208",1392.0075673335,0.0028165050716278,0.121747047696331,0.0231340728577903,0.981543326743082,1 +"285989",197.294602624235,0.184957361634616,0.169630465850958,1.09035461705991,0.275556964894811,1 +"7633",258.925997647254,-0.367216477230404,0.193102988685344,-1.90166128308233,0.0572154505563447,1 +"388536",195.753615535143,-0.0564681320091368,0.274066980138995,-0.206037706477805,0.836761457630862,1 +"163049",497.378697741512,-0.102943774424343,0.137189656116597,-0.750375628442798,0.453028505053776,1 +"126375",261.870334920015,0.895105613005609,0.265018495168982,3.37752130255991,0.000731422874717105,1 +"390927",347.180715910608,-0.0478947392765899,0.285904713748069,-0.167519935746122,0.866960962710454,1 +"90576",215.663529098196,0.412494905677587,0.206931382661294,1.99338979120803,0.046218780886349,1 +"7554",204.962132246573,0.755144377916575,0.15759116349964,4.7917939124696,1.65296648114026e-06,0.0202719809247041 +"168850",935.721936172458,-0.273640383652339,0.169294156690946,-1.61636047575984,0.106016398538287,1 +"390980",695.950426188324,0.236967733492065,0.14829148950151,1.59798606304815,0.110046078827098,1 +"388558",300.86691504158,-0.176345088149664,0.225164606466896,-0.783182982959579,0.433519666354833,1 +"347344",243.527496488421,0.76772421930352,0.218332260654256,3.5163114099719,0.000437587407819656,1 +"126017",207.154885016366,0.692843998666697,0.308200811136605,2.24802782352058,0.0245744157937723,1 +"730051",442.014547668339,0.203482934345018,0.178641823442039,1.13905540384857,0.254680046502901,1 +"125893",554.237778920134,0.507354332652707,0.298478949547474,1.69979937755045,0.0891686686653344,1 +"55565",379.444387607624,0.521515579091706,0.231638185778953,2.25142317247026,0.0243587478326044,1 +"55552",446.223135556924,0.476450662901104,0.317667267523643,1.49984185218467,0.133655373246527,1 +"152485",540.770534742239,-0.421555164964521,0.228781280396969,-1.8426121413127,0.0653856599533053,1 +"374899",222.201674401468,-0.101694468853713,0.358429724391433,-0.283722196942168,0.7766232827607,1 +"55769",1430.07970027492,0.0696463097577295,0.233146610666385,0.298723234957887,0.765151227155175,1 +"91603",817.654145299644,-0.125864640358028,0.117639335124072,-1.06991968481699,0.284655461725043,1 +"162962",308.794973290868,0.0122298984299398,0.188202787591092,0.0649825573068113,0.948187888150548,1 +"116412",122.119861608399,0.593763792412673,0.185665293228679,3.19803331084259,0.00138368296085987,1 +"55778",662.374648637857,0.12595554802392,0.174794476049838,0.720592268533746,0.471160412091317,1 +"7637",1251.56339789189,0.214640541560669,0.203047141935754,1.05709708353631,0.290467282117959,1 +"284371",492.684672276509,0.510567677030165,0.14994295533852,3.40507945756755,0.000661448048931492,1 +"284391",326.066135895574,-0.141970092154196,0.27791293468779,-0.51084377311796,0.609460455295333,1 +"91664",372.038656345167,0.670931727025271,0.18663006451057,3.59498202384895,0.000324413976166025,1 +"162993",414.092975935231,-0.689205829763388,0.226672137816051,-3.04054056402244,0.00236153878504073,1 +"7639",226.478313574242,0.956606323634133,0.262511451764773,3.64405559149211,0.000268375413864726,1 +"342892",195.601942079846,0.828373326337485,0.34010552224742,2.43563621332458,0.0148656264574912,1 +"54753",1022.59195177562,-0.953640790635208,0.372108929361838,-2.56280007112618,0.0103831819899608,1 +"344787",158.625805104866,-0.104341535667705,0.210061723861336,-0.496718458506901,0.619387603903455,1 +"643641",674.114287994108,-0.357032072896635,0.252917659004827,-1.41165339858622,0.158052041179804,1 +"100507290",824.547528870245,0.0457070846717754,0.179179370945404,0.255091221889055,0.798652643865791,1 +"345462",112.748833893191,-0.696643759675877,0.310114548614113,-2.24640786054426,0.0246778953065844,1 +"400713",406.955398935936,-0.687350775795961,0.294908976102164,-2.33072178704335,0.0197680345924537,1 +"169834",273.738644901524,0.735409123544442,0.33907776963576,2.16885089321669,0.0300940059619678,1 +"7643",187.776672588472,1.20102620055499,0.39650297741323,3.0290471168475,0.00245326418673508,1 +"7644",738.810850489839,0.288080305867624,0.279509365422632,1.03066423349369,0.302698302752331,1 +"168374",367.718621057613,1.39240380771694,0.182433583312022,7.63238753763593,2.30445461859897e-14,2.82618314424978e-10 +"81931",334.82132866569,1.21675166943183,0.30887033295947,3.93936075949221,8.16990015553429e-05,1 +"57169",3474.31121052044,-0.16641003180638,0.169371396970361,-0.982515553293225,0.325845924428282,1 +"10467",3271.58059340905,0.192359748007343,0.115049919993913,1.67196768165958,0.0945306951256029,1 +"741",546.507318479576,0.699573058831249,0.185343532849681,3.77446705625614,0.000160350095589035,1 +"9326",1154.58463128183,0.620069351179357,0.126601280772202,4.89781262398972,9.69093778370477e-07,0.0118849660979355 +"54680",1591.98724908005,0.282826016951735,0.180823813631994,1.56409717985117,0.117794748175026,1 +"30834",1154.10972294992,0.369319739630475,0.151867279426461,2.43185853480249,0.0150215730178419,1 +"84937",2168.20758648293,0.298992335171522,0.18662352306699,1.60211494380693,0.109130194024585,1 +"223082",1205.11750743431,0.463428385592295,0.240964447734038,1.92322307274059,0.0544520408108536,1 +"84133",809.13604905304,0.0175687328860288,0.160697029941698,0.109328298677349,0.912942102021651,1 +"7784",299.864094029422,1.06679871160094,0.199935338461149,5.33571863689441,9.51668776673688e-08,0.00116712658771261 +"54764",2443.83531774707,-0.794742780922835,0.137122180850734,-5.7958732569165,6.79665804281239e-09,8.33542142370512e-05 +"9406",2714.51572062356,0.0397382010274459,0.128249761105229,0.309850097848062,0.756674952501797,1 +"84083",206.497775587372,0.233596628942399,0.186742998255834,1.25089899554026,0.210971330402052,1 +"8233",482.357241350304,-0.211831754611282,0.19751311805598,-1.07249461046554,0.283497933407744,1 +"9753",341.11894779148,0.0468913234381553,0.278227509120598,0.168535899222784,0.866161704073377,1 +"221584",115.795441074336,0.737195803979478,0.293604071248353,2.51085007385984,0.0120440836834275,1 +"80345",299.042084193921,1.14266831782798,0.263921789927528,4.32957171949218,1.49399609855606e-05,0.183223681526915 +"65982",2280.62018668566,-1.57463240239378,0.303168849132542,-5.19391226011274,2.05920216858589e-07,0.00252540553955373 +"54993",439.670574814733,0.559883644897391,0.203183782141592,2.75555282511292,0.00585930422050774,1 +"7579",132.946106491595,0.449657280087512,0.237437263955481,1.89379405994091,0.0582523504162983,1 +"7589",216.063935494552,0.102187405915219,0.197222785748462,0.51813184530082,0.604366282836101,1 +"342945",284.574914400514,0.380804687265087,0.143717971997698,2.64966644026391,0.00805712748833252,1 +"146050",897.505681216567,0.511911709060552,0.127508404454988,4.01472915647113,5.95140966188269e-05,0.729880880933293 +"100101467",391.520421989736,-0.298303614176721,0.173255012437012,-1.72176036918511,0.0851129364219756,1 +"79149",175.527632504046,0.309782145178237,0.245803519604162,1.26028360243623,0.207567073118379,1 +"90204",685.106710743973,0.451903479889599,0.131154329086337,3.44558569311209,0.000569823264365253,1 +"140831",171.451005906067,0.238070497116297,0.162020099169935,1.46938866434464,0.141727400170831,1 +"65249",970.582080619118,0.741900531348284,0.281424918939482,2.63622899544238,0.00838331350929936,1 +"57643",341.866726732696,-1.08359431842924,0.381787682020434,-2.83821183725681,0.00453670626353223,1 +"57688",1088.30163296041,-0.728371025506733,0.270404469910802,-2.69363530028554,0.00706774529145051,1 +"125150",691.39750518274,-0.275992607175295,0.141769845587867,-1.94676523791682,0.0515628863011021,1 +"9183",894.23101156563,0.235553551768669,0.132101404845302,1.78312677328841,0.0745656690923768,1 +"55055",864.918873248738,1.42416414123497,0.193017301685798,7.37842736789104,1.6017012834563e-13,1.9643264540308e-09 +"11130",1228.50584205446,2.38116207799024,0.381479170806306,6.24191898330213,4.3223483050191e-10,5.30092796127543e-06 +"7789",262.32561484297,-0.354579548563542,0.161156392452566,-2.20022019088015,0.027791276446761,1 +"158586",915.590203729681,-0.571340634183375,0.205311093236586,-2.78280450012023,0.00538912684930834,1 +"79364",2379.52775905625,0.0743631399874384,0.119094814522158,0.624402836393881,0.532363062797707,1 +"79699",2355.19491461666,-0.232736685396674,0.17676171024831,-1.31666911951538,0.187949558987691,1 +"7791",14815.6760625248,-1.18411856395336,0.240519534620367,-4.92317002784142,8.5153404638809e-07,0.0104432135449035 +"23140",2641.0285218296,-0.692086310044795,0.169577731133581,-4.08123345806308,4.47973304617757e-05,0.549394460783218 +"26009",1538.92683756721,0.304720208318284,0.14951439012613,2.03806608889768,0.0415433239529956,1 diff --git a/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/~$Stats_Enrich_Analyses.pptx b/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/~$Stats_Enrich_Analyses.pptx new file mode 100644 index 0000000..138f1a0 Binary files /dev/null and b/statistics-enrichment-analysis/Stats_Enrich_Analyses_Materials_August_2021/~$Stats_Enrich_Analyses.pptx differ diff --git a/statistics-enrichment-analysis/bladder_cancer_diff_expression_volcano_plot.pdf b/statistics-enrichment-analysis/bladder_cancer_diff_expression_volcano_plot.pdf new file mode 100644 index 0000000..dea854d Binary files /dev/null and b/statistics-enrichment-analysis/bladder_cancer_diff_expression_volcano_plot.pdf differ